From 39be25c42de34481785da73d2c3eb062a54b5c21 Mon Sep 17 00:00:00 2001 From: klemenoslaj Date: Sun, 10 Nov 2019 12:26:58 +0100 Subject: [PATCH] docs(core): update generated compodoc documentation --- docs/classes/ActionAbstract.html | 130 +++---- docs/classes/ActionButton.html | 61 ++-- docs/classes/ActionGroup.html | 61 ++-- docs/classes/ActionToggle.html | 61 ++-- docs/coverage.html | 1 + docs/dependencies.html | 23 +- docs/directives/ActionOutletDirective.html | 3 +- docs/fonts/roboto-v15-latin-italic.eot | Bin 0 -> 17534 bytes docs/fonts/roboto-v15-latin-italic.svg | 323 ++++++++++++++++++ docs/fonts/roboto-v15-latin-italic.ttf | Bin 0 -> 33404 bytes docs/fonts/roboto-v15-latin-italic.woff | Bin 0 -> 19880 bytes docs/fonts/roboto-v15-latin-italic.woff2 | Bin 0 -> 11500 bytes docs/index.html | 1 + docs/injectables/ActionOutletFactory.html | 1 + .../ActionAbstractComponentImpl.html | 19 +- docs/interfaces/ActionAbstractEvent.html | 3 +- docs/interfaces/ActionAbstractOptions.html | 3 +- docs/interfaces/ActionButtonEvent.html | 1 + docs/interfaces/ActionButtonOptions.html | 1 + docs/interfaces/ActionGroupEvent.html | 1 + docs/interfaces/ActionGroupOptions.html | 1 + docs/interfaces/ActionOutlet.html | 1 + docs/interfaces/ActionToggleEvent.html | 1 + docs/interfaces/ActionToggleOptions.html | 1 + docs/js/menu-wc.js | 6 +- docs/js/search/search-lunr.js | 2 +- docs/js/search/search.js | 7 +- docs/js/search/search_index.js | 4 +- docs/license.html | 1 + docs/miscellaneous/enumerations.html | 1 + docs/miscellaneous/typealiases.html | 1 + docs/miscellaneous/variables.html | 1 + docs/modules.html | 1 + docs/modules/ActionOutletModule.html | 7 +- docs/overview.html | 1 + 35 files changed, 547 insertions(+), 182 deletions(-) create mode 100644 docs/fonts/roboto-v15-latin-italic.eot create mode 100644 docs/fonts/roboto-v15-latin-italic.svg create mode 100644 docs/fonts/roboto-v15-latin-italic.ttf create mode 100644 docs/fonts/roboto-v15-latin-italic.woff create mode 100644 docs/fonts/roboto-v15-latin-italic.woff2 diff --git a/docs/classes/ActionAbstract.html b/docs/classes/ActionAbstract.html index a140535..141223a 100644 --- a/docs/classes/ActionAbstract.html +++ b/docs/classes/ActionAbstract.html @@ -266,7 +266,7 @@

Constructor

-
Defined in projects/core/src/lib/action-abstract/action-abstract.ts:165
+
Defined in projects/core/src/lib/action-abstract/action-abstract.ts:178
@@ -360,7 +360,7 @@

- + @@ -389,7 +389,7 @@

- + @@ -423,7 +423,7 @@

- + @@ -458,7 +458,7 @@

- + @@ -494,7 +494,7 @@

- + @@ -528,7 +528,7 @@

- + @@ -563,7 +563,7 @@

- + @@ -597,7 +597,7 @@

- + @@ -640,8 +640,8 @@

- + @@ -678,8 +678,8 @@

- + @@ -716,8 +716,8 @@

- + @@ -754,8 +754,8 @@

- + @@ -791,8 +791,8 @@

- + @@ -828,8 +828,8 @@

- + @@ -871,8 +871,8 @@

- + @@ -912,8 +912,8 @@

- + @@ -953,8 +953,8 @@

- + @@ -994,8 +994,8 @@

