@messaia/cdk 21.1.0-rc.19 → 21.1.0-rc.20
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 +140 -3
- package/fesm2022/messaia-cdk.mjs.map +1 -1
- package/package.json +1 -1
- package/types/messaia-cdk.d.ts +55 -2
package/fesm2022/messaia-cdk.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as i3$1 from '@angular/common';
|
|
2
|
-
import { Location, getLocaleNumberSymbol, NumberSymbol, CommonModule, DecimalPipe, JsonPipe } from '@angular/common';
|
|
2
|
+
import { Location, getLocaleNumberSymbol, NumberSymbol, CommonModule, DecimalPipe, NgClass, JsonPipe } from '@angular/common';
|
|
3
3
|
import * as i1$6 from '@angular/common/http';
|
|
4
4
|
import { HttpHeaders, HttpParams, HttpClient, HttpRequest, HttpEventType, HttpResponse } from '@angular/common/http';
|
|
5
5
|
import * as i0 from '@angular/core';
|
|
6
|
-
import { Injectable, Component, Directive, ContentChildren, Optional, SkipSelf, NgZone, InjectionToken, Inject, EventEmitter, inject, ElementRef, ViewChildren, Output, Input, HostListener, forwardRef, LOCALE_ID, NgModule, Pipe, ViewChild, ChangeDetectorRef, HostAttributeToken, HostBinding, ContentChild, ViewContainerRef, TemplateRef, ChangeDetectionStrategy, Self, SimpleChange, Attribute, SecurityContext } from '@angular/core';
|
|
6
|
+
import { Injectable, Component, Directive, ContentChildren, Optional, SkipSelf, NgZone, InjectionToken, Inject, EventEmitter, inject, ElementRef, ViewChildren, Output, Input, HostListener, forwardRef, LOCALE_ID, NgModule, Pipe, input, computed, ViewChild, ChangeDetectorRef, HostAttributeToken, HostBinding, ContentChild, ViewContainerRef, TemplateRef, ChangeDetectionStrategy, Self, SimpleChange, Attribute, SecurityContext } from '@angular/core';
|
|
7
7
|
import * as i1 from '@angular/material/dialog';
|
|
8
8
|
import { MatDialogModule, MatDialogConfig, MatDialog, MAT_DIALOG_DATA, MatDialogTitle } from '@angular/material/dialog';
|
|
9
9
|
import * as i6$3 from '@angular/material/expansion';
|
|
@@ -11979,6 +11979,139 @@ function mixinDisabled(base) {
|
|
|
11979
11979
|
};
|
|
11980
11980
|
}
|
|
11981
11981
|
|
|
11982
|
+
class MsEnumDisplayComponent {
|
|
11983
|
+
/**
|
|
11984
|
+
* The numeric value of the enum to convert.
|
|
11985
|
+
*/
|
|
11986
|
+
value = input(...(ngDevMode ? [undefined, { debugName: "value" }] : /* istanbul ignore next */ []));
|
|
11987
|
+
/**
|
|
11988
|
+
* The enum type (as an object) that defines the mapping of values to their string representations.
|
|
11989
|
+
* @type {any}
|
|
11990
|
+
*/
|
|
11991
|
+
enumType = input(...(ngDevMode ? [undefined, { debugName: "enumType" }] : /* istanbul ignore next */ []));
|
|
11992
|
+
/**
|
|
11993
|
+
* Optional metadata for the enum values, which can be used to provide additional display information.
|
|
11994
|
+
* This can be either a string prefix or an object containing EnumMetadata for each enum value.
|
|
11995
|
+
*/
|
|
11996
|
+
metadata = input(...(ngDevMode ? [undefined, { debugName: "metadata" }] : /* istanbul ignore next */ []));
|
|
11997
|
+
/**
|
|
11998
|
+
* Determines whether to display the icon alongside the text.
|
|
11999
|
+
* Defaults to false (hidden).
|
|
12000
|
+
*/
|
|
12001
|
+
showIcon = input(false, ...(ngDevMode ? [{ debugName: "showIcon" }] : /* istanbul ignore next */ []));
|
|
12002
|
+
/**
|
|
12003
|
+
* Optional entity context passed down to evaluate dynamic icon functions.
|
|
12004
|
+
*/
|
|
12005
|
+
entity = input(...(ngDevMode ? [undefined, { debugName: "entity" }] : /* istanbul ignore next */ []));
|
|
12006
|
+
/**
|
|
12007
|
+
* Optional execution context passed down to evaluate dynamic icon functions.
|
|
12008
|
+
*/
|
|
12009
|
+
context = input(...(ngDevMode ? [undefined, { debugName: "context" }] : /* istanbul ignore next */ []));
|
|
12010
|
+
/**
|
|
12011
|
+
* Extracts the current metadata object if it exists for the given value.
|
|
12012
|
+
*/
|
|
12013
|
+
currentMetadata = computed(() => {
|
|
12014
|
+
/* Get the current value and metadata */
|
|
12015
|
+
const val = this.value();
|
|
12016
|
+
const meta = this.metadata();
|
|
12017
|
+
/* Check if the metadata is an object and contains the current value */
|
|
12018
|
+
if (val !== null && val !== undefined && meta && typeof meta === 'object' && val in meta) {
|
|
12019
|
+
return meta[val];
|
|
12020
|
+
}
|
|
12021
|
+
return null;
|
|
12022
|
+
}, ...(ngDevMode ? [{ debugName: "currentMetadata" }] : /* istanbul ignore next */ []));
|
|
12023
|
+
/**
|
|
12024
|
+
* Dynamically evaluates the Icon configuration properties based on whether they are static values or context functions.
|
|
12025
|
+
*/
|
|
12026
|
+
resolvedIcon = computed(() => {
|
|
12027
|
+
/* Early exit if icons are explicitly configured to be hidden */
|
|
12028
|
+
if (!this.showIcon()) {
|
|
12029
|
+
return null;
|
|
12030
|
+
}
|
|
12031
|
+
/* Retrieve the current metadata and extract the icon configuration */
|
|
12032
|
+
const meta = this.currentMetadata();
|
|
12033
|
+
const iconConfig = meta?.icon;
|
|
12034
|
+
if (!iconConfig) {
|
|
12035
|
+
return null;
|
|
12036
|
+
}
|
|
12037
|
+
/* Retrieve the entity and context for dynamic evaluation */
|
|
12038
|
+
const x = this.entity();
|
|
12039
|
+
const ctx = this.context();
|
|
12040
|
+
/* Evaluate visibility rule from layout configurations */
|
|
12041
|
+
const shouldHide = typeof iconConfig.hide === 'function' ? iconConfig.hide(x, ctx) : iconConfig.hide;
|
|
12042
|
+
if (shouldHide) {
|
|
12043
|
+
return null;
|
|
12044
|
+
}
|
|
12045
|
+
/* Helper to resolve string values or callback functions dynamically */
|
|
12046
|
+
const resolve = (prop) => typeof prop === 'function' ? prop(x, ctx) : prop;
|
|
12047
|
+
/* Return the resolved icon configuration with evaluated properties */
|
|
12048
|
+
return {
|
|
12049
|
+
matIcon: resolve(iconConfig.matIcon),
|
|
12050
|
+
svgIcon: resolve(iconConfig.svgIcon),
|
|
12051
|
+
fontIcon: resolve(iconConfig.fontIcon),
|
|
12052
|
+
fontSet: iconConfig.fontSet ?? 'material-symbols-outlined',
|
|
12053
|
+
color: resolve(iconConfig.iconColor),
|
|
12054
|
+
cssClass: resolve(iconConfig.cssClass)
|
|
12055
|
+
};
|
|
12056
|
+
}, ...(ngDevMode ? [{ debugName: "resolvedIcon" }] : /* istanbul ignore next */ []));
|
|
12057
|
+
/**
|
|
12058
|
+
* Resolves the text to display based on metadata or enum lookup.
|
|
12059
|
+
*/
|
|
12060
|
+
resolvedText = computed(() => {
|
|
12061
|
+
/* Get the current value */
|
|
12062
|
+
const val = this.value();
|
|
12063
|
+
if (val === null || val === undefined) {
|
|
12064
|
+
return '';
|
|
12065
|
+
}
|
|
12066
|
+
/* Attempt to retrieve the display string from the metadata if available */
|
|
12067
|
+
const metaObj = this.currentMetadata();
|
|
12068
|
+
if (metaObj) {
|
|
12069
|
+
return metaObj.display ?? '';
|
|
12070
|
+
}
|
|
12071
|
+
/* Fallback to enum type lookup if metadata is not available */
|
|
12072
|
+
const type = this.enumType();
|
|
12073
|
+
const metaStr = this.metadata();
|
|
12074
|
+
/* If the enum type is an object and contains the value, return the corresponding string representation with optional prefix */
|
|
12075
|
+
if (type && typeof type === 'object' && val in type) {
|
|
12076
|
+
const prefix = typeof metaStr === 'string' ? metaStr : '';
|
|
12077
|
+
return `${prefix}${type[val]}`;
|
|
12078
|
+
}
|
|
12079
|
+
return '';
|
|
12080
|
+
}, ...(ngDevMode ? [{ debugName: "resolvedText" }] : /* istanbul ignore next */ []));
|
|
12081
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: MsEnumDisplayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
12082
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.9", type: MsEnumDisplayComponent, isStandalone: true, selector: "ms-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: `
|
|
12083
|
+
@if (resolvedIcon(); as iconConfig) {
|
|
12084
|
+
<mat-icon
|
|
12085
|
+
[svgIcon]="iconConfig.svgIcon"
|
|
12086
|
+
[fontIcon]="iconConfig.fontIcon"
|
|
12087
|
+
[fontSet]="iconConfig.fontSet"
|
|
12088
|
+
[style.color]="iconConfig.color"
|
|
12089
|
+
[ngClass]="iconConfig.cssClass"
|
|
12090
|
+
class="enum-icon">
|
|
12091
|
+
@if (iconConfig.matIcon) { {{ iconConfig.matIcon }} }
|
|
12092
|
+
</mat-icon>
|
|
12093
|
+
}
|
|
12094
|
+
@let text = resolvedText();
|
|
12095
|
+
<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"] }] });
|
|
12096
|
+
}
|
|
12097
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: MsEnumDisplayComponent, decorators: [{
|
|
12098
|
+
type: Component,
|
|
12099
|
+
args: [{ selector: 'ms-enum-display', standalone: true, imports: [MatIcon, NgClass], template: `
|
|
12100
|
+
@if (resolvedIcon(); as iconConfig) {
|
|
12101
|
+
<mat-icon
|
|
12102
|
+
[svgIcon]="iconConfig.svgIcon"
|
|
12103
|
+
[fontIcon]="iconConfig.fontIcon"
|
|
12104
|
+
[fontSet]="iconConfig.fontSet"
|
|
12105
|
+
[style.color]="iconConfig.color"
|
|
12106
|
+
[ngClass]="iconConfig.cssClass"
|
|
12107
|
+
class="enum-icon">
|
|
12108
|
+
@if (iconConfig.matIcon) { {{ iconConfig.matIcon }} }
|
|
12109
|
+
</mat-icon>
|
|
12110
|
+
}
|
|
12111
|
+
@let text = resolvedText();
|
|
12112
|
+
<span class="enum-text" i18n="@@selection">{ text, select, type {type} other { {{text}}} }</span>`, styles: [".enum-icon{margin-right:.2rem;vertical-align:middle}.enum-text{vertical-align:middle}\n"] }]
|
|
12113
|
+
}], propDecorators: { value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }], enumType: [{ type: i0.Input, args: [{ isSignal: true, alias: "enumType", required: false }] }], metadata: [{ type: i0.Input, args: [{ isSignal: true, alias: "metadata", required: false }] }], showIcon: [{ type: i0.Input, args: [{ isSignal: true, alias: "showIcon", required: false }] }], entity: [{ type: i0.Input, args: [{ isSignal: true, alias: "entity", required: false }] }], context: [{ type: i0.Input, args: [{ isSignal: true, alias: "context", required: false }] }] } });
|
|
12114
|
+
|
|
11982
12115
|
const headerMetadataKey = 'customer:vdHeader';
|
|
11983
12116
|
const endpointMetadataKey = 'customer:vdEndpoint';
|
|
11984
12117
|
|
|
@@ -13628,6 +13761,10 @@ class EnumPipe {
|
|
|
13628
13761
|
* or undefined if the value is not recognized in the provided enum type.
|
|
13629
13762
|
*/
|
|
13630
13763
|
transform(value, enumType, prefixOrMetadata, suffix = '') {
|
|
13764
|
+
/* Return undefined if the value is null or undefined */
|
|
13765
|
+
if (value === null || value === undefined) {
|
|
13766
|
+
return undefined;
|
|
13767
|
+
}
|
|
13631
13768
|
/* Determine if prefixOrMetadata is an object containing EnumMetadata for the given value */
|
|
13632
13769
|
if (prefixOrMetadata && typeof prefixOrMetadata === 'object' && value in prefixOrMetadata) {
|
|
13633
13770
|
const metadata = prefixOrMetadata[value];
|
|
@@ -28573,5 +28710,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
28573
28710
|
* Generated bundle index. Do not edit.
|
|
28574
28711
|
*/
|
|
28575
28712
|
|
|
28576
|
-
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 };
|
|
28713
|
+
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, MsEnumDisplayComponent, 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 };
|
|
28577
28714
|
//# sourceMappingURL=messaia-cdk.mjs.map
|