@decaf-ts/for-angular 0.0.65 → 0.0.67

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
@@ -20,6 +20,7 @@ import { TranslateService, TranslateLoader, TranslationObject, TranslateParser,
20
20
  import { Observable, Subject, Subscription } from 'rxjs';
21
21
  import { HttpClient } from '@angular/common/http';
22
22
  import { SafeHtml, DomSanitizer, Title } from '@angular/platform-browser';
23
+ import { NavigationOptions } from '@ionic/angular/common/providers/nav-controller';
23
24
  import { InjectablesRegistry } from '@decaf-ts/injectable-decorators';
24
25
  import { LoggedClass, Logger } from '@decaf-ts/logging';
25
26
 
@@ -784,6 +785,13 @@ interface IFileUploadError {
784
785
  size?: number;
785
786
  error: string;
786
787
  }
788
+ interface ITabItem {
789
+ title?: string;
790
+ description?: string;
791
+ url?: string;
792
+ value?: string;
793
+ icon?: string;
794
+ }
787
795
 
788
796
  /**
789
797
  * @module module:lib/engine/types
@@ -1604,6 +1612,7 @@ declare abstract class NgxComponentDirective extends DecafComponent implements O
1604
1612
  isModalChild: boolean;
1605
1613
  protected handlers: Record<string, UIFunctionLike>;
1606
1614
  protected events: Record<string, UIFunctionLike>;
1615
+ valueParserFn: UIFunctionLike;
1607
1616
  /**
1608
1617
  * @description Indicates whether a refresh operation is in progress.
1609
1618
  * @summary When true, the component is currently fetching new data. This is used
@@ -1903,7 +1912,7 @@ declare abstract class NgxComponentDirective extends DecafComponent implements O
1903
1912
  */
1904
1913
  changeOperation(operation: string, id?: string): Promise<boolean>;
1905
1914
  static ɵfac: i0.ɵɵFactoryDeclaration<NgxComponentDirective, never>;
1906
- 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; }; "condition": { "alias": "condition"; "required": false; }; "formGroup": { "alias": "formGroup"; "required": false; }; "value": { "alias": "value"; "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"; "refreshEvent": "refreshEvent"; }, never, never, true, never>;
1915
+ 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; }; "condition": { "alias": "condition"; "required": false; }; "formGroup": { "alias": "formGroup"; "required": false; }; "value": { "alias": "value"; "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; }; "valueParserFn": { "alias": "valueParserFn"; "required": false; }; }, { "listenEvent": "listenEvent"; "refreshEvent": "refreshEvent"; }, never, never, true, never>;
1907
1916
  }
1908
1917
 
