@koobiq/components 18.36.0 → 18.38.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/autocomplete/autocomplete.scss +2 -17
- package/breadcrumbs/breadcrumbs.d.ts +2 -1
- package/breadcrumbs/breadcrumbs.scss +4 -4
- package/button/button.component.d.ts +1 -0
- package/button-toggle/button-toggle.scss +0 -2
- package/content-panel/content-panel.d.ts +1 -1
- package/content-panel/index.d.ts +0 -1
- package/core/common-behaviors/hover.d.ts +15 -0
- package/core/common-behaviors/index.d.ts +1 -1
- package/core/locales/en-US.d.ts +6 -0
- package/core/locales/es-LA.d.ts +6 -0
- package/core/locales/formatters.d.ts +0 -72
- package/core/locales/index.d.ts +0 -2
- package/core/locales/locale-service.d.ts +24 -386
- package/core/locales/pt-BR.d.ts +6 -0
- package/core/locales/ru-RU.d.ts +6 -0
- package/core/locales/tk-TM.d.ts +6 -0
- package/core/option/option.d.ts +3 -2
- package/core/pop-up/pop-up-trigger.d.ts +3 -1
- package/core/pop-up/pop-up.d.ts +1 -0
- package/core/select/common.d.ts +3 -1
- package/core/styles/common/_select.scss +20 -0
- package/core/styles/typography/_typography.scss +23 -82
- package/datepicker/datepicker-module.d.ts +2 -1
- package/dropdown/dropdown-item.scss +8 -7
- package/dropdown/dropdown.scss +5 -14
- package/esm2022/autocomplete/autocomplete-trigger.directive.mjs +4 -4
- package/esm2022/breadcrumbs/breadcrumbs.mjs +46 -37
- package/esm2022/button/button.component.mjs +6 -4
- package/esm2022/button-toggle/button-toggle.component.mjs +2 -2
- package/esm2022/code-block/code-block-highlight.mjs +6 -1
- package/esm2022/content-panel/content-panel.mjs +2 -2
- package/esm2022/content-panel/index.mjs +1 -2
- package/esm2022/core/common-behaviors/color.mjs +2 -1
- package/esm2022/core/common-behaviors/common-module.mjs +2 -1
- package/esm2022/core/common-behaviors/disabled.mjs +2 -1
- package/esm2022/core/common-behaviors/error-state.mjs +2 -1
- package/esm2022/core/common-behaviors/hover.mjs +34 -0
- package/esm2022/core/common-behaviors/index.mjs +2 -2
- package/esm2022/core/common-behaviors/tabindex.mjs +2 -1
- package/esm2022/core/form-field/field-sizing-content.mjs +5 -2
- package/esm2022/core/formatters/number/formatter.mjs +2 -2
- package/esm2022/core/locales/en-US.mjs +7 -1
- package/esm2022/core/locales/es-LA.mjs +16 -10
- package/esm2022/core/locales/formatters.mjs +1 -73
- package/esm2022/core/locales/index.mjs +1 -3
- package/esm2022/core/locales/locale-service.mjs +5 -8
- package/esm2022/core/locales/pt-BR.mjs +25 -19
- package/esm2022/core/locales/ru-RU.mjs +7 -1
- package/esm2022/core/locales/tk-TM.mjs +30 -24
- package/esm2022/core/option/option.mjs +10 -6
- package/esm2022/core/pop-up/pop-up-trigger.mjs +2 -1
- package/esm2022/core/pop-up/pop-up.mjs +36 -2
- package/esm2022/core/select/common.mjs +10 -4
- package/esm2022/core/version.mjs +2 -2
- package/esm2022/datepicker/calendar-header.component.mjs +5 -4
- package/esm2022/datepicker/datepicker-module.mjs +7 -4
- package/esm2022/dropdown/dropdown-item.component.mjs +2 -2
- package/esm2022/dropdown/dropdown.component.mjs +3 -3
- package/esm2022/ellipsis-center/ellipsis-center.directive.mjs +5 -2
- package/esm2022/file-upload/file-drop.mjs +5 -3
- package/esm2022/file-upload/multiple-file-upload.component.mjs +9 -13
- package/esm2022/file-upload/single-file-upload.component.mjs +9 -4
- package/esm2022/filter-bar/filter-bar.mjs +6 -2
- package/esm2022/filter-bar/filter-search.mjs +3 -3
- package/esm2022/filter-bar/filters.mjs +10 -5
- package/esm2022/filter-bar/pipe-add.mjs +3 -2
- package/esm2022/filter-bar/pipes/base-pipe.mjs +11 -3
- package/esm2022/filter-bar/pipes/pipe-date.mjs +3 -3
- package/esm2022/filter-bar/pipes/pipe-datetime.mjs +3 -3
- package/esm2022/filter-bar/pipes/pipe-multi-select.mjs +5 -4
- package/esm2022/filter-bar/pipes/pipe-multi-tree-select.mjs +2 -2
- package/esm2022/filter-bar/pipes/pipe-select.mjs +2 -2
- package/esm2022/filter-bar/pipes/pipe-text.mjs +2 -2
- package/esm2022/filter-bar/pipes/pipe-title.mjs +24 -19
- package/esm2022/filter-bar/pipes/pipe-tree-select.mjs +2 -2
- package/esm2022/form-field/fieldset.mjs +2 -2
- package/esm2022/form-field/form-field.mjs +2 -2
- package/esm2022/form-field/stepper.mjs +41 -10
- package/esm2022/inline-edit/inline-edit.mjs +9 -5
- package/esm2022/input/input-number.mjs +7 -6
- package/esm2022/input/input.module.mjs +7 -4
- package/esm2022/list/list-selection.component.mjs +31 -15
- package/esm2022/markdown/markdown.component.mjs +7 -7
- package/esm2022/modal/modal-util.mjs +7 -3
- package/esm2022/modal/modal.component.mjs +2 -2
- package/esm2022/modal/modal.service.mjs +2 -1
- package/esm2022/navbar/navbar-brand.component.mjs +105 -0
- package/esm2022/navbar/navbar-item.component.mjs +18 -170
- package/esm2022/navbar/navbar-toggle.component.mjs +88 -0
- package/esm2022/navbar/navbar.component.mjs +8 -4
- package/esm2022/navbar/navbar.module.mjs +4 -2
- package/esm2022/navbar/public-api.mjs +3 -1
- package/esm2022/navbar/vertical-navbar.component.mjs +28 -6
- package/esm2022/navbar-ic/navbar-ic-header.mjs +20 -4
- package/esm2022/navbar-ic/navbar-ic-item.mjs +7 -8
- package/esm2022/navbar-ic/navbar-ic.animation.mjs +10 -2
- package/esm2022/navbar-ic/navbar-ic.mjs +33 -9
- package/esm2022/notification-center/notification-center.mjs +9 -33
- package/esm2022/popover/popover-confirm.component.mjs +3 -3
- package/esm2022/popover/popover.component.mjs +24 -5
- package/esm2022/resizer/index.mjs +3 -0
- package/esm2022/resizer/koobiq-components-resizer.mjs +5 -0
- package/esm2022/resizer/module.mjs +17 -0
- package/esm2022/resizer/resizer.mjs +135 -0
- package/esm2022/scrollbar/scrollbar.directive.mjs +4 -3
- package/esm2022/search-expandable/search-expandable.mjs +5 -5
- package/esm2022/select/select.component.mjs +2 -14
- package/esm2022/select/select.module.mjs +8 -4
- package/esm2022/sidepanel/sidepanel-container.component.mjs +3 -3
- package/esm2022/split-button/split-button.mjs +47 -6
- package/esm2022/tags/tag-input.mjs +24 -28
- package/esm2022/tags/tag-list.component.mjs +76 -87
- package/esm2022/tags/tag.component.mjs +29 -34
- package/esm2022/textarea/textarea.module.mjs +5 -4
- package/esm2022/time-range/constants.mjs +22 -1
- package/esm2022/time-range/time-range-editor.mjs +11 -6
- package/esm2022/time-range/time-range-title-as-form-field.mjs +2 -1
- package/esm2022/time-range/time-range.mjs +8 -3
- package/esm2022/time-range/time-range.service.mjs +43 -106
- package/esm2022/time-range/types.mjs +1 -1
- package/esm2022/timepicker/timepicker.module.mjs +5 -4
- package/esm2022/timezone/timezone-option.component.mjs +2 -2
- package/esm2022/timezone/timezone.module.mjs +6 -4
- package/esm2022/title/title.directive.mjs +6 -2
- package/esm2022/toggle/toggle.component.mjs +3 -3
- package/esm2022/top-bar/top-bar.mjs +2 -2
- package/esm2022/tree/tree-option.component.mjs +7 -6
- package/esm2022/tree/tree-selection.component.mjs +23 -13
- package/esm2022/tree-select/tree-select.component.mjs +97 -79
- package/esm2022/tree-select/tree-select.module.mjs +7 -4
- package/fesm2022/koobiq-components-autocomplete.mjs +3 -3
- package/fesm2022/koobiq-components-autocomplete.mjs.map +1 -1
- package/fesm2022/koobiq-components-breadcrumbs.mjs +45 -36
- package/fesm2022/koobiq-components-breadcrumbs.mjs.map +1 -1
- package/fesm2022/koobiq-components-button-toggle.mjs +2 -2
- package/fesm2022/koobiq-components-button-toggle.mjs.map +1 -1
- package/fesm2022/koobiq-components-button.mjs +5 -3
- package/fesm2022/koobiq-components-button.mjs.map +1 -1
- package/fesm2022/koobiq-components-code-block.mjs +5 -0
- package/fesm2022/koobiq-components-code-block.mjs.map +1 -1
- package/fesm2022/koobiq-components-content-panel.mjs +3 -137
- package/fesm2022/koobiq-components-content-panel.mjs.map +1 -1
- package/fesm2022/koobiq-components-core.mjs +156 -478
- package/fesm2022/koobiq-components-core.mjs.map +1 -1
- package/fesm2022/koobiq-components-datepicker.mjs +8 -5
- package/fesm2022/koobiq-components-datepicker.mjs.map +1 -1
- package/fesm2022/koobiq-components-dropdown.mjs +4 -4
- package/fesm2022/koobiq-components-dropdown.mjs.map +1 -1
- package/fesm2022/koobiq-components-ellipsis-center.mjs +4 -1
- package/fesm2022/koobiq-components-ellipsis-center.mjs.map +1 -1
- package/fesm2022/koobiq-components-file-upload.mjs +19 -17
- package/fesm2022/koobiq-components-file-upload.mjs.map +1 -1
- package/fesm2022/koobiq-components-filter-bar.mjs +64 -41
- package/fesm2022/koobiq-components-filter-bar.mjs.map +1 -1
- package/fesm2022/koobiq-components-form-field.mjs +44 -17
- package/fesm2022/koobiq-components-form-field.mjs.map +1 -1
- package/fesm2022/koobiq-components-inline-edit.mjs +8 -4
- package/fesm2022/koobiq-components-inline-edit.mjs.map +1 -1
- package/fesm2022/koobiq-components-input.mjs +12 -9
- package/fesm2022/koobiq-components-input.mjs.map +1 -1
- package/fesm2022/koobiq-components-list.mjs +30 -14
- package/fesm2022/koobiq-components-list.mjs.map +1 -1
- package/fesm2022/koobiq-components-markdown.mjs +6 -6
- package/fesm2022/koobiq-components-markdown.mjs.map +1 -1
- package/fesm2022/koobiq-components-modal.mjs +9 -4
- package/fesm2022/koobiq-components-modal.mjs.map +1 -1
- package/fesm2022/koobiq-components-navbar-ic.mjs +70 -26
- package/fesm2022/koobiq-components-navbar-ic.mjs.map +1 -1
- package/fesm2022/koobiq-components-navbar.mjs +792 -740
- package/fesm2022/koobiq-components-navbar.mjs.map +1 -1
- package/fesm2022/koobiq-components-notification-center.mjs +8 -32
- package/fesm2022/koobiq-components-notification-center.mjs.map +1 -1
- package/fesm2022/koobiq-components-popover.mjs +25 -6
- package/fesm2022/koobiq-components-popover.mjs.map +1 -1
- package/fesm2022/koobiq-components-resizer.mjs +156 -0
- package/fesm2022/koobiq-components-resizer.mjs.map +1 -0
- package/fesm2022/koobiq-components-scrollbar.mjs +3 -2
- package/fesm2022/koobiq-components-scrollbar.mjs.map +1 -1
- package/fesm2022/koobiq-components-search-expandable.mjs +4 -4
- package/fesm2022/koobiq-components-search-expandable.mjs.map +1 -1
- package/fesm2022/koobiq-components-select.mjs +8 -17
- package/fesm2022/koobiq-components-select.mjs.map +1 -1
- package/fesm2022/koobiq-components-sidepanel.mjs +2 -2
- package/fesm2022/koobiq-components-sidepanel.mjs.map +1 -1
- package/fesm2022/koobiq-components-split-button.mjs +46 -5
- package/fesm2022/koobiq-components-split-button.mjs.map +1 -1
- package/fesm2022/koobiq-components-tags.mjs +125 -146
- package/fesm2022/koobiq-components-tags.mjs.map +1 -1
- package/fesm2022/koobiq-components-textarea.mjs +4 -4
- package/fesm2022/koobiq-components-textarea.mjs.map +1 -1
- package/fesm2022/koobiq-components-time-range.mjs +81 -112
- package/fesm2022/koobiq-components-time-range.mjs.map +1 -1
- package/fesm2022/koobiq-components-timepicker.mjs +4 -4
- package/fesm2022/koobiq-components-timepicker.mjs.map +1 -1
- package/fesm2022/koobiq-components-timezone.mjs +7 -5
- package/fesm2022/koobiq-components-timezone.mjs.map +1 -1
- package/fesm2022/koobiq-components-title.mjs +5 -1
- package/fesm2022/koobiq-components-title.mjs.map +1 -1
- package/fesm2022/koobiq-components-toggle.mjs +2 -2
- package/fesm2022/koobiq-components-toggle.mjs.map +1 -1
- package/fesm2022/koobiq-components-top-bar.mjs +2 -2
- package/fesm2022/koobiq-components-top-bar.mjs.map +1 -1
- package/fesm2022/koobiq-components-tree-select.mjs +102 -82
- package/fesm2022/koobiq-components-tree-select.mjs.map +1 -1
- package/fesm2022/koobiq-components-tree.mjs +28 -17
- package/fesm2022/koobiq-components-tree.mjs.map +1 -1
- package/file-upload/_file-upload-theme.scss +32 -34
- package/file-upload/file-upload-tokens.scss +1 -2
- package/file-upload/file-upload.scss +4 -7
- package/file-upload/multiple-file-upload.component.d.ts +1 -1
- package/file-upload/multiple-file-upload.component.scss +12 -14
- package/file-upload/single-file-upload.component.d.ts +1 -0
- package/file-upload/single-file-upload.component.scss +5 -7
- package/filter-bar/filter-bar.d.ts +3 -1
- package/filter-bar/filter-search.scss +1 -3
- package/filter-bar/filters.d.ts +1 -0
- package/filter-bar/pipes/base-pipe.d.ts +5 -1
- package/filter-bar/pipes/pipe-date.scss +4 -2
- package/filter-bar/pipes/pipe-title.d.ts +2 -0
- package/form-field/fieldset-tokens.scss +2 -1
- package/form-field/form-field-tokens.scss +2 -2
- package/form-field/form-field.scss +9 -1
- package/form-field/stepper.d.ts +28 -6
- package/inline-edit/inline-edit.d.ts +5 -1
- package/input/input.module.d.ts +2 -1
- package/list/list-selection.component.d.ts +12 -1
- package/markdown/_markdown-theme.scss +0 -1
- package/markdown/markdown.scss +2 -4
- package/modal/modal-tokens.scss +2 -1
- package/modal/modal-util.d.ts +5 -2
- package/modal/modal.scss +3 -4
- package/navbar/_navbar-item_vertical.scss +44 -43
- package/navbar/_navbar-theme.scss +14 -35
- package/navbar/navbar-brand.component.d.ts +39 -0
- package/navbar/navbar-brand.scss +78 -45
- package/navbar/navbar-divider.scss +1 -1
- package/navbar/navbar-item.component.d.ts +4 -36
- package/navbar/navbar-toggle.component.d.ts +23 -0
- package/navbar/navbar-toggle.scss +64 -0
- package/navbar/navbar-tokens.scss +1 -0
- package/navbar/navbar.module.d.ts +8 -6
- package/navbar/public-api.d.ts +2 -0
- package/navbar/vertical-navbar.component.d.ts +20 -2
- package/navbar/vertical-navbar.scss +14 -9
- package/navbar-ic/navbar-ic-header.d.ts +3 -2
- package/navbar-ic/navbar-ic-header.scss +0 -4
- package/navbar-ic/navbar-ic-item.d.ts +1 -0
- package/navbar-ic/navbar-ic-item.scss +0 -4
- package/navbar-ic/navbar-ic.animation.d.ts +1 -0
- package/navbar-ic/navbar-ic.d.ts +7 -0
- package/notification-center/notification-center.d.ts +12 -9
- package/package.json +16 -10
- package/popover/popover-tokens.scss +1 -0
- package/popover/popover.component.d.ts +12 -1
- package/popover/popover.scss +3 -4
- package/prebuilt-themes/dark-theme.css +1 -1
- package/prebuilt-themes/light-theme.css +1 -1
- package/prebuilt-themes/theme.css +1 -1
- package/resizer/index.d.ts +2 -0
- package/resizer/module.d.ts +7 -0
- package/{content-panel/resizable.d.ts → resizer/resizer.d.ts} +18 -13
- package/schematics/collection.json +5 -0
- package/schematics/migrations/icons-replacement/README.md +93 -0
- package/schematics/migrations/icons-replacement/data.js +92 -0
- package/schematics/migrations/icons-replacement/index.js +84 -0
- package/schematics/migrations/icons-replacement/schema.json +32 -0
- package/schematics/ng-add/index.js +6 -6
- package/scrollbar/scrollbar.component.scss +2 -3
- package/select/select.module.d.ts +2 -1
- package/select/select.scss +1 -17
- package/sidepanel/sidepanel-tokens.scss +2 -0
- package/sidepanel/sidepanel.scss +2 -0
- package/split-button/_split-button-theme.scss +89 -34
- package/split-button/split-button.d.ts +11 -5
- package/split-button/split-button.scss +40 -51
- package/tags/tag-input.d.ts +16 -7
- package/tags/tag-list.component.d.ts +44 -21
- package/tags/tag-list.scss +13 -14
- package/tags/tag.component.d.ts +20 -15
- package/textarea/textarea-tokens.scss +6 -1
- package/textarea/textarea.module.d.ts +2 -1
- package/textarea/textarea.scss +4 -0
- package/time-range/constants.d.ts +12 -1
- package/time-range/time-range-editor.d.ts +7 -9
- package/time-range/time-range-title-as-form-field.d.ts +1 -0
- package/time-range/time-range.d.ts +5 -2
- package/time-range/time-range.service.d.ts +7 -11
- package/time-range/types.d.ts +37 -11
- package/timepicker/timepicker.module.d.ts +2 -1
- package/timezone/timezone-option.component.scss +6 -0
- package/timezone/timezone.module.d.ts +1 -1
- package/toggle/_toggle-theme.scss +8 -5
- package/toggle/toggle-tokens.scss +0 -1
- package/toggle/toggle.scss +11 -15
- package/top-bar/top-bar-tokens.scss +1 -1
- package/top-bar/top-bar.scss +3 -0
- package/tree/tree-option.component.d.ts +1 -0
- package/tree/tree-selection.component.d.ts +11 -2
- package/tree-select/tree-select.component.d.ts +5 -5
- package/tree-select/tree-select.module.d.ts +2 -1
- package/tree-select/tree-select.scss +4 -0
- package/core/common-behaviors/hovered.d.ts +0 -13
- package/core/locales/fa-IR.d.ts +0 -162
- package/core/locales/zh-CN.d.ts +0 -162
- package/esm2022/content-panel/resizable.mjs +0 -138
- package/esm2022/core/common-behaviors/hovered.mjs +0 -31
- package/esm2022/core/locales/fa-IR.mjs +0 -173
- package/esm2022/core/locales/zh-CN.mjs +0 -161
|
@@ -182,6 +182,7 @@ function mixinColor(base, defaultColor = KbqComponentColors.Empty) {
|
|
|
182
182
|
constructor(...args) {
|
|
183
183
|
super(...args);
|
|
184
184
|
this.color = defaultColor;
|
|
185
|
+
// eslint-disable-next-line no-console
|
|
185
186
|
console.warn('mixinColor deprecated and will be deleted in next major release');
|
|
186
187
|
}
|
|
187
188
|
};
|
|
@@ -291,6 +292,7 @@ class KbqCommonModule {
|
|
|
291
292
|
}
|
|
292
293
|
checkDoctypeIsDefined() {
|
|
293
294
|
if (this.document && !this.document.doctype) {
|
|
295
|
+
// eslint-disable-next-line no-console
|
|
294
296
|
console.warn('Current document does not have a doctype. This may cause ' +
|
|
295
297
|
'some koobiq components not to behave as expected.');
|
|
296
298
|
}
|
|
@@ -324,6 +326,7 @@ function mixinDisabled(base) {
|
|
|
324
326
|
constructor(...args) {
|
|
325
327
|
super(...args);
|
|
326
328
|
this._disabled = false;
|
|
329
|
+
// eslint-disable-next-line no-console
|
|
327
330
|
console.warn('mixinDisabled deprecated and will be deleted in next major release');
|
|
328
331
|
}
|
|
329
332
|
};
|
|
@@ -335,6 +338,7 @@ function mixinErrorState(base) {
|
|
|
335
338
|
super(...args);
|
|
336
339
|
/** Whether the component is in an error state. */
|
|
337
340
|
this.errorState = false;
|
|
341
|
+
// eslint-disable-next-line no-console
|
|
338
342
|
console.warn('mixinErrorState deprecated and will be deleted in next major release');
|
|
339
343
|
}
|
|
340
344
|
updateErrorState() {
|
|
@@ -450,9 +454,11 @@ function isMac() {
|
|
|
450
454
|
}
|
|
451
455
|
|
|
452
456
|
/**
|
|
453
|
-
* Directive that adds a `kbq-
|
|
457
|
+
* Directive that adds a `kbq-hovered` class to an element, based on its hover state.
|
|
458
|
+
*
|
|
459
|
+
* @docs-private
|
|
454
460
|
*/
|
|
455
|
-
class
|
|
461
|
+
class KbqHover {
|
|
456
462
|
constructor() {
|
|
457
463
|
this.element = kbqInjectNativeElement();
|
|
458
464
|
/**
|
|
@@ -460,16 +466,17 @@ class KbqHovered {
|
|
|
460
466
|
*/
|
|
461
467
|
this.hovered = toSignal(merge(fromEvent(this.element, 'mouseenter'), fromEvent(this.element, 'mouseleave')).pipe(map(({ type }) => type === 'mouseenter')), { initialValue: false });
|
|
462
468
|
}
|
|
463
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
464
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type:
|
|
469
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: KbqHover, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
470
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: KbqHover, isStandalone: true, selector: "[kbqHover]", host: { properties: { "class.kbq-hovered": "hovered()" }, classAttribute: "kbq-hover" }, exportAs: ["kbqHover"], ngImport: i0 }); }
|
|
465
471
|
}
|
|
466
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
472
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: KbqHover, decorators: [{
|
|
467
473
|
type: Directive,
|
|
468
474
|
args: [{
|
|
469
475
|
standalone: true,
|
|
470
|
-
selector: '[
|
|
471
|
-
exportAs: '
|
|
476
|
+
selector: '[kbqHover]',
|
|
477
|
+
exportAs: 'kbqHover',
|
|
472
478
|
host: {
|
|
479
|
+
class: 'kbq-hover',
|
|
473
480
|
'[class.kbq-hovered]': 'hovered()'
|
|
474
481
|
}
|
|
475
482
|
}]
|
|
@@ -518,6 +525,7 @@ function mixinTabIndex(base, defaultTabIndex = 0) {
|
|
|
518
525
|
super(...args);
|
|
519
526
|
this.defaultTabIndex = defaultTabIndex;
|
|
520
527
|
this._tabIndex = defaultTabIndex;
|
|
528
|
+
// eslint-disable-next-line no-console
|
|
521
529
|
console.warn('mixinTabIndex deprecated and will be deleted in next major release');
|
|
522
530
|
}
|
|
523
531
|
};
|
|
@@ -635,7 +643,7 @@ const BOX_SIZING_BORDER_BOX_WIDTH_PROPERTIES = [
|
|
|
635
643
|
'borderLeftWidth',
|
|
636
644
|
'borderRightWidth'
|
|
637
645
|
];
|
|
638
|
-
const FIELD_RESIZE_EVENTS = ['input', 'change', 'focus'];
|
|
646
|
+
const FIELD_RESIZE_EVENTS = ['input', 'change', 'focus', 'blur'];
|
|
639
647
|
/**
|
|
640
648
|
* Emulates [`field-sizing: content`](https://developer.mozilla.org/en-US/docs/Web/CSS/field-sizing) CSS property for
|
|
641
649
|
* browsers that do not support it natively.
|
|
@@ -665,6 +673,9 @@ class KbqFieldSizingContent {
|
|
|
665
673
|
const computedStyle = this.window.getComputedStyle(this.element);
|
|
666
674
|
const ruler = this.createRuler(computedStyle);
|
|
667
675
|
ruler.textContent = this.element.value || this.element.placeholder || '';
|
|
676
|
+
// We should add space to prevent text truncation in Safari/Firefox
|
|
677
|
+
if (ruler.textContent)
|
|
678
|
+
ruler.textContent += ' ';
|
|
668
679
|
this.renderer.appendChild(this.document.body, ruler);
|
|
669
680
|
const width = this.calculateWidth(ruler, computedStyle);
|
|
670
681
|
this.renderer.setStyle(this.element, 'width', coerceCssPixelValue(width));
|
|
@@ -806,6 +817,12 @@ const enUSLocaleData = {
|
|
|
806
817
|
collapseButton: 'Collapse'
|
|
807
818
|
}
|
|
808
819
|
},
|
|
820
|
+
navbar: {
|
|
821
|
+
toggle: {
|
|
822
|
+
expand: 'Expand',
|
|
823
|
+
collapse: 'Collapse'
|
|
824
|
+
}
|
|
825
|
+
},
|
|
809
826
|
searchExpandable: {
|
|
810
827
|
tooltip: 'Search',
|
|
811
828
|
placeholder: 'Search'
|
|
@@ -958,7 +975,7 @@ const esLALocaleData = {
|
|
|
958
975
|
},
|
|
959
976
|
filterBar: {
|
|
960
977
|
reset: {
|
|
961
|
-
buttonName: '
|
|
978
|
+
buttonName: 'Restablecer'
|
|
962
979
|
},
|
|
963
980
|
search: {
|
|
964
981
|
tooltip: 'Búsqueda',
|
|
@@ -966,18 +983,18 @@ const esLALocaleData = {
|
|
|
966
983
|
},
|
|
967
984
|
filters: {
|
|
968
985
|
defaultName: 'Filtros',
|
|
969
|
-
saveNewFilterTooltip: 'Guardar el nuevo
|
|
986
|
+
saveNewFilterTooltip: 'Guardar el filtro nuevo',
|
|
970
987
|
searchPlaceholder: 'Búsqueda',
|
|
971
988
|
searchEmptyResult: 'No se encontró nada',
|
|
972
|
-
saveAsNewFilter: 'Guardar como nuevo
|
|
973
|
-
saveChanges: 'Guardar
|
|
989
|
+
saveAsNewFilter: 'Guardar como filtro nuevo',
|
|
990
|
+
saveChanges: 'Guardar cambios',
|
|
974
991
|
saveAsNew: 'Guardar como nuevo',
|
|
975
992
|
change: 'Editar',
|
|
976
|
-
resetChanges: '
|
|
993
|
+
resetChanges: 'Restablecer',
|
|
977
994
|
remove: 'Eliminar',
|
|
978
995
|
name: 'Nombre',
|
|
979
|
-
error: '
|
|
980
|
-
errorHint: 'No se pudo guardar el filtro. Intente de nuevo o
|
|
996
|
+
error: 'Ya existe una búsqueda con ese nombre',
|
|
997
|
+
errorHint: 'No se pudo guardar el filtro. Intente de nuevo o comuníquese con el administrador.',
|
|
981
998
|
saveButton: 'Guardar',
|
|
982
999
|
cancelButton: 'Cancelar'
|
|
983
1000
|
},
|
|
@@ -992,10 +1009,10 @@ const esLALocaleData = {
|
|
|
992
1009
|
selectAll: 'Seleccionar todo'
|
|
993
1010
|
},
|
|
994
1011
|
datePipe: {
|
|
995
|
-
customPeriod: '
|
|
1012
|
+
customPeriod: 'Personalizar período',
|
|
996
1013
|
customPeriodFrom: 'desde',
|
|
997
1014
|
customPeriodTo: 'hasta',
|
|
998
|
-
customPeriodErrorHint: 'El período no puede
|
|
1015
|
+
customPeriodErrorHint: 'El inicio del período no puede estar después del fin',
|
|
999
1016
|
backToPeriodSelection: 'Volver a la selección del período'
|
|
1000
1017
|
}
|
|
1001
1018
|
},
|
|
@@ -1009,6 +1026,12 @@ const esLALocaleData = {
|
|
|
1009
1026
|
collapseButton: 'Colapsar'
|
|
1010
1027
|
}
|
|
1011
1028
|
},
|
|
1029
|
+
navbar: {
|
|
1030
|
+
toggle: {
|
|
1031
|
+
expand: 'Expandir',
|
|
1032
|
+
collapse: 'Colapsar'
|
|
1033
|
+
}
|
|
1034
|
+
},
|
|
1012
1035
|
searchExpandable: {
|
|
1013
1036
|
tooltip: 'Búsqueda',
|
|
1014
1037
|
placeholder: 'Búsqueda'
|
|
@@ -1115,179 +1138,6 @@ const esLALocaleData = {
|
|
|
1115
1138
|
}
|
|
1116
1139
|
};
|
|
1117
1140
|
|
|
1118
|
-
const faIRLocaleData = {
|
|
1119
|
-
select: { hiddenItemsText: '{{ number }} بیشتر' },
|
|
1120
|
-
datepicker: {
|
|
1121
|
-
placeholder: 'روز/ ماه/سال'
|
|
1122
|
-
},
|
|
1123
|
-
timepicker: {
|
|
1124
|
-
placeholder: {
|
|
1125
|
-
full: 'ثانیه:دقیقه:ساعت',
|
|
1126
|
-
short: 'دقیقه:ساعت'
|
|
1127
|
-
}
|
|
1128
|
-
},
|
|
1129
|
-
fileUpload: {
|
|
1130
|
-
single: {
|
|
1131
|
-
captionText: 'فایل را به اینجا بکشید یا {{ browseLink }}',
|
|
1132
|
-
browseLink: 'انتخاب کنید'
|
|
1133
|
-
},
|
|
1134
|
-
multiple: {
|
|
1135
|
-
captionText: 'به اینجا بکشید یا {{ browseLink }}',
|
|
1136
|
-
captionTextWhenSelected: 'فایل های بیشتری را بکشید یا {{ browseLink }}',
|
|
1137
|
-
captionTextForCompactSize: 'فایل ها را بکشید یا {{ browseLink }}',
|
|
1138
|
-
browseLink: 'انتخاب کنید',
|
|
1139
|
-
title: 'فایل ها را آپلود کنید',
|
|
1140
|
-
gridHeaders: {
|
|
1141
|
-
file: 'فایل',
|
|
1142
|
-
size: 'اندازه'
|
|
1143
|
-
}
|
|
1144
|
-
}
|
|
1145
|
-
},
|
|
1146
|
-
codeBlock: {
|
|
1147
|
-
softWrapOnTooltip: 'فعالسازی سطربندی',
|
|
1148
|
-
softWrapOffTooltip: 'غیرفعالسازی سطربندی',
|
|
1149
|
-
downloadTooltip: 'دانلود',
|
|
1150
|
-
copiedTooltip: '✓ کپی شد',
|
|
1151
|
-
copyTooltip: 'کپی',
|
|
1152
|
-
viewAllText: 'نمایش همه',
|
|
1153
|
-
viewLessText: 'نمایش کمتر',
|
|
1154
|
-
openExternalSystemTooltip: 'باز کردن در سیستم خارجی'
|
|
1155
|
-
},
|
|
1156
|
-
timezone: {
|
|
1157
|
-
searchPlaceholder: ' شهر یا منطقه زمانی '
|
|
1158
|
-
},
|
|
1159
|
-
actionsPanel: {
|
|
1160
|
-
closeTooltip: 'إلغاء التحديد'
|
|
1161
|
-
},
|
|
1162
|
-
filterBar: {
|
|
1163
|
-
reset: {
|
|
1164
|
-
buttonName: 'بازنشانی'
|
|
1165
|
-
},
|
|
1166
|
-
search: {
|
|
1167
|
-
tooltip: 'جستجو',
|
|
1168
|
-
placeholder: 'جستجو'
|
|
1169
|
-
},
|
|
1170
|
-
filters: {
|
|
1171
|
-
defaultName: 'فیلترها',
|
|
1172
|
-
saveNewFilterTooltip: 'ذخیره فیلتر جدید',
|
|
1173
|
-
searchPlaceholder: 'جستجو',
|
|
1174
|
-
searchEmptyResult: 'چیزی پیدا نشد',
|
|
1175
|
-
saveAsNewFilter: 'ذخیره بهعنوان فیلتر جدید',
|
|
1176
|
-
saveChanges: 'ذخیره تغییرات',
|
|
1177
|
-
saveAsNew: 'ذخیره بهعنوان مورد جدید',
|
|
1178
|
-
change: 'ویرایش',
|
|
1179
|
-
resetChanges: 'بازنشانی',
|
|
1180
|
-
remove: 'حذف',
|
|
1181
|
-
name: 'نام',
|
|
1182
|
-
error: 'جستجویی با این نام از قبل وجود دارد',
|
|
1183
|
-
errorHint: 'فیلتر ذخیره نشد. دوباره امتحان کنید یا با سرپرست تماس بگیرید.',
|
|
1184
|
-
saveButton: 'ذخیره',
|
|
1185
|
-
cancelButton: 'لغو'
|
|
1186
|
-
},
|
|
1187
|
-
add: {
|
|
1188
|
-
tooltip: 'افزودن فیلتر'
|
|
1189
|
-
},
|
|
1190
|
-
pipe: {
|
|
1191
|
-
clearButtonTooltip: 'پاک کردن',
|
|
1192
|
-
removeButtonTooltip: 'حذف',
|
|
1193
|
-
applyButton: 'اعمال',
|
|
1194
|
-
emptySearchResult: 'چیزی پیدا نشد',
|
|
1195
|
-
selectAll: 'همه را انتخاب کنید'
|
|
1196
|
-
},
|
|
1197
|
-
datePipe: {
|
|
1198
|
-
customPeriod: 'دوره سفارشی',
|
|
1199
|
-
customPeriodFrom: 'از',
|
|
1200
|
-
customPeriodTo: 'تا',
|
|
1201
|
-
customPeriodErrorHint: 'دوره نمیتواند بعد از پایان آن شروع شود',
|
|
1202
|
-
backToPeriodSelection: 'بازگشت به انتخاب دوره'
|
|
1203
|
-
}
|
|
1204
|
-
},
|
|
1205
|
-
clampedText: {
|
|
1206
|
-
openText: 'باز کردن',
|
|
1207
|
-
closeText: 'بستن'
|
|
1208
|
-
},
|
|
1209
|
-
navbarIc: {
|
|
1210
|
-
toggle: {
|
|
1211
|
-
pinButton: 'ترک گسترش یافته',
|
|
1212
|
-
collapseButton: 'جمع کردن'
|
|
1213
|
-
}
|
|
1214
|
-
},
|
|
1215
|
-
searchExpandable: {
|
|
1216
|
-
tooltip: 'جستجو',
|
|
1217
|
-
placeholder: 'جستجو'
|
|
1218
|
-
},
|
|
1219
|
-
appSwitcher: {
|
|
1220
|
-
searchPlaceholder: 'جستجو',
|
|
1221
|
-
searchEmptyResult: 'چیزی پیدا نشد',
|
|
1222
|
-
sitesHeader: 'سایتهای دیگر'
|
|
1223
|
-
},
|
|
1224
|
-
timeRange: {
|
|
1225
|
-
title: {
|
|
1226
|
-
for: 'برای',
|
|
1227
|
-
placeholder: 'دوره را انتخاب کنید'
|
|
1228
|
-
},
|
|
1229
|
-
editor: {
|
|
1230
|
-
from: 'از',
|
|
1231
|
-
to: 'تا',
|
|
1232
|
-
apply: 'اعمال',
|
|
1233
|
-
cancel: 'لغو',
|
|
1234
|
-
rangeLabel: 'برای دوره',
|
|
1235
|
-
allTime: 'برای همه زمانها',
|
|
1236
|
-
currentQuarter: 'برای فصل جاری',
|
|
1237
|
-
currentYear: 'برای سال جاری'
|
|
1238
|
-
},
|
|
1239
|
-
durationTemplate: {
|
|
1240
|
-
title: {
|
|
1241
|
-
SEPARATOR: ' و ',
|
|
1242
|
-
LAST_PART_SEPARATOR: '',
|
|
1243
|
-
YEARS: `{years} سال گذشته`,
|
|
1244
|
-
MONTHS: `{months} ماه گذشته`,
|
|
1245
|
-
WEEKS: `{weeks} هفته گذشته`,
|
|
1246
|
-
DAYS: `{days} روز گذشته`,
|
|
1247
|
-
HOURS: `{hours} ساعت گذشته`,
|
|
1248
|
-
MINUTES: `{minutes} دقیقه گذشته`,
|
|
1249
|
-
SECONDS: `{seconds} ثانیه گذشته`,
|
|
1250
|
-
YEARS_FRACTION: `{floorValue, plural,
|
|
1251
|
-
=1 {سال {years, number, ::# و #}}
|
|
1252
|
-
other {سالها {years, number, ::# و #}}
|
|
1253
|
-
}`,
|
|
1254
|
-
MONTHS_FRACTION: `{floorValue, plural,
|
|
1255
|
-
=1 {ماه {months, number, ::# و #}}
|
|
1256
|
-
other {ماه ها {months, number, ::# و #}}
|
|
1257
|
-
}`
|
|
1258
|
-
},
|
|
1259
|
-
option: {
|
|
1260
|
-
SEPARATOR: ' و ',
|
|
1261
|
-
LAST_PART_SEPARATOR: '',
|
|
1262
|
-
YEARS: `{years} سال گذشته`,
|
|
1263
|
-
MONTHS: `{months} ماه گذشته`,
|
|
1264
|
-
WEEKS: `{weeks} هفته گذشته`,
|
|
1265
|
-
DAYS: `{days} روز گذشته`,
|
|
1266
|
-
HOURS: `{hours} ساعت گذشته`,
|
|
1267
|
-
MINUTES: `{minutes} دقیقه گذشته`,
|
|
1268
|
-
SECONDS: `{seconds} ثانیه گذشته`,
|
|
1269
|
-
YEARS_FRACTION: `{floorValue, plural,
|
|
1270
|
-
=1 {سال {years, number, ::# و #}}
|
|
1271
|
-
other {سالها {years, number, ::# و #}}
|
|
1272
|
-
}`,
|
|
1273
|
-
MONTHS_FRACTION: `{floorValue, plural,
|
|
1274
|
-
=1 {ماه {months, number, ::# و #}}
|
|
1275
|
-
other {ماه ها {months, number, ::# و #}}
|
|
1276
|
-
}`
|
|
1277
|
-
}
|
|
1278
|
-
}
|
|
1279
|
-
},
|
|
1280
|
-
notificationCenter: {
|
|
1281
|
-
notifications: 'اعلانها',
|
|
1282
|
-
remove: 'حذف',
|
|
1283
|
-
doNotDisturb: 'مزاحم نشوید',
|
|
1284
|
-
showPopUpNotifications: 'نمایش اعلانهای پاپآپ',
|
|
1285
|
-
noNotifications: 'بدون اعلان',
|
|
1286
|
-
failedToLoadNotifications: 'بارگیری اعلانها ناموفق بود',
|
|
1287
|
-
repeat: 'تکرار'
|
|
1288
|
-
}
|
|
1289
|
-
};
|
|
1290
|
-
|
|
1291
1141
|
const ptBRLocaleData = {
|
|
1292
1142
|
select: { hiddenItemsText: '{{ number }} mais' },
|
|
1293
1143
|
datepicker: {
|
|
@@ -1334,45 +1184,45 @@ const ptBRLocaleData = {
|
|
|
1334
1184
|
},
|
|
1335
1185
|
filterBar: {
|
|
1336
1186
|
reset: {
|
|
1337
|
-
buttonName: '
|
|
1187
|
+
buttonName: 'Reconfigurar'
|
|
1338
1188
|
},
|
|
1339
1189
|
search: {
|
|
1340
|
-
tooltip: '
|
|
1341
|
-
placeholder: '
|
|
1190
|
+
tooltip: 'Buscar',
|
|
1191
|
+
placeholder: 'Buscar'
|
|
1342
1192
|
},
|
|
1343
1193
|
filters: {
|
|
1344
1194
|
defaultName: 'Filtros',
|
|
1345
|
-
saveNewFilterTooltip: '
|
|
1346
|
-
searchPlaceholder: '
|
|
1195
|
+
saveNewFilterTooltip: 'Salve o filtro novo',
|
|
1196
|
+
searchPlaceholder: 'Buscar',
|
|
1347
1197
|
searchEmptyResult: 'Nada encontrado',
|
|
1348
|
-
saveAsNewFilter: '
|
|
1349
|
-
saveChanges: '
|
|
1350
|
-
saveAsNew: '
|
|
1198
|
+
saveAsNewFilter: 'Salve o filtro novo',
|
|
1199
|
+
saveChanges: 'Salve as mudanças',
|
|
1200
|
+
saveAsNew: 'Salve como novo',
|
|
1351
1201
|
change: 'Editar',
|
|
1352
|
-
resetChanges: '
|
|
1353
|
-
remove: '
|
|
1202
|
+
resetChanges: 'Reconfigurar',
|
|
1203
|
+
remove: 'Deletar',
|
|
1354
1204
|
name: 'Nome',
|
|
1355
|
-
error: '
|
|
1356
|
-
errorHint: '
|
|
1205
|
+
error: 'A busca com esse nome já existe',
|
|
1206
|
+
errorHint: 'O filtro não pôde ser salvo. Tente de novo ou entre em contato com o administrador.',
|
|
1357
1207
|
saveButton: 'Salvar',
|
|
1358
1208
|
cancelButton: 'Cancelar'
|
|
1359
1209
|
},
|
|
1360
1210
|
add: {
|
|
1361
|
-
tooltip: 'Adicionar
|
|
1211
|
+
tooltip: 'Adicionar filtros'
|
|
1362
1212
|
},
|
|
1363
1213
|
pipe: {
|
|
1364
1214
|
clearButtonTooltip: 'Apagar',
|
|
1365
|
-
removeButtonTooltip: '
|
|
1215
|
+
removeButtonTooltip: 'Deletar',
|
|
1366
1216
|
applyButton: 'Aplicar',
|
|
1367
1217
|
emptySearchResult: 'Nada encontrado',
|
|
1368
|
-
selectAll: 'Selecionar
|
|
1218
|
+
selectAll: 'Selecionar todos'
|
|
1369
1219
|
},
|
|
1370
1220
|
datePipe: {
|
|
1371
|
-
customPeriod: '
|
|
1221
|
+
customPeriod: 'Selecionar período',
|
|
1372
1222
|
customPeriodFrom: 'de',
|
|
1373
1223
|
customPeriodTo: 'até',
|
|
1374
|
-
customPeriodErrorHint: 'O
|
|
1375
|
-
backToPeriodSelection: '
|
|
1224
|
+
customPeriodErrorHint: 'O período não pode começar depois de quando acaba',
|
|
1225
|
+
backToPeriodSelection: 'Voltar à seleção de período'
|
|
1376
1226
|
}
|
|
1377
1227
|
},
|
|
1378
1228
|
clampedText: {
|
|
@@ -1385,6 +1235,12 @@ const ptBRLocaleData = {
|
|
|
1385
1235
|
collapseButton: 'Recolher'
|
|
1386
1236
|
}
|
|
1387
1237
|
},
|
|
1238
|
+
navbar: {
|
|
1239
|
+
toggle: {
|
|
1240
|
+
expand: 'Expandir',
|
|
1241
|
+
collapse: 'Colapso'
|
|
1242
|
+
}
|
|
1243
|
+
},
|
|
1388
1244
|
searchExpandable: {
|
|
1389
1245
|
tooltip: 'Pesquisar',
|
|
1390
1246
|
placeholder: 'Pesquisar'
|
|
@@ -1589,6 +1445,12 @@ const ruRULocaleData = {
|
|
|
1589
1445
|
collapseButton: 'Свернуть'
|
|
1590
1446
|
}
|
|
1591
1447
|
},
|
|
1448
|
+
navbar: {
|
|
1449
|
+
toggle: {
|
|
1450
|
+
expand: 'Развернуть',
|
|
1451
|
+
collapse: 'Свернуть'
|
|
1452
|
+
}
|
|
1453
|
+
},
|
|
1592
1454
|
searchExpandable: {
|
|
1593
1455
|
tooltip: 'Поиск',
|
|
1594
1456
|
placeholder: 'Поиск'
|
|
@@ -1756,7 +1618,7 @@ const tkTMLocaleData = {
|
|
|
1756
1618
|
},
|
|
1757
1619
|
filterBar: {
|
|
1758
1620
|
reset: {
|
|
1759
|
-
buttonName: 'Täzeden
|
|
1621
|
+
buttonName: 'Täzeden düz'
|
|
1760
1622
|
},
|
|
1761
1623
|
search: {
|
|
1762
1624
|
tooltip: 'Gözleg',
|
|
@@ -1764,37 +1626,37 @@ const tkTMLocaleData = {
|
|
|
1764
1626
|
},
|
|
1765
1627
|
filters: {
|
|
1766
1628
|
defaultName: 'Filtrler',
|
|
1767
|
-
saveNewFilterTooltip: 'Täze filtri
|
|
1629
|
+
saveNewFilterTooltip: 'Täze filtri ýazdyr',
|
|
1768
1630
|
searchPlaceholder: 'Gözleg',
|
|
1769
1631
|
searchEmptyResult: 'Hiç zat tapylmady',
|
|
1770
|
-
saveAsNewFilter: 'Täze filtr hökmünde
|
|
1771
|
-
saveChanges: 'Üýtgetmeleri
|
|
1772
|
-
saveAsNew: 'Täze hökmünde
|
|
1773
|
-
change: '
|
|
1774
|
-
resetChanges: '
|
|
1775
|
-
remove: '
|
|
1776
|
-
name: '
|
|
1777
|
-
error: '
|
|
1778
|
-
errorHint: 'Filtri
|
|
1779
|
-
saveButton: '
|
|
1780
|
-
cancelButton: '
|
|
1632
|
+
saveAsNewFilter: 'Täze filtr hökmünde ýazdyr',
|
|
1633
|
+
saveChanges: 'Üýtgetmeleri ýazdyr',
|
|
1634
|
+
saveAsNew: 'Täze hökmünde ýazdyr',
|
|
1635
|
+
change: 'Düzet',
|
|
1636
|
+
resetChanges: 'Täzeden düz',
|
|
1637
|
+
remove: 'Poz',
|
|
1638
|
+
name: 'At',
|
|
1639
|
+
error: 'Şeýle atly gözleg eýýäm bar',
|
|
1640
|
+
errorHint: 'Filtri ýazdyryp bolmady. Täzeden synanyň ýa-da administratora ýüz tutuň.',
|
|
1641
|
+
saveButton: 'Ýazdyr',
|
|
1642
|
+
cancelButton: 'Ýatyr'
|
|
1781
1643
|
},
|
|
1782
1644
|
add: {
|
|
1783
|
-
tooltip: 'Filtr
|
|
1645
|
+
tooltip: 'Filtr goş'
|
|
1784
1646
|
},
|
|
1785
1647
|
pipe: {
|
|
1786
|
-
clearButtonTooltip: '
|
|
1787
|
-
removeButtonTooltip: '
|
|
1788
|
-
applyButton: '
|
|
1648
|
+
clearButtonTooltip: 'Arassala',
|
|
1649
|
+
removeButtonTooltip: 'Ýokla',
|
|
1650
|
+
applyButton: 'Ulan',
|
|
1789
1651
|
emptySearchResult: 'Hiç zat tapylmady',
|
|
1790
|
-
selectAll: '
|
|
1652
|
+
selectAll: 'Ählisini saýla'
|
|
1791
1653
|
},
|
|
1792
1654
|
datePipe: {
|
|
1793
|
-
customPeriod: '
|
|
1794
|
-
customPeriodFrom: '
|
|
1795
|
-
customPeriodTo: '
|
|
1796
|
-
customPeriodErrorHint: '
|
|
1797
|
-
backToPeriodSelection: '
|
|
1655
|
+
customPeriod: 'Laýyk döwür',
|
|
1656
|
+
customPeriodFrom: 'başy',
|
|
1657
|
+
customPeriodTo: 'soňy',
|
|
1658
|
+
customPeriodErrorHint: 'Döwür gutarýan wagtyndan soň başlap bilmeýär',
|
|
1659
|
+
backToPeriodSelection: 'Döwri saýlamaga dolan'
|
|
1798
1660
|
}
|
|
1799
1661
|
},
|
|
1800
1662
|
clampedText: {
|
|
@@ -1807,6 +1669,12 @@ const tkTMLocaleData = {
|
|
|
1807
1669
|
collapseButton: 'Apseykylmak'
|
|
1808
1670
|
}
|
|
1809
1671
|
},
|
|
1672
|
+
navbar: {
|
|
1673
|
+
toggle: {
|
|
1674
|
+
expand: 'Giňeltmek',
|
|
1675
|
+
collapse: 'Ýykmak'
|
|
1676
|
+
}
|
|
1677
|
+
},
|
|
1810
1678
|
searchExpandable: {
|
|
1811
1679
|
tooltip: 'Gözleg',
|
|
1812
1680
|
placeholder: 'Gözleg'
|
|
@@ -1913,167 +1781,6 @@ const tkTMLocaleData = {
|
|
|
1913
1781
|
}
|
|
1914
1782
|
};
|
|
1915
1783
|
|
|
1916
|
-
const zhCNLocaleData = {
|
|
1917
|
-
select: { hiddenItemsText: '另外 {{ number }} 个' },
|
|
1918
|
-
datepicker: {
|
|
1919
|
-
placeholder: '年/月/日'
|
|
1920
|
-
},
|
|
1921
|
-
timepicker: {
|
|
1922
|
-
placeholder: {
|
|
1923
|
-
full: '时:分:秒',
|
|
1924
|
-
short: '时:分'
|
|
1925
|
-
}
|
|
1926
|
-
},
|
|
1927
|
-
fileUpload: {
|
|
1928
|
-
single: {
|
|
1929
|
-
captionText: '将文件拖到此处或{{ browseLink }}',
|
|
1930
|
-
browseLink: '选择'
|
|
1931
|
-
},
|
|
1932
|
-
multiple: {
|
|
1933
|
-
captionText: '拖到此处或{{ browseLink }}',
|
|
1934
|
-
captionTextWhenSelected: '拖动更多文件或{{ browseLink }}',
|
|
1935
|
-
captionTextForCompactSize: '拖动文件或{{ browseLink }}',
|
|
1936
|
-
browseLink: '选择',
|
|
1937
|
-
title: '上传文件',
|
|
1938
|
-
gridHeaders: {
|
|
1939
|
-
file: '文件',
|
|
1940
|
-
size: '大小'
|
|
1941
|
-
}
|
|
1942
|
-
}
|
|
1943
|
-
},
|
|
1944
|
-
codeBlock: {
|
|
1945
|
-
softWrapOnTooltip: '启用文本换行',
|
|
1946
|
-
softWrapOffTooltip: '禁用文本换行',
|
|
1947
|
-
downloadTooltip: '下载',
|
|
1948
|
-
copiedTooltip: '✓已复制',
|
|
1949
|
-
copyTooltip: '复制',
|
|
1950
|
-
viewAllText: '显示全部',
|
|
1951
|
-
viewLessText: '显示部分',
|
|
1952
|
-
openExternalSystemTooltip: '在外部系统中打开'
|
|
1953
|
-
},
|
|
1954
|
-
timezone: {
|
|
1955
|
-
searchPlaceholder: '城市或时区'
|
|
1956
|
-
},
|
|
1957
|
-
actionsPanel: {
|
|
1958
|
-
closeTooltip: '取消选择'
|
|
1959
|
-
},
|
|
1960
|
-
filterBar: {
|
|
1961
|
-
reset: {
|
|
1962
|
-
buttonName: '重置'
|
|
1963
|
-
},
|
|
1964
|
-
search: {
|
|
1965
|
-
tooltip: '搜索',
|
|
1966
|
-
placeholder: '搜索'
|
|
1967
|
-
},
|
|
1968
|
-
filters: {
|
|
1969
|
-
defaultName: '筛选器',
|
|
1970
|
-
saveNewFilterTooltip: '保存新筛选器',
|
|
1971
|
-
searchPlaceholder: '搜索',
|
|
1972
|
-
searchEmptyResult: '未找到任何内容',
|
|
1973
|
-
saveAsNewFilter: '另存为新筛选器',
|
|
1974
|
-
saveChanges: '保存更改',
|
|
1975
|
-
saveAsNew: '另存为新的',
|
|
1976
|
-
change: '编辑',
|
|
1977
|
-
resetChanges: '重置',
|
|
1978
|
-
remove: '删除',
|
|
1979
|
-
name: '名称',
|
|
1980
|
-
error: '已经使用此名称进行过搜索',
|
|
1981
|
-
errorHint: '无法保存筛选器。请重试或联系管理员。',
|
|
1982
|
-
saveButton: '保存',
|
|
1983
|
-
cancelButton: '取消'
|
|
1984
|
-
},
|
|
1985
|
-
add: {
|
|
1986
|
-
tooltip: '添加筛选器'
|
|
1987
|
-
},
|
|
1988
|
-
pipe: {
|
|
1989
|
-
clearButtonTooltip: '清除',
|
|
1990
|
-
removeButtonTooltip: '删除',
|
|
1991
|
-
applyButton: '应用',
|
|
1992
|
-
emptySearchResult: '未找到任何内容',
|
|
1993
|
-
selectAll: '选择全部'
|
|
1994
|
-
},
|
|
1995
|
-
datePipe: {
|
|
1996
|
-
customPeriod: '自定义时段',
|
|
1997
|
-
customPeriodFrom: '从',
|
|
1998
|
-
customPeriodTo: '到',
|
|
1999
|
-
customPeriodErrorHint: '时段开始时间不能晚于结束时间',
|
|
2000
|
-
backToPeriodSelection: '返回以选择一个时段'
|
|
2001
|
-
}
|
|
2002
|
-
},
|
|
2003
|
-
clampedText: {
|
|
2004
|
-
openText: '展开',
|
|
2005
|
-
closeText: '收起'
|
|
2006
|
-
},
|
|
2007
|
-
navbarIc: {
|
|
2008
|
-
toggle: {
|
|
2009
|
-
pinButton: '保持展开',
|
|
2010
|
-
collapseButton: '折叠'
|
|
2011
|
-
}
|
|
2012
|
-
},
|
|
2013
|
-
searchExpandable: {
|
|
2014
|
-
tooltip: '搜索',
|
|
2015
|
-
placeholder: '搜索'
|
|
2016
|
-
},
|
|
2017
|
-
appSwitcher: {
|
|
2018
|
-
searchPlaceholder: '搜索',
|
|
2019
|
-
searchEmptyResult: '未找到任何内容',
|
|
2020
|
-
sitesHeader: '其他网站'
|
|
2021
|
-
},
|
|
2022
|
-
timeRange: {
|
|
2023
|
-
title: {
|
|
2024
|
-
for: '时间范围',
|
|
2025
|
-
placeholder: '选择一个时期'
|
|
2026
|
-
},
|
|
2027
|
-
editor: {
|
|
2028
|
-
from: '开始时间',
|
|
2029
|
-
to: '结束时间',
|
|
2030
|
-
apply: '应用',
|
|
2031
|
-
cancel: '取消',
|
|
2032
|
-
rangeLabel: '时间段',
|
|
2033
|
-
allTime: '全部时间',
|
|
2034
|
-
currentQuarter: '当前季度',
|
|
2035
|
-
currentYear: '当前年份'
|
|
2036
|
-
},
|
|
2037
|
-
durationTemplate: {
|
|
2038
|
-
title: {
|
|
2039
|
-
SEPARATOR: ' ',
|
|
2040
|
-
LAST_PART_SEPARATOR: '',
|
|
2041
|
-
YEARS: `{years} 年`,
|
|
2042
|
-
MONTHS: `{months} 个月`,
|
|
2043
|
-
WEEKS: `{weeks} 周`,
|
|
2044
|
-
DAYS: `{days} 天`,
|
|
2045
|
-
HOURS: `{hours} 小时`,
|
|
2046
|
-
MINUTES: `{minutes} 分`,
|
|
2047
|
-
SECONDS: `{seconds} 秒`,
|
|
2048
|
-
YEARS_FRACTION: `{years} 年`,
|
|
2049
|
-
MONTHS_FRACTION: `{months} 个月`
|
|
2050
|
-
},
|
|
2051
|
-
option: {
|
|
2052
|
-
SEPARATOR: ' ',
|
|
2053
|
-
LAST_PART_SEPARATOR: '',
|
|
2054
|
-
YEARS: `{years} 年`,
|
|
2055
|
-
MONTHS: `{months} 个月`,
|
|
2056
|
-
WEEKS: `{weeks} 周`,
|
|
2057
|
-
DAYS: `{days} 天`,
|
|
2058
|
-
HOURS: `{hours} 小时`,
|
|
2059
|
-
MINUTES: `{minutes} 分`,
|
|
2060
|
-
SECONDS: `{seconds} 秒`,
|
|
2061
|
-
YEARS_FRACTION: `{years} 年`,
|
|
2062
|
-
MONTHS_FRACTION: `{months} 个月`
|
|
2063
|
-
}
|
|
2064
|
-
}
|
|
2065
|
-
},
|
|
2066
|
-
notificationCenter: {
|
|
2067
|
-
notifications: '通知',
|
|
2068
|
-
remove: '移除',
|
|
2069
|
-
doNotDisturb: '请勿打扰',
|
|
2070
|
-
showPopUpNotifications: '显示弹出通知',
|
|
2071
|
-
noNotifications: '无通知',
|
|
2072
|
-
failedToLoadNotifications: '加载通知失败',
|
|
2073
|
-
repeat: '重复'
|
|
2074
|
-
}
|
|
2075
|
-
};
|
|
2076
|
-
|
|
2077
1784
|
const enUSFormattersData = {
|
|
2078
1785
|
formatters: {
|
|
2079
1786
|
number: {
|
|
@@ -2151,43 +1858,6 @@ const esLAFormattersData = {
|
|
|
2151
1858
|
}
|
|
2152
1859
|
}
|
|
2153
1860
|
};
|
|
2154
|
-
const faIRFormattersData = {
|
|
2155
|
-
formatters: {
|
|
2156
|
-
number: {
|
|
2157
|
-
rounding: {
|
|
2158
|
-
separator: ' ',
|
|
2159
|
-
groupSeparator: '٫',
|
|
2160
|
-
thousand: 'هزار',
|
|
2161
|
-
million: 'میلیون',
|
|
2162
|
-
billion: 'م',
|
|
2163
|
-
trillion: 'تریلیون',
|
|
2164
|
-
rtl: true
|
|
2165
|
-
}
|
|
2166
|
-
}
|
|
2167
|
-
},
|
|
2168
|
-
input: {
|
|
2169
|
-
number: {
|
|
2170
|
-
groupSeparator: ['\u066C'],
|
|
2171
|
-
fractionSeparator: '\u066B'
|
|
2172
|
-
}
|
|
2173
|
-
},
|
|
2174
|
-
sizeUnits: {
|
|
2175
|
-
defaultUnitSystem: 'SI',
|
|
2176
|
-
defaultPrecision: 2,
|
|
2177
|
-
unitSystems: {
|
|
2178
|
-
SI: {
|
|
2179
|
-
abbreviations: ['B', 'KB', 'MB', 'GB', 'TB'],
|
|
2180
|
-
base: 10,
|
|
2181
|
-
power: 3
|
|
2182
|
-
},
|
|
2183
|
-
IEC: {
|
|
2184
|
-
abbreviations: ['B', 'KiB', 'MiB', 'GiB', 'TiB'],
|
|
2185
|
-
base: 2,
|
|
2186
|
-
power: 10
|
|
2187
|
-
}
|
|
2188
|
-
}
|
|
2189
|
-
}
|
|
2190
|
-
};
|
|
2191
1861
|
const ptBRFormattersData = {
|
|
2192
1862
|
formatters: {
|
|
2193
1863
|
number: {
|
|
@@ -2266,41 +1936,6 @@ const ruRUFormattersData = {
|
|
|
2266
1936
|
}
|
|
2267
1937
|
}
|
|
2268
1938
|
};
|
|
2269
|
-
const zhCNFormattersData = {
|
|
2270
|
-
formatters: {
|
|
2271
|
-
number: {
|
|
2272
|
-
rounding: {
|
|
2273
|
-
separator: ' ',
|
|
2274
|
-
groupSeparator: '.',
|
|
2275
|
-
tenThousand: '万',
|
|
2276
|
-
oneHundredMillions: '亿',
|
|
2277
|
-
trillion: '兆'
|
|
2278
|
-
}
|
|
2279
|
-
}
|
|
2280
|
-
},
|
|
2281
|
-
input: {
|
|
2282
|
-
number: {
|
|
2283
|
-
groupSeparator: [','],
|
|
2284
|
-
fractionSeparator: '.'
|
|
2285
|
-
}
|
|
2286
|
-
},
|
|
2287
|
-
sizeUnits: {
|
|
2288
|
-
defaultUnitSystem: 'SI',
|
|
2289
|
-
defaultPrecision: 2,
|
|
2290
|
-
unitSystems: {
|
|
2291
|
-
SI: {
|
|
2292
|
-
abbreviations: ['B', 'KB', 'MB', 'GB', 'TB'],
|
|
2293
|
-
base: 10,
|
|
2294
|
-
power: 3
|
|
2295
|
-
},
|
|
2296
|
-
IEC: {
|
|
2297
|
-
abbreviations: ['B', 'KiB', 'MiB', 'GiB', 'TiB'],
|
|
2298
|
-
base: 2,
|
|
2299
|
-
power: 10
|
|
2300
|
-
}
|
|
2301
|
-
}
|
|
2302
|
-
}
|
|
2303
|
-
};
|
|
2304
1939
|
const tkTMFormattersData = {
|
|
2305
1940
|
formatters: {
|
|
2306
1941
|
number: {
|
|
@@ -2344,19 +1979,15 @@ function KBQ_DEFAULT_LOCALE_DATA_FACTORY() {
|
|
|
2344
1979
|
return {
|
|
2345
1980
|
items: [
|
|
2346
1981
|
{ id: 'en-US', name: 'English' },
|
|
2347
|
-
{ id: 'zh-CN', name: '简体中文' },
|
|
2348
1982
|
{ id: 'es-LA', name: 'Español' },
|
|
2349
1983
|
{ id: 'pt-BR', name: 'Português' },
|
|
2350
1984
|
{ id: 'ru-RU', name: 'Русский' },
|
|
2351
|
-
{ id: 'fa-IR', name: 'فارسی' },
|
|
2352
1985
|
{ id: 'tk-TM', name: 'Türkmen' }
|
|
2353
1986
|
],
|
|
2354
1987
|
'en-US': { ...enUSLocaleData, ...enUSFormattersData },
|
|
2355
|
-
'zh-CN': { ...zhCNLocaleData, ...zhCNFormattersData },
|
|
2356
1988
|
'es-LA': { ...esLALocaleData, ...esLAFormattersData },
|
|
2357
1989
|
'pt-BR': { ...ptBRLocaleData, ...ptBRFormattersData },
|
|
2358
1990
|
'ru-RU': { ...ruRULocaleData, ...ruRUFormattersData },
|
|
2359
|
-
'fa-IR': { ...faIRLocaleData, ...faIRFormattersData },
|
|
2360
1991
|
'tk-TM': { ...tkTMLocaleData, ...tkTMFormattersData }
|
|
2361
1992
|
};
|
|
2362
1993
|
}
|
|
@@ -2430,6 +2061,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
2430
2061
|
// todo code below need refactor or delete in DS-3603
|
|
2431
2062
|
function numberByParts(value, fractionSeparator, groupSeparator) {
|
|
2432
2063
|
const result = { integer: '', fraction: '' };
|
|
2064
|
+
const isNegative = value.startsWith('-');
|
|
2433
2065
|
const numberByParts = value.split(fractionSeparator);
|
|
2434
2066
|
if (numberByParts.length > 1) {
|
|
2435
2067
|
result.fraction = numberByParts.pop() || '';
|
|
@@ -2442,6 +2074,8 @@ function numberByParts(value, fractionSeparator, groupSeparator) {
|
|
|
2442
2074
|
else {
|
|
2443
2075
|
result.integer = numberByParts.join().replace(groupSeparator[0], '').replace(/\D/g, '');
|
|
2444
2076
|
}
|
|
2077
|
+
if (isNegative)
|
|
2078
|
+
result.integer = `-${result.integer}`;
|
|
2445
2079
|
return result;
|
|
2446
2080
|
}
|
|
2447
2081
|
/**
|
|
@@ -2975,7 +2609,7 @@ const ROUNDING_UNITS = {
|
|
|
2975
2609
|
trillion: 1e12
|
|
2976
2610
|
};
|
|
2977
2611
|
const intervalsConfig = {
|
|
2978
|
-
supportedLanguages: ['ru-RU', 'en-US', 'es-LA', 'pt-BR'
|
|
2612
|
+
supportedLanguages: ['ru-RU', 'en-US', 'es-LA', 'pt-BR'],
|
|
2979
2613
|
intervals: [
|
|
2980
2614
|
{ startRange: 1, endRange: ROUNDING_UNITS.thousand },
|
|
2981
2615
|
{ startRange: ROUNDING_UNITS.thousand, endRange: ROUNDING_UNITS.tenThousand, precision: 1 },
|
|
@@ -4214,9 +3848,9 @@ class KbqOption extends KbqOptionBase {
|
|
|
4214
3848
|
get active() {
|
|
4215
3849
|
return this._active;
|
|
4216
3850
|
}
|
|
4217
|
-
constructor(
|
|
3851
|
+
constructor(elementRef, changeDetectorRef, parent, group) {
|
|
4218
3852
|
super();
|
|
4219
|
-
this.
|
|
3853
|
+
this.elementRef = elementRef;
|
|
4220
3854
|
this.changeDetectorRef = changeDetectorRef;
|
|
4221
3855
|
this.parent = parent;
|
|
4222
3856
|
this.group = group;
|
|
@@ -4250,9 +3884,13 @@ class KbqOption extends KbqOptionBase {
|
|
|
4250
3884
|
ngOnDestroy() {
|
|
4251
3885
|
this.stateChanges.complete();
|
|
4252
3886
|
}
|
|
3887
|
+
/** @docs-private */
|
|
4253
3888
|
getHeight() {
|
|
4254
|
-
const
|
|
4255
|
-
|
|
3889
|
+
const element = this.elementRef.nativeElement;
|
|
3890
|
+
// For SSR compatibility
|
|
3891
|
+
if (typeof element.getClientRects !== 'function')
|
|
3892
|
+
return 0;
|
|
3893
|
+
return element.getClientRects()[0]?.height ?? 0;
|
|
4256
3894
|
}
|
|
4257
3895
|
select(emitEvent = true) {
|
|
4258
3896
|
if (!this._selected) {
|
|
@@ -4328,7 +3966,7 @@ class KbqOption extends KbqOptionBase {
|
|
|
4328
3966
|
return this.disabled ? '-1' : '0';
|
|
4329
3967
|
}
|
|
4330
3968
|
getHostElement() {
|
|
4331
|
-
return this.
|
|
3969
|
+
return this.elementRef.nativeElement;
|
|
4332
3970
|
}
|
|
4333
3971
|
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: KbqOption, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: KBQ_OPTION_PARENT_COMPONENT, optional: true }, { token: KbqOptgroup, optional: true }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4334
3972
|
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: KbqOption, selector: "kbq-option", inputs: { value: "value", selectable: ["selectable", "selectable", booleanAttribute], userSelect: ["userSelect", "userSelect", booleanAttribute], showCheckbox: "showCheckbox", viewValue: "viewValue", disabled: "disabled" }, outputs: { onSelectionChange: "onSelectionChange" }, host: { listeners: { "click": "selectViaInteraction()", "keydown": "handleKeydown($event)" }, properties: { "attr.tabindex": "getTabIndex()", "class.kbq-selected": "selected", "class.kbq-option-multiple": "multiple", "class.kbq-active": "active", "class.kbq-disabled": "disabled", "id": "id" }, classAttribute: "kbq-option" }, providers: [
|
|
@@ -4867,6 +4505,39 @@ class KbqPopUp {
|
|
|
4867
4505
|
addEventListenerForHide() {
|
|
4868
4506
|
this.elementRef.nativeElement.addEventListener('mouseleave', () => this.hide(0));
|
|
4869
4507
|
}
|
|
4508
|
+
setStickPosition() {
|
|
4509
|
+
const oppositeSide = {
|
|
4510
|
+
[PopUpPlacements.Top]: PopUpPlacements.Bottom,
|
|
4511
|
+
[PopUpPlacements.Bottom]: PopUpPlacements.Top,
|
|
4512
|
+
[PopUpPlacements.Right]: PopUpPlacements.Left,
|
|
4513
|
+
[PopUpPlacements.Left]: PopUpPlacements.Right
|
|
4514
|
+
}[this.trigger.stickToWindow];
|
|
4515
|
+
if (!this.trigger.stickToWindow || !oppositeSide)
|
|
4516
|
+
return;
|
|
4517
|
+
this.arrow = false;
|
|
4518
|
+
if (this.trigger.container) {
|
|
4519
|
+
const { width, height } = this.elementRef.nativeElement.getBoundingClientRect();
|
|
4520
|
+
const { right, left, top, bottom } = this.trigger.container.getBoundingClientRect();
|
|
4521
|
+
if (this.trigger.stickToWindow === PopUpPlacements.Right) {
|
|
4522
|
+
this.renderer.setStyle(this.trigger.overlayRef?.overlayElement, 'left', coerceCssPixelValue(right - width));
|
|
4523
|
+
}
|
|
4524
|
+
else if (this.trigger.stickToWindow === PopUpPlacements.Left) {
|
|
4525
|
+
this.renderer.setStyle(this.trigger.overlayRef?.overlayElement, 'left', coerceCssPixelValue(left));
|
|
4526
|
+
}
|
|
4527
|
+
else if (this.trigger.stickToWindow === PopUpPlacements.Top) {
|
|
4528
|
+
this.renderer.setStyle(this.trigger.overlayRef?.overlayElement, 'top', coerceCssPixelValue(top));
|
|
4529
|
+
}
|
|
4530
|
+
else if (this.trigger.stickToWindow === PopUpPlacements.Bottom) {
|
|
4531
|
+
this.renderer.setStyle(this.trigger.overlayRef?.overlayElement, 'top', coerceCssPixelValue(bottom - height));
|
|
4532
|
+
}
|
|
4533
|
+
this.renderer.setStyle(this.trigger.overlayRef?.overlayElement, 'right', 'unset');
|
|
4534
|
+
this.renderer.setStyle(this.trigger.overlayRef?.overlayElement, 'bottom', 'unset');
|
|
4535
|
+
}
|
|
4536
|
+
else {
|
|
4537
|
+
this.renderer.setStyle(this.trigger.overlayRef?.overlayElement, this.trigger.stickToWindow, 0);
|
|
4538
|
+
this.renderer.setStyle(this.trigger.overlayRef?.overlayElement, oppositeSide, 'unset');
|
|
4539
|
+
}
|
|
4540
|
+
}
|
|
4870
4541
|
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: KbqPopUp, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4871
4542
|
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: KbqPopUp, host: { listeners: { "mouseenter": "hovered.next(true)", "mouseleave": "hovered.next(false)" } }, ngImport: i0 }); }
|
|
4872
4543
|
}
|
|
@@ -5015,6 +4686,7 @@ class KbqPopUpTrigger {
|
|
|
5015
4686
|
}
|
|
5016
4687
|
else {
|
|
5017
4688
|
this.placement = PopUpPlacements.Top;
|
|
4689
|
+
// eslint-disable-next-line no-console
|
|
5018
4690
|
console.warn(`Unknown position: ${value}. Will used default position: ${this.placement}`);
|
|
5019
4691
|
}
|
|
5020
4692
|
if (this.visible) {
|
|
@@ -5268,8 +4940,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
5268
4940
|
}]
|
|
5269
4941
|
}] });
|
|
5270
4942
|
class KbqSelectMatcher {
|
|
4943
|
+
constructor() {
|
|
4944
|
+
this.useDefaultHandlers = true;
|
|
4945
|
+
}
|
|
5271
4946
|
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: KbqSelectMatcher, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5272
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "
|
|
4947
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.14", type: KbqSelectMatcher, isStandalone: true, selector: "kbq-select-matcher, [kbq-select-matcher]", inputs: { useDefaultHandlers: ["useDefaultHandlers", "useDefaultHandlers", booleanAttribute] }, ngImport: i0 }); }
|
|
5273
4948
|
}
|
|
5274
4949
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: KbqSelectMatcher, decorators: [{
|
|
5275
4950
|
type: Directive,
|
|
@@ -5277,7 +4952,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
5277
4952
|
selector: 'kbq-select-matcher, [kbq-select-matcher]',
|
|
5278
4953
|
standalone: true
|
|
5279
4954
|
}]
|
|
5280
|
-
}]
|
|
4955
|
+
}], propDecorators: { useDefaultHandlers: [{
|
|
4956
|
+
type: Input,
|
|
4957
|
+
args: [{ transform: booleanAttribute }]
|
|
4958
|
+
}] } });
|
|
5281
4959
|
class KbqSelectFooter {
|
|
5282
4960
|
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: KbqSelectFooter, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5283
4961
|
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: KbqSelectFooter, isStandalone: true, selector: "kbq-select-footer, [kbq-select-footer]", host: { classAttribute: "kbq-select__footer" }, ngImport: i0 }); }
|
|
@@ -5616,11 +5294,11 @@ const kbqDisableLegacyValidationDirectiveProvider = () => ({
|
|
|
5616
5294
|
useValue: { useValidation: false }
|
|
5617
5295
|
});
|
|
5618
5296
|
|
|
5619
|
-
const VERSION = new Version('18.
|
|
5297
|
+
const VERSION = new Version('18.38.0+sha-6730251');
|
|
5620
5298
|
|
|
5621
5299
|
/**
|
|
5622
5300
|
* Generated bundle index. Do not edit.
|
|
5623
5301
|
*/
|
|
5624
5302
|
|
|
5625
|
-
export { ARROW_BOTTOM_MARGIN_AND_HALF_HEIGHT, AbsoluteDateFormatterImpurePipe, AbsoluteDateFormatterPipe, AbsoluteDateShortFormatterImpurePipe, AbsoluteDateShortFormatterPipe, AbsoluteDateTimeFormatterImpurePipe, AbsoluteDateTimeFormatterPipe, AbsoluteShortDateTimeFormatterImpurePipe, AbsoluteShortDateTimeFormatterPipe, AnimationCurves, BOTTOM_LEFT_POSITION_PRIORITY, BOTTOM_POSITION_PRIORITY, BOTTOM_RIGHT_POSITION_PRIORITY, BaseFormatterPipe, DateAdapter, DateFormatter, EXTENDED_OVERLAY_POSITIONS, EmptyFocusTrapStrategy, ErrorStateMatcher, FileValidators, 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_INVALID_VALUE_ERROR, KBQ_LOCALE_DATA, KBQ_LOCALE_ID, KBQ_LOCALE_SERVICE, KBQ_LOCALE_SERVICE_LANG_ATTR_NAME, KBQ_NUMBER_FORMATTER_DEFAULT_OPTIONS, KBQ_NUMBER_FORMATTER_OPTIONS, KBQ_OPTION_ACTION_PARENT, KBQ_OPTION_PARENT_COMPONENT, KBQ_PARENT_ANIMATION_COMPONENT, KBQ_PARENT_POPUP, KBQ_SANITY_CHECKS, KBQ_SELECT_SCROLL_STRATEGY, KBQ_SELECT_SCROLL_STRATEGY_PROVIDER, KBQ_SELECT_SEARCH_MIN_OPTIONS_THRESHOLD, KBQ_SIZE_UNITS_CONFIG, KBQ_SIZE_UNITS_DEFAULT_CONFIG, KBQ_TITLE_TEXT_REF, KBQ_VALIDATION, KBQ_WINDOW, KbqAbstractSelect, KbqActionContainer, KbqAnimationCurves, KbqAnimationDurations, KbqColorDirective, KbqCommonModule, KbqComponentColors, KbqDataSizePipe, KbqDecimalPipe, KbqDefaultThemes, KbqErrorStateTracker, KbqFieldSizingContent, KbqFocusMonitor, KbqForm, KbqFormElement, KbqFormattersModule, KbqFormsModule, KbqHighlightModule, KbqHighlightPipe,
|
|
5303
|
+
export { ARROW_BOTTOM_MARGIN_AND_HALF_HEIGHT, AbsoluteDateFormatterImpurePipe, AbsoluteDateFormatterPipe, AbsoluteDateShortFormatterImpurePipe, AbsoluteDateShortFormatterPipe, AbsoluteDateTimeFormatterImpurePipe, AbsoluteDateTimeFormatterPipe, AbsoluteShortDateTimeFormatterImpurePipe, AbsoluteShortDateTimeFormatterPipe, AnimationCurves, BOTTOM_LEFT_POSITION_PRIORITY, BOTTOM_POSITION_PRIORITY, BOTTOM_RIGHT_POSITION_PRIORITY, BaseFormatterPipe, DateAdapter, DateFormatter, EXTENDED_OVERLAY_POSITIONS, EmptyFocusTrapStrategy, ErrorStateMatcher, FileValidators, 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_INVALID_VALUE_ERROR, KBQ_LOCALE_DATA, KBQ_LOCALE_ID, KBQ_LOCALE_SERVICE, KBQ_LOCALE_SERVICE_LANG_ATTR_NAME, KBQ_NUMBER_FORMATTER_DEFAULT_OPTIONS, KBQ_NUMBER_FORMATTER_OPTIONS, KBQ_OPTION_ACTION_PARENT, KBQ_OPTION_PARENT_COMPONENT, KBQ_PARENT_ANIMATION_COMPONENT, KBQ_PARENT_POPUP, KBQ_SANITY_CHECKS, KBQ_SELECT_SCROLL_STRATEGY, KBQ_SELECT_SCROLL_STRATEGY_PROVIDER, KBQ_SELECT_SEARCH_MIN_OPTIONS_THRESHOLD, KBQ_SIZE_UNITS_CONFIG, KBQ_SIZE_UNITS_DEFAULT_CONFIG, KBQ_TITLE_TEXT_REF, KBQ_VALIDATION, KBQ_WINDOW, KbqAbstractSelect, KbqActionContainer, KbqAnimationCurves, KbqAnimationDurations, KbqColorDirective, KbqCommonModule, KbqComponentColors, KbqDataSizePipe, KbqDecimalPipe, KbqDefaultThemes, KbqErrorStateTracker, KbqFieldSizingContent, KbqFocusMonitor, KbqForm, KbqFormElement, KbqFormattersModule, KbqFormsModule, KbqHighlightModule, KbqHighlightPipe, KbqHover, KbqLine, KbqLineModule, KbqLineSetter, KbqLocaleService, KbqLocaleServiceModule, KbqMeasureScrollbarService, KbqMeasurementSystem, KbqNormalizeWhitespace, KbqOptgroup, KbqOption, KbqOptionActionComponent, KbqOptionBase, KbqOptionModule, KbqOptionSelectionChange, KbqPopUp, KbqPopUpTrigger, KbqPseudoCheckbox, KbqPseudoCheckboxModule, KbqReadStateDirective, KbqRectangleItem, 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, RangeDateFormatterImpurePipe, RangeDateFormatterPipe, RangeDateTimeFormatterImpurePipe, RangeDateTimeFormatterPipe, RangeMiddleDateTimeFormatterImpurePipe, RangeMiddleDateTimeFormatterPipe, RangeShortDateFormatterImpurePipe, RangeShortDateFormatterPipe, RangeShortDateTimeFormatterImpurePipe, RangeShortDateTimeFormatterPipe, RelativeDateFormatterImpurePipe, RelativeDateFormatterPipe, RelativeDateTimeFormatterImpurePipe, RelativeDateTimeFormatterPipe, RelativeShortDateFormatterImpurePipe, RelativeShortDateFormatterPipe, RelativeShortDateTimeFormatterImpurePipe, RelativeShortDateTimeFormatterPipe, SELECT_PANEL_VIEWPORT_PADDING, ShowOnControlDirtyErrorStateMatcher, ShowOnFormSubmitErrorStateMatcher, TOP_LEFT_POSITION_PRIORITY, TOP_POSITION_PRIORITY, TOP_RIGHT_POSITION_PRIORITY, ThemePalette, ThemeService, VERSION, applyPopupMargins, checkAndNormalizeLocalizedNumber, countGroupLabelsBeforeOption, defaultOffsetY, enUSFormattersData, enUSLocaleData, esLAFormattersData, esLALocaleData, escapeRegExp, fadeAnimation, formatDataSize, formatNumberWithLocale, getFormattedSizeParts, getHumanizedBytes, getKbqSelectDynamicMultipleError, getKbqSelectNonArrayValueError, getKbqSelectNonFunctionValueError, getNodesWithoutComments, getOptionScrollPosition, isBoolean, isMac, isNull, isUndefined, isWithin, kbqDisableLegacyValidationDirectiveProvider, kbqErrorStateMatcherProvider, kbqFilesizeFormatterConfigurationProvider, kbqInjectNativeElement, kbqLocaleServiceLangAttrNameProvider, kbqSelectAnimations, kbqSelectScrollStrategyProviderFactory, leftIconClassName, mixinColor, mixinDisabled, mixinErrorState, mixinTabIndex, normalizeNumber, numberByParts, ptBRFormattersData, ptBRLocaleData, rightIconClassName, ruRUFormattersData, ruRULocaleData, selectEvents, tkTMFormattersData, tkTMLocaleData, toBoolean, validationTooltipHideDelay, validationTooltipShowDelay };
|
|
5626
5304
|
//# sourceMappingURL=koobiq-components-core.mjs.map
|