@messaia/cdk 21.0.0-rc.8 → 21.0.0

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.
@@ -1015,12 +1015,13 @@
1015
1015
  mat-nav-list {
1016
1016
  a[mat-list-item] {
1017
1017
 
1018
+ &:hover,
1018
1019
  &.active,
1019
1020
  &:active,
1020
1021
  &:focus {
1021
1022
  &::before {
1022
- background-color: var(--mat-list-list-item-focus-state-layer-color, var(--mat-sys-on-surface));
1023
- opacity: var(--mat-list-list-item-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity));
1023
+ background-color: var(--mat-list-list-item-focus-state-layer-color, var(--mat-sys-on-surface)) !important;
1024
+ opacity: 0.3;
1024
1025
  }
1025
1026
 
1026
1027
  mat-icon[mat-list-avatar] {
@@ -1032,6 +1033,12 @@
1032
1033
  color: $secondary-color;
1033
1034
  }
1034
1035
  }
1036
+
1037
+ &:hover:not(.active) {
1038
+ &::before {
1039
+ opacity: 0.15;
1040
+ }
1041
+ }
1035
1042
  }
1036
1043
  }
1037
1044
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@messaia/cdk",
3
- "version": "21.0.0-rc.8",
3
+ "version": "21.0.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.0.6",
6
6
  "@angular/core": "^21.0.6"
@@ -675,6 +675,10 @@ declare class MenuItem extends AuditEntity {
675
675
  * The child menu items.
676
676
  */
677
677
  items?: MenuItem[];
678
+ /**
679
+ * A function that returns the badge count for the menu item.
680
+ */
681
+ badge?: () => number;
678
682
  }
679
683
 
