@decaf-ts/for-angular 0.0.45 → 0.0.47
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/README.md +1 -1
- package/fesm2022/decaf-ts-for-angular.mjs +315 -218
- package/fesm2022/decaf-ts-for-angular.mjs.map +1 -1
- package/index.d.ts +89 -169
- package/package.json +3 -4
package/index.d.ts
CHANGED
|
@@ -5,20 +5,21 @@ import { TextFieldTypes, SelectInterface, AutocompleteTypes, CheckboxCustomEvent
|
|
|
5
5
|
import * as i2 from '@angular/forms';
|
|
6
6
|
import { FormGroup, FormControl, FormArray, ControlValueAccessor, AbstractControl } from '@angular/forms';
|
|
7
7
|
import { OrderDirection, Repository, Adapter, EventIds, Paginator, Condition } from '@decaf-ts/core';
|
|
8
|
-
import { FieldProperties, IPagedComponentProperties, CrudOperationKeys, HTML5InputTypes, UIModelMetadata, FieldDefinition, UIMediaBreakPointsType, RenderingEngine } from '@decaf-ts/ui-decorators';
|
|
8
|
+
import { FieldProperties, IPagedComponentProperties, CrudOperationKeys, UIFunctionLike, HTML5InputTypes, DecafComponent, UIModelMetadata, FieldDefinition, UIMediaBreakPointsType, RenderingEngine } from '@decaf-ts/ui-decorators';
|
|
9
9
|
import * as _decaf_ts_decorator_validation from '@decaf-ts/decorator-validation';
|
|
10
|
-
import { Model, VALIDATION_PARENT_KEY,
|
|
11
|
-
import { RepositoryFlags, Context, CrudOperations, OperationKeys } from '@decaf-ts/db-decorators';
|
|
10
|
+
import { Model, VALIDATION_PARENT_KEY, ModelConstructor } from '@decaf-ts/decorator-validation';
|
|
11
|
+
import { RepositoryFlags, Context, CrudOperations, OperationKeys, IRepository } from '@decaf-ts/db-decorators';
|
|
12
12
|
import { ModalOptions, IonAccordionGroup, ItemReorderEventDetail, IonModal } from '@ionic/angular/standalone';
|
|
13
|
+
import { Constructor } from '@decaf-ts/decoration';
|
|
13
14
|
import { Router } from '@angular/router';
|
|
14
15
|
import * as i1 from '@angular/common';
|
|
15
16
|
import { Location } from '@angular/common';
|
|
16
17
|
import * as i3 from '@ngx-translate/core';
|
|
17
18
|
import { TranslateService, TranslateLoader, TranslationObject, TranslateParser, RootTranslateServiceConfig } from '@ngx-translate/core';
|
|
18
|
-
import { LoggedClass, Logger } from '@decaf-ts/logging';
|
|
19
19
|
import { HttpClient } from '@angular/common/http';
|
|
20
20
|
import { Observable, Subscription } from 'rxjs';
|
|
21
21
|
import { SafeHtml, DomSanitizer, Title } from '@angular/platform-browser';
|
|
22
|
+
import { LoggedClass, Logger } from '@decaf-ts/logging';
|
|
22
23
|
import { InjectablesRegistry } from '@decaf-ts/injectable-decorators';
|
|
23
24
|
|
|
24
25
|
/**
|
|
@@ -490,7 +491,7 @@ interface IFileUploadError {
|
|
|
490
491
|
* @memberOf module:lib/engine/constants
|
|
491
492
|
*/
|
|
492
493
|
declare const AngularEngineKeys: {
|
|
493
|
-
readonly REFLECT:
|
|
494
|
+
readonly REFLECT: "angular";
|
|
494
495
|
readonly DYNAMIC: "dynamic-component";
|
|
495
496
|
readonly ANNOTATIONS: "__annotations__";
|
|
496
497
|
readonly ECMP: "ecmp";
|
|
@@ -769,7 +770,6 @@ declare const ListItemPositions: {
|
|
|
769
770
|
* @link {@link KeyValue}
|
|
770
771
|
*/
|
|
771
772
|
|
|
772
|
-
type HandlerLike = Record<string, (...args: unknown[]) => unknown | Promise<unknown>>;
|
|
773
773
|
interface RawQuery<M extends Model> {
|
|
774
774
|
select: undefined | (keyof M)[];
|
|
775
775
|
from: Constructor<M>;
|
|
@@ -796,7 +796,7 @@ type KeyValue = Record<string, any>;
|
|
|
796
796
|
* @typedef FunctionLike
|
|
797
797
|
* @memberOf module:engine
|
|
798
798
|
*/
|
|
799
|
-
type FunctionLike =
|
|
799
|
+
type FunctionLike = UIFunctionLike;
|
|
800
800
|
/**
|
|
801
801
|
* @description Element size options for UI components
|
|
802
802
|
* @summary Defines the possible size values that can be applied to UI elements.
|
|
@@ -804,7 +804,7 @@ type FunctionLike = (...args: any[]) => any;
|
|
|
804
804
|
* @typedef ElementSize
|
|
805
805
|
* @memberOf module:engine
|
|
806
806
|
*/
|
|
807
|
-
type ElementSize = typeof ElementSizes[keyof typeof ElementSizes];
|
|
807
|
+
type ElementSize = (typeof ElementSizes)[keyof typeof ElementSizes];
|
|
808
808
|
/**
|
|
809
809
|
* @description Basic position options for UI elements
|
|
810
810
|
* @summary Defines the possible position values that can be applied to UI elements.
|
|
@@ -812,7 +812,7 @@ type ElementSize = typeof ElementSizes[keyof typeof ElementSizes];
|
|
|
812
812
|
* @typedef {('left'|'center'|'right'|'top'|'bottom')} ElementPosition
|
|
813
813
|
* @memberOf module:engine
|
|
814
814
|
*/
|
|
815
|
-
type ElementPosition = typeof ElementPositions[keyof typeof ElementPositions];
|
|
815
|
+
type ElementPosition = (typeof ElementPositions)[keyof typeof ElementPositions];
|
|
816
816
|
/**
|
|
817
817
|
* @description Extended position options for flex layouts
|
|
818
818
|
* @summary Extends the basic ElementPosition with additional flex-specific position values.
|
|
@@ -831,7 +831,7 @@ type FlexPosition = ElementPosition | 'stretch' | 'middle' | 'around' | 'between
|
|
|
831
831
|
* @memberOf module:engine
|
|
832
832
|
*/
|
|
833
833
|
type FieldUpdateMode = 'change' | 'blur' | 'submit';
|
|
834
|
-
type HTML5InputType = typeof HTML5InputTypes[keyof typeof HTML5InputTypes];
|
|
834
|
+
type HTML5InputType = (typeof HTML5InputTypes)[keyof typeof HTML5InputTypes];
|
|
835
835
|
/**
|
|
836
836
|
* @description Possible input types for form fields
|
|
837
837
|
* @summary Defines the possible input types that can be used in form fields.
|
|
@@ -945,28 +945,28 @@ type I18nResourceConfigType = I18nResourceConfig | I18nResourceConfig[];
|
|
|
945
945
|
* @typedef {typeof WindowColorSchemes[keyof typeof WindowColorSchemes]} WindowColorScheme
|
|
946
946
|
* @memberOf module:lib/engine/types
|
|
947
947
|
*/
|
|
948
|
-
type WindowColorScheme = typeof WindowColorSchemes[keyof typeof WindowColorSchemes];
|
|
948
|
+
type WindowColorScheme = (typeof WindowColorSchemes)[keyof typeof WindowColorSchemes];
|
|
949
949
|
/**
|
|
950
950
|
* @description Represents the possible roles for an action.
|
|
951
951
|
* @summary This type is derived from the `ActionRoles` constant, allowing only its defined keys as values.
|
|
952
952
|
* @typedef {typeof ActionRoles[keyof typeof ActionRoles]} ActionRole
|
|
953
953
|
* @memberOf module:lib/engine/types
|
|
954
954
|
*/
|
|
955
|
-
type ActionRole = typeof ActionRoles[keyof typeof ActionRoles];
|
|
955
|
+
type ActionRole = (typeof ActionRoles)[keyof typeof ActionRoles];
|
|
956
956
|
/**
|
|
957
957
|
* @description Represents the possible grid gap values for a layout.
|
|
958
958
|
* @summary This type is derived from the `LayoutGridGaps` constant, allowing only its defined keys as values.
|
|
959
959
|
* @typedef {typeof LayoutGridGaps[keyof typeof LayoutGridGaps]} LayoutGridGap
|
|
960
960
|
* @memberOf module:lib/engine/types
|
|
961
961
|
*/
|
|
962
|
-
type LayoutGridGap = typeof LayoutGridGaps[keyof typeof LayoutGridGaps];
|
|
962
|
+
type LayoutGridGap = (typeof LayoutGridGaps)[keyof typeof LayoutGridGaps];
|
|
963
963
|
/**
|
|
964
964
|
* @description Represents the possible positions for a list item.
|
|
965
965
|
* @summary This type is derived from the `ListItemPositions` constant, allowing only its defined keys as values.
|
|
966
966
|
* @typedef {typeof ListItemPositions[keyof typeof ListItemPositions]} ListItemPosition
|
|
967
967
|
* @memberOf module:lib/engine/types
|
|
968
968
|
*/
|
|
969
|
-
type ListItemPosition = typeof ListItemPositions[keyof typeof ListItemPositions];
|
|
969
|
+
type ListItemPosition = (typeof ListItemPositions)[keyof typeof ListItemPositions];
|
|
970
970
|
|
|
971
971
|
/**
|
|
972
972
|
* @module NgxMediaService
|
|
@@ -1225,7 +1225,7 @@ declare class NgxMediaService {
|
|
|
1225
1225
|
* @implements {OnChanges}
|
|
1226
1226
|
* @memberOf module:lib/engine/NgxComponentDirective
|
|
1227
1227
|
*/
|
|
1228
|
-
declare abstract class NgxComponentDirective extends
|
|
1228
|
+
declare abstract class NgxComponentDirective extends DecafComponent implements OnChanges, OnDestroy {
|
|
1229
1229
|
/**
|
|
1230
1230
|
* @description Reference to the component's native DOM element.
|
|
1231
1231
|
* @summary Provides direct access to the native DOM element of the component through Angular's
|
|
@@ -1325,11 +1325,11 @@ declare abstract class NgxComponentDirective extends LoggedClass implements OnCh
|
|
|
1325
1325
|
* @summary Defines how fields from the data model should be mapped to properties used by the component.
|
|
1326
1326
|
* This allows for flexible data binding between the model and the component's display logic. Can be
|
|
1327
1327
|
* provided as a static object mapping or as a function for dynamic mapping transformations.
|
|
1328
|
-
* @type {Record<string, string> | FunctionLike}
|
|
1328
|
+
* @type {Record<string, string> | FunctionLike | Record<string, FunctionLike>}
|
|
1329
1329
|
* @default {}
|
|
1330
1330
|
* @memberOf module:lib/engine/NgxComponentDirective
|
|
1331
1331
|
*/
|
|
1332
|
-
mapper: Record<string, string> | FunctionLike
|
|
1332
|
+
mapper: Record<string, string> | FunctionLike | Record<string, FunctionLike>;
|
|
1333
1333
|
/**
|
|
1334
1334
|
* @description Available CRUD operations for this component instance.
|
|
1335
1335
|
* @summary Defines which CRUD operations (Create, Read, Update, Delete) are available
|
|
@@ -1383,17 +1383,6 @@ declare abstract class NgxComponentDirective extends LoggedClass implements OnCh
|
|
|
1383
1383
|
* @memberOf module:lib/engine/NgxComponentDirective
|
|
1384
1384
|
*/
|
|
1385
1385
|
className: string;
|
|
1386
|
-
/**
|
|
1387
|
-
* @description Repository instance for data layer operations.
|
|
1388
|
-
* @summary Provides a connection to the data layer for retrieving and manipulating data.
|
|
1389
|
-
* This is an instance of the DecafRepository class, initialized lazily in the repository getter.
|
|
1390
|
-
* The repository is used to perform CRUD (Create, Read, Update, Delete) operations on the
|
|
1391
|
-
* data model and provides methods for querying and filtering data based on specific criteria.
|
|
1392
|
-
* @type {DecafRepository<Model>}
|
|
1393
|
-
* @private
|
|
1394
|
-
* @memberOf module:lib/engine/NgxComponentDirective
|
|
1395
|
-
*/
|
|
1396
|
-
protected _repository?: DecafRepository<Model>;
|
|
1397
1386
|
/**
|
|
1398
1387
|
* @description Angular change detection service for manual change detection control.
|
|
1399
1388
|
* @summary Injected service that provides manual control over change detection cycles.
|
|
@@ -1438,17 +1427,6 @@ declare abstract class NgxComponentDirective extends LoggedClass implements OnCh
|
|
|
1438
1427
|
* @memberOf module:lib/engine/NgxComponentDirective
|
|
1439
1428
|
*/
|
|
1440
1429
|
protected translateService: TranslateService;
|
|
1441
|
-
/**
|
|
1442
|
-
* @description Logger instance for structured component logging.
|
|
1443
|
-
* @summary Provides logging capabilities for the component, allowing for consistent
|
|
1444
|
-
* and structured logging of information, warnings, and errors. This logger is inherited
|
|
1445
|
-
* from the LoggedClass and provides access to structured logging functionality.
|
|
1446
|
-
* The logger is used throughout the component to record important events, debug information,
|
|
1447
|
-
* and potential issues, facilitating easier debugging and maintenance.
|
|
1448
|
-
* @type {Logger}
|
|
1449
|
-
* @memberOf module:lib/engine/NgxComponentDirective
|
|
1450
|
-
*/
|
|
1451
|
-
logger: Logger;
|
|
1452
1430
|
/**
|
|
1453
1431
|
* @description Event emitter for custom component events.
|
|
1454
1432
|
* @summary Emits custom events that occur within child components or the component itself.
|
|
@@ -1486,7 +1464,7 @@ declare abstract class NgxComponentDirective extends LoggedClass implements OnCh
|
|
|
1486
1464
|
* and other properties needed to render list items correctly. The tag property
|
|
1487
1465
|
* identifies which component should be used to render each item in a list.
|
|
1488
1466
|
* Additional properties can be included to customize the rendering behavior.
|
|
1489
|
-
* @type {Record<string,
|
|
1467
|
+
* @type {Record<string, FieldDefinition>}
|
|
1490
1468
|
* @default {tag: ""}
|
|
1491
1469
|
* @memberOf module:lib/engine/NgxComponentDirective
|
|
1492
1470
|
*/
|
|
@@ -1513,16 +1491,6 @@ declare abstract class NgxComponentDirective extends LoggedClass implements OnCh
|
|
|
1513
1491
|
* @memberOf module:lib/engine/NgxComponentDirective
|
|
1514
1492
|
*/
|
|
1515
1493
|
route?: string;
|
|
1516
|
-
/**
|
|
1517
|
-
* @description Initialization status flag for the component.
|
|
1518
|
-
* @summary Tracks whether the component has completed its initialization process.
|
|
1519
|
-
* This flag is used to prevent duplicate initialization and to determine if
|
|
1520
|
-
* certain operations that require initialization can be performed.
|
|
1521
|
-
* @type {boolean}
|
|
1522
|
-
* @default false
|
|
1523
|
-
* @memberOf module:lib/engine/NgxComponentDirective
|
|
1524
|
-
*/
|
|
1525
|
-
initialized: boolean;
|
|
1526
1494
|
/**
|
|
1527
1495
|
* @description Controls whether borders are displayed around the component.
|
|
1528
1496
|
* @summary Boolean flag that determines if the component should be visually outlined with borders.
|
|
@@ -1532,42 +1500,14 @@ declare abstract class NgxComponentDirective extends LoggedClass implements OnCh
|
|
|
1532
1500
|
* @default false
|
|
1533
1501
|
*/
|
|
1534
1502
|
borders: boolean;
|
|
1535
|
-
/**
|
|
1536
|
-
* @description Component name identifier for logging and localization contexts.
|
|
1537
|
-
* @summary Stores the component's name which is used as a key for logging contexts
|
|
1538
|
-
* and as a base for locale resolution. Can be injected via the CPTKN token or defaults
|
|
1539
|
-
* to "NgxComponentDirective" if not provided.
|
|
1540
|
-
* @protected
|
|
1541
|
-
* @type {string | undefined}
|
|
1542
|
-
* @memberOf module:lib/engine/NgxComponentDirective
|
|
1543
|
-
*/
|
|
1544
|
-
protected componentName?: string;
|
|
1545
|
-
/**
|
|
1546
|
-
* @description Root key for component locale context resolution.
|
|
1547
|
-
* @summary Defines the base key used to resolve localization contexts for this component.
|
|
1548
|
-
* If not explicitly provided, it defaults to the component's name. This key is used to
|
|
1549
|
-
* load appropriate translation resources and locale-specific configurations.
|
|
1550
|
-
* @protected
|
|
1551
|
-
* @type {string | undefined}
|
|
1552
|
-
* @memberOf module:lib/engine/NgxComponentDirective
|
|
1553
|
-
*/
|
|
1554
|
-
protected localeRoot?: string;
|
|
1555
|
-
/**
|
|
1556
|
-
* @description Reference to CRUD operation constants for template usage.
|
|
1557
|
-
* @summary Exposes the OperationKeys enum to the component template, enabling
|
|
1558
|
-
* conditional rendering and behavior based on operation types. This protected
|
|
1559
|
-
* readonly property ensures that template logic can access operation constants
|
|
1560
|
-
* while maintaining encapsulation and preventing accidental modification.
|
|
1561
|
-
* @protected
|
|
1562
|
-
* @readonly
|
|
1563
|
-
* @memberOf module:lib/engine/NgxComponentDirective
|
|
1564
|
-
*/
|
|
1565
|
-
protected readonly OperationKeys: typeof OperationKeys;
|
|
1566
1503
|
/**
|
|
1567
1504
|
* @description Angular Location service.
|
|
1568
|
-
* @summary Injected service that provides access to the browser's URL and history.
|
|
1569
|
-
*
|
|
1570
|
-
*
|
|
1505
|
+
* @summary Injected service that provides direct access to the browser's URL and history.
|
|
1506
|
+
* Unlike the Router, Location allows for low-level manipulation of the browser's history stack
|
|
1507
|
+
* and URL path, such as programmatically navigating back or forward, or updating the URL without
|
|
1508
|
+
* triggering a route change. This is useful for scenarios where you need to interact with the
|
|
1509
|
+
* browser history or URL outside of Angular's routing system, such as closing modals, handling
|
|
1510
|
+
* popstate events, or supporting custom navigation logic.
|
|
1571
1511
|
*
|
|
1572
1512
|
* @private
|
|
1573
1513
|
* @type {Location}
|
|
@@ -1586,6 +1526,8 @@ declare abstract class NgxComponentDirective extends LoggedClass implements OnCh
|
|
|
1586
1526
|
* @memberOf module:lib/engine/NgxComponentDirective
|
|
1587
1527
|
*/
|
|
1588
1528
|
isModalChild: boolean;
|
|
1529
|
+
protected handlers: Record<string, UIFunctionLike>;
|
|
1530
|
+
protected events: Record<string, UIFunctionLike>;
|
|
1589
1531
|
/**
|
|
1590
1532
|
* @description Constructor for NgxComponentDirective.
|
|
1591
1533
|
* @summary Initializes the directive by setting up the component name, locale root,
|
|
@@ -1624,7 +1566,7 @@ declare abstract class NgxComponentDirective extends LoggedClass implements OnCh
|
|
|
1624
1566
|
* @throws {InternalError} If repository initialization fails
|
|
1625
1567
|
* @memberOf module:lib/engine/NgxComponentDirective
|
|
1626
1568
|
*/
|
|
1627
|
-
protected get repository(): DecafRepository<Model
|
|
1569
|
+
protected get repository(): DecafRepository<Model> | undefined;
|
|
1628
1570
|
/**
|
|
1629
1571
|
* @description Angular lifecycle hook for handling input property changes.
|
|
1630
1572
|
* @summary Responds to changes in component input properties, specifically monitoring changes
|
|
@@ -1635,7 +1577,7 @@ declare abstract class NgxComponentDirective extends LoggedClass implements OnCh
|
|
|
1635
1577
|
* @return {void}
|
|
1636
1578
|
* @memberOf module:lib/engine/NgxComponentDirective
|
|
1637
1579
|
*/
|
|
1638
|
-
ngOnChanges(changes: SimpleChanges): void
|
|
1580
|
+
ngOnChanges(changes: SimpleChanges): Promise<void>;
|
|
1639
1581
|
/**
|
|
1640
1582
|
* @description Translates text phrases using the translation service.
|
|
1641
1583
|
* @summary Provides a promise-based wrapper around the translation service to translate
|
|
@@ -1649,18 +1591,6 @@ declare abstract class NgxComponentDirective extends LoggedClass implements OnCh
|
|
|
1649
1591
|
* @memberOf module:lib/engine/NgxComponentDirective
|
|
1650
1592
|
*/
|
|
1651
1593
|
protected translate(phrase: string | string[], params?: object | string): Promise<string>;
|
|
1652
|
-
/**
|
|
1653
|
-
* @description Initializes the component asynchronously with custom logic.
|
|
1654
|
-
* @summary Abstract initialization method that can be overridden by child components to perform
|
|
1655
|
-
* custom initialization logic. By default, it simply sets the initialized flag to true.
|
|
1656
|
-
* Child components can extend this method to load data, configure settings, or perform
|
|
1657
|
-
* other setup operations required before the component is fully functional.
|
|
1658
|
-
* @protected
|
|
1659
|
-
* @param {...unknown[]} args - Variable number of arguments that can be used by child implementations
|
|
1660
|
-
* @return {Promise<void>} A promise that resolves when initialization is complete
|
|
1661
|
-
* @memberOf module:lib/engine/NgxComponentDirective
|
|
1662
|
-
*/
|
|
1663
|
-
protected initialize(...args: unknown[]): Promise<void>;
|
|
1664
1594
|
protected checkDarkMode(): void;
|
|
1665
1595
|
/**
|
|
1666
1596
|
* @description Retrieves or sets the locale context for the component.
|
|
@@ -1845,7 +1775,7 @@ declare abstract class NgxComponentDirective extends LoggedClass implements OnCh
|
|
|
1845
1775
|
*/
|
|
1846
1776
|
changeOperation(operation: string, id?: string): Promise<boolean>;
|
|
1847
1777
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgxComponentDirective, never>;
|
|
1848
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<NgxComponentDirective, never, never, { "enableDarkMode": { "alias": "enableDarkMode"; "required": false; }; "isDarkMode": { "alias": "isDarkMode"; "required": false; }; "name": { "alias": "name"; "required": false; }; "childOf": { "alias": "childOf"; "required": false; }; "uid": { "alias": "uid"; "required": false; }; "model": { "alias": "model"; "required": false; }; "modelId": { "alias": "modelId"; "required": false; }; "pk": { "alias": "pk"; "required": false; }; "mapper": { "alias": "mapper"; "required": false; }; "operations": { "alias": "operations"; "required": false; }; "operation": { "alias": "operation"; "required": false; }; "row": { "alias": "row"; "required": false; }; "col": { "alias": "col"; "required": false; }; "className": { "alias": "className"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "item": { "alias": "item"; "required": false; }; "props": { "alias": "props"; "required": false; }; "route": { "alias": "route"; "required": false; }; "borders": { "alias": "borders"; "required": false; }; "isModalChild": { "alias": "isModalChild"; "required": false; }; }, { "listenEvent": "listenEvent"; }, never, never, true, never>;
|
|
1778
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NgxComponentDirective, never, never, { "enableDarkMode": { "alias": "enableDarkMode"; "required": false; }; "isDarkMode": { "alias": "isDarkMode"; "required": false; }; "name": { "alias": "name"; "required": false; }; "childOf": { "alias": "childOf"; "required": false; }; "uid": { "alias": "uid"; "required": false; }; "model": { "alias": "model"; "required": false; }; "modelId": { "alias": "modelId"; "required": false; }; "pk": { "alias": "pk"; "required": false; }; "mapper": { "alias": "mapper"; "required": false; }; "operations": { "alias": "operations"; "required": false; }; "operation": { "alias": "operation"; "required": false; }; "row": { "alias": "row"; "required": false; }; "col": { "alias": "col"; "required": false; }; "className": { "alias": "className"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "item": { "alias": "item"; "required": false; }; "props": { "alias": "props"; "required": false; }; "route": { "alias": "route"; "required": false; }; "borders": { "alias": "borders"; "required": false; }; "isModalChild": { "alias": "isModalChild"; "required": false; }; "handlers": { "alias": "handlers"; "required": false; }; "events": { "alias": "events"; "required": false; }; }, { "listenEvent": "listenEvent"; }, never, never, true, never>;
|
|
1849
1779
|
}
|
|
1850
1780
|
|
|
1851
1781
|
declare class NgxRenderableComponentDirective extends NgxComponentDirective implements OnChanges, OnDestroy, IRenderedModel {
|
|
@@ -2414,7 +2344,7 @@ declare abstract class NgxFormFieldDirective extends NgxComponentDirective imple
|
|
|
2414
2344
|
* @return {void}
|
|
2415
2345
|
* @public
|
|
2416
2346
|
*/
|
|
2417
|
-
ngOnChanges(changes: SimpleChanges): void
|
|
2347
|
+
ngOnChanges(changes: SimpleChanges): Promise<void>;
|
|
2418
2348
|
/**
|
|
2419
2349
|
* @description Cleanup logic when the component is destroyed.
|
|
2420
2350
|
* @summary Unregisters the form group from the form service to prevent memory leaks
|
|
@@ -2667,7 +2597,7 @@ declare class CrudFieldComponent extends NgxFormFieldDirective implements OnInit
|
|
|
2667
2597
|
* @type {boolean}
|
|
2668
2598
|
* @memberOf CrudFieldComponent
|
|
2669
2599
|
*/
|
|
2670
|
-
readonly
|
|
2600
|
+
readonly: boolean;
|
|
2671
2601
|
/**
|
|
2672
2602
|
* @description Whether the field is required.
|
|
2673
2603
|
* @summary When true, the field must have a value for the form to be valid.
|
|
@@ -2951,10 +2881,10 @@ declare class CrudFieldComponent extends NgxFormFieldDirective implements OnInit
|
|
|
2951
2881
|
* This ensures proper initialization of read-only fields that don't require
|
|
2952
2882
|
* form functionality but still need view setup.
|
|
2953
2883
|
*
|
|
2954
|
-
* @returns {void}
|
|
2884
|
+
* @returns {Promise<void>}
|
|
2955
2885
|
* @memberOf CrudFieldComponent
|
|
2956
2886
|
*/
|
|
2957
|
-
ngAfterViewInit(): void
|
|
2887
|
+
ngAfterViewInit(): Promise<void>;
|
|
2958
2888
|
/**
|
|
2959
2889
|
* @description Component cleanup lifecycle method.
|
|
2960
2890
|
* @summary Performs cleanup operations for READ and DELETE operations by calling
|
|
@@ -3004,12 +2934,12 @@ declare class CrudFieldComponent extends NgxFormFieldDirective implements OnInit
|
|
|
3004
2934
|
*/
|
|
3005
2935
|
declare class NgxParentComponentDirective extends NgxComponentDirective implements OnInit {
|
|
3006
2936
|
/**
|
|
3007
|
-
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
|
|
3011
|
-
|
|
3012
|
-
|
|
2937
|
+
* @description Unique identifier for the current record.
|
|
2938
|
+
* @summary A unique identifier for the current record being displayed or manipulated.
|
|
2939
|
+
* This is typically used in conjunction with the primary key for operations on specific records.
|
|
2940
|
+
*
|
|
2941
|
+
* @type {string | number}
|
|
2942
|
+
*/
|
|
3013
2943
|
page: number;
|
|
3014
2944
|
/**
|
|
3015
2945
|
* @description Unique identifier for the current record.
|
|
@@ -3238,9 +3168,9 @@ declare abstract class NgxFormDirective extends NgxParentComponentDirective impl
|
|
|
3238
3168
|
* triggered during form operations. These handlers provide extensibility for
|
|
3239
3169
|
* custom business logic and can be invoked for various form events and actions.
|
|
3240
3170
|
*
|
|
3241
|
-
* @type {
|
|
3171
|
+
* @type {Record<string, UIFunctionLike>}
|
|
3242
3172
|
*/
|
|
3243
|
-
handlers:
|
|
3173
|
+
handlers: Record<string, UIFunctionLike>;
|
|
3244
3174
|
/**
|
|
3245
3175
|
* @description Angular reactive FormGroup for form state management.
|
|
3246
3176
|
* @summary The FormGroup instance that manages all form controls, validation,
|
|
@@ -3292,7 +3222,7 @@ declare abstract class NgxFormDirective extends NgxParentComponentDirective impl
|
|
|
3292
3222
|
* @returns {Promise<void>}
|
|
3293
3223
|
*/
|
|
3294
3224
|
ngOnInit(model?: Model | string): Promise<void>;
|
|
3295
|
-
ngAfterViewInit(): void
|
|
3225
|
+
ngAfterViewInit(): Promise<void>;
|
|
3296
3226
|
/**
|
|
3297
3227
|
* @description Component cleanup lifecycle method.
|
|
3298
3228
|
* @summary Performs cleanup operations when the component is destroyed.
|
|
@@ -3394,10 +3324,10 @@ declare class CrudFormComponent extends NgxFormDirective {
|
|
|
3394
3324
|
* @param {string} title - Primary title text displayed in the card header.
|
|
3395
3325
|
* @param {('small'|'default'|'blank')} body - Body size preset controlling padding/typography; defaults to 'default'.
|
|
3396
3326
|
* @param {string} subtitle - Optional subtitle rendered under the title.
|
|
3397
|
-
* @param {
|
|
3327
|
+
* @param {Color} color - Ionic color token applied to the card header/title.
|
|
3398
3328
|
* @param {boolean} separator - When true, renders a divider between header and body.
|
|
3399
3329
|
* @param {boolean} borders - Controls whether borders are rendered; defaults to true.
|
|
3400
|
-
* @param {string|
|
|
3330
|
+
* @param {string|SafeHtml} inlineContent - Inline HTML/SafeHtml to render inside the body.
|
|
3401
3331
|
* @param {('top'|'bottom')} inlineContentPosition - Where to render `inlineContent` relative to the body; defaults to 'bottom'.
|
|
3402
3332
|
* @return {void}
|
|
3403
3333
|
* @class CardComponent
|
|
@@ -3457,7 +3387,7 @@ declare class CardComponent extends NgxComponentDirective implements OnInit {
|
|
|
3457
3387
|
/**
|
|
3458
3388
|
* @description Ionic color token applied to the card.
|
|
3459
3389
|
* @summary When provided, the color token (for example 'primary' or 'tertiary') is applied to title/header elements where supported.
|
|
3460
|
-
* @type {
|
|
3390
|
+
* @type {Color}
|
|
3461
3391
|
* @default ''
|
|
3462
3392
|
*/
|
|
3463
3393
|
color: Color;
|
|
@@ -3478,7 +3408,7 @@ declare class CardComponent extends NgxComponentDirective implements OnInit {
|
|
|
3478
3408
|
/**
|
|
3479
3409
|
* @description Inline HTML or SafeHtml content to render inside the card body.
|
|
3480
3410
|
* @summary Useful for short snippets of rich content provided by the consumer. When passing raw HTML prefer `SafeHtml` to avoid sanitization issues.
|
|
3481
|
-
* @type {string|
|
|
3411
|
+
* @type {string|SafeHtml}
|
|
3482
3412
|
*/
|
|
3483
3413
|
inlineContent?: string | SafeHtml;
|
|
3484
3414
|
/**
|
|
@@ -4122,35 +4052,35 @@ declare class FieldsetComponent extends NgxFormDirective implements OnInit, Afte
|
|
|
4122
4052
|
*/
|
|
4123
4053
|
ngOnInit(): Promise<void>;
|
|
4124
4054
|
/**
|
|
4125
|
-
|
|
4126
|
-
|
|
4127
|
-
|
|
4128
|
-
|
|
4129
|
-
|
|
4130
|
-
|
|
4131
|
-
|
|
4132
|
-
|
|
4133
|
-
|
|
4134
|
-
|
|
4135
|
-
|
|
4136
|
-
|
|
4137
|
-
|
|
4138
|
-
|
|
4139
|
-
|
|
4140
|
-
|
|
4141
|
-
|
|
4142
|
-
|
|
4143
|
-
|
|
4144
|
-
|
|
4145
|
-
|
|
4146
|
-
|
|
4147
|
-
|
|
4148
|
-
|
|
4149
|
-
|
|
4150
|
-
|
|
4151
|
-
|
|
4152
|
-
|
|
4153
|
-
ngAfterViewInit(): void
|
|
4055
|
+
* @description Initializes the component state after view and child components are rendered.
|
|
4056
|
+
* @summary This lifecycle hook implements intelligent auto-state management based on the current
|
|
4057
|
+
* CRUD operation. For READ and DELETE operations, the fieldset automatically opens to provide
|
|
4058
|
+
* immediate access to information, while CREATE and UPDATE operations keep it closed to maintain
|
|
4059
|
+
* a clean initial interface. The method directly manipulates the DOM to ensure proper accordion
|
|
4060
|
+
* synchronization and triggers change detection to reflect the programmatic state changes.
|
|
4061
|
+
*
|
|
4062
|
+
* @mermaid
|
|
4063
|
+
* sequenceDiagram
|
|
4064
|
+
* participant A as Angular Lifecycle
|
|
4065
|
+
* participant F as FieldsetComponent
|
|
4066
|
+
* participant D as DOM
|
|
4067
|
+
* participant C as ChangeDetector
|
|
4068
|
+
*
|
|
4069
|
+
* A->>F: ngAfterViewInit()
|
|
4070
|
+
* alt operation is READ or DELETE
|
|
4071
|
+
* F->>F: Set isOpen = true
|
|
4072
|
+
* F->>D: Query ion-accordion-group element
|
|
4073
|
+
* alt accordion element exists
|
|
4074
|
+
* F->>D: Set value attribute to 'open'
|
|
4075
|
+
* end
|
|
4076
|
+
* end
|
|
4077
|
+
* F->>C: detectChanges()
|
|
4078
|
+
* C->>F: Update view with new state
|
|
4079
|
+
*
|
|
4080
|
+
* @returns {Promise<void>}
|
|
4081
|
+
* @memberOf FieldsetComponent
|
|
4082
|
+
*/
|
|
4083
|
+
ngAfterViewInit(): Promise<void>;
|
|
4154
4084
|
/**
|
|
4155
4085
|
* @description Handles removal of the fieldset with slide animation.
|
|
4156
4086
|
* @summary Initiates the removal process for the fieldset with a smooth slide-up animation.
|
|
@@ -6027,7 +5957,7 @@ declare class ListItemComponent extends NgxComponentDirective implements OnInit,
|
|
|
6027
5957
|
* @memberOf ListItemComponent
|
|
6028
5958
|
*/
|
|
6029
5959
|
ngOnInit(): Promise<void>;
|
|
6030
|
-
ngAfterViewInit(): void
|
|
5960
|
+
ngAfterViewInit(): Promise<void>;
|
|
6031
5961
|
/**
|
|
6032
5962
|
* @description Handles user interactions and actions performed on the list item.
|
|
6033
5963
|
* @summary This method is the central action handler for list item interactions. It manages
|
|
@@ -6234,7 +6164,7 @@ declare class ModelRendererComponent<M extends Model> extends NgxRenderableCompo
|
|
|
6234
6164
|
* @description Lifecycle hook that is called when data-bound properties of a directive change
|
|
6235
6165
|
* @param {SimpleChanges} changes - Object containing changes
|
|
6236
6166
|
*/
|
|
6237
|
-
ngOnChanges(changes: SimpleChanges): void
|
|
6167
|
+
ngOnChanges(changes: SimpleChanges): Promise<void>;
|
|
6238
6168
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModelRendererComponent<any>, never>;
|
|
6239
6169
|
static ɵcmp: i0.ɵɵComponentDeclaration<ModelRendererComponent<any>, "ngx-decaf-model-renderer", never, { "projectable": { "alias": "projectable"; "required": false; }; }, {}, never, never, true, never>;
|
|
6240
6170
|
}
|
|
@@ -7303,7 +7233,7 @@ declare function presentNgxLightBoxModal(inlineContent: string | SafeHtml, props
|
|
|
7303
7233
|
*/
|
|
7304
7234
|
declare function getNgxSelectOptionsModal(options: SelectOption[], injector?: EnvironmentInjector): Promise<IonModal>;
|
|
7305
7235
|
|
|
7306
|
-
declare class IconComponent implements OnInit
|
|
7236
|
+
declare class IconComponent implements OnInit {
|
|
7307
7237
|
/** @description Reference to the component's native DOM element.
|
|
7308
7238
|
* @summary Provides direct access to the native DOM element of the component through Angular's
|
|
7309
7239
|
* ViewChild decorator. This reference can be used to manipulate the DOM element directly,
|
|
@@ -7329,7 +7259,6 @@ declare class IconComponent implements OnInit, AfterViewInit {
|
|
|
7329
7259
|
mediaService: NgxMediaService;
|
|
7330
7260
|
constructor();
|
|
7331
7261
|
ngOnInit(): void;
|
|
7332
|
-
ngAfterViewInit(): void;
|
|
7333
7262
|
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
7334
7263
|
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "ngx-decaf-icon", never, { "name": { "alias": "name"; "required": false; }; "color": { "alias": "color"; "required": false; }; "slot": { "alias": "slot"; "required": false; }; "button": { "alias": "button"; "required": false; }; "buttonFill": { "alias": "buttonFill"; "required": false; }; "buttonShape": { "alias": "buttonShape"; "required": false; }; "width": { "alias": "width"; "required": false; }; "size": { "alias": "size"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; }, {}, never, never, true, never>;
|
|
7335
7264
|
}
|
|
@@ -7719,7 +7648,7 @@ declare class ForAngularComponentsModule {
|
|
|
7719
7648
|
* end
|
|
7720
7649
|
* @category Decorators
|
|
7721
7650
|
*/
|
|
7722
|
-
declare function Dynamic(): (target: object, propertyKey?: string | symbol | unknown, descriptor?: PropertyDescriptor) => void;
|
|
7651
|
+
declare function Dynamic(): (target: object, propertyKey?: string | symbol | unknown, descriptor?: PropertyDescriptor | number) => void;
|
|
7723
7652
|
|
|
7724
7653
|
/**
|
|
7725
7654
|
* @description Abstract base class for dynamic Angular modules
|
|
@@ -8001,18 +7930,6 @@ declare class NgxRenderingEngine extends RenderingEngine<AngularFieldDefinition,
|
|
|
8001
7930
|
* @memberOf module:lib/engine/NgxRenderingEngine
|
|
8002
7931
|
*/
|
|
8003
7932
|
static components(selector?: string): object | string[];
|
|
8004
|
-
/**
|
|
8005
|
-
* @description Generates a key for reflection metadata storage.
|
|
8006
|
-
* @summary This static method generates a key for reflection metadata by prefixing the input key
|
|
8007
|
-
* with the Angular engine's reflection prefix. This is used for storing and retrieving
|
|
8008
|
-
* metadata in a namespaced way to avoid conflicts with other metadata.
|
|
8009
|
-
* @param {string} key - The base key to prefix
|
|
8010
|
-
* @return {string} The prefixed key for reflection metadata
|
|
8011
|
-
* @static
|
|
8012
|
-
* @override
|
|
8013
|
-
* @memberOf module:lib/engine/NgxRenderingEngine
|
|
8014
|
-
*/
|
|
8015
|
-
static key(key: string): string;
|
|
8016
7933
|
/**
|
|
8017
7934
|
* @description Sets input properties on a component instance.
|
|
8018
7935
|
* @summary This static utility method sets input properties on a component instance
|
|
@@ -8847,7 +8764,7 @@ declare abstract class NgxModelPageDirective extends NgxPageDirective {
|
|
|
8847
8764
|
*
|
|
8848
8765
|
* @throws {InternalError} When the model is not found in the registry
|
|
8849
8766
|
*/
|
|
8850
|
-
protected get repository(): DecafRepository<Model
|
|
8767
|
+
protected get repository(): DecafRepository<Model> | undefined;
|
|
8851
8768
|
/**
|
|
8852
8769
|
* @description Angular lifecycle hook for component initialization.
|
|
8853
8770
|
* @summary Initializes the component by setting up the logger instance using the getLogger
|
|
@@ -8897,7 +8814,7 @@ declare abstract class NgxModelPageDirective extends NgxPageDirective {
|
|
|
8897
8814
|
* @param {string} uid - The unique identifier of the model instance to retrieve
|
|
8898
8815
|
* @return {Promise<Model | undefined>} Promise resolving to the model instance or undefined
|
|
8899
8816
|
*/
|
|
8900
|
-
handleGet(uid?: EventIds): Promise<Model | undefined>;
|
|
8817
|
+
handleGet(uid?: EventIds, repository?: IRepository<Model>, modelName?: string): Promise<Model | undefined>;
|
|
8901
8818
|
/**
|
|
8902
8819
|
* @description Parses and transforms form data for repository operations.
|
|
8903
8820
|
* @summary Converts raw form data into the appropriate format for repository operations.
|
|
@@ -9481,15 +9398,18 @@ declare function provideDynamicComponents(...components: Constructor<unknown>[])
|
|
|
9481
9398
|
* @memberOf module:lib/for-angular-common.module
|
|
9482
9399
|
* @example
|
|
9483
9400
|
* // Get repository by model class
|
|
9484
|
-
* const userRepo =
|
|
9401
|
+
* const userRepo = getModelAndRepository(User);
|
|
9485
9402
|
*
|
|
9486
9403
|
* // Get repository by model name
|
|
9487
|
-
* const productRepo =
|
|
9404
|
+
* const productRepo = getModelAndRepository('Product');
|
|
9488
9405
|
*
|
|
9489
9406
|
* // Use repository for queries
|
|
9490
9407
|
* const users = await userRepo.findAll();
|
|
9491
9408
|
*/
|
|
9492
|
-
declare function
|
|
9409
|
+
declare function getModelAndRepository(model: Model | string): {
|
|
9410
|
+
repository: DecafRepository<Model>;
|
|
9411
|
+
model: Model;
|
|
9412
|
+
} | undefined;
|
|
9493
9413
|
/**
|
|
9494
9414
|
* @description Provides a database adapter for dependency injection.
|
|
9495
9415
|
* @summary Creates an Angular provider that registers a database adapter instance. This function
|
|
@@ -9576,5 +9496,5 @@ declare class ForAngularCommonModule {
|
|
|
9576
9496
|
static ɵinj: i0.ɵɵInjectorDeclaration<ForAngularCommonModule>;
|
|
9577
9497
|
}
|
|
9578
9498
|
|
|
9579
|
-
export { ActionRoles, AngularEngineKeys, BaseComponentProps, CPTKN, CardComponent, ComponentEventNames, ComponentRendererComponent, ComponentsTagNames, CrudFieldComponent, CrudFormComponent, CssClasses, DB_ADAPTER_PROVIDER, DB_ADAPTER_PROVIDER_TOKEN, DecafFakerRepository, DefaultFormReactiveOptions, DefaultListEmptyOptions, DefaultModalOptions, Dynamic, DynamicModule, ElementPositions, ElementSizes, EmptyStateComponent, FieldsetComponent, FileUploadComponent, FilterComponent, ForAngularCommonModule, ForAngularComponentsModule, FormConstants, I18N_CONFIG_TOKEN, I18nLoader, I18nLoaderFactory, I18nParser, IconComponent, LOCALE_ROOT_TOKEN, LayoutComponent, LayoutGridGaps, ListComponent, ListComponentsTypes, ListItemComponent, ListItemPositions, LoggerLevels, ModalComponent, ModelRendererComponent, NgxComponentDirective, NgxEventHandler, NgxFormDirective, NgxFormFieldDirective, NgxFormService, NgxMediaService, NgxModelPageDirective, NgxPageDirective, NgxParentComponentDirective, NgxRenderingEngine, NgxSvgDirective, PaginationComponent, RouteDirections, SearchbarComponent, SteppedFormComponent, WindowColorSchemes, cleanSpaces, dataMapper, filterString, formatDate, generateRandomValue, getFakerData, getInjectablesRegistry, getLocaleContext, getLocaleContextByKey, getLocaleFromClassName, getLocaleLanguage, getLogger,
|
|
9580
|
-
export type { ActionRole, AngularDynamicOutput, AngularFieldDefinition, CheckboxOption, ComponentMetadata, CrudFieldOption, DecafRepository, DecafRepositoryAdapter, ElementPosition, ElementSize, FieldUpdateMode, FlexPosition, FormParent, FormParentGroup, FormServiceControl, FormServiceControls, FunctionLike, HTML5InputType, HTMLFormTarget,
|
|
9499
|
+
export { ActionRoles, AngularEngineKeys, BaseComponentProps, CPTKN, CardComponent, ComponentEventNames, ComponentRendererComponent, ComponentsTagNames, CrudFieldComponent, CrudFormComponent, CssClasses, DB_ADAPTER_PROVIDER, DB_ADAPTER_PROVIDER_TOKEN, DecafFakerRepository, DefaultFormReactiveOptions, DefaultListEmptyOptions, DefaultModalOptions, Dynamic, DynamicModule, ElementPositions, ElementSizes, EmptyStateComponent, FieldsetComponent, FileUploadComponent, FilterComponent, ForAngularCommonModule, ForAngularComponentsModule, FormConstants, I18N_CONFIG_TOKEN, I18nLoader, I18nLoaderFactory, I18nParser, IconComponent, LOCALE_ROOT_TOKEN, LayoutComponent, LayoutGridGaps, ListComponent, ListComponentsTypes, ListItemComponent, ListItemPositions, LoggerLevels, ModalComponent, ModelRendererComponent, NgxComponentDirective, NgxEventHandler, NgxFormDirective, NgxFormFieldDirective, NgxFormService, NgxMediaService, NgxModelPageDirective, NgxPageDirective, NgxParentComponentDirective, NgxRenderingEngine, NgxSvgDirective, PaginationComponent, RouteDirections, SearchbarComponent, SteppedFormComponent, WindowColorSchemes, cleanSpaces, dataMapper, filterString, formatDate, generateRandomValue, getFakerData, getInjectablesRegistry, getLocaleContext, getLocaleContextByKey, getLocaleFromClassName, getLocaleLanguage, getLogger, getModelAndRepository, getNgxModalComponent, getNgxSelectOptionsModal, getOnWindow, getOnWindowDocument, getWindow, getWindowDocument, getWindowWidth, isDarkMode, isDevelopmentMode, isNotUndefined, isValidDate, itemMapper, parseToValidDate, presentNgxLightBoxModal, provideDbAdapter, provideDynamicComponents, provideI18n, provideI18nLoader, removeFocusTrap, setOnWindow, stringToBoolean, windowEventEmitter };
|
|
9500
|
+
export type { ActionRole, AngularDynamicOutput, AngularFieldDefinition, CheckboxOption, ComponentMetadata, CrudFieldOption, DecafRepository, DecafRepositoryAdapter, ElementPosition, ElementSize, FieldUpdateMode, FlexPosition, FormParent, FormParentGroup, FormServiceControl, FormServiceControls, FunctionLike, HTML5InputType, HTMLFormTarget, I18nResourceConfig, I18nResourceConfigType, I18nToken, IBaseCustomEvent, IComponentConfig, IComponentHolder, IComponentProperties, ICrudFormEvent, ICrudFormOptions, IFieldSetItem, IFieldSetValidationEvent, IFileUploadError, IFilterQuery, IFilterQueryItem, IFormComponentProperties, IFormElement, IFormReactiveSubmitEvent, IListComponentRefreshEvent, IListEmptyOptions, IMenuItem, IModelPageCustomEvent, IPaginationCustomEvent, IRenderedModel, ISortObject, IWindowResizeEvent, InputOption, KeyValue, LayoutGridGap, ListItemCustomEvent, ListItemPosition, PossibleInputTypes, RadioOption, RawQuery, SelectOption, StringOrBoolean, WindowColorScheme };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@decaf-ts/for-angular",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.47",
|
|
4
4
|
"author": "Tiago Venceslau and Contributors",
|
|
5
5
|
"license": "MPL-2.0 OR AGPL-3.0",
|
|
6
6
|
"repository": {
|
|
@@ -20,14 +20,13 @@
|
|
|
20
20
|
"@angular/platform-browser": "^20.2.4",
|
|
21
21
|
"@angular/platform-browser-dynamic": "^20.2.4",
|
|
22
22
|
"@angular/router": "^20.2.4",
|
|
23
|
-
"@decaf-ts/core": "
|
|
23
|
+
"@decaf-ts/core": "latest",
|
|
24
24
|
"@decaf-ts/db-decorators": "latest",
|
|
25
25
|
"@decaf-ts/decoration": "latest",
|
|
26
26
|
"@decaf-ts/decorator-validation": "latest",
|
|
27
27
|
"@decaf-ts/for-http": "latest",
|
|
28
28
|
"@decaf-ts/injectable-decorators": "latest",
|
|
29
|
-
"@decaf-ts/logging": "
|
|
30
|
-
"@decaf-ts/reflection": "latest",
|
|
29
|
+
"@decaf-ts/logging": "latest",
|
|
31
30
|
"@decaf-ts/styles": "latest",
|
|
32
31
|
"@decaf-ts/transactional-decorators": "latest",
|
|
33
32
|
"@decaf-ts/ui-decorators": "latest",
|