Skip to content

Commit d4f4101

Browse files
github-actions[bot]Netgrif DevOps
authored andcommitted
CI - Update documentation
1 parent c522776 commit d4f4101

File tree

704 files changed

+6463
-6720
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

704 files changed

+6463
-6720
lines changed

docs/compodoc/components-core/changelog.html

Lines changed: 52 additions & 46 deletions
Large diffs are not rendered by default.

docs/compodoc/components-core/classes/TaskConst.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ <h3 id="inputs">
173173
public loading$: Observable&lt;boolean&gt;;
174174
private transitionId: string;
175175
private subRoute: Subscription | undefined;
176-
protected subPanelData: Subscription;
176+
protected subPanelData: Subscription | undefined;
177177

178178
protected constructor(protected taskViewService: TaskViewService,
179179
activatedRoute: ActivatedRoute) {
@@ -182,7 +182,6 @@ <h3 id="inputs">
182182
this.subRoute &#x3D; this._activatedRoute.paramMap.subscribe(paramMap &#x3D;&gt; {
183183
if (!!(paramMap?.[&#x27;params&#x27;]?.[TaskConst.TRANSITION_ID])) {
184184
this.transitionId &#x3D; paramMap[&#x27;params&#x27;][TaskConst.TRANSITION_ID];
185-
this.subPanelData.unsubscribe();
186185
this.subPanelData &#x3D; this.taskViewService.tasks$.subscribe(tasks &#x3D;&gt; {
187186
if (!!tasks &amp;&amp; tasks.length &gt; 0) {
188187
this.taskPanelData.next(this.resolveTransitionTask(tasks));
@@ -195,7 +194,9 @@ <h3 id="inputs">
195194

196195
ngOnDestroy() {
197196
super.ngOnDestroy();
198-
this.subRoute.unsubscribe();
197+
if (!!this.subRoute) {
198+
this.subRoute.unsubscribe();
199+
}
199200
if (!!this.subPanelData) {
200201
this.subPanelData.unsubscribe();
201202
}

docs/compodoc/components-core/components/AbstractSingleTaskViewComponent.html

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ <h3 id="methods">
367367
</tr>
368368
<tr>
369369
<td class="col-md-4">
370-
<div class="io-line">Defined in <code><a href="../components/AbstractViewWithHeadersComponent.html#source" target="_self" >AbstractViewWithHeadersComponent:44</a></code>
370+
<div class="io-line">Defined in <code><a href="../components/AbstractViewWithHeadersComponent.html#source" target="_self" >AbstractViewWithHeadersComponent:43</a></code>
371371
</div>
372372
</td>
373373
</tr>
@@ -630,7 +630,7 @@ <h3 id="inputs">
630630
</tr>
631631
<tr>
632632
<td class="col-md-4">
633-
<i>Type : </i> <code>Subscription</code>
633+
<i>Type : </i> <code>Subscription | undefined</code>
634634

635635
</td>
636636
</tr>
@@ -760,7 +760,7 @@ <h3 id="accessors">
760760
</tr>
761761
<tr>
762762
<td class="col-md-4">
763-
<div class="io-line">Defined in <a href="" data-line="52" class="link-to-prism">projects/netgrif-components-core/src/lib/view/task-view/abstract-single-task-view.component.ts:52</a></div>
763+
<div class="io-line">Defined in <a href="" data-line="53" class="link-to-prism">projects/netgrif-components-core/src/lib/view/task-view/abstract-single-task-view.component.ts:53</a></div>
764764
</td>
765765
</tr>
766766

@@ -794,7 +794,7 @@ <h3 id="accessors">
794794
public loading$: Observable&lt;boolean&gt;;
795795
private transitionId: string;
796796
private subRoute: Subscription | undefined;
797-
protected subPanelData: Subscription;
797+
protected subPanelData: Subscription | undefined;
798798

799799
protected constructor(protected taskViewService: TaskViewService,
800800
activatedRoute: ActivatedRoute) {
@@ -803,7 +803,6 @@ <h3 id="accessors">
803803
this.subRoute &#x3D; this._activatedRoute.paramMap.subscribe(paramMap &#x3D;&gt; {
804804
if (!!(paramMap?.[&#x27;params&#x27;]?.[TaskConst.TRANSITION_ID])) {
805805
this.transitionId &#x3D; paramMap[&#x27;params&#x27;][TaskConst.TRANSITION_ID];
806-
this.subPanelData.unsubscribe();
807806
this.subPanelData &#x3D; this.taskViewService.tasks$.subscribe(tasks &#x3D;&gt; {
808807
if (!!tasks &amp;&amp; tasks.length &gt; 0) {
809808
this.taskPanelData.next(this.resolveTransitionTask(tasks));
@@ -816,7 +815,9 @@ <h3 id="accessors">
816815

817816
ngOnDestroy() {
818817
super.ngOnDestroy();
819-
this.subRoute.unsubscribe();
818+
if (!!this.subRoute) {
819+
this.subRoute.unsubscribe();
820+
}
820821
if (!!this.subPanelData) {
821822
this.subPanelData.unsubscribe();
822823
}

docs/compodoc/components-core/injectables/PublicPetriNetResourceService.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1543,7 +1543,7 @@ <h3 id="methods">
15431543
* **Request URL:** {{baseUrl}}/api/public/petrinet/{identifier}/{version}
15441544
*/
15451545
public getOne(identifier: string, version: string, params?: Params): Observable&lt;PetriNetReference&gt; {
1546-
return this.provider.get$(&#x27;public/petrinet/&#x27; + identifier + &#x27;/&#x27; + version, this.SERVER_URL, params)
1546+
return this.provider.get$(&#x27;public/petrinet/&#x27; + btoa(identifier) + &#x27;/&#x27; + version, this.SERVER_URL, params)
15471547
.pipe(map(r &#x3D;&gt; this.changeType(r, &#x27;petriNetReferences&#x27;)));
15481548
}
15491549

docs/compodoc/components-core/interfaces/Author.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ <h3 id="inputs">Properties</h3>
145145

146146
<tr>
147147
<td class="col-md-4">
148-
<div class="io-description"><p><strong>Example:</strong> <a href="mailto:&#101;&#120;&#x61;&#109;&#x70;&#x6c;&#x65;&#64;&#110;&#101;&#116;&#103;&#114;&#x69;&#x66;&#46;&#99;&#x6f;&#x6d;">&#101;&#120;&#x61;&#109;&#x70;&#x6c;&#x65;&#64;&#110;&#101;&#116;&#103;&#114;&#x69;&#x66;&#46;&#99;&#x6f;&#x6d;</a></p>
148+
<div class="io-description"><p><strong>Example:</strong> <a href="mailto:&#101;&#x78;&#x61;&#109;&#112;&#108;&#101;&#64;&#110;&#x65;&#116;&#x67;&#114;&#x69;&#102;&#46;&#99;&#x6f;&#x6d;">&#101;&#x78;&#x61;&#109;&#112;&#108;&#101;&#64;&#110;&#x65;&#116;&#x67;&#114;&#x69;&#102;&#46;&#99;&#x6f;&#x6d;</a></p>
149149
</div>
150150
</td>
151151
</tr>

docs/compodoc/components-core/interfaces/Case.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ <h3 id="inputs">Properties</h3>
247247
<tr>
248248
<td class="col-md-4">
249249
<div class="io-description"><p><strong>Example:</strong> {</p>
250-
<p>&quot;email&quot;: &quot;<a href="mailto:&#x65;&#120;&#97;&#109;&#x70;&#108;&#x65;&#64;&#110;&#x65;&#116;&#x67;&#114;&#x69;&#102;&#x2e;&#x63;&#x6f;&#x6d;">&#x65;&#120;&#97;&#109;&#x70;&#108;&#x65;&#64;&#110;&#x65;&#116;&#x67;&#114;&#x69;&#102;&#x2e;&#x63;&#x6f;&#x6d;</a>&quot;,</p>
250+
<p>&quot;email&quot;: &quot;<a href="mailto:&#x65;&#120;&#x61;&#x6d;&#x70;&#x6c;&#x65;&#64;&#110;&#x65;&#x74;&#x67;&#x72;&#105;&#x66;&#46;&#99;&#111;&#x6d;">&#x65;&#120;&#x61;&#x6d;&#x70;&#x6c;&#x65;&#64;&#110;&#x65;&#x74;&#x67;&#x72;&#105;&#x66;&#46;&#99;&#111;&#x6d;</a>&quot;,</p>
251251
<p>&quot;fullName&quot;: &quot;Example Netgrif&quot;</p>
252252
<p>}</p>
253253
</div>

docs/compodoc/components-core/interfaces/IUser.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ <h3 id="inputs">Properties</h3>
158158

159159
<tr>
160160
<td class="col-md-4">
161-
<div class="io-description"><p><strong>Example:</strong> <a href="mailto:&#101;&#x78;&#97;&#x6d;&#112;&#108;&#x65;&#64;&#x6e;&#101;&#116;&#103;&#114;&#x69;&#x66;&#46;&#x63;&#x6f;&#x6d;">&#101;&#x78;&#97;&#x6d;&#112;&#108;&#x65;&#64;&#x6e;&#101;&#116;&#103;&#114;&#x69;&#x66;&#46;&#x63;&#x6f;&#x6d;</a></p>
161+
<div class="io-description"><p><strong>Example:</strong> <a href="mailto:&#x65;&#x78;&#x61;&#109;&#112;&#108;&#x65;&#x40;&#110;&#x65;&#x74;&#x67;&#114;&#105;&#x66;&#46;&#x63;&#x6f;&#x6d;">&#x65;&#x78;&#x61;&#109;&#112;&#108;&#x65;&#x40;&#110;&#x65;&#x74;&#x67;&#114;&#105;&#x66;&#46;&#x63;&#x6f;&#x6d;</a></p>
162162
</div>
163163
</td>
164164
</tr>

docs/compodoc/components-core/js/search/search_index.js

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

docs/compodoc/components-core/miscellaneous/variables.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -998,7 +998,7 @@ <h3></h3> <table class="table table-sm table-bordered">
998998
snackBarService: SnackBarService,
999999
translate: TranslateService,
10001000
publicTaskLoadingService: PublicTaskLoadingService) &#x3D;&gt; {
1001-
process.getNet(route.snapshot.paramMap.get(&#x27;petriNetId&#x27;)).pipe(mergeMap(net &#x3D;&gt; {
1001+
process.getNet(atob(route.snapshot.paramMap.get(&#x27;petriNetId&#x27;))).pipe(mergeMap(net &#x3D;&gt; {
10021002
if (net) {
10031003
publicTaskLoadingService.setLoading$(true);
10041004
const newCase &#x3D; {

docs/compodoc/components-core/unit-test.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8831,21 +8831,21 @@
88318831
<!-- miscellaneous -->
88328832
<a href="./classes/TaskConst.html">/home/runner/work/components/components/projects/netgrif-components-core/src/lib/view/task-view/abstract-single-task-view.component.ts</a>
88338833
</td>
8834-
<td align="right" data-sort="54" class="good">
8835-
<span class="coverage-percent">54 %</span>
8836-
<span class="coverage-count">(14/26)</span>
8834+
<td align="right" data-sort="58" class="good">
8835+
<span class="coverage-percent">58 %</span>
8836+
<span class="coverage-count">(15/26)</span>
88378837
</td>
8838-
<td align="right" data-sort="43" class="medium">
8839-
<span class="coverage-percent">43 %</span>
8840-
<span class="coverage-count">(6/14)</span>
8838+
<td align="right" data-sort="47" class="medium">
8839+
<span class="coverage-percent">47 %</span>
8840+
<span class="coverage-count">(7/15)</span>
88418841
</td>
88428842
<td align="right" data-sort="43" class="medium">
88438843
<span class="coverage-percent">43 %</span>
88448844
<span class="coverage-count">(3/7)</span>
88458845
</td>
8846-
<td align="right" data-sort="54" class="good">
8847-
<span class="coverage-percent">54 %</span>
8848-
<span class="coverage-count">(13/24)</span>
8846+
<td align="right" data-sort="58" class="good">
8847+
<span class="coverage-percent">58 %</span>
8848+
<span class="coverage-count">(14/24)</span>
88498849
</td>
88508850
</tr>
88518851
<tr>

0 commit comments

Comments
 (0)