@messaia/cdk 21.1.0-rc.9 → 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.
@@ -3309,6 +3320,18 @@ declare class TableColumn<TEntity = any> {
3309
3320
  * @property
3310
3321
  */
3311
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;
3312
3335
  /**
3313
3336
  * The header text for the column.
3314
3337
  * @property
@@ -3481,169 +3504,273 @@ declare class TableColumn<TEntity = any> {
3481
3504
  declare class GenericService<T extends any> {
3482
3505
  endpoint?: string | undefined;
3483
3506
  /**
3484
- * Http client
3507
+ * Injected Angular HttpClient instance
3485
3508
  */
3486
3509
  http: HttpClient;
3487
3510
  /**
3488
- * List of entities
3511
+ * BehaviorSubject holding the current list of entities
3489
3512
  */
3490
3513
  list: BehaviorSubject<any[]>;
3491
3514
  /**
3492
3515
  * Constructor
3493
- *
3494
- * @param http
3516
+ * @param endpoint Optional API endpoint for the service
3495
3517
  */
3496
3518
  constructor(endpoint?: string | undefined);
3497
3519
  /**
3498
- * Gets a single entity
3499
- *
3500
- * @param id The id of the entity or relative path
3501
- * @param params Adds query params to the request
3502
- * @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)
3503
3526
  */
3504
3527
  get<T>(id: string | number, params?: Object | null, headers?: Object, handleError?: boolean, observeResponse?: boolean): Observable<any>;
3505
3528
  /**
3506
- * Counts entities
3507
- *
3508
- * @param params Adds query params to the request
3509
- * @param path A relative path to the action
3510
- * @param headers Adds headers to the request
3511
- * @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)
3512
3541
  */
3513
3542
  count(params?: Object, path?: string | null, headers?: Object, handleError?: boolean): Observable<number>;
3514
3543
  /**
3515
- * Gets a list of entities.
3516
- *
3517
- * @param params Optional. Adds query params to the request.
3518
- * @param path Optional. A relative path to the action.
3519
- * @param headers Optional. Adds headers to the request.
3520
- * @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
3521
3556
  */
3522
3557
  getList(params?: HttpParams | Object | null, path?: string | null, headers?: Object | null): Observable<any>;
3523
3558
  /**
3524
- * Loads data
3525
- * @param params Adds query params to the request
3526
- * @param path A relative path to the action
3527
- * @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
3528
3571
  */
3529
3572
  loadList(params?: Object | null, path?: string | null, headers?: Object): void;
3530
3573
  /**
3531
- * 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
3532
3588
  */
3533
3589
  getListAsObservable(): Observable<any>;
3534
3590
  /**
3535
- * Creates an entity
3536
- *
3591
+ * Creates a new entity
3537
3592
  * @param entity The entity to create
3538
- * @param path A relative path to the action
3539
- * @param httpOptions Additional http options, like headers and so on
3540
- * @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)
3541
3596
  */
3542
3597
  create<T>(entity: any, path?: string | null, httpOptions?: Object, handleError?: boolean): Observable<T>;
3543
3598
  /**
3544
- * Updates an entity
3545
- *
3546
- * @param entity The entity to update
3547
- * @param path A relative path to the action
3548
- * @param httpOptions Additional http options, like headers and so on
3549
- * @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)
3550
3613
  */
3551
3614
  update(id: string | number, entity: any, path?: string | null, httpOptions?: Object, handleError?: boolean): Observable<any>;
3552
3615
  /**
3553
- * Patches an entity
3554
- *
3555
- * @param id id The id of the item to patch
3556
- * @param body The body
3557
- * @param path A relative path to the action
3558
- * @param httpOptions Additional http options, like headers and so on
3559
- * @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)
3560
3631
  */
3561
3632
  patch(id: string | number, body: any, path?: string | null, httpOptions?: any, handleError?: boolean): Observable<any>;
3562
3633
  /**
3563
- * Patches multiple entities
3564
- *
3565
- * @param ids The ids of the items to patch
3566
- * @param body The body
3567
- * @param path A relative path to the action
3568
- * @param httpOptions Additional http options, like headers and so on
3569
- * @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)
3570
3649
  */
3571
3650
  patchList(ids: string[] | number[], body: any, path?: string | null, httpOptions?: Object, handleError?: boolean): Observable<any>;
3572
3651
  /**
3573
- * Deletes an entity.
3574
- *
3575
- * @param id The id of the item to delete
3576
- * @param path A relative path to the action
3577
- * @param httpOptions Additional http options, like headers and so on
3578
- * @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)
3579
3666
  */
3580
3667
  delete(id: string | number, path?: string | null, httpOptions?: Object, handleError?: boolean): Observable<any>;
3581
3668
  /**
3582
- * Deletes multiple entities.
3583
- *
3584
- * @param ids The ids of the items to delete
3585
- * @param path A relative path to the action
3586
- * @param httpOptions Additional http options, like headers and so on
3587
- * @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)
3588
3682
  */
3589
3683
  deleteList(ids: string[] | number[], path?: string | null, httpOptions?: Object, handleError?: boolean): Observable<any>;
3590
3684
  /**
3591
- * Downloads a file
3592
- *
3593
- * @param path A relative path to the action
3594
- * @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)
3595
3697
  */
3596
3698
  download(path: string, params?: Object, handleError?: boolean): Observable<any>;
3597
3699
  /**
3598
- * Duplicates a record
3599
- * @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
3600
3709
  */
3601
3710
  duplicate(id: number): Observable<any>;
3602
3711
  /**
3603
- * Uploads a file
3604
- *
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
3605
3719
  * @param file The file to upload
3606
- * @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
3607
3723
  */
3608
3724
  upload(file: File, path?: string, extraData?: any): Observable<any>;
3609
3725
  /**
3610
- * Convert Object to FromData
3611
- *
3612
- * @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
3613
3737
  */
3614
3738
  protected toFormData(body: any): FormData;
3615
3739
  /**
3616
- * Convert Object to HttpHeaders
3617
- *
3618
- * @param body
3740
+ * Converts an object to HttpHeaders
3741
+ * @param body The object to convert
3742
+ * @returns HttpHeaders instance
3619
3743
  */
3620
3744
  protected toHttpHeaders(body?: Object | null): HttpHeaders;
3621
3745
  /**
3622
- * Gets file name from Httpheaders: Content-Disposition
3623
- * @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
3624
3755
  */
3625
3756
  protected getFileNameFromHeaders(headers: HttpHeaders): string;
3626
3757
  /**
3627
3758
  * Handles an HTTP operation that failed.
3628
- * Allows the application to continue by throwing a parsed error.
3629
- *
3630
- * @template T The type of the observable result.
3631
- * @param operation The name of the operation that failed. Defaults to 'operation'.
3632
- * @param result An optional value to return as the observable result.
3633
- * @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
3634
3762
  */
3635
3763
  protected handleError(operation?: string): (error: any) => Observable<any>;
3636
3764
  /**
3637
- * Return distinct message for sent, upload progress, & response events
3638
- *
3639
- * @param event The response event
3640
- * @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
3641
3769
  */
3642
3770
  protected getEventMessage(event: HttpEvent<any>, file: File): string;
3643
3771
  /**
3644
- * Shows upload progress.
3645
- *
3646
- * @param message
3772
+ * Logs upload progress messages to the console
3773
+ * @param message The message to log
3647
3774
  */
3648
3775
  protected showProgress(message: string): void;
3649
3776
  }