1909
1918
  declare class NgxRenderableComponentDirective extends NgxComponentDirective implements OnChanges, OnDestroy, IRenderedModel {
@@ -5685,11 +5694,11 @@ declare class ListComponent extends NgxComponentDirective implements OnInit, OnD
5685
5694
  * when a user interacts with the pagination controls to navigate between pages.
5686
5695
  *
5687
5696
  * @param {IPaginationCustomEvent} event - The pagination event containing page information
5688
- * @returns {void}
5697
+ * @returns {Promise<void>}
5689
5698
  *
5690
5699
  * @memberOf ListComponent
5691
5700
  */
5692
- handlePaginate(event: IPaginationCustomEvent): void;
5701
+ handlePaginate(event: IPaginationCustomEvent | number): Promise<void>;
5693
5702
  /**
5694
5703
  * @description Handles pull-to-refresh events from the refresher component.
5695
5704
  * @summary Processes refresh events triggered by the user pulling down on the list
@@ -7796,9 +7805,337 @@ declare class FileUploadComponent extends NgxFormFieldDirective implements OnIni
7796
7805
  static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "ngx-decaf-file-upload", never, { "formGroup": { "alias": "formGroup"; "required": false; }; "name": { "alias": "name"; "required": false; }; "formControl": { "alias": "formControl"; "required": false; }; "required": { "alias": "required"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "type": { "alias": "type"; "required": false; }; "label": { "alias": "label"; "required": false; }; "buttonLabel": { "alias": "buttonLabel"; "required": false; }; "size": { "alias": "size"; "required": false; }; "position": { "alias": "position"; "required": false; }; "accept": { "alias": "accept"; "required": false; }; "showIcon": { "alias": "showIcon"; "required": false; }; "enableDirectoryMode": { "alias": "enableDirectoryMode"; "required": false; }; "previewHandler": { "alias": "previewHandler"; "required": false; }; "maxFileSize": { "alias": "maxFileSize"; "required": false; }; }, { "changeEvent": "changeEvent"; }, never, never, true, never>;
7797
7806
  }
7798
7807
 
7808
+ /**
7809
+ * @description Service for handling routing operations in the application.
7810
+ * @summary The RouterService provides a unified interface for navigation and route management,
7811
+ * abstracting the underlying Angular Router and Ionic NavController functionality. It offers
7812
+ * methods for navigating between routes, retrieving URL information, and managing query parameters.
7813
+ * This service is designed to simplify navigation patterns and provide consistent behavior
7814
+ * across the application.
7815
+ *
7816
+ * @class RouterService
7817
+ * @injectable
7818
+ */
7819
+ declare class NgxRouterService {
7820
+ /**
7821
+ * @description Stores the previous URL for back navigation.
7822
+ * @summary Caches the previous URL from the router navigation events.
7823
+ * This is used as a reference point for back navigation and for determining
7824
+ * the navigation history of the application.
7825
+ *
7826
+ * @private
7827
+ * @type {string}
7828
+ * @memberOf RouterService
7829
+ */
7830
+ private previousUrl;
7831
+ /**
7832
+ * @description Angular Router service.
7833
+ * @summary Injected Angular Router service that provides core navigation capabilities,
7834
+ * URL manipulation, and navigation event handling. This service is used for most
7835
+ * routing operations and for accessing information about the current route.
7836
+ *
7837
+ * @private
7838
+ * @type {Router}
7839
+ * @memberOf RouterService
7840
+ */
7841
+ private router;
7842
+ /**
7843
+ * @description Angular ActivatedRoute service.
7844
+ * @summary Injected service that provides access to information about a route
7845
+ * associated with a component loaded in an outlet. This service is used to
7846
+ * access route parameters, query parameters, and other route-specific data.
7847
+ *
7848
+ * @private
7849
+ * @type {ActivatedRoute}
7850
+ * @memberOf RouterService
7851
+ */
7852
+ private route;
7853
+ /**
7854
+ * @description Ionic NavController service.
7855
+ * @summary Injected Ionic service that provides methods for navigating between pages
7856
+ * with animated transitions. This service extends Angular's routing capabilities
7857
+ * with mobile-friendly navigation patterns and animations.
7858
+ *
7859
+ * @private
7860
+ * @type {NavController}
7861
+ * @memberOf RouterService
7862
+ */
7863
+ private navController;
7864
+ /**
7865
+ * @description Angular Location service.
7866
+ * @summary Injected service that provides access to the browser's URL and history.
7867
+ * This service is used for interacting with the browser's history API, allowing
7868
+ * for back navigation and URL manipulation outside of Angular's router.
7869
+ *
7870
+ * @private
7871
+ * @type {Location}
7872
+ * @memberOf RouterService
7873
+ */
7874
+ private location;
7875
+ /**
7876
+ * @description Creates an instance of RouterService.
7877
+ * @summary Initializes a new RouterService. The commented line suggests that in a previous
7878
+ * version, this service was registered with an injectable registry system, which may have
7879
+ * been used for dependency tracking or service discovery.
7880
+ *
7881
+ * @memberOf RouterService
7882
+ */
7883
+ /**
7884
+ * @description Parses query parameters from the current route.
7885
+ * @summary Extracts specified query parameters from the current route and returns them
7886
+ * as an array of key-value pairs. This method supports both single parameter and
7887
+ * multiple parameter extraction, making it flexible for various use cases.
7888
+ *
7889
+ * @param {string | string[]} params - The parameter name(s) to extract from the route
7890
+ * @return {KeyValue[]} An array of key-value objects representing the extracted parameters
7891
+ *
7892
+ * @mermaid
7893
+ * sequenceDiagram
7894
+ * participant C as Component
7895
+ * participant R as RouterService
7896
+ * participant A as ActivatedRoute
7897
+ *
7898
+ * C->>R: parseAllQueryParams(params)
7899
+ * alt params is string
7900
+ * R->>R: Convert params to array
7901
+ * end
7902
+ * R->>R: Initialize empty result array
7903
+ * loop For each param in params
7904
+ * R->>A: Get param value from queryParamMap
7905
+ * A-->>R: Return param value or null
7906
+ * R->>R: Create key-value object
7907
+ * R->>R: Add to result array
7908
+ * end
7909
+ * R-->>C: Return array of key-value pairs
7910
+ *
7911
+ * @memberOf RouterService
7912
+ */
7913
+ parseAllQueryParams(params: string | string[]): KeyValue[];
7914
+ /**
7915
+ * @description Checks if a query parameter exists in the current route.
7916
+ * @summary Determines whether a specific query parameter is present in the current route's
7917
+ * query parameters. This is useful for conditional logic based on the presence of
7918
+ * certain parameters in the URL.
7919
+ *
7920
+ * @param {string} param - The name of the query parameter to check
7921
+ * @return {boolean} True if the parameter exists, false otherwise
7922
+ *
7923
+ * @mermaid
7924
+ * sequenceDiagram
7925
+ * participant C as Component
7926
+ * participant R as RouterService
7927
+ * participant A as ActivatedRoute
7928
+ *
7929
+ * C->>R: hasQueryParam(param)
7930
+ * R->>A: Access snapshot.queryParams
7931
+ * R->>R: Check if param exists in queryParams
7932
+ * R-->>C: Return boolean result
7933
+ *
7934
+ * @memberOf RouterService
7935
+ */
7936
+ hasQueryParam(param: string): boolean;
7937
+ /**
7938
+ * @description Retrieves a specific query parameter from the current route.
7939
+ * @summary Extracts a single query parameter from the current route and returns it
7940
+ * as a key-value pair. This method leverages parseAllQueryParams internally and
7941
+ * returns the first result or undefined if the parameter doesn't exist.
7942
+ *
7943
+ * @param {string} param - The name of the query parameter to retrieve
7944
+ * @return {KeyValue | undefined} A key-value object representing the parameter, or undefined if not found
7945
+ *
7946
+ * @mermaid
7947
+ * sequenceDiagram
7948
+ * participant C as Component
7949
+ * participant R as RouterService
7950
+ *
7951
+ * C->>R: getQueryParam(param)
7952
+ * R->>R: parseAllQueryParams(param)
7953
+ * R->>R: Extract first result or undefined
7954
+ * R-->>C: Return key-value object or undefined
7955
+ *
7956
+ * @memberOf RouterService
7957
+ */
7958
+ getQueryParam(param: string): KeyValue | undefined;
7959
+ /**
7960
+ * @description Retrieves the value of a specific query parameter.
7961
+ * @summary Extracts the value of a single query parameter from the current route.
7962
+ * This is a convenience method that handles the extraction and returns just the
7963
+ * value rather than a key-value pair.
7964
+ *
7965
+ * @param {string} param - The name of the query parameter to retrieve
7966
+ * @return {string | undefined} The value of the parameter, or undefined if not found
7967
+ *
7968
+ * @mermaid
7969
+ * sequenceDiagram
7970
+ * participant C as Component
7971
+ * participant R as RouterService
7972
+ *
7973
+ * C->>R: getQueryParamValue(param)
7974
+ * R->>R: parseAllQueryParams(param)
7975
+ * R->>R: Extract value from first result or undefined
7976
+ * R-->>C: Return string value or undefined
7977
+ *
7978
+ * @memberOf RouterService
7979
+ */
7980
+ getQueryParamValue(param: string): string | undefined;
7981
+ /**
7982
+ * @description Retrieves the last segment of the current URL.
7983
+ * @summary Extracts the final path segment from the current URL, which often
7984
+ * represents the current page or resource identifier. This method first attempts
7985
+ * to use the Angular Router's URL, and falls back to the window location if needed.
7986
+ *
7987
+ * @return {string} The last segment of the current URL path
7988
+ *
7989
+ * @mermaid
7990
+ * sequenceDiagram
7991
+ * participant C as Component
7992
+ * participant R as RouterService
7993
+ * participant W as Window
7994
+ *
7995
+ * C->>R: getLastUrlSegment()
7996
+ * alt Router URL available
7997
+ * R->>R: Split router.url by &#39;/&#39;
7998
+ * else Router URL not available
7999
+ * R->>W: Get window.location.href
8000
+ * R->>R: Split href by &#39;/&#39;
8001
+ * end
8002
+ * R->>R: Extract last segment
8003
+ * R-->>C: Return last segment
8004
+ *
8005
+ * @memberOf RouterService
8006
+ */
8007
+ getLastUrlSegment(): string;
8008
+ /**
8009
+ * @description Retrieves the current URL of the application.
8010
+ * @summary Extracts the current URL path from either the Angular Router or the browser's
8011
+ * window location, depending on availability. It also cleans the URL by removing the
8012
+ * leading forward slash for consistency.
8013
+ *
8014
+ * @return {string} The current URL of the application without the leading slash
8015
+ *
8016
+ * @mermaid
8017
+ * sequenceDiagram
8018
+ * participant C as Component
8019
+ * participant R as RouterService
8020
+ * participant W as Window
8021
+ *
8022
+ * C->>R: getCurrentUrl()
8023
+ * R->>R: Get router.url
8024
+ * R->>W: Get window.location.pathname
8025
+ * alt router.url is &#39;/&#39; and different from pathname
8026
+ * R->>R: Use pathname
8027
+ * else
8028
+ * R->>R: Use router.url
8029
+ * end
8030
+ * R->>R: Remove leading &#39;/&#39;
8031
+ * R-->>C: Return clean URL
8032
+ *
8033
+ * @memberOf RouterService
8034
+ */
8035
+ getCurrentUrl(): string;
8036
+ /**
8037
+ * @description Retrieves the URL of the previous page.
8038
+ * @summary Extracts the URL of the previous page from the router's navigation history.
8039
+ * This information is useful for back navigation and for understanding the user's
8040
+ * navigation path through the application.
8041
+ *
8042
+ * @return {string} The URL of the previous page
8043
+ *
8044
+ * @mermaid
8045
+ * sequenceDiagram
8046
+ * participant C as Component
8047
+ * participant R as RouterService
8048
+ * participant N as Router Navigation
8049
+ *
8050
+ * C->>R: getPreviousUrl()
8051
+ * R->>N: Get currentNavigation
8052
+ * alt previousNavigation exists
8053
+ * R->>N: Extract previousNavigation.finalUrl
8054
+ * R->>R: Store in previousUrl
8055
+ * end
8056
+ * R-->>C: Return previousUrl
8057
+ *
8058
+ * @memberOf RouterService
8059
+ */
8060
+ getPreviousUrl(): string;
8061
+ /**
8062
+ * @description Navigates back to the previous page.
8063
+ * @summary Triggers navigation back to the previous page in the browser's history.
8064
+ * This method also dispatches a custom event to notify other components about
8065
+ * the back navigation.
8066
+ *
8067
+ * @return {void}
8068
+ *
8069
+ * @mermaid
8070
+ * sequenceDiagram
8071
+ * participant C as Component
8072
+ * participant R as RouterService
8073
+ * participant L as Location
8074
+ *
8075
+ * C->>R: backToLastPage()
8076
+ * R->>L: Dispatch BACK_BUTTON_NAVIGATION event
8077
+ * R->>L: Navigate back
8078
+ *
8079
+ * @memberOf RouterService
8080
+ */
8081
+ backToLastPage(): void;
8082
+ /**
8083
+ * @description Navigates to a specified page.
8084
+ * @summary Triggers navigation to a specified page using the Ionic NavController.
8085
+ * Supports different navigation directions and additional options.
8086
+ *
8087
+ * @param {string} page - The page to navigate to
8088
+ * @param {RouteDirections} [direction=RouteDirections.FORWARD] - The direction of navigation
8089
+ * @param {NavigationOptions} [options] - Additional navigation options
8090
+ * @return {Promise<boolean>} A promise that resolves to true if navigation is successful, otherwise false
8091
+ *
8092
+ * @mermaid
8093
+ * sequenceDiagram
8094
+ * participant C as Component
8095
+ * participant R as RouterService
8096
+ * participant N as NavController
8097
+ *
8098
+ * C->>R: navigateTo(page, direction, options)
8099
+ * alt direction is ROOT
8100
+ * R->>N: navigateRoot(page, options)
8101
+ * else direction is FORWARD
8102
+ * R->>N: navigateForward(page, options)
8103
+ * else direction is BACK
8104
+ * R->>N: navigateBack(page, options)
8105
+ * end
8106
+ * N-->>R: Return navigation result
8107
+ * R-->>C: Return boolean result
8108
+ *
8109
+ * @memberOf RouterService
8110
+ */
8111
+ navigateTo(page: string, direction?: RouteDirections, options?: NavigationOptions): Promise<boolean>;
8112
+ static ɵfac: i0.ɵɵFactoryDeclaration<NgxRouterService, never>;
8113
+ static ɵprov: i0.ɵɵInjectableDeclaration<NgxRouterService>;
8114
+ }
8115
+
8116
+ declare class TableComponent extends ListComponent implements OnInit {
8117
+ filter: SelectOption[];
8118
+ filterIndex: string;
8119
+ filterLabel: string;
8120
+ filterValue?: string;
8121
+ cols: string[];
8122
+ allowOperations: boolean;
8123
+ routerService: NgxRouterService;
8124
+ injector: EnvironmentInjector;
8125
+ private get _cols();
8126
+ ngOnInit(): Promise<void>;
8127
+ protected itemMapper(item: KeyValue, mapper: KeyValue, props?: KeyValue): KeyValue;
8128
+ mapResults(data: KeyValue[]): KeyValue[];
8129
+ handleAction(event: Event, action: CrudOperations, uid: string): Promise<void>;
8130
+ openFilterSelectOptions(event: Event): Promise<void>;
8131
+ handleFilterSelectClear(event: CustomEvent): Promise<void>;
8132
+ static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
8133
+ static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "ngx-decaf-table", never, { "filter": { "alias": "filter"; "required": false; }; "filterIndex": { "alias": "filterIndex"; "required": false; }; "filterLabel": { "alias": "filterLabel"; "required": false; }; }, {}, never, never, true, never>;
8134
+ }
8135
+
7799
8136
  declare class ForAngularComponentsModule {
7800
8137
  static ɵfac: i0.ɵɵFactoryDeclaration<ForAngularComponentsModule, never>;
7801
- static ɵmod: i0.ɵɵNgModuleDeclaration<ForAngularComponentsModule, never, [typeof ModelRendererComponent, typeof ComponentRendererComponent, typeof CrudFieldComponent, typeof CrudFormComponent, typeof EmptyStateComponent, typeof ListComponent, typeof ListItemComponent, typeof SearchbarComponent, typeof PaginationComponent, typeof CrudFormComponent, typeof FieldsetComponent, typeof LayoutComponent, typeof FilterComponent, typeof SteppedFormComponent, typeof IconComponent, typeof CardComponent, typeof FileUploadComponent], [typeof ModelRendererComponent, typeof ComponentRendererComponent, typeof CrudFieldComponent, typeof CrudFormComponent, typeof EmptyStateComponent, typeof ListComponent, typeof ListItemComponent, typeof SearchbarComponent, typeof PaginationComponent, typeof CrudFormComponent, typeof FieldsetComponent, typeof LayoutComponent, typeof FilterComponent, typeof SteppedFormComponent, typeof IconComponent, typeof CardComponent, typeof FileUploadComponent]>;
8138
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ForAngularComponentsModule, never, [typeof ModelRendererComponent, typeof ComponentRendererComponent, typeof CrudFieldComponent, typeof CrudFormComponent, typeof EmptyStateComponent, typeof ListComponent, typeof ListItemComponent, typeof SearchbarComponent, typeof PaginationComponent, typeof CrudFormComponent, typeof FieldsetComponent, typeof LayoutComponent, typeof FilterComponent, typeof SteppedFormComponent, typeof IconComponent, typeof CardComponent, typeof FileUploadComponent, typeof TableComponent], [typeof ModelRendererComponent, typeof ComponentRendererComponent, typeof CrudFieldComponent, typeof CrudFormComponent, typeof EmptyStateComponent, typeof ListComponent, typeof ListItemComponent, typeof SearchbarComponent, typeof PaginationComponent, typeof CrudFormComponent, typeof FieldsetComponent, typeof LayoutComponent, typeof FilterComponent, typeof SteppedFormComponent, typeof IconComponent, typeof CardComponent, typeof FileUploadComponent, typeof TableComponent]>;
7802
8139
  static ɵinj: i0.ɵɵInjectorDeclaration<ForAngularComponentsModule>;
7803
8140
  }
7804
8141
 
@@ -9415,6 +9752,9 @@ declare class DecafFakerRepository<T extends Model> extends LoggedClass {
9415
9752
  protected get repository(): DecafRepository<Model>;
9416
9753
  initialize(): Promise<void>;
9417
9754
  generateData<T extends Model>(values?: KeyValue, key?: string, keyType?: string): Promise<T[]>;
9755
+ protected pickRandomValue(source: string[] | KeyValue): string;
9756
+ protected getModelProperties(pk: string, pkType: string): string[];
9757
+ protected getPropValueFn(propName: string, pkName: string): FunctionLike;
9418
9758
  }
9419
9759
  declare function getFakerData<T extends Model>(limit: number | undefined, data: Record<string, FunctionLike>, model?: string): T[];
9420
9760
 
@@ -9715,5 +10055,5 @@ declare class I18nParser extends TranslateParser {
9715
10055
  */
9716
10056
  declare function provideDecafI18nConfig(config?: RootTranslateServiceConfig, resources?: I18nResourceConfigType, versionedSuffix?: boolean): AngularProvider[];
9717
10057
 
9718
- export { ActionRoles, AngularEngineKeys, BaseComponentProps, CPTKN, CardComponent, ComponentEventNames, ComponentRendererComponent, ComponentsTagNames, CrudFieldComponent, CrudFormComponent, CssClasses, DB_ADAPTER_FLAVOUR_TOKEN, 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, getDbAdapterFlavour, 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, provideDecafDarkMode, provideDecafDbAdapter, provideDecafDynamicComponents, provideDecafI18nConfig, provideDecafI18nLoader, provideDecafPageTransition, removeFocusTrap, setOnWindow, stringToBoolean, windowEventEmitter };
9719
- 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 };
10058
+ export { ActionRoles, AngularEngineKeys, BaseComponentProps, CPTKN, CardComponent, ComponentEventNames, ComponentRendererComponent, ComponentsTagNames, CrudFieldComponent, CrudFormComponent, CssClasses, DB_ADAPTER_FLAVOUR_TOKEN, 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, 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, parseToValidDate, presentNgxInlineModal, presentNgxLightBoxModal, provideDecafDarkMode, provideDecafDbAdapter, provideDecafDynamicComponents, provideDecafI18nConfig, provideDecafI18nLoader, provideDecafPageTransition, removeFocusTrap, setOnWindow, stringToBoolean, windowEventEmitter };
10059
+ 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, ITabItem, 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.65",
3
+ "version": "0.0.67",
4
4
  "author": "Tiago Venceslau and Contributors",
5
5
  "license": "MPL-2.0 OR AGPL-3.0",
6
6
  "repository": {