@messaia/cdk 21.1.0-rc.8 → 21.1.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.
@@ -12,7 +12,7 @@ import { Router, ActivatedRoute, ActivatedRouteSnapshot, CanDeactivate, RouterSt
12
12
  import { Observable, Subscription, BehaviorSubject, Subject } from 'rxjs';
13
13
  import { ComponentType, CdkPortal } from '@angular/cdk/portal';
14
14
  import * as i2 from '@angular/forms';
15
- import { ValidatorFn, AsyncValidatorFn, AbstractControlOptions, AbstractControl, FormGroup, FormArray, NgForm, AsyncValidator, ValidationErrors, Validator, FormControl, ControlValueAccessor, NgControl, NgModel, FormGroupDirective } from '@angular/forms';
15
+ import { ValidatorFn, AsyncValidatorFn, AbstractControlOptions, AbstractControl, FormGroup, FormArray, NgForm, ValidationErrors, AsyncValidator, Validator, FormControl, ControlValueAccessor, NgControl, NgModel, FormGroupDirective } from '@angular/forms';
16
16
  import { SortDirection, MatSort } from '@angular/material/sort';
17
17
  import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator';
18
18
  import { MatMenuTrigger, MatMenu } from '@angular/material/menu';
@@ -2647,7 +2647,18 @@ declare class RxFormBuilder extends BaseFormBuilder {
2647
2647
  */
2648
2648
  private isNestedBinding;
2649
2649
  /**
2650
- * Private method: Gets the instance container based on the instance function and entity object.
2650
+ * Private method: Resolves effective validators for a property.
2651
+ *
2652
+ * If the same annotation type appears multiple times (for example, inherited + overridden),
2653
+ * only the first occurrence is kept and later duplicates are ignored.
2654
+ *
2655
+ * @param propertyValidators The complete list of validator decorator configurations.
2656
+ * @param isAsync Indicates whether async or sync validators should be resolved.
2657
+ * @returns The effective validator decorator configurations for the requested validator kind.
2658
+ */
2659
+ private getEffectivePropertyValidators;
2660
+ /**
2661
+ * Private method: Gets the instance container for the given instance function and entity object.
2651
2662
  *
2652
2663
  * @param instanceFunc The function to provide an instance from.
2653
2664
  * @param entityObject The entity object to use.
@@ -2762,7 +2773,7 @@ declare class RxFormBuilder extends BaseFormBuilder {
2762
2773
  */
2763
2774
  private applyAllPropValidator;
2764
2775
  /**
2765
- * Checks if dynamic validation should be applied to a property.
2776
+ * Checks whether dynamic validation should be applied to a property.
2766
2777
  *
2767
2778
  * @param propName The name of the property to check.
2768
2779
  * @param validatorConfig The configuration for property validation.
@@ -2770,7 +2781,7 @@ declare class RxFormBuilder extends BaseFormBuilder {
2770
2781
  */
2771
2782
  private dynamicValidationPropCheck;
2772
2783
  /**
2773
- * Checks if the given value is not an object.
2784
+ * Checks whether the given value is not an object.
2774
2785
  *
2775
2786
  * @param value The value to check.
2776
2787
  * @returns A boolean indicating whether the value is not an object.
@@ -3149,6 +3160,12 @@ declare class EnumMetadata {
3149
3160
  * @type {string}
3150
3161
  */
3151
3162
  display?: string;
3163
+ /**
3164
+ * @property Hint
3165
+ * @description An optional hint string associated with the enum value. This string can be used to provide additional information or guidance in the UI.
3166
+ * @type {string}
3167
+ */
3168
+ hint?: string;
3152
3169
  /**
3153
3170
  * @property Icon
3154
3171
  * @description An optional icon associated with the enum value. This can be used to visually represent the enum value in the UI.
@@ -3303,6 +3320,18 @@ declare class TableColumn<TEntity = any> {
3303
3320
  * @property
3304
3321
  */
3305
3322
  filterOptionText?: string;
3323
+ /**
3324
+ * @property filterTooltip
3325
+ * @description Tooltip for the filter input.
3326
+ * @type {(ctx?: IGenericListComponent<TEntity>) => any}
3327
+ */
3328
+ filterTooltip?: (ctx?: IGenericListComponent<TEntity>) => any;
3329
+ /**
3330
+ * @property filterTooltipClass
3331
+ * @description CSS class for the filter tooltip.
3332
+ * @type {string}
3333
+ */
3334
+ filterTooltipClass?: string;
3306
3335
  /**
3307
3336
  * The header text for the column.
3308
3337
  * @property
@@ -3475,169 +3504,273 @@ declare class TableColumn<TEntity = any> {
3475
3504
  declare class GenericService<T extends any> {
3476
3505
  endpoint?: string | undefined;
3477
3506
  /**
3478
- * Http client
3507
+ * Injected Angular HttpClient instance
3479
3508
  */
3480
3509
  http: HttpClient;
3481
3510
  /**
3482
- * List of entities
3511
+ * BehaviorSubject holding the current list of entities
3483
3512
  */
3484
3513
  list: BehaviorSubject<any[]>;
3485
3514
  /**
3486
3515
  * Constructor
3487
- *
3488
- * @param http
3516
+ * @param endpoint Optional API endpoint for the service
3489
3517
  */
3490
3518
  constructor(endpoint?: string | undefined);
3491
3519
  /**
3492
- * Gets a single entity
3493
- *
3494
- * @param id The id of the entity or relative path
3495
- * @param params Adds query params to the request
3496
- * @param headers Adds headers to the request
3520
+ * Retrieves a single entity by ID or relative path
3521
+ * @param id The entity ID or relative path
3522
+ * @param params Optional query parameters
3523
+ * @param headers Optional HTTP headers
3524
+ * @param handleError Whether to handle errors (default: true)
3525
+ * @param observeResponse Whether to observe the full response (default: false)
3497
3526
  */
3498
3527
  get<T>(id: string | number, params?: Object | null, headers?: Object, handleError?: boolean, observeResponse?: boolean): Observable<any>;
3499
3528
  /**
3500
- * Counts entities
3501
- *
3502
- * @param params Adds query params to the request
3503
- * @param path A relative path to the action
3504
- * @param headers Adds headers to the request
3505
- * @param handleError Handle errors
3529
+ * Asynchronously retrieves a single entity by ID or relative path
3530
+ * @param id The entity ID or relative path
3531
+ * @param params Optional query parameters
3532
+ * @returns Promise resolving to the entity
3533
+ */
3534
+ getAsync<T>(id: string | number, params?: Object | null): Promise<T>;
3535
+ /**
3536
+ * Counts entities on the server
3537
+ * @param params Optional query parameters
3538
+ * @param path Optional relative path to the count action
3539
+ * @param headers Optional HTTP headers
3540
+ * @param handleError Whether to handle errors (default: true)
3506
3541
  */
3507
3542
  count(params?: Object, path?: string | null, headers?: Object, handleError?: boolean): Observable<number>;
3508
3543
  /**
3509
- * Gets a list of entities.
3510
- *
3511
- * @param params Optional. Adds query params to the request.
3512
- * @param path Optional. A relative path to the action.
3513
- * @param headers Optional. Adds headers to the request.
3514
- * @returns An Observable with the response data.
3544
+ * Asynchronously counts entities on the server
3545
+ * @param params Optional query parameters
3546
+ * @param path Optional relative path to the count action
3547
+ * @returns Promise resolving to the count
3548
+ */
3549
+ countAsync(params?: Object, path?: string | null): Promise<number>;
3550
+ /**
3551
+ * Retrieves a list of entities
3552
+ * @param params Optional query parameters
3553
+ * @param path Optional relative path to the action
3554
+ * @param headers Optional HTTP headers
3555
+ * @returns Observable with the response data
3515
3556
  */
3516
3557
  getList(params?: HttpParams | Object | null, path?: string | null, headers?: Object | null): Observable<any>;
3517
3558
  /**
3518
- * Loads data
3519
- * @param params Adds query params to the request
3520
- * @param path A relative path to the action
3521
- * @param headers Adds headers to the request
3559
+ * Asynchronously retrieves a list of entities
3560
+ * @param params Optional query parameters
3561
+ * @param path Optional relative path to the action
3562
+ * @param headers Optional HTTP headers
3563
+ * @returns Promise resolving to the response data
3564
+ */
3565
+ getListAsync(params?: HttpParams | Object | null, path?: string | null, headers?: Object | null): Promise<any>;
3566
+ /**
3567
+ * Loads data into the BehaviorSubject list
3568
+ * @param params Optional query parameters
3569
+ * @param path Optional relative path to the action
3570
+ * @param headers Optional HTTP headers
3522
3571
  */
3523
3572
  loadList(params?: Object | null, path?: string | null, headers?: Object): void;
3524
3573
  /**
3525
- * Gets result list as Observable
3574
+ * Loads data into the BehaviorSubject list asynchronously
3575
+ * @param params Optional query parameters
3576
+ * @param path Optional relative path to the action
3577
+ * @param headers Optional HTTP headers
3578
+ */
3579
+ /**
3580
+ * Asynchronously loads data into the BehaviorSubject list
3581
+ * @param params Optional query parameters
3582
+ * @param path Optional relative path to the action
3583
+ * @param headers Optional HTTP headers
3584
+ */
3585
+ loadListAsync(params?: Object | null, path?: string | null, headers?: Object): Promise<void>;
3586
+ /**
3587
+ * Returns the list BehaviorSubject as an Observable
3526
3588
  */
3527
3589
  getListAsObservable(): Observable<any>;
3528
3590
  /**
3529
- * Creates an entity
3530
- *
3591
+ * Creates a new entity
3531
3592
  * @param entity The entity to create
3532
- * @param path A relative path to the action
3533
- * @param httpOptions Additional http options, like headers and so on
3534
- * @param handleError Handle errors
3593
+ * @param path Optional relative path to the action
3594
+ * @param httpOptions Optional HTTP options (headers, etc.)
3595
+ * @param handleError Whether to handle errors (default: true)
3535
3596
  */
3536
3597
  create<T>(entity: any, path?: string | null, httpOptions?: Object, handleError?: boolean): Observable<T>;
3537
3598
  /**
3538
- * Updates an entity
3539
- *
3540
- * @param entity The entity to update
3541
- * @param path A relative path to the action
3542
- * @param httpOptions Additional http options, like headers and so on
3543
- * @param handleError Handle errors
3599
+ * Asynchronously creates a new entity
3600
+ * @param entity The entity to create
3601
+ * @param path Optional relative path to the action
3602
+ * @param httpOptions Optional HTTP options (headers, etc.)
3603
+ * @returns Promise resolving to the created entity
3604
+ */
3605
+ createAsync<T>(entity: any, path?: string | null, httpOptions?: Object): Promise<T>;
3606
+ /**
3607
+ * Updates an existing entity asynchronously
3608
+ * @param id The ID of the entity to update
3609
+ * @param entity The updated entity data
3610
+ * @param path Optional relative path to the action
3611
+ * @param httpOptions Optional HTTP options (headers, etc.)
3612
+ * @param handleError Whether to handle errors (default: true)
3544
3613
  */
3545
3614
  update(id: string | number, entity: any, path?: string | null, httpOptions?: Object, handleError?: boolean): Observable<any>;
3546
3615
  /**
3547
- * Patches an entity
3548
- *
3549
- * @param id id The id of the item to patch
3550
- * @param body The body
3551
- * @param path A relative path to the action
3552
- * @param httpOptions Additional http options, like headers and so on
3553
- * @param handleError Handle errors
3616
+ * Asynchronously updates an existing entity
3617
+ * @param id The ID of the entity to update
3618
+ * @param entity The updated entity data
3619
+ * @param path Optional relative path to the action
3620
+ * @param httpOptions Optional HTTP options (headers, etc.)
3621
+ * @returns Promise resolving to the updated entity
3622
+ */
3623
+ updateAsync(id: string | number, entity: any, path?: string | null, httpOptions?: Object): Promise<any>;
3624
+ /**
3625
+ * Applies a JSON Patch to an entity
3626
+ * @param id The ID of the item to patch
3627
+ * @param body The patch body
3628
+ * @param path Optional relative path to the action
3629
+ * @param httpOptions Optional HTTP options (headers, etc.)
3630
+ * @param handleError Whether to handle errors (default: true)
3554
3631
  */
3555
3632
  patch(id: string | number, body: any, path?: string | null, httpOptions?: any, handleError?: boolean): Observable<any>;
3556
3633
  /**
3557
- * Patches multiple entities
3558
- *
3559
- * @param ids The ids of the items to patch
3560
- * @param body The body
3561
- * @param path A relative path to the action
3562
- * @param httpOptions Additional http options, like headers and so on
3563
- * @param handleError Handle errors
3634
+ * Asynchronously applies a JSON Patch to an entity
3635
+ * @param id The ID of the item to patch
3636
+ * @param body The patch body
3637
+ * @param path Optional relative path to the action
3638
+ * @param httpOptions Optional HTTP options (headers, etc.)
3639
+ * @returns Promise resolving to the patched entity
3640
+ */
3641
+ patchAsync(id: string | number, body: any, path?: string | null, httpOptions?: any): Promise<any>;
3642
+ /**
3643
+ * Applies a JSON Patch to multiple entities
3644
+ * @param ids The IDs of the items to patch
3645
+ * @param body The patch body
3646
+ * @param path Optional relative path to the action
3647
+ * @param httpOptions Optional HTTP options (headers, etc.)
3648
+ * @param handleError Whether to handle errors (default: true)
3564
3649
  */
3565
3650
  patchList(ids: string[] | number[], body: any, path?: string | null, httpOptions?: Object, handleError?: boolean): Observable<any>;
3566
3651
  /**
3567
- * Deletes an entity.
3568
- *
3569
- * @param id The id of the item to delete
3570
- * @param path A relative path to the action
3571
- * @param httpOptions Additional http options, like headers and so on
3572
- * @param handleError Handle errors
3652
+ * Asynchronously applies a JSON Patch to multiple entities
3653
+ * @param ids The IDs of the items to patch
3654
+ * @param body The patch body
3655
+ * @param path Optional relative path to the action
3656
+ * @param httpOptions Optional HTTP options (headers, etc.)
3657
+ * @returns Promise resolving to the patched entities
3658
+ */
3659
+ patchListAsync(ids: string[] | number[], body: any, path?: string | null, httpOptions?: Object): Promise<any>;
3660
+ /**
3661
+ * Deletes an entity by ID
3662
+ * @param id The ID of the item to delete
3663
+ * @param path Optional relative path to the action
3664
+ * @param httpOptions Optional HTTP options (headers, etc.)
3665
+ * @param handleError Whether to handle errors (default: true)
3573
3666
  */
3574
3667
  delete(id: string | number, path?: string | null, httpOptions?: Object, handleError?: boolean): Observable<any>;
3575
3668
  /**
3576
- * Deletes multiple entities.
3577
- *
3578
- * @param ids The ids of the items to delete
3579
- * @param path A relative path to the action
3580
- * @param httpOptions Additional http options, like headers and so on
3581
- * @param handleError Handle errors
3669
+ * Asynchronously deletes an entity by ID
3670
+ * @param id The ID of the item to delete
3671
+ * @param path Optional relative path to the action
3672
+ * @param httpOptions Optional HTTP options (headers, etc.)
3673
+ * @returns Promise resolving to the delete result
3674
+ */
3675
+ deleteAsync(id: string | number, path?: string | null, httpOptions?: Object): Promise<any>;
3676
+ /**
3677
+ * Deletes multiple entities by IDs
3678
+ * @param ids The IDs of the items to delete
3679
+ * @param path Optional relative path to the action
3680
+ * @param httpOptions Optional HTTP options (headers, etc.)
3681
+ * @param handleError Whether to handle errors (default: true)
3582
3682
  */
3583
3683
  deleteList(ids: string[] | number[], path?: string | null, httpOptions?: Object, handleError?: boolean): Observable<any>;
3584
3684
  /**
3585
- * Downloads a file
3586
- *
3587
- * @param path A relative path to the action
3588
- * @param params Some query params
3685
+ * Asynchronously deletes multiple entities by IDs
3686
+ * @param ids The IDs of the items to delete
3687
+ * @param path Optional relative path to the action
3688
+ * @param httpOptions Optional HTTP options (headers, etc.)
3689
+ * @returns Promise resolving to the delete result
3690
+ */
3691
+ deleteListAsync(ids: string[] | number[], path?: string | null, httpOptions?: Object): Promise<any>;
3692
+ /**
3693
+ * Downloads a file from the server
3694
+ * @param path Relative path to the download action
3695
+ * @param params Optional query parameters
3696
+ * @param handleError Whether to handle errors (default: true)
3589
3697
  */
3590
3698
  download(path: string, params?: Object, handleError?: boolean): Observable<any>;
3591
3699
  /**
3592
- * Duplicates a record
3593
- * @param id
3700
+ * Asynchronously downloads a file from the server
3701
+ * @param path Relative path to the download action
3702
+ * @param params Optional query parameters
3703
+ * @returns Promise resolving to the download result
3704
+ */
3705
+ downloadAsync(path: string, params?: Object): Promise<any>;
3706
+ /**
3707
+ * Duplicates a record by ID
3708
+ * @param id The ID of the record to duplicate
3594
3709
  */
3595
3710
  duplicate(id: number): Observable<any>;
3596
3711
  /**
3597
- * Uploads a file
3598
- *
3712
+ * Asynchronously duplicates a record by ID
3713
+ * @param id The ID of the record to duplicate
3714
+ * @returns Promise resolving to the duplicated record
3715
+ */
3716
+ duplicateAsync(id: number): Promise<any>;
3717
+ /**
3718
+ * Uploads a file to the server
3599
3719
  * @param file The file to upload
3600
- * @param path A relative path to the action
3720
+ * @param path Optional relative path to the upload action (default: 'upload')
3721
+ * @param extraData Optional extra form data to include
3722
+ * @returns Observable of HttpEvent for upload progress tracking
3601
3723
  */
3602
3724
  upload(file: File, path?: string, extraData?: any): Observable<any>;
3603
3725
  /**
3604
- * Convert Object to FromData
3605
- *
3606
- * @param body
3726
+ * Asynchronously uploads a file to the server
3727
+ * @param file The file to upload
3728
+ * @param path Optional relative path to the upload action (default: 'upload')
3729
+ * @param extraData Optional extra form data to include
3730
+ * @returns Promise resolving to the upload result
3731
+ */
3732
+ uploadAsync(file: File, path?: string, extraData?: any): Promise<any>;
3733
+ /**
3734
+ * Converts an object to FormData
3735
+ * @param body The object to convert
3736
+ * @returns FormData instance
3607
3737
  */
3608
3738
  protected toFormData(body: any): FormData;
3609
3739
  /**
3610
- * Convert Object to HttpHeaders
3611
- *
3612
- * @param body
3740
+ * Converts an object to HttpHeaders
3741
+ * @param body The object to convert
3742
+ * @returns HttpHeaders instance
3613
3743
  */
3614
3744
  protected toHttpHeaders(body?: Object | null): HttpHeaders;
3615
3745
  /**
3616
- * Gets file name from Httpheaders: Content-Disposition
3617
- * @param disposition
3746
+ * Normalizes the 'projection' parameter in query parameters
3747
+ * @param params The query parameters (HttpParams or object)
3748
+ * @returns Normalized query parameters with 'projection' formatted
3749
+ */
3750
+ protected normalizeProjectionParam(params?: HttpParams | Object | null): HttpParams | Object | null | undefined;
3751
+ /**
3752
+ * Extracts file name from Content-Disposition header
3753
+ * @param headers HttpHeaders containing Content-Disposition
3754
+ * @returns The extracted file name or empty string
3618
3755
  */
3619
3756
  protected getFileNameFromHeaders(headers: HttpHeaders): string;
3620
3757
  /**
3621
3758
  * Handles an HTTP operation that failed.
3622
- * Allows the application to continue by throwing a parsed error.
3623
- *
3624
- * @template T The type of the observable result.
3625
- * @param operation The name of the operation that failed. Defaults to 'operation'.
3626
- * @param result An optional value to return as the observable result.
3627
- * @returns A function that processes the error and returns an observable.
3759
+ * Throws a parsed error for the application to handle.
3760
+ * @param operation The name of the operation that failed (for logging)
3761
+ * @returns A function that processes the error and returns an observable
3628
3762
  */
3629
3763
  protected handleError(operation?: string): (error: any) => Observable<any>;
3630
3764
  /**
3631
- * Return distinct message for sent, upload progress, & response events
3632
- *
3633
- * @param event The response event
3634
- * @param file The file beeing uploaded
3765
+ * Returns a distinct message for upload events
3766
+ * @param event The HttpEvent from the upload
3767
+ * @param file The file being uploaded
3768
+ * @returns A user-friendly status message
3635
3769
  */
3636
3770
  protected getEventMessage(event: HttpEvent<any>, file: File): string;
3637
3771
  /**
3638
- * Shows upload progress.
3639
- *
3640
- * @param message
3772
+ * Logs upload progress messages to the console
3773
+ * @param message The message to log
3641
3774
  */
3642
3775
  protected showProgress(message: string): void;
3643
3776
  }
@@ -5793,6 +5926,7 @@ declare class FormFieldDefinition<TEntity = any, TProperty = any> {
5793
5926
  triggerMapper?: (x: TProperty, y?: TEntity, f?: FormGroup, ctx?: IGenericFormBaseComponent<TEntity>) => any;
5794
5927
  /**
5795
5928
  * Mode of the trigger (e.g., chip).
5929
+ * @deprecated This property is no longer used and will be removed in a future version.
5796
5930
  */
5797
5931
  triggerMode?: 'chip';
5798
5932
  /**
@@ -6020,7 +6154,7 @@ declare abstract class GenericFormBaseComponent<TEntity extends IEntity, TServic
6020
6154
  * Emitted when the form has been fully initialized
6021
6155
  * and is ready to be accessed or modified.
6022
6156
  */
6023
- formInitialized: EventEmitter<FormGroup<any> | NgForm>;
6157
+ formInitialized: EventEmitter<NgForm | FormGroup<any>>;
6024
6158
  /**
6025
6159
  * The current date.
6026
6160
  */
@@ -6226,21 +6360,14 @@ declare abstract class GenericFormBaseComponent<TEntity extends IEntity, TServic
6226
6360
  * This method traverses the form controls and marks any invalid controls as dirty and touched to trigger validation messages in the UI.
6227
6361
  * @param container The form group, array, or control to traverse.
6228
6362
  */
6229
- private markControlsAsInvalid;
6363
+ protected markControlsAsInvalid(container: FormGroup | FormArray | AbstractControl): void;
6230
6364
  /**
6231
6365
  * Recursively parses the form to collect error messages from the DOM.
6232
6366
  * This method traverses the form controls and attempts to find associated error messages in the DOM, collecting them into an array.
6233
6367
  * @param container The form group, array, or control to traverse.
6234
6368
  * @param errors The array to collect error messages into.
6235
6369
  */
6236
- private collectErrors;
6237
- /**
6238
- * Checks if the form is valid.
6239
- * This method validates the form, marks invalid controls, and shows error messages if any.
6240
- * @param form The form to check for validity.
6241
- * @returns A boolean indicating whether the form is valid.
6242
- */
6243
- isFormValidOld(form?: NgForm | FormGroup): boolean;
6370
+ protected collectErrors(container: FormGroup | FormArray | AbstractControl, errors: string[]): void;
6244
6371
  /**
6245
6372
  * Resets form controls.
6246
6373
  * This method marks all controls in the form as pristine, untouched, and updates their validity.
@@ -6352,6 +6479,17 @@ declare abstract class GenericFormBaseComponent<TEntity extends IEntity, TServic
6352
6479
  * such as disabling form controls if the form is set to be disabled.
6353
6480
  */
6354
6481
  protected onAfterFormBuild(): void;
6482
+ /**
6483
+ * Event emitted when the form is invalid.
6484
+ * This method allows performing operations when the form is found to be invalid.
6485
+ * @param errors The validation errors found in the form.
6486
+ */
6487
+ protected onAfterFormInvalid(errors: ValidationErrors | null): void;
6488
+ /**
6489
+ * Event emitted when the form is valid.
6490
+ * This method allows performing operations when the form is found to be valid.
6491
+ */
6492
+ protected onAfterFormValid(): void;
6355
6493
  /**
6356
6494
  * Event emitted when the entity has been created.
6357
6495
  */
@@ -9004,6 +9142,59 @@ interface ICanDisable {
9004
9142
  /** Mixin to augment a component or directive with a `disabled` property. */
9005
9143
  declare function mixinDisabled<T extends Constructor$1<{}>>(base: T): Constructor$1<ICanDisable> & T;
9006
9144
 
9145
+ declare class MsaEnumDisplayComponent {
9146
+ /**
9147
+ * The numeric value of the enum to convert.
9148
+ */
9149
+ readonly value: i0.InputSignal<number | null | undefined>;
9150
+ /**
9151
+ * The enum type (as an object) that defines the mapping of values to their string representations.
9152
+ * @type {any}
9153
+ */
9154
+ readonly enumType: any;
9155
+ /**
9156
+ * Optional metadata for the enum values, which can be used to provide additional display information.
9157
+ * This can be either a string prefix or an object containing EnumMetadata for each enum value.
9158
+ */
9159
+ readonly metadata: i0.InputSignal<string | {
9160
+ [key: number]: EnumMetadata;
9161
+ } | undefined>;
9162
+ /**
9163
+ * Determines whether to display the icon alongside the text.
9164
+ * Defaults to false (hidden).
9165
+ */
9166
+ readonly showIcon: i0.InputSignal<boolean>;
9167
+ /**
9168
+ * Optional entity context passed down to evaluate dynamic icon functions.
9169
+ */
9170
+ readonly entity: i0.InputSignal<any>;
9171
+ /**
9172
+ * Optional execution context passed down to evaluate dynamic icon functions.
9173
+ */
9174
+ readonly context: i0.InputSignal<any>;
9175
+ /**
9176
+ * Extracts the current metadata object if it exists for the given value.
9177
+ */
9178
+ private readonly currentMetadata;
9179
+ /**
9180
+ * Dynamically evaluates the Icon configuration properties based on whether they are static values or context functions.
9181
+ */
9182
+ readonly resolvedIcon: i0.Signal<{
9183
+ matIcon: any;
9184
+ svgIcon: any;
9185
+ fontIcon: any;
9186
+ fontSet: string;
9187
+ color: any;
9188
+ cssClass: any;
9189
+ } | null>;
9190
+ /**
9191
+ * Resolves the text to display based on metadata or enum lookup.
9192
+ */
9193
+ readonly resolvedText: i0.Signal<string>;
9194
+ static ɵfac: i0.ɵɵFactoryDeclaration<MsaEnumDisplayComponent, never>;
9195
+ static ɵcmp: i0.ɵɵComponentDeclaration<MsaEnumDisplayComponent, "msa-enum-display", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "enumType": { "alias": "enumType"; "required": false; "isSignal": true; }; "metadata": { "alias": "metadata"; "required": false; "isSignal": true; }; "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "entity": { "alias": "entity"; "required": false; "isSignal": true; }; "context": { "alias": "context"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
9196
+ }
9197
+
9007
9198
  declare const headerMetadataKey = "customer:vdHeader";
9008
9199
  declare const endpointMetadataKey = "customer:vdEndpoint";
9009
9200
 
@@ -9139,15 +9330,17 @@ declare enum Salutation {
9139
9330
  }
9140
9331
 
9141
9332
  /**
9142
- * Property decorator to add display name to a property
9143
- * @param name
9144
- * @returns
9333
+ * Property decorator to define a display name for a class property.
9334
+ * This decorator can be applied to a class property to specify its display name, which can be used in UI components or other contexts.
9335
+ * @param name The display name to associate with the property.
9336
+ * @returns A property decorator function.
9145
9337
  */
9146
9338
  declare function Display(name: string): Function;
9147
9339
  /**
9148
- * Class decorator to add endpoint to an entity
9149
- * @param endpoint
9150
- * @returns
9340
+ * Class decorator to define an API endpoint for a given class.
9341
+ * This decorator can be applied to a class to specify the API endpoint associated with it, which can be used for data retrieval or other operations.
9342
+ * @param endpoint The API endpoint to associate with the class.
9343
+ * @returns A class decorator function.
9151
9344
  */
9152
9345
  declare function Api(endpoint: string): Function;
9153
9346
 
@@ -9166,6 +9359,13 @@ declare function getEndpoint(origin: object): string;
9166
9359
  */
9167
9360
  declare function getDisplay(origin: object): string;
9168
9361
 
9362
+ /**
9363
+ * @method graphql
9364
+ * @description A tag function that tells IDEs (VS Code/WebStorm)
9365
+ * to provide GraphQL syntax highlighting without adding runtime dependencies.
9366
+ */
9367
+ declare function graphql(strings: TemplateStringsArray, ...values: any[]): string;
9368
+
9169
9369
  declare class Utils {
9170
9370
  /**
9171
9371
  * Month names
@@ -9653,7 +9853,7 @@ declare class EnumPipe implements PipeTransform {
9653
9853
  * @returns The formatted string representation of the enum value, including any specified prefixes or suffixes,
9654
9854
  * or undefined if the value is not recognized in the provided enum type.
9655
9855
  */
9656
- transform(value: number, enumType: any, prefixOrMetadata?: string | {
9856
+ transform(value: number | null | undefined, enumType: any, prefixOrMetadata?: string | {
9657
9857
  [key: number]: EnumMetadata;
9658
9858
  }, suffix?: string): any;
9659
9859
  static ɵfac: i0.ɵɵFactoryDeclaration<EnumPipe, never>;
@@ -10094,6 +10294,14 @@ declare const Templates: {
10094
10294
  idTitleTemplate: (x: any) => string;
10095
10295
  };
10096
10296
 
10297
+ /**
10298
+ * @method parseProjectionString
10299
+ * @description Parses projection input (string, string array, or raw multi-line string) into a flattened API-friendly projection string.
10300
+ * @param {string | string[]} projection The raw selection input
10301
+ * @returns {string} The formatted comma-separated string with no whitespace
10302
+ */
10303
+ declare const parseProjectionString: (projection: string | string[]) => string;
10304
+
10097
10305
  declare class VdDialogTitleDirective {
10098
10306
  static ɵfac: i0.ɵɵFactoryDeclaration<VdDialogTitleDirective, never>;
10099
10307
  static ɵdir: i0.ɵɵDirectiveDeclaration<VdDialogTitleDirective, "vd-dialog-title", never, {}, {}, never, never, true, never>;
@@ -10356,6 +10564,59 @@ declare class DatePickerHeaderComponent<D> implements OnInit, OnDestroy {
10356
10564
  static ɵcmp: i0.ɵɵComponentDeclaration<DatePickerHeaderComponent<any>, "vd-datepicker-header", never, {}, {}, never, never, true, never>;
10357
10565
  }
10358
10566
 
10567
+ /**
10568
+ * @component EditFormActionsComponent
10569
+ * @description
10570
+ * Reusable action row for edit forms.
10571
+ * Uses the provided form context to derive button states and trigger
10572
+ * standard form actions (save, apply, cancel/back).
10573
+ */
10574
+ declare class MsaEditFormActionsComponent {
10575
+ /**
10576
+ * Reference to the generic form context used by this action row.
10577
+ * @type {IGenericFormBaseComponent<any>}
10578
+ */
10579
+ context: IGenericFormBaseComponent<any>;
10580
+ /**
10581
+ * Determines if the save action is disabled.
10582
+ * Save is disabled while saving is in progress or when form is readonly.
10583
+ * @type {boolean}
10584
+ */
10585
+ get isSaveDisabled(): boolean;
10586
+ /**
10587
+ * Determines whether the apply button should be displayed.
10588
+ * Apply is only visible when the form is in edit mode.
10589
+ * @type {boolean}
10590
+ */
10591
+ get isApplyVisible(): boolean;
10592
+ /**
10593
+ * Determines if the apply action is disabled.
10594
+ * Apply is disabled while saving is in progress or when form is readonly.
10595
+ * @type {boolean}
10596
+ */
10597
+ get isApplyDisabled(): boolean;
10598
+ /**
10599
+ * Determines if the cancel action is disabled.
10600
+ * Cancel remains enabled by default.
10601
+ * @type {boolean}
10602
+ */
10603
+ get isCancelDisabled(): boolean;
10604
+ /**
10605
+ * Triggers the context save action.
10606
+ */
10607
+ onSave(): void;
10608
+ /**
10609
+ * Triggers the context apply action.
10610
+ */
10611
+ onApply(): void;
10612
+ /**
10613
+ * Triggers the context back action.
10614
+ */
10615
+ onCancel(): void;
10616
+ static ɵfac: i0.ɵɵFactoryDeclaration<MsaEditFormActionsComponent, never>;
10617
+ static ɵcmp: i0.ɵɵComponentDeclaration<MsaEditFormActionsComponent, "[msa-edit-form-actions]", never, { "context": { "alias": "context"; "required": false; }; }, {}, never, never, true, never>;
10618
+ }
10619
+
10359
10620
  /**
10360
10621
  * VdGenericFormCustomFieldDirective class
10361
10622
  */
@@ -10378,6 +10639,18 @@ declare class VdGenericFormCustomFieldDirective extends CdkPortal {
10378
10639
  static ɵdir: i0.ɵɵDirectiveDeclaration<VdGenericFormCustomFieldDirective, "[vd-generic-form-custom-field]ng-template", never, { "row": { "alias": "row"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; }, {}, never, never, true, never>;
10379
10640
  }
10380
10641
 
10642
+ /**
10643
+ * @interface VdGenericFormModifyEvent
10644
+ * @description The `VdGenericFormModifyEvent` interface defines the structure of the event emitted
10645
+ * by the `VdGenericFormComponent` when the form is initialized. It allows parent components to modify
10646
+ * the form group, field rows, or fields before dynamic subscriptions are attached.
10647
+ */
10648
+ interface VdGenericFormInitEvent {
10649
+ formGroup?: FormGroup;
10650
+ fieldRows?: FormFieldDefinition[][];
10651
+ fields?: FormFieldDefinition[];
10652
+ context?: any;
10653
+ }
10381
10654
  /**
10382
10655
  * @class VdEditorDirective
10383
10656
  * @description The `VdEditorDirective` is a custom directive that attaches a `CdkPortal`
@@ -10512,6 +10785,13 @@ declare class VdGenericFormComponent implements OnInit {
10512
10785
  * @type {boolean}
10513
10786
  */
10514
10787
  readonly?: boolean;
10788
+ /**
10789
+ * @property onInit
10790
+ * @description Emitted after fields are built and filtered, allowing parent components to mutate `formGroup`,
10791
+ * `fieldRows`, or `fields` before dynamic subscriptions are attached.
10792
+ * @type {EventEmitter<VdGenericFormInitEvent>}
10793
+ */
10794
+ onInit: EventEmitter<VdGenericFormInitEvent>;
10515
10795
  /**
10516
10796
  * @property Key codes used for separating input values.
10517
10797
  * @description The `separatorKeysCodes` is an array of key codes (e.g., for comma or enter) used for
@@ -10678,7 +10958,7 @@ declare class VdGenericFormComponent implements OnInit {
10678
10958
  */
10679
10959
  log(message: any, ...optionalParams: any[]): void;
10680
10960
  static ɵfac: i0.ɵɵFactoryDeclaration<VdGenericFormComponent, never>;
10681
- static ɵcmp: i0.ɵɵComponentDeclaration<VdGenericFormComponent, "vd-generic-form", never, { "formGroup": { "alias": "formGroup"; "required": false; }; "classType": { "alias": "classType"; "required": false; }; "formDefinition": { "alias": "formDefinition"; "required": false; }; "fieldGroups": { "alias": "fieldGroups"; "required": false; }; "groupName": { "alias": "groupName"; "required": false; }; "fieldSets": { "alias": "fieldSets"; "required": false; }; "context": { "alias": "context"; "required": false; }; "debugValue": { "alias": "debugValue"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "separatorKeysCodes": { "alias": "separatorKeysCodes"; "required": false; }; }, {}, ["editorTemplate", "codeTemplate", "fileTemplate", "customTemplate", "bottom", "customFields", "customFieldsTemplates"], never, true, never>;
10961
+ static ɵcmp: i0.ɵɵComponentDeclaration<VdGenericFormComponent, "vd-generic-form", never, { "formGroup": { "alias": "formGroup"; "required": false; }; "classType": { "alias": "classType"; "required": false; }; "formDefinition": { "alias": "formDefinition"; "required": false; }; "fieldGroups": { "alias": "fieldGroups"; "required": false; }; "groupName": { "alias": "groupName"; "required": false; }; "fieldSets": { "alias": "fieldSets"; "required": false; }; "context": { "alias": "context"; "required": false; }; "debugValue": { "alias": "debugValue"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "separatorKeysCodes": { "alias": "separatorKeysCodes"; "required": false; }; }, { "onInit": "init"; }, ["editorTemplate", "codeTemplate", "fileTemplate", "customTemplate", "bottom", "customFields", "customFieldsTemplates"], never, true, never>;
10682
10962
  }
10683
10963
 
10684
10964
  declare const formDefinitionMetadataKey = "custom:vdFormDefinition";
@@ -11119,15 +11399,17 @@ declare class RemoveWhitespaceDirective {
11119
11399
  }
11120
11400
 
11121
11401
  /**
11122
- * Class decorator to create a form
11123
- * @param formDefinition
11124
- * @returns
11402
+ * Class decorator to define a form definition for a given class.
11403
+ * This decorator can be applied to a class to specify its form configuration, including endpoint, projection, actions, and field groups.
11404
+ * @param formDefinition Optional partial configuration to customize the resulting FormDefinition.
11405
+ * @returns A class decorator function.
11125
11406
  */
11126
11407
  declare function Form<T = any>(formDefinition?: Partial<FormDefinition<T>>): Function;
11127
11408
  /**
11128
- * Property decorator to create form fields
11129
- * @param args
11130
- * @returns
11409
+ * Property decorator to create and register form fields.
11410
+ * This decorator can be applied to a class property to automatically generate and register form fields based on the provided arguments.
11411
+ * @param args Partial arguments to customize the resulting FormFieldDefinition.
11412
+ * @returns A property decorator function.
11131
11413
  */
11132
11414
  declare function FormField<TEntity = any, TProperty = any>(args: Partial<FormFieldDefinition<TEntity, TProperty>>): Function;
11133
11415
  /**
@@ -13123,11 +13405,6 @@ declare class VdSelectComponent extends AbstractSelectFormField<any> implements
13123
13405
  */
13124
13406
  get triggerCssClass(): string | undefined;
13125
13407
  set triggerCssClass(triggerCssClass: string | undefined);
13126
- /**
13127
- * Mode of the trigger.
13128
- */
13129
- get triggerMode(): string | undefined;
13130
- set triggerMode(triggerMode: 'chip' | undefined);
13131
13408
  /**
13132
13409
  * Gets the display values of the selected options for the trigger.
13133
13410
  *
@@ -13181,7 +13458,7 @@ declare class VdSelectComponent extends AbstractSelectFormField<any> implements
13181
13458
  */
13182
13459
  handleFilter($event?: Event): void;
13183
13460
  static ɵfac: i0.ɵɵFactoryDeclaration<VdSelectComponent, never>;
13184
- static ɵcmp: i0.ɵɵComponentDeclaration<VdSelectComponent, "vd-select", never, { "triggerCssClass": { "alias": "triggerCssClass"; "required": false; }; "triggerMode": { "alias": "triggerMode"; "required": false; }; }, {}, ["optionTemplate", "triggerTemplate"], never, true, never>;
13461
+ static ɵcmp: i0.ɵɵComponentDeclaration<VdSelectComponent, "vd-select", never, { "triggerCssClass": { "alias": "triggerCssClass"; "required": false; }; }, {}, ["optionTemplate", "triggerTemplate"], never, true, never>;
13185
13462
  }
13186
13463
 
13187
13464
  declare class FilterClearComponent {
@@ -13972,5 +14249,5 @@ declare class TableStaticDataSource<TEntity> extends MatTableDataSource<TEntity>
13972
14249
  getSelected: <TType>(key?: string) => TType[];
13973
14250
  }
13974
14251
 
13975
- 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, MatFormFieldRadioDirective, 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, VdDialogHeaderActionsComponent, VdDialogHeaderComponent, VdDialogMaximizeDirective, 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 };
13976
- 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 };
14252
+ 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, MatFormFieldRadioDirective, MatFormFieldReadonlyDirective, Menu, MenuClient, MenuDepartment, MenuFormIncludesResolve, MenuItem, MenuItemClient, MenuItemDepartment, MenuItemFormIncludesResolve, MenuItemService, MenuItemTarget, MenuListProjectionResolve, MenuResolve, MenuScope, MenuSettings, MenuSettingsResolve, MessageType, ModifiableEntity, MonthNamePipe, MsaEditFormActionsComponent, MsaEnumDisplayComponent, 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, VdDialogHeaderActionsComponent, VdDialogHeaderComponent, VdDialogMaximizeDirective, 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, graphql, 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, parseProjectionString, 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 };
14253
+ 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, VdGenericFormInitEvent };