@@ -5799,6 +5926,7 @@ declare class FormFieldDefinition<TEntity = any, TProperty = any> {
5799
5926
  triggerMapper?: (x: TProperty, y?: TEntity, f?: FormGroup, ctx?: IGenericFormBaseComponent<TEntity>) => any;
5800
5927
  /**
5801
5928
  * Mode of the trigger (e.g., chip).
5929
+ * @deprecated This property is no longer used and will be removed in a future version.
5802
5930
  */
5803
5931
  triggerMode?: 'chip';
5804
5932
  /**
@@ -6026,7 +6154,7 @@ declare abstract class GenericFormBaseComponent<TEntity extends IEntity, TServic
6026
6154
  * Emitted when the form has been fully initialized
6027
6155
  * and is ready to be accessed or modified.
6028
6156
  */
6029
- formInitialized: EventEmitter<FormGroup<any> | NgForm>;
6157
+ formInitialized: EventEmitter<NgForm | FormGroup<any>>;
6030
6158
  /**
6031
6159
  * The current date.
6032
6160
  */
@@ -6232,21 +6360,14 @@ declare abstract class GenericFormBaseComponent<TEntity extends IEntity, TServic
6232
6360
  * This method traverses the form controls and marks any invalid controls as dirty and touched to trigger validation messages in the UI.
6233
6361
  * @param container The form group, array, or control to traverse.
6234
6362
  */
6235
- private markControlsAsInvalid;
6363
+ protected markControlsAsInvalid(container: FormGroup | FormArray | AbstractControl): void;
6236
6364
  /**
6237
6365
  * Recursively parses the form to collect error messages from the DOM.
6238
6366
  * This method traverses the form controls and attempts to find associated error messages in the DOM, collecting them into an array.
6239
6367
  * @param container The form group, array, or control to traverse.
6240
6368
  * @param errors The array to collect error messages into.
6241
6369
  */
6242
- private collectErrors;
6243
- /**
6244
- * Checks if the form is valid.
6245
- * This method validates the form, marks invalid controls, and shows error messages if any.
6246
- * @param form The form to check for validity.
6247
- * @returns A boolean indicating whether the form is valid.
6248
- */
6249
- isFormValidOld(form?: NgForm | FormGroup): boolean;
6370
+ protected collectErrors(container: FormGroup | FormArray | AbstractControl, errors: string[]): void;
6250
6371
  /**
6251
6372
  * Resets form controls.
6252
6373
  * This method marks all controls in the form as pristine, untouched, and updates their validity.
@@ -6358,6 +6479,17 @@ declare abstract class GenericFormBaseComponent<TEntity extends IEntity, TServic
6358
6479
  * such as disabling form controls if the form is set to be disabled.
6359
6480
  */
6360
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;
6361
6493
  /**
6362
6494
  * Event emitted when the entity has been created.
6363
6495
  */
@@ -9010,6 +9142,59 @@ interface ICanDisable {
9010
9142
  /** Mixin to augment a component or directive with a `disabled` property. */
9011
9143
  declare function mixinDisabled<T extends Constructor$1<{}>>(base: T): Constructor$1<ICanDisable> & T;
9012
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
+
9013
9198
  declare const headerMetadataKey = "customer:vdHeader";
9014
9199
  declare const endpointMetadataKey = "customer:vdEndpoint";
9015
9200
 
@@ -9145,15 +9330,17 @@ declare enum Salutation {
9145
9330
  }
9146
9331
 
9147
9332
  /**
9148
- * Property decorator to add display name to a property
9149
- * @param name
9150
- * @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.
9151
9337
  */
9152
9338
  declare function Display(name: string): Function;
9153
9339
  /**
9154
- * Class decorator to add endpoint to an entity
9155
- * @param endpoint
9156
- * @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.
9157
9344
  */
9158
9345
  declare function Api(endpoint: string): Function;
9159
9346
 
@@ -9172,6 +9359,13 @@ declare function getEndpoint(origin: object): string;
9172
9359
  */
9173
9360
  declare function getDisplay(origin: object): string;
9174
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
+
9175
9369
  declare class Utils {
9176
9370
  /**
9177
9371
  * Month names
@@ -9659,7 +9853,7 @@ declare class EnumPipe implements PipeTransform {
9659
9853
  * @returns The formatted string representation of the enum value, including any specified prefixes or suffixes,
9660
9854
  * or undefined if the value is not recognized in the provided enum type.
9661
9855
  */
9662
- transform(value: number, enumType: any, prefixOrMetadata?: string | {
9856
+ transform(value: number | null | undefined, enumType: any, prefixOrMetadata?: string | {
9663
9857
  [key: number]: EnumMetadata;
9664
9858
  }, suffix?: string): any;
9665
9859
  static ɵfac: i0.ɵɵFactoryDeclaration<EnumPipe, never>;
@@ -10100,6 +10294,14 @@ declare const Templates: {
10100
10294
  idTitleTemplate: (x: any) => string;
10101
10295
  };
10102
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
+
10103
10305
  declare class VdDialogTitleDirective {
10104
10306
  static ɵfac: i0.ɵɵFactoryDeclaration<VdDialogTitleDirective, never>;
10105
10307
  static ɵdir: i0.ɵɵDirectiveDeclaration<VdDialogTitleDirective, "vd-dialog-title", never, {}, {}, never, never, true, never>;
@@ -10362,6 +10564,59 @@ declare class DatePickerHeaderComponent<D> implements OnInit, OnDestroy {
10362
10564
  static ɵcmp: i0.ɵɵComponentDeclaration<DatePickerHeaderComponent<any>, "vd-datepicker-header", never, {}, {}, never, never, true, never>;
10363
10565
  }
10364
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
+
10365
10620
  /**
10366
10621
  * VdGenericFormCustomFieldDirective class
10367
10622
  */
@@ -10384,6 +10639,18 @@ declare class VdGenericFormCustomFieldDirective extends CdkPortal {
10384
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>;
10385
10640
  }
10386
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
+ }
10387
10654
  /**
10388
10655
  * @class VdEditorDirective
10389
10656
  * @description The `VdEditorDirective` is a custom directive that attaches a `CdkPortal`
@@ -10518,6 +10785,13 @@ declare class VdGenericFormComponent implements OnInit {
10518
10785
  * @type {boolean}
10519
10786
  */
10520
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>;
10521
10795
  /**
10522
10796
  * @property Key codes used for separating input values.
10523
10797
  * @description The `separatorKeysCodes` is an array of key codes (e.g., for comma or enter) used for
@@ -10684,7 +10958,7 @@ declare class VdGenericFormComponent implements OnInit {
10684
10958
  */
10685
10959
  log(message: any, ...optionalParams: any[]): void;
10686
10960
  static ɵfac: i0.ɵɵFactoryDeclaration<VdGenericFormComponent, never>;
10687
- 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>;
10688
10962
  }
10689
10963
 
10690
10964
  declare const formDefinitionMetadataKey = "custom:vdFormDefinition";
@@ -11125,15 +11399,17 @@ declare class RemoveWhitespaceDirective {
11125
11399
  }
11126
11400
 
11127
11401
  /**
11128
- * Class decorator to create a form
11129
- * @param formDefinition
11130
- * @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.
11131
11406
  */
11132
11407
  declare function Form<T = any>(formDefinition?: Partial<FormDefinition<T>>): Function;
11133
11408
  /**
11134
- * Property decorator to create form fields
11135
- * @param args
11136
- * @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.
11137
11413
  */
11138
11414
  declare function FormField<TEntity = any, TProperty = any>(args: Partial<FormFieldDefinition<TEntity, TProperty>>): Function;
11139
11415
  /**
@@ -13129,11 +13405,6 @@ declare class VdSelectComponent extends AbstractSelectFormField<any> implements
13129
13405
  */
13130
13406
  get triggerCssClass(): string | undefined;
13131
13407
  set triggerCssClass(triggerCssClass: string | undefined);
13132
- /**
13133
- * Mode of the trigger.
13134
- */
13135
- get triggerMode(): string | undefined;
13136
- set triggerMode(triggerMode: 'chip' | undefined);
13137
13408
  /**
13138
13409
  * Gets the display values of the selected options for the trigger.
13139
13410
  *
@@ -13187,7 +13458,7 @@ declare class VdSelectComponent extends AbstractSelectFormField<any> implements
13187
13458
  */
13188
13459
  handleFilter($event?: Event): void;
13189
13460
  static ɵfac: i0.ɵɵFactoryDeclaration<VdSelectComponent, never>;
13190
- 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>;
13191
13462
  }
13192
13463
 
13193
13464
  declare class FilterClearComponent {
@@ -13978,5 +14249,5 @@ declare class TableStaticDataSource<TEntity> extends MatTableDataSource<TEntity>
13978
14249
  getSelected: <TType>(key?: string) => TType[];
13979
14250
  }
13980
14251
 
13981
- 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 };
13982
- 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 };