cps-ui-kit 21.12.0 → 21.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/cps-ui-kit.mjs +77 -52
- package/fesm2022/cps-ui-kit.mjs.map +1 -1
- package/package.json +1 -1
- package/types/cps-ui-kit.d.ts +204 -1
package/fesm2022/cps-ui-kit.mjs
CHANGED
|
@@ -6087,7 +6087,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.10", ngImpo
|
|
|
6087
6087
|
* @see {@link https://docs.aws.amazon.com/scheduler/latest/UserGuide/schedule-types.html#cron-based | AWS EventBridge Scheduler - Cron-based schedules}
|
|
6088
6088
|
* @group Services
|
|
6089
6089
|
*/
|
|
6090
|
-
class
|
|
6090
|
+
class CpsCronValidationService {
|
|
6091
6091
|
/**
|
|
6092
6092
|
* Validates a complete 6-field cron expression.
|
|
6093
6093
|
*
|
|
@@ -6107,7 +6107,7 @@ class CronValidationService {
|
|
|
6107
6107
|
if (parts.length !== 6) {
|
|
6108
6108
|
return false;
|
|
6109
6109
|
}
|
|
6110
|
-
return this.
|
|
6110
|
+
return this._validateCronFields(parts);
|
|
6111
6111
|
}
|
|
6112
6112
|
/**
|
|
6113
6113
|
* Validates all six fields of an extended cron expression.
|
|
@@ -6132,28 +6132,28 @@ class CronValidationService {
|
|
|
6132
6132
|
* @param parts - Array of 6 cron field strings [minutes, hours, dayOfMonth, month, dayOfWeek, year]
|
|
6133
6133
|
* @returns boolean - True if all fields are valid and follow extended cron rules
|
|
6134
6134
|
*/
|
|
6135
|
-
|
|
6135
|
+
_validateCronFields(parts) {
|
|
6136
6136
|
const [minutes, hours, dayOfMonth, month, dayOfWeek, year] = parts;
|
|
6137
6137
|
// Validate minutes (0-59) - use enhanced validation
|
|
6138
|
-
if (!this.
|
|
6138
|
+
if (!this._validateComplexField(minutes, 0, 59, 'minutes'))
|
|
6139
6139
|
return false;
|
|
6140
6140
|
// Validate hours (0-23) - use enhanced validation
|
|
6141
|
-
if (!this.
|
|
6141
|
+
if (!this._validateComplexField(hours, 0, 23, 'hours'))
|
|
6142
6142
|
return false;
|
|
6143
6143
|
// Validate day of month (1-31 or wildcards)
|
|
6144
|
-
if (!this.
|
|
6144
|
+
if (!this._validateDayOfMonth(dayOfMonth))
|
|
6145
6145
|
return false;
|
|
6146
6146
|
// Validate month (1-12 or JAN-DEC) - use enhanced validation
|
|
6147
|
-
if (!this.
|
|
6147
|
+
if (!this._validateMonth(month))
|
|
6148
6148
|
return false;
|
|
6149
6149
|
// Validate day of week (1-7 or SUN-SAT) - enhanced method will handle this
|
|
6150
|
-
if (!this.
|
|
6150
|
+
if (!this._validateDayOfWeek(dayOfWeek))
|
|
6151
6151
|
return false;
|
|
6152
6152
|
// Validate year (1970-2199) - use enhanced validation
|
|
6153
|
-
if (!this.
|
|
6153
|
+
if (!this._validateComplexField(year, 1970, 2199, 'year'))
|
|
6154
6154
|
return false;
|
|
6155
6155
|
// Validate mutual exclusivity of day-of-month and day-of-week
|
|
6156
|
-
if (!this.
|
|
6156
|
+
if (!this._validateDayMutualExclusivity(dayOfMonth, dayOfWeek))
|
|
6157
6157
|
return false;
|
|
6158
6158
|
return true;
|
|
6159
6159
|
}
|
|
@@ -6177,7 +6177,7 @@ class CronValidationService {
|
|
|
6177
6177
|
* @param type - The cron field type ('minutes', 'hours', 'dayOfMonth', 'month', 'dayOfWeek', 'year')
|
|
6178
6178
|
* @returns boolean - True if the field is valid according to EventBridge Scheduler rules
|
|
6179
6179
|
*/
|
|
6180
|
-
|
|
6180
|
+
_validateComplexField(field, min, max, type) {
|
|
6181
6181
|
// Handle wildcard characters
|
|
6182
6182
|
// '*' means "any value" and is valid for all fields
|
|
6183
6183
|
// '?' means "no specific value" and is only valid for day-of-month and day-of-week fields
|
|
@@ -6190,7 +6190,7 @@ class CronValidationService {
|
|
|
6190
6190
|
return field.split(',').every((val) => {
|
|
6191
6191
|
const trimmedVal = val.trim();
|
|
6192
6192
|
// Recursively validate each part of the list
|
|
6193
|
-
return this.
|
|
6193
|
+
return this._validateComplexField(trimmedVal, min, max, type);
|
|
6194
6194
|
});
|
|
6195
6195
|
}
|
|
6196
6196
|
// Handle complex range with step patterns: "1-5/2" (every 2nd value from 1 to 5)
|
|
@@ -6198,23 +6198,23 @@ class CronValidationService {
|
|
|
6198
6198
|
if (field.includes('-') && field.includes('/')) {
|
|
6199
6199
|
const [range, step] = field.split('/');
|
|
6200
6200
|
const [start, end] = range.split('-');
|
|
6201
|
-
return this.
|
|
6201
|
+
return this._validateRangeWithStep(start, end, step, min, max, type);
|
|
6202
6202
|
}
|
|
6203
6203
|
// Handle simple range patterns: "1-5" (values from 1 to 5), "MON-FRI" (Monday to Friday)
|
|
6204
6204
|
// Extended cron supports both numeric and named ranges for time-based scheduling
|
|
6205
6205
|
if (field.includes('-')) {
|
|
6206
6206
|
const [start, end] = field.split('-');
|
|
6207
|
-
return this.
|
|
6207
|
+
return this._validateSimpleRange(start, end, min, max, type);
|
|
6208
6208
|
}
|
|
6209
6209
|
// Handle step patterns from start: "5/10" (every 10th value starting from 5)
|
|
6210
6210
|
// Extended cron uses this for interval-based scheduling from a specific starting point
|
|
6211
6211
|
if (field.includes('/')) {
|
|
6212
6212
|
const [start, step] = field.split('/');
|
|
6213
|
-
return this.
|
|
6213
|
+
return this._validateStepField(start, step, min, max, type);
|
|
6214
6214
|
}
|
|
6215
6215
|
// Handle single values and special characters (L, W, #)
|
|
6216
6216
|
// These provide advanced scheduling capabilities like "last day of month" or "3rd Tuesday"
|
|
6217
|
-
return this.
|
|
6217
|
+
return this._validateSingleValue(field, min, max, type);
|
|
6218
6218
|
}
|
|
6219
6219
|
/**
|
|
6220
6220
|
* Validates single values and extended cron special characters.
|
|
@@ -6236,7 +6236,7 @@ class CronValidationService {
|
|
|
6236
6236
|
* @param type - The cron field type for context-specific validation
|
|
6237
6237
|
* @returns boolean - True if the value is valid for EventBridge Scheduler
|
|
6238
6238
|
*/
|
|
6239
|
-
|
|
6239
|
+
_validateSingleValue(value, min, max, type) {
|
|
6240
6240
|
// Handle special characters for day of month field
|
|
6241
6241
|
// Extended cron supports advanced day-of-month scheduling patterns
|
|
6242
6242
|
if (type === 'dayOfMonth') {
|
|
@@ -6255,20 +6255,20 @@ class CronValidationService {
|
|
|
6255
6255
|
// 'MONL' = last Monday of month (last occurrence)
|
|
6256
6256
|
if (value.endsWith('L')) {
|
|
6257
6257
|
const day = value.slice(0, -1);
|
|
6258
|
-
return this.
|
|
6258
|
+
return this._isValidDayOfWeek(day);
|
|
6259
6259
|
}
|
|
6260
6260
|
// '3#2' = 3rd Tuesday of month (3=Tuesday, 2=second occurrence)
|
|
6261
6261
|
if (value.includes('#')) {
|
|
6262
6262
|
const [day, week] = value.split('#');
|
|
6263
|
-
return (this.
|
|
6263
|
+
return (this._isValidDayOfWeek(day) && Number(week) >= 1 && Number(week) <= 5);
|
|
6264
6264
|
}
|
|
6265
6265
|
// Standard day names: SUN, MON, TUE, etc.
|
|
6266
|
-
if (this.
|
|
6266
|
+
if (this._isValidDayOfWeek(value))
|
|
6267
6267
|
return true;
|
|
6268
6268
|
}
|
|
6269
6269
|
// Handle month names (JAN, FEB, MAR, etc.) for month field
|
|
6270
6270
|
// Extended cron allows both numeric (1-12) and named month values
|
|
6271
|
-
if (type === 'month' && this.
|
|
6271
|
+
if (type === 'month' && this._isValidMonthName(value))
|
|
6272
6272
|
return true;
|
|
6273
6273
|
// Validate numeric values within the specified range
|
|
6274
6274
|
// This covers standard numeric scheduling (minutes: 0-59, hours: 0-23, etc.)
|
|
@@ -6292,23 +6292,23 @@ class CronValidationService {
|
|
|
6292
6292
|
* @param type - Field type for context-aware validation (dayOfWeek gets special handling)
|
|
6293
6293
|
* @returns boolean - True if the range-step pattern is valid for EventBridge
|
|
6294
6294
|
*/
|
|
6295
|
-
|
|
6295
|
+
_validateRangeWithStep(start, end, step, min, max, type) {
|
|
6296
6296
|
// Validate step value - must be positive integer
|
|
6297
6297
|
const stepNum = Number(step);
|
|
6298
6298
|
if (isNaN(stepNum) || stepNum <= 0)
|
|
6299
6299
|
return false;
|
|
6300
6300
|
// Special handling for day-of-week ranges (supports named days like MON-FRI)
|
|
6301
|
-
// Extended cron allows both numeric (1-7) and named
|
|
6301
|
+
// Extended cron allows both numeric (1-7) and named day ranges
|
|
6302
6302
|
if (type === 'dayOfWeek') {
|
|
6303
|
-
return this.
|
|
6303
|
+
return this._isValidDayOfWeek(start) && this._isValidDayOfWeek(end);
|
|
6304
6304
|
}
|
|
6305
6305
|
// Special handling for month ranges (supports named months like JAN-DEC)
|
|
6306
|
-
// Extended cron allows both numeric (1-12) and named
|
|
6306
|
+
// Extended cron allows both numeric (1-12) and named month ranges
|
|
6307
6307
|
if (type === 'month') {
|
|
6308
|
-
const startValid = this.
|
|
6309
|
-
this.
|
|
6310
|
-
const endValid = this.
|
|
6311
|
-
this.
|
|
6308
|
+
const startValid = this._isValidMonthName(start) ||
|
|
6309
|
+
this._validateSingleValue(start, min, max, type);
|
|
6310
|
+
const endValid = this._isValidMonthName(end) ||
|
|
6311
|
+
this._validateSingleValue(end, min, max, type);
|
|
6312
6312
|
return startValid && endValid;
|
|
6313
6313
|
}
|
|
6314
6314
|
// Validate numeric ranges for other field types
|
|
@@ -6340,19 +6340,19 @@ class CronValidationService {
|
|
|
6340
6340
|
* @param type - Field type for validation context (affects named value handling)
|
|
6341
6341
|
* @returns boolean - True if the range pattern is valid for EventBridge
|
|
6342
6342
|
*/
|
|
6343
|
-
|
|
6343
|
+
_validateSimpleRange(start, end, min, max, type) {
|
|
6344
6344
|
// Handle day-of-week ranges with named values (MON-FRI, SUN-SAT, etc.)
|
|
6345
6345
|
// Extended cron supports both numeric (1-7) and named day ranges
|
|
6346
6346
|
if (type === 'dayOfWeek') {
|
|
6347
|
-
return this.
|
|
6347
|
+
return this._isValidDayOfWeek(start) && this._isValidDayOfWeek(end);
|
|
6348
6348
|
}
|
|
6349
6349
|
// Handle month ranges with named values (JAN-DEC, etc.)
|
|
6350
6350
|
// Extended cron allows both numeric (1-12) and named month ranges
|
|
6351
6351
|
if (type === 'month') {
|
|
6352
|
-
const startValid = this.
|
|
6353
|
-
this.
|
|
6354
|
-
const endValid = this.
|
|
6355
|
-
this.
|
|
6352
|
+
const startValid = this._isValidMonthName(start) ||
|
|
6353
|
+
this._validateSingleValue(start, min, max, type);
|
|
6354
|
+
const endValid = this._isValidMonthName(end) ||
|
|
6355
|
+
this._validateSingleValue(end, min, max, type);
|
|
6356
6356
|
return startValid && endValid;
|
|
6357
6357
|
}
|
|
6358
6358
|
// Validate numeric ranges for other field types
|
|
@@ -6384,7 +6384,7 @@ class CronValidationService {
|
|
|
6384
6384
|
* @param type - Field type for validation context
|
|
6385
6385
|
* @returns boolean - True if the step pattern is valid for EventBridge
|
|
6386
6386
|
*/
|
|
6387
|
-
|
|
6387
|
+
_validateStepField(start, step, min, max, type) {
|
|
6388
6388
|
// Validate step value - must be positive integer
|
|
6389
6389
|
const stepNum = Number(step);
|
|
6390
6390
|
if (isNaN(stepNum) || stepNum <= 0)
|
|
@@ -6396,7 +6396,7 @@ class CronValidationService {
|
|
|
6396
6396
|
// Handle named day values for day-of-week step patterns
|
|
6397
6397
|
// Extended cron supports patterns like "MON/2" (every 2nd occurrence starting Monday)
|
|
6398
6398
|
if (type === 'dayOfWeek') {
|
|
6399
|
-
return this.
|
|
6399
|
+
return this._isValidDayOfWeek(start);
|
|
6400
6400
|
}
|
|
6401
6401
|
// Validate numeric start values - must be within field's valid range
|
|
6402
6402
|
// Extended cron requires the starting point to be a valid value for the field type
|
|
@@ -6406,19 +6406,19 @@ class CronValidationService {
|
|
|
6406
6406
|
/**
|
|
6407
6407
|
* Validates day-of-month field with special characters.
|
|
6408
6408
|
*/
|
|
6409
|
-
|
|
6410
|
-
return this.
|
|
6409
|
+
_validateDayOfMonth(dayOfMonth) {
|
|
6410
|
+
return this._validateComplexField(dayOfMonth, 1, 31, 'dayOfMonth');
|
|
6411
6411
|
}
|
|
6412
6412
|
/**
|
|
6413
6413
|
* Validates month field with support for named months.
|
|
6414
6414
|
*/
|
|
6415
|
-
|
|
6416
|
-
return this.
|
|
6415
|
+
_validateMonth(month) {
|
|
6416
|
+
return this._validateComplexField(month, 1, 12, 'month');
|
|
6417
6417
|
}
|
|
6418
6418
|
/**
|
|
6419
6419
|
* Validates day-of-week field with support for named days and special characters.
|
|
6420
6420
|
*/
|
|
6421
|
-
|
|
6421
|
+
_validateDayOfWeek(dayOfWeek) {
|
|
6422
6422
|
// Check for multiple hash expressions in day-of-week field
|
|
6423
6423
|
if (dayOfWeek.includes(',') && dayOfWeek.includes('#')) {
|
|
6424
6424
|
const parts = dayOfWeek.split(',');
|
|
@@ -6428,13 +6428,13 @@ class CronValidationService {
|
|
|
6428
6428
|
return false;
|
|
6429
6429
|
}
|
|
6430
6430
|
}
|
|
6431
|
-
return this.
|
|
6431
|
+
return this._validateComplexField(dayOfWeek, 1, 7, 'dayOfWeek');
|
|
6432
6432
|
}
|
|
6433
6433
|
/**
|
|
6434
6434
|
* Validates mutual exclusivity rule for day-of-month and day-of-week fields.
|
|
6435
6435
|
* Extended cron requires that one of these fields must be a wildcard.
|
|
6436
6436
|
*/
|
|
6437
|
-
|
|
6437
|
+
_validateDayMutualExclusivity(dayOfMonth, dayOfWeek) {
|
|
6438
6438
|
// Both cannot be specific values - one must be * or ?
|
|
6439
6439
|
const dayOfMonthIsWildcard = dayOfMonth === '*' || dayOfMonth === '?';
|
|
6440
6440
|
const dayOfWeekIsWildcard = dayOfWeek === '*' || dayOfWeek === '?';
|
|
@@ -6443,7 +6443,7 @@ class CronValidationService {
|
|
|
6443
6443
|
/**
|
|
6444
6444
|
* Checks if a value represents a valid day of the week (numeric or named).
|
|
6445
6445
|
*/
|
|
6446
|
-
|
|
6446
|
+
_isValidDayOfWeek(day) {
|
|
6447
6447
|
const validDays = ['SUN', 'MON', 'TUE', 'WED', 'THU', 'FRI', 'SAT'];
|
|
6448
6448
|
if (validDays.includes(day.toUpperCase()))
|
|
6449
6449
|
return true;
|
|
@@ -6453,7 +6453,7 @@ class CronValidationService {
|
|
|
6453
6453
|
/**
|
|
6454
6454
|
* Checks if a value represents a valid month name.
|
|
6455
6455
|
*/
|
|
6456
|
-
|
|
6456
|
+
_isValidMonthName(month) {
|
|
6457
6457
|
const validMonths = [
|
|
6458
6458
|
'JAN',
|
|
6459
6459
|
'FEB',
|
|
@@ -6470,15 +6470,40 @@ class CronValidationService {
|
|
|
6470
6470
|
];
|
|
6471
6471
|
return validMonths.includes(month.toUpperCase());
|
|
6472
6472
|
}
|
|
6473
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.10", ngImport: i0, type:
|
|
6474
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.10", ngImport: i0, type:
|
|
6473
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.10", ngImport: i0, type: CpsCronValidationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
6474
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.10", ngImport: i0, type: CpsCronValidationService, providedIn: 'root' }); }
|
|
6475
6475
|
}
|
|
6476
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.10", ngImport: i0, type:
|
|
6476
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.10", ngImport: i0, type: CpsCronValidationService, decorators: [{
|
|
6477
6477
|
type: Injectable,
|
|
6478
6478
|
args: [{
|
|
6479
6479
|
providedIn: 'root'
|
|
6480
6480
|
}]
|
|
6481
6481
|
}] });
|
|
6482
|
+
/**
|
|
6483
|
+
* Injection token for `CpsCronValidationService`.
|
|
6484
|
+
*
|
|
6485
|
+
* Always inject this token instead of `CpsCronValidationService` directly.
|
|
6486
|
+
* This allows consumer applications to override or disable cron validation by
|
|
6487
|
+
* providing an alternative implementation via `providers`.
|
|
6488
|
+
*
|
|
6489
|
+
* @example
|
|
6490
|
+
* // Inject in a component or service
|
|
6491
|
+
* private readonly cronValidation = inject(CPS_CRON_VALIDATION_SERVICE);
|
|
6492
|
+
*
|
|
6493
|
+
* @example
|
|
6494
|
+
* // Override with a custom implementation
|
|
6495
|
+
* providers: [{ provide: CPS_CRON_VALIDATION_SERVICE, useClass: MyCustomCronValidationService }]
|
|
6496
|
+
*
|
|
6497
|
+
* @example
|
|
6498
|
+
* // Disable cron validation entirely
|
|
6499
|
+
* providers: [{ provide: CPS_CRON_VALIDATION_SERVICE, useValue: null }]
|
|
6500
|
+
*
|
|
6501
|
+
* @group Tokens
|
|
6502
|
+
*/
|
|
6503
|
+
const CPS_CRON_VALIDATION_SERVICE = new InjectionToken('CPS_CRON_VALIDATION_SERVICE', {
|
|
6504
|
+
providedIn: 'root',
|
|
6505
|
+
factory: () => inject(CpsCronValidationService)
|
|
6506
|
+
});
|
|
6482
6507
|
|
|
6483
6508
|
/**
|
|
6484
6509
|
* CpsTimepickerComponent allows to pick a specific time from a set of available options or input it manually.
|
|
@@ -7563,7 +7588,7 @@ class CpsSchedulerComponent {
|
|
|
7563
7588
|
];
|
|
7564
7589
|
this._fb = inject(FormBuilder);
|
|
7565
7590
|
this._cdr = inject(ChangeDetectorRef);
|
|
7566
|
-
this._cronValidationService = inject(
|
|
7591
|
+
this._cronValidationService = inject(CPS_CRON_VALIDATION_SERVICE);
|
|
7567
7592
|
this.activeScheduleType = 'Not set';
|
|
7568
7593
|
this.selectOptions = this._getSelectOptions();
|
|
7569
7594
|
this.timeZoneOptions = timeZones.map((tz) => ({ label: tz, value: tz }));
|
|
@@ -7739,7 +7764,7 @@ class CpsSchedulerComponent {
|
|
|
7739
7764
|
* @returns boolean - True if the cron expression is valid
|
|
7740
7765
|
*/
|
|
7741
7766
|
_isValidCron(cron) {
|
|
7742
|
-
return this._cronValidationService
|
|
7767
|
+
return (this._cronValidationService?.isValidCron(cron, this.showNotSet) ?? true);
|
|
7743
7768
|
}
|
|
7744
7769
|
_validateAdvancedExpr(c) {
|
|
7745
7770
|
const cron = c.value;
|
|
@@ -16009,5 +16034,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.10", ngImpo
|
|
|
16009
16034
|
* Generated bundle index. Do not edit.
|
|
16010
16035
|
*/
|
|
16011
16036
|
|
|
16012
|
-
export { CPS_FOCUS_SERVICE, CPS_RADIO_GROUP, CpsAutocompleteComponent, CpsButtonComponent, CpsButtonToggleComponent, CpsCheckboxComponent, CpsChipComponent, CpsColumnFilterMatchMode, CpsDatepickerComponent, CpsDialogConfig, CpsDialogRef, CpsDialogService, CpsDividerComponent, CpsExpansionPanelComponent, CpsFileUploadComponent, CpsFocusService, CpsIconComponent, CpsInfoCircleComponent, CpsInputComponent, CpsLoaderComponent, CpsMenuComponent, CpsMenuHideReason, CpsNotificationAppearance, CpsNotificationPosition, CpsNotificationService, CpsPaginatePipe, CpsPaginatorComponent, CpsProgressCircularComponent, CpsProgressLinearComponent, CpsRadioComponent, CpsRadioGroupComponent, CpsSchedulerComponent, CpsSelectComponent, CpsSidebarMenuComponent, CpsSwitchComponent, CpsTabComponent, CpsTabGroupComponent, CpsTableColumnFilterDirective, CpsTableColumnResizableDirective, CpsTableColumnSortableDirective, CpsTableComponent, CpsTableDetectFilterTypePipe, CpsTableHeaderSelectableDirective, CpsTableRowSelectableDirective, CpsTagComponent, CpsTextareaComponent, CpsThemeService, CpsTimepickerComponent, CpsTooltipDirective, CpsTreeAutocompleteComponent, CpsTreeSelectComponent, CpsTreeTableColumnFilterDirective, CpsTreeTableColumnResizableDirective, CpsTreeTableColumnSortableDirective, CpsTreeTableComponent, CpsTreeTableDetectFilterTypePipe, CpsTreeTableHeaderSelectableDirective, CpsTreeTableRowSelectableDirective, CpsTreetableRowTogglerDirective, ICONS_PATH, getCSSColor, getCpsColors, getTextColor, iconNames, tableFactory, treeTableFactory };
|
|
16037
|
+
export { CPS_CRON_VALIDATION_SERVICE, CPS_FOCUS_SERVICE, CPS_RADIO_GROUP, CpsAutocompleteComponent, CpsButtonComponent, CpsButtonToggleComponent, CpsCheckboxComponent, CpsChipComponent, CpsColumnFilterMatchMode, CpsCronValidationService, CpsDatepickerComponent, CpsDialogConfig, CpsDialogRef, CpsDialogService, CpsDividerComponent, CpsExpansionPanelComponent, CpsFileUploadComponent, CpsFocusService, CpsIconComponent, CpsInfoCircleComponent, CpsInputComponent, CpsLoaderComponent, CpsMenuComponent, CpsMenuHideReason, CpsNotificationAppearance, CpsNotificationPosition, CpsNotificationService, CpsPaginatePipe, CpsPaginatorComponent, CpsProgressCircularComponent, CpsProgressLinearComponent, CpsRadioComponent, CpsRadioGroupComponent, CpsSchedulerComponent, CpsSelectComponent, CpsSidebarMenuComponent, CpsSwitchComponent, CpsTabComponent, CpsTabGroupComponent, CpsTableColumnFilterDirective, CpsTableColumnResizableDirective, CpsTableColumnSortableDirective, CpsTableComponent, CpsTableDetectFilterTypePipe, CpsTableHeaderSelectableDirective, CpsTableRowSelectableDirective, CpsTagComponent, CpsTextareaComponent, CpsThemeService, CpsTimepickerComponent, CpsTooltipDirective, CpsTreeAutocompleteComponent, CpsTreeSelectComponent, CpsTreeTableColumnFilterDirective, CpsTreeTableColumnResizableDirective, CpsTreeTableColumnSortableDirective, CpsTreeTableComponent, CpsTreeTableDetectFilterTypePipe, CpsTreeTableHeaderSelectableDirective, CpsTreeTableRowSelectableDirective, CpsTreetableRowTogglerDirective, ICONS_PATH, getCSSColor, getCpsColors, getTextColor, iconNames, tableFactory, treeTableFactory };
|
|
16013
16038
|
//# sourceMappingURL=cps-ui-kit.mjs.map
|