@koobiq/components 16.0.0-beta.1 → 16.0.0-beta.11
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/LICENSE +1 -1
- package/README.md +2 -2
- package/autocomplete/_autocomplete-theme.scss +3 -10
- package/autocomplete/autocomplete-origin.directive.d.ts +1 -1
- package/autocomplete/autocomplete-trigger.directive.d.ts +6 -16
- package/autocomplete/autocomplete.component.d.ts +1 -1
- package/autocomplete/autocomplete.scss +0 -8
- package/badge/README.md +0 -0
- package/{core/styles/theming/_badges-theme.scss → badge/_badge-theme.scss} +14 -13
- package/badge/badge.component.d.ts +44 -0
- package/badge/badge.component.scss +83 -0
- package/badge/badge.module.d.ts +10 -0
- package/badge/index.d.ts +1 -0
- package/badge/public-api.d.ts +2 -0
- package/button/_button-base.scss +1 -1
- package/button/_button-theme.scss +35 -27
- package/button/button.scss +5 -2
- package/button-toggle/_button-toggle-theme.scss +26 -45
- package/button-toggle/button-toggle.component.d.ts +2 -2
- package/button-toggle/button-toggle.scss +40 -87
- package/card/_card-theme.scss +1 -1
- package/checkbox/README.md +1 -1
- package/checkbox/_checkbox-theme.scss +10 -2
- package/checkbox/checkbox.d.ts +2 -2
- package/code-block/README.md +14 -14
- package/code-block/_code-block-theme.scss +49 -10
- package/code-block/actionbar.component.scss +34 -6
- package/code-block/code-block.component.d.ts +2 -2
- package/code-block/code-block.scss +101 -27
- package/core/animation/index.d.ts +1 -1
- package/core/animation/select-animations.d.ts +1 -1
- package/core/common-behaviors/color.d.ts +1 -1
- package/core/common-behaviors/common-module.d.ts +1 -1
- package/core/formatters/index.d.ts +1 -1
- package/core/formatters/number/formatter.d.ts +56 -1
- package/core/forms/_forms-theme.scss +4 -4
- package/core/forms/_forms.scss +1 -3
- package/core/forms/forms.directive.d.ts +2 -2
- package/core/locales/en-US.d.ts +19 -1
- package/core/locales/es-LA.d.ts +27 -0
- package/core/locales/fa-IR.d.ts +28 -0
- package/core/locales/locale-service.d.ts +148 -3
- package/core/locales/pt-BR.d.ts +27 -0
- package/core/locales/ru-RU.d.ts +20 -1
- package/core/locales/zh-CN.d.ts +26 -0
- package/core/option/_optgroup-theme.scss +1 -1
- package/core/option/_option-action-theme.scss +1 -1
- package/core/option/_option-theme.scss +37 -14
- package/core/option/action.d.ts +1 -1
- package/core/option/action.scss +4 -5
- package/core/option/optgroup.d.ts +1 -1
- package/core/option/option.d.ts +37 -8
- package/core/option/option.scss +5 -50
- package/core/overlay/overlay-position-map.d.ts +7 -1
- package/core/pop-up/constants.d.ts +2 -1
- package/core/public-api.d.ts +1 -0
- package/core/select/constants.d.ts +2 -2
- package/core/services/theme.service.d.ts +23 -0
- package/core/styles/_koobiq-theme.scss +12 -1
- package/core/styles/_tokens.kbq.import.scss +4 -4
- package/core/styles/_tokens.scss +4 -4
- package/core/styles/_variables.scss +1 -0
- package/core/styles/common/_animation.scss +10 -6
- package/core/styles/common/_list.scss +123 -0
- package/core/styles/common/_overlay.scss +1 -1
- package/core/styles/common/_select.scss +232 -0
- package/core/styles/theming/_components-theming.scss +716 -102
- package/core/styles/theming/_theming.scss +201 -30
- package/core/styles/typography/_typography.scss +176 -5
- package/datepicker/_datepicker-theme.scss +43 -57
- package/datepicker/calendar-body.component.d.ts +1 -1
- package/datepicker/calendar-body.scss +11 -26
- package/datepicker/calendar-header.component.d.ts +9 -3
- package/datepicker/calendar-header.scss +7 -31
- package/datepicker/calendar.component.d.ts +4 -5
- package/datepicker/calendar.scss +20 -25
- package/datepicker/datepicker-animations.d.ts +2 -2
- package/datepicker/datepicker-content.scss +17 -10
- package/datepicker/datepicker-input.directive.d.ts +4 -4
- package/datepicker/datepicker-input.scss +1 -1
- package/datepicker/datepicker-toggle.component.d.ts +3 -3
- package/datepicker/datepicker.component.d.ts +2 -2
- package/datepicker/month-view.component.d.ts +5 -6
- package/dl/_dl-theme.scss +2 -56
- package/dl/dl.component.d.ts +1 -2
- package/dl/dl.scss +10 -47
- package/dropdown/_dropdown-theme.scss +29 -37
- package/dropdown/dropdown-animations.d.ts +1 -1
- package/dropdown/dropdown-content.directive.d.ts +1 -1
- package/dropdown/dropdown-item.component.d.ts +1 -1
- package/dropdown/dropdown-item.scss +18 -40
- package/dropdown/dropdown-trigger.directive.d.ts +2 -2
- package/dropdown/dropdown.component.d.ts +1 -1
- package/dropdown/dropdown.scss +16 -39
- package/dropdown/dropdown.types.d.ts +1 -1
- package/esm2022/alert/alert.component.mjs +3 -3
- package/esm2022/autocomplete/autocomplete-origin.directive.mjs +4 -4
- package/esm2022/autocomplete/autocomplete-trigger.directive.mjs +34 -31
- package/esm2022/autocomplete/autocomplete.component.mjs +4 -4
- package/esm2022/badge/badge.component.mjs +122 -0
- package/esm2022/badge/badge.module.mjs +40 -0
- package/esm2022/badge/index.mjs +2 -0
- package/esm2022/badge/koobiq-components-badge.mjs +5 -0
- package/esm2022/badge/public-api.mjs +3 -0
- package/esm2022/button/button.component.mjs +4 -3
- package/esm2022/button-toggle/button-toggle.component.mjs +15 -15
- package/esm2022/checkbox/checkbox.mjs +4 -4
- package/esm2022/code-block/actionbar.component.mjs +3 -3
- package/esm2022/code-block/code-block.component.mjs +11 -9
- package/esm2022/core/animation/index.mjs +2 -2
- package/esm2022/core/animation/select-animations.mjs +4 -4
- package/esm2022/core/common-behaviors/color.mjs +1 -1
- package/esm2022/core/common-behaviors/common-module.mjs +2 -2
- package/esm2022/core/formatters/index.mjs +10 -2
- package/esm2022/core/formatters/number/formatter.mjs +224 -3
- package/esm2022/core/forms/forms.directive.mjs +5 -5
- package/esm2022/core/locales/en-US.mjs +22 -4
- package/esm2022/core/locales/es-LA.mjs +31 -2
- package/esm2022/core/locales/fa-IR.mjs +30 -2
- package/esm2022/core/locales/locale-service.mjs +4 -4
- package/esm2022/core/locales/pt-BR.mjs +29 -2
- package/esm2022/core/locales/ru-RU.mjs +23 -2
- package/esm2022/core/locales/zh-CN.mjs +28 -2
- package/esm2022/core/option/action.mjs +8 -7
- package/esm2022/core/option/optgroup.mjs +3 -3
- package/esm2022/core/option/option.mjs +47 -10
- package/esm2022/core/overlay/overlay-position-map.mjs +8 -1
- package/esm2022/core/pop-up/constants.mjs +2 -1
- package/esm2022/core/pop-up/pop-up-trigger.mjs +12 -3
- package/esm2022/core/public-api.mjs +2 -1
- package/esm2022/core/select/constants.mjs +3 -3
- package/esm2022/core/selection/pseudo-checkbox/pseudo-checkbox.mjs +3 -3
- package/esm2022/core/services/theme.service.mjs +60 -0
- package/esm2022/core/version.mjs +2 -2
- package/esm2022/datepicker/calendar-body.component.mjs +7 -5
- package/esm2022/datepicker/calendar-header.component.mjs +9 -8
- package/esm2022/datepicker/calendar.component.mjs +8 -17
- package/esm2022/datepicker/datepicker-animations.mjs +3 -3
- package/esm2022/datepicker/datepicker-input.directive.mjs +29 -20
- package/esm2022/datepicker/datepicker-toggle.component.mjs +6 -6
- package/esm2022/datepicker/datepicker.component.mjs +12 -12
- package/esm2022/datepicker/month-view.component.mjs +9 -18
- package/esm2022/dl/dl.component.mjs +3 -7
- package/esm2022/dropdown/dropdown-animations.mjs +4 -4
- package/esm2022/dropdown/dropdown-content.directive.mjs +3 -3
- package/esm2022/dropdown/dropdown-errors.mjs +6 -6
- package/esm2022/dropdown/dropdown-item.component.mjs +7 -6
- package/esm2022/dropdown/dropdown-trigger.directive.mjs +10 -9
- package/esm2022/dropdown/dropdown.component.mjs +9 -9
- package/esm2022/dropdown/dropdown.types.mjs +1 -1
- package/esm2022/file-upload/file-drop.mjs +43 -6
- package/esm2022/file-upload/file-upload.mjs +1 -1
- package/esm2022/file-upload/multiple-file-upload.component.mjs +13 -9
- package/esm2022/file-upload/single-file-upload.component.mjs +16 -13
- package/esm2022/form-field/cleaner.mjs +3 -3
- package/esm2022/form-field/form-field.mjs +12 -15
- package/esm2022/form-field/hint.mjs +16 -6
- package/esm2022/form-field/password-hint.mjs +25 -16
- package/esm2022/form-field/password-toggle.mjs +29 -12
- package/esm2022/form-field/prefix.mjs +3 -3
- package/esm2022/form-field/suffix.mjs +3 -3
- package/esm2022/form-field/validate.directive.mjs +15 -9
- package/esm2022/icon/icon-button.component.mjs +68 -0
- package/esm2022/icon/icon-item.component.mjs +27 -0
- package/esm2022/icon/icon.component.mjs +5 -90
- package/esm2022/icon/icon.module.mjs +4 -2
- package/esm2022/icon/public-api.mjs +3 -1
- package/esm2022/input/input-errors.mjs +2 -2
- package/esm2022/input/input-number.mjs +260 -44
- package/esm2022/input/input-password.mjs +5 -5
- package/esm2022/input/input.mjs +7 -7
- package/esm2022/link/link.component.mjs +14 -13
- package/esm2022/list/list-selection.component.mjs +23 -10
- package/esm2022/list/list.component.mjs +2 -2
- package/esm2022/list/list.module.mjs +8 -4
- package/esm2022/loader-overlay/loader-overlay.component.mjs +20 -19
- package/esm2022/modal/modal-control.service.mjs +5 -5
- package/esm2022/modal/modal-ref.class.mjs +1 -1
- package/esm2022/modal/modal.component.mjs +129 -134
- package/esm2022/modal/modal.module.mjs +13 -7
- package/esm2022/modal/modal.service.mjs +23 -23
- package/esm2022/modal/modal.type.mjs +1 -3
- package/esm2022/navbar/navbar-item.component.mjs +19 -18
- package/esm2022/navbar/navbar.component.mjs +20 -11
- package/esm2022/navbar/vertical-navbar.animation.mjs +2 -2
- package/esm2022/navbar/vertical-navbar.component.mjs +11 -8
- package/esm2022/popover/popover-animations.mjs +2 -2
- package/esm2022/popover/popover-confirm.component.mjs +9 -11
- package/esm2022/popover/popover.component.mjs +24 -24
- package/esm2022/progress-spinner/progress-spinner.component.mjs +3 -3
- package/esm2022/radio/radio.component.mjs +11 -8
- package/esm2022/risk-level/index.mjs +2 -0
- package/esm2022/risk-level/koobiq-components-risk-level.mjs +5 -0
- package/esm2022/risk-level/public-api.mjs +3 -0
- package/esm2022/risk-level/risk-level.component.mjs +40 -0
- package/esm2022/risk-level/risk-level.module.mjs +28 -0
- package/esm2022/select/select-option.directive.mjs +15 -3
- package/esm2022/select/select.component.mjs +47 -29
- package/esm2022/sidebar/sidebar-animations.mjs +2 -2
- package/esm2022/sidebar/sidebar.component.mjs +9 -9
- package/esm2022/sidepanel/sidepanel-container.component.mjs +3 -3
- package/esm2022/sidepanel/sidepanel-directives.mjs +8 -10
- package/esm2022/sidepanel/sidepanel.module.mjs +10 -4
- package/esm2022/splitter/splitter.component.mjs +3 -3
- package/esm2022/table/table.component.mjs +3 -3
- package/esm2022/tabs/paginated-tab-header.mjs +11 -2
- package/esm2022/tabs/tab-body.component.mjs +7 -7
- package/esm2022/tabs/tab-content.directive.mjs +3 -3
- package/esm2022/tabs/tab-group.component.mjs +16 -21
- package/esm2022/tabs/tab-header.component.mjs +2 -2
- package/esm2022/tabs/tab-label-wrapper.directive.mjs +4 -3
- package/esm2022/tabs/tab-label.directive.mjs +3 -3
- package/esm2022/tabs/tab-nav-bar/tab-nav-bar.mjs +21 -10
- package/esm2022/tabs/tab.component.mjs +14 -5
- package/esm2022/tabs/tabs-animations.mjs +2 -2
- package/esm2022/tabs/tabs.module.mjs +2 -6
- package/esm2022/tags/tag-default-options.mjs +1 -1
- package/esm2022/tags/tag-input.mjs +17 -15
- package/esm2022/tags/tag-list.component.mjs +15 -10
- package/esm2022/tags/tag.component.mjs +16 -16
- package/esm2022/textarea/textarea.component.mjs +4 -4
- package/esm2022/timepicker/timepicker.directive.mjs +10 -10
- package/esm2022/timezone/timezone-option.component.mjs +4 -4
- package/esm2022/timezone/timezone-select.component.mjs +5 -5
- package/esm2022/title/title.directive.mjs +6 -6
- package/esm2022/toast/toast-animations.mjs +2 -1
- package/esm2022/toast/toast-container.component.mjs +22 -8
- package/esm2022/toast/toast.component.mjs +30 -13
- package/esm2022/toast/toast.module.mjs +23 -8
- package/esm2022/toast/toast.service.mjs +2 -1
- package/esm2022/toast/toast.type.mjs +6 -1
- package/esm2022/toggle/toggle.component.mjs +4 -4
- package/esm2022/tooltip/tooltip.animations.mjs +2 -2
- package/esm2022/tooltip/tooltip.component.mjs +31 -30
- package/esm2022/tree/control/base-tree-control.mjs +1 -1
- package/esm2022/tree/control/flat-tree-control.mjs +4 -4
- package/esm2022/tree/control/tree-control.mjs +1 -1
- package/esm2022/tree/node.mjs +5 -5
- package/esm2022/tree/outlet.mjs +3 -3
- package/esm2022/tree/padding.directive.mjs +9 -9
- package/esm2022/tree/toggle.mjs +11 -12
- package/esm2022/tree/tree-base.mjs +3 -3
- package/esm2022/tree/tree-option.component.mjs +12 -10
- package/esm2022/tree/tree-selection.component.mjs +8 -6
- package/esm2022/tree/tree.mjs +3 -3
- package/esm2022/tree/tree.module.mjs +13 -4
- package/esm2022/tree-select/tree-select.component.mjs +28 -23
- package/fesm2022/koobiq-components-alert.mjs +2 -2
- package/fesm2022/koobiq-components-alert.mjs.map +1 -1
- package/fesm2022/koobiq-components-autocomplete.mjs +40 -37
- package/fesm2022/koobiq-components-autocomplete.mjs.map +1 -1
- package/fesm2022/koobiq-components-badge.mjs +166 -0
- package/fesm2022/koobiq-components-badge.mjs.map +1 -0
- package/fesm2022/koobiq-components-button-toggle.mjs +14 -14
- package/fesm2022/koobiq-components-button-toggle.mjs.map +1 -1
- package/fesm2022/koobiq-components-button.mjs +3 -2
- package/fesm2022/koobiq-components-button.mjs.map +1 -1
- package/fesm2022/koobiq-components-checkbox.mjs +3 -3
- package/fesm2022/koobiq-components-checkbox.mjs.map +1 -1
- package/fesm2022/koobiq-components-code-block.mjs +10 -9
- package/fesm2022/koobiq-components-code-block.mjs.map +1 -1
- package/fesm2022/koobiq-components-core.mjs +535 -46
- package/fesm2022/koobiq-components-core.mjs.map +1 -1
- package/fesm2022/koobiq-components-datepicker.mjs +73 -79
- package/fesm2022/koobiq-components-datepicker.mjs.map +1 -1
- package/fesm2022/koobiq-components-dl.mjs +2 -6
- package/fesm2022/koobiq-components-dl.mjs.map +1 -1
- package/fesm2022/koobiq-components-dropdown.mjs +33 -31
- package/fesm2022/koobiq-components-dropdown.mjs.map +1 -1
- package/fesm2022/koobiq-components-file-upload.mjs +65 -21
- package/fesm2022/koobiq-components-file-upload.mjs.map +1 -1
- package/fesm2022/koobiq-components-form-field.mjs +96 -59
- package/fesm2022/koobiq-components-form-field.mjs.map +1 -1
- package/fesm2022/koobiq-components-icon.mjs +10 -8
- package/fesm2022/koobiq-components-icon.mjs.map +1 -1
- package/fesm2022/koobiq-components-input.mjs +269 -55
- package/fesm2022/koobiq-components-input.mjs.map +1 -1
- package/fesm2022/koobiq-components-link.mjs +13 -12
- package/fesm2022/koobiq-components-link.mjs.map +1 -1
- package/fesm2022/koobiq-components-list.mjs +31 -14
- package/fesm2022/koobiq-components-list.mjs.map +1 -1
- package/fesm2022/koobiq-components-loader-overlay.mjs +19 -18
- package/fesm2022/koobiq-components-loader-overlay.mjs.map +1 -1
- package/fesm2022/koobiq-components-modal.mjs +164 -167
- package/fesm2022/koobiq-components-modal.mjs.map +1 -1
- package/fesm2022/koobiq-components-navbar.mjs +46 -37
- package/fesm2022/koobiq-components-navbar.mjs.map +1 -1
- package/fesm2022/koobiq-components-popover.mjs +32 -33
- package/fesm2022/koobiq-components-popover.mjs.map +1 -1
- package/fesm2022/koobiq-components-progress-spinner.mjs +2 -2
- package/fesm2022/koobiq-components-progress-spinner.mjs.map +1 -1
- package/fesm2022/koobiq-components-radio.mjs +10 -7
- package/fesm2022/koobiq-components-radio.mjs.map +1 -1
- package/fesm2022/koobiq-components-risk-level.mjs +72 -0
- package/fesm2022/koobiq-components-risk-level.mjs.map +1 -0
- package/fesm2022/koobiq-components-select.mjs +60 -30
- package/fesm2022/koobiq-components-select.mjs.map +1 -1
- package/fesm2022/koobiq-components-sidebar.mjs +8 -8
- package/fesm2022/koobiq-components-sidebar.mjs.map +1 -1
- package/fesm2022/koobiq-components-sidepanel.mjs +19 -14
- package/fesm2022/koobiq-components-sidepanel.mjs.map +1 -1
- package/fesm2022/koobiq-components-splitter.mjs +2 -2
- package/fesm2022/koobiq-components-splitter.mjs.map +1 -1
- package/fesm2022/koobiq-components-table.mjs +2 -2
- package/fesm2022/koobiq-components-table.mjs.map +1 -1
- package/fesm2022/koobiq-components-tabs.mjs +74 -53
- package/fesm2022/koobiq-components-tabs.mjs.map +1 -1
- package/fesm2022/koobiq-components-tags.mjs +45 -38
- package/fesm2022/koobiq-components-tags.mjs.map +1 -1
- package/fesm2022/koobiq-components-textarea.mjs +3 -3
- 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 +7 -7
- package/fesm2022/koobiq-components-timezone.mjs.map +1 -1
- package/fesm2022/koobiq-components-title.mjs +5 -5
- package/fesm2022/koobiq-components-title.mjs.map +1 -1
- package/fesm2022/koobiq-components-toast.mjs +71 -22
- package/fesm2022/koobiq-components-toast.mjs.map +1 -1
- package/fesm2022/koobiq-components-toggle.mjs +3 -3
- package/fesm2022/koobiq-components-toggle.mjs.map +1 -1
- package/fesm2022/koobiq-components-tooltip.mjs +31 -30
- package/fesm2022/koobiq-components-tooltip.mjs.map +1 -1
- package/fesm2022/koobiq-components-tree-select.mjs +27 -22
- package/fesm2022/koobiq-components-tree-select.mjs.map +1 -1
- package/fesm2022/koobiq-components-tree.mjs +67 -54
- package/fesm2022/koobiq-components-tree.mjs.map +1 -1
- package/file-upload/_file-upload-theme.scss +54 -40
- package/file-upload/file-drop.d.ts +3 -2
- package/file-upload/file-upload.d.ts +4 -1
- package/file-upload/file-upload.scss +2 -9
- package/file-upload/multiple-file-upload.component.d.ts +6 -5
- package/file-upload/multiple-file-upload.component.scss +170 -59
- package/file-upload/single-file-upload.component.d.ts +6 -5
- package/file-upload/single-file-upload.component.scss +42 -22
- package/form-field/_form-field-theme.scss +3 -6
- package/form-field/_hint-theme.scss +6 -2
- package/form-field/cleaner.d.ts +1 -1
- package/form-field/form-field.d.ts +3 -4
- package/form-field/form-field.scss +2 -2
- package/form-field/hint.d.ts +4 -1
- package/form-field/hint.scss +9 -1
- package/form-field/password-hint.d.ts +7 -3
- package/form-field/password-hint.scss +6 -0
- package/form-field/password-toggle.d.ts +13 -7
- package/form-field/prefix.d.ts +1 -1
- package/form-field/suffix.d.ts +1 -1
- package/form-field/validate.directive.d.ts +1 -1
- package/icon/_icon-button-theme.scss +129 -0
- package/icon/_icon-item-theme.scss +41 -0
- package/icon/_icon-theme.scss +1 -232
- package/icon/icon-button.component.d.ts +22 -0
- package/icon/icon-button.scss +33 -0
- package/icon/icon-item.component.d.ts +10 -0
- package/icon/icon-item.scss +18 -0
- package/icon/icon.component.d.ts +1 -25
- package/icon/icon.module.d.ts +6 -4
- package/icon/icon.scss +0 -41
- package/icon/public-api.d.ts +2 -0
- package/input/_input-theme.scss +2 -1
- package/input/input-number.d.ts +61 -10
- package/input/input-password.d.ts +1 -1
- package/input/input.d.ts +2 -2
- package/input/input.scss +3 -1
- package/link/_link-theme.scss +101 -92
- package/link/link.component.d.ts +4 -4
- package/list/_list-theme.scss +36 -17
- package/list/list-selection.component.d.ts +6 -2
- package/list/list.module.d.ts +1 -1
- package/list/list.scss +6 -19
- package/loader-overlay/_loader-overlay-theme.scss +43 -11
- package/loader-overlay/loader-overlay.component.d.ts +6 -5
- package/loader-overlay/loader-overlay.scss +56 -22
- package/markdown/_markdown-theme.scss +2 -2
- package/modal/README.md +5 -5
- package/modal/_modal-confirm.scss +5 -37
- package/modal/_modal-theme.scss +14 -52
- package/modal/modal-ref.class.d.ts +2 -2
- package/modal/modal.component.d.ts +53 -52
- package/modal/modal.module.d.ts +2 -1
- package/modal/modal.scss +50 -31
- package/modal/modal.type.d.ts +35 -36
- package/navbar/_navbar-theme.scss +2 -2
- package/navbar/navbar-item.component.d.ts +4 -3
- package/navbar/navbar.component.d.ts +5 -2
- package/navbar/vertical-navbar.component.d.ts +4 -2
- package/package.json +48 -38
- package/popover/README.md +14 -14
- package/popover/_popover-theme.scss +15 -78
- package/popover/popover-animations.d.ts +1 -1
- package/popover/popover-confirm.component.d.ts +1 -3
- package/popover/popover.component.d.ts +3 -3
- package/popover/popover.scss +60 -50
- package/prebuilt-themes/dark-theme.css +1 -1
- package/prebuilt-themes/light-theme.css +1 -1
- package/progress-spinner/progress-spinner.component.d.ts +2 -2
- package/progress-spinner/progress-spinner.scss +10 -5
- package/radio/_radio-theme.scss +17 -4
- package/radio/radio.component.d.ts +2 -2
- package/radio/radio.scss +13 -0
- package/risk-level/README.md +0 -0
- package/risk-level/_risk-level-theme.scss +88 -0
- package/risk-level/index.d.ts +1 -0
- package/risk-level/public-api.d.ts +2 -0
- package/risk-level/risk-level.component.d.ts +18 -0
- package/risk-level/risk-level.component.scss +26 -0
- package/risk-level/risk-level.module.d.ts +10 -0
- package/select/_select-theme.scss +12 -4
- package/select/select-option.directive.d.ts +2 -0
- package/select/select.component.d.ts +15 -12
- package/select/select.scss +6 -190
- package/sidebar/sidebar-animations.d.ts +1 -1
- package/sidebar/sidebar.component.d.ts +3 -3
- package/sidepanel/_sidepanel-theme.scss +11 -41
- package/sidepanel/sidepanel-directives.d.ts +0 -2
- package/sidepanel/sidepanel.scss +33 -35
- package/splitter/_splitter-theme.scss +1 -0
- package/splitter/splitter.component.d.ts +1 -1
- package/table/_table-theme.scss +1 -1
- package/table/table.component.d.ts +1 -1
- package/tabs/_tabs-common.scss +28 -147
- package/tabs/_tabs-theme.scss +81 -175
- package/tabs/paginated-tab-header.d.ts +1 -0
- package/tabs/tab-body.component.d.ts +1 -1
- package/tabs/tab-content.directive.d.ts +1 -1
- package/tabs/tab-group.component.d.ts +5 -8
- package/tabs/tab-group.scss +10 -10
- package/tabs/tab-header.scss +2 -24
- package/tabs/tab-label-wrapper.directive.d.ts +1 -1
- package/tabs/tab-label.directive.d.ts +1 -1
- package/tabs/tab-nav-bar/tab-nav-bar.d.ts +4 -2
- package/tabs/tab-nav-bar/tab-nav-bar.scss +9 -16
- package/tabs/tab.component.d.ts +1 -1
- package/tabs/tabs-animations.d.ts +1 -1
- package/tabs/tabs.module.d.ts +1 -1
- package/tags/_tag-theme.scss +1 -25
- package/tags/tag-default-options.d.ts +4 -0
- package/tags/tag-input.d.ts +2 -2
- package/tags/tag-list.component.d.ts +3 -2
- package/tags/tag-list.scss +26 -16
- package/tags/tag.component.d.ts +6 -6
- package/textarea/textarea.component.d.ts +1 -1
- package/timepicker/timepicker.directive.d.ts +2 -2
- package/timezone/timezone-option.component.d.ts +1 -1
- package/timezone/timezone-select.component.d.ts +1 -1
- package/title/title.directive.d.ts +1 -1
- package/toast/_toast-theme.scss +21 -33
- package/toast/toast-animations.d.ts +1 -0
- package/toast/toast-container.component.d.ts +7 -3
- package/toast/toast-container.component.scss +2 -1
- package/toast/toast.component.d.ts +6 -1
- package/toast/toast.component.scss +41 -34
- package/toast/toast.module.d.ts +1 -1
- package/toast/toast.service.d.ts +2 -0
- package/toast/toast.type.d.ts +8 -5
- package/toggle/_toggle-theme.scss +9 -1
- package/toggle/toggle.component.d.ts +1 -1
- package/toggle/toggle.scss +5 -2
- package/tooltip/tooltip.animations.d.ts +1 -1
- package/tooltip/tooltip.component.d.ts +5 -5
- package/tree/_tree-theme.scss +46 -34
- package/tree/control/base-tree-control.d.ts +1 -1
- package/tree/control/tree-control.d.ts +1 -1
- package/tree/node.d.ts +1 -1
- package/tree/outlet.d.ts +1 -1
- package/tree/padding.directive.d.ts +1 -1
- package/tree/toggle.d.ts +3 -3
- package/tree/tree-base.d.ts +1 -1
- package/tree/tree-option.component.d.ts +1 -2
- package/tree/tree-option.scss +40 -27
- package/tree/tree-selection.component.d.ts +1 -1
- package/tree/tree.d.ts +1 -1
- package/tree/tree.module.d.ts +2 -1
- package/tree-select/_tree-select-theme.scss +13 -3
- package/tree-select/tree-select.component.d.ts +6 -4
- package/tree-select/tree-select.scss +5 -194
- package/core/styles/theming/_badges.scss +0 -57
- package/core/styles/theming/prebuilt/light-theme.scss +0 -20
- package/list/_list-base.scss +0 -54
|
@@ -5,48 +5,21 @@
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
@mixin kbq-sidepanel-theme($theme) {
|
|
8
|
-
$background: map.get($theme, background);
|
|
9
|
-
|
|
10
8
|
$sidepanel: map.get(map.get($theme, components), sidepanel);
|
|
11
|
-
|
|
9
|
+
|
|
10
|
+
.kbq-sidepanel-title {
|
|
11
|
+
color: map.get($sidepanel, header-text);
|
|
12
|
+
}
|
|
12
13
|
|
|
13
14
|
.kbq-sidepanel-content {
|
|
14
|
-
background-color: map.get($
|
|
15
|
+
background-color: map.get($sidepanel, background);
|
|
16
|
+
color: map.get($sidepanel, content-text);
|
|
15
17
|
}
|
|
16
18
|
|
|
17
19
|
.kbq-sidepanel-container_shadowed {
|
|
18
|
-
|
|
19
|
-
.
|
|
20
|
-
box-shadow: 0 0 0 1px map.get($sidepanel, border), -6px 0 12px 0 rgba(0, 0, 0, 0.24);
|
|
21
|
-
}
|
|
20
|
+
.kbq-sidepanel-content {
|
|
21
|
+
box-shadow: map.get($sidepanel, box-shadow);
|
|
22
22
|
}
|
|
23
|
-
|
|
24
|
-
&.kbq-sidepanel-container_left {
|
|
25
|
-
.kbq-sidepanel-content {
|
|
26
|
-
box-shadow: 0 0 0 1px map.get($sidepanel, border), 6px 0 12px 0 rgba(0, 0, 0, 0.24);
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
&.kbq-sidepanel-container_bottom {
|
|
31
|
-
.kbq-sidepanel-content {
|
|
32
|
-
box-shadow: 0 0 0 1px map.get($sidepanel, border), 0 -6px 12px 0 rgba(0, 0, 0, 0.24);
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
&.kbq-sidepanel-container_top {
|
|
37
|
-
.kbq-sidepanel-content {
|
|
38
|
-
box-shadow: 0 0 0 1px map.get($sidepanel, border), 0 6px 12px 0 rgba(0, 0, 0, 0.24);
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.kbq-sidepanel-header {
|
|
44
|
-
border-bottom: 1px solid map.get($sidepanel, header-border);
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.kbq-sidepanel-footer {
|
|
48
|
-
border-top: 1px solid map.get($sidepanel, footer-border);
|
|
49
|
-
background-color: map.get($popup, footer-background);
|
|
50
23
|
}
|
|
51
24
|
}
|
|
52
25
|
|
|
@@ -54,14 +27,11 @@
|
|
|
54
27
|
$tokens: map.get($config, tokens);
|
|
55
28
|
|
|
56
29
|
.kbq-sidepanel-title {
|
|
57
|
-
@include kbq-typography-level-to-styles($config, map.get($tokens, sidepanel-
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.kbq-sidepanel-container {
|
|
61
|
-
@include kbq-typography-level-to-styles($config, map.get($tokens, sidepanel-font-default));
|
|
30
|
+
@include kbq-typography-level-to-styles($config, map.get($tokens, sidepanel-font-header));
|
|
62
31
|
}
|
|
63
32
|
|
|
33
|
+
.kbq-sidepanel-container,
|
|
64
34
|
.kbq-sidepanel-footer {
|
|
65
|
-
@include kbq-typography-level-to-styles($config, map.get($tokens, sidepanel-
|
|
35
|
+
@include kbq-typography-level-to-styles($config, map.get($tokens, sidepanel-font-content));
|
|
66
36
|
}
|
|
67
37
|
}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { ElementRef, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { ThemePalette } from '@koobiq/components/core';
|
|
3
2
|
import { KbqSidepanelRef } from './sidepanel-ref';
|
|
4
3
|
import { KbqSidepanelService } from './sidepanel.service';
|
|
5
4
|
import * as i0 from "@angular/core";
|
|
@@ -22,7 +21,6 @@ export declare class KbqSidepanelClose implements OnInit, OnChanges {
|
|
|
22
21
|
* Header of a sidepanel.
|
|
23
22
|
*/
|
|
24
23
|
export declare class KbqSidepanelHeader {
|
|
25
|
-
themePalette: typeof ThemePalette;
|
|
26
24
|
closeable: boolean;
|
|
27
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<KbqSidepanelHeader, never>;
|
|
28
26
|
static ɵcmp: i0.ɵɵComponentDeclaration<KbqSidepanelHeader, "kbq-sidepanel-header", never, { "closeable": { "alias": "closeable"; "required": false; }; }, {}, never, ["*"], false, never>;
|
package/sidepanel/sidepanel.scss
CHANGED
|
@@ -39,18 +39,18 @@ $tokens: meta.module-variables(tokens) !default;
|
|
|
39
39
|
top: 0;
|
|
40
40
|
|
|
41
41
|
&.kbq-sidepanel_small {
|
|
42
|
-
width: var(--kbq-sidepanel-size-small, map.get($tokens, sidepanel-size-small));
|
|
43
|
-
max-width: var(--kbq-sidepanel-size-small, map.get($tokens, sidepanel-size-small));
|
|
42
|
+
width: var(--kbq-sidepanel-size-small-width, map.get($tokens, sidepanel-size-small-width));
|
|
43
|
+
max-width: var(--kbq-sidepanel-size-small-width, map.get($tokens, sidepanel-size-small-width));
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
&.kbq-sidepanel_medium {
|
|
47
|
-
width: var(--kbq-sidepanel-size-medium, map.get($tokens, sidepanel-size-medium));
|
|
48
|
-
max-width: var(--kbq-sidepanel-size-medium, map.get($tokens, sidepanel-size-medium));
|
|
47
|
+
width: var(--kbq-sidepanel-size-medium-width, map.get($tokens, sidepanel-size-medium-width));
|
|
48
|
+
max-width: var(--kbq-sidepanel-size-medium-width, map.get($tokens, sidepanel-size-medium-width));
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
&.kbq-sidepanel_large {
|
|
52
|
-
width: var(--kbq-sidepanel-size-large, map.get($tokens, sidepanel-size-large));
|
|
53
|
-
max-width: var(--kbq-sidepanel-size-large, map.get($tokens, sidepanel-size-large));
|
|
52
|
+
width: var(--kbq-sidepanel-size-large-width, map.get($tokens, sidepanel-size-large-width));
|
|
53
|
+
max-width: var(--kbq-sidepanel-size-large-width, map.get($tokens, sidepanel-size-large-width));
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
.kbq-sidepanel-indent {
|
|
@@ -107,15 +107,6 @@ $tokens: meta.module-variables(tokens) !default;
|
|
|
107
107
|
.kbq-sidepanel-indent {
|
|
108
108
|
display: flex;
|
|
109
109
|
flex: 0 0 auto;
|
|
110
|
-
|
|
111
|
-
.kbq-sidepanel-close {
|
|
112
|
-
width: 100%;
|
|
113
|
-
height: 100%;
|
|
114
|
-
|
|
115
|
-
@include common.kbq-button-reset();
|
|
116
|
-
background: transparent;
|
|
117
|
-
padding: 0;
|
|
118
|
-
}
|
|
119
110
|
}
|
|
120
111
|
/* stylelint-enable */
|
|
121
112
|
|
|
@@ -136,20 +127,15 @@ $tokens: meta.module-variables(tokens) !default;
|
|
|
136
127
|
flex-flow: row nowrap;
|
|
137
128
|
flex: 0 0 auto;
|
|
138
129
|
|
|
139
|
-
|
|
130
|
+
padding:
|
|
131
|
+
var(--kbq-sidepanel-size-header-padding-vertical, map.get($tokens, sidepanel-size-header-padding-vertical))
|
|
132
|
+
var(--kbq-sidepanel-size-header-padding-right, map.get($tokens, sidepanel-size-header-padding-right))
|
|
133
|
+
var(--kbq-sidepanel-size-header-padding-vertical, map.get($tokens, sidepanel-size-header-padding-vertical))
|
|
134
|
+
var(--kbq-sidepanel-size-header-padding-left, map.get($tokens, sidepanel-size-header-padding-left));
|
|
140
135
|
|
|
141
136
|
.kbq-sidepanel-close {
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
margin-right: 2px;
|
|
145
|
-
|
|
146
|
-
height: calc(
|
|
147
|
-
var(--kbq-sidepanel-header-size-height, map.get($tokens, sidepanel-header-size-height)) -
|
|
148
|
-
(var(--kbq-size-border-width, map.get($tokens, size-border-width) * 2))
|
|
149
|
-
);
|
|
150
|
-
width: calc(
|
|
151
|
-
var(--kbq-sidepanel-header-size-height, map.get($tokens, sidepanel-header-size-height)) -
|
|
152
|
-
(var(--kbq-size-border-width, map.get($tokens, size-border-width) * 2))
|
|
137
|
+
margin-left: var(
|
|
138
|
+
--kbq-sidepanel-size-close-button-margin-left, map.get($tokens, sidepanel-size-close-button-margin-left)
|
|
153
139
|
);
|
|
154
140
|
}
|
|
155
141
|
}
|
|
@@ -158,8 +144,6 @@ $tokens: meta.module-variables(tokens) !default;
|
|
|
158
144
|
flex: 1;
|
|
159
145
|
|
|
160
146
|
@include common.kbq-truncate-line();
|
|
161
|
-
|
|
162
|
-
padding: var(--kbq-sidepanel-header-size-padding, map.get($tokens, sidepanel-header-size-padding));
|
|
163
147
|
}
|
|
164
148
|
|
|
165
149
|
.kbq-sidepanel-body {
|
|
@@ -168,6 +152,18 @@ $tokens: meta.module-variables(tokens) !default;
|
|
|
168
152
|
flex: 1;
|
|
169
153
|
flex-direction: column;
|
|
170
154
|
min-height: 0;
|
|
155
|
+
|
|
156
|
+
padding-right: var(
|
|
157
|
+
--kbq-sidepanel-size-content-padding-horizontal, map.get($tokens, sidepanel-size-content-padding-horizontal)
|
|
158
|
+
);
|
|
159
|
+
|
|
160
|
+
padding-left: var(
|
|
161
|
+
--kbq-sidepanel-size-content-padding-horizontal, map.get($tokens, sidepanel-size-content-padding-horizontal)
|
|
162
|
+
);
|
|
163
|
+
|
|
164
|
+
padding-bottom: var(
|
|
165
|
+
--kbq-sidepanel-size-content-padding-bottom, map.get($tokens, sidepanel-size-content-padding-bottom)
|
|
166
|
+
);
|
|
171
167
|
}
|
|
172
168
|
|
|
173
169
|
.kbq-sidepanel-footer {
|
|
@@ -178,9 +174,10 @@ $tokens: meta.module-variables(tokens) !default;
|
|
|
178
174
|
flex-flow: row nowrap;
|
|
179
175
|
flex: 0 0 auto;
|
|
180
176
|
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
177
|
+
padding:
|
|
178
|
+
var(--kbq-sidepanel-size-footer-padding-top, map.get($tokens, sidepanel-size-footer-padding-top))
|
|
179
|
+
var(--kbq-sidepanel-size-footer-padding-horizontal, map.get($tokens, sidepanel-size-footer-padding-horizontal))
|
|
180
|
+
var(--kbq-sidepanel-size-footer-padding-bottom, map.get($tokens, sidepanel-size-footer-padding-bottom));
|
|
184
181
|
|
|
185
182
|
.kbq-sidepanel-actions {
|
|
186
183
|
display: flex;
|
|
@@ -195,9 +192,10 @@ $tokens: meta.module-variables(tokens) !default;
|
|
|
195
192
|
&[align="right"] {
|
|
196
193
|
justify-content: flex-end;
|
|
197
194
|
}
|
|
198
|
-
}
|
|
199
195
|
|
|
200
|
-
|
|
201
|
-
|
|
196
|
+
gap: var(
|
|
197
|
+
--kbq-sidepanel-size-footer-content-gap-horizontal,
|
|
198
|
+
map.get($tokens, sidepanel-size-footer-content-gap-horizontal)
|
|
199
|
+
);
|
|
202
200
|
}
|
|
203
201
|
}
|
|
@@ -100,7 +100,7 @@ export declare class KbqSplitterComponent implements OnInit {
|
|
|
100
100
|
private onMouseUp;
|
|
101
101
|
private setStyle;
|
|
102
102
|
static ɵfac: i0.ɵɵFactoryDeclaration<KbqSplitterComponent, never>;
|
|
103
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KbqSplitterComponent, "kbq-splitter", ["
|
|
103
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KbqSplitterComponent, "kbq-splitter", ["kbqSplitter"], { "hideGutters": { "alias": "hideGutters"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "useGhost": { "alias": "useGhost"; "required": false; }; "gutterSize": { "alias": "gutterSize"; "required": false; }; }, { "gutterPositionChange": "gutterPositionChange"; }, never, ["*"], false, never>;
|
|
104
104
|
}
|
|
105
105
|
export declare class KbqSplitterAreaDirective implements OnInit, OnDestroy {
|
|
106
106
|
private elementRef;
|
package/table/_table-theme.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class KbqTable {
|
|
3
3
|
static ɵfac: i0.ɵɵFactoryDeclaration<KbqTable, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KbqTable, "table[kbq-table]", ["
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KbqTable, "table[kbq-table]", ["kbqTable"], {}, {}, never, ["*"], false, never>;
|
|
5
5
|
}
|
package/tabs/_tabs-common.scss
CHANGED
|
@@ -6,33 +6,6 @@
|
|
|
6
6
|
|
|
7
7
|
$tokens: meta.module-variables(tokens) !default;
|
|
8
8
|
|
|
9
|
-
%base-focus-frame {
|
|
10
|
-
display: block;
|
|
11
|
-
content: "";
|
|
12
|
-
|
|
13
|
-
position: absolute;
|
|
14
|
-
|
|
15
|
-
top: 0;
|
|
16
|
-
right: calc(-1 * var(--kbq-tabs-size-border-width, #{map.get($tokens, tabs-size-border-width)}));
|
|
17
|
-
bottom: calc(-1 * var(--kbq-tabs-size-border-width, #{map.get($tokens, tabs-size-border-width)}));
|
|
18
|
-
left: calc(-1 * var(--kbq-tabs-size-border-width, #{map.get($tokens, tabs-size-border-width)}));
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
%horizontal-focus {
|
|
22
|
-
&:after {
|
|
23
|
-
border: {
|
|
24
|
-
width: calc(var(--kbq-tabs-size-border-width, #{map.get($tokens, tabs-size-border-width)}) * 2);
|
|
25
|
-
style: solid;
|
|
26
|
-
top: {
|
|
27
|
-
left-radius: var(--kbq-tabs-size-border-radius, #{map.get($tokens, tabs-size-border-radius)});
|
|
28
|
-
right-radius: var(--kbq-tabs-size-border-radius, #{map.get($tokens, tabs-size-border-radius)});
|
|
29
|
-
}
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
border-bottom-color: transparent;
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
|
|
36
9
|
|
|
37
10
|
@mixin tab-label {
|
|
38
11
|
position: relative;
|
|
@@ -43,101 +16,59 @@ $tokens: meta.module-variables(tokens) !default;
|
|
|
43
16
|
justify-content: center;
|
|
44
17
|
align-items: center;
|
|
45
18
|
|
|
46
|
-
height: var(--kbq-tabs-size-height, map.get($tokens, tabs-size-height));
|
|
47
|
-
|
|
48
19
|
text-align: center;
|
|
49
20
|
white-space: nowrap;
|
|
50
21
|
|
|
51
22
|
cursor: pointer;
|
|
52
23
|
|
|
53
|
-
padding:
|
|
54
|
-
|
|
55
|
-
|
|
24
|
+
$padding-vertical: map.get($tokens, tabs-size-tab-item-padding-vertical);
|
|
25
|
+
$padding-horizontal: map.get($tokens, tabs-size-tab-item-padding-horizontal);
|
|
26
|
+
$border-width: map.get($tokens, tabs-size-tab-item-focus-outline-width);
|
|
27
|
+
|
|
28
|
+
padding:
|
|
29
|
+
calc(
|
|
30
|
+
var(--kbq-tabs-size-tab-item-padding-vertical, $padding-vertical) -
|
|
31
|
+
var(--kbq-tabs-size-tab-item-focus-outline-width, $border-width)
|
|
32
|
+
)
|
|
33
|
+
calc(
|
|
34
|
+
var(--kbq-tabs-size-tab-item-padding-horizontal, $padding-horizontal) -
|
|
35
|
+
var(--kbq-tabs-size-tab-item-focus-outline-width, $border-width)
|
|
36
|
+
);
|
|
37
|
+
|
|
38
|
+
border: {
|
|
39
|
+
width: var(--kbq-tabs-size-tab-item-focus-outline-width, $border-width);
|
|
40
|
+
style: solid;
|
|
41
|
+
color: transparent;
|
|
42
|
+
radius: var(
|
|
43
|
+
--kbq-tabs-size-tab-item-border-radius, map.get($tokens, tabs-size-tab-item-border-radius)
|
|
44
|
+
);
|
|
56
45
|
}
|
|
57
46
|
|
|
58
47
|
outline: none;
|
|
59
48
|
|
|
60
|
-
&.kbq-
|
|
49
|
+
&.kbq-selected {
|
|
61
50
|
cursor: default;
|
|
62
|
-
|
|
63
|
-
&:before {
|
|
64
|
-
display: block;
|
|
65
|
-
content: "";
|
|
66
|
-
|
|
67
|
-
position: absolute;
|
|
68
|
-
}
|
|
69
51
|
}
|
|
70
52
|
|
|
71
53
|
&.cdk-keyboard-focused {
|
|
72
54
|
z-index: 1;
|
|
73
|
-
|
|
74
|
-
&:after {
|
|
75
|
-
@extend %base-focus-frame;
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
&:first-child.cdk-keyboard-focused:after {
|
|
80
|
-
left: 0;
|
|
81
55
|
}
|
|
82
56
|
|
|
83
|
-
|
|
84
|
-
right: 0;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
&[disabled] {
|
|
57
|
+
&.kbq-disabled {
|
|
88
58
|
pointer-events: none;
|
|
89
59
|
}
|
|
90
60
|
|
|
91
|
-
& .kbq-tab-label__content
|
|
92
|
-
|
|
93
|
-
margin-right: var(--kbq-tabs-size-label-icon-margin, map.get($tokens, tabs-size-label-icon-margin));
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
&.kbq-icon_right {
|
|
97
|
-
margin-left: var(--kbq-tabs-size-label-icon-margin, map.get($tokens, tabs-size-label-icon-margin));
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
&.kbq-tab-label_horizontal {
|
|
102
|
-
border-bottom: {
|
|
103
|
-
width: var(--kbq-tabs-size-border-width, map.get($tokens, tabs-size-border-width));
|
|
104
|
-
style: solid;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
&.kbq-active:before {
|
|
108
|
-
bottom: calc(-1 * var(--kbq-tabs-size-border-width, #{map.get($tokens, tabs-size-border-width)}));
|
|
109
|
-
left: 0;
|
|
110
|
-
right: 0;
|
|
111
|
-
|
|
112
|
-
height: var(--kbq-tabs-size-highlight-height, #{map.get($tokens, tabs-size-highlight-height)});
|
|
113
|
-
}
|
|
61
|
+
& .kbq-tab-label__content {
|
|
62
|
+
display: flex;
|
|
114
63
|
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
64
|
+
gap: var(
|
|
65
|
+
--kbq-tabs-size-tab-item-content-gap-horizontal, map.get($tokens, tabs-size-tab-item-content-gap-horizontal)
|
|
66
|
+
);
|
|
118
67
|
}
|
|
119
68
|
|
|
120
69
|
&.kbq-tab-label_vertical {
|
|
121
70
|
justify-content: flex-start;
|
|
122
71
|
|
|
123
|
-
&.kbq-active:before {
|
|
124
|
-
top: 0;
|
|
125
|
-
bottom: 0;
|
|
126
|
-
left: calc(-1 * var(--kbq-tabs-size-border-width, #{map.get($tokens, tabs-size-border-width)}));
|
|
127
|
-
|
|
128
|
-
width: var(--kbq-tabs-size-highlight-height, #{map.get($tokens, tabs-size-highlight-height) + 1px});
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
&.cdk-keyboard-focused:after {
|
|
132
|
-
right: 0;
|
|
133
|
-
left: 0;
|
|
134
|
-
|
|
135
|
-
border: {
|
|
136
|
-
width: calc(var(--kbq-tabs-size-border-width, #{map.get($tokens, tabs-size-border-width)}) * 2);
|
|
137
|
-
style: solid;
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
|
|
141
72
|
& .kbq-tab-label__content {
|
|
142
73
|
overflow: hidden;
|
|
143
74
|
text-overflow: ellipsis;
|
|
@@ -145,53 +76,3 @@ $tokens: meta.module-variables(tokens) !default;
|
|
|
145
76
|
}
|
|
146
77
|
}
|
|
147
78
|
}
|
|
148
|
-
|
|
149
|
-
@mixin tab-label-old {
|
|
150
|
-
border-bottom: {
|
|
151
|
-
width: var(--kbq-tabs-size-border-width, map.get($tokens, tabs-size-border-width));
|
|
152
|
-
style: solid;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
border: {
|
|
156
|
-
width: var(--kbq-tabs-size-border-width, #{map.get($tokens, tabs-size-border-width)});
|
|
157
|
-
style: solid;
|
|
158
|
-
|
|
159
|
-
top: {
|
|
160
|
-
left-radius: var(--kbq-tabs-size-border-radius, #{map.get($tokens, tabs-size-border-radius)});
|
|
161
|
-
right-radius: var(--kbq-tabs-size-border-radius, #{map.get($tokens, tabs-size-border-radius)});
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
left: none;
|
|
165
|
-
left-color: transparent;
|
|
166
|
-
right: none;
|
|
167
|
-
right-color: transparent;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
&.kbq-active {
|
|
171
|
-
border: {
|
|
172
|
-
width: var(--kbq-tabs-size-border-width, #{map.get($tokens, tabs-size-border-width)});
|
|
173
|
-
style: solid;
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
padding-right: calc(
|
|
177
|
-
var(--kbq-tabs-size-padding-horizontal, #{map.get($tokens, tabs-size-padding-horizontal)}) -
|
|
178
|
-
var(--kbq-tabs-size-border-width, #{map.get($tokens, tabs-size-border-width)})
|
|
179
|
-
);
|
|
180
|
-
|
|
181
|
-
padding-left: calc(
|
|
182
|
-
var(--kbq-tabs-size-padding-horizontal, #{map.get($tokens, tabs-size-padding-horizontal)}) -
|
|
183
|
-
var(--kbq-tabs-size-border-width, #{map.get($tokens, tabs-size-border-width)})
|
|
184
|
-
);
|
|
185
|
-
|
|
186
|
-
&.cdk-keyboard-focused:after {
|
|
187
|
-
right: calc(-2 * var(--kbq-tabs-size-border-width, #{map.get($tokens, tabs-size-border-width)}));
|
|
188
|
-
left: calc(-2 * var(--kbq-tabs-size-border-width, #{map.get($tokens, tabs-size-border-width)}));
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
&.cdk-keyboard-focused:after {
|
|
193
|
-
@extend %horizontal-focus;
|
|
194
|
-
|
|
195
|
-
top: -1px
|
|
196
|
-
}
|
|
197
|
-
}
|