@elderbyte/ngx-starter 19.3.0 → 19.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -32,7 +32,7 @@ export declare class ElderChipListSelectComponent<T = any> implements IElderData
32
32
  /**
33
33
  * If the chip list should be stacked.
34
34
  */
35
- stacked: false;
35
+ stacked: boolean;
36
36
  itemClick: EventEmitter<any>;
37
37
  readonly data$: Observable<T[]>;
38
38
  /***************************************************************************
@@ -28,8 +28,11 @@ export declare class ElderTabGroupRoutingDirective implements AfterViewInit, OnD
28
28
  * Stores the last tab marker (either ID or index)
29
29
  * which could not be activated. This is used to retry
30
30
  * activation once changes on tab structure occur.
31
+ *
32
+ * Can contain a comma delemited list: first,second
33
+ * Will try to activate first, and if failed activates second.
31
34
  */
32
- private lastFailedTabMarker;
35
+ private lastFailedTabMarkerHierarchy;
33
36
  /**
34
37
  * String to use as query param key.
35
38
  */
@@ -75,6 +78,7 @@ export declare class ElderTabGroupRoutingDirective implements AfterViewInit, OnD
75
78
  * *
76
79
  **************************************************************************/
77
80
  private handleFragmentParamsChange;
81
+ private tryActivateTabByMarkerHierarchy;
78
82
  private activateTabByMarker;
79
83
  private activateTabByIndex;
80
84
  private activateTabById;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elderbyte/ngx-starter",
3
- "version": "19.3.0",
3
+ "version": "19.3.2",
4
4
  "peerDependencies": {
5
5
  "@angular/core": "^18.0.0 || ^19.0.0",
6
6
  "@angular/common": "^18.0.0 || ^19.0.0",