@messaia/cdk 21.1.0-rc.27 → 21.1.0-rc.29
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 +156 -7
- package/fesm2022/messaia-cdk.mjs.map +1 -1
- package/package.json +1 -1
- package/types/messaia-cdk.d.ts +78 -4
package/fesm2022/messaia-cdk.mjs
CHANGED
|
@@ -11997,7 +11997,7 @@ function mixinDisabled(base) {
|
|
|
11997
11997
|
};
|
|
11998
11998
|
}
|
|
11999
11999
|
|
|
12000
|
-
class
|
|
12000
|
+
class MsaEnumDisplayComponent {
|
|
12001
12001
|
/**
|
|
12002
12002
|
* The numeric value of the enum to convert.
|
|
12003
12003
|
*/
|
|
@@ -12096,8 +12096,8 @@ class MsEnumDisplayComponent {
|
|
|
12096
12096
|
}
|
|
12097
12097
|
return '';
|
|
12098
12098
|
}, ...(ngDevMode ? [{ debugName: "resolvedText" }] : /* istanbul ignore next */ []));
|
|
12099
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
12100
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.9", type:
|
|
12099
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: MsaEnumDisplayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
12100
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.9", type: MsaEnumDisplayComponent, isStandalone: true, selector: "msa-enum-display", inputs: { value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, enumType: { classPropertyName: "enumType", publicName: "enumType", isSignal: true, isRequired: false, transformFunction: null }, metadata: { classPropertyName: "metadata", publicName: "metadata", isSignal: true, isRequired: false, transformFunction: null }, showIcon: { classPropertyName: "showIcon", publicName: "showIcon", isSignal: true, isRequired: false, transformFunction: null }, entity: { classPropertyName: "entity", publicName: "entity", isSignal: true, isRequired: false, transformFunction: null }, context: { classPropertyName: "context", publicName: "context", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
|
|
12101
12101
|
@if (resolvedIcon(); as iconConfig) {
|
|
12102
12102
|
<mat-icon
|
|
12103
12103
|
[svgIcon]="iconConfig.svgIcon"
|
|
@@ -12112,9 +12112,9 @@ class MsEnumDisplayComponent {
|
|
|
12112
12112
|
@let text = resolvedText();
|
|
12113
12113
|
<span class="enum-text" i18n="@@selection">{ text, select, type {type} other { {{text}}} }</span>`, isInline: true, styles: [".enum-icon{margin-right:.2rem;vertical-align:middle}.enum-text{vertical-align:middle}\n"], dependencies: [{ kind: "component", type: MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
12114
12114
|
}
|
|
12115
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type:
|
|
12115
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: MsaEnumDisplayComponent, decorators: [{
|
|
12116
12116
|
type: Component,
|
|
12117
|
-
args: [{ selector: '
|
|
12117
|
+
args: [{ selector: 'msa-enum-display', standalone: true, imports: [MatIcon, NgClass], template: `
|
|
12118
12118
|
@if (resolvedIcon(); as iconConfig) {
|
|
12119
12119
|
<mat-icon
|
|
12120
12120
|
[svgIcon]="iconConfig.svgIcon"
|
|
@@ -12444,6 +12444,15 @@ function getDisplay(origin) {
|
|
|
12444
12444
|
return Reflect.getMetadata(headerMetadataKey, origin);
|
|
12445
12445
|
}
|
|
12446
12446
|
|
|
12447
|
+
/**
|
|
12448
|
+
* @method graphql
|
|
12449
|
+
* @description A tag function that tells IDEs (VS Code/WebStorm)
|
|
12450
|
+
* to provide GraphQL syntax highlighting without adding runtime dependencies.
|
|
12451
|
+
*/
|
|
12452
|
+
function graphql(strings, ...values) {
|
|
12453
|
+
return strings.reduce((acc, str, i) => acc + str + (values[i] || ''), '');
|
|
12454
|
+
}
|
|
12455
|
+
|
|
12447
12456
|
//@dynamic
|
|
12448
12457
|
class AppStorage {
|
|
12449
12458
|
/**
|
|
@@ -14544,6 +14553,34 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
14544
14553
|
}]
|
|
14545
14554
|
}] });
|
|
14546
14555
|
|
|
14556
|
+
/**
|
|
14557
|
+
* @method parseProjectionString
|
|
14558
|
+
* @description Parses projection input (string, string array, or raw multi-line string) into a flattened API-friendly projection string.
|
|
14559
|
+
* @param {string | string[]} projection The raw selection input
|
|
14560
|
+
* @returns {string} The formatted comma-separated string with no whitespace
|
|
14561
|
+
*/
|
|
14562
|
+
const parseProjectionString = (projection) => {
|
|
14563
|
+
/* Handle array input: join and proceed to cleaning */
|
|
14564
|
+
let input = Array.isArray(projection) ? projection.join(',') : projection;
|
|
14565
|
+
/* If it's already a clean, flat, comma-separated string without braces, return it */
|
|
14566
|
+
if (!input.includes('{') && !input.includes('}')) {
|
|
14567
|
+
return input.replace(/\s+/g, '');
|
|
14568
|
+
}
|
|
14569
|
+
/* Clean the string: remove newlines, extra spaces, and replace { with ( and } with ) */
|
|
14570
|
+
let cleaned = input
|
|
14571
|
+
.replace(/\s+/g, ' ')
|
|
14572
|
+
.replace(/\s?\{\s?/g, '(')
|
|
14573
|
+
.replace(/\s?\}\s?/g, ')')
|
|
14574
|
+
.trim();
|
|
14575
|
+
/* Remove trailing commas before closing parentheses */
|
|
14576
|
+
cleaned = cleaned.replace(/,\s*\)/g, ')');
|
|
14577
|
+
/* Replace spaces between alphanumeric characters with commas and remove all remaining whitespace */
|
|
14578
|
+
return cleaned
|
|
14579
|
+
.replace(/([a-zA-Z0-9])\s+([a-zA-Z0-9])/g, '$1,$2')
|
|
14580
|
+
.replace(/\)([a-zA-Z_])/g, '),$1')
|
|
14581
|
+
.replace(/\s+/g, '');
|
|
14582
|
+
};
|
|
14583
|
+
|
|
14547
14584
|
class GenericService {
|
|
14548
14585
|
endpoint;
|
|
14549
14586
|
/**
|
|
@@ -14620,8 +14657,12 @@ class GenericService {
|
|
|
14620
14657
|
* @returns Observable with the response data
|
|
14621
14658
|
*/
|
|
14622
14659
|
getList(params, path, headers) {
|
|
14660
|
+
const parsedParams = this.normalizeProjectionParam(params);
|
|
14623
14661
|
return this.http
|
|
14624
|
-
.get(`${this.endpoint}${path ? path : ''}`, {
|
|
14662
|
+
.get(`${this.endpoint}${path ? path : ''}`, {
|
|
14663
|
+
params: parsedParams instanceof HttpParams ? parsedParams : Utils.toHttpParams(parsedParams),
|
|
14664
|
+
headers: this.toHttpHeaders(headers)
|
|
14665
|
+
})
|
|
14625
14666
|
.pipe(catchError(this.handleError('getList')));
|
|
14626
14667
|
}
|
|
14627
14668
|
/**
|
|
@@ -14947,6 +14988,37 @@ class GenericService {
|
|
|
14947
14988
|
.filter(key => body[key] != null && body[key] != '')
|
|
14948
14989
|
.reduce((p, key) => p.set(key, body[key]), new HttpHeaders());
|
|
14949
14990
|
}
|
|
14991
|
+
/**
|
|
14992
|
+
* Normalizes the 'projection' parameter in query parameters
|
|
14993
|
+
* @param params The query parameters (HttpParams or object)
|
|
14994
|
+
* @returns Normalized query parameters with 'projection' formatted
|
|
14995
|
+
*/
|
|
14996
|
+
normalizeProjectionParam(params) {
|
|
14997
|
+
/* If params is null or undefined, return it as is */
|
|
14998
|
+
if (!params) {
|
|
14999
|
+
return params;
|
|
15000
|
+
}
|
|
15001
|
+
/* If params is an instance of HttpParams, extract and normalize the 'projection' parameter */
|
|
15002
|
+
if (params instanceof HttpParams) {
|
|
15003
|
+
const projection = params.get('projection');
|
|
15004
|
+
if (!projection) {
|
|
15005
|
+
return params;
|
|
15006
|
+
}
|
|
15007
|
+
/* If projection is present, normalize it and return a new HttpParams instance with the updated projection */
|
|
15008
|
+
return params.set('projection', parseProjectionString(projection));
|
|
15009
|
+
}
|
|
15010
|
+
/* If params is a plain object, normalize the 'projection' property */
|
|
15011
|
+
const typedParams = params;
|
|
15012
|
+
if (typedParams['projection'] == null || typedParams['projection'] === '') {
|
|
15013
|
+
return params;
|
|
15014
|
+
}
|
|
15015
|
+
console.log('parseProjectionString(typedParams[\'projection\'])', parseProjectionString(typedParams['projection']));
|
|
15016
|
+
/* Normalize the 'projection' property and return a new object with the updated projection */
|
|
15017
|
+
return {
|
|
15018
|
+
...typedParams,
|
|
15019
|
+
projection: parseProjectionString(typedParams['projection'])
|
|
15020
|
+
};
|
|
15021
|
+
}
|
|
14950
15022
|
/**
|
|
14951
15023
|
* Extracts file name from Content-Disposition header
|
|
14952
15024
|
* @param headers HttpHeaders containing Content-Disposition
|
|
@@ -23030,6 +23102,83 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
23030
23102
|
args: [MAT_DATE_FORMATS]
|
|
23031
23103
|
}] }, { type: i0.ChangeDetectorRef }] });
|
|
23032
23104
|
|
|
23105
|
+
/**
|
|
23106
|
+
* @component EditFormActionsComponent
|
|
23107
|
+
* @description
|
|
23108
|
+
* Reusable action row for edit forms.
|
|
23109
|
+
* Uses the provided form context to derive button states and trigger
|
|
23110
|
+
* standard form actions (save, apply, cancel/back).
|
|
23111
|
+
*/
|
|
23112
|
+
class MsaEditFormActionsComponent {
|
|
23113
|
+
/**
|
|
23114
|
+
* Reference to the generic form context used by this action row.
|
|
23115
|
+
* @type {IGenericFormBaseComponent<any>}
|
|
23116
|
+
*/
|
|
23117
|
+
context;
|
|
23118
|
+
/**
|
|
23119
|
+
* Determines if the save action is disabled.
|
|
23120
|
+
* Save is disabled while saving is in progress or when form is readonly.
|
|
23121
|
+
* @type {boolean}
|
|
23122
|
+
*/
|
|
23123
|
+
get isSaveDisabled() {
|
|
23124
|
+
return !!(this.context.isSaving || this.context.readonly);
|
|
23125
|
+
}
|
|
23126
|
+
/**
|
|
23127
|
+
* Determines whether the apply button should be displayed.
|
|
23128
|
+
* Apply is only visible when the form is in edit mode.
|
|
23129
|
+
* @type {boolean}
|
|
23130
|
+
*/
|
|
23131
|
+
get isApplyVisible() {
|
|
23132
|
+
return !!this.context.isEditMode;
|
|
23133
|
+
}
|
|
23134
|
+
/**
|
|
23135
|
+
* Determines if the apply action is disabled.
|
|
23136
|
+
* Apply is disabled while saving is in progress or when form is readonly.
|
|
23137
|
+
* @type {boolean}
|
|
23138
|
+
*/
|
|
23139
|
+
get isApplyDisabled() {
|
|
23140
|
+
return !!(this.context.isSaving || this.context.readonly);
|
|
23141
|
+
}
|
|
23142
|
+
/**
|
|
23143
|
+
* Determines if the cancel action is disabled.
|
|
23144
|
+
* Cancel remains enabled by default.
|
|
23145
|
+
* @type {boolean}
|
|
23146
|
+
*/
|
|
23147
|
+
get isCancelDisabled() {
|
|
23148
|
+
return false;
|
|
23149
|
+
}
|
|
23150
|
+
/**
|
|
23151
|
+
* Triggers the context save action.
|
|
23152
|
+
*/
|
|
23153
|
+
onSave() {
|
|
23154
|
+
this.context.save();
|
|
23155
|
+
}
|
|
23156
|
+
/**
|
|
23157
|
+
* Triggers the context apply action.
|
|
23158
|
+
*/
|
|
23159
|
+
onApply() {
|
|
23160
|
+
this.context.apply();
|
|
23161
|
+
}
|
|
23162
|
+
/**
|
|
23163
|
+
* Triggers the context back action.
|
|
23164
|
+
*/
|
|
23165
|
+
onCancel() {
|
|
23166
|
+
this.context.back();
|
|
23167
|
+
}
|
|
23168
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: MsaEditFormActionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
23169
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.9", type: MsaEditFormActionsComponent, isStandalone: true, selector: "[msa-edit-form-actions]", inputs: { context: "context" }, ngImport: i0, template: "<button type=\"button\" mat-flat-button color=\"primary\" [disabled]=\"isSaveDisabled\" (click)=\"onSave()\" i18n=\"@@save\">Save</button>\r\n@if (isApplyVisible) {\r\n <button type=\"button\" mat-button [disabled]=\"isApplyDisabled\" (click)=\"onApply()\" i18n=\"@@apply\">Apply</button>\r\n}\r\n<button type=\"button\" mat-button [disabled]=\"isCancelDisabled\" (click)=\"onCancel()\" i18n=\"@@cancel\">Cancel</button>\r\n<span class=\"spacer\"></span>", styles: [".spacer{flex:1 1 auto}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatExpansionModule }] });
|
|
23170
|
+
}
|
|
23171
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: MsaEditFormActionsComponent, decorators: [{
|
|
23172
|
+
type: Component,
|
|
23173
|
+
args: [{ selector: '[msa-edit-form-actions]', imports: [
|
|
23174
|
+
CommonModule,
|
|
23175
|
+
MatButtonModule,
|
|
23176
|
+
MatExpansionModule
|
|
23177
|
+
], template: "<button type=\"button\" mat-flat-button color=\"primary\" [disabled]=\"isSaveDisabled\" (click)=\"onSave()\" i18n=\"@@save\">Save</button>\r\n@if (isApplyVisible) {\r\n <button type=\"button\" mat-button [disabled]=\"isApplyDisabled\" (click)=\"onApply()\" i18n=\"@@apply\">Apply</button>\r\n}\r\n<button type=\"button\" mat-button [disabled]=\"isCancelDisabled\" (click)=\"onCancel()\" i18n=\"@@cancel\">Cancel</button>\r\n<span class=\"spacer\"></span>", styles: [".spacer{flex:1 1 auto}\n"] }]
|
|
23178
|
+
}], propDecorators: { context: [{
|
|
23179
|
+
type: Input
|
|
23180
|
+
}] } });
|
|
23181
|
+
|
|
23033
23182
|
/**
|
|
23034
23183
|
* VdListOptionDirective class
|
|
23035
23184
|
*/
|
|
@@ -28760,5 +28909,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
28760
28909
|
* Generated bundle index. Do not edit.
|
|
28761
28910
|
*/
|
|
28762
28911
|
|
|
28763
|
-
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,
|
|
28912
|
+
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 };
|
|
28764
28913
|
//# sourceMappingURL=messaia-cdk.mjs.map
|