@messaia/cdk 22.0.0 → 22.0.1-rc.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/messaia-cdk.mjs +425 -340
- package/fesm2022/messaia-cdk.mjs.map +1 -1
- package/package.json +1 -1
- package/types/messaia-cdk.d.ts +97 -68
package/package.json
CHANGED
package/types/messaia-cdk.d.ts
CHANGED
|
@@ -2894,7 +2894,7 @@ declare class TableColumnConfig {
|
|
|
2894
2894
|
/**
|
|
2895
2895
|
* @property
|
|
2896
2896
|
*/
|
|
2897
|
-
display?: Grid;
|
|
2897
|
+
display?: ((columnSets: string[], ctx?: any) => any) | Grid;
|
|
2898
2898
|
/**
|
|
2899
2899
|
* @property
|
|
2900
2900
|
*/
|
|
@@ -3259,7 +3259,14 @@ declare class TableColumn<TEntity = any> {
|
|
|
3259
3259
|
* The display grid for the column.
|
|
3260
3260
|
* @property
|
|
3261
3261
|
*/
|
|
3262
|
-
display?: Grid;
|
|
3262
|
+
display?: ((columnSets: string[], ctx?: IGenericListComponent<TEntity>) => any) | Grid;
|
|
3263
|
+
/**
|
|
3264
|
+
* Cached classes for responsive display visibility.
|
|
3265
|
+
* @property
|
|
3266
|
+
*/
|
|
3267
|
+
displayNgClass?: {
|
|
3268
|
+
[key: string]: boolean;
|
|
3269
|
+
};
|
|
3263
3270
|
/**
|
|
3264
3271
|
* Endpoint for additional data retrieval.
|
|
3265
3272
|
* @property
|
|
@@ -4434,10 +4441,25 @@ declare class VdDynamicTableComponent implements OnInit, AfterViewChecked {
|
|
|
4434
4441
|
*/
|
|
4435
4442
|
setNestedProperty(row: any, propertyPath: string, value: any): void;
|
|
4436
4443
|
/**
|
|
4437
|
-
*
|
|
4438
|
-
*
|
|
4439
|
-
* @param
|
|
4440
|
-
* @returns
|
|
4444
|
+
* Retrieves the display setting for a given column, which can be either a static value or a function.
|
|
4445
|
+
* If the display property is a function, it will be invoked with the current column sets and context.
|
|
4446
|
+
* @param column - The TableColumn object for which to retrieve the display setting.
|
|
4447
|
+
* @returns The display setting for the column, which can be a Grid value or undefined.
|
|
4448
|
+
*/
|
|
4449
|
+
private getColumnDisplay;
|
|
4450
|
+
/**
|
|
4451
|
+
* Computes the CSS classes for a column based on its display setting.
|
|
4452
|
+
* It maps the display value to corresponding CSS classes that control visibility and layout.
|
|
4453
|
+
* @param column - The TableColumn object for which to compute the display classes.
|
|
4454
|
+
* @returns An object containing CSS class names as keys and boolean values indicating whether the class should be applied.
|
|
4455
|
+
*/
|
|
4456
|
+
getDisplayClasses(column: TableColumn): any;
|
|
4457
|
+
/**
|
|
4458
|
+
* Computes the CSS classes for a specific row based on the column's display settings and any additional classes defined.
|
|
4459
|
+
* It combines the column's display classes, any custom classes defined in `cellNgClass`, and a 'text-right' class if `arrowBefore` is true.
|
|
4460
|
+
* @param column - The TableColumn object for which to compute the row classes.
|
|
4461
|
+
* @param row - The data object representing the current row.
|
|
4462
|
+
* @returns An object containing CSS class names as keys and boolean values indicating whether the class should be applied.
|
|
4441
4463
|
*/
|
|
4442
4464
|
getRowClasses(column: TableColumn, row: any): any;
|
|
4443
4465
|
/**
|
|
@@ -6150,7 +6172,7 @@ declare abstract class GenericFormBaseComponent<TEntity extends IEntity, TServic
|
|
|
6150
6172
|
* Emitted when the form has been fully initialized
|
|
6151
6173
|
* and is ready to be accessed or modified.
|
|
6152
6174
|
*/
|
|
6153
|
-
formInitialized: EventEmitter<
|
|
6175
|
+
formInitialized: EventEmitter<FormGroup<any> | NgForm>;
|
|
6154
6176
|
/**
|
|
6155
6177
|
* The current date.
|
|
6156
6178
|
*/
|
|
@@ -9565,13 +9587,15 @@ declare function Api(endpoint: string): Function;
|
|
|
9565
9587
|
* @returns The endpoint as a string.
|
|
9566
9588
|
*/
|
|
9567
9589
|
declare function getEndpoint(origin: object): string;
|
|
9590
|
+
|
|
9568
9591
|
/**
|
|
9569
|
-
*
|
|
9570
|
-
*
|
|
9571
|
-
* @param
|
|
9572
|
-
* @
|
|
9592
|
+
* Retrieves the display name for a given property of an instance using metadata.
|
|
9593
|
+
* @template T - The type of the instance.
|
|
9594
|
+
* @param {T} instance - The instance from which to retrieve the display name.
|
|
9595
|
+
* @param {string | symbol} propertyKey - The property key for which to retrieve the display name.
|
|
9596
|
+
* @returns {string | undefined} - The display name if found; otherwise, undefined.
|
|
9573
9597
|
*/
|
|
9574
|
-
declare function getDisplay(
|
|
9598
|
+
declare function getDisplay<T>(instance: any, propertyKey: string | symbol): string | undefined;
|
|
9575
9599
|
|
|
9576
9600
|
/**
|
|
9577
9601
|
* @method graphql
|
|
@@ -14085,50 +14109,27 @@ declare class FilterSelectComponent implements OnInit, ControlValueAccessor {
|
|
|
14085
14109
|
static ɵcmp: i0.ɵɵComponentDeclaration<FilterSelectComponent, "mat-header-cell[filter-select], [mat-header-cell][filter-select], [filter-select]", never, { "endpoint": { "alias": "endpoint"; "required": false; }; "params": { "alias": "params"; "required": false; }; "projection": { "alias": "projection"; "required": false; }; "sortBy": { "alias": "sortBy"; "required": false; }; "sorted": { "alias": "sorted"; "required": false; }; "enumFilter": { "alias": "enumFilter"; "required": false; }; "enum": { "alias": "enum"; "required": false; }; "enumMetadata": { "alias": "enumMetadata"; "required": false; }; "key": { "alias": "key"; "required": false; }; "text": { "alias": "text"; "required": false; }; "prefix": { "alias": "prefix"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "options": { "alias": "options"; "required": false; }; "filteredOptions": { "alias": "filteredOptions"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "field": { "alias": "field"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "cache": { "alias": "cache"; "required": false; }; }, {}, ["optionTemplate"], never, true, never>;
|
|
14086
14110
|
}
|
|
14087
14111
|
|
|
14088
|
-
declare const
|
|
14089
|
-
declare const
|
|
14112
|
+
declare const TABLE_DEFINITION_METADATA_KEY: unique symbol;
|
|
14113
|
+
declare const TABLE_COLUMNS_METADATA_KEY: unique symbol;
|
|
14090
14114
|
|
|
14091
|
-
|
|
14092
|
-
|
|
14093
|
-
|
|
14094
|
-
|
|
14095
|
-
|
|
14096
|
-
|
|
14097
|
-
|
|
14098
|
-
|
|
14099
|
-
|
|
14100
|
-
private _queryChange;
|
|
14101
|
-
/**
|
|
14102
|
-
* Sets query
|
|
14103
|
-
*/
|
|
14104
|
-
set dataSourceFilter(query: any);
|
|
14105
|
-
/**
|
|
14106
|
-
* Gets query
|
|
14107
|
-
*/
|
|
14108
|
-
get dataSourceFilter(): any;
|
|
14109
|
-
/**
|
|
14110
|
-
* Lifecycle hook that is called after data-bound properties of a directive are initialized.
|
|
14111
|
-
*/
|
|
14112
|
-
ngOnInit(): void;
|
|
14113
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DataSourceFilterDirective, never>;
|
|
14114
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DataSourceFilterDirective, "[dataSourceFilter]", never, { "dataSource": { "alias": "dataSource"; "required": false; }; "dataSourceFilter": { "alias": "dataSourceFilter"; "required": false; }; }, {}, never, never, true, never>;
|
|
14115
|
-
}
|
|
14115
|
+
/**
|
|
14116
|
+
* Property decorator to define a column in a table.
|
|
14117
|
+
* It sets various properties and behaviors for the column,
|
|
14118
|
+
* including its name, type, display settings, and associated actions.
|
|
14119
|
+
* @template T - The type of data represented in the table rows.
|
|
14120
|
+
* @param {Partial<TableColumn<T>>} args - Partial configuration for the table column.
|
|
14121
|
+
* @returns {Function} - A decorator function that modifies the target property.
|
|
14122
|
+
*/
|
|
14123
|
+
declare function Column<T = any>(args?: Partial<TableColumn<T>>): Function;
|
|
14116
14124
|
|
|
14117
14125
|
/**
|
|
14118
|
-
*
|
|
14126
|
+
* Decorator function to define columns for a table object.
|
|
14127
|
+
* @param type The constructor function of the table object.
|
|
14128
|
+
* @returns A decorator function.
|
|
14119
14129
|
*/
|
|
14120
|
-
declare
|
|
14121
|
-
|
|
14122
|
-
|
|
14123
|
-
*/
|
|
14124
|
-
row?: number;
|
|
14125
|
-
/**
|
|
14126
|
-
* @property
|
|
14127
|
-
*/
|
|
14128
|
-
inline: boolean;
|
|
14129
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<VdTableFieldDirective, never>;
|
|
14130
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<VdTableFieldDirective, "[vd-table-field]ng-template", never, { "row": { "alias": "row"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; }, {}, never, never, true, never>;
|
|
14131
|
-
}
|
|
14130
|
+
declare function ColumnObject<T = any>(type: {
|
|
14131
|
+
new (): T;
|
|
14132
|
+
}): Function;
|
|
14132
14133
|
|
|
14133
14134
|
/**
|
|
14134
14135
|
* Class representing the structure and behavior of a table definition.
|
|
@@ -14288,25 +14289,53 @@ declare class TableDefinition<T = any> {
|
|
|
14288
14289
|
}
|
|
14289
14290
|
|
|
14290
14291
|
/**
|
|
14291
|
-
* Class decorator to
|
|
14292
|
-
* @param tableDefinition
|
|
14293
|
-
* @returns
|
|
14292
|
+
* Class decorator to define a table with its configuration.
|
|
14293
|
+
* @param tableDefinition Optional partial table definition to customize the table's behavior and appearance.
|
|
14294
|
+
* @returns A function that takes the target class and applies the table definition metadata.
|
|
14294
14295
|
*/
|
|
14295
14296
|
declare function Table<T = any>(tableDefinition?: Partial<TableDefinition<T>>): Function;
|
|
14297
|
+
|
|
14298
|
+
declare class DataSourceFilterDirective implements OnInit {
|
|
14299
|
+
/**
|
|
14300
|
+
* DataSource instance
|
|
14301
|
+
*/
|
|
14302
|
+
dataSource?: TableDataSource<any, any>;
|
|
14303
|
+
/**
|
|
14304
|
+
* Represents a value that changes over time.
|
|
14305
|
+
* Observers can subscribe to the subject to receive filter changes
|
|
14306
|
+
*/
|
|
14307
|
+
private _queryChange;
|
|
14308
|
+
/**
|
|
14309
|
+
* Sets query
|
|
14310
|
+
*/
|
|
14311
|
+
set dataSourceFilter(query: any);
|
|
14312
|
+
/**
|
|
14313
|
+
* Gets query
|
|
14314
|
+
*/
|
|
14315
|
+
get dataSourceFilter(): any;
|
|
14316
|
+
/**
|
|
14317
|
+
* Lifecycle hook that is called after data-bound properties of a directive are initialized.
|
|
14318
|
+
*/
|
|
14319
|
+
ngOnInit(): void;
|
|
14320
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataSourceFilterDirective, never>;
|
|
14321
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DataSourceFilterDirective, "[dataSourceFilter]", never, { "dataSource": { "alias": "dataSource"; "required": false; }; "dataSourceFilter": { "alias": "dataSourceFilter"; "required": false; }; }, {}, never, never, true, never>;
|
|
14322
|
+
}
|
|
14323
|
+
|
|
14296
14324
|
/**
|
|
14297
|
-
*
|
|
14298
|
-
* @param args
|
|
14299
|
-
* @returns
|
|
14300
|
-
*/
|
|
14301
|
-
declare function Column<T = any>(args?: Partial<TableColumn<T>>): Function;
|
|
14302
|
-
/**
|
|
14303
|
-
* Decorator function to define columns for a table object.
|
|
14304
|
-
* @param type The constructor function of the table object.
|
|
14305
|
-
* @returns A decorator function.
|
|
14325
|
+
* VdTableFieldDirective class
|
|
14306
14326
|
*/
|
|
14307
|
-
declare
|
|
14308
|
-
|
|
14309
|
-
|
|
14327
|
+
declare class VdTableFieldDirective extends CdkPortal {
|
|
14328
|
+
/**
|
|
14329
|
+
* @property
|
|
14330
|
+
*/
|
|
14331
|
+
row?: number;
|
|
14332
|
+
/**
|
|
14333
|
+
* @property
|
|
14334
|
+
*/
|
|
14335
|
+
inline: boolean;
|
|
14336
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VdTableFieldDirective, never>;
|
|
14337
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<VdTableFieldDirective, "[vd-table-field]ng-template", never, { "row": { "alias": "row"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; }, {}, never, never, true, never>;
|
|
14338
|
+
}
|
|
14310
14339
|
|
|
14311
14340
|
/**
|
|
14312
14341
|
* Gets classes decoarated with @Table
|
|
@@ -14483,5 +14512,5 @@ declare class TableStaticDataSource<TEntity> extends MatTableDataSource<TEntity>
|
|
|
14483
14512
|
getSelected: <TType>(key?: string) => TType[];
|
|
14484
14513
|
}
|
|
14485
14514
|
|
|
14486
|
-
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, MatInputRequiredDirective, MatSelectRequiredDirective, Menu, MenuClient, MenuDepartment, MenuFormIncludesResolve, MenuItem, MenuItemClient, MenuItemDepartment, MenuItemFormIncludesResolve, MenuItemService, MenuItemTarget, MenuListProjectionResolve, MenuResolve, MenuScope, MenuSettings, MenuSettingsResolve, MessageType, ModifiableEntity, MonthNamePipe, MsaEditFormActionsComponent, MsaEnumDisplayComponent, MsaSelectRequiredDirective, 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, hasRequiredValidator, 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, parseProjectionArray, parseProjectionString, password, passwordAsync, pattern, patternAsync, port, prefix, primeNumber, prop, propArray, propObject, range, rangeAsync, required, requiredTrue, rtrim, rule, sanitize, startsWith, startsWithAsync, stripLow, suffix,
|
|
14515
|
+
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, MatInputRequiredDirective, MatSelectRequiredDirective, Menu, MenuClient, MenuDepartment, MenuFormIncludesResolve, MenuItem, MenuItemClient, MenuItemDepartment, MenuItemFormIncludesResolve, MenuItemService, MenuItemTarget, MenuListProjectionResolve, MenuResolve, MenuScope, MenuSettings, MenuSettingsResolve, MessageType, ModifiableEntity, MonthNamePipe, MsaEditFormActionsComponent, MsaEnumDisplayComponent, MsaSelectRequiredDirective, 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_COLUMNS_METADATA_KEY, TABLE_DEFINITION_METADATA_KEY, 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, hasRequiredValidator, 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, parseProjectionArray, parseProjectionString, password, passwordAsync, pattern, patternAsync, port, prefix, primeNumber, prop, propArray, propObject, range, rangeAsync, required, requiredTrue, rtrim, rule, sanitize, startsWith, startsWithAsync, stripLow, suffix, time, timeAsync, toBoolean, toDate, toDouble, toFloat, toInt, toString, trim, unique, updateOn, upperCase, url, urlAsync, whitelist };
|
|
14487
14516
|
export type { AppFormGroup, CanComponentDeactivate, Constructor$1 as Constructor, Delegate, DialogButtonConfig, EditorChange, EnumItem, Filter, FilterField, FormGroupExtension, IAlertConfig, IBaseComponent, ICanDisable, ICanDisableRipple, ICommonHandlerContext, IConfirmConfig, IDialogConfig, IEntity, IFormGroup, IGenericFormBaseComponent, IGenericListComponent, IGenericReactiveFormBaseComponent, ILayoutTogglable, IPromptConfig, Options, ShowConfirmationDialog, ShowTaskDialog, VdGenericFormInitEvent };
|