@decaf-ts/for-angular 0.0.85 → 0.0.86
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/assets/i18n/ew/en.json +7 -0
- package/fesm2022/decaf-ts-for-angular.mjs +595 -366
- package/fesm2022/decaf-ts-for-angular.mjs.map +1 -1
- package/index.d.ts +65 -19
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -5,9 +5,8 @@ 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, AttributeOption, Observer, Condition, Paginator, Repository, Adapter, EventIds } from '@decaf-ts/core';
|
|
8
|
-
import { UIFunctionLike, CrudOperationKeys, FieldProperties, IPagedComponentProperties, DecafComponent, HTML5InputTypes, ElementSizes, LayoutGridGaps, ElementPositions, UIEventProperty, UIModelMetadata, FieldDefinition, UIMediaBreakPointsType, RenderingEngine, DecafEventHandler } from '@decaf-ts/ui-decorators';
|
|
9
|
-
import
|
|
10
|
-
import { VALIDATION_PARENT_KEY, Model, ModelConstructor } from '@decaf-ts/decorator-validation';
|
|
8
|
+
import { UIFunctionLike, CrudOperationKeys, FieldProperties, IPagedComponentProperties, DecafComponent, DecafTranslateService, HTML5InputTypes, ElementSizes, LayoutGridGaps, ElementPositions, UIEventProperty, UIModelMetadata, FieldDefinition, UIMediaBreakPointsType, RenderingEngine, DecafEventHandler } from '@decaf-ts/ui-decorators';
|
|
9
|
+
import { VALIDATION_PARENT_KEY, Model, ModelConstructor, ComparisonValidationKeys } from '@decaf-ts/decorator-validation';
|
|
11
10
|
import * as _ionic_angular_standalone from '@ionic/angular/standalone';
|
|
12
11
|
import { ModalOptions, LoadingOptions, SelectCustomEvent, ItemReorderEventDetail, IonModal } from '@ionic/angular/standalone';
|
|
13
12
|
import { OperationKeys, PrimaryKeyType, IRepository, CrudOperations, RepositoryFlags, Context } from '@decaf-ts/db-decorators';
|
|
@@ -15,17 +14,26 @@ import { Constructor } from '@decaf-ts/decoration';
|
|
|
15
14
|
import { Router } from '@angular/router';
|
|
16
15
|
import * as i1 from '@angular/common';
|
|
17
16
|
import { Location } from '@angular/common';
|
|
18
|
-
import * as i3 from '@ngx-translate/core';
|
|
19
|
-
import { TranslateService, TranslateLoader, TranslationObject, TranslateParser, RootTranslateServiceConfig } from '@ngx-translate/core';
|
|
20
17
|
import { Observable, Subject, Subscription } from 'rxjs';
|
|
21
18
|
import { HttpClient } from '@angular/common/http';
|
|
22
19
|
import { OverlayBaseController } from '@ionic/angular/common';
|
|
20
|
+
import * as i3 from '@ngx-translate/core';
|
|
21
|
+
import { InterpolationParameters, Translation, InterpolatableTranslationObject, TranslateLoader, TranslationObject, TranslateParser, RootTranslateServiceConfig } from '@ngx-translate/core';
|
|
23
22
|
import { Title, SafeHtml, DomSanitizer } from '@angular/platform-browser';
|
|
23
|
+
import { sf, Logger, LoggedClass } from '@decaf-ts/logging';
|
|
24
24
|
import { NavigationOptions } from '@ionic/angular/common/providers/nav-controller';
|
|
25
|
-
import { Logger, LoggedClass } from '@decaf-ts/logging';
|
|
26
25
|
import { InjectablesRegistry } from '@decaf-ts/injectable-decorators';
|
|
27
26
|
|
|
28
27
|
declare const DB_ADAPTER_FLAVOUR_TOKEN = "DbAdapterFlavour";
|
|
28
|
+
/**
|
|
29
|
+
* Maps validation keys for password, email, and URL to their corresponding regex patterns.
|
|
30
|
+
* These patterns are used to validate field values against standard format requirements.
|
|
31
|
+
*/
|
|
32
|
+
/**
|
|
33
|
+
* Maps validation keys for password, email, and URL to their corresponding regex patterns.
|
|
34
|
+
* These patterns are used to validate field values against standard format requirements.
|
|
35
|
+
*/
|
|
36
|
+
declare const patternValidators: Record<string, RegExp>;
|
|
29
37
|
/**
|
|
30
38
|
* @description Injection token for registering the database adapter provider.
|
|
31
39
|
* @summary Used to inject the database adapter instance that implements DecafRepositoryAdapter.
|
|
@@ -147,6 +155,7 @@ declare const AngularEngineKeys: {
|
|
|
147
155
|
readonly RENDERED: "rendered-as-";
|
|
148
156
|
readonly MAPPER: "mapper";
|
|
149
157
|
readonly CHILDREN: "children";
|
|
158
|
+
readonly ERRORS: "errors";
|
|
150
159
|
readonly LISTABLE: "listable";
|
|
151
160
|
readonly RENDER: "render";
|
|
152
161
|
readonly RENDERED_ID: "rendered-as-{0}";
|
|
@@ -1173,7 +1182,7 @@ declare class NgxRepositoryDirective<M extends Model> extends DecafComponent<M>
|
|
|
1173
1182
|
protected parsePkValue(value: PrimaryKeyType, type: string): PrimaryKeyType;
|
|
1174
1183
|
protected getModelConstrutor(model: string | Model): Constructor<Model> | undefined;
|
|
1175
1184
|
protected getModelProperties(clazz: Constructor<M>): (keyof M)[];
|
|
1176
|
-
protected getModelPropertyType(constructor: Constructor<M
|
|
1185
|
+
protected getModelPropertyType(constructor: Constructor<M> | string, prop: keyof M): string;
|
|
1177
1186
|
protected getModelPkType(clazz: Constructor<M>): string;
|
|
1178
1187
|
/**
|
|
1179
1188
|
* @description Handles repository observation events with debouncing.
|
|
@@ -1190,6 +1199,16 @@ declare class NgxRepositoryDirective<M extends Model> extends DecafComponent<M>
|
|
|
1190
1199
|
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>;
|
|
1191
1200
|
}
|
|
1192
1201
|
|
|
1202
|
+
declare class NgxTranslateService extends DecafTranslateService implements DecafTranslateService {
|
|
1203
|
+
private translateService;
|
|
1204
|
+
instant(key: string, interpolateParams?: InterpolationParameters): Translation;
|
|
1205
|
+
translate(key: string, params?: InterpolationParameters): Translation;
|
|
1206
|
+
get(key: string | string[], params?: InterpolationParameters | string): Promise<string>;
|
|
1207
|
+
setFallbackLang(lang: string): Observable<InterpolatableTranslationObject>;
|
|
1208
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgxTranslateService, never>;
|
|
1209
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<NgxTranslateService>;
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1193
1212
|
/**
|
|
1194
1213
|
* @module lib/engine/NgxComponentDirective
|
|
1195
1214
|
* @description Base decaf component abstraction providing shared inputs and utilities.
|
|
@@ -1447,10 +1466,10 @@ declare abstract class NgxComponentDirective extends NgxRepositoryDirective<Mode
|
|
|
1447
1466
|
* Used to translate button labels, validation messages, and other text content based
|
|
1448
1467
|
* on the current locale setting, enabling multilingual support throughout the application.
|
|
1449
1468
|
* @protected
|
|
1450
|
-
* @type {
|
|
1469
|
+
* @type {NgxTranslateService}
|
|
1451
1470
|
* @memberOf module:lib/engine/NgxComponentDirective
|
|
1452
1471
|
*/
|
|
1453
|
-
|
|
1472
|
+
translateService: NgxTranslateService;
|
|
1454
1473
|
/**
|
|
1455
1474
|
* @description Event emitter for custom component events.
|
|
1456
1475
|
* @summary Emits custom events that occur within child components or the component itself.
|
|
@@ -1789,7 +1808,6 @@ declare abstract class NgxComponentDirective extends NgxRepositoryDirective<Mode
|
|
|
1789
1808
|
* @memberOf module:lib/engine/NgxComponentDirective
|
|
1790
1809
|
*/
|
|
1791
1810
|
handleEvent(event: IBaseCustomEvent & ICrudFormEvent & CustomEvent): Promise<void>;
|
|
1792
|
-
submit(...args: unknown[]): Promise<any>;
|
|
1793
1811
|
/**
|
|
1794
1812
|
* @description Determines if a specific operation is allowed in the current context.
|
|
1795
1813
|
* @summary This method checks if an operation is included in the list of available
|
|
@@ -1855,6 +1873,11 @@ declare abstract class NgxComponentDirective extends NgxRepositoryDirective<Mode
|
|
|
1855
1873
|
* @link {@link KeyValue}
|
|
1856
1874
|
*/
|
|
1857
1875
|
|
|
1876
|
+
/**
|
|
1877
|
+
* Represents a validation key used for comparison-based validations.
|
|
1878
|
+
* Extracted from the ComparisonValidationKeys object to ensure type safety.
|
|
1879
|
+
*/
|
|
1880
|
+
type ComparisonValidationKey = (typeof ComparisonValidationKeys)[keyof typeof ComparisonValidationKeys];
|
|
1858
1881
|
interface RawQuery<M extends Model> {
|
|
1859
1882
|
select: undefined | (keyof M)[];
|
|
1860
1883
|
from: Constructor<M>;
|
|
@@ -2548,6 +2571,14 @@ declare class ComponentRendererComponent extends NgxRenderableComponentDirective
|
|
|
2548
2571
|
static ɵcmp: i0.ɵɵComponentDeclaration<ComponentRendererComponent, "ngx-decaf-component-renderer", never, { "tag": { "alias": "tag"; "required": true; }; "children": { "alias": "children"; "required": false; }; "projectable": { "alias": "projectable"; "required": false; }; "pk": { "alias": "pk"; "required": false; }; "parent": { "alias": "parent"; "required": false; }; }, {}, never, never, true, never>;
|
|
2549
2572
|
}
|
|
2550
2573
|
|
|
2574
|
+
/**
|
|
2575
|
+
* @module lib/engine/NgxFormFieldDirective
|
|
2576
|
+
* @description Base directive for CRUD form fields in Decaf Angular applications.
|
|
2577
|
+
* @summary Provides the NgxFormFieldDirective abstract class that implements ControlValueAccessor
|
|
2578
|
+
* and FieldProperties to enable form field integration with Angular's reactive forms system.
|
|
2579
|
+
* This directive handles form control lifecycle, validation, multi-entry forms, and CRUD operations.
|
|
2580
|
+
*/
|
|
2581
|
+
|
|
2551
2582
|
/**
|
|
2552
2583
|
* @description Abstract base directive for CRUD form fields in Angular applications.
|
|
2553
2584
|
* @summary Provides the foundation for all form field components in Decaf applications by implementing
|
|
@@ -2743,6 +2774,21 @@ declare abstract class NgxFormFieldDirective extends NgxComponentDirective imple
|
|
|
2743
2774
|
* @public
|
|
2744
2775
|
*/
|
|
2745
2776
|
multiple: boolean;
|
|
2777
|
+
/**
|
|
2778
|
+
* @description Custom type definitions for field validation.
|
|
2779
|
+
* @summary Allows specifying custom types beyond HTML5 input types to support specialized validation logic.
|
|
2780
|
+
* Can be a single type string or an array of type strings for multi-type validation scenarios.
|
|
2781
|
+
* @type {string | string[] | undefined}
|
|
2782
|
+
* @public
|
|
2783
|
+
*/
|
|
2784
|
+
customTypes?: string | string[] | undefined;
|
|
2785
|
+
/**
|
|
2786
|
+
* @description Whether the field is currently checked.
|
|
2787
|
+
* @summary Used for checkbox and radio button fields to track the checked state independently from the value.
|
|
2788
|
+
* @type {boolean}
|
|
2789
|
+
* @default false
|
|
2790
|
+
* @public
|
|
2791
|
+
*/
|
|
2746
2792
|
checked: boolean;
|
|
2747
2793
|
/**
|
|
2748
2794
|
* @description Flag tracking if validation error event has been dispatched.
|
|
@@ -2795,9 +2841,6 @@ declare abstract class NgxFormFieldDirective extends NgxComponentDirective imple
|
|
|
2795
2841
|
WEEK: string;
|
|
2796
2842
|
};
|
|
2797
2843
|
constructor(componentName?: string);
|
|
2798
|
-
maxLength?: number | undefined;
|
|
2799
|
-
minLength?: number | undefined;
|
|
2800
|
-
customTypes?: string | string[] | undefined;
|
|
2801
2844
|
/**
|
|
2802
2845
|
* @description Gets the currently active form group based on context.
|
|
2803
2846
|
* @summary Returns the appropriate FormGroup based on whether this field supports
|
|
@@ -2815,7 +2858,7 @@ declare abstract class NgxFormFieldDirective extends NgxComponentDirective imple
|
|
|
2815
2858
|
* @type {function(string, ...string): string}
|
|
2816
2859
|
* @public
|
|
2817
2860
|
*/
|
|
2818
|
-
sf: typeof
|
|
2861
|
+
sf: typeof sf;
|
|
2819
2862
|
/**
|
|
2820
2863
|
* @description Callback function invoked when the field value changes.
|
|
2821
2864
|
* @summary Function registered by Angular's forms system through registerOnChange.
|
|
@@ -2923,7 +2966,9 @@ declare abstract class NgxFormFieldDirective extends NgxComponentDirective imple
|
|
|
2923
2966
|
* @return {void}
|
|
2924
2967
|
* @public
|
|
2925
2968
|
*/
|
|
2926
|
-
handleModalChildChanges(event?: SelectCustomEvent): void;
|
|
2969
|
+
handleModalChildChanges(event?: SelectCustomEvent, formControl?: AbstractControl): void;
|
|
2970
|
+
private validateControl;
|
|
2971
|
+
private getErrorMessage;
|
|
2927
2972
|
/**
|
|
2928
2973
|
* @description Retrieves validation error messages for the field.
|
|
2929
2974
|
* @summary Checks the form control for validation errors and returns formatted error messages.
|
|
@@ -3050,6 +3095,8 @@ declare class CrudFieldComponent extends NgxFormFieldDirective implements OnInit
|
|
|
3050
3095
|
* @memberOf CrudFieldComponent
|
|
3051
3096
|
*/
|
|
3052
3097
|
type: PossibleInputTypes;
|
|
3098
|
+
subType: PossibleInputTypes;
|
|
3099
|
+
validationMessage?: string | string[];
|
|
3053
3100
|
/**
|
|
3054
3101
|
* @description The initial value of the field.
|
|
3055
3102
|
* @summary Sets the initial value of the form field. This can be a string, number, or Date
|
|
@@ -3343,7 +3390,6 @@ declare class CrudFieldComponent extends NgxFormFieldDirective implements OnInit
|
|
|
3343
3390
|
* @summary Determines the fill style of the field, such as 'outline' or 'solid'.
|
|
3344
3391
|
* This affects the border and background of the field.
|
|
3345
3392
|
*
|
|
3346
|
-
* @type {'outline' | 'solid'}
|
|
3347
3393
|
* @default 'outline'
|
|
3348
3394
|
* @memberOf CrudFieldComponent
|
|
3349
3395
|
*/
|
|
@@ -3472,7 +3518,7 @@ declare class CrudFieldComponent extends NgxFormFieldDirective implements OnInit
|
|
|
3472
3518
|
toggleOptionSelection(val: string, event: CheckboxCustomEvent): void;
|
|
3473
3519
|
isOptionChecked(value: string): boolean;
|
|
3474
3520
|
static ɵfac: i0.ɵɵFactoryDeclaration<CrudFieldComponent, never>;
|
|
3475
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CrudFieldComponent, "ngx-decaf-crud-field", never, { "operation": { "alias": "operation"; "required": true; }; "name": { "alias": "name"; "required": true; }; "className": { "alias": "className"; "required": false; }; "path": { "alias": "path"; "required": true; }; "childOf": { "alias": "childOf"; "required": false; }; "type": { "alias": "type"; "required": true; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": true; }; "placeholder": { "alias": "placeholder"; "required": false; }; "format": { "alias": "format"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "max": { "alias": "max"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "min": { "alias": "min"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "step": { "alias": "step"; "required": false; }; "equals": { "alias": "equals"; "required": false; }; "different": { "alias": "different"; "required": false; }; "lessThan": { "alias": "lessThan"; "required": false; }; "lessThanOrEqual": { "alias": "lessThanOrEqual"; "required": false; }; "greaterThan": { "alias": "greaterThan"; "required": false; }; "greaterThanOrEqual": { "alias": "greaterThanOrEqual"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "justify": { "alias": "justify"; "required": false; }; "cancelText": { "alias": "cancelText"; "required": false; }; "interface": { "alias": "interface"; "required": false; }; "options": { "alias": "options"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "spellcheck": { "alias": "spellcheck"; "required": false; }; "startEmpty": { "alias": "startEmpty"; "required": false; }; "inputmode": { "alias": "inputmode"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "fill": { "alias": "fill"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "updateOn": { "alias": "updateOn"; "required": false; }; "formGroup": { "alias": "formGroup"; "required": false; }; "formControl": { "alias": "formControl"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "uid": { "alias": "uid"; "required": false; }; "page": { "alias": "page"; "required": false; }; }, {}, never, never, true, never>;
|
|
3521
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CrudFieldComponent, "ngx-decaf-crud-field", never, { "operation": { "alias": "operation"; "required": true; }; "name": { "alias": "name"; "required": true; }; "className": { "alias": "className"; "required": false; }; "path": { "alias": "path"; "required": true; }; "childOf": { "alias": "childOf"; "required": false; }; "type": { "alias": "type"; "required": true; }; "subType": { "alias": "subType"; "required": false; }; "validationMessage": { "alias": "validationMessage"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": true; }; "placeholder": { "alias": "placeholder"; "required": false; }; "format": { "alias": "format"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "max": { "alias": "max"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "min": { "alias": "min"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "step": { "alias": "step"; "required": false; }; "equals": { "alias": "equals"; "required": false; }; "different": { "alias": "different"; "required": false; }; "lessThan": { "alias": "lessThan"; "required": false; }; "lessThanOrEqual": { "alias": "lessThanOrEqual"; "required": false; }; "greaterThan": { "alias": "greaterThan"; "required": false; }; "greaterThanOrEqual": { "alias": "greaterThanOrEqual"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "justify": { "alias": "justify"; "required": false; }; "cancelText": { "alias": "cancelText"; "required": false; }; "interface": { "alias": "interface"; "required": false; }; "options": { "alias": "options"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "spellcheck": { "alias": "spellcheck"; "required": false; }; "startEmpty": { "alias": "startEmpty"; "required": false; }; "inputmode": { "alias": "inputmode"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "fill": { "alias": "fill"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "updateOn": { "alias": "updateOn"; "required": false; }; "formGroup": { "alias": "formGroup"; "required": false; }; "formControl": { "alias": "formControl"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "uid": { "alias": "uid"; "required": false; }; "page": { "alias": "page"; "required": false; }; }, {}, never, never, true, never>;
|
|
3476
3522
|
}
|
|
3477
3523
|
|
|
3478
3524
|
/**
|
|
@@ -10053,5 +10099,5 @@ declare class ForAngularCommonModule {
|
|
|
10053
10099
|
static ɵinj: i0.ɵɵInjectorDeclaration<ForAngularCommonModule>;
|
|
10054
10100
|
}
|
|
10055
10101
|
|
|
10056
|
-
export { ActionRoles, AngularEngineKeys, BaseComponentProps, CPTKN, CardComponent, ComponentRendererComponent, ComponentsTagNames, CrudFieldComponent, CrudFormComponent, CssClasses, DB_ADAPTER_FLAVOUR_TOKEN, DB_ADAPTER_PROVIDER_TOKEN, DecafFakerRepository, DefaultFormReactiveOptions, DefaultListEmptyOptions, DefaultModalOptions, Dynamic, DynamicModule, EmptyStateComponent, FieldsetComponent, FileUploadComponent, FilterComponent, ForAngularCommonModule, ForAngularComponentsModule, I18N_CONFIG_TOKEN, I18nLoader, I18nLoaderFactory, I18nParser, IconComponent, LOCALE_ROOT_TOKEN, LayoutComponent, ListComponent, ListComponentsTypes, ListItemComponent, ListItemPositions, ModalComponent, ModalConfirmComponent, ModelRendererComponent, NgxComponentDirective, NgxEventHandler, NgxFormDirective, NgxFormFieldDirective, NgxFormService, NgxMediaService, NgxModelPageDirective, NgxPageDirective, NgxParentComponentDirective, NgxRenderingEngine, NgxRouterService, NgxSvgDirective, PaginationComponent, RouteDirections, SearchbarComponent, SelectFieldInterfaces, SteppedFormComponent, TableComponent, WindowColorSchemes, cleanSpaces, dataMapper, decafPageTransition, filterString, formatDate, generateRandomValue, getDbAdapterFlavour, getFakerData, getInjectablesRegistry, getLocaleContext, getLocaleContextByKey, getLocaleFromClassName, getLocaleLanguage, getLogger, getMenuIcon, getModelAndRepository, getNgxInlineModal, getNgxModalComponent, getNgxModalCrudComponent, getNgxSelectOptionsModal, getOnWindow, getOnWindowDocument, getWindow, getWindowDocument, getWindowWidth, isDarkMode, isDevelopmentMode, isNotUndefined, isValidDate, itemMapper, presentModalConfirm, presentNgxInlineModal, presentNgxLightBoxModal, provideDecafDarkMode, provideDecafDbAdapter, provideDecafDynamicComponents, provideDecafI18nConfig, provideDecafI18nLoader, provideDecafPageTransition, removeFocusTrap, setOnWindow, stringToBoolean, windowEventEmitter };
|
|
10057
|
-
export type { ActionRole, AngularDynamicOutput, AngularFieldDefinition, AngularProvider, CheckboxOption, ComponentMetadata, CrudFieldOption, DecafComponentConstructor, 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, ILayoutModelContext, IListComponentRefreshEvent, IListEmptyOptions, IListItemCustomEvent, IMenuItem, IModelComponentSubmitEvent, IPaginationCustomEvent, IRenderedModel, IRepositoryModelProps, ISortObject, ITabItem, IWindowResizeEvent, InputOption, KeyValue, LayoutGridGap, ListItemPosition, PossibleInputTypes, PropsMapperFn, RadioOption, RawQuery, SelectOption, StringOrBoolean, WindowColorScheme };
|
|
10102
|
+
export { ActionRoles, AngularEngineKeys, BaseComponentProps, CPTKN, CardComponent, ComponentRendererComponent, ComponentsTagNames, CrudFieldComponent, CrudFormComponent, CssClasses, DB_ADAPTER_FLAVOUR_TOKEN, DB_ADAPTER_PROVIDER_TOKEN, DecafFakerRepository, DefaultFormReactiveOptions, DefaultListEmptyOptions, DefaultModalOptions, Dynamic, DynamicModule, EmptyStateComponent, FieldsetComponent, FileUploadComponent, FilterComponent, ForAngularCommonModule, ForAngularComponentsModule, I18N_CONFIG_TOKEN, I18nLoader, I18nLoaderFactory, I18nParser, IconComponent, LOCALE_ROOT_TOKEN, LayoutComponent, ListComponent, ListComponentsTypes, ListItemComponent, ListItemPositions, ModalComponent, ModalConfirmComponent, ModelRendererComponent, NgxComponentDirective, NgxEventHandler, NgxFormDirective, NgxFormFieldDirective, NgxFormService, NgxMediaService, NgxModelPageDirective, NgxPageDirective, NgxParentComponentDirective, NgxRenderingEngine, NgxRouterService, NgxSvgDirective, PaginationComponent, RouteDirections, SearchbarComponent, SelectFieldInterfaces, SteppedFormComponent, TableComponent, WindowColorSchemes, cleanSpaces, dataMapper, decafPageTransition, filterString, formatDate, generateRandomValue, getDbAdapterFlavour, getFakerData, getInjectablesRegistry, getLocaleContext, getLocaleContextByKey, getLocaleFromClassName, getLocaleLanguage, getLogger, getMenuIcon, getModelAndRepository, getNgxInlineModal, getNgxModalComponent, getNgxModalCrudComponent, getNgxSelectOptionsModal, getOnWindow, getOnWindowDocument, getWindow, getWindowDocument, getWindowWidth, isDarkMode, isDevelopmentMode, isNotUndefined, isValidDate, itemMapper, patternValidators, presentModalConfirm, presentNgxInlineModal, presentNgxLightBoxModal, provideDecafDarkMode, provideDecafDbAdapter, provideDecafDynamicComponents, provideDecafI18nConfig, provideDecafI18nLoader, provideDecafPageTransition, removeFocusTrap, setOnWindow, stringToBoolean, windowEventEmitter };
|
|
10103
|
+
export type { ActionRole, AngularDynamicOutput, AngularFieldDefinition, AngularProvider, CheckboxOption, ComparisonValidationKey, ComponentMetadata, CrudFieldOption, DecafComponentConstructor, 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, ILayoutModelContext, IListComponentRefreshEvent, IListEmptyOptions, IListItemCustomEvent, IMenuItem, IModelComponentSubmitEvent, IPaginationCustomEvent, IRenderedModel, IRepositoryModelProps, ISortObject, ITabItem, IWindowResizeEvent, InputOption, KeyValue, LayoutGridGap, ListItemPosition, PossibleInputTypes, PropsMapperFn, RadioOption, RawQuery, SelectOption, StringOrBoolean, WindowColorScheme };
|