@decaf-ts/for-angular 0.0.85 → 0.0.87

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
@@ -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 * as _decaf_ts_decorator_validation from '@decaf-ts/decorator-validation';
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>, prop: keyof M): string;
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,17 @@ 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
+ use(lang: string): void;
1208
+ setFallbackLang(lang: string): Observable<InterpolatableTranslationObject>;
1209
+ static ɵfac: i0.ɵɵFactoryDeclaration<NgxTranslateService, never>;
1210
+ static ɵprov: i0.ɵɵInjectableDeclaration<NgxTranslateService>;
1211
+ }
1212
+
1193
1213
  /**
1194
1214
  * @module lib/engine/NgxComponentDirective
1195
1215
  * @description Base decaf component abstraction providing shared inputs and utilities.
@@ -1447,10 +1467,10 @@ declare abstract class NgxComponentDirective extends NgxRepositoryDirective<Mode
1447
1467
  * Used to translate button labels, validation messages, and other text content based
1448
1468
  * on the current locale setting, enabling multilingual support throughout the application.
1449
1469
  * @protected
1450
- * @type {TranslateService}
1470
+ * @type {NgxTranslateService}
1451
1471
  * @memberOf module:lib/engine/NgxComponentDirective
1452
1472
  */
1453
- protected translateService: TranslateService;
1473
+ translateService: NgxTranslateService;
1454
1474
  /**
1455
1475
  * @description Event emitter for custom component events.
1456
1476
  * @summary Emits custom events that occur within child components or the component itself.
@@ -1789,7 +1809,6 @@ declare abstract class NgxComponentDirective extends NgxRepositoryDirective<Mode
1789
1809
  * @memberOf module:lib/engine/NgxComponentDirective
1790
1810
  */
1791
1811
  handleEvent(event: IBaseCustomEvent & ICrudFormEvent & CustomEvent): Promise<void>;
1792
- submit(...args: unknown[]): Promise<any>;
1793
1812
  /**
1794
1813
  * @description Determines if a specific operation is allowed in the current context.
1795
1814
  * @summary This method checks if an operation is included in the list of available
@@ -1855,6 +1874,11 @@ declare abstract class NgxComponentDirective extends NgxRepositoryDirective<Mode
1855
1874
  * @link {@link KeyValue}
1856
1875
  */
1857
1876
 
1877
+ /**
1878
+ * Represents a validation key used for comparison-based validations.
1879
+ * Extracted from the ComparisonValidationKeys object to ensure type safety.
1880
+ */
1881
+ type ComparisonValidationKey = (typeof ComparisonValidationKeys)[keyof typeof ComparisonValidationKeys];
1858
1882
  interface RawQuery<M extends Model> {
1859
1883
  select: undefined | (keyof M)[];
1860
1884
  from: Constructor<M>;
@@ -2548,6 +2572,14 @@ declare class ComponentRendererComponent extends NgxRenderableComponentDirective
2548
2572
  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
2573
  }
2550
2574
 
2575
+ /**
2576
+ * @module lib/engine/NgxFormFieldDirective
2577
+ * @description Base directive for CRUD form fields in Decaf Angular applications.
2578
+ * @summary Provides the NgxFormFieldDirective abstract class that implements ControlValueAccessor
2579
+ * and FieldProperties to enable form field integration with Angular's reactive forms system.
2580
+ * This directive handles form control lifecycle, validation, multi-entry forms, and CRUD operations.
2581
+ */
2582
+
2551
2583
  /**
2552
2584
  * @description Abstract base directive for CRUD form fields in Angular applications.
2553
2585
  * @summary Provides the foundation for all form field components in Decaf applications by implementing
@@ -2743,6 +2775,21 @@ declare abstract class NgxFormFieldDirective extends NgxComponentDirective imple
2743
2775
  * @public
2744
2776
  */
2745
2777
  multiple: boolean;
