@decaf-ts/for-angular 0.1.20 → 0.1.21

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.
package/index.d.ts CHANGED
@@ -1239,15 +1239,6 @@ declare class NgxRepositoryDirective<M extends Model> extends DecafComponent<M>
1239
1239
  static ɵdir: i0.ɵɵDirectiveDeclaration<NgxRepositoryDirective<any>, never, never, { "_query": { "alias": "_query"; "required": false; }; "_data": { "alias": "_data"; "required": false; }; "model": { "alias": "model"; "required": false; }; "modelId": { "alias": "modelId"; "required": false; }; "modelName": { "alias": "modelName"; "required": false; }; "pk": { "alias": "pk"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "filterBy": { "alias": "filterBy"; "required": false; }; "start": { "alias": "start"; "required": false; }; "limit": { "alias": "limit"; "required": false; }; "sortDirection": { "alias": "sortDirection"; "required": false; }; "sortBy": { "alias": "sortBy"; "required": false; }; "indexes": { "alias": "indexes"; "required": false; }; }, {}, never, never, true, never>;
1240
1240
  }
1241
1241
 
1242
- /**
1243
- * @module lib/engine/NgxComponentDirective
1244
- * @description Base decaf component abstraction providing shared inputs and utilities.
1245
- * @summary NgxComponentDirective is the abstract foundation for Decaf components and provides common
1246
- * inputs (model, mapper, pk, props), logging, repository resolution, and event dispatch helpers.
1247
- * It centralizes shared behavior for child components and simplifies integration with the rendering engine.
1248
- * @link {@link NgxComponentDirective}
1249
- */
1250
-
1251
1242
  /**
1252
1243
  * @description Base directive for Decaf components in Angular applications.
1253
1244
  * @summary Abstract base class that provides common functionality for all Decaf components.
@@ -1641,6 +1632,8 @@ declare abstract class NgxComponentDirective extends NgxRepositoryDirective<Mode
1641
1632
  * @default WindowColorSchemes.light
1642
1633
  */
1643
1634
  protected colorSchema: WindowColorScheme;
1635
+ private popState$;
1636
+ readonly popStateSignal: i0.Signal<PopStateEvent | null>;
1644
1637
  /**
1645
1638
  * @description Constructor for NgxComponentDirective.
1646
1639
  * @summary Initializes the directive by setting up the component name, locale root,
@@ -1652,7 +1645,8 @@ declare abstract class NgxComponentDirective extends NgxRepositoryDirective<Mode
1652
1645
  * @memberOf module:lib/engine/NgxComponentDirective
1653
1646
  */
1654
1647
  constructor(componentName?: string, localeRoot?: string);
1655
- initialize<T extends NgxComponentDirective>(): Promise<void>;
1648
+ beforeInitialize<T extends NgxComponentDirective>(component?: unknown): Promise<void>;
1649
+ initialize(): Promise<void>;
1656
1650
  /**
1657
1651
  * @description Cleanup lifecycle hook invoked when the directive is destroyed.
1658
1652
  * @summary Ensures any resources allocated by the directive's media service are
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@decaf-ts/for-angular",
3
- "version": "0.1.20",
3
+ "version": "0.1.21",
4
4
  "author": "Tiago Venceslau and Contributors",
5
5
  "license": "MPL-2.0 OR AGPL-3.0",
6
6
  "repository": {