680
684
  declare class Menu extends AuditEntity {
@@ -1228,6 +1232,11 @@ declare abstract class BaseComponent implements IBaseComponent, OnInit, AfterVie
1228
1232
  * Navigates back to the return URL if it exists.
1229
1233
  */
1230
1234
  navigateToReturnUrl(): void;
1235
+ /**
1236
+ * Expands the specified expansion panel path (supporting nested IDs) and collapses others.
1237
+ * @param panelPath - The dot-separated ID path (e.g., 'warehouse.orders.details').
1238
+ */
1239
+ expandPanelPath(panelId: string): void;
1231
1240
  detectChanges(): void;
1232
1241
  /**
1233
1242
  * Sets the return URL after decoding it.
@@ -3075,6 +3084,19 @@ declare class EnumMetadata {
3075
3084
  * @type {number}
3076
3085
  */
3077
3086
  order?: number;
3087
+ /**
3088
+ * @property Disabled
3089
+ * @description A flag indicating whether the enum value should be disabled in the UI. This can be useful for conditionally disabling enum items.
3090
+ * @type {boolean}
3091
+ */
3092
+ disabled?: boolean;
3093
+ /**
3094
+ * @property Disable
3095
+ * @description An optional function that returns a boolean to conditionally disable the enum value based on runtime parameters.
3096
+ * For example, you can disable certain enum values depending on another enum's value or other context.
3097
+ * @type {(context: any) => boolean}
3098
+ */
3099
+ disable?: (context?: any) => boolean;
3078
3100
  /**
3079
3101
  * @property Hidden
3080
3102
  * @description A flag indicating whether the enum value should be hidden from the UI. This can be useful for conditionally hiding enum items.
@@ -3447,7 +3469,7 @@ declare class GenericService<T extends any> {
3447
3469
  * @param httpOptions Additional http options, like headers and so on
3448
3470
  * @param handleError Handle errors
3449
3471
  */
3450
- patch(id: string | number, body: any, path?: string | null, httpOptions?: Object, handleError?: boolean): Observable<any>;
3472
+ patch(id: string | number, body: any, path?: string | null, httpOptions?: any, handleError?: boolean): Observable<any>;
3451
3473
  /**
3452
3474
  * Patches multiple entities
3453
3475
  *
@@ -5576,6 +5598,19 @@ declare class FormFieldDefinition<TEntity = any, TProperty = any> {
5576
5598
  * @param ctx The context of the generic form component.
5577
5599
  */
5578
5600
  prefix?: ((x: TEntity, f?: FormGroup, ctx?: IGenericFormBaseComponent<TEntity>) => string) | string;
5601
+ /**
5602
+ * Suffix text displayed after the input field.
5603
+ * Can be a string or a function that returns a string.
5604
+ * @param x The entity associated with the field.
5605
+ * @param f The FormGroup containing this field.
5606
+ * @param ctx The context of the generic form component.
5607
+ */
5608
+ suffix?: ((x: TEntity, f?: FormGroup, ctx?: IGenericFormBaseComponent<TEntity>) => string) | string;
5609
+ /**
5610
+ * Flag indicating whether whitespace should be removed from the input value.
5611
+ * Defaults to false.
5612
+ */
5613
+ removeWhitespace?: boolean;
5579
5614
  /**
5580
5615
  * Projection specification for data retrieval.
5581
5616
  * Can be a string or an array of strings.
@@ -5805,13 +5840,18 @@ declare abstract class GenericFormBaseComponent<TEntity extends IEntity, TServic
5805
5840
  protected route: ActivatedRoute;
5806
5841
  protected changeDetectorRef: ChangeDetectorRef;
5807
5842
  /**
5808
- * The action of the form (add | edit).
5809
- */
5843
+ * The action of the form (add | edit).
5844
+ */
5810
5845
  action: string;
5811
5846
  /**
5812
5847
  * Indicates if the form is in edit mode.
5813
5848
  */
5814
5849
  isEditMode: boolean;
5850
+ /**
5851
+ * Whether to automatically initialize a new form instance if
5852
+ * no existing record is found in the database.
5853
+ */
5854
+ initializeDefaultOnEmpty: boolean;
5815
5855
  /**
5816
5856
  * Save action enumeration.
5817
5857
  */
@@ -5866,6 +5906,11 @@ declare abstract class GenericFormBaseComponent<TEntity extends IEntity, TServic
5866
5906
  * Disabled flag.
5867
5907
  */
5868
5908
  disabled: boolean;
5909
+ /**
5910
+ * Emitted when the form has been fully initialized
5911
+ * and is ready to be accessed or modified.
5912
+ */
5913
+ formInitialized: EventEmitter<NgForm | FormGroup<any>>;
5869
5914
  /**
5870
5915
  * The current date.
5871
5916
  */
@@ -6065,13 +6110,38 @@ declare abstract class GenericFormBaseComponent<TEntity extends IEntity, TServic
6065
6110
  * @param form The form to check for validity.
6066
6111
  * @returns A boolean indicating whether the form is valid.
6067
6112
  */
6068
- isFormValid(form?: NgForm | FormGroup): boolean;
6113
+ isFormValid(form?: NgForm | FormGroup | FormArray): boolean;
6114
+ /**
6115
+ * Recursively marks controls as invalid and touched.
6116
+ * This method traverses the form controls and marks any invalid controls as dirty and touched to trigger validation messages in the UI.
6117
+ * @param container The form group, array, or control to traverse.
6118
+ */
6119
+ private markControlsAsInvalid;
6120
+ /**
6121
+ * Recursively parses the form to collect error messages from the DOM.
6122
+ * This method traverses the form controls and attempts to find associated error messages in the DOM, collecting them into an array.
6123
+ * @param container The form group, array, or control to traverse.
6124
+ * @param errors The array to collect error messages into.
6125
+ */
6126
+ private collectErrors;
6127
+ /**
6128
+ * Checks if the form is valid.
6129
+ * This method validates the form, marks invalid controls, and shows error messages if any.
6130
+ * @param form The form to check for validity.
6131
+ * @returns A boolean indicating whether the form is valid.
6132
+ */
6133
+ isFormValidOld(form?: NgForm | FormGroup): boolean;
6069
6134
  /**
6070
6135
  * Resets form controls.
6071
6136
  * This method marks all controls in the form as pristine, untouched, and updates their validity.
6072
6137
  * @param form The form to reset.
6073
6138
  */
6074
6139
  resetForm(form: NgForm): void;
6140
+ /**
6141
+ * Manually triggers the formInitialized event.
6142
+ * Useful when a parent component needs to access the form after asynchronous data has loaded.
6143
+ */
6144
+ triggerFormInitialized(): void;
6075
6145
  /**
6076
6146
  * Invalidates controls recursively.
6077
6147
  * This method marks all controls in the group as dirty and touched if they are invalid.
@@ -6080,10 +6150,11 @@ declare abstract class GenericFormBaseComponent<TEntity extends IEntity, TServic
6080
6150
  protected invalidateControl(control: AbstractControl): void;
6081
6151
  /**
6082
6152
  * Shows form errors.
6083
- * This method logs form control errors to the console if debugging is enabled.
6084
- * @param form The form to debug.
6153
+ * This method logs form control errors to the console recursively if debugging is enabled.
6154
+ * @param form The form or control container to debug.
6155
+ * @param path The current path in the form hierarchy (used for recursive logging).
6085
6156
  */
6086
- protected debugForm(form?: NgForm | FormGroup): void;
6157
+ protected debugForm(form?: NgForm | FormGroup | FormArray | AbstractControl, path?: string): void;
6087
6158
  /**
6088
6159
  * Adds toolbar menu items.
6089
6160
  * This method adds the 'Delete' menu item to the toolbar if the entity is deletable.
@@ -6216,7 +6287,7 @@ declare abstract class GenericFormBaseComponent<TEntity extends IEntity, TServic
6216
6287
  */
6217
6288
  handleKeyboardEvent(event: KeyboardEvent): void;
6218
6289
  static ɵfac: i0.ɵɵFactoryDeclaration<GenericFormBaseComponent<any, any>, never>;
6219
- static ɵdir: i0.ɵɵDirectiveDeclaration<GenericFormBaseComponent<any, any>, never, never, { "id": { "alias": "id"; "required": false; }; "_item": { "alias": "_item"; "required": false; }; "item": { "alias": "item"; "required": false; }; "includes": { "alias": "includes"; "required": false; }; "updateIncludes": { "alias": "updateIncludes"; "required": false; }; "projection": { "alias": "projection"; "required": false; }; "query": { "alias": "query"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "fieldSets": { "alias": "fieldSets"; "required": false; }; }, {}, never, never, true, never>;
6290
+ static ɵdir: i0.ɵɵDirectiveDeclaration<GenericFormBaseComponent<any, any>, never, never, { "initializeDefaultOnEmpty": { "alias": "initializeDefaultOnEmpty"; "required": false; }; "id": { "alias": "id"; "required": false; }; "_item": { "alias": "_item"; "required": false; }; "item": { "alias": "item"; "required": false; }; "includes": { "alias": "includes"; "required": false; }; "updateIncludes": { "alias": "updateIncludes"; "required": false; }; "projection": { "alias": "projection"; "required": false; }; "query": { "alias": "query"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "fieldSets": { "alias": "fieldSets"; "required": false; }; }, { "formInitialized": "formInitialized"; }, never, never, true, never>;
6220
6291
  }
6221
6292
 
6222
6293
  declare abstract class GenericFormComponent<TEntity extends IEntity, TService extends GenericService<TEntity>> extends GenericFormBaseComponent<TEntity, TService> {
@@ -9360,6 +9431,12 @@ interface EnumItem<E> {
9360
9431
  * @type {string}
9361
9432
  */
9362
9433
  textColor?: string;
9434
+ /**
9435
+ * @property Disabled
9436
+ * @description An optional flag indicating whether the enum item is disabled. This can be used to control the item's interactivity in a UI context.
9437
+ * @type {boolean}
9438
+ */
9439
+ disabled?: boolean;
9363
9440
  }
9364
9441
 
9365
9442
  declare class KeyValue {
@@ -9836,13 +9913,14 @@ declare class EnumService {
9836
9913
  * Function to get ordered enum values based on metadata
9837
9914
  * @param enumObj The enum object
9838
9915
  * @param metadataObj Metadata object containing enum metadata
9916
+ * @param context Optional context to be passed to hide function
9839
9917
  * @returns An array of EnumItem objects representing ordered enum values
9840
9918
  */
9841
9919
  static applyMetadata<T extends number>(enumObj: {
9842
9920
  [key in T]: any;
9843
9921
  }, metadataObj: {
9844
9922
  [key in T]?: EnumMetadata;
9845
- }): EnumItem<T>[];
9923
+ }, context?: any): EnumItem<T>[];
9846
9924
  static ɵfac: i0.ɵɵFactoryDeclaration<EnumService, never>;
9847
9925
  static ɵprov: i0.ɵɵInjectableDeclaration<EnumService>;
9848
9926
  }
@@ -10667,6 +10745,27 @@ declare class PrefixDirective implements OnInit {
10667
10745
  static ɵdir: i0.ɵɵDirectiveDeclaration<PrefixDirective, "[prefix]", never, { "prefix": { "alias": "prefix"; "required": false; }; }, {}, never, never, true, never>;
10668
10746
  }
10669
10747
 
10748
+ declare class RemoveWhitespaceDirective {
10749
+ private ngControl;
10750
+ /**
10751
+ * Optional condition to enable or disable the whitespace removal.
10752
+ * Use as [removeWhitespace]="condition" or simply removeWhitespace.
10753
+ */
10754
+ IsEnabled: boolean | string;
10755
+ /**
10756
+ * Directive to remove all types of whitespace (spaces, tabs, newlines) from the input value.
10757
+ * @param ngControl The Angular form control associated with the input element.
10758
+ */
10759
+ constructor(ngControl: NgControl);
10760
+ /**
10761
+ * Event handler for the input event, removing all types of whitespace from the input value.
10762
+ * @param value The current value of the input element.
10763
+ */
10764
+ OnInput(value: string): void;
10765
+ static ɵfac: i0.ɵɵFactoryDeclaration<RemoveWhitespaceDirective, [{ optional: true; self: true; }]>;
10766
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RemoveWhitespaceDirective, "[removeWhitespace]", never, { "IsEnabled": { "alias": "removeWhitespace"; "required": false; }; }, {}, never, never, true, never>;
10767
+ }
10768
+
10670
10769
  /**
10671
10770
  * Class decorator to create a form
10672
10771
  * @param formDefinition
@@ -10978,6 +11077,12 @@ declare abstract class AbstractSelectFormField<T> extends AbstractMatFormField<T
10978
11077
  * @type {any}
10979
11078
  */
10980
11079
  get currentValue(): any;
11080
+ /**
11081
+ * @property context
11082
+ * @description An optional context object that can be used to provide additional information for the component's behavior, such as dynamic hiding of options based on the context.
11083
+ * @type {any}
11084
+ */
11085
+ context: any;
10981
11086
  /**
10982
11087
  * @property compareWith
10983
11088
  * @description A function to compare the option values with the selected values.
@@ -11076,7 +11181,7 @@ declare abstract class AbstractSelectFormField<T> extends AbstractMatFormField<T
11076
11181
  */
11077
11182
  log(message: any, ...optionalParams: any[]): void;
11078
11183
  static ɵfac: i0.ɵɵFactoryDeclaration<AbstractSelectFormField<any>, never>;
11079
- static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractSelectFormField<any>, never, never, { "enum": { "alias": "enum"; "required": false; }; "enumMetadata": { "alias": "enumMetadata"; "required": false; }; "textPrefix": { "alias": "textPrefix"; "required": false; }; "optionTextProperty": { "alias": "optionTextProperty"; "required": false; }; "optionValueProperty": { "alias": "optionValueProperty"; "required": false; }; "matIconKey": { "alias": "matIconKey"; "required": false; }; "svgIconKey": { "alias": "svgIconKey"; "required": false; }; "fontSet": { "alias": "fontSet"; "required": false; }; "prefix": { "alias": "prefix"; "required": false; }; "options": { "alias": "options"; "required": false; }; "filteredOptions": { "alias": "filteredOptions"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "cache": { "alias": "cache"; "required": false; }; "selectFirst": { "alias": "selectFirst"; "required": false; }; "sortBy": { "alias": "sortBy"; "required": false; }; "mapper": { "alias": "mapper"; "required": false; }; "optionIcon": { "alias": "optionIcon"; "required": false; }; "defaultOption": { "alias": "defaultOption"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "sorted": { "alias": "sorted"; "required": false; }; "endpoint": { "alias": "endpoint"; "required": false; }; "params": { "alias": "params"; "required": false; }; "projection": { "alias": "projection"; "required": false; }; "loadData": { "alias": "loadData"; "required": false; }; "enumFilter": { "alias": "enumFilter"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "compareWith": { "alias": "compareWith"; "required": false; }; "searchField": { "alias": "searchField"; "required": false; }; }, { "onValueChange": "change"; "onItemChange": "itemChange"; "onSelected": "selected"; "onItemSelected": "itemSelected"; "onLaunch": "launch"; }, never, never, true, never>;
11184
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractSelectFormField<any>, never, never, { "enum": { "alias": "enum"; "required": false; }; "enumMetadata": { "alias": "enumMetadata"; "required": false; }; "textPrefix": { "alias": "textPrefix"; "required": false; }; "optionTextProperty": { "alias": "optionTextProperty"; "required": false; }; "optionValueProperty": { "alias": "optionValueProperty"; "required": false; }; "matIconKey": { "alias": "matIconKey"; "required": false; }; "svgIconKey": { "alias": "svgIconKey"; "required": false; }; "fontSet": { "alias": "fontSet"; "required": false; }; "prefix": { "alias": "prefix"; "required": false; }; "options": { "alias": "options"; "required": false; }; "filteredOptions": { "alias": "filteredOptions"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "cache": { "alias": "cache"; "required": false; }; "selectFirst": { "alias": "selectFirst"; "required": false; }; "sortBy": { "alias": "sortBy"; "required": false; }; "mapper": { "alias": "mapper"; "required": false; }; "optionIcon": { "alias": "optionIcon"; "required": false; }; "defaultOption": { "alias": "defaultOption"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "sorted": { "alias": "sorted"; "required": false; }; "endpoint": { "alias": "endpoint"; "required": false; }; "params": { "alias": "params"; "required": false; }; "projection": { "alias": "projection"; "required": false; }; "loadData": { "alias": "loadData"; "required": false; }; "enumFilter": { "alias": "enumFilter"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "context": { "alias": "context"; "required": false; }; "compareWith": { "alias": "compareWith"; "required": false; }; "searchField": { "alias": "searchField"; "required": false; }; }, { "onValueChange": "change"; "onItemChange": "itemChange"; "onSelected": "selected"; "onItemSelected": "itemSelected"; "onLaunch": "launch"; }, never, never, true, never>;
11080
11185
  }
11081
11186
 
11082
11187
  declare class ValueAccessorBase<T> extends MatFormFieldControl<any> implements ControlValueAccessor, OnDestroy {
@@ -11225,23 +11330,29 @@ declare class EqualValidator implements Validator {
11225
11330
  static ɵdir: i0.ɵɵDirectiveDeclaration<EqualValidator, "[validateEqual][formControlName],[validateEqual][formControl],[validateEqual][ngModel]", never, {}, {}, never, never, true, never>;
11226
11331
  }
11227
11332
 
11228
- declare class NativeElementInjectorDirective implements OnInit {
11333
+ declare class NativeElementInjectorDirective implements AfterViewInit, OnDestroy {
11229
11334
  private elementRef;
11230
11335
  private control;
11231
- private model;
11232
11336
  /**
11233
11337
  * Constructor
11234
- * @param elementRef
11235
- * @param control
11236
- * @param model
11338
+ * @param elementRef Reference to the host DOM element
11339
+ * @param control The Angular control associated with the element
11237
11340
  */
11238
- constructor(elementRef: ElementRef<HTMLInputElement>, control: NgControl, model: NgModel);
11341
+ constructor(elementRef: ElementRef, control: NgControl);
11239
11342
  /**
11240
- * Called after the constructor, initializing input properties, and the first call to ngOnChanges.
11241
- * Add 'implements OnInit' to the class.
11343
+ * Called after the view is initialized.
11344
+ * We inject the nativeElement into the abstract control.
11242
11345
  */
11243
- ngOnInit(): void;
11244
- static ɵfac: i0.ɵɵFactoryDeclaration<NativeElementInjectorDirective, [null, null, { optional: true; }]>;
11346
+ ngAfterViewInit(): void;
11347
+ /**
11348
+ * Injects the native element into the control.
11349
+ */
11350
+ private injectElement;
11351
+ /**
11352
+ * Cleanup to prevent memory leaks when elements are removed from FormArrays
11353
+ */
11354
+ ngOnDestroy(): void;
11355
+ static ɵfac: i0.ɵɵFactoryDeclaration<NativeElementInjectorDirective, never>;
11245
11356
  static ɵdir: i0.ɵɵDirectiveDeclaration<NativeElementInjectorDirective, "[ngModel], [formControl], [formControlName]", never, {}, {}, never, never, true, never>;
11246
11357
  }
11247
11358
 
@@ -13536,5 +13647,5 @@ declare class TableStaticDataSource<TEntity> extends MatTableDataSource<TEntity>
13536
13647
  getSelected: <TType>(key?: string) => TType[];
13537
13648
  }
13538
13649
 
13539
- export { AbstractMatFormField, AbstractSelectFormField, ActionItem, Api, ApiResponse, AppEvent, AppEventType, AppSetting, AppStorage, AsyncValidationDirective, AuditEntity, AuditUser, AuthHelper, AuthUser, AutofocusDirective, BaseComponent, BaseDirective, BaseEntity, BaseInterceptor, BaseService, BindPipe, CachingInterceptor, Column, ColumnObject, Common, CommonError, CommonHandlerContext, ConfirmExitGuard, ContextHelper, DIALOG_PROVIDER, DIALOG_PROVIDER_FACTORY, DataSourceFilterDirective, DataSourcePipe, DatePickerHeaderComponent, DisableControlDirective, Display, DisplayNameNumberProjection, DisplayNameProjection, DynamicBuilder, DynamicComponentCompiler, EXPORT_DIALOG_COMPONENT, EmptyStringResetDirective, EnumMetadata, EnumPipe, EnumService, EqualValidator, ErrorMessageBindingStrategy, EventQueueService, Facet, FacetValue, FieldFuncPipe, FileControlDirective, FileService, FileSizePipe, FilterClearComponent, FilterDateComponent, FilterGlue, FilterInputComponent, FilterOperator, FilterPipe, FilterSelectComponent, FirstLetterPipe, Form, FormArrayPipe, FormBuilderConfiguration, FormControlPipe, FormDefinition, FormField, FormFieldDefinition, FormFieldGroup, FormFieldGroupDefinition, FormFieldType, FormGroupPipe, FuncPipe, GenericEmbeddedListComponent, GenericFormBaseComponent, GenericFormComponent, GenericListComponent, GenericReactiveFormComponent, GenericService, GlobalRoles, Grid, GroupFilterPipe, HtmlControlTemplateDirective, IAbstractControl, Icon, ImageFileControlDirective, IpVersion, KeyValue, KeysPipe, LayoutToggle, LoadingScreenInterceptor, LoadingScreenService, MEDIA_PROVIDER, MEDIA_PROVIDER_FACTORY, MatFormFieldEditorDirective, MatFormFieldReadonlyDirective, Menu, MenuClient, MenuDepartment, MenuFormIncludesResolve, MenuItem, MenuItemClient, MenuItemDepartment, MenuItemFormIncludesResolve, MenuItemService, MenuItemTarget, MenuListProjectionResolve, MenuResolve, MenuScope, MenuSettings, MenuSettingsResolve, MessageType, ModifiableEntity, MonthNamePipe, NameNumberProjection, NameProjection, NativeElementInjectorDirective, NumericValueType, OnlyNumberDirective, OrderPipe, Pagination, PaginatorIntl, ParseDecimalDirective, Permission, PlaceholderPipe, PrefixDirective, PrintService, PropertyJoinPipe, ReactiveFormConfig, ReactiveTypedFormsModule, ResetFormType, RxFormArray, RxFormBuilder, RxFormControl, RxFormControlDirective, RxFormGroup, RxReactiveFormsModule, RxwebFormDirective, RxwebValidators, SafeHtmlPipe, Salutation, SaveAction, SplitPipe, SubMenuResolve, SuffixButton, Table, TableColumn, TableColumnConfig, TableColumnType, TableConfig, TableDataSource, TableDefinition, TableQueryConfig, TableStaticDataSource, TaskDialogData, Templates, TimePipe, TitleCase, TitleProjection, TruncatePipe, TypedForm, TypedFormBuilder, UniqueValidatorDirective, UrlValidationType, Utils, ValidationAlphabetLocale, ValueAccessorBase, ValuesPipe, VdAlertDialogComponent, VdChipsComponent, VdCodeDirective, VdConfirmDialogComponent, VdCustomDirective, VdDelayedHoverDirective, VdDialogActionsDirective, VdDialogComponent, VdDialogContentDirective, VdDialogService, VdDialogTitleDirective, VdDynamicMenuComponent, VdDynamicTableComponent, VdDynamicTableConfigDialogComponent, VdEditorDirective, VdFileDirective, VdFileInputComponent, VdFileModule, VdFilterOptionDirective, VdGenericFormComponent, VdGenericFormCustomFieldDirective, VdLayoutCardOverComponent, VdLayoutCloseDirective, VdLayoutCompactComponent, VdLayoutComponent, VdLayoutFooterComponent, VdLayoutManageListCloseDirective, VdLayoutManageListComponent, VdLayoutManageListOpenDirective, VdLayoutManageListToggleDirective, VdLayoutNavComponent, VdLayoutNavListCloseDirective, VdLayoutNavListComponent, VdLayoutNavListOpenDirective, VdLayoutNavListToggleDirective, VdLayoutOpenDirective, VdLayoutToggleDirective, VdListOptionDirective, VdListToolbarComponent, VdMediaService, VdMediaToggleDirective, VdMenuComponent, VdNavigationDrawerComponent, VdNavigationDrawerMenuDirective, VdNavigationDrawerToolbarDirective, VdPromptDialogComponent, VdSelectComponent, VdSelectOptionDirective, VdSelectTriggerDirective, VdTableFieldDirective, VdTaskDialogComponent, allOf, allOfAsync, alpha, alphaAsync, alphaNumeric, alphaNumericAsync, and, ascii, async, blacklist, choice, choiceAsync, compare, compose, contains, containsAsync, creditCard, creditCardAsync, cusip, custom, customAsync, dataUri, date, dateAsync, different, digit, disable, elementClass, email, endpointMetadataKey, endsWith, endsWithAsync, error, escape, even, extension, extensionAsync, factor, factorAsync, file, fileAsync, fileSize, fileSizeAsync, formDefinitionMetadataKey, formFieldGroupsMetadataKey, formFieldsMetadataKey, getDisplay, getEndpoint, getFormDefinition, getFormGroups, getTableDefinition, greaterThan, greaterThanAsync, greaterThanEqualTo, greaterThanEqualToAsync, grid, headerMetadataKey, hexColor, iban, ibanAsync, image, imageAsync, json, latLong, latitude, leapYear, lessThan, lessThanAsync, lessThanEqualTo, lessThanEqualToAsync, longitude, lowerCase, ltrim, mac, mask, maxDate, maxDateAsync, maxLength, maxLengthAsync, maxNumber, maxNumberAsync, maxTime, maxTimeAsync, minDate, minDateAsync, minLength, minLengthAsync, minNumber, minNumberAsync, minTime, minTimeAsync, mixinDisableRipple, mixinDisabled, model, noneOf, noneOfAsync, not, notEmpty, numeric, numericAsync, odd, oneOf, oneOfAsync, or, password, passwordAsync, pattern, patternAsync, port, prefix, primeNumber, prop, propArray, propObject, range, rangeAsync, required, requiredTrue, rtrim, rule, sanitize, startsWith, startsWithAsync, stripLow, suffix, tableColumnsMetadataKey, tableDefinitionMetadataKey, time, timeAsync, toBoolean, toDate, toDouble, toFloat, toInt, toString, trim, unique, updateOn, upperCase, url, urlAsync, vdCollapseAnimation, whitelist };
13650
+ export { AbstractMatFormField, AbstractSelectFormField, ActionItem, Api, ApiResponse, AppEvent, AppEventType, AppSetting, AppStorage, AsyncValidationDirective, AuditEntity, AuditUser, AuthHelper, AuthUser, AutofocusDirective, BaseComponent, BaseDirective, BaseEntity, BaseInterceptor, BaseService, BindPipe, CachingInterceptor, Column, ColumnObject, Common, CommonError, CommonHandlerContext, ConfirmExitGuard, ContextHelper, DIALOG_PROVIDER, DIALOG_PROVIDER_FACTORY, DataSourceFilterDirective, DataSourcePipe, DatePickerHeaderComponent, DisableControlDirective, Display, DisplayNameNumberProjection, DisplayNameProjection, DynamicBuilder, DynamicComponentCompiler, EXPORT_DIALOG_COMPONENT, EmptyStringResetDirective, EnumMetadata, EnumPipe, EnumService, EqualValidator, ErrorMessageBindingStrategy, EventQueueService, Facet, FacetValue, FieldFuncPipe, FileControlDirective, FileService, FileSizePipe, FilterClearComponent, FilterDateComponent, FilterGlue, FilterInputComponent, FilterOperator, FilterPipe, FilterSelectComponent, FirstLetterPipe, Form, FormArrayPipe, FormBuilderConfiguration, FormControlPipe, FormDefinition, FormField, FormFieldDefinition, FormFieldGroup, FormFieldGroupDefinition, FormFieldType, FormGroupPipe, FuncPipe, GenericEmbeddedListComponent, GenericFormBaseComponent, GenericFormComponent, GenericListComponent, GenericReactiveFormComponent, GenericService, GlobalRoles, Grid, GroupFilterPipe, HtmlControlTemplateDirective, IAbstractControl, Icon, ImageFileControlDirective, IpVersion, KeyValue, KeysPipe, LayoutToggle, LoadingScreenInterceptor, LoadingScreenService, MEDIA_PROVIDER, MEDIA_PROVIDER_FACTORY, MatFormFieldEditorDirective, MatFormFieldReadonlyDirective, Menu, MenuClient, MenuDepartment, MenuFormIncludesResolve, MenuItem, MenuItemClient, MenuItemDepartment, MenuItemFormIncludesResolve, MenuItemService, MenuItemTarget, MenuListProjectionResolve, MenuResolve, MenuScope, MenuSettings, MenuSettingsResolve, MessageType, ModifiableEntity, MonthNamePipe, NameNumberProjection, NameProjection, NativeElementInjectorDirective, NumericValueType, OnlyNumberDirective, OrderPipe, Pagination, PaginatorIntl, ParseDecimalDirective, Permission, PlaceholderPipe, PrefixDirective, PrintService, PropertyJoinPipe, ReactiveFormConfig, ReactiveTypedFormsModule, RemoveWhitespaceDirective, ResetFormType, RxFormArray, RxFormBuilder, RxFormControl, RxFormControlDirective, RxFormGroup, RxReactiveFormsModule, RxwebFormDirective, RxwebValidators, SafeHtmlPipe, Salutation, SaveAction, SplitPipe, SubMenuResolve, SuffixButton, Table, TableColumn, TableColumnConfig, TableColumnType, TableConfig, TableDataSource, TableDefinition, TableQueryConfig, TableStaticDataSource, TaskDialogData, Templates, TimePipe, TitleCase, TitleProjection, TruncatePipe, TypedForm, TypedFormBuilder, UniqueValidatorDirective, UrlValidationType, Utils, ValidationAlphabetLocale, ValueAccessorBase, ValuesPipe, VdAlertDialogComponent, VdChipsComponent, VdCodeDirective, VdConfirmDialogComponent, VdCustomDirective, VdDelayedHoverDirective, VdDialogActionsDirective, VdDialogComponent, VdDialogContentDirective, VdDialogService, VdDialogTitleDirective, VdDynamicMenuComponent, VdDynamicTableComponent, VdDynamicTableConfigDialogComponent, VdEditorDirective, VdFileDirective, VdFileInputComponent, VdFileModule, VdFilterOptionDirective, VdGenericFormComponent, VdGenericFormCustomFieldDirective, VdLayoutCardOverComponent, VdLayoutCloseDirective, VdLayoutCompactComponent, VdLayoutComponent, VdLayoutFooterComponent, VdLayoutManageListCloseDirective, VdLayoutManageListComponent, VdLayoutManageListOpenDirective, VdLayoutManageListToggleDirective, VdLayoutNavComponent, VdLayoutNavListCloseDirective, VdLayoutNavListComponent, VdLayoutNavListOpenDirective, VdLayoutNavListToggleDirective, VdLayoutOpenDirective, VdLayoutToggleDirective, VdListOptionDirective, VdListToolbarComponent, VdMediaService, VdMediaToggleDirective, VdMenuComponent, VdNavigationDrawerComponent, VdNavigationDrawerMenuDirective, VdNavigationDrawerToolbarDirective, VdPromptDialogComponent, VdSelectComponent, VdSelectOptionDirective, VdSelectTriggerDirective, VdTableFieldDirective, VdTaskDialogComponent, allOf, allOfAsync, alpha, alphaAsync, alphaNumeric, alphaNumericAsync, and, ascii, async, blacklist, choice, choiceAsync, compare, compose, contains, containsAsync, creditCard, creditCardAsync, cusip, custom, customAsync, dataUri, date, dateAsync, different, digit, disable, elementClass, email, endpointMetadataKey, endsWith, endsWithAsync, error, escape, even, extension, extensionAsync, factor, factorAsync, file, fileAsync, fileSize, fileSizeAsync, formDefinitionMetadataKey, formFieldGroupsMetadataKey, formFieldsMetadataKey, getDisplay, getEndpoint, getFormDefinition, getFormGroups, getTableDefinition, greaterThan, greaterThanAsync, greaterThanEqualTo, greaterThanEqualToAsync, grid, headerMetadataKey, hexColor, iban, ibanAsync, image, imageAsync, json, latLong, latitude, leapYear, lessThan, lessThanAsync, lessThanEqualTo, lessThanEqualToAsync, longitude, lowerCase, ltrim, mac, mask, maxDate, maxDateAsync, maxLength, maxLengthAsync, maxNumber, maxNumberAsync, maxTime, maxTimeAsync, minDate, minDateAsync, minLength, minLengthAsync, minNumber, minNumberAsync, minTime, minTimeAsync, mixinDisableRipple, mixinDisabled, model, noneOf, noneOfAsync, not, notEmpty, numeric, numericAsync, odd, oneOf, oneOfAsync, or, password, passwordAsync, pattern, patternAsync, port, prefix, primeNumber, prop, propArray, propObject, range, rangeAsync, required, requiredTrue, rtrim, rule, sanitize, startsWith, startsWithAsync, stripLow, suffix, tableColumnsMetadataKey, tableDefinitionMetadataKey, time, timeAsync, toBoolean, toDate, toDouble, toFloat, toInt, toString, trim, unique, updateOn, upperCase, url, urlAsync, vdCollapseAnimation, whitelist };
13540
13651
  export type { AppFormGroup, CanComponentDeactivate, Constructor$1 as Constructor, Delegate, DialogButtonConfig, EditorChange, EnumItem, Filter, FilterField, FormGroupExtension, IAlertConfig, IBaseComponent, ICanDisable, ICanDisableRipple, ICollapseAnimation, ICommonHandlerContext, IConfirmConfig, IDialogConfig, IEntity, IFormGroup, IGenericFormBaseComponent, IGenericListComponent, IGenericReactiveFormBaseComponent, ILayoutTogglable, IPromptConfig, Options, ShowConfirmationDialog, ShowTaskDialog };