2778
+ /**
2779
+ * @description Custom type definitions for field validation.
2780
+ * @summary Allows specifying custom types beyond HTML5 input types to support specialized validation logic.
2781
+ * Can be a single type string or an array of type strings for multi-type validation scenarios.
2782
+ * @type {string | string[] | undefined}
2783
+ * @public
2784
+ */
2785
+ customTypes?: string | string[] | undefined;
2786
+ /**
2787
+ * @description Whether the field is currently checked.
2788
+ * @summary Used for checkbox and radio button fields to track the checked state independently from the value.
2789
+ * @type {boolean}
2790
+ * @default false
2791
+ * @public
2792
+ */
2746
2793
  checked: boolean;
2747
2794
  /**
2748
2795
  * @description Flag tracking if validation error event has been dispatched.
@@ -2795,9 +2842,6 @@ declare abstract class NgxFormFieldDirective extends NgxComponentDirective imple
2795
2842
  WEEK: string;
2796
2843
  };
2797
2844
  constructor(componentName?: string);
2798
- maxLength?: number | undefined;
2799
- minLength?: number | undefined;
2800
- customTypes?: string | string[] | undefined;
2801
2845
  /**
2802
2846
  * @description Gets the currently active form group based on context.
2803
2847
  * @summary Returns the appropriate FormGroup based on whether this field supports
@@ -2815,7 +2859,7 @@ declare abstract class NgxFormFieldDirective extends NgxComponentDirective imple
2815
2859
  * @type {function(string, ...string): string}
2816
2860
  * @public
2817
2861
  */
2818
- sf: typeof _decaf_ts_decorator_validation.stringFormat;
2862
+ sf: typeof sf;
2819
2863
  /**
2820
2864
  * @description Callback function invoked when the field value changes.
2821
2865
  * @summary Function registered by Angular's forms system through registerOnChange.
@@ -2923,7 +2967,9 @@ declare abstract class NgxFormFieldDirective extends NgxComponentDirective imple
2923
2967
  * @return {void}
2924
2968
  * @public
2925
2969
  */
2926
- handleModalChildChanges(event?: SelectCustomEvent): void;
2970
+ handleModalChildChanges(event?: SelectCustomEvent, formControl?: AbstractControl): void;
2971
+ private validateControl;
2972
+ private getErrorMessage;
2927
2973
  /**
2928
2974
  * @description Retrieves validation error messages for the field.
2929
2975
  * @summary Checks the form control for validation errors and returns formatted error messages.
@@ -3050,6 +3096,8 @@ declare class CrudFieldComponent extends NgxFormFieldDirective implements OnInit
3050
3096
  * @memberOf CrudFieldComponent
3051
3097
  */
3052
3098
  type: PossibleInputTypes;
3099
+ subType: PossibleInputTypes;
3100
+ validationMessage?: string | string[];
3053
3101
  /**
3054
3102
  * @description The initial value of the field.
3055
3103
  * @summary Sets the initial value of the form field. This can be a string, number, or Date
@@ -3343,7 +3391,6 @@ declare class CrudFieldComponent extends NgxFormFieldDirective implements OnInit
3343
3391
  * @summary Determines the fill style of the field, such as 'outline' or 'solid'.
3344
3392
  * This affects the border and background of the field.
3345
3393
  *
3346
- * @type {'outline' | 'solid'}
3347
3394
  * @default 'outline'
3348
3395
  * @memberOf CrudFieldComponent
3349
3396
  */
@@ -3472,7 +3519,7 @@ declare class CrudFieldComponent extends NgxFormFieldDirective implements OnInit
3472
3519
  toggleOptionSelection(val: string, event: CheckboxCustomEvent): void;
3473
3520
  isOptionChecked(value: string): boolean;
3474
3521
  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>;
3522
+ 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
3523
  }
3477
3524
 
3478
3525
  /**
@@ -10053,5 +10100,5 @@ declare class ForAngularCommonModule {
10053
10100
  static ɵinj: i0.ɵɵInjectorDeclaration<ForAngularCommonModule>;
10054
10101
  }
10055
10102
 
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 };
10103
+ 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 };
10104
+ 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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@decaf-ts/for-angular",
3
- "version": "0.0.85",
3
+ "version": "0.0.87",
4
4
  "author": "Tiago Venceslau and Contributors",
5
5
  "license": "MPL-2.0 OR AGPL-3.0",
6
6
  "repository": {