@koobiq/components 18.17.0 → 18.19.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/actions-panel/actions-panel-config.d.ts +79 -0
- package/actions-panel/actions-panel-container.d.ts +90 -0
- package/actions-panel/actions-panel-container.scss +33 -0
- package/actions-panel/actions-panel-ref.d.ts +31 -0
- package/actions-panel/actions-panel-tokens.scss +13 -0
- package/actions-panel/actions-panel.d.ts +144 -0
- package/actions-panel/index.d.ts +5 -0
- package/actions-panel/module.d.ts +7 -0
- package/core/animation/animation.d.ts +26 -0
- package/core/form-field/form-field-ref.d.ts +4 -0
- package/core/locales/en-US.d.ts +45 -0
- package/core/locales/es-LA.d.ts +45 -0
- package/core/locales/fa-IR.d.ts +45 -0
- package/core/locales/locale-service.d.ts +315 -0
- package/core/locales/pt-BR.d.ts +45 -0
- package/core/locales/ru-RU.d.ts +45 -0
- package/core/locales/tk-TM.d.ts +45 -0
- package/core/locales/types.d.ts +6 -0
- package/core/locales/zh-CN.d.ts +45 -0
- package/core/option/option.d.ts +3 -1
- package/datepicker/calendar.component.d.ts +9 -0
- package/datepicker/datepicker-input.directive.d.ts +5 -1
- package/dl/dl.component.d.ts +3 -4
- package/dropdown/_dropdown-theme.scss +9 -10
- package/dropdown/dropdown-tokens.scss +1 -0
- package/dropdown/dropdown.component.d.ts +1 -1
- package/dropdown/dropdown.scss +5 -0
- package/dropdown/dropdown.types.d.ts +3 -1
- package/esm2022/accordion/accordion-trigger.component.mjs +1 -1
- package/esm2022/actions-panel/actions-panel-config.mjs +55 -0
- package/esm2022/actions-panel/actions-panel-container.mjs +217 -0
- package/esm2022/actions-panel/actions-panel-ref.mjs +62 -0
- package/esm2022/actions-panel/actions-panel.mjs +220 -0
- package/esm2022/actions-panel/index.mjs +6 -0
- package/esm2022/actions-panel/koobiq-components-actions-panel.mjs +5 -0
- package/esm2022/actions-panel/module.mjs +21 -0
- package/esm2022/breadcrumbs/breadcrumbs.mjs +2 -2
- package/esm2022/code-block/code-block.mjs +1 -1
- package/esm2022/core/animation/animation.mjs +29 -1
- package/esm2022/core/common-behaviors/common-module.mjs +2 -2
- package/esm2022/core/form-field/form-field-ref.mjs +1 -1
- package/esm2022/core/locales/en-US.mjs +46 -1
- package/esm2022/core/locales/es-LA.mjs +46 -1
- package/esm2022/core/locales/fa-IR.mjs +46 -1
- package/esm2022/core/locales/pt-BR.mjs +46 -1
- package/esm2022/core/locales/ru-RU.mjs +46 -1
- package/esm2022/core/locales/tk-TM.mjs +46 -1
- package/esm2022/core/locales/types.mjs +1 -1
- package/esm2022/core/locales/zh-CN.mjs +46 -1
- package/esm2022/core/option/option.mjs +10 -3
- package/esm2022/core/version.mjs +2 -2
- package/esm2022/datepicker/calendar-header.component.mjs +1 -1
- package/esm2022/datepicker/calendar.component.mjs +20 -2
- package/esm2022/datepicker/datepicker-input.directive.mjs +22 -11
- package/esm2022/datepicker/datepicker-toggle.component.mjs +1 -1
- package/esm2022/dl/dl.component.mjs +8 -7
- package/esm2022/dropdown/dropdown-item.component.mjs +1 -1
- package/esm2022/dropdown/dropdown-trigger.directive.mjs +6 -1
- package/esm2022/dropdown/dropdown.component.mjs +4 -4
- package/esm2022/dropdown/dropdown.types.mjs +1 -1
- package/esm2022/file-upload/multiple-file-upload.component.mjs +1 -1
- package/esm2022/file-upload/single-file-upload.component.mjs +1 -1
- package/esm2022/filter-bar/filter-bar-button.mjs +30 -0
- package/esm2022/filter-bar/filter-bar.mjs +168 -0
- package/esm2022/filter-bar/filter-bar.module.mjs +65 -0
- package/esm2022/filter-bar/filter-bar.types.mjs +13 -0
- package/esm2022/filter-bar/filter-refresher.mjs +34 -0
- package/esm2022/filter-bar/filter-reset.mjs +38 -0
- package/esm2022/filter-bar/filter-search.mjs +132 -0
- package/esm2022/filter-bar/filters.mjs +225 -0
- package/esm2022/filter-bar/index.mjs +2 -0
- package/esm2022/filter-bar/koobiq-components-filter-bar.mjs +5 -0
- package/esm2022/filter-bar/pipe-add.mjs +129 -0
- package/esm2022/filter-bar/pipe.directive.mjs +55 -0
- package/esm2022/filter-bar/pipes/base-pipe.mjs +106 -0
- package/esm2022/filter-bar/pipes/pipe-button.mjs +59 -0
- package/esm2022/filter-bar/pipes/pipe-date.mjs +171 -0
- package/esm2022/filter-bar/pipes/pipe-datetime.mjs +172 -0
- package/esm2022/filter-bar/pipes/pipe-multi-select.mjs +96 -0
- package/esm2022/filter-bar/pipes/pipe-select.mjs +88 -0
- package/esm2022/filter-bar/pipes/pipe-state.mjs +45 -0
- package/esm2022/filter-bar/pipes/pipe-text.mjs +89 -0
- package/esm2022/filter-bar/pipes/pipe-title.mjs +96 -0
- package/esm2022/filter-bar/public-api.mjs +20 -0
- package/esm2022/form-field/cleaner.mjs +1 -1
- package/esm2022/form-field/form-field.mjs +13 -6
- package/esm2022/form-field/password-hint.mjs +1 -1
- package/esm2022/form-field/password-toggle.mjs +1 -1
- package/esm2022/form-field/stepper.mjs +1 -1
- package/esm2022/icon/icon-button.component.mjs +9 -9
- package/esm2022/icon/icon-item.component.mjs +10 -10
- package/esm2022/icon/icon.component.mjs +9 -12
- package/esm2022/list/list-selection.component.mjs +4 -4
- package/esm2022/modal/modal.component.mjs +1 -1
- package/esm2022/modal/modal.directive.mjs +1 -1
- package/esm2022/navbar/navbar-item.component.mjs +2 -2
- package/esm2022/overflow-items/overflow-items.mjs +151 -195
- package/esm2022/popover/popover.component.mjs +30 -10
- package/esm2022/select/select.component.mjs +3 -3
- package/esm2022/sidepanel/sidepanel-directives.mjs +2 -2
- package/esm2022/tabs/tab-header.component.mjs +1 -1
- package/esm2022/tabs/tab-nav-bar.mjs +2 -2
- package/esm2022/textarea/textarea.component.mjs +9 -5
- package/esm2022/timezone/timezone-select.component.mjs +2 -2
- package/esm2022/title/title.directive.mjs +12 -5
- package/esm2022/toast/toast.component.mjs +2 -2
- package/esm2022/tree/toggle.mjs +1 -1
- package/esm2022/tree/tree-option.component.mjs +3 -2
- package/esm2022/tree/tree-selection.component.mjs +4 -2
- package/esm2022/tree-select/tree-select.component.mjs +6 -4
- package/fesm2022/koobiq-components-accordion.mjs +1 -1
- package/fesm2022/koobiq-components-accordion.mjs.map +1 -1
- package/fesm2022/koobiq-components-actions-panel.mjs +567 -0
- package/fesm2022/koobiq-components-actions-panel.mjs.map +1 -0
- package/fesm2022/koobiq-components-breadcrumbs.mjs +1 -1
- package/fesm2022/koobiq-components-breadcrumbs.mjs.map +1 -1
- package/fesm2022/koobiq-components-code-block.mjs +1 -1
- package/fesm2022/koobiq-components-code-block.mjs.map +1 -1
- package/fesm2022/koobiq-components-core.mjs +355 -5
- package/fesm2022/koobiq-components-core.mjs.map +1 -1
- package/fesm2022/koobiq-components-datepicker.mjs +40 -12
- package/fesm2022/koobiq-components-datepicker.mjs.map +1 -1
- package/fesm2022/koobiq-components-dl.mjs +7 -6
- package/fesm2022/koobiq-components-dl.mjs.map +1 -1
- package/fesm2022/koobiq-components-dropdown.mjs +9 -4
- package/fesm2022/koobiq-components-dropdown.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-filter-bar.mjs +1596 -0
- package/fesm2022/koobiq-components-filter-bar.mjs.map +1 -0
- package/fesm2022/koobiq-components-form-field.mjs +16 -9
- package/fesm2022/koobiq-components-form-field.mjs.map +1 -1
- package/fesm2022/koobiq-components-icon.mjs +23 -26
- package/fesm2022/koobiq-components-icon.mjs.map +1 -1
- package/fesm2022/koobiq-components-list.mjs +3 -3
- package/fesm2022/koobiq-components-list.mjs.map +1 -1
- package/fesm2022/koobiq-components-modal.mjs +2 -2
- package/fesm2022/koobiq-components-modal.mjs.map +1 -1
- package/fesm2022/koobiq-components-navbar.mjs +2 -2
- package/fesm2022/koobiq-components-navbar.mjs.map +1 -1
- package/fesm2022/koobiq-components-overflow-items.mjs +152 -196
- package/fesm2022/koobiq-components-overflow-items.mjs.map +1 -1
- package/fesm2022/koobiq-components-popover.mjs +29 -9
- package/fesm2022/koobiq-components-popover.mjs.map +1 -1
- package/fesm2022/koobiq-components-select.mjs +2 -2
- package/fesm2022/koobiq-components-select.mjs.map +1 -1
- package/fesm2022/koobiq-components-sidepanel.mjs +1 -1
- package/fesm2022/koobiq-components-sidepanel.mjs.map +1 -1
- package/fesm2022/koobiq-components-tabs.mjs +2 -2
- package/fesm2022/koobiq-components-tabs.mjs.map +1 -1
- package/fesm2022/koobiq-components-textarea.mjs +8 -4
- package/fesm2022/koobiq-components-textarea.mjs.map +1 -1
- package/fesm2022/koobiq-components-timezone.mjs +2 -2
- package/fesm2022/koobiq-components-timezone.mjs.map +1 -1
- package/fesm2022/koobiq-components-title.mjs +11 -4
- package/fesm2022/koobiq-components-title.mjs.map +1 -1
- package/fesm2022/koobiq-components-toast.mjs +1 -1
- package/fesm2022/koobiq-components-toast.mjs.map +1 -1
- package/fesm2022/koobiq-components-tree-select.mjs +5 -3
- package/fesm2022/koobiq-components-tree-select.mjs.map +1 -1
- package/fesm2022/koobiq-components-tree.mjs +6 -3
- package/fesm2022/koobiq-components-tree.mjs.map +1 -1
- package/filter-bar/_filter-bar-theme.scss +61 -0
- package/filter-bar/filter-bar-button.d.ts +8 -0
- package/filter-bar/filter-bar.d.ts +55 -0
- package/filter-bar/filter-bar.module.d.ts +17 -0
- package/filter-bar/filter-bar.scss +60 -0
- package/filter-bar/filter-bar.types.d.ts +97 -0
- package/filter-bar/filter-refresher.d.ts +5 -0
- package/filter-bar/filter-refresher.scss +6 -0
- package/filter-bar/filter-reset.d.ts +11 -0
- package/filter-bar/filter-search.d.ts +25 -0
- package/filter-bar/filter-search.scss +14 -0
- package/filter-bar/filters.d.ts +72 -0
- package/filter-bar/filters.scss +92 -0
- package/filter-bar/index.d.ts +1 -0
- package/filter-bar/pipe-add.d.ts +18 -0
- package/filter-bar/pipe-add.scss +5 -0
- package/filter-bar/pipe.directive.d.ts +13 -0
- package/filter-bar/pipes/base-pipe.d.ts +40 -0
- package/filter-bar/pipes/base-pipe.scss +117 -0
- package/filter-bar/pipes/pipe-button.d.ts +13 -0
- package/filter-bar/pipes/pipe-button.scss +5 -0
- package/filter-bar/pipes/pipe-date.d.ts +41 -0
- package/filter-bar/pipes/pipe-date.scss +132 -0
- package/filter-bar/pipes/pipe-datetime.d.ts +41 -0
- package/filter-bar/pipes/pipe-multi-select.d.ts +22 -0
- package/filter-bar/pipes/pipe-multiselect.scss +15 -0
- package/filter-bar/pipes/pipe-select.d.ts +21 -0
- package/filter-bar/pipes/pipe-select.scss +3 -0
- package/filter-bar/pipes/pipe-state.d.ts +14 -0
- package/filter-bar/pipes/pipe-text.d.ts +19 -0
- package/filter-bar/pipes/pipe-title.d.ts +25 -0
- package/filter-bar/public-api.d.ts +19 -0
- package/form-field/form-field.d.ts +6 -1
- package/form-field/form-field.scss +1 -0
- package/icon/icon-button.component.d.ts +5 -3
- package/icon/icon-item.component.d.ts +5 -3
- package/icon/icon.component.d.ts +5 -4
- package/overflow-items/overflow-items.d.ts +68 -82
- package/package.json +18 -6
- package/popover/popover.component.d.ts +6 -1
- package/schematics/ng-add/index.js +5 -5
- package/select/_select-theme.scss +9 -1
- package/textarea/textarea.component.d.ts +2 -1
- package/title/title.directive.d.ts +2 -0
- package/tree-select/_tree-select-theme.scss +9 -1
- package/tree-select/tree-select.component.d.ts +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { trigger, state, style, transition, animate, group } from '@angular/animations';
|
|
2
2
|
import * as i0 from '@angular/core';
|
|
3
|
-
import { InjectionToken, inject, isDevMode, NgModule, Optional, Inject, LOCALE_ID, Type, Injectable, Pipe, Directive, ContentChildren, DestroyRef, Component, ViewEncapsulation, ChangeDetectionStrategy, ContentChild, Input, EventEmitter, ViewChild, Output, Renderer2, ChangeDetectorRef, TemplateRef, ElementRef, NgZone, ViewContainerRef, RendererFactory2, Version } from '@angular/core';
|
|
3
|
+
import { InjectionToken, inject, isDevMode, NgModule, Optional, Inject, LOCALE_ID, Type, Injectable, Pipe, Directive, ContentChildren, DestroyRef, Component, ViewEncapsulation, ChangeDetectionStrategy, ContentChild, Input, EventEmitter, booleanAttribute, ViewChild, Output, Renderer2, ChangeDetectorRef, TemplateRef, ElementRef, NgZone, ViewContainerRef, RendererFactory2, Version } from '@angular/core';
|
|
4
4
|
import { BidiModule, Directionality } from '@angular/cdk/bidi';
|
|
5
5
|
import { DOCUMENT, CommonModule } from '@angular/common';
|
|
6
6
|
import { coerceBooleanProperty, coerceNumberProperty } from '@angular/cdk/coercion';
|
|
@@ -16,6 +16,11 @@ import { TooltipSizeArrowSize } from '@koobiq/design-tokens';
|
|
|
16
16
|
import { ComponentPortal } from '@angular/cdk/portal';
|
|
17
17
|
import { distinctUntilChanged, delay } from 'rxjs/operators';
|
|
18
18
|
|
|
19
|
+
/**
|
|
20
|
+
* @deprecated Will be removed in next major release. Use `KbqAnimationCurves` instead.
|
|
21
|
+
*
|
|
22
|
+
* @docs-private
|
|
23
|
+
*/
|
|
19
24
|
var AnimationCurves;
|
|
20
25
|
(function (AnimationCurves) {
|
|
21
26
|
AnimationCurves["StandardCurve"] = "cubic-bezier(0.4,0.0,0.2,1)";
|
|
@@ -23,6 +28,29 @@ var AnimationCurves;
|
|
|
23
28
|
AnimationCurves["AccelerationCurve"] = "cubic-bezier(0.4,0.0,1,1)";
|
|
24
29
|
AnimationCurves["SharpCurve"] = "cubic-bezier(0.4,0.0,0.6,1)";
|
|
25
30
|
})(AnimationCurves || (AnimationCurves = {}));
|
|
31
|
+
/**
|
|
32
|
+
* Koobiq components animation curves
|
|
33
|
+
*
|
|
34
|
+
* @docs-private
|
|
35
|
+
*/
|
|
36
|
+
var KbqAnimationCurves;
|
|
37
|
+
(function (KbqAnimationCurves) {
|
|
38
|
+
KbqAnimationCurves["StandardCurve"] = "cubic-bezier(0.4,0.0,0.2,1)";
|
|
39
|
+
KbqAnimationCurves["DecelerationCurve"] = "cubic-bezier(0.0,0.0,0.2,1)";
|
|
40
|
+
KbqAnimationCurves["AccelerationCurve"] = "cubic-bezier(0.4,0.0,1,1)";
|
|
41
|
+
KbqAnimationCurves["SharpCurve"] = "cubic-bezier(0.4,0.0,0.6,1)";
|
|
42
|
+
})(KbqAnimationCurves || (KbqAnimationCurves = {}));
|
|
43
|
+
/**
|
|
44
|
+
* Koobiq components animation durations
|
|
45
|
+
*
|
|
46
|
+
* @docs-private
|
|
47
|
+
*/
|
|
48
|
+
var KbqAnimationDurations;
|
|
49
|
+
(function (KbqAnimationDurations) {
|
|
50
|
+
KbqAnimationDurations["Complex"] = "250ms";
|
|
51
|
+
KbqAnimationDurations["Entering"] = "150ms";
|
|
52
|
+
KbqAnimationDurations["Exiting"] = "125ms";
|
|
53
|
+
})(KbqAnimationDurations || (KbqAnimationDurations = {}));
|
|
26
54
|
|
|
27
55
|
const fadeAnimation = trigger('fadeAnimation', [
|
|
28
56
|
state('void', style({ opacity: 0 })),
|
|
@@ -176,7 +204,7 @@ class KbqCommonModule {
|
|
|
176
204
|
if (computedStyle && computedStyle.display !== 'none') {
|
|
177
205
|
console.warn('Could not find koobiq core theme. Most koobiq ' +
|
|
178
206
|
'components may not work as expected. For more info refer ' +
|
|
179
|
-
'to the theming guide: https://koobiq.io/main/theming/overview');
|
|
207
|
+
'to the theming guide: https://koobiq.io/en/main/theming/overview');
|
|
180
208
|
}
|
|
181
209
|
this.document.body.removeChild(testElement);
|
|
182
210
|
}
|
|
@@ -767,6 +795,51 @@ const enUSLocaleData = {
|
|
|
767
795
|
},
|
|
768
796
|
timezone: {
|
|
769
797
|
searchPlaceholder: 'City or time zone'
|
|
798
|
+
},
|
|
799
|
+
actionsPanel: {
|
|
800
|
+
closeTooltip: 'Deselect'
|
|
801
|
+
},
|
|
802
|
+
filterBar: {
|
|
803
|
+
reset: {
|
|
804
|
+
buttonName: 'Сбросить'
|
|
805
|
+
},
|
|
806
|
+
search: {
|
|
807
|
+
tooltip: 'Поиск',
|
|
808
|
+
placeholder: 'Поиск'
|
|
809
|
+
},
|
|
810
|
+
filters: {
|
|
811
|
+
defaultName: 'Фильтры',
|
|
812
|
+
saveNewFilterTooltip: 'Сохранить новый фильтр',
|
|
813
|
+
searchPlaceholder: 'Поиск',
|
|
814
|
+
searchEmptyResult: 'Ничего не найдено',
|
|
815
|
+
saveAsNewFilter: 'Сохранить как новый фильтр',
|
|
816
|
+
saveChanges: 'Сохранить изменения',
|
|
817
|
+
saveAsNew: 'Сохранить как новый',
|
|
818
|
+
change: 'Изменить',
|
|
819
|
+
resetChanges: 'Сбросить изменения',
|
|
820
|
+
remove: 'Удалить',
|
|
821
|
+
name: 'Название',
|
|
822
|
+
error: 'Поиск с таким названием уже существует',
|
|
823
|
+
errorHint: 'Не удалось сохранить фильтр. Попробуйте снова или сообщите администратору.',
|
|
824
|
+
saveButton: 'Сохранить',
|
|
825
|
+
cancelButton: 'Отмена'
|
|
826
|
+
},
|
|
827
|
+
add: {
|
|
828
|
+
tooltip: 'Добавить фильтр'
|
|
829
|
+
},
|
|
830
|
+
pipe: {
|
|
831
|
+
clearButtonTooltip: 'Очистить',
|
|
832
|
+
removeButtonTooltip: 'Удалить',
|
|
833
|
+
applyButton: 'Применить',
|
|
834
|
+
emptySearchResult: 'Ничего не найдено'
|
|
835
|
+
},
|
|
836
|
+
datePipe: {
|
|
837
|
+
customPeriod: 'Произвольный период',
|
|
838
|
+
customPeriodFrom: 'с',
|
|
839
|
+
customPeriodTo: 'по',
|
|
840
|
+
customPeriodErrorHint: 'Начало периода не может быть позже окончания',
|
|
841
|
+
backToPeriodSelection: 'Назад к выбору периода'
|
|
842
|
+
}
|
|
770
843
|
}
|
|
771
844
|
};
|
|
772
845
|
|
|
@@ -810,6 +883,51 @@ const esLALocaleData = {
|
|
|
810
883
|
},
|
|
811
884
|
timezone: {
|
|
812
885
|
searchPlaceholder: 'Ciudad o zona horaria'
|
|
886
|
+
},
|
|
887
|
+
actionsPanel: {
|
|
888
|
+
closeTooltip: 'Desmarque'
|
|
889
|
+
},
|
|
890
|
+
filterBar: {
|
|
891
|
+
reset: {
|
|
892
|
+
buttonName: 'Сбросить'
|
|
893
|
+
},
|
|
894
|
+
search: {
|
|
895
|
+
tooltip: 'Поиск',
|
|
896
|
+
placeholder: 'Поиск'
|
|
897
|
+
},
|
|
898
|
+
filters: {
|
|
899
|
+
defaultName: 'Фильтры',
|
|
900
|
+
saveNewFilterTooltip: 'Сохранить новый фильтр',
|
|
901
|
+
searchPlaceholder: 'Поиск',
|
|
902
|
+
searchEmptyResult: 'Ничего не найдено',
|
|
903
|
+
saveAsNewFilter: 'Сохранить как новый фильтр',
|
|
904
|
+
saveChanges: 'Сохранить изменения',
|
|
905
|
+
saveAsNew: 'Сохранить как новый',
|
|
906
|
+
change: 'Изменить',
|
|
907
|
+
resetChanges: 'Сбросить изменения',
|
|
908
|
+
remove: 'Удалить',
|
|
909
|
+
name: 'Название',
|
|
910
|
+
error: 'Поиск с таким названием уже существует',
|
|
911
|
+
errorHint: 'Не удалось сохранить фильтр. Попробуйте снова или сообщите администратору.',
|
|
912
|
+
saveButton: 'Сохранить',
|
|
913
|
+
cancelButton: 'Отмена'
|
|
914
|
+
},
|
|
915
|
+
add: {
|
|
916
|
+
tooltip: 'Добавить фильтр'
|
|
917
|
+
},
|
|
918
|
+
pipe: {
|
|
919
|
+
clearButtonTooltip: 'Очистить',
|
|
920
|
+
removeButtonTooltip: 'Удалить',
|
|
921
|
+
applyButton: 'Применить',
|
|
922
|
+
emptySearchResult: 'Ничего не найдено'
|
|
923
|
+
},
|
|
924
|
+
datePipe: {
|
|
925
|
+
customPeriod: 'Произвольный период',
|
|
926
|
+
customPeriodFrom: 'с',
|
|
927
|
+
customPeriodTo: 'по',
|
|
928
|
+
customPeriodErrorHint: 'Начало периода не может быть позже окончания',
|
|
929
|
+
backToPeriodSelection: 'Назад к выбору периода'
|
|
930
|
+
}
|
|
813
931
|
}
|
|
814
932
|
};
|
|
815
933
|
|
|
@@ -853,6 +971,51 @@ const faIRLocaleData = {
|
|
|
853
971
|
},
|
|
854
972
|
timezone: {
|
|
855
973
|
searchPlaceholder: ' شهر یا منطقه زمانی '
|
|
974
|
+
},
|
|
975
|
+
actionsPanel: {
|
|
976
|
+
closeTooltip: 'إلغاء التحديد'
|
|
977
|
+
},
|
|
978
|
+
filterBar: {
|
|
979
|
+
reset: {
|
|
980
|
+
buttonName: 'Сбросить'
|
|
981
|
+
},
|
|
982
|
+
search: {
|
|
983
|
+
tooltip: 'Поиск',
|
|
984
|
+
placeholder: 'Поиск'
|
|
985
|
+
},
|
|
986
|
+
filters: {
|
|
987
|
+
defaultName: 'Фильтры',
|
|
988
|
+
saveNewFilterTooltip: 'Сохранить новый фильтр',
|
|
989
|
+
searchPlaceholder: 'Поиск',
|
|
990
|
+
searchEmptyResult: 'Ничего не найдено',
|
|
991
|
+
saveAsNewFilter: 'Сохранить как новый фильтр',
|
|
992
|
+
saveChanges: 'Сохранить изменения',
|
|
993
|
+
saveAsNew: 'Сохранить как новый',
|
|
994
|
+
change: 'Изменить',
|
|
995
|
+
resetChanges: 'Сбросить изменения',
|
|
996
|
+
remove: 'Удалить',
|
|
997
|
+
name: 'Название',
|
|
998
|
+
error: 'Поиск с таким названием уже существует',
|
|
999
|
+
errorHint: 'Не удалось сохранить фильтр. Попробуйте снова или сообщите администратору.',
|
|
1000
|
+
saveButton: 'Сохранить',
|
|
1001
|
+
cancelButton: 'Отмена'
|
|
1002
|
+
},
|
|
1003
|
+
add: {
|
|
1004
|
+
tooltip: 'Добавить фильтр'
|
|
1005
|
+
},
|
|
1006
|
+
pipe: {
|
|
1007
|
+
clearButtonTooltip: 'Очистить',
|
|
1008
|
+
removeButtonTooltip: 'Удалить',
|
|
1009
|
+
applyButton: 'Применить',
|
|
1010
|
+
emptySearchResult: 'Ничего не найдено'
|
|
1011
|
+
},
|
|
1012
|
+
datePipe: {
|
|
1013
|
+
customPeriod: 'Произвольный период',
|
|
1014
|
+
customPeriodFrom: 'с',
|
|
1015
|
+
customPeriodTo: 'по',
|
|
1016
|
+
customPeriodErrorHint: 'Начало периода не может быть позже окончания',
|
|
1017
|
+
backToPeriodSelection: 'Назад к выбору периода'
|
|
1018
|
+
}
|
|
856
1019
|
}
|
|
857
1020
|
};
|
|
858
1021
|
|
|
@@ -896,6 +1059,51 @@ const ptBRLocaleData = {
|
|
|
896
1059
|
},
|
|
897
1060
|
timezone: {
|
|
898
1061
|
searchPlaceholder: 'Cidade ou fuso horário'
|
|
1062
|
+
},
|
|
1063
|
+
actionsPanel: {
|
|
1064
|
+
closeTooltip: 'Desmarcar'
|
|
1065
|
+
},
|
|
1066
|
+
filterBar: {
|
|
1067
|
+
reset: {
|
|
1068
|
+
buttonName: 'Сбросить'
|
|
1069
|
+
},
|
|
1070
|
+
search: {
|
|
1071
|
+
tooltip: 'Поиск',
|
|
1072
|
+
placeholder: 'Поиск'
|
|
1073
|
+
},
|
|
1074
|
+
filters: {
|
|
1075
|
+
defaultName: 'Фильтры',
|
|
1076
|
+
saveNewFilterTooltip: 'Сохранить новый фильтр',
|
|
1077
|
+
searchPlaceholder: 'Поиск',
|
|
1078
|
+
searchEmptyResult: 'Ничего не найдено',
|
|
1079
|
+
saveAsNewFilter: 'Сохранить как новый фильтр',
|
|
1080
|
+
saveChanges: 'Сохранить изменения',
|
|
1081
|
+
saveAsNew: 'Сохранить как новый',
|
|
1082
|
+
change: 'Изменить',
|
|
1083
|
+
resetChanges: 'Сбросить изменения',
|
|
1084
|
+
remove: 'Удалить',
|
|
1085
|
+
name: 'Название',
|
|
1086
|
+
error: 'Поиск с таким названием уже существует',
|
|
1087
|
+
errorHint: 'Не удалось сохранить фильтр. Попробуйте снова или сообщите администратору.',
|
|
1088
|
+
saveButton: 'Сохранить',
|
|
1089
|
+
cancelButton: 'Отмена'
|
|
1090
|
+
},
|
|
1091
|
+
add: {
|
|
1092
|
+
tooltip: 'Добавить фильтр'
|
|
1093
|
+
},
|
|
1094
|
+
pipe: {
|
|
1095
|
+
clearButtonTooltip: 'Очистить',
|
|
1096
|
+
removeButtonTooltip: 'Удалить',
|
|
1097
|
+
applyButton: 'Применить',
|
|
1098
|
+
emptySearchResult: 'Ничего не найдено'
|
|
1099
|
+
},
|
|
1100
|
+
datePipe: {
|
|
1101
|
+
customPeriod: 'Произвольный период',
|
|
1102
|
+
customPeriodFrom: 'с',
|
|
1103
|
+
customPeriodTo: 'по',
|
|
1104
|
+
customPeriodErrorHint: 'Начало периода не может быть позже окончания',
|
|
1105
|
+
backToPeriodSelection: 'Назад к выбору периода'
|
|
1106
|
+
}
|
|
899
1107
|
}
|
|
900
1108
|
};
|
|
901
1109
|
|
|
@@ -940,6 +1148,51 @@ const ruRULocaleData = {
|
|
|
940
1148
|
},
|
|
941
1149
|
timezone: {
|
|
942
1150
|
searchPlaceholder: 'Город или часовой пояс'
|
|
1151
|
+
},
|
|
1152
|
+
actionsPanel: {
|
|
1153
|
+
closeTooltip: 'Отменить выбор'
|
|
1154
|
+
},
|
|
1155
|
+
filterBar: {
|
|
1156
|
+
reset: {
|
|
1157
|
+
buttonName: 'Сбросить'
|
|
1158
|
+
},
|
|
1159
|
+
search: {
|
|
1160
|
+
tooltip: 'Поиск',
|
|
1161
|
+
placeholder: 'Поиск'
|
|
1162
|
+
},
|
|
1163
|
+
filters: {
|
|
1164
|
+
defaultName: 'Фильтры',
|
|
1165
|
+
saveNewFilterTooltip: 'Сохранить новый фильтр',
|
|
1166
|
+
searchPlaceholder: 'Поиск',
|
|
1167
|
+
searchEmptyResult: 'Ничего не найдено',
|
|
1168
|
+
saveAsNewFilter: 'Сохранить как новый фильтр',
|
|
1169
|
+
saveChanges: 'Сохранить изменения',
|
|
1170
|
+
saveAsNew: 'Сохранить как новый',
|
|
1171
|
+
change: 'Изменить',
|
|
1172
|
+
resetChanges: 'Сбросить изменения',
|
|
1173
|
+
remove: 'Удалить',
|
|
1174
|
+
name: 'Название',
|
|
1175
|
+
error: 'Поиск с таким названием уже существует',
|
|
1176
|
+
errorHint: 'Не удалось сохранить фильтр. Попробуйте снова или сообщите администратору.',
|
|
1177
|
+
saveButton: 'Сохранить',
|
|
1178
|
+
cancelButton: 'Отмена'
|
|
1179
|
+
},
|
|
1180
|
+
add: {
|
|
1181
|
+
tooltip: 'Добавить фильтр'
|
|
1182
|
+
},
|
|
1183
|
+
pipe: {
|
|
1184
|
+
clearButtonTooltip: 'Очистить',
|
|
1185
|
+
removeButtonTooltip: 'Удалить',
|
|
1186
|
+
applyButton: 'Применить',
|
|
1187
|
+
emptySearchResult: 'Ничего не найдено'
|
|
1188
|
+
},
|
|
1189
|
+
datePipe: {
|
|
1190
|
+
customPeriod: 'Произвольный период',
|
|
1191
|
+
customPeriodFrom: 'с',
|
|
1192
|
+
customPeriodTo: 'по',
|
|
1193
|
+
customPeriodErrorHint: 'Начало периода не может быть позже окончания',
|
|
1194
|
+
backToPeriodSelection: 'Назад к выбору периода'
|
|
1195
|
+
}
|
|
943
1196
|
}
|
|
944
1197
|
};
|
|
945
1198
|
|
|
@@ -984,6 +1237,51 @@ const tkTMLocaleData = {
|
|
|
984
1237
|
},
|
|
985
1238
|
timezone: {
|
|
986
1239
|
searchPlaceholder: 'Şäher ýa-da sagat guşagy'
|
|
1240
|
+
},
|
|
1241
|
+
actionsPanel: {
|
|
1242
|
+
closeTooltip: 'Saýlawy ýatyr'
|
|
1243
|
+
},
|
|
1244
|
+
filterBar: {
|
|
1245
|
+
reset: {
|
|
1246
|
+
buttonName: 'Сбросить'
|
|
1247
|
+
},
|
|
1248
|
+
search: {
|
|
1249
|
+
tooltip: 'Поиск',
|
|
1250
|
+
placeholder: 'Поиск'
|
|
1251
|
+
},
|
|
1252
|
+
filters: {
|
|
1253
|
+
defaultName: 'Фильтры',
|
|
1254
|
+
saveNewFilterTooltip: 'Сохранить новый фильтр',
|
|
1255
|
+
searchPlaceholder: 'Поиск',
|
|
1256
|
+
searchEmptyResult: 'Ничего не найдено',
|
|
1257
|
+
saveAsNewFilter: 'Сохранить как новый фильтр',
|
|
1258
|
+
saveChanges: 'Сохранить изменения',
|
|
1259
|
+
saveAsNew: 'Сохранить как новый',
|
|
1260
|
+
change: 'Изменить',
|
|
1261
|
+
resetChanges: 'Сбросить изменения',
|
|
1262
|
+
remove: 'Удалить',
|
|
1263
|
+
name: 'Название',
|
|
1264
|
+
error: 'Поиск с таким названием уже существует',
|
|
1265
|
+
errorHint: 'Не удалось сохранить фильтр. Попробуйте снова или сообщите администратору.',
|
|
1266
|
+
saveButton: 'Сохранить',
|
|
1267
|
+
cancelButton: 'Отмена'
|
|
1268
|
+
},
|
|
1269
|
+
add: {
|
|
1270
|
+
tooltip: 'Добавить фильтр'
|
|
1271
|
+
},
|
|
1272
|
+
pipe: {
|
|
1273
|
+
clearButtonTooltip: 'Очистить',
|
|
1274
|
+
removeButtonTooltip: 'Удалить',
|
|
1275
|
+
applyButton: 'Применить',
|
|
1276
|
+
emptySearchResult: 'Ничего не найдено'
|
|
1277
|
+
},
|
|
1278
|
+
datePipe: {
|
|
1279
|
+
customPeriod: 'Произвольный период',
|
|
1280
|
+
customPeriodFrom: 'с',
|
|
1281
|
+
customPeriodTo: 'по',
|
|
1282
|
+
customPeriodErrorHint: 'Начало периода не может быть позже окончания',
|
|
1283
|
+
backToPeriodSelection: 'Назад к выбору периода'
|
|
1284
|
+
}
|
|
987
1285
|
}
|
|
988
1286
|
};
|
|
989
1287
|
|
|
@@ -1027,6 +1325,51 @@ const zhCNLocaleData = {
|
|
|
1027
1325
|
},
|
|
1028
1326
|
timezone: {
|
|
1029
1327
|
searchPlaceholder: '城市或时区'
|
|
1328
|
+
},
|
|
1329
|
+
actionsPanel: {
|
|
1330
|
+
closeTooltip: '取消选择'
|
|
1331
|
+
},
|
|
1332
|
+
filterBar: {
|
|
1333
|
+
reset: {
|
|
1334
|
+
buttonName: 'Сбросить'
|
|
1335
|
+
},
|
|
1336
|
+
search: {
|
|
1337
|
+
tooltip: 'Поиск',
|
|
1338
|
+
placeholder: 'Поиск'
|
|
1339
|
+
},
|
|
1340
|
+
filters: {
|
|
1341
|
+
defaultName: 'Фильтры',
|
|
1342
|
+
saveNewFilterTooltip: 'Сохранить новый фильтр',
|
|
1343
|
+
searchPlaceholder: 'Поиск',
|
|
1344
|
+
searchEmptyResult: 'Ничего не найдено',
|
|
1345
|
+
saveAsNewFilter: 'Сохранить как новый фильтр',
|
|
1346
|
+
saveChanges: 'Сохранить изменения',
|
|
1347
|
+
saveAsNew: 'Сохранить как новый',
|
|
1348
|
+
change: 'Изменить',
|
|
1349
|
+
resetChanges: 'Сбросить изменения',
|
|
1350
|
+
remove: 'Удалить',
|
|
1351
|
+
name: 'Название',
|
|
1352
|
+
error: 'Поиск с таким названием уже существует',
|
|
1353
|
+
errorHint: 'Не удалось сохранить фильтр. Попробуйте снова или сообщите администратору.',
|
|
1354
|
+
saveButton: 'Сохранить',
|
|
1355
|
+
cancelButton: 'Отмена'
|
|
1356
|
+
},
|
|
1357
|
+
add: {
|
|
1358
|
+
tooltip: 'Добавить фильтр'
|
|
1359
|
+
},
|
|
1360
|
+
pipe: {
|
|
1361
|
+
clearButtonTooltip: 'Очистить',
|
|
1362
|
+
removeButtonTooltip: 'Удалить',
|
|
1363
|
+
applyButton: 'Применить',
|
|
1364
|
+
emptySearchResult: 'Ничего не найдено'
|
|
1365
|
+
},
|
|
1366
|
+
datePipe: {
|
|
1367
|
+
customPeriod: 'Произвольный период',
|
|
1368
|
+
customPeriodFrom: 'с',
|
|
1369
|
+
customPeriodTo: 'по',
|
|
1370
|
+
customPeriodErrorHint: 'Начало периода не может быть позже окончания',
|
|
1371
|
+
backToPeriodSelection: 'Назад к выбору периода'
|
|
1372
|
+
}
|
|
1030
1373
|
}
|
|
1031
1374
|
};
|
|
1032
1375
|
|
|
@@ -2536,6 +2879,8 @@ class KbqOption extends KbqOptionBase {
|
|
|
2536
2879
|
this.changeDetectorRef = changeDetectorRef;
|
|
2537
2880
|
this.parent = parent;
|
|
2538
2881
|
this.group = group;
|
|
2882
|
+
// todo this flag will need to be rethought in the future (added for filter panel)
|
|
2883
|
+
this.userSelect = false;
|
|
2539
2884
|
/** Event emitted when the option is selected or deselected. */
|
|
2540
2885
|
this.onSelectionChange = new EventEmitter();
|
|
2541
2886
|
/** Emits when the state of the option changes and any parents have to be notified. */
|
|
@@ -2627,6 +2972,8 @@ class KbqOption extends KbqOptionBase {
|
|
|
2627
2972
|
* determine if the select's view -> model callback should be invoked.`
|
|
2628
2973
|
*/
|
|
2629
2974
|
selectViaInteraction() {
|
|
2975
|
+
if (this.userSelect)
|
|
2976
|
+
return;
|
|
2630
2977
|
if (!this.disabled) {
|
|
2631
2978
|
this._selected = this.multiple ? !this._selected : true;
|
|
2632
2979
|
this.changeDetectorRef.markForCheck();
|
|
@@ -2640,7 +2987,7 @@ class KbqOption extends KbqOptionBase {
|
|
|
2640
2987
|
return this.element.nativeElement;
|
|
2641
2988
|
}
|
|
2642
2989
|
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", 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 }); }
|
|
2643
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.6", type: KbqOption, selector: "kbq-option", inputs: { value: "value", showCheckbox: "showCheckbox", 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: [
|
|
2990
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.6", type: KbqOption, selector: "kbq-option", inputs: { value: "value", userSelect: ["userSelect", "userSelect", booleanAttribute], showCheckbox: "showCheckbox", 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: [
|
|
2644
2991
|
{
|
|
2645
2992
|
provide: KBQ_TITLE_TEXT_REF,
|
|
2646
2993
|
useExisting: KbqOption
|
|
@@ -2677,6 +3024,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImpor
|
|
|
2677
3024
|
args: ['kbqTitleText', { static: false }]
|
|
2678
3025
|
}], value: [{
|
|
2679
3026
|
type: Input
|
|
3027
|
+
}], userSelect: [{
|
|
3028
|
+
type: Input,
|
|
3029
|
+
args: [{ transform: booleanAttribute }]
|
|
2680
3030
|
}], showCheckbox: [{
|
|
2681
3031
|
type: Input
|
|
2682
3032
|
}], onSelectionChange: [{
|
|
@@ -3935,11 +4285,11 @@ const KBQ_VALIDATION = new InjectionToken('KbqUseValidation', {
|
|
|
3935
4285
|
factory: () => ({ useValidation: true })
|
|
3936
4286
|
});
|
|
3937
4287
|
|
|
3938
|
-
const VERSION = new Version('18.
|
|
4288
|
+
const VERSION = new Version('18.19.0+sha-6bafbce');
|
|
3939
4289
|
|
|
3940
4290
|
/**
|
|
3941
4291
|
* Generated bundle index. Do not edit.
|
|
3942
4292
|
*/
|
|
3943
4293
|
|
|
3944
|
-
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_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_SIZE_UNITS_CONFIG, KBQ_SIZE_UNITS_DEFAULT_CONFIG, KBQ_TITLE_TEXT_REF, KBQ_VALIDATION, KbqAbstractSelect, 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, 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, faIRFormattersData, faIRLocaleData, fadeAnimation, formatDataSize, getHumanizedBytes, getKbqSelectDynamicMultipleError, getKbqSelectNonArrayValueError, getKbqSelectNonFunctionValueError, getOptionScrollPosition, isBoolean, isWithin, kbqErrorStateMatcherProvider, kbqLocaleServiceLangAttrNameProvider, kbqSelectAnimations, kbqSelectScrollStrategyProviderFactory, mixinColor, mixinDisabled, mixinErrorState, mixinTabIndex, normalizeNumber, ptBRFormattersData, ptBRLocaleData, ruRUFormattersData, ruRULocaleData, selectEvents, tkTMFormattersData, tkTMLocaleData, toBoolean, validationTooltipHideDelay, validationTooltipShowDelay, zhCNFormattersData, zhCNLocaleData };
|
|
4294
|
+
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_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_SIZE_UNITS_CONFIG, KBQ_SIZE_UNITS_DEFAULT_CONFIG, KBQ_TITLE_TEXT_REF, KBQ_VALIDATION, KbqAbstractSelect, KbqAnimationCurves, KbqAnimationDurations, 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, 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, faIRFormattersData, faIRLocaleData, fadeAnimation, formatDataSize, getHumanizedBytes, getKbqSelectDynamicMultipleError, getKbqSelectNonArrayValueError, getKbqSelectNonFunctionValueError, getOptionScrollPosition, isBoolean, isWithin, kbqErrorStateMatcherProvider, kbqLocaleServiceLangAttrNameProvider, kbqSelectAnimations, kbqSelectScrollStrategyProviderFactory, mixinColor, mixinDisabled, mixinErrorState, mixinTabIndex, normalizeNumber, ptBRFormattersData, ptBRLocaleData, ruRUFormattersData, ruRULocaleData, selectEvents, tkTMFormattersData, tkTMLocaleData, toBoolean, validationTooltipHideDelay, validationTooltipShowDelay, zhCNFormattersData, zhCNLocaleData };
|
|
3945
4295
|
//# sourceMappingURL=koobiq-components-core.mjs.map
|