@decaf-ts/for-angular 0.0.53 → 0.0.55
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/en.json +5 -0
- package/assets/i18n/ew/en.json +10 -2
- package/fesm2022/decaf-ts-for-angular.mjs +352 -260
- package/fesm2022/decaf-ts-for-angular.mjs.map +1 -1
- package/index.d.ts +76 -31
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ import * as _decaf_ts_decorator_validation from '@decaf-ts/decorator-validation'
|
|
|
10
10
|
import { Model, VALIDATION_PARENT_KEY, ModelConstructor } from '@decaf-ts/decorator-validation';
|
|
11
11
|
import { RepositoryFlags, Context, CrudOperations, OperationKeys, IRepository } from '@decaf-ts/db-decorators';
|
|
12
12
|
import * as _ionic_angular_standalone from '@ionic/angular/standalone';
|
|
13
|
-
import { ModalOptions, ItemReorderEventDetail, IonModal } from '@ionic/angular/standalone';
|
|
13
|
+
import { ModalOptions, SelectCustomEvent, ItemReorderEventDetail, IonModal } from '@ionic/angular/standalone';
|
|
14
14
|
import { Constructor } from '@decaf-ts/decoration';
|
|
15
15
|
import { Router } from '@angular/router';
|
|
16
16
|
import * as i1 from '@angular/common';
|
|
@@ -21,7 +21,7 @@ import { HttpClient } from '@angular/common/http';
|
|
|
21
21
|
import { Observable, Subscription } from 'rxjs';
|
|
22
22
|
import { SafeHtml, DomSanitizer, Title } from '@angular/platform-browser';
|
|
23
23
|
import { InjectablesRegistry } from '@decaf-ts/injectable-decorators';
|
|
24
|
-
import { Logger } from '@decaf-ts/logging';
|
|
24
|
+
import { LoggedClass, Logger } from '@decaf-ts/logging';
|
|
25
25
|
|
|
26
26
|
/**
|
|
27
27
|
* @module lib/engine/interfaces
|
|
@@ -305,7 +305,7 @@ interface IBaseCustomEvent {
|
|
|
305
305
|
data?: unknown;
|
|
306
306
|
target?: HTMLElement;
|
|
307
307
|
}
|
|
308
|
-
interface
|
|
308
|
+
interface IModelComponentSubmitEvent extends IBaseCustomEvent {
|
|
309
309
|
success: boolean;
|
|
310
310
|
message?: string;
|
|
311
311
|
}
|
|
@@ -762,6 +762,25 @@ declare const CssClasses: {
|
|
|
762
762
|
* @memberOf module:lib/engine/constants
|
|
763
763
|
*/
|
|
764
764
|
declare const DefaultFormReactiveOptions: ICrudFormOptions;
|
|
765
|
+
/**
|
|
766
|
+
* @description Mapping of select field interface types used in Ionic components.
|
|
767
|
+
* @summary Provides a set of supported select interface types for Ionic select fields,
|
|
768
|
+
* mapping human-readable keys to their corresponding `SelectInterface` string values.
|
|
769
|
+
* This allows for consistent usage and reference of select interface types throughout the application.
|
|
770
|
+
* @type {Record<string, SelectInterface>}
|
|
771
|
+
* @property {string} PopOver - Represents the 'popover' select interface.
|
|
772
|
+
* @property {string} Alert - Represents the 'alert' select interface.
|
|
773
|
+
* @property {string} ActionSheet - Represents the 'action-sheet' select interface.
|
|
774
|
+
* @property {string} modal - Represents the 'modal' select interface.
|
|
775
|
+
* @const SelectFieldInterfaces
|
|
776
|
+
* @memberOf module:lib/engine/constants
|
|
777
|
+
*/
|
|
778
|
+
declare const SelectFieldInterfaces: {
|
|
779
|
+
readonly POPOVER: "popover";
|
|
780
|
+
readonly ALERT: "alert";
|
|
781
|
+
readonly ACTION_SHEET: "action-sheet";
|
|
782
|
+
readonly MODAL: "modal";
|
|
783
|
+
};
|
|
765
784
|
|
|
766
785
|
/**
|
|
767
786
|
* @module module:lib/engine/types
|
|
@@ -2402,7 +2421,22 @@ declare abstract class NgxFormFieldDirective extends NgxComponentDirective imple
|
|
|
2402
2421
|
* @public
|
|
2403
2422
|
*/
|
|
2404
2423
|
setValue(value: unknown): void;
|
|
2405
|
-
|
|
2424
|
+
/**
|
|
2425
|
+
* @description Clears the current form control value as a response to a UI interact
|
|
2426
|
+
* @summary Set field value as undefined and prevents event propagation.
|
|
2427
|
+
* @param {Event} event - The value to set
|
|
2428
|
+
* @return {void}
|
|
2429
|
+
* @public
|
|
2430
|
+
*/
|
|
2431
|
+
handleClearValue(event: Event): void;
|
|
2432
|
+
/**
|
|
2433
|
+
* @description Handles IonSelect change events emitted from modal child components.
|
|
2434
|
+
* @summary Forces change detection when rendered inside a modal and synchronizes the select value with the directive state.
|
|
2435
|
+
* @param {SelectCustomEvent<SelectChangeEventDetail>} event - IonSelect change event containing the selected value.
|
|
2436
|
+
* @return {void}
|
|
2437
|
+
* @public
|
|
2438
|
+
*/
|
|
2439
|
+
handleModalChildChanges(event?: SelectCustomEvent): void;
|
|
2406
2440
|
/**
|
|
2407
2441
|
* @description Retrieves validation error messages for the field.
|
|
2408
2442
|
* @summary Checks the form control for validation errors and returns formatted error messages.
|
|
@@ -2960,17 +2994,6 @@ declare class CrudFieldComponent extends NgxFormFieldDirective implements OnInit
|
|
|
2960
2994
|
ngOnDestroy(): void;
|
|
2961
2995
|
toggleOptionSelection(val: string, event: CheckboxCustomEvent): void;
|
|
2962
2996
|
isOptionChecked(value: string): boolean;
|
|
2963
|
-
/**
|
|
2964
|
-
* @description Handles fieldset group update events from parent fieldsets.
|
|
2965
|
-
* @summary Processes events triggered when an existing group needs to be updated.
|
|
2966
|
-
* Updates the active form group index and refreshes the form group and form control
|
|
2967
|
-
* references to point to the group being edited.
|
|
2968
|
-
*
|
|
2969
|
-
* @param {CustomEvent} event - The fieldset update group event containing update details
|
|
2970
|
-
* @returns {void}
|
|
2971
|
-
* @memberOf CrudFieldComponent
|
|
2972
|
-
*/
|
|
2973
|
-
handleFieldsetUpdateGroupEvent(event: CustomEvent): void;
|
|
2974
2997
|
static ɵfac: i0.ɵɵFactoryDeclaration<CrudFieldComponent, never>;
|
|
2975
2998
|
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; }; "translatable": { "alias": "translatable"; "required": false; }; }, {}, never, never, true, never>;
|
|
2976
2999
|
}
|
|
@@ -3771,7 +3794,7 @@ declare class EmptyStateComponent extends CardComponent implements OnInit {
|
|
|
3771
3794
|
* - A Promise resolving to the navigation result if buttonLink is a URL
|
|
3772
3795
|
* @memberOf EmptyStateComponent
|
|
3773
3796
|
*/
|
|
3774
|
-
handleClick():
|
|
3797
|
+
handleClick(): Promise<void>;
|
|
3775
3798
|
/**
|
|
3776
3799
|
* @description Generates a localized and sanitized subtitle for search results.
|
|
3777
3800
|
* @summary This method takes a content string, typically the subtitle, and processes it
|
|
@@ -4109,7 +4132,7 @@ declare class FieldsetComponent extends NgxFormDirective implements OnInit, Afte
|
|
|
4109
4132
|
* @memberOf FieldsetComponent
|
|
4110
4133
|
*/
|
|
4111
4134
|
ngAfterViewInit(): Promise<void>;
|
|
4112
|
-
refresh(): Promise<void>;
|
|
4135
|
+
refresh(operation: CrudOperationKeys): Promise<void>;
|
|
4113
4136
|
/**
|
|
4114
4137
|
* @description Handles removal of the fieldset with slide animation.
|
|
4115
4138
|
* @summary Initiates the removal process for the fieldset with a smooth slide-up animation.
|
|
@@ -5167,7 +5190,7 @@ declare class ListComponent extends NgxComponentDirective implements OnInit, OnD
|
|
|
5167
5190
|
* @type {string | KeyValue | undefined}
|
|
5168
5191
|
* @memberOf ListComponent
|
|
5169
5192
|
*/
|
|
5170
|
-
|
|
5193
|
+
sortBy: string;
|
|
5171
5194
|
/**
|
|
5172
5195
|
* @description Sorting parameters for data fetching.
|
|
5173
5196
|
* @summary Specifies how the fetched data should be sorted. This can be provided
|
|
@@ -5176,7 +5199,7 @@ declare class ListComponent extends NgxComponentDirective implements OnInit, OnD
|
|
|
5176
5199
|
* @type {string | KeyValue | undefined}
|
|
5177
5200
|
* @memberOf ListComponent
|
|
5178
5201
|
*/
|
|
5179
|
-
|
|
5202
|
+
sortDirection: OrderDirection;
|
|
5180
5203
|
/**
|
|
5181
5204
|
* @description Controls whether sorting functionality is disabled.
|
|
5182
5205
|
* @summary When set to true, disables the sort controls and prevents users from
|
|
@@ -5727,7 +5750,7 @@ declare class ListComponent extends NgxComponentDirective implements OnInit, OnD
|
|
|
5727
5750
|
mapResults(data: KeyValue[]): KeyValue[];
|
|
5728
5751
|
parseSearchValue(): string | IFilterQuery;
|
|
5729
5752
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListComponent, never>;
|
|
5730
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "ngx-decaf-list", never, { "type": { "alias": "type"; "required": false; }; "showSearchbar": { "alias": "showSearchbar"; "required": false; }; "data": { "alias": "data"; "required": false; }; "source": { "alias": "source"; "required": false; }; "start": { "alias": "start"; "required": false; }; "limit": { "alias": "limit"; "required": false; }; "loadMoreData": { "alias": "loadMoreData"; "required": false; }; "lines": { "alias": "lines"; "required": false; }; "inset": { "alias": "inset"; "required": false; }; "scrollThreshold": { "alias": "scrollThreshold"; "required": false; }; "scrollPosition": { "alias": "scrollPosition"; "required": false; }; "loadingText": { "alias": "loadingText"; "required": false; }; "showRefresher": { "alias": "showRefresher"; "required": false; }; "createButton": { "alias": "createButton"; "required": false; }; "loadingSpinner": { "alias": "loadingSpinner"; "required": false; }; "enableFilter": { "alias": "enableFilter"; "required": false; }; "
|
|
5753
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "ngx-decaf-list", never, { "type": { "alias": "type"; "required": false; }; "showSearchbar": { "alias": "showSearchbar"; "required": false; }; "data": { "alias": "data"; "required": false; }; "source": { "alias": "source"; "required": false; }; "start": { "alias": "start"; "required": false; }; "limit": { "alias": "limit"; "required": false; }; "loadMoreData": { "alias": "loadMoreData"; "required": false; }; "lines": { "alias": "lines"; "required": false; }; "inset": { "alias": "inset"; "required": false; }; "scrollThreshold": { "alias": "scrollThreshold"; "required": false; }; "scrollPosition": { "alias": "scrollPosition"; "required": false; }; "loadingText": { "alias": "loadingText"; "required": false; }; "showRefresher": { "alias": "showRefresher"; "required": false; }; "createButton": { "alias": "createButton"; "required": false; }; "loadingSpinner": { "alias": "loadingSpinner"; "required": false; }; "enableFilter": { "alias": "enableFilter"; "required": false; }; "sortBy": { "alias": "sortBy"; "required": false; }; "sortDirection": { "alias": "sortDirection"; "required": false; }; "disableSort": { "alias": "disableSort"; "required": false; }; "empty": { "alias": "empty"; "required": false; }; }, { "clickEvent": "clickEvent"; }, never, ["*"], true, never>;
|
|
5731
5754
|
}
|
|
5732
5755
|
|
|
5733
5756
|
/**
|
|
@@ -6607,7 +6630,7 @@ declare class SearchbarComponent extends NgxComponentDirective implements OnInit
|
|
|
6607
6630
|
* @default "search"
|
|
6608
6631
|
* @memberOf SearchbarComponent
|
|
6609
6632
|
*/
|
|
6610
|
-
type:
|
|
6633
|
+
type: 'number' | "text" | "search" | "email" | "password" | "tel" | "url" | undefined;
|
|
6611
6634
|
/**
|
|
6612
6635
|
* @description The value of the searchbar input.
|
|
6613
6636
|
* @summary Specifies the current value of the searchbar input.
|
|
@@ -7234,6 +7257,16 @@ declare class ModalComponent extends NgxParentComponentDirective implements OnIn
|
|
|
7234
7257
|
* @returns {Promise<IonModal>} - A promise that resolves with the modal instance.
|
|
7235
7258
|
*/
|
|
7236
7259
|
declare function getNgxModalComponent(props?: Partial<ModalComponent>, modalProps?: Partial<ModalOptions>, injector?: EnvironmentInjector): Promise<IonModal>;
|
|
7260
|
+
/**
|
|
7261
|
+
* @description Retrieves a modal component instance.
|
|
7262
|
+
* @summary Creates and initializes a modal component with the provided properties and options.
|
|
7263
|
+
*
|
|
7264
|
+
* @param {Partial<ModalComponent>} [props={}] - Properties to initialize the modal component.
|
|
7265
|
+
* @param {Partial<ModalOptions>} [modalProps={}] - Additional modal options.
|
|
7266
|
+
* @param {EnvironmentInjector} [injector] - Optional environment injector for dependency injection.
|
|
7267
|
+
* @returns {Promise<IonModal>} - A promise that resolves with the modal instance.
|
|
7268
|
+
*/
|
|
7269
|
+
declare function getNgxModalCrudComponent(model: Partial<Model>, props?: Partial<ModalComponent>, modalProps?: Partial<ModalOptions>, injector?: EnvironmentInjector): Promise<IonModal>;
|
|
7237
7270
|
/**
|
|
7238
7271
|
* @description Presents a lightbox modal with inline content.
|
|
7239
7272
|
* @summary Displays a modal in lightbox mode with the specified content and properties.
|
|
@@ -7272,7 +7305,7 @@ declare function getNgxInlineModal(inlineContent: string | SafeHtml, props?: Par
|
|
|
7272
7305
|
* @param {EnvironmentInjector} [injector] - Optional environment injector for dependency injection.
|
|
7273
7306
|
* @returns {Promise<IonModal>} - A promise that resolves with the modal instance.
|
|
7274
7307
|
*/
|
|
7275
|
-
declare function getNgxSelectOptionsModal(options: SelectOption[], injector?: EnvironmentInjector): Promise<IonModal>;
|
|
7308
|
+
declare function getNgxSelectOptionsModal(title: string, options: SelectOption[], injector?: EnvironmentInjector): Promise<IonModal>;
|
|
7276
7309
|
|
|
7277
7310
|
declare class IconComponent implements OnInit {
|
|
7278
7311
|
/** @description Reference to the component's native DOM element.
|
|
@@ -7292,7 +7325,7 @@ declare class IconComponent implements OnInit {
|
|
|
7292
7325
|
buttonShape: 'round' | 'default';
|
|
7293
7326
|
width: string;
|
|
7294
7327
|
size?: 'large' | 'small' | 'default';
|
|
7295
|
-
type: 'image' | 'ionic';
|
|
7328
|
+
type: 'image' | 'ionic' | 'icon';
|
|
7296
7329
|
isSvg: boolean;
|
|
7297
7330
|
initialized: boolean;
|
|
7298
7331
|
inline: boolean;
|
|
@@ -8583,9 +8616,10 @@ declare class NgxFormService {
|
|
|
8583
8616
|
*/
|
|
8584
8617
|
|
|
8585
8618
|
declare abstract class NgxEventHandler extends DecafEventHandler {
|
|
8619
|
+
changeDetectorRef: ChangeDetectorRef;
|
|
8586
8620
|
constructor();
|
|
8587
|
-
refresh(args
|
|
8588
|
-
preview(args
|
|
8621
|
+
refresh(...args: unknown[]): Promise<void>;
|
|
8622
|
+
preview(...args: unknown[]): Promise<void>;
|
|
8589
8623
|
}
|
|
8590
8624
|
|
|
8591
8625
|
/**
|
|
@@ -8854,9 +8888,9 @@ declare abstract class NgxModelPageDirective extends NgxPageDirective {
|
|
|
8854
8888
|
* operation with detailed logging.
|
|
8855
8889
|
*
|
|
8856
8890
|
* @param {IBaseCustomEvent} event - The submit event containing form data
|
|
8857
|
-
* @return {Promise<
|
|
8891
|
+
* @return {Promise<IModelComponentSubmitEvent|void>} Promise that resolves on success or throws on error
|
|
8858
8892
|
*/
|
|
8859
|
-
submit(event: IBaseCustomEvent, repository?: DecafRepository<Model
|
|
8893
|
+
submit(event: IBaseCustomEvent, redirect?: boolean, repository?: DecafRepository<Model>): Promise<IModelComponentSubmitEvent>;
|
|
8860
8894
|
/**
|
|
8861
8895
|
* @description Retrieves a model instance from the repository by unique identifier.
|
|
8862
8896
|
* @summary Fetches a specific model instance using the repository's read method.
|
|
@@ -9245,12 +9279,23 @@ declare function isDarkMode(): Promise<boolean>;
|
|
|
9245
9279
|
* @memberOf module:lib/helpers/utils
|
|
9246
9280
|
*/
|
|
9247
9281
|
declare function filterString(original: string | string[], value: string, contain?: boolean): string;
|
|
9282
|
+
/**
|
|
9283
|
+
* @summary Retrieves the icon associated with a menu item based on its label.
|
|
9284
|
+
*
|
|
9285
|
+
* @param {string} label - The label of the menu item to search for. The search is case-insensitive.
|
|
9286
|
+
* @param {IMenuItem[]} menu - An array of menu items to search within.
|
|
9287
|
+
* @returns {string} The icon associated with the menu item if found, otherwise an empty string.
|
|
9288
|
+
*/
|
|
9289
|
+
declare function getMenuIcon(label: string, menu: IMenuItem[]): string;
|
|
9248
9290
|
|
|
9249
|
-
declare class DecafFakerRepository<T extends Model> {
|
|
9291
|
+
declare class DecafFakerRepository<T extends Model> extends LoggedClass {
|
|
9250
9292
|
protected model: string | Model;
|
|
9251
9293
|
protected limit: number;
|
|
9294
|
+
protected propFnMapper?: KeyValue;
|
|
9252
9295
|
protected data: T[];
|
|
9253
9296
|
protected _repository: DecafRepository<Model> | undefined;
|
|
9297
|
+
protected pk: string | undefined;
|
|
9298
|
+
protected pkType?: string;
|
|
9254
9299
|
constructor(model: string | Model, limit?: number);
|
|
9255
9300
|
protected get repository(): DecafRepository<Model>;
|
|
9256
9301
|
initialize(): Promise<void>;
|
|
@@ -9340,7 +9385,7 @@ declare function provideDecafDynamicComponents(...components: unknown[]): Constr
|
|
|
9340
9385
|
* // Use repository for queries
|
|
9341
9386
|
* const users = await userRepo.findAll();
|
|
9342
9387
|
*/
|
|
9343
|
-
declare function getModelAndRepository(model: Model | string): {
|
|
9388
|
+
declare function getModelAndRepository(model: Model | string, clazz?: NgxComponentDirective): {
|
|
9344
9389
|
repository: DecafRepository<Model>;
|
|
9345
9390
|
model: Model;
|
|
9346
9391
|
pk: string;
|
|
@@ -9552,5 +9597,5 @@ declare class I18nParser extends TranslateParser {
|
|
|
9552
9597
|
*/
|
|
9553
9598
|
declare function provideDecafI18nConfig(config?: RootTranslateServiceConfig, resources?: I18nResourceConfigType, versionedSuffix?: boolean): AngularProvider[];
|
|
9554
9599
|
|
|
9555
|
-
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, decafPageTransition, filterString, formatDate, generateRandomValue, getFakerData, getInjectablesRegistry, getLocaleContext, getLocaleContextByKey, getLocaleFromClassName, getLocaleLanguage, getLogger, getModelAndRepository, getNgxInlineModal, getNgxModalComponent, getNgxSelectOptionsModal, getOnWindow, getOnWindowDocument, getWindow, getWindowDocument, getWindowWidth, isDarkMode, isDevelopmentMode, isNotUndefined, isValidDate, itemMapper, parseToValidDate, presentNgxInlineModal, presentNgxLightBoxModal, provideDecafDbAdapter, provideDecafDynamicComponents, provideDecafI18nConfig, provideDecafI18nLoader, provideDecafPageTransition, removeFocusTrap, setOnWindow, stringToBoolean, windowEventEmitter };
|
|
9556
|
-
export type { ActionRole, AngularDynamicOutput, AngularFieldDefinition, AngularProvider, 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,
|
|
9600
|
+
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, SelectFieldInterfaces, SteppedFormComponent, WindowColorSchemes, cleanSpaces, dataMapper, decafPageTransition, filterString, formatDate, generateRandomValue, getFakerData, getInjectablesRegistry, getLocaleContext, getLocaleContextByKey, getLocaleFromClassName, getLocaleLanguage, getLogger, getMenuIcon, getModelAndRepository, getNgxInlineModal, getNgxModalComponent, getNgxModalCrudComponent, getNgxSelectOptionsModal, getOnWindow, getOnWindowDocument, getWindow, getWindowDocument, getWindowWidth, isDarkMode, isDevelopmentMode, isNotUndefined, isValidDate, itemMapper, parseToValidDate, presentNgxInlineModal, presentNgxLightBoxModal, provideDecafDbAdapter, provideDecafDynamicComponents, provideDecafI18nConfig, provideDecafI18nLoader, provideDecafPageTransition, removeFocusTrap, setOnWindow, stringToBoolean, windowEventEmitter };
|
|
9601
|
+
export type { ActionRole, AngularDynamicOutput, AngularFieldDefinition, AngularProvider, 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, IModelComponentSubmitEvent, IPaginationCustomEvent, IRenderedModel, ISortObject, IWindowResizeEvent, InputOption, KeyValue, LayoutGridGap, ListItemCustomEvent, ListItemPosition, PossibleInputTypes, RadioOption, RawQuery, SelectOption, StringOrBoolean, WindowColorScheme };
|