@koobiq/components 18.2.1 → 18.3.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/core/common-behaviors/error-state.d.ts +1 -1
- package/core/error/error-state-matcher.d.ts +26 -0
- package/core/form-field/form-field-ref.d.ts +7 -0
- package/core/forms/index.d.ts +1 -0
- package/core/forms/validators.d.ts +86 -0
- package/core/locales/locale-service.d.ts +11 -0
- package/core/public-api.d.ts +1 -2
- package/core/validation/validation.d.ts +1 -0
- package/esm2022/core/common-behaviors/error-state.mjs +1 -1
- package/esm2022/core/error/error-state-matcher.mjs +43 -0
- package/esm2022/core/form-field/form-field-ref.mjs +4 -1
- package/esm2022/core/forms/index.mjs +2 -1
- package/esm2022/core/forms/validators.mjs +132 -0
- package/esm2022/core/locales/locale-service.mjs +30 -1
- package/esm2022/core/public-api.mjs +2 -3
- package/esm2022/core/validation/validation.mjs +2 -1
- package/esm2022/core/version.mjs +2 -2
- package/esm2022/datepicker/calendar-header.component.mjs +5 -6
- package/esm2022/file-upload/single-file-upload.component.mjs +3 -3
- package/esm2022/form-field/form-field-control.mjs +1 -1
- package/esm2022/icon/icon.component.mjs +2 -2
- package/esm2022/icon/icon.module.mjs +1 -1
- package/esm2022/input/input-number.mjs +74 -80
- package/esm2022/select/select.module.mjs +3 -7
- package/fesm2022/koobiq-components-core.mjs +192 -13
- package/fesm2022/koobiq-components-core.mjs.map +1 -1
- package/fesm2022/koobiq-components-datepicker.mjs +8 -9
- package/fesm2022/koobiq-components-datepicker.mjs.map +1 -1
- package/fesm2022/koobiq-components-file-upload.mjs +2 -2
- package/fesm2022/koobiq-components-file-upload.mjs.map +1 -1
- package/fesm2022/koobiq-components-form-field.mjs.map +1 -1
- package/fesm2022/koobiq-components-icon.mjs +1 -1
- package/fesm2022/koobiq-components-icon.mjs.map +1 -1
- package/fesm2022/koobiq-components-input.mjs +74 -80
- package/fesm2022/koobiq-components-input.mjs.map +1 -1
- package/fesm2022/koobiq-components-select.mjs +3 -6
- package/fesm2022/koobiq-components-select.mjs.map +1 -1
- package/form-field/form-field-control.d.ts +3 -2
- package/form-field/hint.scss +0 -3
- package/input/input-number.d.ts +24 -14
- package/package.json +5 -4
- package/schematics/ng-add/index.js +2 -2
- package/select/select.module.d.ts +1 -2
- package/core/error/error-options.d.ts +0 -14
- package/core/label/label-options.d.ts +0 -13
- package/esm2022/core/error/error-options.mjs +0 -26
- package/esm2022/core/label/label-options.mjs +0 -4
|
@@ -269,21 +269,38 @@ class DateAdapter extends DateAdapter$1 {
|
|
|
269
269
|
|
|
270
270
|
const KBQ_DATE_FORMATS = new InjectionToken('kbq-date-formats');
|
|
271
271
|
|
|
272
|
-
/**
|
|
273
|
-
|
|
272
|
+
/**
|
|
273
|
+
* Error state matcher that matches when a control is invalid and form is submitted.
|
|
274
|
+
* Requires use FormGroupDirective or NgForm.
|
|
275
|
+
*/
|
|
276
|
+
class ShowOnFormSubmitErrorStateMatcher {
|
|
274
277
|
isErrorState(control, form) {
|
|
275
|
-
return !!(control
|
|
278
|
+
return !!(control?.invalid && form?.submitted);
|
|
276
279
|
}
|
|
277
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type:
|
|
278
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type:
|
|
280
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ShowOnFormSubmitErrorStateMatcher, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
281
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ShowOnFormSubmitErrorStateMatcher }); }
|
|
279
282
|
}
|
|
280
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type:
|
|
283
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ShowOnFormSubmitErrorStateMatcher, decorators: [{
|
|
281
284
|
type: Injectable
|
|
282
285
|
}] });
|
|
283
|
-
/**
|
|
286
|
+
/** Error state matcher that matches when a control is invalid and dirty or form is submitted. */
|
|
287
|
+
class ShowOnControlDirtyErrorStateMatcher {
|
|
288
|
+
isErrorState(control, form) {
|
|
289
|
+
return !!(control?.invalid && (control.dirty || form?.submitted));
|
|
290
|
+
}
|
|
291
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ShowOnControlDirtyErrorStateMatcher, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
292
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ShowOnControlDirtyErrorStateMatcher }); }
|
|
293
|
+
}
|
|
294
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ShowOnControlDirtyErrorStateMatcher, decorators: [{
|
|
295
|
+
type: Injectable
|
|
296
|
+
}] });
|
|
297
|
+
/**
|
|
298
|
+
* Provider that defines how form controls behave with regards to displaying error messages.
|
|
299
|
+
* Error state matcher that matches when a control is invalid and touched or form is submitted.
|
|
300
|
+
*/
|
|
284
301
|
class ErrorStateMatcher {
|
|
285
302
|
isErrorState(control, form) {
|
|
286
|
-
return !!(control
|
|
303
|
+
return !!(control?.invalid && (control.touched || form?.submitted));
|
|
287
304
|
}
|
|
288
305
|
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ErrorStateMatcher, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
289
306
|
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ErrorStateMatcher, providedIn: 'root' }); }
|
|
@@ -293,6 +310,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImpor
|
|
|
293
310
|
args: [{ providedIn: 'root' }]
|
|
294
311
|
}] });
|
|
295
312
|
|
|
313
|
+
/**
|
|
314
|
+
* @TODO move into form-field.ts, add correct type for `InjectionToken<KbqFormField>` (#DS-2915)
|
|
315
|
+
*/
|
|
296
316
|
/**
|
|
297
317
|
* Injection token that can be used to inject an instances of `KbqFormField`. It serves
|
|
298
318
|
* as alternative token to the actual `KbqFormField` class which would cause unnecessary
|
|
@@ -996,6 +1016,35 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImpor
|
|
|
996
1016
|
type: Inject,
|
|
997
1017
|
args: [KBQ_LOCALE_DATA]
|
|
998
1018
|
}] }] });
|
|
1019
|
+
/**
|
|
1020
|
+
* Function that returns a string representation of a number without localized separators
|
|
1021
|
+
*/
|
|
1022
|
+
function normalizeNumber(value, customConfig) {
|
|
1023
|
+
if (value === null || value === undefined)
|
|
1024
|
+
return '';
|
|
1025
|
+
const { groupSeparator, fractionSeparator } = customConfig;
|
|
1026
|
+
const groupSeparatorRegexp = new RegExp(`[${groupSeparator.join('')}]`, 'g');
|
|
1027
|
+
const fractionSeparatorRegexp = new RegExp(`\\${fractionSeparator}`, 'g');
|
|
1028
|
+
return value.toString().replace(groupSeparatorRegexp, '').replace(fractionSeparatorRegexp, '.');
|
|
1029
|
+
}
|
|
1030
|
+
/**
|
|
1031
|
+
* Function that parse string and return a number. The string can be in any locale.
|
|
1032
|
+
*/
|
|
1033
|
+
function checkAndNormalizeLocalizedNumber(num) {
|
|
1034
|
+
if (num === null || num === undefined)
|
|
1035
|
+
return null;
|
|
1036
|
+
/* if some locale input config satisfies pasted number, try to normalise with selected locale config */
|
|
1037
|
+
let numberOutput = null;
|
|
1038
|
+
const locales = KBQ_DEFAULT_LOCALE_DATA_FACTORY();
|
|
1039
|
+
for (const config of locales.items.map(({ id }) => locales[id].input.number)) {
|
|
1040
|
+
const normalized = +normalizeNumber(num, config);
|
|
1041
|
+
if (!Number.isNaN(normalized)) {
|
|
1042
|
+
numberOutput = normalized;
|
|
1043
|
+
break;
|
|
1044
|
+
}
|
|
1045
|
+
}
|
|
1046
|
+
return numberOutput;
|
|
1047
|
+
}
|
|
999
1048
|
|
|
1000
1049
|
class KbqLocaleServiceModule {
|
|
1001
1050
|
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KbqLocaleServiceModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
@@ -1517,6 +1566,138 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImpor
|
|
|
1517
1566
|
}]
|
|
1518
1567
|
}] });
|
|
1519
1568
|
|
|
1569
|
+
/** Provides a set of validators for password form controls. */
|
|
1570
|
+
class PasswordValidators {
|
|
1571
|
+
/**
|
|
1572
|
+
* Validator that requires the control's value length to be at least `min` characters.
|
|
1573
|
+
*
|
|
1574
|
+
* `min` - number of characters.
|
|
1575
|
+
*
|
|
1576
|
+
* ## Usage:
|
|
1577
|
+
*
|
|
1578
|
+
* ```typescript
|
|
1579
|
+
* const control = new FormControl('password', PasswordValidators.minLength(10));
|
|
1580
|
+
* console.log(control.errors); // {minLength: {min: 10, actual: 8}}
|
|
1581
|
+
* ```
|
|
1582
|
+
*/
|
|
1583
|
+
static minLength(min) {
|
|
1584
|
+
return ({ value }) => {
|
|
1585
|
+
if (typeof value !== 'string') {
|
|
1586
|
+
return null;
|
|
1587
|
+
}
|
|
1588
|
+
return value.length >= min ? null : { minLength: { min, actual: value.length } };
|
|
1589
|
+
};
|
|
1590
|
+
}
|
|
1591
|
+
/**
|
|
1592
|
+
* Validator that requires the control's value length to be at most `max` characters.
|
|
1593
|
+
*
|
|
1594
|
+
* `max` - number of characters.
|
|
1595
|
+
*
|
|
1596
|
+
* ## Usage:
|
|
1597
|
+
* ```typescript
|
|
1598
|
+
* const control = new FormControl('password', PasswordValidators.maxLength(6));
|
|
1599
|
+
* console.log(control.errors); // {maxLength: {max: 6, actual: 8}}
|
|
1600
|
+
* ```
|
|
1601
|
+
*/
|
|
1602
|
+
static maxLength(max) {
|
|
1603
|
+
return ({ value }) => {
|
|
1604
|
+
if (typeof value !== 'string') {
|
|
1605
|
+
return null;
|
|
1606
|
+
}
|
|
1607
|
+
return value.length <= max ? null : { maxLength: { max, actual: value.length } };
|
|
1608
|
+
};
|
|
1609
|
+
}
|
|
1610
|
+
/**
|
|
1611
|
+
* Validator that requires the control's value to be at least `min` uppercase characters.
|
|
1612
|
+
*
|
|
1613
|
+
* `min` - number of uppercase characters.
|
|
1614
|
+
*
|
|
1615
|
+
* ### Usage:
|
|
1616
|
+
*
|
|
1617
|
+
* ```typescript
|
|
1618
|
+
* const control = new FormControl('Password', PasswordValidators.minUppercase(2));
|
|
1619
|
+
* console.log(control.errors); // {minUppercase: {min: 2, actual: 1}}
|
|
1620
|
+
* ```
|
|
1621
|
+
*/
|
|
1622
|
+
static minUppercase(min) {
|
|
1623
|
+
return ({ value }) => {
|
|
1624
|
+
if (typeof value !== 'string') {
|
|
1625
|
+
return null;
|
|
1626
|
+
}
|
|
1627
|
+
const matches = (value.match(/[A-Z]/g) || []).length;
|
|
1628
|
+
return matches >= min ? null : { minUppercase: { min, actual: matches } };
|
|
1629
|
+
};
|
|
1630
|
+
}
|
|
1631
|
+
/**
|
|
1632
|
+
* Validator that requires the control's value to be at least `min` lowercase characters.
|
|
1633
|
+
*
|
|
1634
|
+
* `min` - number of lowercase characters.
|
|
1635
|
+
*
|
|
1636
|
+
* ### Usage:
|
|
1637
|
+
*
|
|
1638
|
+
* ```typescript
|
|
1639
|
+
* const control = new FormControl('PASSWORD', PasswordValidators.minLowercase());
|
|
1640
|
+
* console.log(control.errors); // {minLowercase: {min: 1, actual: 0}}
|
|
1641
|
+
* ```
|
|
1642
|
+
*/
|
|
1643
|
+
static minLowercase(min) {
|
|
1644
|
+
return ({ value }) => {
|
|
1645
|
+
if (typeof value !== 'string') {
|
|
1646
|
+
return null;
|
|
1647
|
+
}
|
|
1648
|
+
const matches = (value.match(/[a-z]/g) || []).length;
|
|
1649
|
+
return matches >= min ? null : { minLowercase: { min, actual: matches } };
|
|
1650
|
+
};
|
|
1651
|
+
}
|
|
1652
|
+
/**
|
|
1653
|
+
* Validator that requires the control's value to be at least `min` number characters.
|
|
1654
|
+
*
|
|
1655
|
+
* `min` - number of number characters.
|
|
1656
|
+
*
|
|
1657
|
+
* ### Usage:
|
|
1658
|
+
*
|
|
1659
|
+
* ```typescript
|
|
1660
|
+
* const control = new FormControl('passw0rd', PasswordValidators.minNumber(2));
|
|
1661
|
+
* console.log(control.errors); // {minNumber: {min: 2, actual: 1}}
|
|
1662
|
+
* ```
|
|
1663
|
+
*/
|
|
1664
|
+
static minNumber(min) {
|
|
1665
|
+
return ({ value }) => {
|
|
1666
|
+
if (typeof value !== 'string') {
|
|
1667
|
+
return null;
|
|
1668
|
+
}
|
|
1669
|
+
const matches = (value.match(/[\d]/g) || []).length;
|
|
1670
|
+
return matches >= min ? null : { minNumber: { min, actual: matches } };
|
|
1671
|
+
};
|
|
1672
|
+
}
|
|
1673
|
+
/**
|
|
1674
|
+
* Validator that requires the control's value to be at least `min` special characters.
|
|
1675
|
+
*
|
|
1676
|
+
* `min` - number of special characters.
|
|
1677
|
+
*
|
|
1678
|
+
* ### Special characters:
|
|
1679
|
+
* ```js
|
|
1680
|
+
* ['!','@','#','$','%','^','&','*']
|
|
1681
|
+
* ```
|
|
1682
|
+
*
|
|
1683
|
+
* ### Usage:
|
|
1684
|
+
*
|
|
1685
|
+
* ```typescript
|
|
1686
|
+
* const control = new FormControl('pa$sword', PasswordValidators.minSpecial(2));
|
|
1687
|
+
* console.log(control.errors); // {minSpecial: {min: 2, actual: 1}}
|
|
1688
|
+
* ```
|
|
1689
|
+
*/
|
|
1690
|
+
static minSpecial(min) {
|
|
1691
|
+
return ({ value }) => {
|
|
1692
|
+
if (typeof value !== 'string') {
|
|
1693
|
+
return null;
|
|
1694
|
+
}
|
|
1695
|
+
const matches = (value.match(/[!@#$%^&*]/g) || []).length;
|
|
1696
|
+
return matches >= min ? null : { minSpecial: { min, actual: matches } };
|
|
1697
|
+
};
|
|
1698
|
+
}
|
|
1699
|
+
}
|
|
1700
|
+
|
|
1520
1701
|
function escapeRegExp(value) {
|
|
1521
1702
|
if (value) {
|
|
1522
1703
|
return value.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
|
|
@@ -1552,9 +1733,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImpor
|
|
|
1552
1733
|
}]
|
|
1553
1734
|
}] });
|
|
1554
1735
|
|
|
1555
|
-
/** InjectionToken that can be used to specify the global label options. */
|
|
1556
|
-
const KBQ_LABEL_GLOBAL_OPTIONS = new InjectionToken('kbq-label-global-options');
|
|
1557
|
-
|
|
1558
1736
|
/**
|
|
1559
1737
|
* Shared directive to count lines inside a text area, such as a list item.
|
|
1560
1738
|
* Line elements can be extracted with a @ContentChildren(KbqLine) query, then
|
|
@@ -3180,15 +3358,16 @@ function toBoolean(value) {
|
|
|
3180
3358
|
|
|
3181
3359
|
const validationTooltipShowDelay = 10;
|
|
3182
3360
|
const validationTooltipHideDelay = 3000;
|
|
3361
|
+
/** @deprecated Will be removed in next major release (#DS-2838) */
|
|
3183
3362
|
const KBQ_VALIDATION = new InjectionToken('KbqUseValidation', {
|
|
3184
3363
|
factory: () => ({ useValidation: true })
|
|
3185
3364
|
});
|
|
3186
3365
|
|
|
3187
|
-
const VERSION = new Version('18.
|
|
3366
|
+
const VERSION = new Version('18.3.0+sha-4400726');
|
|
3188
3367
|
|
|
3189
3368
|
/**
|
|
3190
3369
|
* Generated bundle index. Do not edit.
|
|
3191
3370
|
*/
|
|
3192
3371
|
|
|
3193
|
-
export { AbsoluteDateFormatterPipe, AbsoluteDateShortFormatterPipe, AbsoluteDateTimeFormatterPipe, AbsoluteShortDateTimeFormatterPipe, AnimationCurves, BOTTOM_LEFT_POSITION_PRIORITY, BOTTOM_POSITION_PRIORITY, BOTTOM_RIGHT_POSITION_PRIORITY, DateAdapter, DateFormatter, EXTENDED_OVERLAY_POSITIONS, ErrorStateMatcher, KBQ_CUSTOM_SCROLL_STRATEGY_PROVIDER, KBQ_DATE_FORMATS, KBQ_DATE_LOCALE, KBQ_DATE_LOCALE_FACTORY, KBQ_DEFAULT_LOCALE_DATA_FACTORY, KBQ_DEFAULT_LOCALE_ID, KBQ_FORM_FIELD_REF,
|
|
3372
|
+
export { AbsoluteDateFormatterPipe, AbsoluteDateShortFormatterPipe, AbsoluteDateTimeFormatterPipe, AbsoluteShortDateTimeFormatterPipe, AnimationCurves, BOTTOM_LEFT_POSITION_PRIORITY, BOTTOM_POSITION_PRIORITY, BOTTOM_RIGHT_POSITION_PRIORITY, DateAdapter, DateFormatter, EXTENDED_OVERLAY_POSITIONS, ErrorStateMatcher, KBQ_CUSTOM_SCROLL_STRATEGY_PROVIDER, KBQ_DATE_FORMATS, KBQ_DATE_LOCALE, KBQ_DATE_LOCALE_FACTORY, KBQ_DEFAULT_LOCALE_DATA_FACTORY, KBQ_DEFAULT_LOCALE_ID, KBQ_FORM_FIELD_REF, KBQ_LOCALE_DATA, KBQ_LOCALE_ID, KBQ_LOCALE_SERVICE, KBQ_NUMBER_FORMATTER_DEFAULT_OPTIONS, KBQ_NUMBER_FORMATTER_OPTIONS, KBQ_OPTION_ACTION_PARENT, KBQ_OPTION_PARENT_COMPONENT, KBQ_PARENT_ANIMATION_COMPONENT, KBQ_SANITY_CHECKS, KBQ_SELECT_SCROLL_STRATEGY, KBQ_SELECT_SCROLL_STRATEGY_PROVIDER, KBQ_SIZE_UNITS_CONFIG, KBQ_SIZE_UNITS_DEFAULT_CONFIG, KBQ_TITLE_TEXT_REF, KBQ_VALIDATION, KbqCommonModule, KbqComponentColors, KbqDataSizePipe, KbqDecimalPipe, KbqDefaultThemes, KbqForm, KbqFormElement, KbqFormattersModule, KbqFormsModule, KbqHighlightModule, KbqHighlightPipe, KbqLine, KbqLineModule, KbqLineSetter, KbqLocaleService, KbqLocaleServiceModule, KbqMeasureScrollbarService, KbqOptgroup, KbqOptgroupBase, KbqOptgroupMixinBase, KbqOption, KbqOptionActionBase, KbqOptionActionComponent, KbqOptionActionMixinBase, KbqOptionBase, KbqOptionModule, KbqOptionSelectionChange, KbqPopUp, KbqPopUpTrigger, KbqPseudoCheckbox, KbqPseudoCheckboxBase, KbqPseudoCheckboxMixinBase, KbqPseudoCheckboxModule, KbqRoundDecimalPipe, KbqSelectFooter, KbqSelectMatcher, KbqSelectSearch, KbqSelectSearchEmptyResult, KbqSelectTrigger, KbqTableNumberPipe, KbqThemeSelector, KbqVirtualOption, LEFT_BOTTOM_POSITION_PRIORITY, LEFT_POSITION_PRIORITY, LEFT_TOP_POSITION_PRIORITY, MeasurementSystem, MultipleMode, NUMBER_FORMAT_REGEXP, POSITION_MAP, POSITION_PRIORITY_STRATEGY, POSITION_TO_CSS_MAP, PasswordValidators, PopUpPlacements, PopUpSizes, PopUpTriggers, PopUpVisibility, RIGHT_BOTTOM_POSITION_PRIORITY, RIGHT_POSITION_PRIORITY, RIGHT_TOP_POSITION_PRIORITY, RangeDateFormatterPipe, RangeDateTimeFormatterPipe, RangeMiddleDateTimeFormatterPipe, RangeShortDateFormatterPipe, RangeShortDateTimeFormatterPipe, RelativeDateFormatterPipe, RelativeDateTimeFormatterPipe, RelativeShortDateFormatterPipe, RelativeShortDateTimeFormatterPipe, SELECT_PANEL_INDENT_PADDING_X, SELECT_PANEL_MAX_HEIGHT, SELECT_PANEL_PADDING_X, SELECT_PANEL_VIEWPORT_PADDING, ShowOnControlDirtyErrorStateMatcher, ShowOnFormSubmitErrorStateMatcher, TOP_LEFT_POSITION_PRIORITY, TOP_POSITION_PRIORITY, TOP_RIGHT_POSITION_PRIORITY, ThemePalette, ThemeService, VERSION, applyPopupMargins, checkAndNormalizeLocalizedNumber, countGroupLabelsBeforeOption, enUSFormattersData, enUSLocaleData, esLAFormattersData, esLALocaleData, escapeRegExp, faIRFormattersData, faIRLocaleData, fadeAnimation, formatDataSize, getHumanizedBytes, getKbqSelectDynamicMultipleError, getKbqSelectNonArrayValueError, getKbqSelectNonFunctionValueError, getOptionScrollPosition, isBoolean, isWithin, kbqSelectAnimations, kbqSelectScrollStrategyProviderFactory, mixinColor, mixinDisabled, mixinErrorState, mixinTabIndex, normalizeNumber, ptBRFormattersData, ptBRLocaleData, ruRUFormattersData, ruRULocaleData, selectEvents, toBoolean, validationTooltipHideDelay, validationTooltipShowDelay, zhCNFormattersData, zhCNLocaleData };
|
|
3194
3373
|
//# sourceMappingURL=koobiq-components-core.mjs.map
|