@koobiq/components 16.0.0-beta.9 → 17.0.0-beta.2
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-theme.scss +3 -10
- package/autocomplete/autocomplete-trigger.directive.d.ts +7 -1
- package/autocomplete/autocomplete.scss +0 -5
- package/badge/_badge-theme.scss +4 -0
- package/badge/badge.component.d.ts +1 -0
- package/button/_button-base.scss +1 -1
- package/button/_button-theme.scss +23 -38
- package/button-toggle/_button-toggle-theme.scss +4 -0
- package/checkbox/_checkbox-theme.scss +9 -6
- package/checkbox/checkbox.scss +6 -9
- package/code-block/_code-block-theme.scss +53 -16
- package/code-block/actionbar.component.scss +34 -6
- package/code-block/code-block.component.d.ts +5 -2
- package/code-block/code-block.scss +112 -28
- package/core/common-behaviors/index.d.ts +2 -0
- package/core/datetime/date-adapter.d.ts +1 -1
- package/core/datetime/date-formats.d.ts +1 -1
- package/core/formatters/date/formatter.d.ts +2 -2
- package/core/formatters/date/formatter.pipe.d.ts +1 -1
- package/core/locales/en-US.d.ts +25 -22
- package/core/locales/es-LA.d.ts +24 -27
- package/core/locales/fa-IR.d.ts +24 -28
- package/core/locales/formatters.d.ts +121 -0
- package/core/locales/index.d.ts +7 -2
- package/core/locales/locale-service.d.ts +146 -32
- package/core/locales/pt-BR.d.ts +24 -27
- package/core/locales/ru-RU.d.ts +25 -23
- package/core/locales/zh-CN.d.ts +25 -27
- package/core/option/_option-action-theme.scss +1 -1
- package/core/option/_option-theme.scss +5 -5
- package/core/option/action.scss +1 -1
- package/core/pop-up/pop-up.d.ts +7 -0
- package/core/selection/pseudo-checkbox/pseudo-checkbox.scss +4 -15
- package/core/styles/_koobiq-theme.scss +3 -1
- package/core/styles/_variables.scss +1 -10
- package/core/styles/common/_overlay.scss +4 -0
- package/core/styles/common/_select.scss +2 -1
- package/core/styles/theming/_components-theming.scss +99 -38
- package/core/styles/theming/{_scrollbars-theme.scss → _scrollbar-theme.scss} +25 -4
- package/core/styles/theming/_theming.scss +1 -0
- package/core/styles/typography/_typography.scss +8 -1
- package/core/utils/data-size/data-size.pipe.d.ts +1 -1
- package/dropdown/_dropdown-theme.scss +1 -2
- package/ellipsis-center/ellipsis-center.directive.d.ts +3 -3
- package/esm2022/alert/alert.component.mjs +12 -12
- package/esm2022/alert/alert.module.mjs +4 -4
- package/esm2022/autocomplete/autocomplete-origin.directive.mjs +4 -4
- package/esm2022/autocomplete/autocomplete-trigger.directive.mjs +18 -6
- package/esm2022/autocomplete/autocomplete.component.mjs +8 -8
- package/esm2022/autocomplete/autocomplete.module.mjs +4 -4
- package/esm2022/badge/badge.component.mjs +13 -12
- package/esm2022/badge/badge.module.mjs +4 -4
- package/esm2022/button/button.component.mjs +16 -13
- package/esm2022/button/button.module.mjs +4 -4
- package/esm2022/button-toggle/button-toggle.component.mjs +12 -12
- package/esm2022/button-toggle/button-toggle.module.mjs +4 -4
- package/esm2022/card/card.component.mjs +5 -5
- package/esm2022/card/card.module.mjs +4 -4
- package/esm2022/checkbox/checkbox-module.mjs +4 -4
- package/esm2022/checkbox/checkbox-required-validator.mjs +3 -3
- package/esm2022/checkbox/checkbox.mjs +7 -7
- package/esm2022/code-block/actionbar.component.mjs +5 -5
- package/esm2022/code-block/code-block.component.mjs +32 -14
- package/esm2022/code-block/code-block.module.mjs +8 -8
- package/esm2022/core/common-behaviors/color.mjs +1 -1
- package/esm2022/core/common-behaviors/common-module.mjs +7 -7
- package/esm2022/core/common-behaviors/error-state.mjs +1 -1
- package/esm2022/core/common-behaviors/index.mjs +3 -1
- package/esm2022/core/datetime/date-adapter.mjs +2 -2
- package/esm2022/core/datetime/date-formats.mjs +1 -1
- package/esm2022/core/error/error-options.mjs +6 -6
- package/esm2022/core/formatters/date/formatter.mjs +9 -9
- package/esm2022/core/formatters/date/formatter.pipe.mjs +53 -53
- package/esm2022/core/formatters/index.mjs +7 -6
- package/esm2022/core/formatters/number/formatter.mjs +19 -19
- package/esm2022/core/forms/forms-module.mjs +4 -4
- package/esm2022/core/forms/forms.directive.mjs +8 -8
- package/esm2022/core/highlight/highlight.pipe.mjs +5 -5
- package/esm2022/core/highlight/index.mjs +4 -4
- package/esm2022/core/line/line.mjs +8 -8
- package/esm2022/core/locales/en-US.mjs +25 -22
- package/esm2022/core/locales/es-LA.mjs +24 -29
- package/esm2022/core/locales/fa-IR.mjs +24 -28
- package/esm2022/core/locales/formatters.mjs +126 -0
- package/esm2022/core/locales/index.mjs +8 -3
- package/esm2022/core/locales/locale-service.mjs +14 -13
- package/esm2022/core/locales/locale-service.module.mjs +4 -4
- package/esm2022/core/locales/pt-BR.mjs +24 -27
- package/esm2022/core/locales/ru-RU.mjs +25 -25
- package/esm2022/core/locales/zh-CN.mjs +25 -27
- package/esm2022/core/option/action.mjs +9 -8
- package/esm2022/core/option/optgroup.mjs +4 -4
- package/esm2022/core/option/option-module.mjs +4 -4
- package/esm2022/core/option/option.mjs +8 -8
- package/esm2022/core/overlay/overlay-position-map.mjs +1 -1
- package/esm2022/core/pop-up/pop-up-trigger.mjs +6 -6
- package/esm2022/core/pop-up/pop-up.mjs +12 -5
- package/esm2022/core/selection/pseudo-checkbox/pseudo-checkbox.mjs +6 -6
- package/esm2022/core/selection/pseudo-checkbox/pseudo-checkbox.module.mjs +4 -4
- package/esm2022/core/services/measure-scrollbar.service.mjs +6 -6
- package/esm2022/core/services/theme.service.mjs +5 -5
- package/esm2022/core/utils/data-size/data-size.pipe.mjs +9 -9
- package/esm2022/core/utils/data-size/size.mjs +1 -1
- package/esm2022/core/version.mjs +2 -2
- package/esm2022/datepicker/calendar-body.component.mjs +4 -4
- package/esm2022/datepicker/calendar-header.component.mjs +5 -5
- package/esm2022/datepicker/calendar.component.mjs +6 -6
- package/esm2022/datepicker/datepicker-animations.mjs +1 -1
- package/esm2022/datepicker/datepicker-input.directive.mjs +6 -6
- package/esm2022/datepicker/datepicker-intl.mjs +3 -3
- package/esm2022/datepicker/datepicker-module.mjs +4 -4
- package/esm2022/datepicker/datepicker-toggle.component.mjs +8 -8
- package/esm2022/datepicker/datepicker.component.mjs +10 -10
- package/esm2022/datepicker/month-view.component.mjs +6 -6
- package/esm2022/divider/divider.component.mjs +3 -3
- package/esm2022/divider/divider.module.mjs +4 -4
- package/esm2022/dl/dl.component.mjs +11 -11
- package/esm2022/dl/dl.module.mjs +4 -4
- package/esm2022/dropdown/dropdown-content.directive.mjs +6 -6
- package/esm2022/dropdown/dropdown-item.component.mjs +9 -8
- package/esm2022/dropdown/dropdown-trigger.directive.mjs +6 -6
- package/esm2022/dropdown/dropdown.component.mjs +6 -6
- package/esm2022/dropdown/dropdown.module.mjs +4 -4
- package/esm2022/ellipsis-center/ellipsis-center.directive.mjs +20 -20
- package/esm2022/file-upload/file-drop.mjs +43 -6
- package/esm2022/file-upload/file-upload.mjs +1 -1
- package/esm2022/file-upload/file-upload.module.mjs +4 -4
- package/esm2022/file-upload/multiple-file-upload.component.mjs +47 -26
- package/esm2022/file-upload/single-file-upload.component.mjs +39 -16
- package/esm2022/form-field/cleaner.mjs +3 -3
- package/esm2022/form-field/form-field.mjs +21 -15
- package/esm2022/form-field/form-field.module.mjs +4 -4
- package/esm2022/form-field/hint.mjs +20 -8
- package/esm2022/form-field/password-hint.mjs +24 -21
- package/esm2022/form-field/password-toggle.mjs +6 -6
- package/esm2022/form-field/prefix.mjs +3 -3
- package/esm2022/form-field/stepper.mjs +4 -4
- package/esm2022/form-field/suffix.mjs +3 -3
- package/esm2022/form-field/validate.directive.mjs +17 -12
- package/esm2022/icon/icon-button.component.mjs +7 -6
- package/esm2022/icon/icon-item.component.mjs +7 -6
- package/esm2022/icon/icon.component.mjs +18 -6
- package/esm2022/icon/icon.module.mjs +4 -4
- package/esm2022/input/input-number-validators.mjs +7 -7
- package/esm2022/input/input-number.mjs +12 -9
- package/esm2022/input/input-password.mjs +6 -6
- package/esm2022/input/input.mjs +9 -9
- package/esm2022/input/input.module.mjs +4 -4
- package/esm2022/link/link.component.mjs +5 -5
- package/esm2022/link/link.module.mjs +4 -4
- package/esm2022/list/list-selection.component.mjs +16 -16
- package/esm2022/list/list.component.mjs +9 -9
- package/esm2022/list/list.module.mjs +4 -4
- package/esm2022/loader-overlay/loader-overlay.component.mjs +15 -15
- package/esm2022/loader-overlay/loader-overlay.module.mjs +4 -4
- package/esm2022/markdown/markdown.component.mjs +5 -5
- package/esm2022/markdown/markdown.module.mjs +4 -4
- package/esm2022/markdown/markdown.service.mjs +3 -3
- package/esm2022/modal/css-unit.pipe.mjs +3 -3
- package/esm2022/modal/modal-control.service.mjs +6 -6
- package/esm2022/modal/modal.component.mjs +22 -16
- package/esm2022/modal/modal.directive.mjs +12 -12
- package/esm2022/modal/modal.module.mjs +4 -4
- package/esm2022/modal/modal.service.mjs +5 -5
- package/esm2022/modal/modal.type.mjs +1 -1
- package/esm2022/navbar/navbar-item.component.mjs +69 -104
- package/esm2022/navbar/navbar.component.mjs +28 -17
- package/esm2022/navbar/navbar.module.mjs +6 -10
- package/esm2022/navbar/vertical-navbar.component.mjs +9 -13
- package/esm2022/popover/popover-confirm.component.mjs +11 -13
- package/esm2022/popover/popover.component.mjs +16 -11
- package/esm2022/popover/popover.module.mjs +4 -4
- package/esm2022/progress-bar/progress-bar.component.mjs +11 -11
- package/esm2022/progress-bar/progress-bar.module.mjs +4 -4
- package/esm2022/progress-spinner/progress-spinner.component.mjs +12 -12
- package/esm2022/progress-spinner/progress-spinner.module.mjs +4 -4
- package/esm2022/radio/radio.component.mjs +10 -10
- package/esm2022/radio/radio.module.mjs +4 -4
- package/esm2022/risk-level/risk-level.component.mjs +3 -3
- package/esm2022/risk-level/risk-level.module.mjs +4 -4
- package/esm2022/scrollbar/index.mjs +2 -0
- package/esm2022/scrollbar/koobiq-components-scrollbar.mjs +5 -0
- package/esm2022/scrollbar/public-api.mjs +5 -0
- package/esm2022/scrollbar/scrollbar.component.mjs +130 -0
- package/esm2022/scrollbar/scrollbar.directive.mjs +97 -0
- package/esm2022/scrollbar/scrollbar.module.mjs +20 -0
- package/esm2022/scrollbar/scrollbar.types.mjs +13 -0
- package/esm2022/select/select-option.directive.mjs +6 -6
- package/esm2022/select/select.component.mjs +43 -36
- package/esm2022/select/select.module.mjs +4 -4
- package/esm2022/sidebar/sidebar.component.mjs +11 -11
- package/esm2022/sidebar/sidebar.module.mjs +4 -4
- package/esm2022/sidepanel/sidepanel-animations.mjs +5 -5
- package/esm2022/sidepanel/sidepanel-container.component.mjs +11 -11
- package/esm2022/sidepanel/sidepanel-directives.mjs +26 -26
- package/esm2022/sidepanel/sidepanel-ref.mjs +1 -1
- package/esm2022/sidepanel/sidepanel.module.mjs +4 -4
- package/esm2022/sidepanel/sidepanel.service.mjs +6 -6
- package/esm2022/splitter/splitter.component.mjs +17 -17
- package/esm2022/splitter/splitter.module.mjs +4 -4
- package/esm2022/table/table.component.mjs +3 -3
- package/esm2022/table/table.module.mjs +4 -4
- package/esm2022/tabs/paginated-tab-header.mjs +6 -6
- package/esm2022/tabs/tab-body.component.mjs +12 -12
- package/esm2022/tabs/tab-content.directive.mjs +4 -4
- package/esm2022/tabs/tab-group.component.mjs +21 -21
- package/esm2022/tabs/tab-header.component.mjs +7 -7
- package/esm2022/tabs/tab-label-wrapper.directive.mjs +6 -5
- package/esm2022/tabs/tab-label.directive.mjs +3 -3
- package/esm2022/tabs/tab-nav-bar/tab-nav-bar.mjs +12 -11
- package/esm2022/tabs/tab.component.mjs +5 -5
- package/esm2022/tabs/tabs.module.mjs +4 -4
- package/esm2022/tags/tag-input.mjs +31 -11
- package/esm2022/tags/tag-list.component.mjs +9 -8
- package/esm2022/tags/tag.component.mjs +16 -16
- package/esm2022/tags/tag.module.mjs +4 -4
- package/esm2022/textarea/textarea.component.mjs +36 -25
- package/esm2022/textarea/textarea.module.mjs +4 -4
- package/esm2022/timepicker/timepicker.directive.mjs +6 -6
- package/esm2022/timepicker/timepicker.module.mjs +4 -4
- package/esm2022/timezone/cities-by-filter.pipe.mjs +3 -3
- package/esm2022/timezone/timezone-option.component.mjs +10 -9
- package/esm2022/timezone/timezone-option.directive.mjs +5 -5
- package/esm2022/timezone/timezone-select.component.mjs +9 -9
- package/esm2022/timezone/timezone.module.mjs +4 -4
- package/esm2022/timezone/timezone.utils.mjs +9 -4
- package/esm2022/timezone/utc-offset.pipe.mjs +6 -6
- package/esm2022/title/title.directive.mjs +6 -6
- package/esm2022/title/title.module.mjs +4 -4
- package/esm2022/toast/toast-animations.mjs +3 -3
- package/esm2022/toast/toast-container.component.mjs +7 -7
- package/esm2022/toast/toast.component.mjs +12 -11
- package/esm2022/toast/toast.module.mjs +4 -4
- package/esm2022/toast/toast.service.mjs +16 -8
- package/esm2022/toast/toast.type.mjs +1 -1
- package/esm2022/toggle/toggle.component.mjs +5 -5
- package/esm2022/toggle/toggle.module.mjs +4 -4
- package/esm2022/tooltip/tooltip.component.mjs +24 -24
- package/esm2022/tooltip/tooltip.module.mjs +4 -4
- package/esm2022/tree/control/base-tree-control.mjs +4 -4
- package/esm2022/tree/control/flat-tree-control.filters.mjs +47 -0
- package/esm2022/tree/control/flat-tree-control.mjs +27 -45
- package/esm2022/tree/control/nested-tree-control.mjs +1 -1
- package/esm2022/tree/control/tree-control.mjs +1 -1
- package/esm2022/tree/data-source/flat-data-source.mjs +1 -1
- package/esm2022/tree/node.mjs +5 -5
- package/esm2022/tree/outlet.mjs +4 -4
- package/esm2022/tree/padding.directive.mjs +6 -6
- package/esm2022/tree/public-api.mjs +2 -1
- package/esm2022/tree/toggle.mjs +12 -12
- package/esm2022/tree/tree-base.mjs +10 -10
- package/esm2022/tree/tree-option.component.mjs +12 -8
- package/esm2022/tree/tree-selection.component.mjs +6 -6
- package/esm2022/tree/tree.mjs +3 -3
- package/esm2022/tree/tree.module.mjs +4 -4
- package/esm2022/tree-select/tree-select.component.mjs +29 -19
- package/esm2022/tree-select/tree-select.module.mjs +9 -9
- package/fesm2022/koobiq-components-alert.mjs +16 -16
- package/fesm2022/koobiq-components-autocomplete.mjs +32 -20
- package/fesm2022/koobiq-components-autocomplete.mjs.map +1 -1
- package/fesm2022/koobiq-components-badge.mjs +16 -15
- package/fesm2022/koobiq-components-badge.mjs.map +1 -1
- package/fesm2022/koobiq-components-button-toggle.mjs +15 -15
- package/fesm2022/koobiq-components-button-toggle.mjs.map +1 -1
- package/fesm2022/koobiq-components-button.mjs +19 -16
- package/fesm2022/koobiq-components-button.mjs.map +1 -1
- package/fesm2022/koobiq-components-card.mjs +8 -8
- package/fesm2022/koobiq-components-card.mjs.map +1 -1
- package/fesm2022/koobiq-components-checkbox.mjs +13 -13
- package/fesm2022/koobiq-components-checkbox.mjs.map +1 -1
- package/fesm2022/koobiq-components-code-block.mjs +40 -23
- package/fesm2022/koobiq-components-code-block.mjs.map +1 -1
- package/fesm2022/koobiq-components-core.mjs +473 -350
- package/fesm2022/koobiq-components-core.mjs.map +1 -1
- package/fesm2022/koobiq-components-datepicker.mjs +45 -45
- package/fesm2022/koobiq-components-datepicker.mjs.map +1 -1
- package/fesm2022/koobiq-components-divider.mjs +7 -7
- package/fesm2022/koobiq-components-dl.mjs +14 -14
- package/fesm2022/koobiq-components-dl.mjs.map +1 -1
- package/fesm2022/koobiq-components-dropdown.mjs +27 -26
- package/fesm2022/koobiq-components-dropdown.mjs.map +1 -1
- package/fesm2022/koobiq-components-ellipsis-center.mjs +19 -19
- package/fesm2022/koobiq-components-ellipsis-center.mjs.map +1 -1
- package/fesm2022/koobiq-components-file-upload.mjs +128 -50
- package/fesm2022/koobiq-components-file-upload.mjs.map +1 -1
- package/fesm2022/koobiq-components-form-field.mjs +97 -72
- package/fesm2022/koobiq-components-form-field.mjs.map +1 -1
- package/fesm2022/koobiq-components-icon.mjs +33 -19
- package/fesm2022/koobiq-components-icon.mjs.map +1 -1
- package/fesm2022/koobiq-components-input.mjs +34 -31
- package/fesm2022/koobiq-components-input.mjs.map +1 -1
- package/fesm2022/koobiq-components-link.mjs +8 -8
- package/fesm2022/koobiq-components-link.mjs.map +1 -1
- package/fesm2022/koobiq-components-list.mjs +27 -27
- package/fesm2022/koobiq-components-list.mjs.map +1 -1
- package/fesm2022/koobiq-components-loader-overlay.mjs +18 -18
- package/fesm2022/koobiq-components-loader-overlay.mjs.map +1 -1
- package/fesm2022/koobiq-components-markdown.mjs +11 -11
- package/fesm2022/koobiq-components-markdown.mjs.map +1 -1
- package/fesm2022/koobiq-components-modal.mjs +49 -43
- package/fesm2022/koobiq-components-modal.mjs.map +1 -1
- package/fesm2022/koobiq-components-navbar.mjs +108 -149
- package/fesm2022/koobiq-components-navbar.mjs.map +1 -1
- package/fesm2022/koobiq-components-popover.mjs +30 -26
- package/fesm2022/koobiq-components-popover.mjs.map +1 -1
- package/fesm2022/koobiq-components-progress-bar.mjs +14 -14
- package/fesm2022/koobiq-components-progress-bar.mjs.map +1 -1
- package/fesm2022/koobiq-components-progress-spinner.mjs +15 -15
- package/fesm2022/koobiq-components-progress-spinner.mjs.map +1 -1
- package/fesm2022/koobiq-components-radio.mjs +13 -13
- package/fesm2022/koobiq-components-radio.mjs.map +1 -1
- package/fesm2022/koobiq-components-risk-level.mjs +7 -7
- package/fesm2022/koobiq-components-scrollbar.mjs +256 -0
- package/fesm2022/koobiq-components-scrollbar.mjs.map +1 -0
- package/fesm2022/koobiq-components-select.mjs +49 -42
- package/fesm2022/koobiq-components-select.mjs.map +1 -1
- package/fesm2022/koobiq-components-sidebar.mjs +14 -14
- package/fesm2022/koobiq-components-sidebar.mjs.map +1 -1
- package/fesm2022/koobiq-components-sidepanel.mjs +47 -47
- package/fesm2022/koobiq-components-sidepanel.mjs.map +1 -1
- package/fesm2022/koobiq-components-splitter.mjs +20 -20
- package/fesm2022/koobiq-components-splitter.mjs.map +1 -1
- package/fesm2022/koobiq-components-table.mjs +7 -7
- package/fesm2022/koobiq-components-tabs.mjs +72 -70
- package/fesm2022/koobiq-components-tabs.mjs.map +1 -1
- package/fesm2022/koobiq-components-tags.mjs +56 -36
- package/fesm2022/koobiq-components-tags.mjs.map +1 -1
- package/fesm2022/koobiq-components-textarea.mjs +39 -28
- package/fesm2022/koobiq-components-textarea.mjs.map +1 -1
- package/fesm2022/koobiq-components-timepicker.mjs +9 -9
- package/fesm2022/koobiq-components-timepicker.mjs.map +1 -1
- package/fesm2022/koobiq-components-timezone.mjs +42 -37
- package/fesm2022/koobiq-components-timezone.mjs.map +1 -1
- package/fesm2022/koobiq-components-title.mjs +9 -9
- package/fesm2022/koobiq-components-title.mjs.map +1 -1
- package/fesm2022/koobiq-components-toast.mjs +36 -27
- package/fesm2022/koobiq-components-toast.mjs.map +1 -1
- package/fesm2022/koobiq-components-toggle.mjs +8 -8
- package/fesm2022/koobiq-components-toggle.mjs.map +1 -1
- package/fesm2022/koobiq-components-tooltip.mjs +27 -27
- package/fesm2022/koobiq-components-tooltip.mjs.map +1 -1
- package/fesm2022/koobiq-components-tree-select.mjs +36 -26
- package/fesm2022/koobiq-components-tree-select.mjs.map +1 -1
- package/fesm2022/koobiq-components-tree.mjs +132 -100
- package/fesm2022/koobiq-components-tree.mjs.map +1 -1
- package/file-upload/_file-upload-theme.scss +10 -1
- package/file-upload/file-drop.d.ts +2 -1
- package/file-upload/file-upload.d.ts +4 -1
- package/file-upload/multiple-file-upload.component.d.ts +14 -6
- package/file-upload/single-file-upload.component.d.ts +12 -6
- package/form-field/_form-field-theme.scss +8 -14
- package/form-field/form-field.d.ts +2 -0
- package/form-field/form-field.scss +12 -1
- package/form-field/hint.scss +1 -1
- package/form-field/password-hint.d.ts +7 -5
- package/icon/icon-button.component.d.ts +1 -0
- package/icon/icon-item.component.d.ts +1 -0
- package/icon/icon.component.d.ts +3 -0
- package/input/input-number.d.ts +3 -2
- package/link/_link-theme.scss +1 -0
- package/list/_list-theme.scss +1 -2
- package/list/list.scss +3 -3
- package/loader-overlay/loader-overlay.scss +2 -2
- package/modal/_modal-confirm.scss +0 -24
- package/modal/modal.component.d.ts +4 -2
- package/modal/modal.scss +32 -20
- package/modal/modal.type.d.ts +0 -1
- package/navbar/_navbar-item_horizontal.scss +97 -0
- package/navbar/_navbar-item_vertical.scss +98 -0
- package/navbar/_navbar-theme.scss +58 -60
- package/navbar/navbar-brand.scss +76 -16
- package/navbar/navbar-divider.scss +13 -4
- package/navbar/navbar-item.component.d.ts +6 -17
- package/navbar/navbar-item.scss +41 -87
- package/navbar/navbar.component.d.ts +3 -0
- package/navbar/navbar.module.d.ts +1 -1
- package/navbar/navbar.scss +13 -1
- package/navbar/vertical-navbar.scss +7 -14
- package/package.json +28 -20
- package/popover/popover-confirm.component.d.ts +0 -2
- package/popover/popover.component.d.ts +6 -1
- package/popover/popover.scss +4 -9
- package/prebuilt-themes/dark-theme.css +1 -1
- package/prebuilt-themes/light-theme.css +1 -1
- package/progress-spinner/progress-spinner.scss +10 -5
- package/scrollbar/_scrollbar-component-theme.scss +52 -0
- package/scrollbar/index.d.ts +1 -0
- package/scrollbar/public-api.d.ts +4 -0
- package/scrollbar/scrollbar.component.d.ts +33 -0
- package/scrollbar/scrollbar.component.scss +559 -0
- package/scrollbar/scrollbar.directive.d.ts +47 -0
- package/scrollbar/scrollbar.module.d.ts +8 -0
- package/scrollbar/scrollbar.types.d.ts +32 -0
- package/select/select.component.d.ts +4 -3
- package/select/select.scss +7 -0
- package/sidepanel/sidepanel-animations.d.ts +2 -2
- package/sidepanel/sidepanel-directives.d.ts +5 -5
- package/splitter/_splitter-theme.scss +5 -4
- package/tabs/_tabs-common.scss +1 -1
- package/tabs/_tabs-theme.scss +2 -2
- package/tags/tag-input.d.ts +9 -4
- package/tags/tag-list.scss +4 -0
- package/textarea/textarea.component.d.ts +4 -3
- package/timezone/_timezone-option-theme.scss +8 -0
- package/timezone/timezone-option.component.scss +4 -0
- package/timezone/timezone-select.component.scss +13 -0
- package/timezone/timezone.utils.d.ts +4 -0
- package/timezone/utc-offset.pipe.d.ts +3 -1
- package/toast/toast-animations.d.ts +1 -1
- package/toast/toast-container.component.scss +1 -9
- package/toast/toast.component.scss +0 -4
- package/toast/toast.service.d.ts +5 -3
- package/toast/toast.type.d.ts +1 -0
- package/tooltip/tooltip.component.d.ts +1 -1
- package/tooltip/tooltip.scss +0 -3
- package/tree/_tree-theme.scss +5 -5
- package/tree/control/base-tree-control.d.ts +1 -1
- package/tree/control/flat-tree-control.d.ts +5 -3
- package/tree/control/flat-tree-control.filters.d.ts +26 -0
- package/tree/control/tree-control.d.ts +1 -1
- package/tree/public-api.d.ts +1 -0
- package/tree/tree-option.scss +4 -4
- package/tree-select/tree-select.component.d.ts +8 -4
- package/tree-select/tree-select.module.d.ts +1 -1
- package/esm2022/navbar/vertical-navbar.animation.mjs +0 -10
- package/form-field/password-hint.scss +0 -11
- package/navbar/vertical-navbar.animation.d.ts +0 -2
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { trigger, state, style, transition, animate, group } from '@angular/animations';
|
|
2
|
-
import * as i2$1 from '@angular/cdk/bidi';
|
|
3
|
-
import { BidiModule } from '@angular/cdk/bidi';
|
|
4
2
|
import * as i0 from '@angular/core';
|
|
5
3
|
import { InjectionToken, isDevMode, NgModule, Optional, Inject, inject, LOCALE_ID, Injectable, Pipe, Directive, ContentChildren, Component, ViewEncapsulation, ChangeDetectionStrategy, Input, EventEmitter, ViewChild, Output, ContentChild, TemplateRef, Version } from '@angular/core';
|
|
4
|
+
import * as i2$1 from '@angular/cdk/bidi';
|
|
5
|
+
import { BidiModule } from '@angular/cdk/bidi';
|
|
6
6
|
import { coerceBooleanProperty, coerceNumberProperty } from '@angular/cdk/coercion';
|
|
7
|
-
import * as i1 from '@
|
|
8
|
-
import { DateAdapter as DateAdapter$1 } from '@
|
|
9
|
-
import { DateFormatter as DateFormatter$1 } from '@
|
|
7
|
+
import * as i1 from '@koobiq/date-adapter';
|
|
8
|
+
import { DateAdapter as DateAdapter$1 } from '@koobiq/date-adapter';
|
|
9
|
+
import { DateFormatter as DateFormatter$1 } from '@koobiq/date-formatter';
|
|
10
10
|
import { BehaviorSubject, Subject, pairwise } from 'rxjs';
|
|
11
11
|
import * as i2 from '@angular/common';
|
|
12
12
|
import { CommonModule, DOCUMENT } from '@angular/common';
|
|
@@ -140,22 +140,22 @@ class KbqCommonModule {
|
|
|
140
140
|
this._document.body.removeChild(testElement);
|
|
141
141
|
}
|
|
142
142
|
}
|
|
143
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
144
|
-
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
145
|
-
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
143
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqCommonModule, deps: [{ token: KBQ_SANITY_CHECKS, optional: true }], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
144
|
+
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: KbqCommonModule, imports: [BidiModule], exports: [BidiModule] }); }
|
|
145
|
+
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqCommonModule, imports: [BidiModule, BidiModule] }); }
|
|
146
146
|
}
|
|
147
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
147
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqCommonModule, decorators: [{
|
|
148
148
|
type: NgModule,
|
|
149
149
|
args: [{
|
|
150
150
|
imports: [BidiModule],
|
|
151
151
|
exports: [BidiModule]
|
|
152
152
|
}]
|
|
153
|
-
}], ctorParameters:
|
|
153
|
+
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
154
154
|
type: Optional
|
|
155
155
|
}, {
|
|
156
156
|
type: Inject,
|
|
157
157
|
args: [KBQ_SANITY_CHECKS]
|
|
158
|
-
}] }]
|
|
158
|
+
}] }] });
|
|
159
159
|
|
|
160
160
|
function mixinDisabled(base) {
|
|
161
161
|
return class extends base {
|
|
@@ -256,6 +256,8 @@ function mixinErrorState(base) {
|
|
|
256
256
|
};
|
|
257
257
|
}
|
|
258
258
|
|
|
259
|
+
const KBQ_PARENT_ANIMATION_COMPONENT = new InjectionToken('kbq-parent-animation-component');
|
|
260
|
+
|
|
259
261
|
const KBQ_DATE_FORMATS = new InjectionToken('kbq-date-formats');
|
|
260
262
|
|
|
261
263
|
/** InjectionToken for datepicker that can be used to override default locale code. */
|
|
@@ -276,10 +278,10 @@ class ShowOnDirtyErrorStateMatcher {
|
|
|
276
278
|
isErrorState(control, form) {
|
|
277
279
|
return !!(control && control.invalid && (control.dirty || (form && form.submitted)));
|
|
278
280
|
}
|
|
279
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
280
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
281
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: ShowOnDirtyErrorStateMatcher, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
282
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: ShowOnDirtyErrorStateMatcher }); }
|
|
281
283
|
}
|
|
282
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
284
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: ShowOnDirtyErrorStateMatcher, decorators: [{
|
|
283
285
|
type: Injectable
|
|
284
286
|
}] });
|
|
285
287
|
/** Provider that defines how form controls behave with regards to displaying error messages. */
|
|
@@ -287,10 +289,10 @@ class ErrorStateMatcher {
|
|
|
287
289
|
isErrorState(control, form) {
|
|
288
290
|
return !!(control && control.invalid && (control.touched || (form && form.submitted)));
|
|
289
291
|
}
|
|
290
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
291
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
292
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: ErrorStateMatcher, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
293
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: ErrorStateMatcher, providedIn: 'root' }); }
|
|
292
294
|
}
|
|
293
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
295
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: ErrorStateMatcher, decorators: [{
|
|
294
296
|
type: Injectable,
|
|
295
297
|
args: [{ providedIn: 'root' }]
|
|
296
298
|
}] });
|
|
@@ -300,15 +302,15 @@ class DateFormatter extends DateFormatter$1 {
|
|
|
300
302
|
super(adapter, locale);
|
|
301
303
|
this.adapter = adapter;
|
|
302
304
|
}
|
|
303
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
304
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
305
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: DateFormatter, deps: [{ token: i1.DateAdapter }, { token: KBQ_DATE_LOCALE }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
306
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: DateFormatter }); }
|
|
305
307
|
}
|
|
306
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
308
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: DateFormatter, decorators: [{
|
|
307
309
|
type: Injectable
|
|
308
|
-
}], ctorParameters:
|
|
310
|
+
}], ctorParameters: () => [{ type: i1.DateAdapter }, { type: undefined, decorators: [{
|
|
309
311
|
type: Inject,
|
|
310
312
|
args: [KBQ_DATE_LOCALE]
|
|
311
|
-
}] }]
|
|
313
|
+
}] }] });
|
|
312
314
|
|
|
313
315
|
class AbsoluteDateFormatterPipe {
|
|
314
316
|
constructor(adapter, formatter) {
|
|
@@ -319,13 +321,13 @@ class AbsoluteDateFormatterPipe {
|
|
|
319
321
|
const date = this.adapter.deserialize(value);
|
|
320
322
|
return date ? this.formatter.absoluteLongDate(date, currYear) : '';
|
|
321
323
|
}
|
|
322
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
323
|
-
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
324
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: AbsoluteDateFormatterPipe, deps: [{ token: DateAdapter }, { token: DateFormatter }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
325
|
+
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: AbsoluteDateFormatterPipe, name: "absoluteLongDate" }); }
|
|
324
326
|
}
|
|
325
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
327
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: AbsoluteDateFormatterPipe, decorators: [{
|
|
326
328
|
type: Pipe,
|
|
327
329
|
args: [{ name: 'absoluteLongDate' }]
|
|
328
|
-
}], ctorParameters:
|
|
330
|
+
}], ctorParameters: () => [{ type: DateAdapter }, { type: DateFormatter }] });
|
|
329
331
|
class AbsoluteDateTimeFormatterPipe {
|
|
330
332
|
constructor(adapter, formatter) {
|
|
331
333
|
this.adapter = adapter;
|
|
@@ -335,13 +337,13 @@ class AbsoluteDateTimeFormatterPipe {
|
|
|
335
337
|
const date = this.adapter.deserialize(value);
|
|
336
338
|
return date ? this.formatter.absoluteLongDateTime(date, options) : '';
|
|
337
339
|
}
|
|
338
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
339
|
-
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
340
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: AbsoluteDateTimeFormatterPipe, deps: [{ token: DateAdapter }, { token: DateFormatter }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
341
|
+
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: AbsoluteDateTimeFormatterPipe, name: "absoluteLongDateTime" }); }
|
|
340
342
|
}
|
|
341
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
343
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: AbsoluteDateTimeFormatterPipe, decorators: [{
|
|
342
344
|
type: Pipe,
|
|
343
345
|
args: [{ name: 'absoluteLongDateTime' }]
|
|
344
|
-
}], ctorParameters:
|
|
346
|
+
}], ctorParameters: () => [{ type: DateAdapter }, { type: DateFormatter }] });
|
|
345
347
|
class AbsoluteDateShortFormatterPipe {
|
|
346
348
|
constructor(adapter, formatter) {
|
|
347
349
|
this.adapter = adapter;
|
|
@@ -351,13 +353,13 @@ class AbsoluteDateShortFormatterPipe {
|
|
|
351
353
|
const date = this.adapter.deserialize(value);
|
|
352
354
|
return date ? this.formatter.absoluteShortDate(date, currYear) : '';
|
|
353
355
|
}
|
|
354
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
355
|
-
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
356
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: AbsoluteDateShortFormatterPipe, deps: [{ token: DateAdapter }, { token: DateFormatter }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
357
|
+
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: AbsoluteDateShortFormatterPipe, name: "absoluteShortDate" }); }
|
|
356
358
|
}
|
|
357
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
359
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: AbsoluteDateShortFormatterPipe, decorators: [{
|
|
358
360
|
type: Pipe,
|
|
359
361
|
args: [{ name: 'absoluteShortDate' }]
|
|
360
|
-
}], ctorParameters:
|
|
362
|
+
}], ctorParameters: () => [{ type: DateAdapter }, { type: DateFormatter }] });
|
|
361
363
|
class AbsoluteShortDateTimeFormatterPipe {
|
|
362
364
|
constructor(adapter, formatter) {
|
|
363
365
|
this.adapter = adapter;
|
|
@@ -367,13 +369,13 @@ class AbsoluteShortDateTimeFormatterPipe {
|
|
|
367
369
|
const date = this.adapter.deserialize(value);
|
|
368
370
|
return date ? this.formatter.absoluteShortDateTime(date, options) : '';
|
|
369
371
|
}
|
|
370
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
371
|
-
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
372
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: AbsoluteShortDateTimeFormatterPipe, deps: [{ token: DateAdapter }, { token: DateFormatter }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
373
|
+
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: AbsoluteShortDateTimeFormatterPipe, name: "absoluteShortDateTime" }); }
|
|
372
374
|
}
|
|
373
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
375
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: AbsoluteShortDateTimeFormatterPipe, decorators: [{
|
|
374
376
|
type: Pipe,
|
|
375
377
|
args: [{ name: 'absoluteShortDateTime' }]
|
|
376
|
-
}], ctorParameters:
|
|
378
|
+
}], ctorParameters: () => [{ type: DateAdapter }, { type: DateFormatter }] });
|
|
377
379
|
class RelativeDateFormatterPipe {
|
|
378
380
|
constructor(adapter, formatter) {
|
|
379
381
|
this.adapter = adapter;
|
|
@@ -383,13 +385,13 @@ class RelativeDateFormatterPipe {
|
|
|
383
385
|
const date = this.adapter.deserialize(value);
|
|
384
386
|
return date ? this.formatter.relativeLongDate(date) : '';
|
|
385
387
|
}
|
|
386
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
387
|
-
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
388
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: RelativeDateFormatterPipe, deps: [{ token: DateAdapter }, { token: DateFormatter }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
389
|
+
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: RelativeDateFormatterPipe, name: "relativeLongDate" }); }
|
|
388
390
|
}
|
|
389
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
391
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: RelativeDateFormatterPipe, decorators: [{
|
|
390
392
|
type: Pipe,
|
|
391
393
|
args: [{ name: 'relativeLongDate' }]
|
|
392
|
-
}], ctorParameters:
|
|
394
|
+
}], ctorParameters: () => [{ type: DateAdapter }, { type: DateFormatter }] });
|
|
393
395
|
class RelativeDateTimeFormatterPipe {
|
|
394
396
|
constructor(adapter, formatter) {
|
|
395
397
|
this.adapter = adapter;
|
|
@@ -399,13 +401,13 @@ class RelativeDateTimeFormatterPipe {
|
|
|
399
401
|
const date = this.adapter.deserialize(value);
|
|
400
402
|
return date ? this.formatter.relativeLongDateTime(date, options) : '';
|
|
401
403
|
}
|
|
402
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
403
|
-
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
404
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: RelativeDateTimeFormatterPipe, deps: [{ token: DateAdapter }, { token: DateFormatter }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
405
|
+
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: RelativeDateTimeFormatterPipe, name: "relativeLongDateTime" }); }
|
|
404
406
|
}
|
|
405
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
407
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: RelativeDateTimeFormatterPipe, decorators: [{
|
|
406
408
|
type: Pipe,
|
|
407
409
|
args: [{ name: 'relativeLongDateTime' }]
|
|
408
|
-
}], ctorParameters:
|
|
410
|
+
}], ctorParameters: () => [{ type: DateAdapter }, { type: DateFormatter }] });
|
|
409
411
|
class RelativeShortDateFormatterPipe {
|
|
410
412
|
constructor(adapter, formatter) {
|
|
411
413
|
this.adapter = adapter;
|
|
@@ -415,13 +417,13 @@ class RelativeShortDateFormatterPipe {
|
|
|
415
417
|
const date = this.adapter.deserialize(value);
|
|
416
418
|
return date ? this.formatter.relativeShortDate(date) : '';
|
|
417
419
|
}
|
|
418
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
419
|
-
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
420
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: RelativeShortDateFormatterPipe, deps: [{ token: DateAdapter }, { token: DateFormatter }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
421
|
+
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: RelativeShortDateFormatterPipe, name: "relativeShortDate" }); }
|
|
420
422
|
}
|
|
421
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
423
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: RelativeShortDateFormatterPipe, decorators: [{
|
|
422
424
|
type: Pipe,
|
|
423
425
|
args: [{ name: 'relativeShortDate' }]
|
|
424
|
-
}], ctorParameters:
|
|
426
|
+
}], ctorParameters: () => [{ type: DateAdapter }, { type: DateFormatter }] });
|
|
425
427
|
class RelativeShortDateTimeFormatterPipe {
|
|
426
428
|
constructor(adapter, formatter) {
|
|
427
429
|
this.adapter = adapter;
|
|
@@ -431,13 +433,13 @@ class RelativeShortDateTimeFormatterPipe {
|
|
|
431
433
|
const date = this.adapter.deserialize(value);
|
|
432
434
|
return date ? this.formatter.relativeShortDateTime(date, options) : '';
|
|
433
435
|
}
|
|
434
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
435
|
-
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
436
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: RelativeShortDateTimeFormatterPipe, deps: [{ token: DateAdapter }, { token: DateFormatter }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
437
|
+
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: RelativeShortDateTimeFormatterPipe, name: "relativeShortDateTime" }); }
|
|
436
438
|
}
|
|
437
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
439
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: RelativeShortDateTimeFormatterPipe, decorators: [{
|
|
438
440
|
type: Pipe,
|
|
439
441
|
args: [{ name: 'relativeShortDateTime' }]
|
|
440
|
-
}], ctorParameters:
|
|
442
|
+
}], ctorParameters: () => [{ type: DateAdapter }, { type: DateFormatter }] });
|
|
441
443
|
class RangeDateFormatterPipe {
|
|
442
444
|
constructor(adapter, formatter) {
|
|
443
445
|
this.adapter = adapter;
|
|
@@ -448,13 +450,13 @@ class RangeDateFormatterPipe {
|
|
|
448
450
|
const date2 = this.adapter.deserialize(value2);
|
|
449
451
|
return this.formatter.rangeLongDate(date1, date2);
|
|
450
452
|
}
|
|
451
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
452
|
-
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
453
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: RangeDateFormatterPipe, deps: [{ token: DateAdapter }, { token: DateFormatter }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
454
|
+
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: RangeDateFormatterPipe, name: "rangeLongDate" }); }
|
|
453
455
|
}
|
|
454
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
456
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: RangeDateFormatterPipe, decorators: [{
|
|
455
457
|
type: Pipe,
|
|
456
458
|
args: [{ name: 'rangeLongDate' }]
|
|
457
|
-
}], ctorParameters:
|
|
459
|
+
}], ctorParameters: () => [{ type: DateAdapter }, { type: DateFormatter }] });
|
|
458
460
|
class RangeShortDateFormatterPipe {
|
|
459
461
|
constructor(adapter, formatter) {
|
|
460
462
|
this.adapter = adapter;
|
|
@@ -465,13 +467,13 @@ class RangeShortDateFormatterPipe {
|
|
|
465
467
|
const date2 = this.adapter.deserialize(value2);
|
|
466
468
|
return this.formatter.rangeShortDate(date1, date2);
|
|
467
469
|
}
|
|
468
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
469
|
-
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
470
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: RangeShortDateFormatterPipe, deps: [{ token: DateAdapter }, { token: DateFormatter }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
471
|
+
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: RangeShortDateFormatterPipe, name: "rangeShortDate" }); }
|
|
470
472
|
}
|
|
471
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
473
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: RangeShortDateFormatterPipe, decorators: [{
|
|
472
474
|
type: Pipe,
|
|
473
475
|
args: [{ name: 'rangeShortDate' }]
|
|
474
|
-
}], ctorParameters:
|
|
476
|
+
}], ctorParameters: () => [{ type: DateAdapter }, { type: DateFormatter }] });
|
|
475
477
|
class RangeDateTimeFormatterPipe {
|
|
476
478
|
constructor(adapter, formatter) {
|
|
477
479
|
this.adapter = adapter;
|
|
@@ -482,13 +484,13 @@ class RangeDateTimeFormatterPipe {
|
|
|
482
484
|
const date2 = this.adapter.deserialize(value2);
|
|
483
485
|
return this.formatter.rangeLongDateTime(date1, date2, options);
|
|
484
486
|
}
|
|
485
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
486
|
-
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
487
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: RangeDateTimeFormatterPipe, deps: [{ token: DateAdapter }, { token: DateFormatter }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
488
|
+
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: RangeDateTimeFormatterPipe, name: "rangeLongDateTime" }); }
|
|
487
489
|
}
|
|
488
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
490
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: RangeDateTimeFormatterPipe, decorators: [{
|
|
489
491
|
type: Pipe,
|
|
490
492
|
args: [{ name: 'rangeLongDateTime' }]
|
|
491
|
-
}], ctorParameters:
|
|
493
|
+
}], ctorParameters: () => [{ type: DateAdapter }, { type: DateFormatter }] });
|
|
492
494
|
class RangeMiddleDateTimeFormatterPipe {
|
|
493
495
|
constructor(adapter, formatter) {
|
|
494
496
|
this.adapter = adapter;
|
|
@@ -499,13 +501,13 @@ class RangeMiddleDateTimeFormatterPipe {
|
|
|
499
501
|
const date2 = this.adapter.deserialize(value2);
|
|
500
502
|
return this.formatter.rangeMiddleDateTime(date1, date2, options);
|
|
501
503
|
}
|
|
502
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
503
|
-
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
504
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: RangeMiddleDateTimeFormatterPipe, deps: [{ token: DateAdapter }, { token: DateFormatter }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
505
|
+
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: RangeMiddleDateTimeFormatterPipe, name: "rangeMiddleDateTime" }); }
|
|
504
506
|
}
|
|
505
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
507
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: RangeMiddleDateTimeFormatterPipe, decorators: [{
|
|
506
508
|
type: Pipe,
|
|
507
509
|
args: [{ name: 'rangeMiddleDateTime' }]
|
|
508
|
-
}], ctorParameters:
|
|
510
|
+
}], ctorParameters: () => [{ type: DateAdapter }, { type: DateFormatter }] });
|
|
509
511
|
class RangeShortDateTimeFormatterPipe {
|
|
510
512
|
constructor(adapter, formatter) {
|
|
511
513
|
this.adapter = adapter;
|
|
@@ -516,208 +518,323 @@ class RangeShortDateTimeFormatterPipe {
|
|
|
516
518
|
const date2 = this.adapter.deserialize(value2);
|
|
517
519
|
return this.formatter.rangeShortDateTime(date1, date2, options);
|
|
518
520
|
}
|
|
519
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
520
|
-
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
521
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: RangeShortDateTimeFormatterPipe, deps: [{ token: DateAdapter }, { token: DateFormatter }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
522
|
+
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: RangeShortDateTimeFormatterPipe, name: "rangeShortDateTime" }); }
|
|
521
523
|
}
|
|
522
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
524
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: RangeShortDateTimeFormatterPipe, decorators: [{
|
|
523
525
|
type: Pipe,
|
|
524
526
|
args: [{ name: 'rangeShortDateTime' }]
|
|
525
|
-
}], ctorParameters:
|
|
527
|
+
}], ctorParameters: () => [{ type: DateAdapter }, { type: DateFormatter }] });
|
|
526
528
|
|
|
527
529
|
const enUSLocaleData = {
|
|
528
|
-
'
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
}
|
|
544
|
-
}
|
|
530
|
+
select: { hiddenItemsText: '{{ number }} more' },
|
|
531
|
+
datepicker: {
|
|
532
|
+
placeholder: 'yyyy-mm-dd',
|
|
533
|
+
dateInput: 'yyyy-MM-dd'
|
|
534
|
+
},
|
|
535
|
+
timepicker: {
|
|
536
|
+
placeholder: {
|
|
537
|
+
full: 'hh:mm:ss',
|
|
538
|
+
short: 'hh:mm'
|
|
539
|
+
}
|
|
540
|
+
},
|
|
541
|
+
fileUpload: {
|
|
542
|
+
single: {
|
|
543
|
+
captionText: 'Drag file here or {{ browseLink }}',
|
|
544
|
+
browseLink: 'choose'
|
|
545
545
|
},
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
546
|
+
multiple: {
|
|
547
|
+
captionText: 'Drag here or {{ browseLink }}',
|
|
548
|
+
captionTextWhenSelected: 'Drag more files or {{ browseLink }}',
|
|
549
|
+
captionTextForCompactSize: 'Drag files or {{ browseLink }}',
|
|
550
|
+
browseLink: 'choose',
|
|
551
|
+
title: 'Upload files',
|
|
552
|
+
gridHeaders: {
|
|
553
|
+
file: 'File',
|
|
554
|
+
size: 'Size'
|
|
550
555
|
}
|
|
551
556
|
}
|
|
552
557
|
}
|
|
553
558
|
};
|
|
554
559
|
|
|
555
560
|
const esLALocaleData = {
|
|
556
|
-
'
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
separator: '',
|
|
571
|
-
groupSeparator: ',',
|
|
572
|
-
thousand: 'K',
|
|
573
|
-
million: 'M',
|
|
574
|
-
billion: 'MRD',
|
|
575
|
-
trillion: 'B'
|
|
576
|
-
}
|
|
577
|
-
}
|
|
561
|
+
select: { hiddenItemsText: '{{ number }} más' },
|
|
562
|
+
datepicker: {
|
|
563
|
+
placeholder: 'dd/mm/aaaa'
|
|
564
|
+
},
|
|
565
|
+
timepicker: {
|
|
566
|
+
placeholder: {
|
|
567
|
+
full: 'hh:mm:ss',
|
|
568
|
+
short: 'hh:mm'
|
|
569
|
+
}
|
|
570
|
+
},
|
|
571
|
+
fileUpload: {
|
|
572
|
+
single: {
|
|
573
|
+
captionText: 'Arrastre el archivo aquí o {{ browseLink }}',
|
|
574
|
+
browseLink: 'elija'
|
|
578
575
|
},
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
576
|
+
multiple: {
|
|
577
|
+
captionText: 'Arrastre aquí o {{ browseLink }}',
|
|
578
|
+
captionTextWhenSelected: 'Arrastre más archivos aquí o {{ browseLink }}',
|
|
579
|
+
captionTextForCompactSize: 'Arrastre archivos o {{ browseLink }}',
|
|
580
|
+
browseLink: 'elija',
|
|
581
|
+
title: 'Cargue los archivos',
|
|
582
|
+
gridHeaders: {
|
|
583
|
+
file: 'Archivo',
|
|
584
|
+
size: 'Tamaño'
|
|
585
585
|
}
|
|
586
586
|
}
|
|
587
587
|
}
|
|
588
588
|
};
|
|
589
589
|
|
|
590
590
|
const faIRLocaleData = {
|
|
591
|
-
'
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
separator: ' ',
|
|
606
|
-
groupSeparator: '٫',
|
|
607
|
-
thousand: 'هزار',
|
|
608
|
-
million: 'میلیون',
|
|
609
|
-
billion: 'م',
|
|
610
|
-
trillion: 'تریلیون',
|
|
611
|
-
rtl: true
|
|
612
|
-
}
|
|
613
|
-
}
|
|
591
|
+
select: { hiddenItemsText: '{{ number }} بیشتر' },
|
|
592
|
+
datepicker: {
|
|
593
|
+
placeholder: 'روز/ ماه/سال'
|
|
594
|
+
},
|
|
595
|
+
timepicker: {
|
|
596
|
+
placeholder: {
|
|
597
|
+
full: 'ثانیه:دقیقه:ساعت',
|
|
598
|
+
short: 'دقیقه:ساعت'
|
|
599
|
+
}
|
|
600
|
+
},
|
|
601
|
+
fileUpload: {
|
|
602
|
+
single: {
|
|
603
|
+
captionText: 'فایل را به اینجا بکشید یا {{ browseLink }}',
|
|
604
|
+
browseLink: 'انتخاب کنید'
|
|
614
605
|
},
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
606
|
+
multiple: {
|
|
607
|
+
captionText: 'به اینجا بکشید یا {{ browseLink }}',
|
|
608
|
+
captionTextWhenSelected: 'فایل های بیشتری را بکشید یا {{ browseLink }}',
|
|
609
|
+
captionTextForCompactSize: 'فایل ها را بکشید یا {{ browseLink }}',
|
|
610
|
+
browseLink: 'انتخاب کنید',
|
|
611
|
+
title: 'فایل ها را آپلود کنید',
|
|
612
|
+
gridHeaders: {
|
|
613
|
+
file: 'فایل',
|
|
614
|
+
size: 'اندازه'
|
|
619
615
|
}
|
|
620
616
|
}
|
|
621
617
|
}
|
|
622
618
|
};
|
|
623
619
|
|
|
624
620
|
const ptBRLocaleData = {
|
|
625
|
-
'
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
separator: ' ',
|
|
640
|
-
groupSeparator: ',',
|
|
641
|
-
thousand: 'mil',
|
|
642
|
-
million: 'mi',
|
|
643
|
-
billion: 'bi',
|
|
644
|
-
trillion: 'tri'
|
|
645
|
-
}
|
|
646
|
-
}
|
|
621
|
+
select: { hiddenItemsText: '{{ number }} mais' },
|
|
622
|
+
datepicker: {
|
|
623
|
+
placeholder: 'dd/mm/yyyy'
|
|
624
|
+
},
|
|
625
|
+
timepicker: {
|
|
626
|
+
placeholder: {
|
|
627
|
+
full: 'hh:mm:ss',
|
|
628
|
+
short: 'hh:mm'
|
|
629
|
+
}
|
|
630
|
+
},
|
|
631
|
+
fileUpload: {
|
|
632
|
+
single: {
|
|
633
|
+
captionText: 'Arrastar o arquivo aqui ou {{ browseLink }}',
|
|
634
|
+
browseLink: 'escolher'
|
|
647
635
|
},
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
636
|
+
multiple: {
|
|
637
|
+
captionText: 'Arrastar aqui ou {{ browseLink }}',
|
|
638
|
+
captionTextWhenSelected: 'Arrastar mais arquivos aqui ou {{ browseLink }}',
|
|
639
|
+
captionTextForCompactSize: 'Arrastar arquivos ou {{ browseLink }}',
|
|
640
|
+
browseLink: 'escolher',
|
|
641
|
+
title: 'Carregar arquivos',
|
|
642
|
+
gridHeaders: {
|
|
643
|
+
file: 'Arquivo',
|
|
644
|
+
size: 'Tamanho'
|
|
652
645
|
}
|
|
653
646
|
}
|
|
654
647
|
}
|
|
655
648
|
};
|
|
656
649
|
|
|
657
650
|
const ruRULocaleData = {
|
|
658
|
-
'
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
651
|
+
select: { hiddenItemsText: 'еще {{ number }}' },
|
|
652
|
+
datepicker: {
|
|
653
|
+
placeholder: 'дд.мм.гггг',
|
|
654
|
+
dateInput: 'dd.MM.yyyy'
|
|
655
|
+
},
|
|
656
|
+
timepicker: {
|
|
657
|
+
placeholder: {
|
|
658
|
+
full: 'hh:mm:ss',
|
|
659
|
+
short: 'hh:mm'
|
|
660
|
+
}
|
|
661
|
+
},
|
|
662
|
+
fileUpload: {
|
|
663
|
+
single: {
|
|
664
|
+
captionText: 'Перетащите файл или {{ browseLink }}',
|
|
665
|
+
browseLink: 'выберите'
|
|
663
666
|
},
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
}
|
|
667
|
+
multiple: {
|
|
668
|
+
captionText: 'Перетащите сюда или {{ browseLink }}',
|
|
669
|
+
captionTextWhenSelected: 'Перетащите еще или {{ browseLink }}',
|
|
670
|
+
captionTextForCompactSize: 'Перетащите файлы или {{ browseLink }}',
|
|
671
|
+
browseLink: 'выберите',
|
|
672
|
+
title: 'Загрузите файлы',
|
|
673
|
+
gridHeaders: {
|
|
674
|
+
file: 'Файл',
|
|
675
|
+
size: 'Размер'
|
|
674
676
|
}
|
|
677
|
+
}
|
|
678
|
+
}
|
|
679
|
+
};
|
|
680
|
+
|
|
681
|
+
const zhCNLocaleData = {
|
|
682
|
+
select: { hiddenItemsText: '另外 {{ number }} 个' },
|
|
683
|
+
datepicker: {
|
|
684
|
+
placeholder: '年/月/日'
|
|
685
|
+
},
|
|
686
|
+
timepicker: {
|
|
687
|
+
placeholder: {
|
|
688
|
+
full: '时:分:秒',
|
|
689
|
+
short: '时:分'
|
|
690
|
+
}
|
|
691
|
+
},
|
|
692
|
+
fileUpload: {
|
|
693
|
+
single: {
|
|
694
|
+
captionText: '将文件拖到此处或{{ browseLink }}',
|
|
695
|
+
browseLink: '选择'
|
|
675
696
|
},
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
697
|
+
multiple: {
|
|
698
|
+
captionText: '拖到此处或{{ browseLink }}',
|
|
699
|
+
captionTextWhenSelected: '拖动更多文件或{{ browseLink }}',
|
|
700
|
+
captionTextForCompactSize: '拖动文件或{{ browseLink }}',
|
|
701
|
+
browseLink: '选择',
|
|
702
|
+
title: '上传文件',
|
|
703
|
+
gridHeaders: {
|
|
704
|
+
file: '文件',
|
|
705
|
+
size: '大小'
|
|
683
706
|
}
|
|
684
707
|
}
|
|
685
708
|
}
|
|
686
709
|
};
|
|
687
710
|
|
|
688
|
-
const
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
711
|
+
const enUSFormattersData = {
|
|
712
|
+
formatters: {
|
|
713
|
+
number: {
|
|
714
|
+
rounding: {
|
|
715
|
+
separator: '',
|
|
716
|
+
groupSeparator: '.',
|
|
717
|
+
thousand: 'K',
|
|
718
|
+
million: 'M',
|
|
719
|
+
billion: 'B',
|
|
720
|
+
trillion: 'T'
|
|
698
721
|
}
|
|
699
|
-
}
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
722
|
+
}
|
|
723
|
+
},
|
|
724
|
+
input: {
|
|
725
|
+
number: {
|
|
726
|
+
groupSeparator: [','],
|
|
727
|
+
fractionSeparator: '.'
|
|
728
|
+
}
|
|
729
|
+
}
|
|
730
|
+
};
|
|
731
|
+
const esLAFormattersData = {
|
|
732
|
+
formatters: {
|
|
733
|
+
number: {
|
|
734
|
+
rounding: {
|
|
735
|
+
separator: '',
|
|
736
|
+
groupSeparator: ',',
|
|
737
|
+
thousand: 'K',
|
|
738
|
+
million: 'M',
|
|
739
|
+
billion: 'MRD',
|
|
740
|
+
trillion: 'B'
|
|
709
741
|
}
|
|
710
|
-
}
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
742
|
+
}
|
|
743
|
+
},
|
|
744
|
+
input: {
|
|
745
|
+
number: {
|
|
746
|
+
// nbsp is generated automatically and used by default in spec
|
|
747
|
+
// tslint:disable-next-line:no-irregular-whitespace
|
|
748
|
+
groupSeparator: [' ', ' '],
|
|
749
|
+
fractionSeparator: ','
|
|
750
|
+
}
|
|
751
|
+
}
|
|
752
|
+
};
|
|
753
|
+
const faIRFormattersData = {
|
|
754
|
+
formatters: {
|
|
755
|
+
number: {
|
|
756
|
+
rounding: {
|
|
757
|
+
separator: ' ',
|
|
758
|
+
groupSeparator: '٫',
|
|
759
|
+
thousand: 'هزار',
|
|
760
|
+
million: 'میلیون',
|
|
761
|
+
billion: 'م',
|
|
762
|
+
trillion: 'تریلیون',
|
|
763
|
+
rtl: true
|
|
764
|
+
}
|
|
765
|
+
}
|
|
766
|
+
},
|
|
767
|
+
input: {
|
|
768
|
+
number: {
|
|
769
|
+
groupSeparator: ['\u066C'],
|
|
770
|
+
fractionSeparator: '\u066B'
|
|
771
|
+
}
|
|
772
|
+
}
|
|
773
|
+
};
|
|
774
|
+
const ptBRFormattersData = {
|
|
775
|
+
formatters: {
|
|
776
|
+
number: {
|
|
777
|
+
rounding: {
|
|
778
|
+
separator: ' ',
|
|
779
|
+
groupSeparator: ',',
|
|
780
|
+
thousand: 'mil',
|
|
781
|
+
million: 'mi',
|
|
782
|
+
billion: 'bi',
|
|
783
|
+
trillion: 'tri'
|
|
715
784
|
}
|
|
716
785
|
}
|
|
786
|
+
},
|
|
787
|
+
input: {
|
|
788
|
+
number: {
|
|
789
|
+
groupSeparator: ['.'],
|
|
790
|
+
fractionSeparator: ','
|
|
791
|
+
}
|
|
792
|
+
}
|
|
793
|
+
};
|
|
794
|
+
const ruRUFormattersData = {
|
|
795
|
+
formatters: {
|
|
796
|
+
number: {
|
|
797
|
+
rounding: {
|
|
798
|
+
separator: ' ',
|
|
799
|
+
groupSeparator: ',',
|
|
800
|
+
thousand: 'К',
|
|
801
|
+
million: 'М',
|
|
802
|
+
billion: 'М',
|
|
803
|
+
trillion: 'Т'
|
|
804
|
+
}
|
|
805
|
+
}
|
|
806
|
+
},
|
|
807
|
+
input: {
|
|
808
|
+
number: {
|
|
809
|
+
// nbsp is generated automatically and used by default in spec
|
|
810
|
+
// tslint:disable-next-line:no-irregular-whitespace
|
|
811
|
+
groupSeparator: [' ', ' '],
|
|
812
|
+
fractionSeparator: ',',
|
|
813
|
+
startFormattingFrom: 4
|
|
814
|
+
}
|
|
815
|
+
}
|
|
816
|
+
};
|
|
817
|
+
const zhCNFormattersData = {
|
|
818
|
+
formatters: {
|
|
819
|
+
number: {
|
|
820
|
+
rounding: {
|
|
821
|
+
separator: ' ',
|
|
822
|
+
groupSeparator: '.',
|
|
823
|
+
tenThousand: '万',
|
|
824
|
+
oneHundredMillions: '亿',
|
|
825
|
+
trillion: '兆'
|
|
826
|
+
}
|
|
827
|
+
}
|
|
828
|
+
},
|
|
829
|
+
input: {
|
|
830
|
+
number: {
|
|
831
|
+
groupSeparator: [','],
|
|
832
|
+
fractionSeparator: '.'
|
|
833
|
+
}
|
|
717
834
|
}
|
|
718
835
|
};
|
|
719
836
|
|
|
720
|
-
const KBQ_LOCALE_ID
|
|
837
|
+
const KBQ_LOCALE_ID = new InjectionToken('KbqLocaleId');
|
|
721
838
|
const KBQ_DEFAULT_LOCALE_ID = 'ru-RU';
|
|
722
839
|
function KBQ_DEFAULT_LOCALE_DATA_FACTORY() {
|
|
723
840
|
return {
|
|
@@ -729,12 +846,12 @@ function KBQ_DEFAULT_LOCALE_DATA_FACTORY() {
|
|
|
729
846
|
{ id: 'ru-RU', name: 'Русский' },
|
|
730
847
|
{ id: 'fa-IR', name: 'فارسی' }
|
|
731
848
|
],
|
|
732
|
-
...
|
|
733
|
-
...
|
|
734
|
-
...esLALocaleData,
|
|
735
|
-
...
|
|
736
|
-
...
|
|
737
|
-
...
|
|
849
|
+
'en-US': { ...enUSLocaleData, ...enUSFormattersData },
|
|
850
|
+
'zh-CN': { ...zhCNLocaleData, ...zhCNFormattersData },
|
|
851
|
+
'es-LA': { ...esLALocaleData, ...esLAFormattersData },
|
|
852
|
+
'pt-BR': { ...ptBRLocaleData, ...ptBRFormattersData },
|
|
853
|
+
'ru-RU': { ...ruRULocaleData, ...ruRUFormattersData },
|
|
854
|
+
'fa-IR': { ...faIRLocaleData, ...faIRFormattersData }
|
|
738
855
|
};
|
|
739
856
|
}
|
|
740
857
|
const KBQ_LOCALE_DATA = new InjectionToken('KBQ_LOCALE_DATA', { providedIn: 'root', factory: KBQ_DEFAULT_LOCALE_DATA_FACTORY });
|
|
@@ -760,32 +877,32 @@ class KbqLocaleService {
|
|
|
760
877
|
getParams(componentName) {
|
|
761
878
|
return this.current[componentName];
|
|
762
879
|
}
|
|
763
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
764
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
880
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqLocaleService, deps: [{ token: KBQ_LOCALE_ID, optional: true }, { token: KBQ_LOCALE_DATA, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
881
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqLocaleService, providedIn: 'root' }); }
|
|
765
882
|
}
|
|
766
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
883
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqLocaleService, decorators: [{
|
|
767
884
|
type: Injectable,
|
|
768
885
|
args: [{ providedIn: 'root' }]
|
|
769
|
-
}], ctorParameters:
|
|
886
|
+
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
770
887
|
type: Optional
|
|
771
888
|
}, {
|
|
772
889
|
type: Inject,
|
|
773
|
-
args: [KBQ_LOCALE_ID
|
|
890
|
+
args: [KBQ_LOCALE_ID]
|
|
774
891
|
}] }, { type: undefined, decorators: [{
|
|
775
892
|
type: Optional
|
|
776
893
|
}, {
|
|
777
894
|
type: Inject,
|
|
778
895
|
args: [KBQ_LOCALE_DATA]
|
|
779
|
-
}] }]
|
|
896
|
+
}] }] });
|
|
780
897
|
|
|
781
898
|
class KbqLocaleServiceModule {
|
|
782
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
783
|
-
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
784
|
-
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
899
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqLocaleServiceModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
900
|
+
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: KbqLocaleServiceModule }); }
|
|
901
|
+
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqLocaleServiceModule, providers: [
|
|
785
902
|
{ provide: KBQ_LOCALE_SERVICE, useClass: KbqLocaleService }
|
|
786
903
|
] }); }
|
|
787
904
|
}
|
|
788
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
905
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqLocaleServiceModule, decorators: [{
|
|
789
906
|
type: NgModule,
|
|
790
907
|
args: [{
|
|
791
908
|
providers: [
|
|
@@ -794,8 +911,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImpor
|
|
|
794
911
|
}]
|
|
795
912
|
}] });
|
|
796
913
|
|
|
797
|
-
const KBQ_LOCALE_ID = new InjectionToken('KbqLocaleId');
|
|
798
|
-
|
|
799
914
|
/* tslint:disable:naming-convention */
|
|
800
915
|
const KBQ_NUMBER_FORMATTER_OPTIONS = new InjectionToken('KbqNumberFormatterOptions');
|
|
801
916
|
const KBQ_NUMBER_FORMATTER_DEFAULT_OPTIONS = {
|
|
@@ -927,17 +1042,17 @@ class KbqDecimalPipe {
|
|
|
927
1042
|
isSpecialFormatForRULocale(locale, value, grouping) {
|
|
928
1043
|
return ['ru', 'ru-RU'].includes(locale) && grouping === undefined && value < defaultValueForGroupingInRULocale;
|
|
929
1044
|
}
|
|
930
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
931
|
-
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
932
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1045
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqDecimalPipe, deps: [{ token: KBQ_LOCALE_ID, optional: true }, { token: KBQ_LOCALE_SERVICE, optional: true }, { token: KBQ_NUMBER_FORMATTER_OPTIONS, optional: true }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
1046
|
+
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: KbqDecimalPipe, name: "kbqNumber", pure: false }); }
|
|
1047
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqDecimalPipe, providedIn: 'root' }); }
|
|
933
1048
|
}
|
|
934
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1049
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqDecimalPipe, decorators: [{
|
|
935
1050
|
type: Injectable,
|
|
936
1051
|
args: [{ providedIn: 'root' }]
|
|
937
1052
|
}, {
|
|
938
1053
|
type: Pipe,
|
|
939
1054
|
args: [{ name: 'kbqNumber', pure: false }]
|
|
940
|
-
}], ctorParameters:
|
|
1055
|
+
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
941
1056
|
type: Optional
|
|
942
1057
|
}, {
|
|
943
1058
|
type: Inject,
|
|
@@ -952,7 +1067,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImpor
|
|
|
952
1067
|
}, {
|
|
953
1068
|
type: Inject,
|
|
954
1069
|
args: [KBQ_NUMBER_FORMATTER_OPTIONS]
|
|
955
|
-
}] }]
|
|
1070
|
+
}] }] });
|
|
956
1071
|
class KbqTableNumberPipe {
|
|
957
1072
|
constructor(id, localeService, options) {
|
|
958
1073
|
this.id = id;
|
|
@@ -1003,17 +1118,17 @@ class KbqTableNumberPipe {
|
|
|
1003
1118
|
throw Error(`InvalidPipeArgument: KbqTableNumberPipe for pipe '${JSON.stringify(error.message)}'`);
|
|
1004
1119
|
}
|
|
1005
1120
|
}
|
|
1006
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1007
|
-
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
1008
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1121
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqTableNumberPipe, deps: [{ token: KBQ_LOCALE_ID, optional: true }, { token: KBQ_LOCALE_SERVICE, optional: true }, { token: KBQ_NUMBER_FORMATTER_OPTIONS, optional: true }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
1122
|
+
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: KbqTableNumberPipe, name: "kbqTableNumber", pure: false }); }
|
|
1123
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqTableNumberPipe, providedIn: 'root' }); }
|
|
1009
1124
|
}
|
|
1010
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1125
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqTableNumberPipe, decorators: [{
|
|
1011
1126
|
type: Injectable,
|
|
1012
1127
|
args: [{ providedIn: 'root' }]
|
|
1013
1128
|
}, {
|
|
1014
1129
|
type: Pipe,
|
|
1015
1130
|
args: [{ name: 'kbqTableNumber', pure: false }]
|
|
1016
|
-
}], ctorParameters:
|
|
1131
|
+
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
1017
1132
|
type: Optional
|
|
1018
1133
|
}, {
|
|
1019
1134
|
type: Inject,
|
|
@@ -1028,7 +1143,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImpor
|
|
|
1028
1143
|
}, {
|
|
1029
1144
|
type: Inject,
|
|
1030
1145
|
args: [KBQ_NUMBER_FORMATTER_OPTIONS]
|
|
1031
|
-
}] }]
|
|
1146
|
+
}] }] });
|
|
1032
1147
|
function isWithin(startRange, endRange, valueToCheck) {
|
|
1033
1148
|
return startRange <= valueToCheck && valueToCheck < endRange;
|
|
1034
1149
|
}
|
|
@@ -1120,17 +1235,17 @@ class KbqRoundDecimalPipe {
|
|
|
1120
1235
|
});
|
|
1121
1236
|
return currentUnit;
|
|
1122
1237
|
}
|
|
1123
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1124
|
-
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
1125
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1238
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqRoundDecimalPipe, deps: [{ token: KBQ_LOCALE_ID, optional: true }, { token: KBQ_LOCALE_SERVICE, optional: true }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
1239
|
+
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: KbqRoundDecimalPipe, name: "kbqRoundNumber", pure: false }); }
|
|
1240
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqRoundDecimalPipe, providedIn: 'root' }); }
|
|
1126
1241
|
}
|
|
1127
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1242
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqRoundDecimalPipe, decorators: [{
|
|
1128
1243
|
type: Injectable,
|
|
1129
1244
|
args: [{ providedIn: 'root' }]
|
|
1130
1245
|
}, {
|
|
1131
1246
|
type: Pipe,
|
|
1132
1247
|
args: [{ name: 'kbqRoundNumber', pure: false }]
|
|
1133
|
-
}], ctorParameters:
|
|
1248
|
+
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
1134
1249
|
type: Optional
|
|
1135
1250
|
}, {
|
|
1136
1251
|
type: Inject,
|
|
@@ -1140,11 +1255,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImpor
|
|
|
1140
1255
|
}, {
|
|
1141
1256
|
type: Inject,
|
|
1142
1257
|
args: [KBQ_LOCALE_SERVICE]
|
|
1143
|
-
}] }]
|
|
1258
|
+
}] }] });
|
|
1144
1259
|
|
|
1145
1260
|
class KbqFormattersModule {
|
|
1146
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1147
|
-
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
1261
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqFormattersModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1262
|
+
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: KbqFormattersModule, declarations: [KbqDecimalPipe,
|
|
1148
1263
|
KbqRoundDecimalPipe,
|
|
1149
1264
|
KbqTableNumberPipe,
|
|
1150
1265
|
AbsoluteDateFormatterPipe,
|
|
@@ -1175,9 +1290,9 @@ class KbqFormattersModule {
|
|
|
1175
1290
|
RangeDateTimeFormatterPipe,
|
|
1176
1291
|
RangeShortDateTimeFormatterPipe,
|
|
1177
1292
|
RangeMiddleDateTimeFormatterPipe] }); }
|
|
1178
|
-
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
1293
|
+
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqFormattersModule, providers: [{ provide: DateFormatter, deps: [DateAdapter, KBQ_DATE_LOCALE] }] }); }
|
|
1179
1294
|
}
|
|
1180
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1295
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqFormattersModule, decorators: [{
|
|
1181
1296
|
type: NgModule,
|
|
1182
1297
|
args: [{
|
|
1183
1298
|
declarations: [
|
|
@@ -1216,7 +1331,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImpor
|
|
|
1216
1331
|
RangeShortDateTimeFormatterPipe,
|
|
1217
1332
|
RangeMiddleDateTimeFormatterPipe
|
|
1218
1333
|
],
|
|
1219
|
-
providers: [DateFormatter]
|
|
1334
|
+
providers: [{ provide: DateFormatter, deps: [DateAdapter, KBQ_DATE_LOCALE] }]
|
|
1220
1335
|
}]
|
|
1221
1336
|
}] });
|
|
1222
1337
|
|
|
@@ -1245,10 +1360,10 @@ class KbqFormElement {
|
|
|
1245
1360
|
this.hasLegend = this.element.nativeElement.firstElementChild.classList.contains('kbq-form__legend');
|
|
1246
1361
|
}
|
|
1247
1362
|
}
|
|
1248
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1249
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1363
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqFormElement, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1364
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.0", type: KbqFormElement, selector: ".kbq-form__row, .kbq-form__fieldset, .kbq-form__legend", host: { properties: { "class.kbq-form-row_margin": "margin" } }, queries: [{ propertyName: "elements", predicate: KbqFormElement }], exportAs: ["kbqFormElement"], ngImport: i0 }); }
|
|
1250
1365
|
}
|
|
1251
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1366
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqFormElement, decorators: [{
|
|
1252
1367
|
type: Directive,
|
|
1253
1368
|
args: [{
|
|
1254
1369
|
selector: '.kbq-form__row, .kbq-form__fieldset, .kbq-form__legend',
|
|
@@ -1257,7 +1372,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImpor
|
|
|
1257
1372
|
'[class.kbq-form-row_margin]': 'margin'
|
|
1258
1373
|
}
|
|
1259
1374
|
}]
|
|
1260
|
-
}], ctorParameters:
|
|
1375
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { elements: [{
|
|
1261
1376
|
type: ContentChildren,
|
|
1262
1377
|
args: [KbqFormElement]
|
|
1263
1378
|
}] } });
|
|
@@ -1274,10 +1389,10 @@ class KbqForm {
|
|
|
1274
1389
|
element.margin = !!(nextElement && !nextElement.hasLegend);
|
|
1275
1390
|
});
|
|
1276
1391
|
}
|
|
1277
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1278
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1392
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqForm, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1393
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.0", type: KbqForm, selector: ".kbq-form-vertical, .kbq-form-horizontal", host: { classAttribute: "kbq-form" }, queries: [{ propertyName: "elements", predicate: KbqFormElement }], exportAs: ["kbqForm"], ngImport: i0 }); }
|
|
1279
1394
|
}
|
|
1280
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1395
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqForm, decorators: [{
|
|
1281
1396
|
type: Directive,
|
|
1282
1397
|
args: [{
|
|
1283
1398
|
selector: '.kbq-form-vertical, .kbq-form-horizontal',
|
|
@@ -1292,13 +1407,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImpor
|
|
|
1292
1407
|
}] } });
|
|
1293
1408
|
|
|
1294
1409
|
class KbqFormsModule {
|
|
1295
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1296
|
-
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
1410
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqFormsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1411
|
+
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: KbqFormsModule, declarations: [KbqForm,
|
|
1297
1412
|
KbqFormElement], exports: [KbqForm,
|
|
1298
1413
|
KbqFormElement] }); }
|
|
1299
|
-
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
1414
|
+
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqFormsModule }); }
|
|
1300
1415
|
}
|
|
1301
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1416
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqFormsModule, decorators: [{
|
|
1302
1417
|
type: NgModule,
|
|
1303
1418
|
args: [{
|
|
1304
1419
|
exports: [
|
|
@@ -1320,25 +1435,25 @@ function escapeRegExp(value) {
|
|
|
1320
1435
|
}
|
|
1321
1436
|
class KbqHighlightPipe {
|
|
1322
1437
|
transform(value, args) {
|
|
1323
|
-
if (!args) {
|
|
1438
|
+
if (!args || typeof args !== 'string') {
|
|
1324
1439
|
return value;
|
|
1325
1440
|
}
|
|
1326
1441
|
return value.replace(new RegExp(`(${escapeRegExp(args)})`, 'gi'), '<mark class="kbq-highlight">$1</mark>');
|
|
1327
1442
|
}
|
|
1328
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1329
|
-
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
1443
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqHighlightPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
1444
|
+
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: KbqHighlightPipe, name: "mcHighlight" }); }
|
|
1330
1445
|
}
|
|
1331
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1446
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqHighlightPipe, decorators: [{
|
|
1332
1447
|
type: Pipe,
|
|
1333
1448
|
args: [{ name: 'mcHighlight' }]
|
|
1334
1449
|
}] });
|
|
1335
1450
|
|
|
1336
1451
|
class KbqHighlightModule {
|
|
1337
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1338
|
-
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
1339
|
-
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
1452
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqHighlightModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1453
|
+
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: KbqHighlightModule, declarations: [KbqHighlightPipe], imports: [CommonModule], exports: [KbqHighlightPipe] }); }
|
|
1454
|
+
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqHighlightModule, imports: [CommonModule] }); }
|
|
1340
1455
|
}
|
|
1341
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1456
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqHighlightModule, decorators: [{
|
|
1342
1457
|
type: NgModule,
|
|
1343
1458
|
args: [{
|
|
1344
1459
|
imports: [CommonModule],
|
|
@@ -1356,10 +1471,10 @@ const KBQ_LABEL_GLOBAL_OPTIONS = new InjectionToken('kbq-label-global-options');
|
|
|
1356
1471
|
* counted by checking the query list's length.
|
|
1357
1472
|
*/
|
|
1358
1473
|
class KbqLine {
|
|
1359
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1360
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1474
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqLine, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1475
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.0", type: KbqLine, selector: "[kbq-line], [mcLine]", host: { classAttribute: "kbq-line" }, ngImport: i0 }); }
|
|
1361
1476
|
}
|
|
1362
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1477
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqLine, decorators: [{
|
|
1363
1478
|
type: Directive,
|
|
1364
1479
|
args: [{
|
|
1365
1480
|
selector: '[kbq-line], [mcLine]',
|
|
@@ -1405,11 +1520,11 @@ class KbqLineSetter {
|
|
|
1405
1520
|
}
|
|
1406
1521
|
}
|
|
1407
1522
|
class KbqLineModule {
|
|
1408
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1409
|
-
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
1410
|
-
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
1523
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqLineModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1524
|
+
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: KbqLineModule, declarations: [KbqLine], exports: [KbqLine] }); }
|
|
1525
|
+
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqLineModule }); }
|
|
1411
1526
|
}
|
|
1412
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1527
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqLineModule, decorators: [{
|
|
1413
1528
|
type: NgModule,
|
|
1414
1529
|
args: [{
|
|
1415
1530
|
imports: [],
|
|
@@ -1435,15 +1550,15 @@ class KbqOptgroup extends KbqOptgroupMixinBase {
|
|
|
1435
1550
|
/** Unique id for the underlying label. */
|
|
1436
1551
|
this.labelId = `kbq-optgroup-label-${uniqueOptgroupIdCounter++}`;
|
|
1437
1552
|
}
|
|
1438
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1439
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1553
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqOptgroup, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1554
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.0", type: KbqOptgroup, selector: "kbq-optgroup", inputs: { disabled: "disabled", label: "label" }, host: { properties: { "class.kbq-disabled": "disabled" }, classAttribute: "kbq-optgroup" }, exportAs: ["kbqOptgroup"], usesInheritance: true, ngImport: i0, template: "<label class=\"kbq-optgroup-label\" [id]=\"labelId\">{{ label }}</label>\n<ng-content select=\"kbq-option, kbq-list-option, kbq-timezone-option, ng-container\"></ng-content>\n", styles: [".kbq-optgroup-label{padding-left:var(--kbq-optgroup-size-padding-left, 17px);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
1440
1555
|
}
|
|
1441
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1556
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqOptgroup, decorators: [{
|
|
1442
1557
|
type: Component,
|
|
1443
1558
|
args: [{ selector: 'kbq-optgroup', exportAs: 'kbqOptgroup', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, inputs: ['disabled'], host: {
|
|
1444
1559
|
class: 'kbq-optgroup',
|
|
1445
1560
|
'[class.kbq-disabled]': 'disabled'
|
|
1446
|
-
}, template: "<label class=\"kbq-optgroup-label\" [id]=\"labelId\">{{ label }}</label>\n<ng-content select=\"kbq-option, kbq-list-option, kbq-timezone-option, ng-container\"></ng-content>\n", styles: [".kbq-optgroup-label{padding-left:var(--kbq-optgroup-size-padding-left, 17px);-webkit-user-select:none;user-select:none;cursor:default}\n"] }]
|
|
1561
|
+
}, template: "<label class=\"kbq-optgroup-label\" [id]=\"labelId\">{{ label }}</label>\n<ng-content select=\"kbq-option, kbq-list-option, kbq-timezone-option, ng-container\"></ng-content>\n", styles: [".kbq-optgroup-label{padding-left:var(--kbq-optgroup-size-padding-left, 17px);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}\n"] }]
|
|
1447
1562
|
}], propDecorators: { label: [{
|
|
1448
1563
|
type: Input
|
|
1449
1564
|
}] } });
|
|
@@ -1477,10 +1592,10 @@ class KbqPseudoCheckbox extends KbqPseudoCheckboxMixinBase {
|
|
|
1477
1592
|
this.state = 'unchecked';
|
|
1478
1593
|
this.disabled = false;
|
|
1479
1594
|
}
|
|
1480
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1481
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1595
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqPseudoCheckbox, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1596
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.0", type: KbqPseudoCheckbox, selector: "kbq-pseudo-checkbox", inputs: { color: "color", big: "big", state: "state", disabled: "disabled" }, host: { properties: { "class.kbq-checkbox_big": "big", "class.kbq-indeterminate": "state === \"indeterminate\"", "class.kbq-checked": "state === \"checked\"", "class.kbq-disabled": "disabled" }, classAttribute: "kbq-pseudo-checkbox" }, usesInheritance: true, ngImport: i0, template: "<i class=\"kbq-checkbox-checkmark mc mc-check_16\"></i>\n<i class=\"kbq-checkbox-mixedmark mc mc-minus_16\"></i>\n", styles: [".kbq-pseudo-checkbox{position:relative;display:inline-flex;box-sizing:border-box;align-items:center;justify-content:center;width:var(--kbq-checkbox-size-normal-width, 16px);height:var(--kbq-checkbox-size-normal-width, 16px);border-radius:var(--kbq-checkbox-size-normal-border-radius, 4px);border-width:var(--kbq-checkbox-size-normal-border-width, 1px);border-style:solid;cursor:pointer;vertical-align:middle;flex-shrink:0}.kbq-pseudo-checkbox .kbq-checkbox-checkmark,.kbq-pseudo-checkbox .kbq-checkbox-mixedmark{display:none}.kbq-pseudo-checkbox.kbq-pseudo-checkbox-checked,.kbq-pseudo-checkbox.kbq-pseudo-checkbox-indeterminate{border-color:transparent}.kbq-pseudo-checkbox.kbq-checked .kbq-checkbox-checkmark,.kbq-pseudo-checkbox.kbq-indeterminate .kbq-checkbox-mixedmark{display:inline-block}.kbq-pseudo-checkbox.kbq-disabled{cursor:default}.kbq-pseudo-checkbox.kbq-pseudo-checkbox_big{width:var(--kbq-checkbox-size-big-width, 16px);height:var(--kbq-checkbox-size-big-width, 16px);border-radius:var(--kbq-checkbox-size-big-border-radius, 4px);border-width:var(--kbq-checkbox-size-big-border-width, 1px)}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
1482
1597
|
}
|
|
1483
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1598
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqPseudoCheckbox, decorators: [{
|
|
1484
1599
|
type: Component,
|
|
1485
1600
|
args: [{ selector: 'kbq-pseudo-checkbox', host: {
|
|
1486
1601
|
class: 'kbq-pseudo-checkbox',
|
|
@@ -1488,8 +1603,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImpor
|
|
|
1488
1603
|
'[class.kbq-indeterminate]': 'state === "indeterminate"',
|
|
1489
1604
|
'[class.kbq-checked]': 'state === "checked"',
|
|
1490
1605
|
'[class.kbq-disabled]': 'disabled'
|
|
1491
|
-
}, preserveWhitespaces: false, inputs: ['color'], changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<i class=\"kbq-checkbox-checkmark mc mc-check_16\"></i>\n<i class=\"kbq-checkbox-mixedmark mc mc-minus_16\"></i>\n", styles: [".kbq-pseudo-checkbox{position:relative;display:inline-
|
|
1492
|
-
}], ctorParameters:
|
|
1606
|
+
}, preserveWhitespaces: false, inputs: ['color'], changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<i class=\"kbq-checkbox-checkmark mc mc-check_16\"></i>\n<i class=\"kbq-checkbox-mixedmark mc mc-minus_16\"></i>\n", styles: [".kbq-pseudo-checkbox{position:relative;display:inline-flex;box-sizing:border-box;align-items:center;justify-content:center;width:var(--kbq-checkbox-size-normal-width, 16px);height:var(--kbq-checkbox-size-normal-width, 16px);border-radius:var(--kbq-checkbox-size-normal-border-radius, 4px);border-width:var(--kbq-checkbox-size-normal-border-width, 1px);border-style:solid;cursor:pointer;vertical-align:middle;flex-shrink:0}.kbq-pseudo-checkbox .kbq-checkbox-checkmark,.kbq-pseudo-checkbox .kbq-checkbox-mixedmark{display:none}.kbq-pseudo-checkbox.kbq-pseudo-checkbox-checked,.kbq-pseudo-checkbox.kbq-pseudo-checkbox-indeterminate{border-color:transparent}.kbq-pseudo-checkbox.kbq-checked .kbq-checkbox-checkmark,.kbq-pseudo-checkbox.kbq-indeterminate .kbq-checkbox-mixedmark{display:inline-block}.kbq-pseudo-checkbox.kbq-disabled{cursor:default}.kbq-pseudo-checkbox.kbq-pseudo-checkbox_big{width:var(--kbq-checkbox-size-big-width, 16px);height:var(--kbq-checkbox-size-big-width, 16px);border-radius:var(--kbq-checkbox-size-big-border-radius, 4px);border-width:var(--kbq-checkbox-size-big-border-width, 1px)}\n"] }]
|
|
1607
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { big: [{
|
|
1493
1608
|
type: Input
|
|
1494
1609
|
}], state: [{
|
|
1495
1610
|
type: Input
|
|
@@ -1707,12 +1822,12 @@ class KbqOption extends KbqOptionBase {
|
|
|
1707
1822
|
getHostElement() {
|
|
1708
1823
|
return this.element.nativeElement;
|
|
1709
1824
|
}
|
|
1710
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1711
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1825
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", 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 }); }
|
|
1826
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.0", 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: [{
|
|
1712
1827
|
provide: KBQ_TITLE_TEXT_REF, useExisting: KbqOption
|
|
1713
|
-
}], viewQueries: [{ propertyName: "textElement", first: true, predicate: ["kbqTitleText"], descendants: true }], exportAs: ["kbqOption"], usesInheritance: true, ngImport: i0, template: "<kbq-pseudo-checkbox\n *ngIf=\"showCheckbox\"\n [state]=\"selected ? 'checked' : 'unchecked'\"\n [disabled]=\"disabled\">\n</kbq-pseudo-checkbox>\n\n<span #kbqTitleText class=\"kbq-option-text\">\n <ng-content></ng-content>\n</span>\n", styles: ["@keyframes kbq-progress{0%{background-position:0 0}to{background-position:29px 0}}.kbq-progress{position:relative}.kbq-progress:after{content:\"\";position:absolute;border-radius:inherit;inset:0;background:linear-gradient(135deg
|
|
1828
|
+
}], viewQueries: [{ propertyName: "textElement", first: true, predicate: ["kbqTitleText"], descendants: true }], exportAs: ["kbqOption"], usesInheritance: true, ngImport: i0, template: "<kbq-pseudo-checkbox\n *ngIf=\"showCheckbox\"\n [state]=\"selected ? 'checked' : 'unchecked'\"\n [disabled]=\"disabled\">\n</kbq-pseudo-checkbox>\n\n<span #kbqTitleText class=\"kbq-option-text\">\n <ng-content></ng-content>\n</span>\n", styles: ["@keyframes kbq-progress{0%{background-position:0 0}to{background-position:29px 0}}.kbq-progress{position:relative}.kbq-progress:after{content:\"\";position:absolute;border-radius:inherit;inset:0;background:linear-gradient(135deg,#0000000a 10px,#ffffff0a 10px 20px,#0000000a 20px 30px,#ffffff0a 31px) repeat;background-size:32px 32px;animation:kbq-progress 1s linear infinite}.kbq-group{display:flex;flex-direction:row}.kbq-group .kbq-group_justified>.kbq-group-item{width:100%}.kbq-group .kbq-group-item+.kbq-group-item{margin-left:calc(-1 * var(--kbq-button-size-border-width, 2px))}.kbq-group>.kbq-group-item:first-child:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.kbq-group>.kbq-group-item:first-child:not(:last-child)>.kbq-form-field__container{border-bottom-right-radius:0;border-top-right-radius:0}.kbq-group>.kbq-group-item:last-child:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.kbq-group>.kbq-group-item:last-child:not(:first-child)>.kbq-form-field__container{border-bottom-left-radius:0;border-top-left-radius:0}.kbq-group>.kbq-group-item:not(:first-child):not(:last-child){border-radius:0}.kbq-group>.kbq-group-item:not(:first-child):not(:last-child)>.kbq-form-field__container{border-radius:0}.kbq-vertical-group{display:flex;flex-direction:column}.kbq-vertical-group>.kbq-group-item:first-child:not(:last-child){border-bottom-right-radius:0;border-bottom-left-radius:0;border-top-right-radius:var(--kbq-button-size-border-radius, 8px)}.kbq-vertical-group>.kbq-group-item:first-child:not(:last-child)>.kbq-form-field__container{border-bottom-right-radius:0;border-bottom-left-radius:0}.kbq-vertical-group>.kbq-group-item:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-left-radius:var(--kbq-button-size-border-radius, 8px)}.kbq-vertical-group>.kbq-group-item:last-child:not(:first-child)>.kbq-form-field__container{border-top-right-radius:0;border-top-left-radius:0}.kbq-vertical-group>.kbq-group-item:not(:first-child):not(:last-child){border-radius:0}.kbq-vertical-group>.kbq-group-item:not(:first-child):not(:last-child)>.kbq-form-field__container{border-radius:0}.kbq-vertical-group .kbq-group-item+.kbq-group-item{margin-top:calc(-1 * var(--kbq-button-size-border-width, 2px))}.kbq-no-select{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.kbq-option{position:relative;display:flex;flex-direction:row;align-items:center;box-sizing:border-box;outline:none;-webkit-tap-highlight-color:transparent;min-height:32px;gap:var(--kbq-list-size-container-content-gap-horizontal, 8px);border-width:var(--kbq-list-size-container-focus-outline-width, 2px);border-style:solid;border-color:transparent;padding:calc(var(--kbq-list-size-container-padding-vertical, 4px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-right, 12px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-vertical, 4px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-left, 12px) - var(--kbq-list-size-container-focus-outline-width, 2px))}.kbq-option .kbq-list-text{display:flex;flex-direction:column;width:100%;box-sizing:border-box;display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-top:var(--kbq-list-size-text-padding-vertical, 4px);padding-bottom:var(--kbq-list-size-text-padding-vertical, 4px)}.kbq-option .kbq-list-text>*{margin:0;padding:0;font-weight:400;font-size:inherit}.kbq-option .kbq-list-text:empty{display:none}.kbq-option .kbq-list-option-caption{padding-top:var(--kbq-list-size-container-content-gap-vertical, 2px)}.kbq-option:not(.kbq-disabled){cursor:pointer}.kbq-option-text{display:flex;flex-direction:column;width:100%;box-sizing:border-box;display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-top:var(--kbq-list-size-text-padding-vertical, 4px);padding-bottom:var(--kbq-list-size-text-padding-vertical, 4px)}.kbq-option-text>*{margin:0;padding:0;font-weight:400;font-size:inherit}.kbq-option-text:empty{display:none}\n"], dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: KbqPseudoCheckbox, selector: "kbq-pseudo-checkbox", inputs: ["color", "big", "state", "disabled"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
1714
1829
|
}
|
|
1715
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1830
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqOption, decorators: [{
|
|
1716
1831
|
type: Component,
|
|
1717
1832
|
args: [{ selector: 'kbq-option', exportAs: 'kbqOption', host: {
|
|
1718
1833
|
'[attr.tabindex]': 'getTabIndex()',
|
|
@@ -1726,15 +1841,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImpor
|
|
|
1726
1841
|
'(keydown)': 'handleKeydown($event)'
|
|
1727
1842
|
}, encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, providers: [{
|
|
1728
1843
|
provide: KBQ_TITLE_TEXT_REF, useExisting: KbqOption
|
|
1729
|
-
}], template: "<kbq-pseudo-checkbox\n *ngIf=\"showCheckbox\"\n [state]=\"selected ? 'checked' : 'unchecked'\"\n [disabled]=\"disabled\">\n</kbq-pseudo-checkbox>\n\n<span #kbqTitleText class=\"kbq-option-text\">\n <ng-content></ng-content>\n</span>\n", styles: ["@keyframes kbq-progress{0%{background-position:0 0}to{background-position:29px 0}}.kbq-progress{position:relative}.kbq-progress:after{content:\"\";position:absolute;border-radius:inherit;inset:0;background:linear-gradient(135deg
|
|
1730
|
-
}], ctorParameters:
|
|
1844
|
+
}], template: "<kbq-pseudo-checkbox\n *ngIf=\"showCheckbox\"\n [state]=\"selected ? 'checked' : 'unchecked'\"\n [disabled]=\"disabled\">\n</kbq-pseudo-checkbox>\n\n<span #kbqTitleText class=\"kbq-option-text\">\n <ng-content></ng-content>\n</span>\n", styles: ["@keyframes kbq-progress{0%{background-position:0 0}to{background-position:29px 0}}.kbq-progress{position:relative}.kbq-progress:after{content:\"\";position:absolute;border-radius:inherit;inset:0;background:linear-gradient(135deg,#0000000a 10px,#ffffff0a 10px 20px,#0000000a 20px 30px,#ffffff0a 31px) repeat;background-size:32px 32px;animation:kbq-progress 1s linear infinite}.kbq-group{display:flex;flex-direction:row}.kbq-group .kbq-group_justified>.kbq-group-item{width:100%}.kbq-group .kbq-group-item+.kbq-group-item{margin-left:calc(-1 * var(--kbq-button-size-border-width, 2px))}.kbq-group>.kbq-group-item:first-child:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.kbq-group>.kbq-group-item:first-child:not(:last-child)>.kbq-form-field__container{border-bottom-right-radius:0;border-top-right-radius:0}.kbq-group>.kbq-group-item:last-child:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.kbq-group>.kbq-group-item:last-child:not(:first-child)>.kbq-form-field__container{border-bottom-left-radius:0;border-top-left-radius:0}.kbq-group>.kbq-group-item:not(:first-child):not(:last-child){border-radius:0}.kbq-group>.kbq-group-item:not(:first-child):not(:last-child)>.kbq-form-field__container{border-radius:0}.kbq-vertical-group{display:flex;flex-direction:column}.kbq-vertical-group>.kbq-group-item:first-child:not(:last-child){border-bottom-right-radius:0;border-bottom-left-radius:0;border-top-right-radius:var(--kbq-button-size-border-radius, 8px)}.kbq-vertical-group>.kbq-group-item:first-child:not(:last-child)>.kbq-form-field__container{border-bottom-right-radius:0;border-bottom-left-radius:0}.kbq-vertical-group>.kbq-group-item:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-left-radius:var(--kbq-button-size-border-radius, 8px)}.kbq-vertical-group>.kbq-group-item:last-child:not(:first-child)>.kbq-form-field__container{border-top-right-radius:0;border-top-left-radius:0}.kbq-vertical-group>.kbq-group-item:not(:first-child):not(:last-child){border-radius:0}.kbq-vertical-group>.kbq-group-item:not(:first-child):not(:last-child)>.kbq-form-field__container{border-radius:0}.kbq-vertical-group .kbq-group-item+.kbq-group-item{margin-top:calc(-1 * var(--kbq-button-size-border-width, 2px))}.kbq-no-select{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.kbq-option{position:relative;display:flex;flex-direction:row;align-items:center;box-sizing:border-box;outline:none;-webkit-tap-highlight-color:transparent;min-height:32px;gap:var(--kbq-list-size-container-content-gap-horizontal, 8px);border-width:var(--kbq-list-size-container-focus-outline-width, 2px);border-style:solid;border-color:transparent;padding:calc(var(--kbq-list-size-container-padding-vertical, 4px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-right, 12px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-vertical, 4px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-left, 12px) - var(--kbq-list-size-container-focus-outline-width, 2px))}.kbq-option .kbq-list-text{display:flex;flex-direction:column;width:100%;box-sizing:border-box;display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-top:var(--kbq-list-size-text-padding-vertical, 4px);padding-bottom:var(--kbq-list-size-text-padding-vertical, 4px)}.kbq-option .kbq-list-text>*{margin:0;padding:0;font-weight:400;font-size:inherit}.kbq-option .kbq-list-text:empty{display:none}.kbq-option .kbq-list-option-caption{padding-top:var(--kbq-list-size-container-content-gap-vertical, 2px)}.kbq-option:not(.kbq-disabled){cursor:pointer}.kbq-option-text{display:flex;flex-direction:column;width:100%;box-sizing:border-box;display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-top:var(--kbq-list-size-text-padding-vertical, 4px);padding-bottom:var(--kbq-list-size-text-padding-vertical, 4px)}.kbq-option-text>*{margin:0;padding:0;font-weight:400;font-size:inherit}.kbq-option-text:empty{display:none}\n"] }]
|
|
1845
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: undefined, decorators: [{
|
|
1731
1846
|
type: Optional
|
|
1732
1847
|
}, {
|
|
1733
1848
|
type: Inject,
|
|
1734
1849
|
args: [KBQ_OPTION_PARENT_COMPONENT]
|
|
1735
1850
|
}] }, { type: KbqOptgroup, decorators: [{
|
|
1736
1851
|
type: Optional
|
|
1737
|
-
}] }]
|
|
1852
|
+
}] }], propDecorators: { textElement: [{
|
|
1738
1853
|
type: ViewChild,
|
|
1739
1854
|
args: ['kbqTitleText', { static: false }]
|
|
1740
1855
|
}], value: [{
|
|
@@ -1866,15 +1981,15 @@ class KbqOptionActionComponent extends KbqOptionActionMixinBase {
|
|
|
1866
1981
|
this.option.tooltipTrigger.disabled = true;
|
|
1867
1982
|
setTimeout(() => this.option.tooltipTrigger.disabled = false);
|
|
1868
1983
|
}
|
|
1869
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1870
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1984
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqOptionActionComponent, deps: [{ token: i0.ElementRef }, { token: i1$1.FocusMonitor }, { token: KBQ_OPTION_ACTION_PARENT }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1985
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.0", type: KbqOptionActionComponent, selector: "kbq-option-action", inputs: { disabled: "disabled" }, host: { listeners: { "focus": "onFocus($event)", "blur": "onBlur()", "click": "onClick($event)", "keydown": "onKeyDown($event)" }, properties: { "class.kbq-expanded": "false", "class.kbq-disabled": "disabled", "attr.disabled": "disabled || null", "attr.tabIndex": "-1" }, classAttribute: "kbq-option-action" }, queries: [{ propertyName: "customIcon", first: true, predicate: ["customIcon"], descendants: true }], exportAs: ["kbqOptionAction"], usesInheritance: true, ngImport: i0, template: `
|
|
1871
1986
|
<ng-container [ngSwitch]="!!customIcon">
|
|
1872
1987
|
<i class="mc kbq-icon mc-ellipsis_16" *ngSwitchCase="false"></i>
|
|
1873
1988
|
<ng-content select="[kbq-icon]" *ngSwitchCase="true"></ng-content>
|
|
1874
1989
|
</ng-container>
|
|
1875
|
-
`, isInline: true, styles: [".kbq-option-action{box-sizing:border-box;position:relative;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-right:-2px;width:24px;height:24px;cursor:pointer;outline:none;border:2px solid transparent;background:transparent}.kbq-option-action
|
|
1990
|
+
`, isInline: true, styles: [".kbq-option-action{box-sizing:border-box;position:relative;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-right:-2px;width:24px;height:24px;cursor:pointer;outline:none;border:2px solid transparent;background:transparent}.kbq-option-action.kbq-disabled{cursor:default}\n"], dependencies: [{ kind: "directive", type: i2.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i2.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
1876
1991
|
}
|
|
1877
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1992
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqOptionActionComponent, decorators: [{
|
|
1878
1993
|
type: Component,
|
|
1879
1994
|
args: [{ selector: 'kbq-option-action', exportAs: 'kbqOptionAction', template: `
|
|
1880
1995
|
<ng-container [ngSwitch]="!!customIcon">
|
|
@@ -1884,17 +1999,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImpor
|
|
|
1884
1999
|
`, host: {
|
|
1885
2000
|
class: 'kbq-option-action',
|
|
1886
2001
|
'[class.kbq-expanded]': 'false',
|
|
2002
|
+
'[class.kbq-disabled]': 'disabled',
|
|
1887
2003
|
'[attr.disabled]': 'disabled || null',
|
|
1888
2004
|
'[attr.tabIndex]': '-1',
|
|
1889
2005
|
'(focus)': 'onFocus($event)',
|
|
1890
2006
|
'(blur)': 'onBlur()',
|
|
1891
2007
|
'(click)': 'onClick($event)',
|
|
1892
2008
|
'(keydown)': 'onKeyDown($event)'
|
|
1893
|
-
}, inputs: ['disabled'], encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, styles: [".kbq-option-action{box-sizing:border-box;position:relative;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-right:-2px;width:24px;height:24px;cursor:pointer;outline:none;border:2px solid transparent;background:transparent}.kbq-option-action
|
|
1894
|
-
}], ctorParameters:
|
|
2009
|
+
}, inputs: ['disabled'], encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, styles: [".kbq-option-action{box-sizing:border-box;position:relative;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-right:-2px;width:24px;height:24px;cursor:pointer;outline:none;border:2px solid transparent;background:transparent}.kbq-option-action.kbq-disabled{cursor:default}\n"] }]
|
|
2010
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1$1.FocusMonitor }, { type: undefined, decorators: [{
|
|
1895
2011
|
type: Inject,
|
|
1896
2012
|
args: [KBQ_OPTION_ACTION_PARENT]
|
|
1897
|
-
}] }]
|
|
2013
|
+
}] }], propDecorators: { customIcon: [{
|
|
1898
2014
|
type: ContentChild,
|
|
1899
2015
|
args: ['customIcon']
|
|
1900
2016
|
}] } });
|
|
@@ -1906,11 +2022,11 @@ var MultipleMode;
|
|
|
1906
2022
|
})(MultipleMode || (MultipleMode = {}));
|
|
1907
2023
|
|
|
1908
2024
|
class KbqPseudoCheckboxModule {
|
|
1909
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1910
|
-
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
1911
|
-
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
2025
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqPseudoCheckboxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2026
|
+
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: KbqPseudoCheckboxModule, declarations: [KbqPseudoCheckbox], imports: [CommonModule], exports: [KbqPseudoCheckbox] }); }
|
|
2027
|
+
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqPseudoCheckboxModule, imports: [CommonModule] }); }
|
|
1912
2028
|
}
|
|
1913
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2029
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqPseudoCheckboxModule, decorators: [{
|
|
1914
2030
|
type: NgModule,
|
|
1915
2031
|
args: [{
|
|
1916
2032
|
imports: [CommonModule],
|
|
@@ -1920,11 +2036,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImpor
|
|
|
1920
2036
|
}] });
|
|
1921
2037
|
|
|
1922
2038
|
class KbqOptionModule {
|
|
1923
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1924
|
-
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
1925
|
-
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
2039
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqOptionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2040
|
+
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: KbqOptionModule, declarations: [KbqOption, KbqOptgroup, KbqOptionActionComponent], imports: [CommonModule, KbqPseudoCheckboxModule], exports: [KbqOption, KbqOptgroup, KbqOptionActionComponent] }); }
|
|
2041
|
+
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqOptionModule, imports: [CommonModule, KbqPseudoCheckboxModule] }); }
|
|
1926
2042
|
}
|
|
1927
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2043
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqOptionModule, decorators: [{
|
|
1928
2044
|
type: NgModule,
|
|
1929
2045
|
args: [{
|
|
1930
2046
|
imports: [CommonModule, KbqPseudoCheckboxModule],
|
|
@@ -2253,6 +2369,13 @@ class KbqPopUp {
|
|
|
2253
2369
|
this.markForCheck();
|
|
2254
2370
|
}, delay);
|
|
2255
2371
|
}
|
|
2372
|
+
/**
|
|
2373
|
+
* Hides the popup after a specified delay.
|
|
2374
|
+
*
|
|
2375
|
+
* The hide timeout triggers the hiding of the popup by updating visibility and emitting relevant events.
|
|
2376
|
+
* Also, it marks for check to ensure proper change detection, especially for parent components with OnPush strategy.
|
|
2377
|
+
* @param delay - The delay in milliseconds before hiding the popup.
|
|
2378
|
+
*/
|
|
2256
2379
|
hide(delay) {
|
|
2257
2380
|
if (this.showTimeoutId) {
|
|
2258
2381
|
clearTimeout(this.showTimeoutId);
|
|
@@ -2303,12 +2426,12 @@ class KbqPopUp {
|
|
|
2303
2426
|
this.hide(0);
|
|
2304
2427
|
}
|
|
2305
2428
|
}
|
|
2306
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2307
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2429
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqPopUp, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2430
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.0", type: KbqPopUp, ngImport: i0 }); }
|
|
2308
2431
|
}
|
|
2309
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2432
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqPopUp, decorators: [{
|
|
2310
2433
|
type: Directive
|
|
2311
|
-
}], ctorParameters:
|
|
2434
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }] });
|
|
2312
2435
|
|
|
2313
2436
|
// tslint:disable-next-line:naming-convention
|
|
2314
2437
|
class KbqPopUpTrigger {
|
|
@@ -2437,7 +2560,7 @@ class KbqPopUpTrigger {
|
|
|
2437
2560
|
}
|
|
2438
2561
|
hide(delay = this.leaveDelay) {
|
|
2439
2562
|
if (this.instance) {
|
|
2440
|
-
this.instance.hide(delay);
|
|
2563
|
+
this.ngZone.run(() => this.instance.hide(delay));
|
|
2441
2564
|
}
|
|
2442
2565
|
}
|
|
2443
2566
|
/** Create the overlay config and position strategy */
|
|
@@ -2546,12 +2669,12 @@ class KbqPopUpTrigger {
|
|
|
2546
2669
|
this.hide();
|
|
2547
2670
|
});
|
|
2548
2671
|
}
|
|
2549
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2550
|
-
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2672
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqPopUpTrigger, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2673
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.0", type: KbqPopUpTrigger, ngImport: i0 }); }
|
|
2551
2674
|
}
|
|
2552
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2675
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqPopUpTrigger, decorators: [{
|
|
2553
2676
|
type: Directive
|
|
2554
|
-
}], ctorParameters:
|
|
2677
|
+
}], ctorParameters: () => [{ type: i1$2.Overlay }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i1$2.ScrollDispatcher }, { type: i0.ViewContainerRef }, { type: undefined }, { type: i2$1.Directionality }] });
|
|
2555
2678
|
|
|
2556
2679
|
const selectEvents = 'selectEvents';
|
|
2557
2680
|
|
|
@@ -2638,18 +2761,18 @@ class KbqMeasureScrollbarService {
|
|
|
2638
2761
|
this.document.body.removeChild(scrollDiv);
|
|
2639
2762
|
this._scrollBarWidth = width;
|
|
2640
2763
|
}
|
|
2641
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2642
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2764
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqMeasureScrollbarService, deps: [{ token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2765
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqMeasureScrollbarService, providedIn: 'root' }); }
|
|
2643
2766
|
}
|
|
2644
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2767
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqMeasureScrollbarService, decorators: [{
|
|
2645
2768
|
type: Injectable,
|
|
2646
2769
|
args: [{
|
|
2647
2770
|
providedIn: 'root'
|
|
2648
2771
|
}]
|
|
2649
|
-
}], ctorParameters:
|
|
2772
|
+
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
2650
2773
|
type: Inject,
|
|
2651
2774
|
args: [DOCUMENT]
|
|
2652
|
-
}] }]
|
|
2775
|
+
}] }] });
|
|
2653
2776
|
|
|
2654
2777
|
const KbqDefaultThemes = [
|
|
2655
2778
|
{
|
|
@@ -2700,13 +2823,13 @@ class ThemeService {
|
|
|
2700
2823
|
getTheme() {
|
|
2701
2824
|
return this.current.value;
|
|
2702
2825
|
}
|
|
2703
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2704
|
-
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2826
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: ThemeService, deps: [{ token: i0.RendererFactory2 }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2827
|
+
/** @nocollapse */ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: ThemeService, providedIn: 'root' }); }
|
|
2705
2828
|
}
|
|
2706
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2829
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: ThemeService, decorators: [{
|
|
2707
2830
|
type: Injectable,
|
|
2708
2831
|
args: [{ providedIn: 'root' }]
|
|
2709
|
-
}], ctorParameters:
|
|
2832
|
+
}], ctorParameters: () => [{ type: i0.RendererFactory2 }] });
|
|
2710
2833
|
|
|
2711
2834
|
function isBoolean(val) { return typeof val === 'boolean'; }
|
|
2712
2835
|
function toBoolean(value) {
|
|
@@ -2789,21 +2912,21 @@ class KbqDataSizePipe {
|
|
|
2789
2912
|
const { value, unit } = formatDataSize(source, measurementSystem, precision);
|
|
2790
2913
|
return `${value} ${unit}`;
|
|
2791
2914
|
}
|
|
2792
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2793
|
-
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
2915
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqDataSizePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
2916
|
+
/** @nocollapse */ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: KbqDataSizePipe, name: "kbqDataSize" }); }
|
|
2794
2917
|
}
|
|
2795
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2918
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqDataSizePipe, decorators: [{
|
|
2796
2919
|
type: Pipe,
|
|
2797
2920
|
args: [{
|
|
2798
|
-
name: '
|
|
2921
|
+
name: 'kbqDataSize'
|
|
2799
2922
|
}]
|
|
2800
2923
|
}] });
|
|
2801
2924
|
class KbqDataSizeModule {
|
|
2802
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2803
|
-
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
2804
|
-
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
2925
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqDataSizeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2926
|
+
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: KbqDataSizeModule, declarations: [KbqDataSizePipe], exports: [KbqDataSizePipe] }); }
|
|
2927
|
+
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqDataSizeModule }); }
|
|
2805
2928
|
}
|
|
2806
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2929
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqDataSizeModule, decorators: [{
|
|
2807
2930
|
type: NgModule,
|
|
2808
2931
|
args: [{
|
|
2809
2932
|
imports: [],
|
|
@@ -2816,11 +2939,11 @@ const validationTooltipShowDelay = 10;
|
|
|
2816
2939
|
const validationTooltipHideDelay = 3000;
|
|
2817
2940
|
const KBQ_VALIDATION = new InjectionToken('KbqUseValidation', { factory: () => ({ useValidation: true }) });
|
|
2818
2941
|
|
|
2819
|
-
const VERSION = new Version('16.0.0-beta.
|
|
2942
|
+
const VERSION = new Version('16.0.0-beta.14+sha-675bf518');
|
|
2820
2943
|
|
|
2821
2944
|
/**
|
|
2822
2945
|
* Generated bundle index. Do not edit.
|
|
2823
2946
|
*/
|
|
2824
2947
|
|
|
2825
|
-
export { AbsoluteDateFormatterPipe, AbsoluteDateShortFormatterPipe, AbsoluteDateTimeFormatterPipe, AbsoluteShortDateTimeFormatterPipe, AnimationCurves, BOTTOM_LEFT_POSITION_PRIORITY, BOTTOM_POSITION_PRIORITY, BOTTOM_RIGHT_POSITION_PRIORITY, DateAdapter, DateFormatter, EXTENDED_OVERLAY_POSITIONS, ErrorStateMatcher, KBQ_CUSTOM_SCROLL_STRATEGY_PROVIDER, KBQ_DATE_FORMATS, KBQ_DATE_LOCALE, KBQ_DATE_LOCALE_FACTORY, KBQ_DEFAULT_LOCALE_DATA_FACTORY, KBQ_DEFAULT_LOCALE_ID, KBQ_FORM_FIELD_REF, KBQ_LABEL_GLOBAL_OPTIONS, KBQ_LOCALE_DATA, KBQ_LOCALE_ID, KBQ_LOCALE_SERVICE, KBQ_NUMBER_FORMATTER_DEFAULT_OPTIONS, KBQ_NUMBER_FORMATTER_OPTIONS, KBQ_OPTION_ACTION_PARENT, KBQ_OPTION_PARENT_COMPONENT, KBQ_SANITY_CHECKS, KBQ_SELECT_SCROLL_STRATEGY, KBQ_SELECT_SCROLL_STRATEGY_PROVIDER, KBQ_TITLE_TEXT_REF, KBQ_VALIDATION, KbqCommonModule, KbqComponentColors, KbqDataSizeModule, 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, KbqTableNumberPipe, 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, PopUpPlacements, PopUpSizes, PopUpTriggers, PopUpVisibility, RIGHT_BOTTOM_POSITION_PRIORITY, RIGHT_POSITION_PRIORITY, RIGHT_TOP_POSITION_PRIORITY, RangeDateFormatterPipe, RangeDateTimeFormatterPipe, RangeMiddleDateTimeFormatterPipe, RangeShortDateFormatterPipe, RangeShortDateTimeFormatterPipe, RelativeDateFormatterPipe, RelativeDateTimeFormatterPipe, RelativeShortDateFormatterPipe, RelativeShortDateTimeFormatterPipe, SELECT_PANEL_INDENT_PADDING_X, SELECT_PANEL_MAX_HEIGHT, SELECT_PANEL_PADDING_X, SELECT_PANEL_VIEWPORT_PADDING, ShowOnDirtyErrorStateMatcher, TOP_LEFT_POSITION_PRIORITY, TOP_POSITION_PRIORITY, TOP_RIGHT_POSITION_PRIORITY, ThemePalette, ThemeService, VERSION, countGroupLabelsBeforeOption, escapeRegExp, fadeAnimation, formatDataSize, getHumanizedBytes, getKbqSelectDynamicMultipleError, getKbqSelectNonArrayValueError, getKbqSelectNonFunctionValueError, getOptionScrollPosition, isBoolean, isWithin, kbqSelectAnimations, kbqSelectScrollStrategyProviderFactory, mixinColor, mixinDisabled, mixinErrorState, mixinTabIndex, selectEvents, sizeUnitsConfig, toBoolean, validationTooltipHideDelay, validationTooltipShowDelay };
|
|
2948
|
+
export { AbsoluteDateFormatterPipe, AbsoluteDateShortFormatterPipe, AbsoluteDateTimeFormatterPipe, AbsoluteShortDateTimeFormatterPipe, AnimationCurves, BOTTOM_LEFT_POSITION_PRIORITY, BOTTOM_POSITION_PRIORITY, BOTTOM_RIGHT_POSITION_PRIORITY, DateAdapter, DateFormatter, EXTENDED_OVERLAY_POSITIONS, ErrorStateMatcher, KBQ_CUSTOM_SCROLL_STRATEGY_PROVIDER, KBQ_DATE_FORMATS, KBQ_DATE_LOCALE, KBQ_DATE_LOCALE_FACTORY, KBQ_DEFAULT_LOCALE_DATA_FACTORY, KBQ_DEFAULT_LOCALE_ID, KBQ_FORM_FIELD_REF, KBQ_LABEL_GLOBAL_OPTIONS, KBQ_LOCALE_DATA, KBQ_LOCALE_ID, KBQ_LOCALE_SERVICE, KBQ_NUMBER_FORMATTER_DEFAULT_OPTIONS, KBQ_NUMBER_FORMATTER_OPTIONS, KBQ_OPTION_ACTION_PARENT, KBQ_OPTION_PARENT_COMPONENT, KBQ_PARENT_ANIMATION_COMPONENT, KBQ_SANITY_CHECKS, KBQ_SELECT_SCROLL_STRATEGY, KBQ_SELECT_SCROLL_STRATEGY_PROVIDER, KBQ_TITLE_TEXT_REF, KBQ_VALIDATION, KbqCommonModule, KbqComponentColors, KbqDataSizeModule, 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, KbqTableNumberPipe, 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, PopUpPlacements, PopUpSizes, PopUpTriggers, PopUpVisibility, RIGHT_BOTTOM_POSITION_PRIORITY, RIGHT_POSITION_PRIORITY, RIGHT_TOP_POSITION_PRIORITY, RangeDateFormatterPipe, RangeDateTimeFormatterPipe, RangeMiddleDateTimeFormatterPipe, RangeShortDateFormatterPipe, RangeShortDateTimeFormatterPipe, RelativeDateFormatterPipe, RelativeDateTimeFormatterPipe, RelativeShortDateFormatterPipe, RelativeShortDateTimeFormatterPipe, SELECT_PANEL_INDENT_PADDING_X, SELECT_PANEL_MAX_HEIGHT, SELECT_PANEL_PADDING_X, SELECT_PANEL_VIEWPORT_PADDING, ShowOnDirtyErrorStateMatcher, TOP_LEFT_POSITION_PRIORITY, TOP_POSITION_PRIORITY, TOP_RIGHT_POSITION_PRIORITY, ThemePalette, ThemeService, VERSION, countGroupLabelsBeforeOption, enUSFormattersData, enUSLocaleData, esLAFormattersData, esLALocaleData, escapeRegExp, faIRFormattersData, faIRLocaleData, fadeAnimation, formatDataSize, getHumanizedBytes, getKbqSelectDynamicMultipleError, getKbqSelectNonArrayValueError, getKbqSelectNonFunctionValueError, getOptionScrollPosition, isBoolean, isWithin, kbqSelectAnimations, kbqSelectScrollStrategyProviderFactory, mixinColor, mixinDisabled, mixinErrorState, mixinTabIndex, ptBRFormattersData, ptBRLocaleData, ruRUFormattersData, ruRULocaleData, selectEvents, sizeUnitsConfig, toBoolean, validationTooltipHideDelay, validationTooltipShowDelay, zhCNFormattersData, zhCNLocaleData };
|
|
2826
2949
|
//# sourceMappingURL=koobiq-components-core.mjs.map
|