@messaia/cdk 20.2.5 → 20.2.7
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 +890 -752
- package/fesm2022/messaia-cdk.mjs.map +1 -1
- package/package.json +3 -3
- package/{index.d.ts → types/messaia-cdk.d.ts} +265 -205
|
@@ -5568,6 +5568,14 @@ declare class FormFieldDefinition<TEntity = any, TProperty = any> {
|
|
|
5568
5568
|
* @param ctx The context of the generic form component.
|
|
5569
5569
|
*/
|
|
5570
5570
|
pattern?: ((x: TEntity, f?: FormGroup, ctx?: IGenericFormBaseComponent<TEntity>) => RegExp | string) | RegExp | string;
|
|
5571
|
+
/**
|
|
5572
|
+
* Prefix text displayed before the input field.
|
|
5573
|
+
* Can be a string or a function that returns a string.
|
|
5574
|
+
* @param x The entity associated with the field.
|
|
5575
|
+
* @param f The FormGroup containing this field.
|
|
5576
|
+
* @param ctx The context of the generic form component.
|
|
5577
|
+
*/
|
|
5578
|
+
prefix?: ((x: TEntity, f?: FormGroup, ctx?: IGenericFormBaseComponent<TEntity>) => string) | string;
|
|
5571
5579
|
/**
|
|
5572
5580
|
* Projection specification for data retrieval.
|
|
5573
5581
|
* Can be a string or an array of strings.
|
|
@@ -6251,14 +6259,36 @@ declare const ValidationAlphabetLocale: {
|
|
|
6251
6259
|
[key: string]: string;
|
|
6252
6260
|
};
|
|
6253
6261
|
|
|
6262
|
+
declare function allOf(config?: ArrayConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6263
|
+
declare function allOfAsync(config?: ArrayConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6264
|
+
|
|
6254
6265
|
declare function alpha(config?: AlphaConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6255
6266
|
declare function alphaAsync(config?: AlphaConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6256
6267
|
|
|
6257
6268
|
declare function alphaNumeric(config?: AlphaConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6258
6269
|
declare function alphaNumericAsync(config?: AlphaConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6259
6270
|
|
|
6271
|
+
interface LogicalOperatorConfig extends BaseConfig {
|
|
6272
|
+
validation: PropValidationConfig;
|
|
6273
|
+
}
|
|
6274
|
+
|
|
6275
|
+
declare function and(config?: LogicalOperatorConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6276
|
+
|
|
6277
|
+
declare function ascii(config?: BaseConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6278
|
+
|
|
6279
|
+
declare function async(validators: AsyncValidatorFn[]): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6280
|
+
|
|
6281
|
+
declare function choice(config?: ChoiceConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6282
|
+
declare function choiceAsync(config?: ChoiceConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6283
|
+
|
|
6260
6284
|
declare function compare(config: CompareConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6261
6285
|
|
|
6286
|
+
interface ComposeConfig extends BaseConfigFn<ComposeConfig> {
|
|
6287
|
+
validators: ValidatorFn[];
|
|
6288
|
+
}
|
|
6289
|
+
|
|
6290
|
+
declare function compose(config?: ComposeConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6291
|
+
|
|
6262
6292
|
interface ContainsConfig extends BaseConfigFn<ContainsConfig> {
|
|
6263
6293
|
value?: string;
|
|
6264
6294
|
values?: any[];
|
|
@@ -6270,77 +6300,94 @@ declare function containsAsync(config?: ContainsConfig): (target: Object, proper
|
|
|
6270
6300
|
declare function creditCard(config: CreditCardConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6271
6301
|
declare function creditCardAsync(config?: CreditCardConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6272
6302
|
|
|
6273
|
-
declare function
|
|
6303
|
+
declare function cusip(config?: BaseConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6274
6304
|
|
|
6275
|
-
|
|
6305
|
+
interface CustomConfig {
|
|
6306
|
+
customRules: Function[];
|
|
6307
|
+
additionalValue: any;
|
|
6308
|
+
conditionalExpression?: string | Function;
|
|
6309
|
+
}
|
|
6276
6310
|
|
|
6277
|
-
declare function
|
|
6311
|
+
declare function custom(config?: CustomConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6312
|
+
declare function customAsync(config?: CustomConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6278
6313
|
|
|
6279
|
-
declare function
|
|
6314
|
+
declare function dataUri(config?: BaseConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6280
6315
|
|
|
6281
|
-
|
|
6282
|
-
|
|
6316
|
+
interface BaseDateConfig extends BaseConfigFn<BaseDateConfig> {
|
|
6317
|
+
allowISODate?: boolean;
|
|
6318
|
+
dateFormat?: string;
|
|
6319
|
+
isValid?: Function;
|
|
6320
|
+
}
|
|
6283
6321
|
|
|
6284
|
-
declare function
|
|
6285
|
-
declare function
|
|
6322
|
+
declare function date(config?: BaseDateConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6323
|
+
declare function dateAsync(config?: BaseDateConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6286
6324
|
|
|
6287
|
-
declare function
|
|
6288
|
-
declare function minDateAsync(config?: MinDateConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6325
|
+
declare function different(config: DifferentConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6289
6326
|
|
|
6290
|
-
declare function
|
|
6291
|
-
declare function maxNumberAsync(config?: NumberConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6327
|
+
declare function digit(config?: DigitConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6292
6328
|
|
|
6293
|
-
declare function
|
|
6294
|
-
declare function minLengthAsync(config?: NumberConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6329
|
+
declare function email(config?: EmailConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6295
6330
|
|
|
6296
|
-
|
|
6297
|
-
|
|
6331
|
+
interface StringValueConfig extends DefaultConfig {
|
|
6332
|
+
values?: any[];
|
|
6333
|
+
}
|
|
6298
6334
|
|
|
6299
|
-
declare function
|
|
6300
|
-
declare function
|
|
6335
|
+
declare function endsWith(config: StringValueConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6336
|
+
declare function endsWithAsync(config?: StringValueConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6301
6337
|
|
|
6302
|
-
declare function
|
|
6303
|
-
declare function patternAsync(config?: PatternConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6338
|
+
declare function even(config?: BaseConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6304
6339
|
|
|
6305
|
-
declare function
|
|
6340
|
+
declare function extension(config: ExtensionConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6341
|
+
declare function extensionAsync(config?: ExtensionConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6306
6342
|
|
|
6307
|
-
declare function
|
|
6343
|
+
declare function factor(config?: FactorConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6344
|
+
declare function factorAsync(config?: FactorConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6308
6345
|
|
|
6309
|
-
|
|
6346
|
+
interface FileConfig extends BaseConfigFn<FileConfig> {
|
|
6347
|
+
maxFiles?: number;
|
|
6348
|
+
minFiles?: number;
|
|
6349
|
+
}
|
|
6310
6350
|
|
|
6311
|
-
declare function
|
|
6312
|
-
declare function
|
|
6351
|
+
declare function file(config?: FileConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6352
|
+
declare function fileAsync(config?: FileConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6313
6353
|
|
|
6314
|
-
|
|
6315
|
-
|
|
6354
|
+
declare function fileSize(config: SizeConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6355
|
+
declare function fileSizeAsync(config?: SizeConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6316
6356
|
|
|
6317
|
-
declare function
|
|
6357
|
+
declare function greaterThanEqualTo(config: RelationalOperatorConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6358
|
+
declare function greaterThanEqualToAsync(config?: RelationalOperatorConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6318
6359
|
|
|
6319
|
-
declare function
|
|
6360
|
+
declare function greaterThan(config: RelationalOperatorConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6361
|
+
declare function greaterThanAsync(config?: RelationalOperatorConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6320
6362
|
|
|
6321
|
-
declare function
|
|
6322
|
-
declare function timeAsync(config?: TimeConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6363
|
+
declare function grid(config?: BaseConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6323
6364
|
|
|
6324
|
-
declare
|
|
6325
|
-
|
|
6326
|
-
|
|
6327
|
-
|
|
6365
|
+
declare function hexColor(config?: MessageConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6366
|
+
|
|
6367
|
+
interface IBANConfig extends BaseConfigFn<IBANConfig> {
|
|
6368
|
+
countryCode?: string;
|
|
6328
6369
|
}
|
|
6329
6370
|
|
|
6330
|
-
|
|
6331
|
-
|
|
6371
|
+
declare function iban(config?: IBANConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6372
|
+
declare function ibanAsync(config?: IBANConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6373
|
+
|
|
6374
|
+
interface ImageConfig extends BaseConfigFn<ImageConfig> {
|
|
6375
|
+
maxWidth?: number;
|
|
6376
|
+
maxHeight?: number;
|
|
6377
|
+
minWidth?: number;
|
|
6378
|
+
minHeight?: number;
|
|
6332
6379
|
}
|
|
6333
6380
|
|
|
6334
|
-
declare function
|
|
6335
|
-
declare function
|
|
6381
|
+
declare function image(config?: ImageConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6382
|
+
declare function imageAsync(config?: ImageConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6336
6383
|
|
|
6337
6384
|
declare function json(config?: DefaultConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6338
6385
|
|
|
6339
|
-
declare function
|
|
6340
|
-
declare function greaterThanAsync(config?: RelationalOperatorConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6386
|
+
declare function latitude(config?: BaseConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6341
6387
|
|
|
6342
|
-
declare function
|
|
6343
|
-
|
|
6388
|
+
declare function latLong(config?: BaseConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6389
|
+
|
|
6390
|
+
declare function leapYear(config?: BaseConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6344
6391
|
|
|
6345
6392
|
declare function lessThanEqualTo(config: RelationalOperatorConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6346
6393
|
declare function lessThanEqualToAsync(config?: RelationalOperatorConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
@@ -6348,169 +6395,154 @@ declare function lessThanEqualToAsync(config?: RelationalOperatorConfig): (targe
|
|
|
6348
6395
|
declare function lessThan(config: RelationalOperatorConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6349
6396
|
declare function lessThanAsync(config?: RelationalOperatorConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6350
6397
|
|
|
6351
|
-
declare function
|
|
6352
|
-
declare function choiceAsync(config?: ChoiceConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6353
|
-
|
|
6354
|
-
declare function different(config: DifferentConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6355
|
-
|
|
6356
|
-
declare function numeric(config?: NumericConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6357
|
-
declare function numericAsync(config?: NumericConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6398
|
+
declare function longitude(config?: BaseConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6358
6399
|
|
|
6359
|
-
declare function
|
|
6400
|
+
declare function lowerCase(config?: MessageConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6360
6401
|
|
|
6361
|
-
declare function
|
|
6402
|
+
declare function mac(config?: BaseConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6362
6403
|
|
|
6363
|
-
|
|
6364
|
-
|
|
6404
|
+
interface MaskConfig extends BaseConfigFn<MaskConfig> {
|
|
6405
|
+
mask: string;
|
|
6406
|
+
minLength?: number;
|
|
6407
|
+
valueWithMask?: boolean;
|
|
6408
|
+
}
|
|
6365
6409
|
|
|
6366
|
-
declare function
|
|
6410
|
+
declare function mask(config?: MaskConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6367
6411
|
|
|
6368
|
-
declare function
|
|
6369
|
-
declare function
|
|
6412
|
+
declare function maxDate(config: MaxDateConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6413
|
+
declare function maxDateAsync(config?: MaxDateConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6370
6414
|
|
|
6371
|
-
declare function
|
|
6372
|
-
declare function
|
|
6415
|
+
declare function maxLength(config: NumberConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6416
|
+
declare function maxLengthAsync(config?: NumberConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6373
6417
|
|
|
6374
|
-
declare function
|
|
6375
|
-
declare function
|
|
6418
|
+
declare function maxNumber(config: NumberConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6419
|
+
declare function maxNumberAsync(config?: NumberConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6376
6420
|
|
|
6377
|
-
declare function
|
|
6421
|
+
declare function maxTime(config: MaxTimeConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6422
|
+
declare function maxTimeAsync(config?: MaxTimeConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6378
6423
|
|
|
6379
|
-
declare function
|
|
6424
|
+
declare function minDate(config: MinDateConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6425
|
+
declare function minDateAsync(config?: MinDateConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6380
6426
|
|
|
6381
|
-
declare function
|
|
6427
|
+
declare function minLength(config: NumberConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6428
|
+
declare function minLengthAsync(config?: NumberConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6382
6429
|
|
|
6383
|
-
declare function
|
|
6430
|
+
declare function minNumber(config: NumberConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6431
|
+
declare function minNumberAsync(config?: NumberConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6384
6432
|
|
|
6385
|
-
declare function
|
|
6433
|
+
declare function minTime(config: MinTimeConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6434
|
+
declare function minTimeAsync(config?: MinTimeConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6386
6435
|
|
|
6387
|
-
|
|
6388
|
-
|
|
6436
|
+
interface ModelConfig {
|
|
6437
|
+
propNames: string[];
|
|
6438
|
+
excludePropNames?: string[];
|
|
6439
|
+
}
|
|
6389
6440
|
|
|
6390
|
-
|
|
6391
|
-
|
|
6441
|
+
interface ErrorConfig {
|
|
6442
|
+
conditionalExpression?: Function;
|
|
6443
|
+
}
|
|
6392
6444
|
|
|
6393
|
-
interface
|
|
6394
|
-
|
|
6445
|
+
interface DisableConfig {
|
|
6446
|
+
conditionalExpression?: Function;
|
|
6395
6447
|
}
|
|
6396
6448
|
|
|
6397
|
-
|
|
6398
|
-
|
|
6449
|
+
interface ElementClassConfig {
|
|
6450
|
+
conditionalExpression?: Function;
|
|
6451
|
+
}
|
|
6399
6452
|
|
|
6400
|
-
interface
|
|
6401
|
-
|
|
6402
|
-
|
|
6453
|
+
interface PropsConfig extends ModelConfig {
|
|
6454
|
+
validationConfig?: PropValidationConfig;
|
|
6455
|
+
error?: ErrorConfig;
|
|
6456
|
+
disable?: DisableConfig;
|
|
6457
|
+
elementClass?: ElementClassConfig;
|
|
6458
|
+
ignore?: (x: any) => boolean;
|
|
6403
6459
|
}
|
|
6404
6460
|
|
|
6405
|
-
declare function
|
|
6406
|
-
declare function startsWithAsync(config?: StringComparisonConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6461
|
+
declare function model(config?: PropsConfig[]): (target: Object) => void;
|
|
6407
6462
|
|
|
6408
|
-
declare function
|
|
6463
|
+
declare function disable(config?: DisableConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6409
6464
|
|
|
6410
|
-
declare function
|
|
6465
|
+
declare function elementClass(config?: ElementClassConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6411
6466
|
|
|
6412
|
-
declare function
|
|
6467
|
+
declare function error(config?: ErrorConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6413
6468
|
|
|
6414
|
-
interface
|
|
6415
|
-
|
|
6416
|
-
conditionalExpression?: string | Function;
|
|
6469
|
+
interface UpdateOnConfig {
|
|
6470
|
+
runOn: 'change' | 'blur' | 'submit';
|
|
6417
6471
|
}
|
|
6418
6472
|
|
|
6419
|
-
declare function
|
|
6420
|
-
|
|
6421
|
-
interface FileConfig extends BaseConfigFn<FileConfig> {
|
|
6422
|
-
maxFiles?: number;
|
|
6423
|
-
minFiles?: number;
|
|
6424
|
-
}
|
|
6473
|
+
declare function updateOn(config: UpdateOnConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6425
6474
|
|
|
6426
|
-
declare function
|
|
6427
|
-
declare function
|
|
6475
|
+
declare function noneOf(config?: ArrayConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6476
|
+
declare function noneOfAsync(config?: ArrayConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6428
6477
|
|
|
6429
|
-
|
|
6430
|
-
customRules: Function[];
|
|
6431
|
-
additionalValue: any;
|
|
6432
|
-
conditionalExpression?: string | Function;
|
|
6433
|
-
}
|
|
6478
|
+
declare function not(config?: LogicalOperatorConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6434
6479
|
|
|
6435
|
-
declare function
|
|
6436
|
-
declare function customAsync(config?: CustomConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6480
|
+
declare function notEmpty(config?: BaseConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6437
6481
|
|
|
6438
|
-
|
|
6439
|
-
|
|
6440
|
-
}
|
|
6482
|
+
declare function numeric(config?: NumericConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6483
|
+
declare function numericAsync(config?: NumericConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6441
6484
|
|
|
6442
|
-
declare function
|
|
6485
|
+
declare function odd(config?: BaseConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6443
6486
|
|
|
6444
|
-
|
|
6445
|
-
|
|
6446
|
-
maxHeight?: number;
|
|
6447
|
-
minWidth?: number;
|
|
6448
|
-
minHeight?: number;
|
|
6449
|
-
}
|
|
6487
|
+
declare function oneOf(config?: ArrayConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6488
|
+
declare function oneOfAsync(config?: ArrayConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6450
6489
|
|
|
6451
|
-
declare function
|
|
6452
|
-
declare function imageAsync(config?: ImageConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6490
|
+
declare function or(config?: LogicalOperatorConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6453
6491
|
|
|
6454
|
-
declare function
|
|
6492
|
+
declare function password(config: PasswordConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6493
|
+
declare function passwordAsync(config?: PasswordConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6455
6494
|
|
|
6456
|
-
declare function
|
|
6495
|
+
declare function pattern(config: PatternConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6496
|
+
declare function patternAsync(config?: PatternConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6457
6497
|
|
|
6458
|
-
declare function
|
|
6498
|
+
declare function port(config?: BaseConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6459
6499
|
|
|
6460
|
-
declare function
|
|
6500
|
+
declare function primeNumber(config?: BaseConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6461
6501
|
|
|
6462
|
-
|
|
6463
|
-
allowISODate?: boolean;
|
|
6464
|
-
dateFormat?: string;
|
|
6465
|
-
isValid?: Function;
|
|
6466
|
-
}
|
|
6502
|
+
declare function propArray<T>(entity?: Type<T>, config?: PropArrayConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6467
6503
|
|
|
6468
|
-
declare function
|
|
6469
|
-
declare function dateAsync(config?: BaseDateConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6504
|
+
declare function propObject<T>(entity?: Type<T>, config?: PropObjectConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6470
6505
|
|
|
6471
|
-
|
|
6472
|
-
conditionalExpression?: Function;
|
|
6473
|
-
}
|
|
6506
|
+
declare function prop(config?: PropConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6474
6507
|
|
|
6475
|
-
declare function
|
|
6508
|
+
declare function range(config: RangeConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6509
|
+
declare function rangeAsync(config?: RangeConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6476
6510
|
|
|
6477
|
-
interface
|
|
6478
|
-
conditionalExpression?: Function;
|
|
6511
|
+
interface RequiredConfig extends BaseConfigFn<RequiredConfig> {
|
|
6479
6512
|
}
|
|
6480
6513
|
|
|
6481
|
-
declare function
|
|
6514
|
+
declare function required(config?: RequiredConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6482
6515
|
|
|
6483
|
-
|
|
6484
|
-
validation: PropValidationConfig;
|
|
6485
|
-
}
|
|
6516
|
+
declare function requiredTrue(config?: RequiredConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6486
6517
|
|
|
6487
|
-
|
|
6518
|
+
interface RuleConfig {
|
|
6519
|
+
customRules: Function[];
|
|
6520
|
+
conditionalExpression?: string | Function;
|
|
6521
|
+
}
|
|
6488
6522
|
|
|
6489
|
-
declare function
|
|
6523
|
+
declare function rule(config?: RuleConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6490
6524
|
|
|
6491
|
-
declare function
|
|
6525
|
+
declare function blacklist(chars: string): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6492
6526
|
|
|
6493
|
-
declare function
|
|
6527
|
+
declare function escape(): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6494
6528
|
|
|
6495
6529
|
declare function ltrim(): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6496
6530
|
|
|
6497
|
-
declare function
|
|
6498
|
-
|
|
6499
|
-
declare function blacklist(chars: string): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6500
|
-
|
|
6501
|
-
declare function stripLow(keepNewLines?: boolean): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6531
|
+
declare function prefix(text: string): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6502
6532
|
|
|
6503
|
-
declare function
|
|
6533
|
+
declare function rtrim(): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6504
6534
|
|
|
6505
|
-
|
|
6535
|
+
interface SanitizeConfig {
|
|
6536
|
+
custom: Function;
|
|
6537
|
+
}
|
|
6506
6538
|
|
|
6507
|
-
declare function
|
|
6539
|
+
declare function sanitize(config: SanitizeConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6508
6540
|
|
|
6509
|
-
declare function
|
|
6541
|
+
declare function stripLow(keepNewLines?: boolean): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6510
6542
|
|
|
6511
|
-
declare function
|
|
6543
|
+
declare function suffix(text: string): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6512
6544
|
|
|
6513
|
-
declare function
|
|
6545
|
+
declare function toBoolean(strict?: boolean): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6514
6546
|
|
|
6515
6547
|
interface ToDateConfig {
|
|
6516
6548
|
allowISODate?: boolean;
|
|
@@ -6518,66 +6550,49 @@ interface ToDateConfig {
|
|
|
6518
6550
|
|
|
6519
6551
|
declare function toDate(config?: ToDateConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6520
6552
|
|
|
6521
|
-
declare function
|
|
6522
|
-
|
|
6523
|
-
declare function prefix(text: string): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6553
|
+
declare function toDouble(): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6524
6554
|
|
|
6525
|
-
declare function
|
|
6555
|
+
declare function toFloat(): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6526
6556
|
|
|
6527
|
-
|
|
6528
|
-
propNames: string[];
|
|
6529
|
-
excludePropNames?: string[];
|
|
6530
|
-
}
|
|
6557
|
+
declare function toInt(radix?: number): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6531
6558
|
|
|
6532
|
-
|
|
6533
|
-
conditionalExpression?: Function;
|
|
6534
|
-
}
|
|
6559
|
+
declare function toString(): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6535
6560
|
|
|
6536
|
-
|
|
6537
|
-
validationConfig?: PropValidationConfig;
|
|
6538
|
-
error?: ErrorConfig;
|
|
6539
|
-
disable?: DisableConfig;
|
|
6540
|
-
elementClass?: ElementClassConfig;
|
|
6541
|
-
ignore?: (x: any) => boolean;
|
|
6542
|
-
}
|
|
6561
|
+
declare function trim(): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6543
6562
|
|
|
6544
|
-
declare function
|
|
6563
|
+
declare function whitelist(chars: string): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6545
6564
|
|
|
6546
|
-
interface
|
|
6547
|
-
|
|
6565
|
+
interface StringComparisonConfig extends DefaultConfig {
|
|
6566
|
+
isRestrict?: boolean;
|
|
6567
|
+
values?: any[];
|
|
6548
6568
|
}
|
|
6549
6569
|
|
|
6550
|
-
declare function
|
|
6551
|
-
|
|
6552
|
-
declare function elementClass(config?: ElementClassConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6553
|
-
|
|
6554
|
-
declare function minTime(config: MinTimeConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6555
|
-
declare function minTimeAsync(config?: MinTimeConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6570
|
+
declare function startsWith(config: StringComparisonConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6571
|
+
declare function startsWithAsync(config?: StringComparisonConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6556
6572
|
|
|
6557
|
-
declare function
|
|
6558
|
-
declare function
|
|
6573
|
+
declare function time(config?: TimeConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6574
|
+
declare function timeAsync(config?: TimeConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6559
6575
|
|
|
6560
|
-
interface
|
|
6561
|
-
|
|
6576
|
+
interface UniqueConfig extends BaseConfigFn<UniqueConfig> {
|
|
6577
|
+
additionalValidation?: Function;
|
|
6562
6578
|
}
|
|
6563
6579
|
|
|
6564
|
-
declare function
|
|
6580
|
+
declare function unique(config?: UniqueConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6565
6581
|
|
|
6566
|
-
declare function
|
|
6582
|
+
declare function upperCase(config?: MessageConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6567
6583
|
|
|
6568
|
-
|
|
6569
|
-
|
|
6570
|
-
|
|
6571
|
-
|
|
6584
|
+
declare enum UrlValidationType {
|
|
6585
|
+
FQDN = 1,
|
|
6586
|
+
LocalHost = 2,
|
|
6587
|
+
IntranetServer = 3
|
|
6572
6588
|
}
|
|
6573
6589
|
|
|
6574
|
-
|
|
6575
|
-
|
|
6576
|
-
interface UpdateOnConfig {
|
|
6577
|
-
runOn: 'change' | 'blur' | 'submit';
|
|
6590
|
+
interface UrlConfig extends BaseConfigFn<UrlConfig> {
|
|
6591
|
+
urlValidationType?: UrlValidationType;
|
|
6578
6592
|
}
|
|
6579
6593
|
|
|
6580
|
-
declare function
|
|
6594
|
+
declare function url(config?: UrlConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6595
|
+
declare function urlAsync(config?: UrlConfig): (target: Object, propertyKey: string, parameterIndex?: any) => void;
|
|
6581
6596
|
|
|
6582
6597
|
/**
|
|
6583
6598
|
* Abstract base directive for applying validations to form controls.
|
|
@@ -7601,10 +7616,6 @@ declare function requiredTrueValidatorExtension(config?: MessageConfig): Validat
|
|
|
7601
7616
|
|
|
7602
7617
|
declare function maskValidatorExtension(config?: MaskConfig): ValidatorFn;
|
|
7603
7618
|
|
|
7604
|
-
interface IBANConfig extends BaseConfigFn<IBANConfig> {
|
|
7605
|
-
countryCode?: string;
|
|
7606
|
-
}
|
|
7607
|
-
|
|
7608
7619
|
declare function ibanValidatorExtension(config?: IBANConfig): ValidatorFn;
|
|
7609
7620
|
declare function ibanAsyncValidatorExtension(config?: IBANConfig): AsyncValidatorFn;
|
|
7610
7621
|
|
|
@@ -9556,23 +9567,32 @@ declare class MonthNamePipe implements PipeTransform {
|
|
|
9556
9567
|
}
|
|
9557
9568
|
|
|
9558
9569
|
declare class OnlyNumberDirective {
|
|
9559
|
-
private
|
|
9570
|
+
private el;
|
|
9560
9571
|
/**
|
|
9561
|
-
*
|
|
9562
|
-
* @
|
|
9572
|
+
* Enables or disables numeric-only input.
|
|
9573
|
+
* @type {boolean}
|
|
9563
9574
|
*/
|
|
9564
|
-
|
|
9575
|
+
onlyNumber: boolean;
|
|
9565
9576
|
/**
|
|
9566
|
-
*
|
|
9577
|
+
* @property Optional prefix that is excluded from numeric validation.
|
|
9578
|
+
* Example: 'DE'
|
|
9579
|
+
* @type {string | undefined}
|
|
9567
9580
|
*/
|
|
9568
|
-
|
|
9581
|
+
excludePrefix?: string;
|
|
9569
9582
|
/**
|
|
9570
|
-
*
|
|
9571
|
-
* @param
|
|
9583
|
+
* constructor
|
|
9584
|
+
* @param element Reference to the host input element
|
|
9572
9585
|
*/
|
|
9573
|
-
|
|
9586
|
+
constructor(el: ElementRef<HTMLInputElement>);
|
|
9587
|
+
/**
|
|
9588
|
+
* Handles keydown events and allows only numeric input
|
|
9589
|
+
* after the excluded prefix.
|
|
9590
|
+
*
|
|
9591
|
+
* @param event Keyboard event
|
|
9592
|
+
*/
|
|
9593
|
+
onKeyDown(event: KeyboardEvent): void;
|
|
9574
9594
|
static ɵfac: i0.ɵɵFactoryDeclaration<OnlyNumberDirective, never>;
|
|
9575
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<OnlyNumberDirective, "[onlyNumber]", never, { "onlyNumber": { "alias": "onlyNumber"; "required": false; }; }, {}, never, never, true, never>;
|
|
9595
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<OnlyNumberDirective, "[onlyNumber]", never, { "onlyNumber": { "alias": "onlyNumber"; "required": false; }; "excludePrefix": { "alias": "excludePrefix"; "required": false; }; }, {}, never, never, true, never>;
|
|
9576
9596
|
}
|
|
9577
9597
|
|
|
9578
9598
|
declare class OrderPipe implements PipeTransform {
|
|
@@ -10607,6 +10627,46 @@ declare class ParseDecimalDirective {
|
|
|
10607
10627
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ParseDecimalDirective, "[parseDecimal]", never, { "parseDecimalEnabled": { "alias": "parseDecimalEnabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
10608
10628
|
}
|
|
10609
10629
|
|
|
10630
|
+
/**
|
|
10631
|
+
* Directive that optionally enforces a fixed, non-removable prefix
|
|
10632
|
+
* at the beginning of an input field.
|
|
10633
|
+
*/
|
|
10634
|
+
declare class PrefixDirective implements OnInit {
|
|
10635
|
+
private el;
|
|
10636
|
+
/**
|
|
10637
|
+
* @property Optional prefix that should be enforced at the beginning
|
|
10638
|
+
* of the input value. If undefined or empty, the directive is inactive.
|
|
10639
|
+
* @type {string | undefined}
|
|
10640
|
+
*/
|
|
10641
|
+
prefix?: string;
|
|
10642
|
+
/**
|
|
10643
|
+
* @constructor
|
|
10644
|
+
* @param el Reference to the native input element.
|
|
10645
|
+
*/
|
|
10646
|
+
constructor(el: ElementRef<HTMLInputElement>);
|
|
10647
|
+
/**
|
|
10648
|
+
* Lifecycle hook invoked after input bindings are initialized.
|
|
10649
|
+
* Applies the prefix only if it is defined.
|
|
10650
|
+
*/
|
|
10651
|
+
ngOnInit(): void;
|
|
10652
|
+
/**
|
|
10653
|
+
* Host listener for the native `input` event.
|
|
10654
|
+
* Restores the prefix if it was removed (e.g. via paste),
|
|
10655
|
+
* only when a prefix is configured.
|
|
10656
|
+
*/
|
|
10657
|
+
onInput(): void;
|
|
10658
|
+
/**
|
|
10659
|
+
* Host listener for the native `keydown` event.
|
|
10660
|
+
* Prevents deleting or modifying the prefix using Backspace or Delete,
|
|
10661
|
+
* only when a prefix is configured.
|
|
10662
|
+
*
|
|
10663
|
+
* @param event Keyboard event triggered by user input.
|
|
10664
|
+
*/
|
|
10665
|
+
onKeyDown(event: KeyboardEvent): void;
|
|
10666
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PrefixDirective, never>;
|
|
10667
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PrefixDirective, "[prefix]", never, { "prefix": { "alias": "prefix"; "required": false; }; }, {}, never, never, true, never>;
|
|
10668
|
+
}
|
|
10669
|
+
|
|
10610
10670
|
/**
|
|
10611
10671
|
* Class decorator to create a form
|
|
10612
10672
|
* @param formDefinition
|
|
@@ -13476,5 +13536,5 @@ declare class TableStaticDataSource<TEntity> extends MatTableDataSource<TEntity>
|
|
|
13476
13536
|
getSelected: <TType>(key?: string) => TType[];
|
|
13477
13537
|
}
|
|
13478
13538
|
|
|
13479
|
-
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, 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, PrintService, PropertyJoinPipe, ReactiveFormConfig, ReactiveTypedFormsModule, 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, 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, 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 };
|
|
13539
|
+
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, 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, 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, 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 };
|
|
13480
13540
|
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 };
|