- + @@ -1031,8 +1031,8 @@

- + @@ -1072,8 +1072,8 @@

- + @@ -1113,8 +1113,8 @@

- + @@ -1154,8 +1154,8 @@

- + @@ -1195,8 +1195,8 @@

- + @@ -1236,8 +1236,8 @@

- + @@ -1277,8 +1277,8 @@

- + @@ -1318,8 +1318,8 @@

- + @@ -1388,8 +1388,8 @@

- + @@ -1458,8 +1458,8 @@

- + @@ -1528,8 +1528,8 @@

- + @@ -1567,8 +1567,8 @@

- + @@ -1621,6 +1621,13 @@

Destroyed, } +/** + * @internal + * + * Used to uniquelly identify the action + */ +let increment = 0; + /** * `ActionAbstract` is extended by **all** action implementations * Provides all the behaviors, shared between **each** action @@ -1670,6 +1677,12 @@

* ``` */ export abstract class ActionAbstract<Options extends ActionAbstractOptions, FireEvent extends ActionAbstractEvent> { + /** + * @internal + * + * Used to uniquelly identify the action + */ + readonly _actionId = increment++; /** * `Observable` that notifies subscriptions when title changes */ @@ -1779,7 +1792,7 @@

this.disabled = new BehaviorSubject(disabled); this.state = new BehaviorSubject(<ActionState>ActionState.Inactive); this.finish = this.state.pipe( - filter(state => state === ActionState.Destroyed) + filter(state => state === ActionState.Destroyed) ); this.title$ = this.handleLivecycleDistinct(this.title.asObservable()); @@ -1787,7 +1800,7 @@

this.visible$ = this.handleLivecycleDistinct(this.visible.asObservable()); this.disabled$ = this.handleLivecycleDistinct(this.disabled.asObservable()); this.state$ = this.state.asObservable().pipe( - distinctUntilChanged() + distinctUntilChanged() ); this.forcedComponent = component; @@ -1809,7 +1822,7 @@

*/ protected handleLivecycleDistinct<T>(observable: Observable<T>, shouldPause?: boolean): Observable<T> { return this.handleLivecycle(observable, shouldPause).pipe( - distinctUntilChanged() + distinctUntilChanged() ); } @@ -1822,7 +1835,7 @@

*/ protected handleLivecycle<T>(observable: Observable<T>, shouldPause: boolean = true): Observable<T> { const source = observable.pipe( - takeUntil(this.finish) + takeUntil(this.finish) ); if (!shouldPause) { @@ -1841,7 +1854,7 @@

*/ protected handleActivateState<T>(observable: Observable<T>): Observable<T> { return this.state.pipe( - switchMap(state => state === ActionState.Inactive ? (NEVER) : observable) + switchMap(state => state === ActionState.Inactive ? (NEVER) : observable) ); } @@ -2088,6 +2101,7 @@

No results matching " diff --git a/docs/classes/ActionButton.html b/docs/classes/ActionButton.html index f474810..2250c2b 100644 --- a/docs/classes/ActionButton.html +++ b/docs/classes/ActionButton.html @@ -419,7 +419,7 @@

-
Defined in ActionAbstract:111 +
Defined in ActionAbstract:124
@@ -455,7 +455,7 @@

-
Defined in ActionAbstract:165 +
Defined in ActionAbstract:178
@@ -496,7 +496,7 @@

-
Defined in ActionAbstract:94 +
Defined in ActionAbstract:107
@@ -538,7 +538,7 @@

-
Defined in ActionAbstract:105 +
Defined in ActionAbstract:118
@@ -581,7 +581,7 @@

-
Defined in ActionAbstract:85 +
Defined in ActionAbstract:98
@@ -622,7 +622,7 @@

-
Defined in ActionAbstract:99 +
Defined in ActionAbstract:112
@@ -664,7 +664,7 @@

-
Defined in ActionAbstract:81 +
Defined in ActionAbstract:94
@@ -705,7 +705,7 @@

-
Defined in ActionAbstract:90 +
Defined in ActionAbstract:103
@@ -797,7 +797,7 @@

Example:

-
Defined in ActionAbstract:257 +
Defined in ActionAbstract:270
@@ -841,7 +841,7 @@

Example:

-
Defined in ActionAbstract:270 +
Defined in ActionAbstract:283
@@ -885,7 +885,7 @@

Example:

-
Defined in ActionAbstract:283 +
Defined in ActionAbstract:296
@@ -929,7 +929,7 @@

Example:

-
Defined in ActionAbstract:395 +
Defined in ActionAbstract:408
@@ -972,7 +972,7 @@

Example:

-
Defined in ActionAbstract:387 +
Defined in ActionAbstract:400
@@ -1015,7 +1015,7 @@

Example:

-
Defined in ActionAbstract:419 +
Defined in ActionAbstract:432
@@ -1064,7 +1064,7 @@

Example:

-
Defined in ActionAbstract:340 +
Defined in ActionAbstract:353
@@ -1111,7 +1111,7 @@

Example:

-
Defined in ActionAbstract:426 +
Defined in ActionAbstract:439
@@ -1158,7 +1158,7 @@

Example:

-
Defined in ActionAbstract:323 +
Defined in ActionAbstract:336
@@ -1205,7 +1205,7 @@

Example:

-
Defined in ActionAbstract:355 +
Defined in ActionAbstract:368
@@ -1248,7 +1248,7 @@

Example:

-
Defined in ActionAbstract:292 +
Defined in ActionAbstract:305
@@ -1295,7 +1295,7 @@

Example:

-
Defined in ActionAbstract:306 +
Defined in ActionAbstract:319
@@ -1342,7 +1342,7 @@

Example:

-
Defined in ActionAbstract:403 +
Defined in ActionAbstract:416
@@ -1389,7 +1389,7 @@

Example:

-
Defined in ActionAbstract:410 +
Defined in ActionAbstract:423
@@ -1436,7 +1436,7 @@

Example:

-
Defined in ActionAbstract:380 +
Defined in ActionAbstract:393
@@ -1483,7 +1483,7 @@

Example:

-
Defined in ActionAbstract:299 +
Defined in ActionAbstract:312
@@ -1530,7 +1530,7 @@

Example:

-
Defined in ActionAbstract:373 +
Defined in ActionAbstract:386
@@ -1577,7 +1577,7 @@

Example:

-
Defined in ActionAbstract:332 +
Defined in ActionAbstract:345
@@ -1653,7 +1653,7 @@

Example:

-
Defined in ActionAbstract:315 +
Defined in ActionAbstract:328
@@ -1729,7 +1729,7 @@

Example:

-
Defined in ActionAbstract:365 +
Defined in ActionAbstract:378
@@ -1805,7 +1805,7 @@

Example:

-
Defined in ActionAbstract:347 +
Defined in ActionAbstract:360
@@ -1850,7 +1850,7 @@

Example:

-
Defined in ActionAbstract:205 +
Defined in ActionAbstract:218
@@ -1996,6 +1996,7 @@

No results matching " diff --git a/docs/classes/ActionGroup.html b/docs/classes/ActionGroup.html index f517326..0866368 100644 --- a/docs/classes/ActionGroup.html +++ b/docs/classes/ActionGroup.html @@ -580,7 +580,7 @@

-
Defined in ActionAbstract:111 +
Defined in ActionAbstract:124
@@ -616,7 +616,7 @@

-
Defined in ActionAbstract:165 +
Defined in ActionAbstract:178
@@ -657,7 +657,7 @@

-
Defined in ActionAbstract:94 +
Defined in ActionAbstract:107
@@ -699,7 +699,7 @@

-
Defined in ActionAbstract:105 +
Defined in ActionAbstract:118
@@ -742,7 +742,7 @@

-
Defined in ActionAbstract:85 +
Defined in ActionAbstract:98
@@ -783,7 +783,7 @@

-
Defined in ActionAbstract:99 +
Defined in ActionAbstract:112
@@ -825,7 +825,7 @@

-
Defined in ActionAbstract:81 +
Defined in ActionAbstract:94
@@ -866,7 +866,7 @@

-
Defined in ActionAbstract:90 +
Defined in ActionAbstract:103
@@ -2278,7 +2278,7 @@

Example:

-
Defined in ActionAbstract:257 +
Defined in ActionAbstract:270
@@ -2322,7 +2322,7 @@

Example:

-
Defined in ActionAbstract:270 +
Defined in ActionAbstract:283
@@ -2366,7 +2366,7 @@

Example:

-
Defined in ActionAbstract:283 +
Defined in ActionAbstract:296
@@ -2410,7 +2410,7 @@

Example:

-
Defined in ActionAbstract:395 +
Defined in ActionAbstract:408
@@ -2453,7 +2453,7 @@

Example:

-
Defined in ActionAbstract:387 +
Defined in ActionAbstract:400
@@ -2496,7 +2496,7 @@

Example:

-
Defined in ActionAbstract:419 +
Defined in ActionAbstract:432
@@ -2545,7 +2545,7 @@

Example:

-
Defined in ActionAbstract:340 +
Defined in ActionAbstract:353
@@ -2592,7 +2592,7 @@

Example:

-
Defined in ActionAbstract:426 +
Defined in ActionAbstract:439
@@ -2639,7 +2639,7 @@

Example:

-
Defined in ActionAbstract:323 +
Defined in ActionAbstract:336
@@ -2686,7 +2686,7 @@

Example:

-
Defined in ActionAbstract:355 +
Defined in ActionAbstract:368
@@ -2729,7 +2729,7 @@

Example:

-
Defined in ActionAbstract:292 +
Defined in ActionAbstract:305
@@ -2776,7 +2776,7 @@

Example:

-
Defined in ActionAbstract:306 +
Defined in ActionAbstract:319
@@ -2823,7 +2823,7 @@

Example:

-
Defined in ActionAbstract:403 +
Defined in ActionAbstract:416
@@ -2870,7 +2870,7 @@

Example:

-
Defined in ActionAbstract:410 +
Defined in ActionAbstract:423
@@ -2917,7 +2917,7 @@

Example:

-
Defined in ActionAbstract:380 +
Defined in ActionAbstract:393
@@ -2964,7 +2964,7 @@

Example:

-
Defined in ActionAbstract:299 +
Defined in ActionAbstract:312
@@ -3011,7 +3011,7 @@

Example:

-
Defined in ActionAbstract:373 +
Defined in ActionAbstract:386
@@ -3058,7 +3058,7 @@

Example:

-
Defined in ActionAbstract:332 +
Defined in ActionAbstract:345
@@ -3134,7 +3134,7 @@

Example:

-
Defined in ActionAbstract:315 +
Defined in ActionAbstract:328
@@ -3210,7 +3210,7 @@

Example:

-
Defined in ActionAbstract:365 +
Defined in ActionAbstract:378
@@ -3286,7 +3286,7 @@

Example:

-
Defined in ActionAbstract:347 +
Defined in ActionAbstract:360
@@ -3331,7 +3331,7 @@

Example:

-
Defined in ActionAbstract:205 +
Defined in ActionAbstract:218
@@ -3921,6 +3921,7 @@

No results matching " diff --git a/docs/classes/ActionToggle.html b/docs/classes/ActionToggle.html index edff2ee..8fddb3a 100644 --- a/docs/classes/ActionToggle.html +++ b/docs/classes/ActionToggle.html @@ -432,7 +432,7 @@

-
Defined in ActionAbstract:111 +
Defined in ActionAbstract:124
@@ -468,7 +468,7 @@

-
Defined in ActionAbstract:165 +
Defined in ActionAbstract:178
@@ -509,7 +509,7 @@

-
Defined in ActionAbstract:94 +
Defined in ActionAbstract:107
@@ -551,7 +551,7 @@

-
Defined in ActionAbstract:105 +
Defined in ActionAbstract:118
@@ -594,7 +594,7 @@

-
Defined in ActionAbstract:85 +
Defined in ActionAbstract:98
@@ -635,7 +635,7 @@

-
Defined in ActionAbstract:99 +
Defined in ActionAbstract:112
@@ -677,7 +677,7 @@

-
Defined in ActionAbstract:81 +
Defined in ActionAbstract:94
@@ -718,7 +718,7 @@

-
Defined in ActionAbstract:90 +
Defined in ActionAbstract:103
@@ -993,7 +993,7 @@

Example:

-
Defined in ActionAbstract:257 +
Defined in ActionAbstract:270
@@ -1037,7 +1037,7 @@

Example:

-
Defined in ActionAbstract:270 +
Defined in ActionAbstract:283
@@ -1081,7 +1081,7 @@

Example:

-
Defined in ActionAbstract:283 +
Defined in ActionAbstract:296
@@ -1125,7 +1125,7 @@

Example:

-
Defined in ActionAbstract:395 +
Defined in ActionAbstract:408
@@ -1168,7 +1168,7 @@

Example:

-
Defined in ActionAbstract:387 +
Defined in ActionAbstract:400
@@ -1211,7 +1211,7 @@

Example:

-
Defined in ActionAbstract:419 +
Defined in ActionAbstract:432
@@ -1260,7 +1260,7 @@

Example:

-
Defined in ActionAbstract:340 +
Defined in ActionAbstract:353
@@ -1307,7 +1307,7 @@

Example:

-
Defined in ActionAbstract:426 +
Defined in ActionAbstract:439
@@ -1354,7 +1354,7 @@

Example:

-
Defined in ActionAbstract:323 +
Defined in ActionAbstract:336
@@ -1401,7 +1401,7 @@

Example:

-
Defined in ActionAbstract:355 +
Defined in ActionAbstract:368
@@ -1444,7 +1444,7 @@

Example:

-
Defined in ActionAbstract:292 +
Defined in ActionAbstract:305
@@ -1491,7 +1491,7 @@

Example:

-
Defined in ActionAbstract:306 +
Defined in ActionAbstract:319
@@ -1538,7 +1538,7 @@

Example:

-
Defined in ActionAbstract:403 +
Defined in ActionAbstract:416
@@ -1585,7 +1585,7 @@

Example:

-
Defined in ActionAbstract:410 +
Defined in ActionAbstract:423
@@ -1632,7 +1632,7 @@

Example:

-
Defined in ActionAbstract:380 +
Defined in ActionAbstract:393
@@ -1679,7 +1679,7 @@

Example:

-
Defined in ActionAbstract:299 +
Defined in ActionAbstract:312
@@ -1726,7 +1726,7 @@

Example:

-
Defined in ActionAbstract:373 +
Defined in ActionAbstract:386
@@ -1773,7 +1773,7 @@

Example:

-
Defined in ActionAbstract:332 +
Defined in ActionAbstract:345
@@ -1849,7 +1849,7 @@

Example:

-
Defined in ActionAbstract:315 +
Defined in ActionAbstract:328
@@ -1925,7 +1925,7 @@

Example:

-
Defined in ActionAbstract:365 +
Defined in ActionAbstract:378
@@ -2001,7 +2001,7 @@

Example:

-
Defined in ActionAbstract:347 +
Defined in ActionAbstract:360
@@ -2046,7 +2046,7 @@

Example:

-
Defined in ActionAbstract:205 +
Defined in ActionAbstract:218
@@ -2259,6 +2259,7 @@

No results matching " diff --git a/docs/coverage.html b/docs/coverage.html index 6bddb12..4cee984 100644 --- a/docs/coverage.html +++ b/docs/coverage.html @@ -343,6 +343,7 @@

No results matching " diff --git a/docs/dependencies.html b/docs/dependencies.html index 07ff8c8..479a977 100644 --- a/docs/dependencies.html +++ b/docs/dependencies.html @@ -48,29 +48,29 @@