Update docs.

This commit is contained in:
Spencer Ofwiti 2021-06-16 12:16:24 +03:00
parent b72d00a870
commit 3706c9a61a
20 changed files with 470 additions and 308 deletions

File diff suppressed because one or more lines are too long

View File

@ -985,7 +985,7 @@
<td>AccountDetailsComponent</td> <td>AccountDetailsComponent</td>
<td align="right" data-sort="0"> <td align="right" data-sort="0">
<span class="coverage-percent">0 %</span> <span class="coverage-percent">0 %</span>
<span class="coverage-count">(0/44)</span> <span class="coverage-count">(0/47)</span>
</td> </td>
</tr> </tr>
<tr class="low"> <tr class="low">

View File

@ -402,9 +402,7 @@ export class LocationService {
} }
getAreaTypeByArea(area: string): Observable&lt;any&gt; { getAreaTypeByArea(area: string): Observable&lt;any&gt; {
return this.httpClient return this.httpClient.get(&#x60;${environment.cicMetaUrl}/areatypes/${area.toLowerCase()}&#x60;);
.get(&#x60;${environment.cicMetaUrl}/areatypes/${area.toLowerCase()}&#x60;)
.pipe(first());
} }
} }
</code></pre> </code></pre>

View File

@ -1327,21 +1327,21 @@ export class MockBackendInterceptor implements HttpInterceptor {
return approveAction(); return approveAction();
case url.endsWith(&#x27;/areanames&#x27;) &amp;&amp; method &#x3D;&#x3D;&#x3D; &#x27;GET&#x27;: case url.endsWith(&#x27;/areanames&#x27;) &amp;&amp; method &#x3D;&#x3D;&#x3D; &#x27;GET&#x27;:
return getAreaNames(); return getAreaNames();
case url.match(/\/areanames\/\w+$/) &amp;&amp; method &#x3D;&#x3D;&#x3D; &#x27;GET&#x27;: case url.match(/\/areanames\/\w+/) &amp;&amp; method &#x3D;&#x3D;&#x3D; &#x27;GET&#x27;:
return getAreaNameByLocation(); return getAreaNameByLocation();
case url.endsWith(&#x27;/areatypes&#x27;) &amp;&amp; method &#x3D;&#x3D;&#x3D; &#x27;GET&#x27;: case url.endsWith(&#x27;/areatypes&#x27;) &amp;&amp; method &#x3D;&#x3D;&#x3D; &#x27;GET&#x27;:
return getAreaTypes(); return getAreaTypes();
case url.match(/\/areatypes\/\w+$/) &amp;&amp; method &#x3D;&#x3D;&#x3D; &#x27;GET&#x27;: case url.match(/\/areatypes\/\w+/) &amp;&amp; method &#x3D;&#x3D;&#x3D; &#x27;GET&#x27;:
return getAreaTypeByArea(); return getAreaTypeByArea();
case url.endsWith(&#x27;/categories&#x27;) &amp;&amp; method &#x3D;&#x3D;&#x3D; &#x27;GET&#x27;: case url.endsWith(&#x27;/categories&#x27;) &amp;&amp; method &#x3D;&#x3D;&#x3D; &#x27;GET&#x27;:
return getCategories(); return getCategories();
case url.match(/\/categories\/\w+$/) &amp;&amp; method &#x3D;&#x3D;&#x3D; &#x27;GET&#x27;: case url.match(/\/categories\/\w+/) &amp;&amp; method &#x3D;&#x3D;&#x3D; &#x27;GET&#x27;:
return getCategoryByProduct(); return getCategoryByProduct();
case url.endsWith(&#x27;/genders&#x27;) &amp;&amp; method &#x3D;&#x3D;&#x3D; &#x27;GET&#x27;: case url.endsWith(&#x27;/genders&#x27;) &amp;&amp; method &#x3D;&#x3D;&#x3D; &#x27;GET&#x27;:
return getGenders(); return getGenders();
case url.endsWith(&#x27;/tokens&#x27;) &amp;&amp; method &#x3D;&#x3D;&#x3D; &#x27;GET&#x27;: case url.endsWith(&#x27;/tokens&#x27;) &amp;&amp; method &#x3D;&#x3D;&#x3D; &#x27;GET&#x27;:
return getTokens(); return getTokens();
case url.match(/\/tokens\/\w+$/) &amp;&amp; method &#x3D;&#x3D;&#x3D; &#x27;GET&#x27;: case url.match(/\/tokens\/\w+/) &amp;&amp; method &#x3D;&#x3D;&#x3D; &#x27;GET&#x27;:
return getTokenBySymbol(); return getTokenBySymbol();
case url.endsWith(&#x27;/transactiontypes&#x27;) &amp;&amp; method &#x3D;&#x3D;&#x3D; &#x27;GET&#x27;: case url.endsWith(&#x27;/transactiontypes&#x27;) &amp;&amp; method &#x3D;&#x3D;&#x3D; &#x27;GET&#x27;:
return getTransactionTypes(); return getTransactionTypes();
@ -1379,10 +1379,16 @@ export class MockBackendInterceptor implements HttpInterceptor {
} }
function getAreaNameByLocation(): Observable&lt;HttpResponse&lt;any&gt;&gt; { function getAreaNameByLocation(): Observable&lt;HttpResponse&lt;any&gt;&gt; {
const keywords &#x3D; stringFromUrl().split(&#x27; &#x27;);
for (const keyword of keywords) {
const queriedAreaName: AreaName &#x3D; areaNames.find((areaName) &#x3D;&gt; const queriedAreaName: AreaName &#x3D; areaNames.find((areaName) &#x3D;&gt;
areaName.locations.includes(stringFromUrl()) areaName.locations.includes(keyword)
); );
return ok(queriedAreaName.name || &#x27;other&#x27;); if (queriedAreaName) {
return ok(queriedAreaName.name);
}
}
return ok(&#x27;other&#x27;);
} }
function getAreaTypes(): Observable&lt;HttpResponse&lt;any&gt;&gt; { function getAreaTypes(): Observable&lt;HttpResponse&lt;any&gt;&gt; {
@ -1391,10 +1397,16 @@ export class MockBackendInterceptor implements HttpInterceptor {
} }
function getAreaTypeByArea(): Observable&lt;HttpResponse&lt;any&gt;&gt; { function getAreaTypeByArea(): Observable&lt;HttpResponse&lt;any&gt;&gt; {
const keywords &#x3D; stringFromUrl().split(&#x27; &#x27;);
for (const keyword of keywords) {
const queriedAreaType: AreaType &#x3D; areaTypes.find((areaType) &#x3D;&gt; const queriedAreaType: AreaType &#x3D; areaTypes.find((areaType) &#x3D;&gt;
areaType.area.includes(stringFromUrl()) areaType.area.includes(keyword)
); );
return ok(queriedAreaType.name || &#x27;other&#x27;); if (queriedAreaType) {
return ok(queriedAreaType.name);
}
}
return ok(&#x27;other&#x27;);
} }
function getCategories(): Observable&lt;HttpResponse&lt;any&gt;&gt; { function getCategories(): Observable&lt;HttpResponse&lt;any&gt;&gt; {
@ -1403,10 +1415,16 @@ export class MockBackendInterceptor implements HttpInterceptor {
} }
function getCategoryByProduct(): Observable&lt;HttpResponse&lt;any&gt;&gt; { function getCategoryByProduct(): Observable&lt;HttpResponse&lt;any&gt;&gt; {
const keywords &#x3D; stringFromUrl().split(&#x27; &#x27;);
for (const keyword of keywords) {
const queriedCategory: Category &#x3D; categories.find((category) &#x3D;&gt; const queriedCategory: Category &#x3D; categories.find((category) &#x3D;&gt;
category.products.includes(stringFromUrl()) category.products.includes(keyword)
); );
return ok(queriedCategory.name || &#x27;other&#x27;); if (queriedCategory) {
return ok(queriedCategory.name);
}
}
return ok(&#x27;other&#x27;);
} }
function getGenders(): Observable&lt;HttpResponse&lt;any&gt;&gt; { function getGenders(): Observable&lt;HttpResponse&lt;any&gt;&gt; {
@ -1418,8 +1436,14 @@ export class MockBackendInterceptor implements HttpInterceptor {
} }
function getTokenBySymbol(): Observable&lt;HttpResponse&lt;any&gt;&gt; { function getTokenBySymbol(): Observable&lt;HttpResponse&lt;any&gt;&gt; {
const queriedToken: Token &#x3D; tokens.find((token) &#x3D;&gt; token.symbol &#x3D;&#x3D;&#x3D; stringFromUrl()); const keywords &#x3D; stringFromUrl().split(&#x27; &#x27;);
return ok(queriedToken); for (const keyword of keywords) {
const queriedToken: Token &#x3D; tokens.find((token) &#x3D;&gt; token.symbol &#x3D;&#x3D;&#x3D; keyword);
if (queriedToken) {
return ok(queriedToken.name);
}
}
return ok(&#x27;other&#x27;);
} }
function getTransactionTypes(): Observable&lt;HttpResponse&lt;any&gt;&gt; { function getTransactionTypes(): Observable&lt;HttpResponse&lt;any&gt;&gt; {

File diff suppressed because one or more lines are too long

View File

@ -65,17 +65,17 @@
<title>cluster_AppModule</title> <title>cluster_AppModule</title>
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="8,-70 8,-268 1186,-268 1186,-70 8,-70"/> <polygon fill="none" stroke="black" stroke-dasharray="1,5" points="8,-70 8,-268 1186,-268 1186,-70 8,-70"/>
</g> </g>
<g id="clust7" class="cluster">
<title>cluster_AppModule_providers</title>
<polygon fill="none" stroke="black" points="415,-78 415,-130 1178,-130 1178,-78 415,-78"/>
</g>
<g id="clust6" class="cluster"> <g id="clust6" class="cluster">
<title>cluster_AppModule_bootstrap</title> <title>cluster_AppModule_bootstrap</title>
<polygon fill="none" stroke="black" points="584,-208 584,-260 708,-260 708,-208 584,-208"/> <polygon fill="none" stroke="black" points="447,-208 447,-260 571,-260 571,-208 447,-208"/>
</g> </g>
<g id="clust4" class="cluster"> <g id="clust4" class="cluster">
<title>cluster_AppModule_imports</title> <title>cluster_AppModule_imports</title>
<polygon fill="none" stroke="black" points="917,-78 917,-130 1178,-130 1178,-78 917,-78"/> <polygon fill="none" stroke="black" points="146,-78 146,-130 407,-130 407,-78 146,-78"/>
</g>
<g id="clust7" class="cluster">
<title>cluster_AppModule_providers</title>
<polygon fill="none" stroke="black" points="146,-78 146,-130 909,-130 909,-78 146,-78"/>
</g> </g>
<g id="clust2" class="cluster"> <g id="clust2" class="cluster">
<title>cluster_AppModule_declarations</title> <title>cluster_AppModule_declarations</title>
@ -90,98 +90,98 @@
<!-- AppModule --> <!-- AppModule -->
<g id="node2" class="node"> <g id="node2" class="node">
<title>AppModule</title> <title>AppModule</title>
<polygon fill="#8dd3c7" stroke="black" points="687.66,-187 684.66,-191 663.66,-191 660.66,-187 604.34,-187 604.34,-151 687.66,-151 687.66,-187"/> <polygon fill="#8dd3c7" stroke="black" points="550.66,-187 547.66,-191 526.66,-191 523.66,-187 467.34,-187 467.34,-151 550.66,-151 550.66,-187"/>
<text text-anchor="middle" x="646" y="-164.8" font-family="Times,serif" font-size="14.00">AppModule</text> <text text-anchor="middle" x="509" y="-164.8" font-family="Times,serif" font-size="14.00">AppModule</text>
</g> </g>
<!-- AppComponent&#45;&gt;AppModule --> <!-- AppComponent&#45;&gt;AppModule -->
<g id="edge1" class="edge"> <g id="edge1" class="edge">
<title>AppComponent&#45;&gt;AppModule</title> <title>AppComponent&#45;&gt;AppModule</title>
<path fill="none" stroke="black" d="M77,-122.29C77,-144.21 77,-178 77,-178 77,-178 594.16,-178 594.16,-178"/> <path fill="none" stroke="black" d="M77,-122.29C77,-144.21 77,-178 77,-178 77,-178 457.19,-178 457.19,-178"/>
<polygon fill="black" stroke="black" points="594.16,-181.5 604.16,-178 594.16,-174.5 594.16,-181.5"/> <polygon fill="black" stroke="black" points="457.19,-181.5 467.19,-178 457.19,-174.5 457.19,-181.5"/>
</g> </g>
<!-- AppComponent --> <!-- AppComponent -->
<g id="node5" class="node"> <g id="node5" class="node">
<title>AppComponent </title> <title>AppComponent </title>
<polygon fill="#80b1d3" stroke="black" points="700.44,-252 591.56,-252 591.56,-216 700.44,-216 700.44,-252"/> <polygon fill="#80b1d3" stroke="black" points="563.44,-252 454.56,-252 454.56,-216 563.44,-216 563.44,-252"/>
<text text-anchor="middle" x="646" y="-229.8" font-family="Times,serif" font-size="14.00">AppComponent </text> <text text-anchor="middle" x="509" y="-229.8" font-family="Times,serif" font-size="14.00">AppComponent </text>
</g> </g>
<!-- AppModule&#45;&gt;AppComponent --> <!-- AppModule&#45;&gt;AppComponent -->
<g id="edge4" class="edge"> <g id="edge4" class="edge">
<title>AppModule&#45;&gt;AppComponent </title> <title>AppModule&#45;&gt;AppComponent </title>
<path fill="none" stroke="black" stroke-dasharray="1,5" d="M646,-187.11C646,-187.11 646,-205.99 646,-205.99"/> <path fill="none" stroke="black" stroke-dasharray="1,5" d="M509,-187.11C509,-187.11 509,-205.99 509,-205.99"/>
<polygon fill="black" stroke="black" points="642.5,-205.99 646,-215.99 649.5,-205.99 642.5,-205.99"/> <polygon fill="black" stroke="black" points="505.5,-205.99 509,-215.99 512.5,-205.99 505.5,-205.99"/>
</g> </g>
<!-- AppRoutingModule --> <!-- AppRoutingModule -->
<g id="node3" class="node"> <g id="node3" class="node">
<title>AppRoutingModule</title> <title>AppRoutingModule</title>
<polygon fill="#8dd3c7" stroke="black" points="1170.27,-122 1167.27,-126 1146.27,-126 1143.27,-122 1041.73,-122 1041.73,-86 1170.27,-86 1170.27,-122"/> <polygon fill="#8dd3c7" stroke="black" points="399.27,-122 396.27,-126 375.27,-126 372.27,-122 270.73,-122 270.73,-86 399.27,-86 399.27,-122"/>
<text text-anchor="middle" x="1106" y="-99.8" font-family="Times,serif" font-size="14.00">AppRoutingModule</text> <text text-anchor="middle" x="335" y="-99.8" font-family="Times,serif" font-size="14.00">AppRoutingModule</text>
</g> </g>
<!-- AppRoutingModule&#45;&gt;AppModule --> <!-- AppRoutingModule&#45;&gt;AppModule -->
<g id="edge2" class="edge"> <g id="edge2" class="edge">
<title>AppRoutingModule&#45;&gt;AppModule</title> <title>AppRoutingModule&#45;&gt;AppModule</title>
<path fill="none" stroke="black" d="M1106,-122.29C1106,-144.21 1106,-178 1106,-178 1106,-178 698.04,-178 698.04,-178"/> <path fill="none" stroke="black" d="M335,-122.03C335,-138.4 335,-160 335,-160 335,-160 457.32,-160 457.32,-160"/>
<polygon fill="black" stroke="black" points="698.04,-174.5 688.04,-178 698.04,-181.5 698.04,-174.5"/> <polygon fill="black" stroke="black" points="457.32,-163.5 467.32,-160 457.32,-156.5 457.32,-163.5"/>
</g> </g>
<!-- SharedModule --> <!-- SharedModule -->
<g id="node4" class="node"> <g id="node4" class="node">
<title>SharedModule</title> <title>SharedModule</title>
<polygon fill="#8dd3c7" stroke="black" points="1023.42,-122 1020.42,-126 999.42,-126 996.42,-122 924.58,-122 924.58,-86 1023.42,-86 1023.42,-122"/> <polygon fill="#8dd3c7" stroke="black" points="252.42,-122 249.42,-126 228.42,-126 225.42,-122 153.58,-122 153.58,-86 252.42,-86 252.42,-122"/>
<text text-anchor="middle" x="974" y="-99.8" font-family="Times,serif" font-size="14.00">SharedModule</text> <text text-anchor="middle" x="203" y="-99.8" font-family="Times,serif" font-size="14.00">SharedModule</text>
</g> </g>
<!-- SharedModule&#45;&gt;AppModule --> <!-- SharedModule&#45;&gt;AppModule -->
<g id="edge3" class="edge"> <g id="edge3" class="edge">
<title>SharedModule&#45;&gt;AppModule</title> <title>SharedModule&#45;&gt;AppModule</title>
<path fill="none" stroke="black" d="M974,-122.11C974,-141.34 974,-169 974,-169 974,-169 697.87,-169 697.87,-169"/> <path fill="none" stroke="black" d="M203,-122.11C203,-141.34 203,-169 203,-169 203,-169 457.09,-169 457.09,-169"/>
<polygon fill="black" stroke="black" points="697.87,-165.5 687.87,-169 697.87,-172.5 697.87,-165.5"/> <polygon fill="black" stroke="black" points="457.09,-172.5 467.09,-169 457.09,-165.5 457.09,-172.5"/>
</g> </g>
<!-- ErrorInterceptor --> <!-- ErrorInterceptor -->
<g id="node6" class="node"> <g id="node6" class="node">
<title>ErrorInterceptor</title> <title>ErrorInterceptor</title>
<ellipse fill="#fdb462" stroke="black" cx="827" cy="-104" rx="73.53" ry="18"/> <ellipse fill="#fdb462" stroke="black" cx="1096" cy="-104" rx="73.53" ry="18"/>
<text text-anchor="middle" x="827" y="-99.8" font-family="Times,serif" font-size="14.00">ErrorInterceptor</text> <text text-anchor="middle" x="1096" y="-99.8" font-family="Times,serif" font-size="14.00">ErrorInterceptor</text>
</g> </g>
<!-- ErrorInterceptor&#45;&gt;AppModule --> <!-- ErrorInterceptor&#45;&gt;AppModule -->
<g id="edge5" class="edge"> <g id="edge5" class="edge">
<title>ErrorInterceptor&#45;&gt;AppModule</title> <title>ErrorInterceptor&#45;&gt;AppModule</title>
<path fill="none" stroke="black" d="M827,-122.03C827,-138.4 827,-160 827,-160 827,-160 697.98,-160 697.98,-160"/> <path fill="none" stroke="black" d="M1096,-122.29C1096,-144.21 1096,-178 1096,-178 1096,-178 560.75,-178 560.75,-178"/>
<polygon fill="black" stroke="black" points="697.98,-156.5 687.98,-160 697.98,-163.5 697.98,-156.5"/> <polygon fill="black" stroke="black" points="560.75,-174.5 550.75,-178 560.74,-181.5 560.75,-174.5"/>
</g> </g>
<!-- GlobalErrorHandler --> <!-- GlobalErrorHandler -->
<g id="node7" class="node"> <g id="node7" class="node">
<title>GlobalErrorHandler</title> <title>GlobalErrorHandler</title>
<ellipse fill="#fdb462" stroke="black" cx="646" cy="-104" rx="88.58" ry="18"/> <ellipse fill="#fdb462" stroke="black" cx="915" cy="-104" rx="88.58" ry="18"/>
<text text-anchor="middle" x="646" y="-99.8" font-family="Times,serif" font-size="14.00">GlobalErrorHandler</text> <text text-anchor="middle" x="915" y="-99.8" font-family="Times,serif" font-size="14.00">GlobalErrorHandler</text>
</g> </g>
<!-- GlobalErrorHandler&#45;&gt;AppModule --> <!-- GlobalErrorHandler&#45;&gt;AppModule -->
<g id="edge6" class="edge"> <g id="edge6" class="edge">
<title>GlobalErrorHandler&#45;&gt;AppModule</title> <title>GlobalErrorHandler&#45;&gt;AppModule</title>
<path fill="none" stroke="black" d="M646,-122.11C646,-122.11 646,-140.99 646,-140.99"/> <path fill="none" stroke="black" d="M915,-122.11C915,-141.34 915,-169 915,-169 915,-169 560.92,-169 560.92,-169"/>
<polygon fill="black" stroke="black" points="642.5,-140.99 646,-150.99 649.5,-140.99 642.5,-140.99"/> <polygon fill="black" stroke="black" points="560.92,-165.5 550.92,-169 560.92,-172.5 560.92,-165.5"/>
</g> </g>
<!-- HttpConfigInterceptor --> <!-- HttpConfigInterceptor -->
<g id="node8" class="node"> <g id="node8" class="node">
<title>HttpConfigInterceptor</title> <title>HttpConfigInterceptor</title>
<ellipse fill="#fdb462" stroke="black" cx="442" cy="-104" rx="97.27" ry="18"/> <ellipse fill="#fdb462" stroke="black" cx="711" cy="-104" rx="97.27" ry="18"/>
<text text-anchor="middle" x="442" y="-99.8" font-family="Times,serif" font-size="14.00">HttpConfigInterceptor</text> <text text-anchor="middle" x="711" y="-99.8" font-family="Times,serif" font-size="14.00">HttpConfigInterceptor</text>
</g> </g>
<!-- HttpConfigInterceptor&#45;&gt;AppModule --> <!-- HttpConfigInterceptor&#45;&gt;AppModule -->
<g id="edge7" class="edge"> <g id="edge7" class="edge">
<title>HttpConfigInterceptor&#45;&gt;AppModule</title> <title>HttpConfigInterceptor&#45;&gt;AppModule</title>
<path fill="none" stroke="black" d="M442,-122.03C442,-138.4 442,-160 442,-160 442,-160 594.23,-160 594.23,-160"/> <path fill="none" stroke="black" d="M711,-122.03C711,-138.4 711,-160 711,-160 711,-160 560.85,-160 560.85,-160"/>
<polygon fill="black" stroke="black" points="594.23,-163.5 604.23,-160 594.23,-156.5 594.23,-163.5"/> <polygon fill="black" stroke="black" points="560.85,-156.5 550.85,-160 560.85,-163.5 560.85,-156.5"/>
</g> </g>
<!-- LoggingInterceptor --> <!-- LoggingInterceptor -->
<g id="node9" class="node"> <g id="node9" class="node">
<title>LoggingInterceptor</title> <title>LoggingInterceptor</title>
<ellipse fill="#fdb462" stroke="black" cx="240" cy="-104" rx="86.24" ry="18"/> <ellipse fill="#fdb462" stroke="black" cx="509" cy="-104" rx="86.24" ry="18"/>
<text text-anchor="middle" x="240" y="-99.8" font-family="Times,serif" font-size="14.00">LoggingInterceptor</text> <text text-anchor="middle" x="509" y="-99.8" font-family="Times,serif" font-size="14.00">LoggingInterceptor</text>
</g> </g>
<!-- LoggingInterceptor&#45;&gt;AppModule --> <!-- LoggingInterceptor&#45;&gt;AppModule -->
<g id="edge8" class="edge"> <g id="edge8" class="edge">
<title>LoggingInterceptor&#45;&gt;AppModule</title> <title>LoggingInterceptor&#45;&gt;AppModule</title>
<path fill="none" stroke="black" d="M240,-122.11C240,-141.34 240,-169 240,-169 240,-169 594.08,-169 594.08,-169"/> <path fill="none" stroke="black" d="M509,-122.11C509,-122.11 509,-140.99 509,-140.99"/>
<polygon fill="black" stroke="black" points="594.08,-172.5 604.08,-169 594.08,-165.5 594.08,-172.5"/> <polygon fill="black" stroke="black" points="505.5,-140.99 509,-150.99 512.5,-140.99 505.5,-140.99"/>
</g> </g>
</g> </g>
</svg> </svg>

View File

@ -24,17 +24,17 @@
<title>cluster_AppModule</title> <title>cluster_AppModule</title>
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="8,-70 8,-268 1186,-268 1186,-70 8,-70"/> <polygon fill="none" stroke="black" stroke-dasharray="1,5" points="8,-70 8,-268 1186,-268 1186,-70 8,-70"/>
</g> </g>
<g id="clust7" class="cluster">
<title>cluster_AppModule_providers</title>
<polygon fill="none" stroke="black" points="415,-78 415,-130 1178,-130 1178,-78 415,-78"/>
</g>
<g id="clust6" class="cluster"> <g id="clust6" class="cluster">
<title>cluster_AppModule_bootstrap</title> <title>cluster_AppModule_bootstrap</title>
<polygon fill="none" stroke="black" points="584,-208 584,-260 708,-260 708,-208 584,-208"/> <polygon fill="none" stroke="black" points="447,-208 447,-260 571,-260 571,-208 447,-208"/>
</g> </g>
<g id="clust4" class="cluster"> <g id="clust4" class="cluster">
<title>cluster_AppModule_imports</title> <title>cluster_AppModule_imports</title>
<polygon fill="none" stroke="black" points="917,-78 917,-130 1178,-130 1178,-78 917,-78"/> <polygon fill="none" stroke="black" points="146,-78 146,-130 407,-130 407,-78 146,-78"/>
</g>
<g id="clust7" class="cluster">
<title>cluster_AppModule_providers</title>
<polygon fill="none" stroke="black" points="146,-78 146,-130 909,-130 909,-78 146,-78"/>
</g> </g>
<g id="clust2" class="cluster"> <g id="clust2" class="cluster">
<title>cluster_AppModule_declarations</title> <title>cluster_AppModule_declarations</title>
@ -49,98 +49,98 @@
<!-- AppModule --> <!-- AppModule -->
<g id="node2" class="node"> <g id="node2" class="node">
<title>AppModule</title> <title>AppModule</title>
<polygon fill="#8dd3c7" stroke="black" points="687.66,-187 684.66,-191 663.66,-191 660.66,-187 604.34,-187 604.34,-151 687.66,-151 687.66,-187"/> <polygon fill="#8dd3c7" stroke="black" points="550.66,-187 547.66,-191 526.66,-191 523.66,-187 467.34,-187 467.34,-151 550.66,-151 550.66,-187"/>
<text text-anchor="middle" x="646" y="-164.8" font-family="Times,serif" font-size="14.00">AppModule</text> <text text-anchor="middle" x="509" y="-164.8" font-family="Times,serif" font-size="14.00">AppModule</text>
</g> </g>
<!-- AppComponent&#45;&gt;AppModule --> <!-- AppComponent&#45;&gt;AppModule -->
<g id="edge1" class="edge"> <g id="edge1" class="edge">
<title>AppComponent&#45;&gt;AppModule</title> <title>AppComponent&#45;&gt;AppModule</title>
<path fill="none" stroke="black" d="M77,-122.29C77,-144.21 77,-178 77,-178 77,-178 594.16,-178 594.16,-178"/> <path fill="none" stroke="black" d="M77,-122.29C77,-144.21 77,-178 77,-178 77,-178 457.19,-178 457.19,-178"/>
<polygon fill="black" stroke="black" points="594.16,-181.5 604.16,-178 594.16,-174.5 594.16,-181.5"/> <polygon fill="black" stroke="black" points="457.19,-181.5 467.19,-178 457.19,-174.5 457.19,-181.5"/>
</g> </g>
<!-- AppComponent --> <!-- AppComponent -->
<g id="node5" class="node"> <g id="node5" class="node">
<title>AppComponent </title> <title>AppComponent </title>
<polygon fill="#80b1d3" stroke="black" points="700.44,-252 591.56,-252 591.56,-216 700.44,-216 700.44,-252"/> <polygon fill="#80b1d3" stroke="black" points="563.44,-252 454.56,-252 454.56,-216 563.44,-216 563.44,-252"/>
<text text-anchor="middle" x="646" y="-229.8" font-family="Times,serif" font-size="14.00">AppComponent </text> <text text-anchor="middle" x="509" y="-229.8" font-family="Times,serif" font-size="14.00">AppComponent </text>
</g> </g>
<!-- AppModule&#45;&gt;AppComponent --> <!-- AppModule&#45;&gt;AppComponent -->
<g id="edge4" class="edge"> <g id="edge4" class="edge">
<title>AppModule&#45;&gt;AppComponent </title> <title>AppModule&#45;&gt;AppComponent </title>
<path fill="none" stroke="black" stroke-dasharray="1,5" d="M646,-187.11C646,-187.11 646,-205.99 646,-205.99"/> <path fill="none" stroke="black" stroke-dasharray="1,5" d="M509,-187.11C509,-187.11 509,-205.99 509,-205.99"/>
<polygon fill="black" stroke="black" points="642.5,-205.99 646,-215.99 649.5,-205.99 642.5,-205.99"/> <polygon fill="black" stroke="black" points="505.5,-205.99 509,-215.99 512.5,-205.99 505.5,-205.99"/>
</g> </g>
<!-- AppRoutingModule --> <!-- AppRoutingModule -->
<g id="node3" class="node"> <g id="node3" class="node">
<title>AppRoutingModule</title> <title>AppRoutingModule</title>
<polygon fill="#8dd3c7" stroke="black" points="1170.27,-122 1167.27,-126 1146.27,-126 1143.27,-122 1041.73,-122 1041.73,-86 1170.27,-86 1170.27,-122"/> <polygon fill="#8dd3c7" stroke="black" points="399.27,-122 396.27,-126 375.27,-126 372.27,-122 270.73,-122 270.73,-86 399.27,-86 399.27,-122"/>
<text text-anchor="middle" x="1106" y="-99.8" font-family="Times,serif" font-size="14.00">AppRoutingModule</text> <text text-anchor="middle" x="335" y="-99.8" font-family="Times,serif" font-size="14.00">AppRoutingModule</text>
</g> </g>
<!-- AppRoutingModule&#45;&gt;AppModule --> <!-- AppRoutingModule&#45;&gt;AppModule -->
<g id="edge2" class="edge"> <g id="edge2" class="edge">
<title>AppRoutingModule&#45;&gt;AppModule</title> <title>AppRoutingModule&#45;&gt;AppModule</title>
<path fill="none" stroke="black" d="M1106,-122.29C1106,-144.21 1106,-178 1106,-178 1106,-178 698.04,-178 698.04,-178"/> <path fill="none" stroke="black" d="M335,-122.03C335,-138.4 335,-160 335,-160 335,-160 457.32,-160 457.32,-160"/>
<polygon fill="black" stroke="black" points="698.04,-174.5 688.04,-178 698.04,-181.5 698.04,-174.5"/> <polygon fill="black" stroke="black" points="457.32,-163.5 467.32,-160 457.32,-156.5 457.32,-163.5"/>
</g> </g>
<!-- SharedModule --> <!-- SharedModule -->
<g id="node4" class="node"> <g id="node4" class="node">
<title>SharedModule</title> <title>SharedModule</title>
<polygon fill="#8dd3c7" stroke="black" points="1023.42,-122 1020.42,-126 999.42,-126 996.42,-122 924.58,-122 924.58,-86 1023.42,-86 1023.42,-122"/> <polygon fill="#8dd3c7" stroke="black" points="252.42,-122 249.42,-126 228.42,-126 225.42,-122 153.58,-122 153.58,-86 252.42,-86 252.42,-122"/>
<text text-anchor="middle" x="974" y="-99.8" font-family="Times,serif" font-size="14.00">SharedModule</text> <text text-anchor="middle" x="203" y="-99.8" font-family="Times,serif" font-size="14.00">SharedModule</text>
</g> </g>
<!-- SharedModule&#45;&gt;AppModule --> <!-- SharedModule&#45;&gt;AppModule -->
<g id="edge3" class="edge"> <g id="edge3" class="edge">
<title>SharedModule&#45;&gt;AppModule</title> <title>SharedModule&#45;&gt;AppModule</title>
<path fill="none" stroke="black" d="M974,-122.11C974,-141.34 974,-169 974,-169 974,-169 697.87,-169 697.87,-169"/> <path fill="none" stroke="black" d="M203,-122.11C203,-141.34 203,-169 203,-169 203,-169 457.09,-169 457.09,-169"/>
<polygon fill="black" stroke="black" points="697.87,-165.5 687.87,-169 697.87,-172.5 697.87,-165.5"/> <polygon fill="black" stroke="black" points="457.09,-172.5 467.09,-169 457.09,-165.5 457.09,-172.5"/>
</g> </g>
<!-- ErrorInterceptor --> <!-- ErrorInterceptor -->
<g id="node6" class="node"> <g id="node6" class="node">
<title>ErrorInterceptor</title> <title>ErrorInterceptor</title>
<ellipse fill="#fdb462" stroke="black" cx="827" cy="-104" rx="73.53" ry="18"/> <ellipse fill="#fdb462" stroke="black" cx="1096" cy="-104" rx="73.53" ry="18"/>
<text text-anchor="middle" x="827" y="-99.8" font-family="Times,serif" font-size="14.00">ErrorInterceptor</text> <text text-anchor="middle" x="1096" y="-99.8" font-family="Times,serif" font-size="14.00">ErrorInterceptor</text>
</g> </g>
<!-- ErrorInterceptor&#45;&gt;AppModule --> <!-- ErrorInterceptor&#45;&gt;AppModule -->
<g id="edge5" class="edge"> <g id="edge5" class="edge">
<title>ErrorInterceptor&#45;&gt;AppModule</title> <title>ErrorInterceptor&#45;&gt;AppModule</title>
<path fill="none" stroke="black" d="M827,-122.03C827,-138.4 827,-160 827,-160 827,-160 697.98,-160 697.98,-160"/> <path fill="none" stroke="black" d="M1096,-122.29C1096,-144.21 1096,-178 1096,-178 1096,-178 560.75,-178 560.75,-178"/>
<polygon fill="black" stroke="black" points="697.98,-156.5 687.98,-160 697.98,-163.5 697.98,-156.5"/> <polygon fill="black" stroke="black" points="560.75,-174.5 550.75,-178 560.74,-181.5 560.75,-174.5"/>
</g> </g>
<!-- GlobalErrorHandler --> <!-- GlobalErrorHandler -->
<g id="node7" class="node"> <g id="node7" class="node">
<title>GlobalErrorHandler</title> <title>GlobalErrorHandler</title>
<ellipse fill="#fdb462" stroke="black" cx="646" cy="-104" rx="88.58" ry="18"/> <ellipse fill="#fdb462" stroke="black" cx="915" cy="-104" rx="88.58" ry="18"/>
<text text-anchor="middle" x="646" y="-99.8" font-family="Times,serif" font-size="14.00">GlobalErrorHandler</text> <text text-anchor="middle" x="915" y="-99.8" font-family="Times,serif" font-size="14.00">GlobalErrorHandler</text>
</g> </g>
<!-- GlobalErrorHandler&#45;&gt;AppModule --> <!-- GlobalErrorHandler&#45;&gt;AppModule -->
<g id="edge6" class="edge"> <g id="edge6" class="edge">
<title>GlobalErrorHandler&#45;&gt;AppModule</title> <title>GlobalErrorHandler&#45;&gt;AppModule</title>
<path fill="none" stroke="black" d="M646,-122.11C646,-122.11 646,-140.99 646,-140.99"/> <path fill="none" stroke="black" d="M915,-122.11C915,-141.34 915,-169 915,-169 915,-169 560.92,-169 560.92,-169"/>
<polygon fill="black" stroke="black" points="642.5,-140.99 646,-150.99 649.5,-140.99 642.5,-140.99"/> <polygon fill="black" stroke="black" points="560.92,-165.5 550.92,-169 560.92,-172.5 560.92,-165.5"/>
</g> </g>
<!-- HttpConfigInterceptor --> <!-- HttpConfigInterceptor -->
<g id="node8" class="node"> <g id="node8" class="node">
<title>HttpConfigInterceptor</title> <title>HttpConfigInterceptor</title>
<ellipse fill="#fdb462" stroke="black" cx="442" cy="-104" rx="97.27" ry="18"/> <ellipse fill="#fdb462" stroke="black" cx="711" cy="-104" rx="97.27" ry="18"/>
<text text-anchor="middle" x="442" y="-99.8" font-family="Times,serif" font-size="14.00">HttpConfigInterceptor</text> <text text-anchor="middle" x="711" y="-99.8" font-family="Times,serif" font-size="14.00">HttpConfigInterceptor</text>
</g> </g>
<!-- HttpConfigInterceptor&#45;&gt;AppModule --> <!-- HttpConfigInterceptor&#45;&gt;AppModule -->
<g id="edge7" class="edge"> <g id="edge7" class="edge">
<title>HttpConfigInterceptor&#45;&gt;AppModule</title> <title>HttpConfigInterceptor&#45;&gt;AppModule</title>
<path fill="none" stroke="black" d="M442,-122.03C442,-138.4 442,-160 442,-160 442,-160 594.23,-160 594.23,-160"/> <path fill="none" stroke="black" d="M711,-122.03C711,-138.4 711,-160 711,-160 711,-160 560.85,-160 560.85,-160"/>
<polygon fill="black" stroke="black" points="594.23,-163.5 604.23,-160 594.23,-156.5 594.23,-163.5"/> <polygon fill="black" stroke="black" points="560.85,-156.5 550.85,-160 560.85,-163.5 560.85,-156.5"/>
</g> </g>
<!-- LoggingInterceptor --> <!-- LoggingInterceptor -->
<g id="node9" class="node"> <g id="node9" class="node">
<title>LoggingInterceptor</title> <title>LoggingInterceptor</title>
<ellipse fill="#fdb462" stroke="black" cx="240" cy="-104" rx="86.24" ry="18"/> <ellipse fill="#fdb462" stroke="black" cx="509" cy="-104" rx="86.24" ry="18"/>
<text text-anchor="middle" x="240" y="-99.8" font-family="Times,serif" font-size="14.00">LoggingInterceptor</text> <text text-anchor="middle" x="509" y="-99.8" font-family="Times,serif" font-size="14.00">LoggingInterceptor</text>
</g> </g>
<!-- LoggingInterceptor&#45;&gt;AppModule --> <!-- LoggingInterceptor&#45;&gt;AppModule -->
<g id="edge8" class="edge"> <g id="edge8" class="edge">
<title>LoggingInterceptor&#45;&gt;AppModule</title> <title>LoggingInterceptor&#45;&gt;AppModule</title>
<path fill="none" stroke="black" d="M240,-122.11C240,-141.34 240,-169 240,-169 240,-169 594.08,-169 594.08,-169"/> <path fill="none" stroke="black" d="M509,-122.11C509,-122.11 509,-140.99 509,-140.99"/>
<polygon fill="black" stroke="black" points="594.08,-172.5 604.08,-169 594.08,-165.5 594.08,-172.5"/> <polygon fill="black" stroke="black" points="505.5,-140.99 509,-150.99 512.5,-140.99 505.5,-140.99"/>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 8.0 KiB

After

Width:  |  Height:  |  Size: 7.9 KiB

View File

@ -65,55 +65,55 @@
<title>cluster_PagesModule</title> <title>cluster_PagesModule</title>
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="36,-70 36,-195 460,-195 460,-70 36,-70"/> <polygon fill="none" stroke="black" stroke-dasharray="1,5" points="36,-70 36,-195 460,-195 460,-70 36,-70"/>
</g> </g>
<g id="clust2" class="cluster">
<title>cluster_PagesModule_declarations</title>
<polygon fill="none" stroke="black" points="322,-78 322,-130 452,-130 452,-78 322,-78"/>
</g>
<g id="clust4" class="cluster"> <g id="clust4" class="cluster">
<title>cluster_PagesModule_imports</title> <title>cluster_PagesModule_imports</title>
<polygon fill="none" stroke="black" points="44,-78 44,-130 314,-130 314,-78 44,-78"/> <polygon fill="none" stroke="black" points="182,-78 182,-130 452,-130 452,-78 182,-78"/>
</g>
<g id="clust2" class="cluster">
<title>cluster_PagesModule_declarations</title>
<polygon fill="none" stroke="black" points="44,-78 44,-130 174,-130 174,-78 44,-78"/>
</g> </g>
<!-- PagesComponent --> <!-- PagesComponent -->
<g id="node1" class="node"> <g id="node1" class="node">
<title>PagesComponent</title> <title>PagesComponent</title>
<polygon fill="#ffffb3" stroke="black" points="443.99,-122 330.01,-122 330.01,-86 443.99,-86 443.99,-122"/> <polygon fill="#ffffb3" stroke="black" points="165.99,-122 52.01,-122 52.01,-86 165.99,-86 165.99,-122"/>
<text text-anchor="middle" x="387" y="-99.8" font-family="Times,serif" font-size="14.00">PagesComponent</text> <text text-anchor="middle" x="109" y="-99.8" font-family="Times,serif" font-size="14.00">PagesComponent</text>
</g> </g>
<!-- PagesModule --> <!-- PagesModule -->
<g id="node2" class="node"> <g id="node2" class="node">
<title>PagesModule</title> <title>PagesModule</title>
<polygon fill="#8dd3c7" stroke="black" points="283.21,-187 280.21,-191 259.21,-191 256.21,-187 190.79,-187 190.79,-151 283.21,-151 283.21,-187"/> <polygon fill="#8dd3c7" stroke="black" points="285.21,-187 282.21,-191 261.21,-191 258.21,-187 192.79,-187 192.79,-151 285.21,-151 285.21,-187"/>
<text text-anchor="middle" x="237" y="-164.8" font-family="Times,serif" font-size="14.00">PagesModule</text> <text text-anchor="middle" x="239" y="-164.8" font-family="Times,serif" font-size="14.00">PagesModule</text>
</g> </g>
<!-- PagesComponent&#45;&gt;PagesModule --> <!-- PagesComponent&#45;&gt;PagesModule -->
<g id="edge1" class="edge"> <g id="edge1" class="edge">
<title>PagesComponent&#45;&gt;PagesModule</title> <title>PagesComponent&#45;&gt;PagesModule</title>
<path fill="none" stroke="black" d="M387,-122.11C387,-141.34 387,-169 387,-169 387,-169 293.23,-169 293.23,-169"/> <path fill="none" stroke="black" d="M109,-122.11C109,-141.34 109,-169 109,-169 109,-169 182.8,-169 182.8,-169"/>
<polygon fill="black" stroke="black" points="293.23,-165.5 283.23,-169 293.23,-172.5 293.23,-165.5"/> <polygon fill="black" stroke="black" points="182.8,-172.5 192.8,-169 182.8,-165.5 182.8,-172.5"/>
</g> </g>
<!-- PagesRoutingModule --> <!-- PagesRoutingModule -->
<g id="node3" class="node"> <g id="node3" class="node">
<title>PagesRoutingModule</title> <title>PagesRoutingModule</title>
<polygon fill="#8dd3c7" stroke="black" points="305.82,-122 302.82,-126 281.82,-126 278.82,-122 168.18,-122 168.18,-86 305.82,-86 305.82,-122"/> <polygon fill="#8dd3c7" stroke="black" points="443.82,-122 440.82,-126 419.82,-126 416.82,-122 306.18,-122 306.18,-86 443.82,-86 443.82,-122"/>
<text text-anchor="middle" x="237" y="-99.8" font-family="Times,serif" font-size="14.00">PagesRoutingModule</text> <text text-anchor="middle" x="375" y="-99.8" font-family="Times,serif" font-size="14.00">PagesRoutingModule</text>
</g> </g>
<!-- PagesRoutingModule&#45;&gt;PagesModule --> <!-- PagesRoutingModule&#45;&gt;PagesModule -->
<g id="edge2" class="edge"> <g id="edge2" class="edge">
<title>PagesRoutingModule&#45;&gt;PagesModule</title> <title>PagesRoutingModule&#45;&gt;PagesModule</title>
<path fill="none" stroke="black" d="M237,-122.11C237,-122.11 237,-140.99 237,-140.99"/> <path fill="none" stroke="black" d="M375,-122.11C375,-141.34 375,-169 375,-169 375,-169 295.42,-169 295.42,-169"/>
<polygon fill="black" stroke="black" points="233.5,-140.99 237,-150.99 240.5,-140.99 233.5,-140.99"/> <polygon fill="black" stroke="black" points="295.42,-165.5 285.42,-169 295.42,-172.5 295.42,-165.5"/>
</g> </g>
<!-- SharedModule --> <!-- SharedModule -->
<g id="node4" class="node"> <g id="node4" class="node">
<title>SharedModule</title> <title>SharedModule</title>
<polygon fill="#8dd3c7" stroke="black" points="150.42,-122 147.42,-126 126.42,-126 123.42,-122 51.58,-122 51.58,-86 150.42,-86 150.42,-122"/> <polygon fill="#8dd3c7" stroke="black" points="288.42,-122 285.42,-126 264.42,-126 261.42,-122 189.58,-122 189.58,-86 288.42,-86 288.42,-122"/>
<text text-anchor="middle" x="101" y="-99.8" font-family="Times,serif" font-size="14.00">SharedModule</text> <text text-anchor="middle" x="239" y="-99.8" font-family="Times,serif" font-size="14.00">SharedModule</text>
</g> </g>
<!-- SharedModule&#45;&gt;PagesModule --> <!-- SharedModule&#45;&gt;PagesModule -->
<g id="edge3" class="edge"> <g id="edge3" class="edge">
<title>SharedModule&#45;&gt;PagesModule</title> <title>SharedModule&#45;&gt;PagesModule</title>
<path fill="none" stroke="black" d="M101,-122.11C101,-141.34 101,-169 101,-169 101,-169 180.58,-169 180.58,-169"/> <path fill="none" stroke="black" d="M239,-122.11C239,-122.11 239,-140.99 239,-140.99"/>
<polygon fill="black" stroke="black" points="180.58,-172.5 190.58,-169 180.58,-165.5 180.58,-172.5"/> <polygon fill="black" stroke="black" points="235.5,-140.99 239,-150.99 242.5,-140.99 235.5,-140.99"/>
</g> </g>
</g> </g>
</svg> </svg>

View File

@ -24,55 +24,55 @@
<title>cluster_PagesModule</title> <title>cluster_PagesModule</title>
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="36,-70 36,-195 460,-195 460,-70 36,-70"/> <polygon fill="none" stroke="black" stroke-dasharray="1,5" points="36,-70 36,-195 460,-195 460,-70 36,-70"/>
</g> </g>
<g id="clust2" class="cluster">
<title>cluster_PagesModule_declarations</title>
<polygon fill="none" stroke="black" points="322,-78 322,-130 452,-130 452,-78 322,-78"/>
</g>
<g id="clust4" class="cluster"> <g id="clust4" class="cluster">
<title>cluster_PagesModule_imports</title> <title>cluster_PagesModule_imports</title>
<polygon fill="none" stroke="black" points="44,-78 44,-130 314,-130 314,-78 44,-78"/> <polygon fill="none" stroke="black" points="182,-78 182,-130 452,-130 452,-78 182,-78"/>
</g>
<g id="clust2" class="cluster">
<title>cluster_PagesModule_declarations</title>
<polygon fill="none" stroke="black" points="44,-78 44,-130 174,-130 174,-78 44,-78"/>
</g> </g>
<!-- PagesComponent --> <!-- PagesComponent -->
<g id="node1" class="node"> <g id="node1" class="node">
<title>PagesComponent</title> <title>PagesComponent</title>
<polygon fill="#ffffb3" stroke="black" points="443.99,-122 330.01,-122 330.01,-86 443.99,-86 443.99,-122"/> <polygon fill="#ffffb3" stroke="black" points="165.99,-122 52.01,-122 52.01,-86 165.99,-86 165.99,-122"/>
<text text-anchor="middle" x="387" y="-99.8" font-family="Times,serif" font-size="14.00">PagesComponent</text> <text text-anchor="middle" x="109" y="-99.8" font-family="Times,serif" font-size="14.00">PagesComponent</text>
</g> </g>
<!-- PagesModule --> <!-- PagesModule -->
<g id="node2" class="node"> <g id="node2" class="node">
<title>PagesModule</title> <title>PagesModule</title>
<polygon fill="#8dd3c7" stroke="black" points="283.21,-187 280.21,-191 259.21,-191 256.21,-187 190.79,-187 190.79,-151 283.21,-151 283.21,-187"/> <polygon fill="#8dd3c7" stroke="black" points="285.21,-187 282.21,-191 261.21,-191 258.21,-187 192.79,-187 192.79,-151 285.21,-151 285.21,-187"/>
<text text-anchor="middle" x="237" y="-164.8" font-family="Times,serif" font-size="14.00">PagesModule</text> <text text-anchor="middle" x="239" y="-164.8" font-family="Times,serif" font-size="14.00">PagesModule</text>
</g> </g>
<!-- PagesComponent&#45;&gt;PagesModule --> <!-- PagesComponent&#45;&gt;PagesModule -->
<g id="edge1" class="edge"> <g id="edge1" class="edge">
<title>PagesComponent&#45;&gt;PagesModule</title> <title>PagesComponent&#45;&gt;PagesModule</title>
<path fill="none" stroke="black" d="M387,-122.11C387,-141.34 387,-169 387,-169 387,-169 293.23,-169 293.23,-169"/> <path fill="none" stroke="black" d="M109,-122.11C109,-141.34 109,-169 109,-169 109,-169 182.8,-169 182.8,-169"/>
<polygon fill="black" stroke="black" points="293.23,-165.5 283.23,-169 293.23,-172.5 293.23,-165.5"/> <polygon fill="black" stroke="black" points="182.8,-172.5 192.8,-169 182.8,-165.5 182.8,-172.5"/>
</g> </g>
<!-- PagesRoutingModule --> <!-- PagesRoutingModule -->
<g id="node3" class="node"> <g id="node3" class="node">
<title>PagesRoutingModule</title> <title>PagesRoutingModule</title>
<polygon fill="#8dd3c7" stroke="black" points="305.82,-122 302.82,-126 281.82,-126 278.82,-122 168.18,-122 168.18,-86 305.82,-86 305.82,-122"/> <polygon fill="#8dd3c7" stroke="black" points="443.82,-122 440.82,-126 419.82,-126 416.82,-122 306.18,-122 306.18,-86 443.82,-86 443.82,-122"/>
<text text-anchor="middle" x="237" y="-99.8" font-family="Times,serif" font-size="14.00">PagesRoutingModule</text> <text text-anchor="middle" x="375" y="-99.8" font-family="Times,serif" font-size="14.00">PagesRoutingModule</text>
</g> </g>
<!-- PagesRoutingModule&#45;&gt;PagesModule --> <!-- PagesRoutingModule&#45;&gt;PagesModule -->
<g id="edge2" class="edge"> <g id="edge2" class="edge">
<title>PagesRoutingModule&#45;&gt;PagesModule</title> <title>PagesRoutingModule&#45;&gt;PagesModule</title>
<path fill="none" stroke="black" d="M237,-122.11C237,-122.11 237,-140.99 237,-140.99"/> <path fill="none" stroke="black" d="M375,-122.11C375,-141.34 375,-169 375,-169 375,-169 295.42,-169 295.42,-169"/>
<polygon fill="black" stroke="black" points="233.5,-140.99 237,-150.99 240.5,-140.99 233.5,-140.99"/> <polygon fill="black" stroke="black" points="295.42,-165.5 285.42,-169 295.42,-172.5 295.42,-165.5"/>
</g> </g>
<!-- SharedModule --> <!-- SharedModule -->
<g id="node4" class="node"> <g id="node4" class="node">
<title>SharedModule</title> <title>SharedModule</title>
<polygon fill="#8dd3c7" stroke="black" points="150.42,-122 147.42,-126 126.42,-126 123.42,-122 51.58,-122 51.58,-86 150.42,-86 150.42,-122"/> <polygon fill="#8dd3c7" stroke="black" points="288.42,-122 285.42,-126 264.42,-126 261.42,-122 189.58,-122 189.58,-86 288.42,-86 288.42,-122"/>
<text text-anchor="middle" x="101" y="-99.8" font-family="Times,serif" font-size="14.00">SharedModule</text> <text text-anchor="middle" x="239" y="-99.8" font-family="Times,serif" font-size="14.00">SharedModule</text>
</g> </g>
<!-- SharedModule&#45;&gt;PagesModule --> <!-- SharedModule&#45;&gt;PagesModule -->
<g id="edge3" class="edge"> <g id="edge3" class="edge">
<title>SharedModule&#45;&gt;PagesModule</title> <title>SharedModule&#45;&gt;PagesModule</title>
<path fill="none" stroke="black" d="M101,-122.11C101,-141.34 101,-169 101,-169 101,-169 180.58,-169 180.58,-169"/> <path fill="none" stroke="black" d="M239,-122.11C239,-122.11 239,-140.99 239,-140.99"/>
<polygon fill="black" stroke="black" points="180.58,-172.5 190.58,-169 180.58,-165.5 180.58,-172.5"/> <polygon fill="black" stroke="black" points="235.5,-140.99 239,-150.99 242.5,-140.99 235.5,-140.99"/>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@ -65,67 +65,67 @@
<title>cluster_SettingsModule</title> <title>cluster_SettingsModule</title>
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="8,-70 8,-195 628,-195 628,-70 8,-70"/> <polygon fill="none" stroke="black" stroke-dasharray="1,5" points="8,-70 8,-195 628,-195 628,-70 8,-70"/>
</g> </g>
<g id="clust5" class="cluster">
<title>cluster_SettingsModule_imports</title>
<polygon fill="none" stroke="black" points="338,-78 338,-130 620,-130 620,-78 338,-78"/>
</g>
<g id="clust2" class="cluster"> <g id="clust2" class="cluster">
<title>cluster_SettingsModule_declarations</title> <title>cluster_SettingsModule_declarations</title>
<polygon fill="none" stroke="black" points="16,-78 16,-130 330,-130 330,-78 16,-78"/> <polygon fill="none" stroke="black" points="306,-78 306,-130 620,-130 620,-78 306,-78"/>
</g>
<g id="clust5" class="cluster">
<title>cluster_SettingsModule_imports</title>
<polygon fill="none" stroke="black" points="16,-78 16,-130 298,-130 298,-78 16,-78"/>
</g> </g>
<!-- OrganizationComponent --> <!-- OrganizationComponent -->
<g id="node1" class="node"> <g id="node1" class="node">
<title>OrganizationComponent</title> <title>OrganizationComponent</title>
<polygon fill="#ffffb3" stroke="black" points="322.42,-122 167.58,-122 167.58,-86 322.42,-86 322.42,-122"/> <polygon fill="#ffffb3" stroke="black" points="612.42,-122 457.58,-122 457.58,-86 612.42,-86 612.42,-122"/>
<text text-anchor="middle" x="245" y="-99.8" font-family="Times,serif" font-size="14.00">OrganizationComponent</text> <text text-anchor="middle" x="535" y="-99.8" font-family="Times,serif" font-size="14.00">OrganizationComponent</text>
</g> </g>
<!-- SettingsModule --> <!-- SettingsModule -->
<g id="node3" class="node"> <g id="node3" class="node">
<title>SettingsModule</title> <title>SettingsModule</title>
<polygon fill="#8dd3c7" stroke="black" points="372.16,-187 369.16,-191 348.16,-191 345.16,-187 267.84,-187 267.84,-151 372.16,-151 372.16,-187"/> <polygon fill="#8dd3c7" stroke="black" points="348.16,-187 345.16,-191 324.16,-191 321.16,-187 243.84,-187 243.84,-151 348.16,-151 348.16,-187"/>
<text text-anchor="middle" x="320" y="-164.8" font-family="Times,serif" font-size="14.00">SettingsModule</text> <text text-anchor="middle" x="296" y="-164.8" font-family="Times,serif" font-size="14.00">SettingsModule</text>
</g> </g>
<!-- OrganizationComponent&#45;&gt;SettingsModule --> <!-- OrganizationComponent&#45;&gt;SettingsModule -->
<g id="edge1" class="edge"> <g id="edge1" class="edge">
<title>OrganizationComponent&#45;&gt;SettingsModule</title> <title>OrganizationComponent&#45;&gt;SettingsModule</title>
<path fill="none" stroke="black" d="M294.94,-122.11C294.94,-122.11 294.94,-140.99 294.94,-140.99"/> <path fill="none" stroke="black" d="M535,-122.11C535,-141.34 535,-169 535,-169 535,-169 358.45,-169 358.45,-169"/>
<polygon fill="black" stroke="black" points="291.44,-140.99 294.94,-150.99 298.44,-140.99 291.44,-140.99"/> <polygon fill="black" stroke="black" points="358.45,-165.5 348.45,-169 358.45,-172.5 358.45,-165.5"/>
</g> </g>
<!-- SettingsComponent --> <!-- SettingsComponent -->
<g id="node2" class="node"> <g id="node2" class="node">
<title>SettingsComponent</title> <title>SettingsComponent</title>
<polygon fill="#ffffb3" stroke="black" points="150.45,-122 23.55,-122 23.55,-86 150.45,-86 150.45,-122"/> <polygon fill="#ffffb3" stroke="black" points="440.45,-122 313.55,-122 313.55,-86 440.45,-86 440.45,-122"/>
<text text-anchor="middle" x="87" y="-99.8" font-family="Times,serif" font-size="14.00">SettingsComponent</text> <text text-anchor="middle" x="377" y="-99.8" font-family="Times,serif" font-size="14.00">SettingsComponent</text>
</g> </g>
<!-- SettingsComponent&#45;&gt;SettingsModule --> <!-- SettingsComponent&#45;&gt;SettingsModule -->
<g id="edge2" class="edge"> <g id="edge2" class="edge">
<title>SettingsComponent&#45;&gt;SettingsModule</title> <title>SettingsComponent&#45;&gt;SettingsModule</title>
<path fill="none" stroke="black" d="M87,-122.11C87,-141.34 87,-169 87,-169 87,-169 257.71,-169 257.71,-169"/> <path fill="none" stroke="black" d="M331.05,-122.11C331.05,-122.11 331.05,-140.99 331.05,-140.99"/>
<polygon fill="black" stroke="black" points="257.71,-172.5 267.71,-169 257.71,-165.5 257.71,-172.5"/> <polygon fill="black" stroke="black" points="327.55,-140.99 331.05,-150.99 334.55,-140.99 327.55,-140.99"/>
</g> </g>
<!-- SettingsRoutingModule --> <!-- SettingsRoutingModule -->
<g id="node4" class="node"> <g id="node4" class="node">
<title>SettingsRoutingModule</title> <title>SettingsRoutingModule</title>
<polygon fill="#8dd3c7" stroke="black" points="611.78,-122 608.78,-126 587.78,-126 584.78,-122 462.22,-122 462.22,-86 611.78,-86 611.78,-122"/> <polygon fill="#8dd3c7" stroke="black" points="289.78,-122 286.78,-126 265.78,-126 262.78,-122 140.22,-122 140.22,-86 289.78,-86 289.78,-122"/>
<text text-anchor="middle" x="537" y="-99.8" font-family="Times,serif" font-size="14.00">SettingsRoutingModule</text> <text text-anchor="middle" x="215" y="-99.8" font-family="Times,serif" font-size="14.00">SettingsRoutingModule</text>
</g> </g>
<!-- SettingsRoutingModule&#45;&gt;SettingsModule --> <!-- SettingsRoutingModule&#45;&gt;SettingsModule -->
<g id="edge3" class="edge"> <g id="edge3" class="edge">
<title>SettingsRoutingModule&#45;&gt;SettingsModule</title> <title>SettingsRoutingModule&#45;&gt;SettingsModule</title>
<path fill="none" stroke="black" d="M537,-122.11C537,-141.34 537,-169 537,-169 537,-169 382.25,-169 382.25,-169"/> <path fill="none" stroke="black" d="M266.78,-122.11C266.78,-122.11 266.78,-140.99 266.78,-140.99"/>
<polygon fill="black" stroke="black" points="382.25,-165.5 372.25,-169 382.25,-172.5 382.25,-165.5"/> <polygon fill="black" stroke="black" points="263.28,-140.99 266.78,-150.99 270.28,-140.99 263.28,-140.99"/>
</g> </g>
<!-- SharedModule --> <!-- SharedModule -->
<g id="node5" class="node"> <g id="node5" class="node">
<title>SharedModule</title> <title>SharedModule</title>
<polygon fill="#8dd3c7" stroke="black" points="444.42,-122 441.42,-126 420.42,-126 417.42,-122 345.58,-122 345.58,-86 444.42,-86 444.42,-122"/> <polygon fill="#8dd3c7" stroke="black" points="122.42,-122 119.42,-126 98.42,-126 95.42,-122 23.58,-122 23.58,-86 122.42,-86 122.42,-122"/>
<text text-anchor="middle" x="395" y="-99.8" font-family="Times,serif" font-size="14.00">SharedModule</text> <text text-anchor="middle" x="73" y="-99.8" font-family="Times,serif" font-size="14.00">SharedModule</text>
</g> </g>
<!-- SharedModule&#45;&gt;SettingsModule --> <!-- SharedModule&#45;&gt;SettingsModule -->
<g id="edge4" class="edge"> <g id="edge4" class="edge">
<title>SharedModule&#45;&gt;SettingsModule</title> <title>SharedModule&#45;&gt;SettingsModule</title>
<path fill="none" stroke="black" d="M359.06,-122.11C359.06,-122.11 359.06,-140.99 359.06,-140.99"/> <path fill="none" stroke="black" d="M73,-122.11C73,-141.34 73,-169 73,-169 73,-169 233.72,-169 233.72,-169"/>
<polygon fill="black" stroke="black" points="355.56,-140.99 359.06,-150.99 362.56,-140.99 355.56,-140.99"/> <polygon fill="black" stroke="black" points="233.72,-172.5 243.72,-169 233.72,-165.5 233.72,-172.5"/>
</g> </g>
</g> </g>
</svg> </svg>

View File

@ -24,67 +24,67 @@
<title>cluster_SettingsModule</title> <title>cluster_SettingsModule</title>
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="8,-70 8,-195 628,-195 628,-70 8,-70"/> <polygon fill="none" stroke="black" stroke-dasharray="1,5" points="8,-70 8,-195 628,-195 628,-70 8,-70"/>
</g> </g>
<g id="clust5" class="cluster">
<title>cluster_SettingsModule_imports</title>
<polygon fill="none" stroke="black" points="338,-78 338,-130 620,-130 620,-78 338,-78"/>
</g>
<g id="clust2" class="cluster"> <g id="clust2" class="cluster">
<title>cluster_SettingsModule_declarations</title> <title>cluster_SettingsModule_declarations</title>
<polygon fill="none" stroke="black" points="16,-78 16,-130 330,-130 330,-78 16,-78"/> <polygon fill="none" stroke="black" points="306,-78 306,-130 620,-130 620,-78 306,-78"/>
</g>
<g id="clust5" class="cluster">
<title>cluster_SettingsModule_imports</title>
<polygon fill="none" stroke="black" points="16,-78 16,-130 298,-130 298,-78 16,-78"/>
</g> </g>
<!-- OrganizationComponent --> <!-- OrganizationComponent -->
<g id="node1" class="node"> <g id="node1" class="node">
<title>OrganizationComponent</title> <title>OrganizationComponent</title>
<polygon fill="#ffffb3" stroke="black" points="322.42,-122 167.58,-122 167.58,-86 322.42,-86 322.42,-122"/> <polygon fill="#ffffb3" stroke="black" points="612.42,-122 457.58,-122 457.58,-86 612.42,-86 612.42,-122"/>
<text text-anchor="middle" x="245" y="-99.8" font-family="Times,serif" font-size="14.00">OrganizationComponent</text> <text text-anchor="middle" x="535" y="-99.8" font-family="Times,serif" font-size="14.00">OrganizationComponent</text>
</g> </g>
<!-- SettingsModule --> <!-- SettingsModule -->
<g id="node3" class="node"> <g id="node3" class="node">
<title>SettingsModule</title> <title>SettingsModule</title>
<polygon fill="#8dd3c7" stroke="black" points="372.16,-187 369.16,-191 348.16,-191 345.16,-187 267.84,-187 267.84,-151 372.16,-151 372.16,-187"/> <polygon fill="#8dd3c7" stroke="black" points="348.16,-187 345.16,-191 324.16,-191 321.16,-187 243.84,-187 243.84,-151 348.16,-151 348.16,-187"/>
<text text-anchor="middle" x="320" y="-164.8" font-family="Times,serif" font-size="14.00">SettingsModule</text> <text text-anchor="middle" x="296" y="-164.8" font-family="Times,serif" font-size="14.00">SettingsModule</text>
</g> </g>
<!-- OrganizationComponent&#45;&gt;SettingsModule --> <!-- OrganizationComponent&#45;&gt;SettingsModule -->
<g id="edge1" class="edge"> <g id="edge1" class="edge">
<title>OrganizationComponent&#45;&gt;SettingsModule</title> <title>OrganizationComponent&#45;&gt;SettingsModule</title>
<path fill="none" stroke="black" d="M294.94,-122.11C294.94,-122.11 294.94,-140.99 294.94,-140.99"/> <path fill="none" stroke="black" d="M535,-122.11C535,-141.34 535,-169 535,-169 535,-169 358.45,-169 358.45,-169"/>
<polygon fill="black" stroke="black" points="291.44,-140.99 294.94,-150.99 298.44,-140.99 291.44,-140.99"/> <polygon fill="black" stroke="black" points="358.45,-165.5 348.45,-169 358.45,-172.5 358.45,-165.5"/>
</g> </g>
<!-- SettingsComponent --> <!-- SettingsComponent -->
<g id="node2" class="node"> <g id="node2" class="node">
<title>SettingsComponent</title> <title>SettingsComponent</title>
<polygon fill="#ffffb3" stroke="black" points="150.45,-122 23.55,-122 23.55,-86 150.45,-86 150.45,-122"/> <polygon fill="#ffffb3" stroke="black" points="440.45,-122 313.55,-122 313.55,-86 440.45,-86 440.45,-122"/>
<text text-anchor="middle" x="87" y="-99.8" font-family="Times,serif" font-size="14.00">SettingsComponent</text> <text text-anchor="middle" x="377" y="-99.8" font-family="Times,serif" font-size="14.00">SettingsComponent</text>
</g> </g>
<!-- SettingsComponent&#45;&gt;SettingsModule --> <!-- SettingsComponent&#45;&gt;SettingsModule -->
<g id="edge2" class="edge"> <g id="edge2" class="edge">
<title>SettingsComponent&#45;&gt;SettingsModule</title> <title>SettingsComponent&#45;&gt;SettingsModule</title>
<path fill="none" stroke="black" d="M87,-122.11C87,-141.34 87,-169 87,-169 87,-169 257.71,-169 257.71,-169"/> <path fill="none" stroke="black" d="M331.05,-122.11C331.05,-122.11 331.05,-140.99 331.05,-140.99"/>
<polygon fill="black" stroke="black" points="257.71,-172.5 267.71,-169 257.71,-165.5 257.71,-172.5"/> <polygon fill="black" stroke="black" points="327.55,-140.99 331.05,-150.99 334.55,-140.99 327.55,-140.99"/>
</g> </g>
<!-- SettingsRoutingModule --> <!-- SettingsRoutingModule -->
<g id="node4" class="node"> <g id="node4" class="node">
<title>SettingsRoutingModule</title> <title>SettingsRoutingModule</title>
<polygon fill="#8dd3c7" stroke="black" points="611.78,-122 608.78,-126 587.78,-126 584.78,-122 462.22,-122 462.22,-86 611.78,-86 611.78,-122"/> <polygon fill="#8dd3c7" stroke="black" points="289.78,-122 286.78,-126 265.78,-126 262.78,-122 140.22,-122 140.22,-86 289.78,-86 289.78,-122"/>
<text text-anchor="middle" x="537" y="-99.8" font-family="Times,serif" font-size="14.00">SettingsRoutingModule</text> <text text-anchor="middle" x="215" y="-99.8" font-family="Times,serif" font-size="14.00">SettingsRoutingModule</text>
</g> </g>
<!-- SettingsRoutingModule&#45;&gt;SettingsModule --> <!-- SettingsRoutingModule&#45;&gt;SettingsModule -->
<g id="edge3" class="edge"> <g id="edge3" class="edge">
<title>SettingsRoutingModule&#45;&gt;SettingsModule</title> <title>SettingsRoutingModule&#45;&gt;SettingsModule</title>
<path fill="none" stroke="black" d="M537,-122.11C537,-141.34 537,-169 537,-169 537,-169 382.25,-169 382.25,-169"/> <path fill="none" stroke="black" d="M266.78,-122.11C266.78,-122.11 266.78,-140.99 266.78,-140.99"/>
<polygon fill="black" stroke="black" points="382.25,-165.5 372.25,-169 382.25,-172.5 382.25,-165.5"/> <polygon fill="black" stroke="black" points="263.28,-140.99 266.78,-150.99 270.28,-140.99 263.28,-140.99"/>
</g> </g>
<!-- SharedModule --> <!-- SharedModule -->
<g id="node5" class="node"> <g id="node5" class="node">
<title>SharedModule</title> <title>SharedModule</title>
<polygon fill="#8dd3c7" stroke="black" points="444.42,-122 441.42,-126 420.42,-126 417.42,-122 345.58,-122 345.58,-86 444.42,-86 444.42,-122"/> <polygon fill="#8dd3c7" stroke="black" points="122.42,-122 119.42,-126 98.42,-126 95.42,-122 23.58,-122 23.58,-86 122.42,-86 122.42,-122"/>
<text text-anchor="middle" x="395" y="-99.8" font-family="Times,serif" font-size="14.00">SharedModule</text> <text text-anchor="middle" x="73" y="-99.8" font-family="Times,serif" font-size="14.00">SharedModule</text>
</g> </g>
<!-- SharedModule&#45;&gt;SettingsModule --> <!-- SharedModule&#45;&gt;SettingsModule -->
<g id="edge4" class="edge"> <g id="edge4" class="edge">
<title>SharedModule&#45;&gt;SettingsModule</title> <title>SharedModule&#45;&gt;SettingsModule</title>
<path fill="none" stroke="black" d="M359.06,-122.11C359.06,-122.11 359.06,-140.99 359.06,-140.99"/> <path fill="none" stroke="black" d="M73,-122.11C73,-141.34 73,-169 73,-169 73,-169 233.72,-169 233.72,-169"/>
<polygon fill="black" stroke="black" points="355.56,-140.99 359.06,-150.99 362.56,-140.99 355.56,-140.99"/> <polygon fill="black" stroke="black" points="233.72,-172.5 243.72,-169 233.72,-165.5 233.72,-172.5"/>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -65,14 +65,14 @@
<title>cluster_SharedModule</title> <title>cluster_SharedModule</title>
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="8,-70 8,-268 1440,-268 1440,-70 8,-70"/> <polygon fill="none" stroke="black" stroke-dasharray="1,5" points="8,-70 8,-268 1440,-268 1440,-70 8,-70"/>
</g> </g>
<g id="clust2" class="cluster">
<title>cluster_SharedModule_declarations</title>
<polygon fill="none" stroke="black" points="16,-78 16,-130 1432,-130 1432,-78 16,-78"/>
</g>
<g id="clust14" class="cluster"> <g id="clust14" class="cluster">
<title>cluster_SharedModule_exports</title> <title>cluster_SharedModule_exports</title>
<polygon fill="none" stroke="black" points="126,-208 126,-260 1245,-260 1245,-208 126,-208"/> <polygon fill="none" stroke="black" points="126,-208 126,-260 1245,-260 1245,-208 126,-208"/>
</g> </g>
<g id="clust2" class="cluster">
<title>cluster_SharedModule_declarations</title>
<polygon fill="none" stroke="black" points="16,-78 16,-130 1432,-130 1432,-78 16,-78"/>
</g>
<!-- ErrorDialogComponent --> <!-- ErrorDialogComponent -->
<g id="node1" class="node"> <g id="node1" class="node">
<title>ErrorDialogComponent</title> <title>ErrorDialogComponent</title>

View File

@ -24,14 +24,14 @@
<title>cluster_SharedModule</title> <title>cluster_SharedModule</title>
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="8,-70 8,-268 1440,-268 1440,-70 8,-70"/> <polygon fill="none" stroke="black" stroke-dasharray="1,5" points="8,-70 8,-268 1440,-268 1440,-70 8,-70"/>
</g> </g>
<g id="clust2" class="cluster">
<title>cluster_SharedModule_declarations</title>
<polygon fill="none" stroke="black" points="16,-78 16,-130 1432,-130 1432,-78 16,-78"/>
</g>
<g id="clust14" class="cluster"> <g id="clust14" class="cluster">
<title>cluster_SharedModule_exports</title> <title>cluster_SharedModule_exports</title>
<polygon fill="none" stroke="black" points="126,-208 126,-260 1245,-260 1245,-208 126,-208"/> <polygon fill="none" stroke="black" points="126,-208 126,-260 1245,-260 1245,-208 126,-208"/>
</g> </g>
<g id="clust2" class="cluster">
<title>cluster_SharedModule_declarations</title>
<polygon fill="none" stroke="black" points="16,-78 16,-130 1432,-130 1432,-78 16,-78"/>
</g>
<!-- ErrorDialogComponent --> <!-- ErrorDialogComponent -->
<g id="node1" class="node"> <g id="node1" class="node">
<title>ErrorDialogComponent</title> <title>ErrorDialogComponent</title>

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -65,67 +65,67 @@
<title>cluster_TokensModule</title> <title>cluster_TokensModule</title>
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="8,-70 8,-195 623,-195 623,-70 8,-70"/> <polygon fill="none" stroke="black" stroke-dasharray="1,5" points="8,-70 8,-195 623,-195 623,-70 8,-70"/>
</g> </g>
<g id="clust2" class="cluster">
<title>cluster_TokensModule_declarations</title>
<polygon fill="none" stroke="black" points="302,-78 302,-130 615,-130 615,-78 302,-78"/>
</g>
<g id="clust5" class="cluster"> <g id="clust5" class="cluster">
<title>cluster_TokensModule_imports</title> <title>cluster_TokensModule_imports</title>
<polygon fill="none" stroke="black" points="16,-78 16,-130 294,-130 294,-78 16,-78"/> <polygon fill="none" stroke="black" points="337,-78 337,-130 615,-130 615,-78 337,-78"/>
</g>
<g id="clust2" class="cluster">
<title>cluster_TokensModule_declarations</title>
<polygon fill="none" stroke="black" points="16,-78 16,-130 329,-130 329,-78 16,-78"/>
</g> </g>
<!-- TokenDetailsComponent --> <!-- TokenDetailsComponent -->
<g id="node1" class="node"> <g id="node1" class="node">
<title>TokenDetailsComponent</title> <title>TokenDetailsComponent</title>
<polygon fill="#ffffb3" stroke="black" points="607.25,-122 450.75,-122 450.75,-86 607.25,-86 607.25,-122"/> <polygon fill="#ffffb3" stroke="black" points="321.25,-122 164.75,-122 164.75,-86 321.25,-86 321.25,-122"/>
<text text-anchor="middle" x="529" y="-99.8" font-family="Times,serif" font-size="14.00">TokenDetailsComponent</text> <text text-anchor="middle" x="243" y="-99.8" font-family="Times,serif" font-size="14.00">TokenDetailsComponent</text>
</g> </g>
<!-- TokensModule --> <!-- TokensModule -->
<g id="node3" class="node"> <g id="node3" class="node">
<title>TokensModule</title> <title>TokensModule</title>
<polygon fill="#8dd3c7" stroke="black" points="354.26,-187 351.26,-191 330.26,-191 327.26,-187 253.74,-187 253.74,-151 354.26,-151 354.26,-187"/> <polygon fill="#8dd3c7" stroke="black" points="380.26,-187 377.26,-191 356.26,-191 353.26,-187 279.74,-187 279.74,-151 380.26,-151 380.26,-187"/>
<text text-anchor="middle" x="304" y="-164.8" font-family="Times,serif" font-size="14.00">TokensModule</text> <text text-anchor="middle" x="330" y="-164.8" font-family="Times,serif" font-size="14.00">TokensModule</text>
</g> </g>
<!-- TokenDetailsComponent&#45;&gt;TokensModule --> <!-- TokenDetailsComponent&#45;&gt;TokensModule -->
<g id="edge1" class="edge"> <g id="edge1" class="edge">
<title>TokenDetailsComponent&#45;&gt;TokensModule</title> <title>TokenDetailsComponent&#45;&gt;TokensModule</title>
<path fill="none" stroke="black" d="M529,-122.11C529,-141.34 529,-169 529,-169 529,-169 364.49,-169 364.49,-169"/> <path fill="none" stroke="black" d="M300.5,-122.11C300.5,-122.11 300.5,-140.99 300.5,-140.99"/>
<polygon fill="black" stroke="black" points="364.49,-165.5 354.49,-169 364.49,-172.5 364.49,-165.5"/> <polygon fill="black" stroke="black" points="297,-140.99 300.5,-150.99 304,-140.99 297,-140.99"/>
</g> </g>
<!-- TokensComponent --> <!-- TokensComponent -->
<g id="node2" class="node"> <g id="node2" class="node">
<title>TokensComponent</title> <title>TokensComponent</title>
<polygon fill="#ffffb3" stroke="black" points="432.05,-122 309.95,-122 309.95,-86 432.05,-86 432.05,-122"/> <polygon fill="#ffffb3" stroke="black" points="146.05,-122 23.95,-122 23.95,-86 146.05,-86 146.05,-122"/>
<text text-anchor="middle" x="371" y="-99.8" font-family="Times,serif" font-size="14.00">TokensComponent</text> <text text-anchor="middle" x="85" y="-99.8" font-family="Times,serif" font-size="14.00">TokensComponent</text>
</g> </g>
<!-- TokensComponent&#45;&gt;TokensModule --> <!-- TokensComponent&#45;&gt;TokensModule -->
<g id="edge2" class="edge"> <g id="edge2" class="edge">
<title>TokensComponent&#45;&gt;TokensModule</title> <title>TokensComponent&#45;&gt;TokensModule</title>
<path fill="none" stroke="black" d="M332.05,-122.11C332.05,-122.11 332.05,-140.99 332.05,-140.99"/> <path fill="none" stroke="black" d="M85,-122.11C85,-141.34 85,-169 85,-169 85,-169 269.53,-169 269.53,-169"/>
<polygon fill="black" stroke="black" points="328.55,-140.99 332.05,-150.99 335.55,-140.99 328.55,-140.99"/> <polygon fill="black" stroke="black" points="269.53,-172.5 279.53,-169 269.53,-165.5 269.53,-172.5"/>
</g> </g>
<!-- SharedModule --> <!-- SharedModule -->
<g id="node4" class="node"> <g id="node4" class="node">
<title>SharedModule</title> <title>SharedModule</title>
<polygon fill="#8dd3c7" stroke="black" points="286.42,-122 283.42,-126 262.42,-126 259.42,-122 187.58,-122 187.58,-86 286.42,-86 286.42,-122"/> <polygon fill="#8dd3c7" stroke="black" points="607.42,-122 604.42,-126 583.42,-126 580.42,-122 508.58,-122 508.58,-86 607.42,-86 607.42,-122"/>
<text text-anchor="middle" x="237" y="-99.8" font-family="Times,serif" font-size="14.00">SharedModule</text> <text text-anchor="middle" x="558" y="-99.8" font-family="Times,serif" font-size="14.00">SharedModule</text>
</g> </g>
<!-- SharedModule&#45;&gt;TokensModule --> <!-- SharedModule&#45;&gt;TokensModule -->
<g id="edge3" class="edge"> <g id="edge3" class="edge">
<title>SharedModule&#45;&gt;TokensModule</title> <title>SharedModule&#45;&gt;TokensModule</title>
<path fill="none" stroke="black" d="M269.92,-122.11C269.92,-122.11 269.92,-140.99 269.92,-140.99"/> <path fill="none" stroke="black" d="M558,-122.11C558,-141.34 558,-169 558,-169 558,-169 390.32,-169 390.32,-169"/>
<polygon fill="black" stroke="black" points="266.42,-140.99 269.92,-150.99 273.42,-140.99 266.42,-140.99"/> <polygon fill="black" stroke="black" points="390.32,-165.5 380.32,-169 390.32,-172.5 390.32,-165.5"/>
</g> </g>
<!-- TokensRoutingModule --> <!-- TokensRoutingModule -->
<g id="node5" class="node"> <g id="node5" class="node">
<title>TokensRoutingModule</title> <title>TokensRoutingModule</title>
<polygon fill="#8dd3c7" stroke="black" points="169.88,-122 166.88,-126 145.88,-126 142.88,-122 24.12,-122 24.12,-86 169.88,-86 169.88,-122"/> <polygon fill="#8dd3c7" stroke="black" points="490.88,-122 487.88,-126 466.88,-126 463.88,-122 345.12,-122 345.12,-86 490.88,-86 490.88,-122"/>
<text text-anchor="middle" x="97" y="-99.8" font-family="Times,serif" font-size="14.00">TokensRoutingModule</text> <text text-anchor="middle" x="418" y="-99.8" font-family="Times,serif" font-size="14.00">TokensRoutingModule</text>
</g> </g>
<!-- TokensRoutingModule&#45;&gt;TokensModule --> <!-- TokensRoutingModule&#45;&gt;TokensModule -->
<g id="edge4" class="edge"> <g id="edge4" class="edge">
<title>TokensRoutingModule&#45;&gt;TokensModule</title> <title>TokensRoutingModule&#45;&gt;TokensModule</title>
<path fill="none" stroke="black" d="M97,-122.11C97,-141.34 97,-169 97,-169 97,-169 243.63,-169 243.63,-169"/> <path fill="none" stroke="black" d="M362.72,-122.11C362.72,-122.11 362.72,-140.99 362.72,-140.99"/>
<polygon fill="black" stroke="black" points="243.63,-172.5 253.63,-169 243.63,-165.5 243.63,-172.5"/> <polygon fill="black" stroke="black" points="359.22,-140.99 362.72,-150.99 366.22,-140.99 359.22,-140.99"/>
</g> </g>
</g> </g>
</svg> </svg>

View File

@ -24,67 +24,67 @@
<title>cluster_TokensModule</title> <title>cluster_TokensModule</title>
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="8,-70 8,-195 623,-195 623,-70 8,-70"/> <polygon fill="none" stroke="black" stroke-dasharray="1,5" points="8,-70 8,-195 623,-195 623,-70 8,-70"/>
</g> </g>
<g id="clust2" class="cluster">
<title>cluster_TokensModule_declarations</title>
<polygon fill="none" stroke="black" points="302,-78 302,-130 615,-130 615,-78 302,-78"/>
</g>
<g id="clust5" class="cluster"> <g id="clust5" class="cluster">
<title>cluster_TokensModule_imports</title> <title>cluster_TokensModule_imports</title>
<polygon fill="none" stroke="black" points="16,-78 16,-130 294,-130 294,-78 16,-78"/> <polygon fill="none" stroke="black" points="337,-78 337,-130 615,-130 615,-78 337,-78"/>
</g>
<g id="clust2" class="cluster">
<title>cluster_TokensModule_declarations</title>
<polygon fill="none" stroke="black" points="16,-78 16,-130 329,-130 329,-78 16,-78"/>
</g> </g>
<!-- TokenDetailsComponent --> <!-- TokenDetailsComponent -->
<g id="node1" class="node"> <g id="node1" class="node">
<title>TokenDetailsComponent</title> <title>TokenDetailsComponent</title>
<polygon fill="#ffffb3" stroke="black" points="607.25,-122 450.75,-122 450.75,-86 607.25,-86 607.25,-122"/> <polygon fill="#ffffb3" stroke="black" points="321.25,-122 164.75,-122 164.75,-86 321.25,-86 321.25,-122"/>
<text text-anchor="middle" x="529" y="-99.8" font-family="Times,serif" font-size="14.00">TokenDetailsComponent</text> <text text-anchor="middle" x="243" y="-99.8" font-family="Times,serif" font-size="14.00">TokenDetailsComponent</text>
</g> </g>
<!-- TokensModule --> <!-- TokensModule -->
<g id="node3" class="node"> <g id="node3" class="node">
<title>TokensModule</title> <title>TokensModule</title>
<polygon fill="#8dd3c7" stroke="black" points="354.26,-187 351.26,-191 330.26,-191 327.26,-187 253.74,-187 253.74,-151 354.26,-151 354.26,-187"/> <polygon fill="#8dd3c7" stroke="black" points="380.26,-187 377.26,-191 356.26,-191 353.26,-187 279.74,-187 279.74,-151 380.26,-151 380.26,-187"/>
<text text-anchor="middle" x="304" y="-164.8" font-family="Times,serif" font-size="14.00">TokensModule</text> <text text-anchor="middle" x="330" y="-164.8" font-family="Times,serif" font-size="14.00">TokensModule</text>
</g> </g>
<!-- TokenDetailsComponent&#45;&gt;TokensModule --> <!-- TokenDetailsComponent&#45;&gt;TokensModule -->
<g id="edge1" class="edge"> <g id="edge1" class="edge">
<title>TokenDetailsComponent&#45;&gt;TokensModule</title> <title>TokenDetailsComponent&#45;&gt;TokensModule</title>
<path fill="none" stroke="black" d="M529,-122.11C529,-141.34 529,-169 529,-169 529,-169 364.49,-169 364.49,-169"/> <path fill="none" stroke="black" d="M300.5,-122.11C300.5,-122.11 300.5,-140.99 300.5,-140.99"/>
<polygon fill="black" stroke="black" points="364.49,-165.5 354.49,-169 364.49,-172.5 364.49,-165.5"/> <polygon fill="black" stroke="black" points="297,-140.99 300.5,-150.99 304,-140.99 297,-140.99"/>
</g> </g>
<!-- TokensComponent --> <!-- TokensComponent -->
<g id="node2" class="node"> <g id="node2" class="node">
<title>TokensComponent</title> <title>TokensComponent</title>
<polygon fill="#ffffb3" stroke="black" points="432.05,-122 309.95,-122 309.95,-86 432.05,-86 432.05,-122"/> <polygon fill="#ffffb3" stroke="black" points="146.05,-122 23.95,-122 23.95,-86 146.05,-86 146.05,-122"/>
<text text-anchor="middle" x="371" y="-99.8" font-family="Times,serif" font-size="14.00">TokensComponent</text> <text text-anchor="middle" x="85" y="-99.8" font-family="Times,serif" font-size="14.00">TokensComponent</text>
</g> </g>
<!-- TokensComponent&#45;&gt;TokensModule --> <!-- TokensComponent&#45;&gt;TokensModule -->
<g id="edge2" class="edge"> <g id="edge2" class="edge">
<title>TokensComponent&#45;&gt;TokensModule</title> <title>TokensComponent&#45;&gt;TokensModule</title>
<path fill="none" stroke="black" d="M332.05,-122.11C332.05,-122.11 332.05,-140.99 332.05,-140.99"/> <path fill="none" stroke="black" d="M85,-122.11C85,-141.34 85,-169 85,-169 85,-169 269.53,-169 269.53,-169"/>
<polygon fill="black" stroke="black" points="328.55,-140.99 332.05,-150.99 335.55,-140.99 328.55,-140.99"/> <polygon fill="black" stroke="black" points="269.53,-172.5 279.53,-169 269.53,-165.5 269.53,-172.5"/>
</g> </g>
<!-- SharedModule --> <!-- SharedModule -->
<g id="node4" class="node"> <g id="node4" class="node">
<title>SharedModule</title> <title>SharedModule</title>
<polygon fill="#8dd3c7" stroke="black" points="286.42,-122 283.42,-126 262.42,-126 259.42,-122 187.58,-122 187.58,-86 286.42,-86 286.42,-122"/> <polygon fill="#8dd3c7" stroke="black" points="607.42,-122 604.42,-126 583.42,-126 580.42,-122 508.58,-122 508.58,-86 607.42,-86 607.42,-122"/>
<text text-anchor="middle" x="237" y="-99.8" font-family="Times,serif" font-size="14.00">SharedModule</text> <text text-anchor="middle" x="558" y="-99.8" font-family="Times,serif" font-size="14.00">SharedModule</text>
</g> </g>
<!-- SharedModule&#45;&gt;TokensModule --> <!-- SharedModule&#45;&gt;TokensModule -->
<g id="edge3" class="edge"> <g id="edge3" class="edge">
<title>SharedModule&#45;&gt;TokensModule</title> <title>SharedModule&#45;&gt;TokensModule</title>
<path fill="none" stroke="black" d="M269.92,-122.11C269.92,-122.11 269.92,-140.99 269.92,-140.99"/> <path fill="none" stroke="black" d="M558,-122.11C558,-141.34 558,-169 558,-169 558,-169 390.32,-169 390.32,-169"/>
<polygon fill="black" stroke="black" points="266.42,-140.99 269.92,-150.99 273.42,-140.99 266.42,-140.99"/> <polygon fill="black" stroke="black" points="390.32,-165.5 380.32,-169 390.32,-172.5 390.32,-165.5"/>
</g> </g>
<!-- TokensRoutingModule --> <!-- TokensRoutingModule -->
<g id="node5" class="node"> <g id="node5" class="node">
<title>TokensRoutingModule</title> <title>TokensRoutingModule</title>
<polygon fill="#8dd3c7" stroke="black" points="169.88,-122 166.88,-126 145.88,-126 142.88,-122 24.12,-122 24.12,-86 169.88,-86 169.88,-122"/> <polygon fill="#8dd3c7" stroke="black" points="490.88,-122 487.88,-126 466.88,-126 463.88,-122 345.12,-122 345.12,-86 490.88,-86 490.88,-122"/>
<text text-anchor="middle" x="97" y="-99.8" font-family="Times,serif" font-size="14.00">TokensRoutingModule</text> <text text-anchor="middle" x="418" y="-99.8" font-family="Times,serif" font-size="14.00">TokensRoutingModule</text>
</g> </g>
<!-- TokensRoutingModule&#45;&gt;TokensModule --> <!-- TokensRoutingModule&#45;&gt;TokensModule -->
<g id="edge4" class="edge"> <g id="edge4" class="edge">
<title>TokensRoutingModule&#45;&gt;TokensModule</title> <title>TokensRoutingModule&#45;&gt;TokensModule</title>
<path fill="none" stroke="black" d="M97,-122.11C97,-141.34 97,-169 97,-169 97,-169 243.63,-169 243.63,-169"/> <path fill="none" stroke="black" d="M362.72,-122.11C362.72,-122.11 362.72,-140.99 362.72,-140.99"/>
<polygon fill="black" stroke="black" points="243.63,-172.5 253.63,-169 243.63,-165.5 243.63,-172.5"/> <polygon fill="black" stroke="black" points="359.22,-140.99 362.72,-150.99 366.22,-140.99 359.22,-140.99"/>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -65,14 +65,14 @@
<title>cluster_TransactionsModule</title> <title>cluster_TransactionsModule</title>
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="8,-70 8,-268 714,-268 714,-70 8,-70"/> <polygon fill="none" stroke="black" stroke-dasharray="1,5" points="8,-70 8,-268 714,-268 714,-70 8,-70"/>
</g> </g>
<g id="clust6" class="cluster">
<title>cluster_TransactionsModule_exports</title>
<polygon fill="none" stroke="black" points="288,-208 288,-260 494,-260 494,-208 288,-208"/>
</g>
<g id="clust5" class="cluster"> <g id="clust5" class="cluster">
<title>cluster_TransactionsModule_imports</title> <title>cluster_TransactionsModule_imports</title>
<polygon fill="none" stroke="black" points="398,-78 398,-130 706,-130 706,-78 398,-78"/> <polygon fill="none" stroke="black" points="398,-78 398,-130 706,-130 706,-78 398,-78"/>
</g> </g>
<g id="clust6" class="cluster">
<title>cluster_TransactionsModule_exports</title>
<polygon fill="none" stroke="black" points="288,-208 288,-260 494,-260 494,-208 288,-208"/>
</g>
<g id="clust2" class="cluster"> <g id="clust2" class="cluster">
<title>cluster_TransactionsModule_declarations</title> <title>cluster_TransactionsModule_declarations</title>
<polygon fill="none" stroke="black" points="16,-78 16,-130 390,-130 390,-78 16,-78"/> <polygon fill="none" stroke="black" points="16,-78 16,-130 390,-130 390,-78 16,-78"/>

View File

@ -24,14 +24,14 @@
<title>cluster_TransactionsModule</title> <title>cluster_TransactionsModule</title>
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="8,-70 8,-268 714,-268 714,-70 8,-70"/> <polygon fill="none" stroke="black" stroke-dasharray="1,5" points="8,-70 8,-268 714,-268 714,-70 8,-70"/>
</g> </g>
<g id="clust6" class="cluster">
<title>cluster_TransactionsModule_exports</title>
<polygon fill="none" stroke="black" points="288,-208 288,-260 494,-260 494,-208 288,-208"/>
</g>
<g id="clust5" class="cluster"> <g id="clust5" class="cluster">
<title>cluster_TransactionsModule_imports</title> <title>cluster_TransactionsModule_imports</title>
<polygon fill="none" stroke="black" points="398,-78 398,-130 706,-130 706,-78 398,-78"/> <polygon fill="none" stroke="black" points="398,-78 398,-130 706,-130 706,-78 398,-78"/>
</g> </g>
<g id="clust6" class="cluster">
<title>cluster_TransactionsModule_exports</title>
<polygon fill="none" stroke="black" points="288,-208 288,-260 494,-260 494,-208 288,-208"/>
</g>
<g id="clust2" class="cluster"> <g id="clust2" class="cluster">
<title>cluster_TransactionsModule_declarations</title> <title>cluster_TransactionsModule_declarations</title>
<polygon fill="none" stroke="black" points="16,-78 16,-130 390,-130 390,-78 16,-78"/> <polygon fill="none" stroke="black" points="16,-78 16,-130 390,-130 390,-78 16,-78"/>

Before

Width:  |  Height:  |  Size: 6.3 KiB

After

Width:  |  Height:  |  Size: 6.3 KiB

File diff suppressed because one or more lines are too long

View File

@ -102,10 +102,13 @@
<li class="tsd-kind-property tsd-parent-kind-class"><a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accounttypes" class="tsd-kind-icon">account<wbr>Types</a></li> <li class="tsd-kind-property tsd-parent-kind-class"><a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accounttypes" class="tsd-kind-icon">account<wbr>Types</a></li>
<li class="tsd-kind-property tsd-parent-kind-class"><a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accounts" class="tsd-kind-icon">accounts</a></li> <li class="tsd-kind-property tsd-parent-kind-class"><a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accounts" class="tsd-kind-icon">accounts</a></li>
<li class="tsd-kind-property tsd-parent-kind-class"><a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accountstype" class="tsd-kind-icon">accounts<wbr>Type</a></li> <li class="tsd-kind-property tsd-parent-kind-class"><a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accountstype" class="tsd-kind-icon">accounts<wbr>Type</a></li>
<li class="tsd-kind-property tsd-parent-kind-class"><a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#area" class="tsd-kind-icon">area</a></li>
<li class="tsd-kind-property tsd-parent-kind-class"><a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#areanames" class="tsd-kind-icon">area<wbr>Names</a></li> <li class="tsd-kind-property tsd-parent-kind-class"><a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#areanames" class="tsd-kind-icon">area<wbr>Names</a></li>
<li class="tsd-kind-property tsd-parent-kind-class"><a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#areatype" class="tsd-kind-icon">area<wbr>Type</a></li>
<li class="tsd-kind-property tsd-parent-kind-class"><a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#areatypes" class="tsd-kind-icon">area<wbr>Types</a></li> <li class="tsd-kind-property tsd-parent-kind-class"><a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#areatypes" class="tsd-kind-icon">area<wbr>Types</a></li>
<li class="tsd-kind-property tsd-parent-kind-class"><a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#bloxberglink" class="tsd-kind-icon">bloxberg<wbr>Link</a></li> <li class="tsd-kind-property tsd-parent-kind-class"><a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#bloxberglink" class="tsd-kind-icon">bloxberg<wbr>Link</a></li>
<li class="tsd-kind-property tsd-parent-kind-class"><a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#categories" class="tsd-kind-icon">categories</a></li> <li class="tsd-kind-property tsd-parent-kind-class"><a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#categories" class="tsd-kind-icon">categories</a></li>
<li class="tsd-kind-property tsd-parent-kind-class"><a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#category" class="tsd-kind-icon">category</a></li>
<li class="tsd-kind-property tsd-parent-kind-class"><a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#genders" class="tsd-kind-icon">genders</a></li> <li class="tsd-kind-property tsd-parent-kind-class"><a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#genders" class="tsd-kind-icon">genders</a></li>
<li class="tsd-kind-property tsd-parent-kind-class"><a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#matcher" class="tsd-kind-icon">matcher</a></li> <li class="tsd-kind-property tsd-parent-kind-class"><a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#matcher" class="tsd-kind-icon">matcher</a></li>
<li class="tsd-kind-property tsd-parent-kind-class"><a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#submitted" class="tsd-kind-icon">submitted</a></li> <li class="tsd-kind-property tsd-parent-kind-class"><a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#submitted" class="tsd-kind-icon">submitted</a></li>
@ -165,7 +168,7 @@
<li class="tsd-description"> <li class="tsd-description">
<aside class="tsd-sources"> <aside class="tsd-sources">
<ul> <ul>
<li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:67</li> <li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:70</li>
</ul> </ul>
</aside> </aside>
<h4 class="tsd-parameters-title">Parameters</h4> <h4 class="tsd-parameters-title">Parameters</h4>
@ -281,6 +284,16 @@
</ul> </ul>
</aside> </aside>
</section> </section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class">
<a name="area" class="tsd-anchor"></a>
<h3>area</h3>
<div class="tsd-signature tsd-kind-icon">area<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:69</li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class"> <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class">
<a name="areanames" class="tsd-anchor"></a> <a name="areanames" class="tsd-anchor"></a>
<h3>area<wbr>Names</h3> <h3>area<wbr>Names</h3>
@ -291,6 +304,16 @@
</ul> </ul>
</aside> </aside>
</section> </section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class">
<a name="areatype" class="tsd-anchor"></a>
<h3>area<wbr>Type</h3>
<div class="tsd-signature tsd-kind-icon">area<wbr>Type<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:70</li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class"> <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class">
<a name="areatypes" class="tsd-anchor"></a> <a name="areatypes" class="tsd-anchor"></a>
<h3>area<wbr>Types</h3> <h3>area<wbr>Types</h3>
@ -321,6 +344,16 @@
</ul> </ul>
</aside> </aside>
</section> </section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class">
<a name="category" class="tsd-anchor"></a>
<h3>category</h3>
<div class="tsd-signature tsd-kind-icon">category<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:68</li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class"> <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class">
<a name="genders" class="tsd-anchor"></a> <a name="genders" class="tsd-anchor"></a>
<h3>genders</h3> <h3>genders</h3>
@ -534,7 +567,7 @@
<li class="tsd-description"> <li class="tsd-description">
<aside class="tsd-sources"> <aside class="tsd-sources">
<ul> <ul>
<li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:218</li> <li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:226</li>
</ul> </ul>
</aside> </aside>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span></h4> <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span></h4>
@ -554,7 +587,7 @@
<li class="tsd-description"> <li class="tsd-description">
<aside class="tsd-sources"> <aside class="tsd-sources">
<ul> <ul>
<li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:285</li> <li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:293</li>
</ul> </ul>
</aside> </aside>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4> <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@ -571,7 +604,7 @@
<li class="tsd-description"> <li class="tsd-description">
<aside class="tsd-sources"> <aside class="tsd-sources">
<ul> <ul>
<li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:200</li> <li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:208</li>
</ul> </ul>
</aside> </aside>
<h4 class="tsd-parameters-title">Parameters</h4> <h4 class="tsd-parameters-title">Parameters</h4>
@ -594,7 +627,7 @@
<li class="tsd-description"> <li class="tsd-description">
<aside class="tsd-sources"> <aside class="tsd-sources">
<ul> <ul>
<li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:204</li> <li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:212</li>
</ul> </ul>
</aside> </aside>
<h4 class="tsd-parameters-title">Parameters</h4> <h4 class="tsd-parameters-title">Parameters</h4>
@ -617,7 +650,7 @@
<li class="tsd-description"> <li class="tsd-description">
<aside class="tsd-sources"> <aside class="tsd-sources">
<ul> <ul>
<li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:281</li> <li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:289</li>
</ul> </ul>
</aside> </aside>
<h4 class="tsd-parameters-title">Parameters</h4> <h4 class="tsd-parameters-title">Parameters</h4>
@ -643,7 +676,7 @@
<li class="tsd-description"> <li class="tsd-description">
<aside class="tsd-sources"> <aside class="tsd-sources">
<ul> <ul>
<li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:243</li> <li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:251</li>
</ul> </ul>
</aside> </aside>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4> <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@ -660,7 +693,7 @@
<li class="tsd-description"> <li class="tsd-description">
<aside class="tsd-sources"> <aside class="tsd-sources">
<ul> <ul>
<li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:256</li> <li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:264</li>
</ul> </ul>
</aside> </aside>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4> <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@ -678,7 +711,7 @@
<aside class="tsd-sources"> <aside class="tsd-sources">
<p>Implementation of OnInit.ngOnInit</p> <p>Implementation of OnInit.ngOnInit</p>
<ul> <ul>
<li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:89</li> <li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:92</li>
</ul> </ul>
</aside> </aside>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">&gt;</span></h4> <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">&gt;</span></h4>
@ -695,7 +728,7 @@
<li class="tsd-description"> <li class="tsd-description">
<aside class="tsd-sources"> <aside class="tsd-sources">
<ul> <ul>
<li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:269</li> <li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:277</li>
</ul> </ul>
</aside> </aside>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4> <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
@ -712,7 +745,7 @@
<li class="tsd-description"> <li class="tsd-description">
<aside class="tsd-sources"> <aside class="tsd-sources">
<ul> <ul>
<li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:222</li> <li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:230</li>
</ul> </ul>
</aside> </aside>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">&gt;</span></h4> <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">&gt;</span></h4>
@ -729,7 +762,7 @@
<li class="tsd-description"> <li class="tsd-description">
<aside class="tsd-sources"> <aside class="tsd-sources">
<ul> <ul>
<li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:212</li> <li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:220</li>
</ul> </ul>
</aside> </aside>
<h4 class="tsd-parameters-title">Parameters</h4> <h4 class="tsd-parameters-title">Parameters</h4>
@ -752,7 +785,7 @@
<li class="tsd-description"> <li class="tsd-description">
<aside class="tsd-sources"> <aside class="tsd-sources">
<ul> <ul>
<li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:208</li> <li>Defined in src/app/pages/accounts/account-details/account-details.component.ts:216</li>
</ul> </ul>
</aside> </aside>
<h4 class="tsd-parameters-title">Parameters</h4> <h4 class="tsd-parameters-title">Parameters</h4>
@ -809,9 +842,15 @@
<li class=" tsd-kind-property tsd-parent-kind-class"> <li class=" tsd-kind-property tsd-parent-kind-class">
<a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accountstype" class="tsd-kind-icon">accounts<wbr>Type</a> <a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accountstype" class="tsd-kind-icon">accounts<wbr>Type</a>
</li> </li>
<li class=" tsd-kind-property tsd-parent-kind-class">
<a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#area" class="tsd-kind-icon">area</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-class"> <li class=" tsd-kind-property tsd-parent-kind-class">
<a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#areanames" class="tsd-kind-icon">area<wbr>Names</a> <a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#areanames" class="tsd-kind-icon">area<wbr>Names</a>
</li> </li>
<li class=" tsd-kind-property tsd-parent-kind-class">
<a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#areatype" class="tsd-kind-icon">area<wbr>Type</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-class"> <li class=" tsd-kind-property tsd-parent-kind-class">
<a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#areatypes" class="tsd-kind-icon">area<wbr>Types</a> <a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#areatypes" class="tsd-kind-icon">area<wbr>Types</a>
</li> </li>
@ -821,6 +860,9 @@
<li class=" tsd-kind-property tsd-parent-kind-class"> <li class=" tsd-kind-property tsd-parent-kind-class">
<a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#categories" class="tsd-kind-icon">categories</a> <a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#categories" class="tsd-kind-icon">categories</a>
</li> </li>
<li class=" tsd-kind-property tsd-parent-kind-class">
<a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#category" class="tsd-kind-icon">category</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-class"> <li class=" tsd-kind-property tsd-parent-kind-class">
<a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#genders" class="tsd-kind-icon">genders</a> <a href="app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#genders" class="tsd-kind-icon">genders</a>
</li> </li>

View File

@ -92,7 +92,7 @@
<div class="tsd-signature tsd-kind-icon">Mock<wbr>Backend<wbr>Provider<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">{ </span>multi<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">; </span>provide<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">InjectionToken</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">HttpInterceptor</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">; </span>useClass<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">typeof </span><a href="../classes/app__helpers_mock_backend.mockbackendinterceptor.html" class="tsd-signature-type" data-tsd-kind="Class">MockBackendInterceptor</a><span class="tsd-signature-symbol"> }</span><span class="tsd-signature-symbol"> = ...</span></div> <div class="tsd-signature tsd-kind-icon">Mock<wbr>Backend<wbr>Provider<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">{ </span>multi<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">; </span>provide<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">InjectionToken</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">HttpInterceptor</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">; </span>useClass<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">typeof </span><a href="../classes/app__helpers_mock_backend.mockbackendinterceptor.html" class="tsd-signature-type" data-tsd-kind="Class">MockBackendInterceptor</a><span class="tsd-signature-symbol"> }</span><span class="tsd-signature-symbol"> = ...</span></div>
<aside class="tsd-sources"> <aside class="tsd-sources">
<ul> <ul>
<li>Defined in src/app/_helpers/mock-backend.ts:1243</li> <li>Defined in src/app/_helpers/mock-backend.ts:1267</li>
</ul> </ul>
</aside> </aside>
<div class="tsd-comment tsd-typography"> <div class="tsd-comment tsd-typography">