@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,5 +1,7 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
1
2
|
export { KbqCommonModule, KBQ_SANITY_CHECKS } from './common-module';
|
|
2
3
|
export { CanDisable, CanDisableCtor, mixinDisabled } from './disabled';
|
|
3
4
|
export { CanColor, CanColorCtor, mixinColor, ThemePalette, KbqComponentColors } from './color';
|
|
4
5
|
export { HasTabIndex, HasTabIndexCtor, mixinTabIndex } from './tabindex';
|
|
5
6
|
export { CanUpdateErrorStateCtor, CanUpdateErrorState, mixinErrorState } from './error-state';
|
|
7
|
+
export declare const KBQ_PARENT_ANIMATION_COMPONENT: InjectionToken<any>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { InjectionToken } from '@angular/core';
|
|
2
|
-
import { DateAdapter as BaseDateAdapter } from '@
|
|
2
|
+
import { DateAdapter as BaseDateAdapter } from '@koobiq/date-adapter';
|
|
3
3
|
import { BehaviorSubject, Observable } from 'rxjs';
|
|
4
4
|
/** InjectionToken for datepicker that can be used to override default locale code. */
|
|
5
5
|
export declare const KBQ_DATE_LOCALE: InjectionToken<string>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { InjectionToken } from '@angular/core';
|
|
2
|
-
import { DateFormats } from '@
|
|
2
|
+
import { DateFormats } from '@koobiq/date-adapter';
|
|
3
3
|
export declare const KBQ_DATE_FORMATS: InjectionToken<DateFormats>;
|
|
4
4
|
export type KbqDateFormats = DateFormats;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DateAdapter } from '@
|
|
2
|
-
import { DateFormatter as BaseDateFormatter } from '@
|
|
1
|
+
import { DateAdapter } from '@koobiq/date-adapter';
|
|
2
|
+
import { DateFormatter as BaseDateFormatter } from '@koobiq/date-formatter';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class DateFormatter<D> extends BaseDateFormatter<D> {
|
|
5
5
|
readonly adapter: DateAdapter<D>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import { DateTimeOptions } from '@
|
|
2
|
+
import { DateTimeOptions } from '@koobiq/date-formatter';
|
|
3
3
|
import { DateAdapter } from '../../datetime';
|
|
4
4
|
import { DateFormatter } from './formatter';
|
|
5
5
|
import * as i0 from "@angular/core";
|
package/core/locales/en-US.d.ts
CHANGED
|
@@ -1,28 +1,31 @@
|
|
|
1
1
|
export declare const enUSLocaleData: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
select: {
|
|
3
|
+
hiddenItemsText: string;
|
|
4
|
+
};
|
|
5
|
+
datepicker: {
|
|
6
|
+
placeholder: string;
|
|
7
|
+
dateInput: string;
|
|
8
|
+
};
|
|
9
|
+
timepicker: {
|
|
10
|
+
placeholder: {
|
|
11
|
+
full: string;
|
|
12
|
+
short: string;
|
|
9
13
|
};
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
thousand: string;
|
|
16
|
-
million: string;
|
|
17
|
-
billion: string;
|
|
18
|
-
trillion: string;
|
|
19
|
-
};
|
|
20
|
-
};
|
|
14
|
+
};
|
|
15
|
+
fileUpload: {
|
|
16
|
+
single: {
|
|
17
|
+
captionText: string;
|
|
18
|
+
browseLink: string;
|
|
21
19
|
};
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
20
|
+
multiple: {
|
|
21
|
+
captionText: string;
|
|
22
|
+
captionTextWhenSelected: string;
|
|
23
|
+
captionTextForCompactSize: string;
|
|
24
|
+
browseLink: string;
|
|
25
|
+
title: string;
|
|
26
|
+
gridHeaders: {
|
|
27
|
+
file: string;
|
|
28
|
+
size: string;
|
|
26
29
|
};
|
|
27
30
|
};
|
|
28
31
|
};
|
package/core/locales/es-LA.d.ts
CHANGED
|
@@ -1,33 +1,30 @@
|
|
|
1
1
|
export declare const esLALocaleData: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
short: string;
|
|
13
|
-
};
|
|
2
|
+
select: {
|
|
3
|
+
hiddenItemsText: string;
|
|
4
|
+
};
|
|
5
|
+
datepicker: {
|
|
6
|
+
placeholder: string;
|
|
7
|
+
};
|
|
8
|
+
timepicker: {
|
|
9
|
+
placeholder: {
|
|
10
|
+
full: string;
|
|
11
|
+
short: string;
|
|
14
12
|
};
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
thousand: string;
|
|
21
|
-
million: string;
|
|
22
|
-
billion: string;
|
|
23
|
-
trillion: string;
|
|
24
|
-
};
|
|
25
|
-
};
|
|
13
|
+
};
|
|
14
|
+
fileUpload: {
|
|
15
|
+
single: {
|
|
16
|
+
captionText: string;
|
|
17
|
+
browseLink: string;
|
|
26
18
|
};
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
19
|
+
multiple: {
|
|
20
|
+
captionText: string;
|
|
21
|
+
captionTextWhenSelected: string;
|
|
22
|
+
captionTextForCompactSize: string;
|
|
23
|
+
browseLink: string;
|
|
24
|
+
title: string;
|
|
25
|
+
gridHeaders: {
|
|
26
|
+
file: string;
|
|
27
|
+
size: string;
|
|
31
28
|
};
|
|
32
29
|
};
|
|
33
30
|
};
|
package/core/locales/fa-IR.d.ts
CHANGED
|
@@ -1,34 +1,30 @@
|
|
|
1
1
|
export declare const faIRLocaleData: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
short: string;
|
|
13
|
-
};
|
|
2
|
+
select: {
|
|
3
|
+
hiddenItemsText: string;
|
|
4
|
+
};
|
|
5
|
+
datepicker: {
|
|
6
|
+
placeholder: string;
|
|
7
|
+
};
|
|
8
|
+
timepicker: {
|
|
9
|
+
placeholder: {
|
|
10
|
+
full: string;
|
|
11
|
+
short: string;
|
|
14
12
|
};
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
thousand: string;
|
|
21
|
-
million: string;
|
|
22
|
-
billion: string;
|
|
23
|
-
trillion: string;
|
|
24
|
-
rtl: boolean;
|
|
25
|
-
};
|
|
26
|
-
};
|
|
13
|
+
};
|
|
14
|
+
fileUpload: {
|
|
15
|
+
single: {
|
|
16
|
+
captionText: string;
|
|
17
|
+
browseLink: string;
|
|
27
18
|
};
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
19
|
+
multiple: {
|
|
20
|
+
captionText: string;
|
|
21
|
+
captionTextWhenSelected: string;
|
|
22
|
+
captionTextForCompactSize: string;
|
|
23
|
+
browseLink: string;
|
|
24
|
+
title: string;
|
|
25
|
+
gridHeaders: {
|
|
26
|
+
file: string;
|
|
27
|
+
size: string;
|
|
32
28
|
};
|
|
33
29
|
};
|
|
34
30
|
};
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
export declare const enUSFormattersData: {
|
|
2
|
+
formatters: {
|
|
3
|
+
number: {
|
|
4
|
+
rounding: {
|
|
5
|
+
separator: string;
|
|
6
|
+
groupSeparator: string;
|
|
7
|
+
thousand: string;
|
|
8
|
+
million: string;
|
|
9
|
+
billion: string;
|
|
10
|
+
trillion: string;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
input: {
|
|
15
|
+
number: {
|
|
16
|
+
groupSeparator: string[];
|
|
17
|
+
fractionSeparator: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
export declare const esLAFormattersData: {
|
|
22
|
+
formatters: {
|
|
23
|
+
number: {
|
|
24
|
+
rounding: {
|
|
25
|
+
separator: string;
|
|
26
|
+
groupSeparator: string;
|
|
27
|
+
thousand: string;
|
|
28
|
+
million: string;
|
|
29
|
+
billion: string;
|
|
30
|
+
trillion: string;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
input: {
|
|
35
|
+
number: {
|
|
36
|
+
groupSeparator: string[];
|
|
37
|
+
fractionSeparator: string;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
export declare const faIRFormattersData: {
|
|
42
|
+
formatters: {
|
|
43
|
+
number: {
|
|
44
|
+
rounding: {
|
|
45
|
+
separator: string;
|
|
46
|
+
groupSeparator: string;
|
|
47
|
+
thousand: string;
|
|
48
|
+
million: string;
|
|
49
|
+
billion: string;
|
|
50
|
+
trillion: string;
|
|
51
|
+
rtl: boolean;
|
|
52
|
+
};
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
input: {
|
|
56
|
+
number: {
|
|
57
|
+
groupSeparator: string[];
|
|
58
|
+
fractionSeparator: string;
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
export declare const ptBRFormattersData: {
|
|
63
|
+
formatters: {
|
|
64
|
+
number: {
|
|
65
|
+
rounding: {
|
|
66
|
+
separator: string;
|
|
67
|
+
groupSeparator: string;
|
|
68
|
+
thousand: string;
|
|
69
|
+
million: string;
|
|
70
|
+
billion: string;
|
|
71
|
+
trillion: string;
|
|
72
|
+
};
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
input: {
|
|
76
|
+
number: {
|
|
77
|
+
groupSeparator: string[];
|
|
78
|
+
fractionSeparator: string;
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
export declare const ruRUFormattersData: {
|
|
83
|
+
formatters: {
|
|
84
|
+
number: {
|
|
85
|
+
rounding: {
|
|
86
|
+
separator: string;
|
|
87
|
+
groupSeparator: string;
|
|
88
|
+
thousand: string;
|
|
89
|
+
million: string;
|
|
90
|
+
billion: string;
|
|
91
|
+
trillion: string;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
input: {
|
|
96
|
+
number: {
|
|
97
|
+
groupSeparator: string[];
|
|
98
|
+
fractionSeparator: string;
|
|
99
|
+
startFormattingFrom: number;
|
|
100
|
+
};
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
export declare const zhCNFormattersData: {
|
|
104
|
+
formatters: {
|
|
105
|
+
number: {
|
|
106
|
+
rounding: {
|
|
107
|
+
separator: string;
|
|
108
|
+
groupSeparator: string;
|
|
109
|
+
tenThousand: string;
|
|
110
|
+
oneHundredMillions: string;
|
|
111
|
+
trillion: string;
|
|
112
|
+
};
|
|
113
|
+
};
|
|
114
|
+
};
|
|
115
|
+
input: {
|
|
116
|
+
number: {
|
|
117
|
+
groupSeparator: string[];
|
|
118
|
+
fractionSeparator: string;
|
|
119
|
+
};
|
|
120
|
+
};
|
|
121
|
+
};
|
package/core/locales/index.d.ts
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
export * from './en-US';
|
|
2
|
+
export * from './es-LA';
|
|
3
|
+
export * from './fa-IR';
|
|
4
|
+
export * from './pt-BR';
|
|
5
|
+
export * from './ru-RU';
|
|
6
|
+
export * from './zh-CN';
|
|
2
7
|
export * from './locale-service';
|
|
3
8
|
export * from './locale-service.module';
|
|
4
|
-
export
|
|
9
|
+
export * from './formatters';
|
|
@@ -4,12 +4,35 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
export declare const KBQ_LOCALE_ID: InjectionToken<string>;
|
|
5
5
|
export declare const KBQ_DEFAULT_LOCALE_ID = "ru-RU";
|
|
6
6
|
export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
|
|
7
|
-
|
|
7
|
+
items: {
|
|
8
|
+
id: string;
|
|
9
|
+
name: string;
|
|
10
|
+
}[];
|
|
11
|
+
'en-US': {
|
|
12
|
+
formatters: {
|
|
13
|
+
number: {
|
|
14
|
+
rounding: {
|
|
15
|
+
separator: string;
|
|
16
|
+
groupSeparator: string;
|
|
17
|
+
thousand: string;
|
|
18
|
+
million: string;
|
|
19
|
+
billion: string;
|
|
20
|
+
trillion: string;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
input: {
|
|
25
|
+
number: {
|
|
26
|
+
groupSeparator: string[];
|
|
27
|
+
fractionSeparator: string;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
8
30
|
select: {
|
|
9
31
|
hiddenItemsText: string;
|
|
10
32
|
};
|
|
11
33
|
datepicker: {
|
|
12
34
|
placeholder: string;
|
|
35
|
+
dateInput: string;
|
|
13
36
|
};
|
|
14
37
|
timepicker: {
|
|
15
38
|
placeholder: {
|
|
@@ -17,6 +40,25 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
|
|
|
17
40
|
short: string;
|
|
18
41
|
};
|
|
19
42
|
};
|
|
43
|
+
fileUpload: {
|
|
44
|
+
single: {
|
|
45
|
+
captionText: string;
|
|
46
|
+
browseLink: string;
|
|
47
|
+
};
|
|
48
|
+
multiple: {
|
|
49
|
+
captionText: string;
|
|
50
|
+
captionTextWhenSelected: string;
|
|
51
|
+
captionTextForCompactSize: string;
|
|
52
|
+
browseLink: string;
|
|
53
|
+
title: string;
|
|
54
|
+
gridHeaders: {
|
|
55
|
+
file: string;
|
|
56
|
+
size: string;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
'zh-CN': {
|
|
20
62
|
formatters: {
|
|
21
63
|
number: {
|
|
22
64
|
rounding: {
|
|
@@ -34,8 +76,6 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
|
|
|
34
76
|
fractionSeparator: string;
|
|
35
77
|
};
|
|
36
78
|
};
|
|
37
|
-
};
|
|
38
|
-
'pt-BR': {
|
|
39
79
|
select: {
|
|
40
80
|
hiddenItemsText: string;
|
|
41
81
|
};
|
|
@@ -48,6 +88,25 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
|
|
|
48
88
|
short: string;
|
|
49
89
|
};
|
|
50
90
|
};
|
|
91
|
+
fileUpload: {
|
|
92
|
+
single: {
|
|
93
|
+
captionText: string;
|
|
94
|
+
browseLink: string;
|
|
95
|
+
};
|
|
96
|
+
multiple: {
|
|
97
|
+
captionText: string;
|
|
98
|
+
captionTextWhenSelected: string;
|
|
99
|
+
captionTextForCompactSize: string;
|
|
100
|
+
browseLink: string;
|
|
101
|
+
title: string;
|
|
102
|
+
gridHeaders: {
|
|
103
|
+
file: string;
|
|
104
|
+
size: string;
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
'es-LA': {
|
|
51
110
|
formatters: {
|
|
52
111
|
number: {
|
|
53
112
|
rounding: {
|
|
@@ -66,8 +125,6 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
|
|
|
66
125
|
fractionSeparator: string;
|
|
67
126
|
};
|
|
68
127
|
};
|
|
69
|
-
};
|
|
70
|
-
'fa-IR': {
|
|
71
128
|
select: {
|
|
72
129
|
hiddenItemsText: string;
|
|
73
130
|
};
|
|
@@ -80,6 +137,25 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
|
|
|
80
137
|
short: string;
|
|
81
138
|
};
|
|
82
139
|
};
|
|
140
|
+
fileUpload: {
|
|
141
|
+
single: {
|
|
142
|
+
captionText: string;
|
|
143
|
+
browseLink: string;
|
|
144
|
+
};
|
|
145
|
+
multiple: {
|
|
146
|
+
captionText: string;
|
|
147
|
+
captionTextWhenSelected: string;
|
|
148
|
+
captionTextForCompactSize: string;
|
|
149
|
+
browseLink: string;
|
|
150
|
+
title: string;
|
|
151
|
+
gridHeaders: {
|
|
152
|
+
file: string;
|
|
153
|
+
size: string;
|
|
154
|
+
};
|
|
155
|
+
};
|
|
156
|
+
};
|
|
157
|
+
};
|
|
158
|
+
'pt-BR': {
|
|
83
159
|
formatters: {
|
|
84
160
|
number: {
|
|
85
161
|
rounding: {
|
|
@@ -89,7 +165,6 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
|
|
|
89
165
|
million: string;
|
|
90
166
|
billion: string;
|
|
91
167
|
trillion: string;
|
|
92
|
-
rtl: boolean;
|
|
93
168
|
};
|
|
94
169
|
};
|
|
95
170
|
};
|
|
@@ -99,8 +174,6 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
|
|
|
99
174
|
fractionSeparator: string;
|
|
100
175
|
};
|
|
101
176
|
};
|
|
102
|
-
};
|
|
103
|
-
'es-LA': {
|
|
104
177
|
select: {
|
|
105
178
|
hiddenItemsText: string;
|
|
106
179
|
};
|
|
@@ -113,6 +186,25 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
|
|
|
113
186
|
short: string;
|
|
114
187
|
};
|
|
115
188
|
};
|
|
189
|
+
fileUpload: {
|
|
190
|
+
single: {
|
|
191
|
+
captionText: string;
|
|
192
|
+
browseLink: string;
|
|
193
|
+
};
|
|
194
|
+
multiple: {
|
|
195
|
+
captionText: string;
|
|
196
|
+
captionTextWhenSelected: string;
|
|
197
|
+
captionTextForCompactSize: string;
|
|
198
|
+
browseLink: string;
|
|
199
|
+
title: string;
|
|
200
|
+
gridHeaders: {
|
|
201
|
+
file: string;
|
|
202
|
+
size: string;
|
|
203
|
+
};
|
|
204
|
+
};
|
|
205
|
+
};
|
|
206
|
+
};
|
|
207
|
+
'ru-RU': {
|
|
116
208
|
formatters: {
|
|
117
209
|
number: {
|
|
118
210
|
rounding: {
|
|
@@ -129,10 +221,9 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
|
|
|
129
221
|
number: {
|
|
130
222
|
groupSeparator: string[];
|
|
131
223
|
fractionSeparator: string;
|
|
224
|
+
startFormattingFrom: number;
|
|
132
225
|
};
|
|
133
226
|
};
|
|
134
|
-
};
|
|
135
|
-
'en-US': {
|
|
136
227
|
select: {
|
|
137
228
|
hiddenItemsText: string;
|
|
138
229
|
};
|
|
@@ -140,6 +231,31 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
|
|
|
140
231
|
placeholder: string;
|
|
141
232
|
dateInput: string;
|
|
142
233
|
};
|
|
234
|
+
timepicker: {
|
|
235
|
+
placeholder: {
|
|
236
|
+
full: string;
|
|
237
|
+
short: string;
|
|
238
|
+
};
|
|
239
|
+
};
|
|
240
|
+
fileUpload: {
|
|
241
|
+
single: {
|
|
242
|
+
captionText: string;
|
|
243
|
+
browseLink: string;
|
|
244
|
+
};
|
|
245
|
+
multiple: {
|
|
246
|
+
captionText: string;
|
|
247
|
+
captionTextWhenSelected: string;
|
|
248
|
+
captionTextForCompactSize: string;
|
|
249
|
+
browseLink: string;
|
|
250
|
+
title: string;
|
|
251
|
+
gridHeaders: {
|
|
252
|
+
file: string;
|
|
253
|
+
size: string;
|
|
254
|
+
};
|
|
255
|
+
};
|
|
256
|
+
};
|
|
257
|
+
};
|
|
258
|
+
'fa-IR': {
|
|
143
259
|
formatters: {
|
|
144
260
|
number: {
|
|
145
261
|
rounding: {
|
|
@@ -149,6 +265,7 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
|
|
|
149
265
|
million: string;
|
|
150
266
|
billion: string;
|
|
151
267
|
trillion: string;
|
|
268
|
+
rtl: boolean;
|
|
152
269
|
};
|
|
153
270
|
};
|
|
154
271
|
};
|
|
@@ -158,39 +275,36 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
|
|
|
158
275
|
fractionSeparator: string;
|
|
159
276
|
};
|
|
160
277
|
};
|
|
161
|
-
};
|
|
162
|
-
'ru-RU': {
|
|
163
278
|
select: {
|
|
164
279
|
hiddenItemsText: string;
|
|
165
280
|
};
|
|
166
281
|
datepicker: {
|
|
167
282
|
placeholder: string;
|
|
168
|
-
dateInput: string;
|
|
169
283
|
};
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
groupSeparator: string;
|
|
175
|
-
thousand: string;
|
|
176
|
-
million: string;
|
|
177
|
-
billion: string;
|
|
178
|
-
trillion: string;
|
|
179
|
-
};
|
|
284
|
+
timepicker: {
|
|
285
|
+
placeholder: {
|
|
286
|
+
full: string;
|
|
287
|
+
short: string;
|
|
180
288
|
};
|
|
181
289
|
};
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
290
|
+
fileUpload: {
|
|
291
|
+
single: {
|
|
292
|
+
captionText: string;
|
|
293
|
+
browseLink: string;
|
|
294
|
+
};
|
|
295
|
+
multiple: {
|
|
296
|
+
captionText: string;
|
|
297
|
+
captionTextWhenSelected: string;
|
|
298
|
+
captionTextForCompactSize: string;
|
|
299
|
+
browseLink: string;
|
|
300
|
+
title: string;
|
|
301
|
+
gridHeaders: {
|
|
302
|
+
file: string;
|
|
303
|
+
size: string;
|
|
304
|
+
};
|
|
187
305
|
};
|
|
188
306
|
};
|
|
189
307
|
};
|
|
190
|
-
items: {
|
|
191
|
-
id: string;
|
|
192
|
-
name: string;
|
|
193
|
-
}[];
|
|
194
308
|
};
|
|
195
309
|
export declare const KBQ_LOCALE_DATA: InjectionToken<any>;
|
|
196
310
|
export declare const KBQ_LOCALE_SERVICE: InjectionToken<KbqLocaleService>;
|
package/core/locales/pt-BR.d.ts
CHANGED
|
@@ -1,33 +1,30 @@
|
|
|
1
1
|
export declare const ptBRLocaleData: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
short: string;
|
|
13
|
-
};
|
|
2
|
+
select: {
|
|
3
|
+
hiddenItemsText: string;
|
|
4
|
+
};
|
|
5
|
+
datepicker: {
|
|
6
|
+
placeholder: string;
|
|
7
|
+
};
|
|
8
|
+
timepicker: {
|
|
9
|
+
placeholder: {
|
|
10
|
+
full: string;
|
|
11
|
+
short: string;
|
|
14
12
|
};
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
thousand: string;
|
|
21
|
-
million: string;
|
|
22
|
-
billion: string;
|
|
23
|
-
trillion: string;
|
|
24
|
-
};
|
|
25
|
-
};
|
|
13
|
+
};
|
|
14
|
+
fileUpload: {
|
|
15
|
+
single: {
|
|
16
|
+
captionText: string;
|
|
17
|
+
browseLink: string;
|
|
26
18
|
};
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
19
|
+
multiple: {
|
|
20
|
+
captionText: string;
|
|
21
|
+
captionTextWhenSelected: string;
|
|
22
|
+
captionTextForCompactSize: string;
|
|
23
|
+
browseLink: string;
|
|
24
|
+
title: string;
|
|
25
|
+
gridHeaders: {
|
|
26
|
+
file: string;
|
|
27
|
+
size: string;
|
|
31
28
|
};
|
|
32
29
|
};
|
|
33
30
|
};
|