@koobiq/components 18.0.0 → 18.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/accordion/README.md +0 -0
- package/accordion/_accordion-theme.scss +62 -0
- package/accordion/accordion-content.d.ts +6 -0
- package/accordion/accordion-header.d.ts +6 -0
- package/accordion/accordion-item.d.ts +6 -0
- package/accordion/accordion-tokens.scss +45 -0
- package/accordion/accordion-trigger.component.d.ts +11 -0
- package/accordion/accordion-trigger.component.scss +79 -0
- package/accordion/accordion.component.d.ts +20 -0
- package/accordion/accordion.component.scss +66 -0
- package/accordion/accordion.module.d.ts +12 -0
- package/accordion/index.d.ts +1 -0
- package/accordion/public-api.d.ts +6 -0
- package/alert/_alert-theme.scss +3 -3
- package/alert/alert-tokens.scss +2 -2
- package/alert/alert.component.scss +40 -39
- package/autocomplete/_autocomplete-theme.scss +2 -2
- package/autocomplete/autocomplete.scss +6 -6
- package/badge/_badge-theme.scss +5 -5
- package/badge/badge.component.scss +16 -16
- package/button/_button-base.scss +6 -6
- package/button/_button-theme.scss +11 -11
- package/button/button.dropdown-trigger.directive.d.ts +14 -0
- package/button/button.module.d.ts +2 -1
- package/button/button.scss +8 -8
- package/button/public-api.d.ts +1 -0
- package/button-toggle/_button-toggle-theme.scss +5 -5
- package/button-toggle/button-toggle.scss +11 -11
- package/checkbox/_checkbox-theme.scss +22 -22
- package/checkbox/checkbox-tokens.scss +2 -2
- package/checkbox/checkbox.scss +16 -16
- package/code-block/_code-block-theme.scss +15 -15
- package/code-block/actionbar.component.scss +4 -4
- package/code-block/code-block.scss +18 -19
- package/core/forms/_forms-theme.scss +2 -2
- package/core/forms/_forms.scss +12 -12
- package/core/option/_optgroup-theme.scss +2 -2
- package/core/option/_option-action-theme.scss +6 -6
- package/core/option/_option-theme.scss +5 -5
- package/core/option/action.scss +2 -2
- package/core/option/optgroup.scss +1 -1
- package/core/pop-up/pop-up-trigger.d.ts +5 -1
- package/core/selection/pseudo-checkbox/_pseudo-checkbox-theme.scss +8 -8
- package/core/selection/pseudo-checkbox/pseudo-checkbox-tokens.scss +2 -2
- package/core/selection/pseudo-checkbox/pseudo-checkbox.scss +8 -8
- package/core/styles/common/_groups.scss +4 -4
- package/core/styles/common/_list.scss +19 -19
- package/core/styles/common/_popup.scss +3 -3
- package/core/styles/common/_select.scss +13 -13
- package/core/styles/common/_tokens.scss +8 -19
- package/core/styles/theming/_scrollbar-theme.scss +11 -11
- package/core/styles/typography/_typography.scss +15 -0
- package/core/styles/visual/_layout.scss +13 -13
- package/datepicker/_datepicker-theme.scss +15 -15
- package/datepicker/calendar-body.scss +2 -2
- package/datepicker/calendar-header.scss +3 -3
- package/datepicker/calendar.scss +6 -6
- package/datepicker/datepicker-content.scss +4 -4
- package/datepicker/datepicker-toggle.scss +2 -2
- package/divider/_divider-theme.scss +1 -1
- package/divider/divider.scss +6 -6
- package/dl/_dl-theme.scss +2 -2
- package/dl/dl.scss +4 -4
- package/dropdown/_dropdown-theme.scss +7 -7
- package/dropdown/dropdown-item.scss +2 -2
- package/dropdown/dropdown.scss +5 -5
- package/empty-state/_empty-state-theme.scss +4 -4
- package/empty-state/empty-state.scss +18 -20
- package/esm2022/accordion/accordion-content.mjs +19 -0
- package/esm2022/accordion/accordion-header.mjs +19 -0
- package/esm2022/accordion/accordion-item.mjs +25 -0
- package/esm2022/accordion/accordion-trigger.component.mjs +60 -0
- package/esm2022/accordion/accordion.component.mjs +40 -0
- package/esm2022/accordion/accordion.module.mjs +44 -0
- package/esm2022/accordion/index.mjs +2 -0
- package/esm2022/accordion/koobiq-components-accordion.mjs +5 -0
- package/esm2022/accordion/public-api.mjs +7 -0
- package/esm2022/alert/alert.component.mjs +13 -13
- package/esm2022/alert/alert.module.mjs +4 -4
- package/esm2022/autocomplete/autocomplete-origin.directive.mjs +3 -3
- package/esm2022/autocomplete/autocomplete-trigger.directive.mjs +3 -3
- package/esm2022/autocomplete/autocomplete.component.mjs +5 -5
- package/esm2022/autocomplete/autocomplete.module.mjs +4 -4
- package/esm2022/badge/badge.component.mjs +10 -10
- package/esm2022/badge/badge.module.mjs +4 -4
- package/esm2022/button/button.component.mjs +8 -8
- package/esm2022/button/button.dropdown-trigger.directive.mjs +28 -0
- package/esm2022/button/button.module.mjs +14 -9
- package/esm2022/button/public-api.mjs +2 -1
- package/esm2022/button-toggle/button-toggle.component.mjs +8 -8
- package/esm2022/button-toggle/button-toggle.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 +4 -4
- package/esm2022/code-block/actionbar.component.mjs +4 -4
- package/esm2022/code-block/code-block.component.mjs +4 -4
- package/esm2022/code-block/code-block.module.mjs +4 -4
- package/esm2022/core/common-behaviors/common-module.mjs +4 -4
- package/esm2022/core/error/error-options.mjs +6 -6
- package/esm2022/core/formatters/date/formatter.mjs +3 -3
- package/esm2022/core/formatters/date/formatter.pipe.mjs +39 -39
- package/esm2022/core/formatters/index.mjs +4 -4
- package/esm2022/core/formatters/number/formatter.mjs +12 -12
- package/esm2022/core/forms/forms-module.mjs +4 -4
- package/esm2022/core/forms/forms.directive.mjs +6 -6
- package/esm2022/core/highlight/highlight.pipe.mjs +3 -3
- package/esm2022/core/highlight/index.mjs +4 -4
- package/esm2022/core/line/line.mjs +7 -7
- package/esm2022/core/locales/locale-service.mjs +3 -3
- package/esm2022/core/locales/locale-service.module.mjs +4 -4
- package/esm2022/core/option/action.mjs +5 -5
- package/esm2022/core/option/optgroup.mjs +4 -4
- package/esm2022/core/option/option-module.mjs +4 -4
- package/esm2022/core/option/option.mjs +5 -5
- package/esm2022/core/pop-up/pop-up-trigger.mjs +17 -8
- package/esm2022/core/pop-up/pop-up.mjs +3 -3
- package/esm2022/core/select/common.mjs +15 -15
- package/esm2022/core/selection/pseudo-checkbox/pseudo-checkbox.mjs +4 -4
- package/esm2022/core/selection/pseudo-checkbox/pseudo-checkbox.module.mjs +4 -4
- package/esm2022/core/services/measure-scrollbar.service.mjs +3 -3
- package/esm2022/core/services/theme.service.mjs +3 -3
- package/esm2022/core/utils/data-size/data-size.pipe.mjs +3 -3
- package/esm2022/core/version.mjs +2 -2
- package/esm2022/datepicker/calendar-body.component.mjs +4 -4
- package/esm2022/datepicker/calendar-header.component.mjs +4 -4
- package/esm2022/datepicker/calendar.component.mjs +4 -4
- package/esm2022/datepicker/datepicker-input.directive.mjs +3 -3
- package/esm2022/datepicker/datepicker-intl.mjs +3 -3
- package/esm2022/datepicker/datepicker-module.mjs +4 -4
- package/esm2022/datepicker/datepicker-toggle.component.mjs +7 -7
- package/esm2022/datepicker/datepicker.component.mjs +8 -8
- package/esm2022/datepicker/month-view.component.mjs +3 -3
- package/esm2022/divider/divider.component.mjs +4 -4
- package/esm2022/divider/divider.module.mjs +4 -4
- package/esm2022/dl/dl.component.mjs +10 -10
- package/esm2022/dl/dl.module.mjs +4 -4
- package/esm2022/dropdown/dropdown-content.directive.mjs +3 -3
- package/esm2022/dropdown/dropdown-item.component.mjs +5 -5
- package/esm2022/dropdown/dropdown-trigger.directive.mjs +3 -3
- package/esm2022/dropdown/dropdown.component.mjs +6 -6
- package/esm2022/dropdown/dropdown.module.mjs +4 -4
- package/esm2022/ellipsis-center/ellipsis-center.directive.mjs +7 -7
- package/esm2022/empty-state/empty-state.component.mjs +16 -16
- package/esm2022/empty-state/empty-state.module.mjs +4 -4
- package/esm2022/file-upload/file-drop.mjs +3 -3
- package/esm2022/file-upload/file-upload.module.mjs +4 -4
- package/esm2022/file-upload/multiple-file-upload.component.mjs +4 -4
- package/esm2022/file-upload/single-file-upload.component.mjs +4 -4
- package/esm2022/form-field/cleaner.mjs +5 -5
- package/esm2022/form-field/form-field.mjs +11 -11
- package/esm2022/form-field/form-field.module.mjs +4 -4
- package/esm2022/form-field/hint.mjs +5 -5
- package/esm2022/form-field/password-hint.mjs +6 -6
- package/esm2022/form-field/password-toggle.mjs +4 -4
- package/esm2022/form-field/prefix.mjs +3 -3
- package/esm2022/form-field/stepper.mjs +5 -5
- package/esm2022/form-field/suffix.mjs +3 -3
- package/esm2022/form-field/validate.directive.mjs +3 -3
- package/esm2022/icon/icon-button.component.mjs +6 -6
- package/esm2022/icon/icon-item.component.mjs +6 -6
- package/esm2022/icon/icon.component.mjs +6 -6
- package/esm2022/icon/icon.module.mjs +13 -24
- package/esm2022/input/input-number-validators.mjs +6 -6
- package/esm2022/input/input-number.mjs +5 -5
- package/esm2022/input/input-password.mjs +3 -3
- package/esm2022/input/input.mjs +8 -8
- package/esm2022/input/input.module.mjs +4 -4
- package/esm2022/link/link.component.mjs +3 -3
- package/esm2022/link/link.module.mjs +4 -4
- package/esm2022/list/list-selection.component.mjs +11 -11
- package/esm2022/list/list.component.mjs +7 -7
- package/esm2022/list/list.module.mjs +4 -4
- package/esm2022/loader-overlay/loader-overlay.component.mjs +13 -13
- 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 +3 -3
- package/esm2022/modal/modal.component.mjs +7 -9
- package/esm2022/modal/modal.directive.mjs +53 -17
- package/esm2022/modal/modal.module.mjs +4 -4
- package/esm2022/modal/modal.service.mjs +3 -3
- package/esm2022/navbar/navbar-item.component.mjs +29 -29
- package/esm2022/navbar/navbar.component.mjs +11 -11
- package/esm2022/navbar/navbar.module.mjs +4 -4
- package/esm2022/navbar/vertical-navbar.component.mjs +5 -5
- package/esm2022/popover/popover-confirm.component.mjs +8 -8
- package/esm2022/popover/popover.component.mjs +8 -8
- package/esm2022/popover/popover.module.mjs +4 -4
- package/esm2022/progress-bar/progress-bar.component.mjs +10 -10
- package/esm2022/progress-bar/progress-bar.module.mjs +4 -4
- package/esm2022/progress-spinner/progress-spinner.component.mjs +10 -10
- package/esm2022/progress-spinner/progress-spinner.module.mjs +4 -4
- package/esm2022/radio/radio.component.mjs +7 -7
- package/esm2022/radio/radio.module.mjs +4 -4
- package/esm2022/risk-level/risk-level.component.mjs +4 -4
- package/esm2022/risk-level/risk-level.module.mjs +4 -4
- package/esm2022/scrollbar/scrollbar.component.mjs +6 -6
- package/esm2022/scrollbar/scrollbar.directive.mjs +3 -3
- package/esm2022/scrollbar/scrollbar.module.mjs +4 -4
- package/esm2022/select/select-option.directive.mjs +3 -3
- package/esm2022/select/select.component.mjs +6 -6
- package/esm2022/select/select.module.mjs +4 -4
- package/esm2022/sidebar/sidebar.component.mjs +9 -9
- package/esm2022/sidebar/sidebar.module.mjs +4 -4
- package/esm2022/sidepanel/sidepanel-container.component.mjs +5 -5
- package/esm2022/sidepanel/sidepanel-directives.mjs +15 -15
- package/esm2022/sidepanel/sidepanel.module.mjs +4 -4
- package/esm2022/sidepanel/sidepanel.service.mjs +3 -3
- package/esm2022/splitter/splitter.component.mjs +14 -14
- package/esm2022/splitter/splitter.module.mjs +4 -4
- package/esm2022/table/table.component.mjs +7 -7
- package/esm2022/table/table.module.mjs +4 -4
- package/esm2022/tabs/paginated-tab-header.mjs +3 -3
- package/esm2022/tabs/tab-body.component.mjs +6 -6
- package/esm2022/tabs/tab-content.directive.mjs +3 -3
- package/esm2022/tabs/tab-group.component.mjs +33 -18
- package/esm2022/tabs/tab-header.component.mjs +16 -5
- package/esm2022/tabs/tab-label-wrapper.directive.mjs +8 -4
- package/esm2022/tabs/tab-label.directive.mjs +3 -3
- package/esm2022/tabs/tab-nav-bar/tab-nav-bar.mjs +7 -7
- package/esm2022/tabs/tab.component.mjs +3 -3
- package/esm2022/tabs/tabs.module.mjs +15 -8
- package/esm2022/tags/tag-input.mjs +3 -3
- package/esm2022/tags/tag-list.component.mjs +4 -4
- package/esm2022/tags/tag.component.mjs +13 -13
- package/esm2022/tags/tag.module.mjs +4 -4
- package/esm2022/textarea/textarea.component.mjs +3 -3
- package/esm2022/textarea/textarea.module.mjs +4 -4
- package/esm2022/timepicker/timepicker.directive.mjs +3 -3
- 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 +5 -5
- package/esm2022/timezone/timezone-option.directive.mjs +3 -3
- package/esm2022/timezone/timezone-select.component.mjs +8 -8
- package/esm2022/timezone/timezone.module.mjs +4 -4
- package/esm2022/timezone/utc-offset.pipe.mjs +3 -3
- package/esm2022/title/title.directive.mjs +3 -3
- package/esm2022/title/title.module.mjs +4 -4
- package/esm2022/toast/toast-container.component.mjs +4 -4
- package/esm2022/toast/toast.component.mjs +8 -8
- package/esm2022/toast/toast.module.mjs +4 -4
- package/esm2022/toast/toast.service.mjs +3 -3
- package/esm2022/toggle/toggle.component.mjs +6 -6
- package/esm2022/toggle/toggle.module.mjs +4 -4
- package/esm2022/tooltip/tooltip.component.mjs +52 -15
- package/esm2022/tooltip/tooltip.module.mjs +15 -28
- package/esm2022/tree/node.mjs +3 -3
- package/esm2022/tree/outlet.mjs +3 -3
- package/esm2022/tree/padding.directive.mjs +3 -3
- package/esm2022/tree/toggle.mjs +11 -11
- package/esm2022/tree/tree-base.mjs +6 -6
- package/esm2022/tree/tree-option.component.mjs +8 -7
- package/esm2022/tree/tree-selection.component.mjs +5 -5
- package/esm2022/tree/tree.mjs +5 -5
- package/esm2022/tree/tree.module.mjs +4 -4
- package/esm2022/tree-select/tree-select.component.mjs +15 -8
- package/esm2022/tree-select/tree-select.module.mjs +4 -4
- package/fesm2022/koobiq-components-accordion.mjs +189 -0
- package/fesm2022/koobiq-components-accordion.mjs.map +1 -0
- package/fesm2022/koobiq-components-alert.mjs +17 -17
- package/fesm2022/koobiq-components-alert.mjs.map +1 -1
- package/fesm2022/koobiq-components-autocomplete.mjs +15 -15
- package/fesm2022/koobiq-components-autocomplete.mjs.map +1 -1
- package/fesm2022/koobiq-components-badge.mjs +14 -14
- package/fesm2022/koobiq-components-badge.mjs.map +1 -1
- package/fesm2022/koobiq-components-button-toggle.mjs +12 -12
- package/fesm2022/koobiq-components-button-toggle.mjs.map +1 -1
- package/fesm2022/koobiq-components-button.mjs +48 -18
- package/fesm2022/koobiq-components-button.mjs.map +1 -1
- package/fesm2022/koobiq-components-checkbox.mjs +11 -11
- package/fesm2022/koobiq-components-checkbox.mjs.map +1 -1
- package/fesm2022/koobiq-components-code-block.mjs +12 -12
- package/fesm2022/koobiq-components-code-block.mjs.map +1 -1
- package/fesm2022/koobiq-components-core.mjs +169 -160
- package/fesm2022/koobiq-components-core.mjs.map +1 -1
- package/fesm2022/koobiq-components-datepicker.mjs +39 -39
- package/fesm2022/koobiq-components-datepicker.mjs.map +1 -1
- package/fesm2022/koobiq-components-divider.mjs +8 -8
- package/fesm2022/koobiq-components-divider.mjs.map +1 -1
- package/fesm2022/koobiq-components-dl.mjs +14 -14
- package/fesm2022/koobiq-components-dl.mjs.map +1 -1
- package/fesm2022/koobiq-components-dropdown.mjs +20 -20
- package/fesm2022/koobiq-components-dropdown.mjs.map +1 -1
- package/fesm2022/koobiq-components-ellipsis-center.mjs +7 -7
- package/fesm2022/koobiq-components-empty-state.mjs +20 -20
- package/fesm2022/koobiq-components-empty-state.mjs.map +1 -1
- package/fesm2022/koobiq-components-file-upload.mjs +15 -15
- package/fesm2022/koobiq-components-file-upload.mjs.map +1 -1
- package/fesm2022/koobiq-components-form-field.mjs +48 -48
- package/fesm2022/koobiq-components-form-field.mjs.map +1 -1
- package/fesm2022/koobiq-components-icon.mjs +27 -38
- package/fesm2022/koobiq-components-icon.mjs.map +1 -1
- package/fesm2022/koobiq-components-input.mjs +24 -24
- package/fesm2022/koobiq-components-input.mjs.map +1 -1
- package/fesm2022/koobiq-components-link.mjs +7 -7
- package/fesm2022/koobiq-components-list.mjs +22 -22
- package/fesm2022/koobiq-components-list.mjs.map +1 -1
- package/fesm2022/koobiq-components-loader-overlay.mjs +17 -17
- package/fesm2022/koobiq-components-loader-overlay.mjs.map +1 -1
- package/fesm2022/koobiq-components-markdown.mjs +12 -12
- package/fesm2022/koobiq-components-markdown.mjs.map +1 -1
- package/fesm2022/koobiq-components-modal.mjs +66 -36
- package/fesm2022/koobiq-components-modal.mjs.map +1 -1
- package/fesm2022/koobiq-components-navbar.mjs +49 -49
- package/fesm2022/koobiq-components-navbar.mjs.map +1 -1
- package/fesm2022/koobiq-components-popover.mjs +18 -18
- 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 +14 -14
- package/fesm2022/koobiq-components-progress-spinner.mjs.map +1 -1
- package/fesm2022/koobiq-components-radio.mjs +11 -11
- package/fesm2022/koobiq-components-radio.mjs.map +1 -1
- package/fesm2022/koobiq-components-risk-level.mjs +8 -8
- package/fesm2022/koobiq-components-risk-level.mjs.map +1 -1
- package/fesm2022/koobiq-components-scrollbar.mjs +12 -12
- package/fesm2022/koobiq-components-scrollbar.mjs.map +1 -1
- package/fesm2022/koobiq-components-select.mjs +12 -12
- package/fesm2022/koobiq-components-select.mjs.map +1 -1
- package/fesm2022/koobiq-components-sidebar.mjs +13 -13
- package/fesm2022/koobiq-components-sidepanel.mjs +26 -26
- package/fesm2022/koobiq-components-sidepanel.mjs.map +1 -1
- package/fesm2022/koobiq-components-splitter.mjs +17 -17
- package/fesm2022/koobiq-components-splitter.mjs.map +1 -1
- package/fesm2022/koobiq-components-table.mjs +11 -11
- package/fesm2022/koobiq-components-table.mjs.map +1 -1
- package/fesm2022/koobiq-components-tabs.mjs +93 -56
- package/fesm2022/koobiq-components-tabs.mjs.map +1 -1
- package/fesm2022/koobiq-components-tags.mjs +24 -24
- package/fesm2022/koobiq-components-tags.mjs.map +1 -1
- package/fesm2022/koobiq-components-textarea.mjs +7 -7
- package/fesm2022/koobiq-components-timepicker.mjs +7 -7
- package/fesm2022/koobiq-components-timezone.mjs +26 -26
- package/fesm2022/koobiq-components-timezone.mjs.map +1 -1
- package/fesm2022/koobiq-components-title.mjs +7 -7
- package/fesm2022/koobiq-components-toast.mjs +18 -18
- package/fesm2022/koobiq-components-toast.mjs.map +1 -1
- package/fesm2022/koobiq-components-toggle.mjs +9 -9
- package/fesm2022/koobiq-components-toggle.mjs.map +1 -1
- package/fesm2022/koobiq-components-tooltip.mjs +67 -42
- package/fesm2022/koobiq-components-tooltip.mjs.map +1 -1
- package/fesm2022/koobiq-components-tree-select.mjs +18 -11
- package/fesm2022/koobiq-components-tree-select.mjs.map +1 -1
- package/fesm2022/koobiq-components-tree.mjs +47 -46
- package/fesm2022/koobiq-components-tree.mjs.map +1 -1
- package/file-upload/_file-upload-theme.scss +27 -29
- package/file-upload/file-upload-tokens.scss +1 -1
- package/file-upload/multiple-file-upload.component.scss +26 -26
- package/file-upload/single-file-upload.component.scss +8 -8
- package/form-field/_form-field-theme.scss +14 -14
- package/form-field/_hint-theme.scss +2 -2
- package/form-field/cleaner.scss +2 -2
- package/form-field/form-field.scss +10 -10
- package/form-field/hint.scss +4 -4
- package/form-field/password-toggle.scss +2 -2
- package/form-field/stepper.scss +3 -3
- package/icon/_icon-button-theme.scss +26 -26
- package/icon/_icon-item-theme.scss +2 -2
- package/icon/_icon-theme.scss +6 -6
- package/icon/icon-button.component.d.ts +1 -1
- package/icon/icon-button.scss +2 -4
- package/icon/icon-item.component.d.ts +1 -1
- package/icon/icon-item.scss +2 -4
- package/icon/icon.component.d.ts +1 -1
- package/icon/icon.module.d.ts +1 -3
- package/input/input-number.d.ts +1 -1
- package/input/input.d.ts +1 -1
- package/input/input.scss +2 -2
- package/link/_link-theme.scss +11 -11
- package/link/link-tokens.scss +2 -2
- package/list/_list-theme.scss +6 -6
- package/list/list.scss +1 -1
- package/loader-overlay/_loader-overlay-theme.scss +6 -6
- package/loader-overlay/loader-overlay.scss +8 -8
- package/markdown/_markdown-theme.scss +27 -27
- package/markdown/markdown-tokens.scss +19 -19
- package/markdown/markdown.scss +29 -29
- package/modal/_modal-confirm.scss +1 -1
- package/modal/_modal-theme.scss +9 -12
- package/modal/modal.directive.d.ts +3 -0
- package/modal/modal.scss +12 -13
- package/navbar/_navbar-item_horizontal.scss +20 -20
- package/navbar/_navbar-item_vertical.scss +28 -28
- package/navbar/_navbar-theme.scss +8 -8
- package/navbar/navbar-brand.scss +23 -23
- package/navbar/navbar-divider.scss +3 -3
- package/navbar/navbar-item.scss +6 -6
- package/navbar/navbar.scss +1 -1
- package/navbar/vertical-navbar.scss +2 -2
- package/package.json +13 -6
- package/popover/_popover-theme.scss +7 -7
- package/popover/popover.scss +17 -18
- package/prebuilt-themes/dark-theme.css +1 -1
- package/prebuilt-themes/light-theme.css +1 -1
- package/prebuilt-themes/theme.css +1 -1
- package/progress-bar/_progress-bar-theme.scss +4 -4
- package/progress-bar/progress-bar.scss +5 -5
- package/progress-spinner/_progress-spinner-theme.scss +3 -3
- package/progress-spinner/progress-spinner.scss +7 -7
- package/radio/_radio-theme.scss +9 -9
- package/radio/radio.scss +14 -14
- package/risk-level/_risk-level-theme.scss +5 -5
- package/risk-level/risk-level.component.scss +3 -3
- package/schematics/ng-add/index.js +22 -5
- package/scrollbar/_scrollbar-component-theme.scss +12 -12
- package/scrollbar/scrollbar.component.scss +6 -6
- package/select/_select-theme.scss +9 -9
- package/select/select.scss +2 -2
- package/sidepanel/_sidepanel-theme.scss +4 -4
- package/sidepanel/sidepanel.scss +14 -16
- package/splitter/_splitter-theme.scss +1 -1
- package/table/_table-theme.scss +5 -5
- package/table/table.scss +12 -12
- package/tabs/_tabs-common.scss +32 -3
- package/tabs/_tabs-theme.scss +24 -12
- package/tabs/tab-group.component.d.ts +7 -2
- package/tabs/tab-group.scss +1 -1
- package/tabs/tab-header.component.d.ts +4 -1
- package/tabs/tab-header.scss +29 -0
- package/tabs/tab-nav-bar/tab-nav-bar.scss +1 -1
- package/tabs/tabs.module.d.ts +2 -1
- package/tags/_tag-theme.scss +5 -5
- package/tags/tag-list.scss +5 -5
- package/tags/tag.scss +4 -4
- package/textarea/textarea.scss +2 -2
- package/timepicker/timepicker.scss +1 -1
- package/timezone/_timezone-option-theme.scss +3 -3
- package/timezone/timezone-option-tokens.scss +24 -0
- package/timezone/timezone-option.component.scss +4 -4
- package/timezone/timezone-select.component.scss +1 -1
- package/toast/_toast-theme.scss +4 -4
- package/toast/toast-container.component.scss +3 -3
- package/toast/toast.component.scss +21 -21
- package/toggle/_toggle-theme.scss +8 -8
- package/toggle/toggle.scss +8 -8
- package/tooltip/_tooltip-theme.scss +5 -5
- package/tooltip/tooltip.component.d.ts +11 -4
- package/tooltip/tooltip.module.d.ts +1 -3
- package/tooltip/tooltip.scss +7 -7
- package/tree/_tree-theme.scss +6 -6
- package/tree/toggle.scss +2 -2
- package/tree/tree-option.component.d.ts +1 -0
- package/tree/tree-option.scss +4 -4
- package/tree-select/_tree-select-theme.scss +7 -7
- package/tree-select/tree-select.component.d.ts +2 -0
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
@use './code-block-theme' as *;
|
|
6
6
|
|
|
7
|
-
$border-radius: kbq-
|
|
8
|
-
$border-width: kbq-
|
|
7
|
+
$border-radius: var(--kbq-code-block-size-container-border-radius);
|
|
8
|
+
$border-width: var(--kbq-code-block-size-container-border-width);
|
|
9
9
|
|
|
10
10
|
.kbq-code-block {
|
|
11
11
|
display: block;
|
|
@@ -26,10 +26,9 @@ $border-width: kbq-css-variable(code-block-size-container-border-width);
|
|
|
26
26
|
// 4 buttons + margin
|
|
27
27
|
$buttons-margin: calc(32 * 4) + 24px;
|
|
28
28
|
|
|
29
|
-
padding: calc(kbq-
|
|
29
|
+
padding: calc(var(--kbq-code-block-size-header-padding-vertical) - $border-width)
|
|
30
30
|
kbq-sum-series-css-variables([code-block-size-header-padding-right, $buttons-margin])
|
|
31
|
-
kbq-
|
|
32
|
-
kbq-css-variable(code-block-size-header-padding-left);
|
|
31
|
+
var(--kbq-code-block-size-header-padding-vertical) var(--kbq-code-block-size-header-padding-left);
|
|
33
32
|
|
|
34
33
|
border-width: $border-width $border-width 0 $border-width;
|
|
35
34
|
border-style: solid;
|
|
@@ -39,7 +38,7 @@ $border-width: kbq-css-variable(code-block-size-container-border-width);
|
|
|
39
38
|
&:has(.kbq-code-block__show-more) {
|
|
40
39
|
.kbq-code-block__code {
|
|
41
40
|
& > code {
|
|
42
|
-
padding-bottom: kbq-
|
|
41
|
+
padding-bottom: var(--kbq-size-3xl) !important;
|
|
43
42
|
overflow-x: scroll;
|
|
44
43
|
}
|
|
45
44
|
}
|
|
@@ -55,10 +54,10 @@ $border-width: kbq-css-variable(code-block-size-container-border-width);
|
|
|
55
54
|
|
|
56
55
|
.kbq-code-block__code {
|
|
57
56
|
> code {
|
|
58
|
-
padding: kbq-
|
|
59
|
-
kbq-
|
|
60
|
-
kbq-
|
|
61
|
-
kbq-
|
|
57
|
+
padding: var(--kbq-code-block-size-with-header-content-padding-top)
|
|
58
|
+
var(--kbq-code-block-size-with-header-content-padding-horizontal)
|
|
59
|
+
var(--kbq-code-block-size-with-header-content-padding-bottom)
|
|
60
|
+
var(--kbq-code-block-size-with-header-content-padding-horizontal);
|
|
62
61
|
|
|
63
62
|
border-radius: $border-radius;
|
|
64
63
|
|
|
@@ -68,7 +67,7 @@ $border-width: kbq-css-variable(code-block-size-container-border-width);
|
|
|
68
67
|
}
|
|
69
68
|
|
|
70
69
|
.hljs-ln-numbers {
|
|
71
|
-
padding-right: kbq-
|
|
70
|
+
padding-right: var(--kbq-code-block-size-with-header-content-content-gap-horizontal);
|
|
72
71
|
}
|
|
73
72
|
}
|
|
74
73
|
|
|
@@ -110,12 +109,12 @@ $border-width: kbq-css-variable(code-block-size-container-border-width);
|
|
|
110
109
|
position: relative;
|
|
111
110
|
|
|
112
111
|
& > code {
|
|
113
|
-
padding: kbq-
|
|
114
|
-
kbq-
|
|
112
|
+
padding: var(--kbq-code-block-size-no-header-content-padding-vertical)
|
|
113
|
+
var(--kbq-code-block-size-no-header-content-padding-horizontal);
|
|
115
114
|
}
|
|
116
115
|
|
|
117
116
|
.hljs-ln-numbers {
|
|
118
|
-
padding-right: kbq-
|
|
117
|
+
padding-right: var(--kbq-code-block-size-no-header-content-content-gap-horizontal);
|
|
119
118
|
}
|
|
120
119
|
}
|
|
121
120
|
}
|
|
@@ -183,19 +182,19 @@ $border-width: kbq-css-variable(code-block-size-container-border-width);
|
|
|
183
182
|
border-radius: $border-radius;
|
|
184
183
|
|
|
185
184
|
&.kbq-code-block__show-more_collapsed {
|
|
186
|
-
padding-top: kbq-
|
|
185
|
+
padding-top: var(--kbq-code-block-size-collapse-collapsed-padding-top);
|
|
187
186
|
|
|
188
|
-
padding-bottom: kbq-
|
|
187
|
+
padding-bottom: var(--kbq-code-block-size-collapse-collapsed-padding-bottom);
|
|
189
188
|
}
|
|
190
189
|
|
|
191
190
|
&.kbq-code-block__show-more_expanded {
|
|
192
|
-
padding-top: kbq-
|
|
191
|
+
padding-top: var(--kbq-code-block-size-collapse-expanded-padding-top);
|
|
193
192
|
|
|
194
|
-
margin-bottom: kbq-
|
|
193
|
+
margin-bottom: var(--kbq-code-block-size-collapse-expanded-padding-bottom);
|
|
195
194
|
}
|
|
196
195
|
|
|
197
196
|
.bg-wrapper {
|
|
198
|
-
border-radius: kbq-
|
|
197
|
+
border-radius: var(--kbq-button-size-border-radius);
|
|
199
198
|
}
|
|
200
199
|
}
|
|
201
200
|
|
|
@@ -7,11 +7,11 @@
|
|
|
7
7
|
@include kbq-form-geometry();
|
|
8
8
|
|
|
9
9
|
.kbq-form__label {
|
|
10
|
-
color: kbq-
|
|
10
|
+
color: var(--kbq-forms-label);
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
.kbq-form__legend {
|
|
14
|
-
color: kbq-
|
|
14
|
+
color: var(--kbq-forms-legend);
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
|
package/core/forms/_forms.scss
CHANGED
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
.kbq-form-horizontal {
|
|
15
|
-
$line-height: kbq-
|
|
16
|
-
$form-field-size-height: kbq-
|
|
15
|
+
$line-height: var(--kbq-forms-font-label-line-height);
|
|
16
|
+
$form-field-size-height: var(--kbq-form-field-size-height);
|
|
17
17
|
|
|
18
18
|
& .kbq-form-row_margin {
|
|
19
|
-
margin-bottom: kbq-
|
|
19
|
+
margin-bottom: var(--kbq-forms-size-horizontal-row-margin-bottom);
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
& .kbq-form__label {
|
|
@@ -26,12 +26,12 @@
|
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
& .kbq-form__control {
|
|
29
|
-
padding-left: kbq-
|
|
29
|
+
padding-left: var(--kbq-forms-size-horizontal-control-padding-left);
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
& .kbq-form__legend {
|
|
33
|
-
margin-top: kbq-
|
|
34
|
-
margin-bottom: kbq-
|
|
33
|
+
margin-top: var(--kbq-forms-size-horizontal-legend-margin-top);
|
|
34
|
+
margin-bottom: var(--kbq-forms-size-horizontal-legend-margin-bottom);
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
|
|
@@ -41,12 +41,12 @@
|
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
& .kbq-form-row_margin {
|
|
44
|
-
margin-bottom: kbq-
|
|
44
|
+
margin-bottom: var(--kbq-forms-size-vertical-row-margin-bottom);
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
& .kbq-form__label {
|
|
48
|
-
padding-top: kbq-
|
|
49
|
-
padding-bottom: kbq-
|
|
48
|
+
padding-top: var(--kbq-forms-size-vertical-label-padding-top);
|
|
49
|
+
padding-bottom: var(--kbq-forms-size-vertical-label-padding-bottom);
|
|
50
50
|
|
|
51
51
|
text-align: start;
|
|
52
52
|
}
|
|
@@ -56,8 +56,8 @@
|
|
|
56
56
|
}
|
|
57
57
|
|
|
58
58
|
& .kbq-form__legend {
|
|
59
|
-
margin-top: kbq-
|
|
60
|
-
margin-bottom: kbq-
|
|
59
|
+
margin-top: var(--kbq-forms-size-vertical-legend-margin-top);
|
|
60
|
+
margin-bottom: var(--kbq-forms-size-vertical-legend-margin-bottom);
|
|
61
61
|
}
|
|
62
62
|
}
|
|
63
63
|
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
flex-direction: row;
|
|
71
71
|
|
|
72
72
|
& .kbq-form__row:not(:first-child) {
|
|
73
|
-
padding-left: kbq-
|
|
73
|
+
padding-left: var(--kbq-forms-size-vertical-control-padding-left);
|
|
74
74
|
}
|
|
75
75
|
}
|
|
76
76
|
}
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
@mixin kbq-optgroup-theme() {
|
|
4
4
|
.kbq-optgroup-label {
|
|
5
|
-
color: kbq-
|
|
5
|
+
color: var(--kbq-foreground-contrast);
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
.kbq-disabled .kbq-optgroup-label {
|
|
9
|
-
color: kbq-
|
|
9
|
+
color: var(--kbq-foreground-text-disabled);
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
12
|
|
|
@@ -3,28 +3,28 @@
|
|
|
3
3
|
@mixin kbq-option-action-theme() {
|
|
4
4
|
.kbq-option-action {
|
|
5
5
|
&.cdk-keyboard-focused {
|
|
6
|
-
border-color: kbq-
|
|
6
|
+
border-color: var(--kbq-states-focused-color);
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
&:active,
|
|
10
10
|
&.kbq-pressed {
|
|
11
11
|
& .kbq-icon {
|
|
12
|
-
color: kbq-
|
|
12
|
+
color: var(--kbq-states-icon-contrast-fade-active);
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
-
background-color: kbq-
|
|
15
|
+
background-color: var(--kbq-background-transparent);
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
&:hover .kbq-icon {
|
|
19
|
-
color: kbq-
|
|
19
|
+
color: var(--kbq-states-icon-contrast-fade-hover);
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
&.kbq-disabled {
|
|
23
23
|
& .kbq-icon {
|
|
24
|
-
color: kbq-
|
|
24
|
+
color: var(--kbq-states-icon-disabled);
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
-
background-color: kbq-
|
|
27
|
+
background-color: var(--kbq-background-transparent);
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
30
|
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
@use '../styles/common/tokens' as *;
|
|
2
2
|
|
|
3
3
|
@mixin kbq-option($style-name) {
|
|
4
|
-
background: kbq-
|
|
4
|
+
background: var(--kbq-list-#{$style-name}-container-background);
|
|
5
5
|
|
|
6
6
|
.kbq-option-text {
|
|
7
|
-
color: kbq-
|
|
7
|
+
color: var(--kbq-list-#{$style-name}-text-color);
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
.kbq-option-action .kbq-icon {
|
|
11
|
-
color: kbq-
|
|
11
|
+
color: var(--kbq-list-#{$style-name}-icon-button-color);
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
.kbq-option-caption {
|
|
15
|
-
color: kbq-
|
|
15
|
+
color: var(--kbq-list-#{$style-name}-caption-color);
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
18
|
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
|
|
27
27
|
&.kbq-focused,
|
|
28
28
|
&.kbq-active {
|
|
29
|
-
border-color: kbq-
|
|
29
|
+
border-color: var(--kbq-list-states-focused-focus-outline-color);
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
&.kbq-selected {
|
package/core/option/action.scss
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
|
|
15
15
|
margin-right: -2px;
|
|
16
16
|
|
|
17
|
-
width: kbq-
|
|
18
|
-
height: kbq-
|
|
17
|
+
width: var(--kbq-list-font-text-line-height);
|
|
18
|
+
height: var(--kbq-list-font-text-line-height);
|
|
19
19
|
|
|
20
20
|
cursor: pointer;
|
|
21
21
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Directionality } from '@angular/cdk/bidi';
|
|
2
|
-
import { ConnectedOverlayPositionChange, ConnectionPositionPair, Overlay, OverlayConfig, OverlayRef, ScrollDispatcher, ScrollStrategy } from '@angular/cdk/overlay';
|
|
2
|
+
import { ConnectedOverlayPositionChange, ConnectionPositionPair, FlexibleConnectedPositionStrategy, Overlay, OverlayConfig, OverlayRef, ScrollDispatcher, ScrollStrategy } from '@angular/cdk/overlay';
|
|
3
3
|
import { ComponentPortal } from '@angular/cdk/portal';
|
|
4
4
|
import { ElementRef, EventEmitter, NgZone, OnDestroy, OnInit, TemplateRef, Type, ViewContainerRef } from '@angular/core';
|
|
5
5
|
import { Observable, Subject, Subscription } from 'rxjs';
|
|
@@ -40,6 +40,8 @@ export declare abstract class KbqPopUpTrigger<T> implements OnInit, OnDestroy {
|
|
|
40
40
|
};
|
|
41
41
|
protected readonly destroyed: Subject<void>;
|
|
42
42
|
protected triggerName: string;
|
|
43
|
+
protected mouseEvent?: MouseEvent;
|
|
44
|
+
protected strategy: FlexibleConnectedPositionStrategy;
|
|
43
45
|
abstract updateClassMap(newPlacement?: string): void;
|
|
44
46
|
abstract updateData(): void;
|
|
45
47
|
abstract closingActions(): Observable<any>;
|
|
@@ -56,6 +58,7 @@ export declare abstract class KbqPopUpTrigger<T> implements OnInit, OnDestroy {
|
|
|
56
58
|
detach: () => void;
|
|
57
59
|
/** Create the overlay config and position strategy */
|
|
58
60
|
createOverlay(): OverlayRef;
|
|
61
|
+
resetOrigin(): void;
|
|
59
62
|
onPositionChange: ($event: ConnectedOverlayPositionChange) => void;
|
|
60
63
|
initListeners(): void;
|
|
61
64
|
/** Updates the position of the current popover. */
|
|
@@ -64,6 +67,7 @@ export declare abstract class KbqPopUpTrigger<T> implements OnInit, OnDestroy {
|
|
|
64
67
|
protected getPrioritizedPositions(): ConnectionPositionPair[];
|
|
65
68
|
protected clearListeners(): void;
|
|
66
69
|
private createListener;
|
|
70
|
+
private saveMouseEvent;
|
|
67
71
|
private addEventListener;
|
|
68
72
|
private removeEventListener;
|
|
69
73
|
private subscribeOnClosingActions;
|
|
@@ -5,28 +5,28 @@
|
|
|
5
5
|
@mixin kbq-pseudo-checkbox-color($style-name) {
|
|
6
6
|
$base: checkbox-#{$style-name};
|
|
7
7
|
|
|
8
|
-
border-color: kbq
|
|
9
|
-
background: kbq
|
|
8
|
+
border-color: var(--kbq-#{$base}-default-border);
|
|
9
|
+
background: var(--kbq-#{$base}-default-background);
|
|
10
10
|
|
|
11
11
|
& .kbq-checkbox-checkmark,
|
|
12
12
|
& .kbq-checkbox-mixedmark {
|
|
13
|
-
color: kbq
|
|
13
|
+
color: var(--kbq-#{$base}-default-color);
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
&.kbq-checked,
|
|
17
17
|
&.kbq-indeterminate {
|
|
18
|
-
border-color: kbq
|
|
19
|
-
background: kbq
|
|
18
|
+
border-color: var(--kbq-#{$base}-states-checked-border);
|
|
19
|
+
background: var(--kbq-#{$base}-states-checked-background);
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
&.kbq-disabled {
|
|
23
23
|
& .kbq-checkbox-checkmark,
|
|
24
24
|
& .kbq-checkbox-mixedmark {
|
|
25
|
-
color: kbq
|
|
25
|
+
color: var(--kbq-#{$base}-states-disabled-color);
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
-
border-color: kbq
|
|
29
|
-
background: kbq
|
|
28
|
+
border-color: var(--kbq-#{$base}-states-disabled-border);
|
|
29
|
+
background: var(--kbq-#{$base}-states-disabled-background);
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
--kbq-checkbox-theme-states-checked-focused-border: var(--kbq-states-line-focus-theme);
|
|
62
62
|
--kbq-checkbox-theme-states-checked-focused-background: var(--kbq-background-theme);
|
|
63
63
|
--kbq-checkbox-theme-states-checked-focused-outline: 1px solid var(--kbq-states-line-focus-theme);
|
|
64
|
-
--kbq-checkbox-theme-states-disabled-border: var(--kbq-line-
|
|
64
|
+
--kbq-checkbox-theme-states-disabled-border: var(--kbq-states-line-disabled);
|
|
65
65
|
--kbq-checkbox-theme-states-disabled-color: var(--kbq-states-icon-disabled);
|
|
66
66
|
--kbq-checkbox-theme-states-disabled-text: var(--kbq-states-foreground-disabled);
|
|
67
67
|
--kbq-checkbox-theme-states-disabled-background: var(--kbq-states-background-disabled);
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
--kbq-checkbox-error-states-checked-focused-border: var(--kbq-states-line-focus-error);
|
|
84
84
|
--kbq-checkbox-error-states-checked-focused-background: var(--kbq-background-error);
|
|
85
85
|
--kbq-checkbox-error-states-checked-focused-outline: 1px solid var(--kbq-states-line-focus-error);
|
|
86
|
-
--kbq-checkbox-error-states-disabled-border: var(--kbq-line-
|
|
86
|
+
--kbq-checkbox-error-states-disabled-border: var(--kbq-states-line-disabled);
|
|
87
87
|
--kbq-checkbox-error-states-disabled-color: var(--kbq-states-icon-disabled);
|
|
88
88
|
--kbq-checkbox-error-states-disabled-text: var(--kbq-states-foreground-disabled);
|
|
89
89
|
--kbq-checkbox-error-states-disabled-background: var(--kbq-states-background-disabled);
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
align-items: center;
|
|
14
14
|
justify-content: center;
|
|
15
15
|
|
|
16
|
-
width: kbq-
|
|
17
|
-
height: kbq-
|
|
16
|
+
width: var(--kbq-checkbox-size-normal-width);
|
|
17
|
+
height: var(--kbq-checkbox-size-normal-width);
|
|
18
18
|
|
|
19
19
|
border: {
|
|
20
|
-
radius: kbq-
|
|
21
|
-
width: kbq-
|
|
20
|
+
radius: var(--kbq-checkbox-size-normal-border-radius);
|
|
21
|
+
width: var(--kbq-checkbox-size-normal-border-width);
|
|
22
22
|
style: solid;
|
|
23
23
|
}
|
|
24
24
|
|
|
@@ -55,12 +55,12 @@
|
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
.kbq-pseudo-checkbox.kbq-pseudo-checkbox_big {
|
|
58
|
-
width: kbq-
|
|
59
|
-
height: kbq-
|
|
58
|
+
width: var(--kbq-checkbox-size-big-width);
|
|
59
|
+
height: var(--kbq-checkbox-size-big-width);
|
|
60
60
|
|
|
61
61
|
border: {
|
|
62
|
-
radius: kbq-
|
|
63
|
-
width: kbq-
|
|
62
|
+
radius: var(--kbq-checkbox-size-big-border-radius);
|
|
63
|
+
width: var(--kbq-checkbox-size-big-border-width);
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
66
|
|
|
@@ -45,7 +45,7 @@ $tokens: meta.module-variables(tokens) !default;
|
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
.kbq-group-item + .kbq-group-item {
|
|
48
|
-
margin-left: calc(-1 * #{kbq-
|
|
48
|
+
margin-left: calc(-1 * #{var(--kbq-button-size-border-width)});
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
& > .kbq-group-item:first-child:not(:last-child) {
|
|
@@ -81,7 +81,7 @@ $tokens: meta.module-variables(tokens) !default;
|
|
|
81
81
|
&:first-child:not(:last-child) {
|
|
82
82
|
@include border-bottom-radius(0);
|
|
83
83
|
|
|
84
|
-
border-top-right-radius: kbq-
|
|
84
|
+
border-top-right-radius: var(--kbq-button-size-border-radius);
|
|
85
85
|
|
|
86
86
|
> .kbq-form-field__container {
|
|
87
87
|
@include border-bottom-radius(0);
|
|
@@ -91,7 +91,7 @@ $tokens: meta.module-variables(tokens) !default;
|
|
|
91
91
|
&:last-child:not(:first-child) {
|
|
92
92
|
@include border-top-radius(0);
|
|
93
93
|
|
|
94
|
-
border-bottom-left-radius: kbq-
|
|
94
|
+
border-bottom-left-radius: var(--kbq-button-size-border-radius);
|
|
95
95
|
|
|
96
96
|
> .kbq-form-field__container {
|
|
97
97
|
@include border-top-radius(0);
|
|
@@ -108,6 +108,6 @@ $tokens: meta.module-variables(tokens) !default;
|
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
.kbq-group-item + .kbq-group-item {
|
|
111
|
-
margin-top: calc(-1 * #{kbq-
|
|
111
|
+
margin-top: calc(-1 * #{var(--kbq-button-size-border-width)});
|
|
112
112
|
}
|
|
113
113
|
}
|
|
@@ -64,21 +64,21 @@
|
|
|
64
64
|
outline: none;
|
|
65
65
|
-webkit-tap-highlight-color: transparent;
|
|
66
66
|
min-height: 32px;
|
|
67
|
-
gap: kbq-
|
|
67
|
+
gap: var(--kbq-size-s);
|
|
68
68
|
|
|
69
|
-
border: kbq-
|
|
69
|
+
border: var(--kbq-size-3xs) solid transparent;
|
|
70
70
|
|
|
71
|
-
padding-top: kbq-
|
|
72
|
-
padding-left: kbq-
|
|
73
|
-
padding-right: kbq-
|
|
74
|
-
padding-bottom: kbq-
|
|
71
|
+
padding-top: var(--kbq-size-xxs);
|
|
72
|
+
padding-left: var(--kbq-size-m);
|
|
73
|
+
padding-right: var(--kbq-size-m);
|
|
74
|
+
padding-bottom: var(--kbq-size-xxs);
|
|
75
75
|
|
|
76
76
|
.kbq-list-text {
|
|
77
77
|
@include kbq-list-text();
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
.kbq-list-option-caption {
|
|
81
|
-
padding-top: kbq-
|
|
81
|
+
padding-top: var(--kbq-size-3xs);
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
84
|
|
|
@@ -89,13 +89,13 @@
|
|
|
89
89
|
box-sizing: border-box;
|
|
90
90
|
min-height: 32px;
|
|
91
91
|
|
|
92
|
-
border-left: kbq-
|
|
93
|
-
border-right: kbq-
|
|
92
|
+
border-left: var(--kbq-size-3xs) solid transparent;
|
|
93
|
+
border-right: var(--kbq-size-3xs) solid transparent;
|
|
94
94
|
|
|
95
|
-
padding-top: kbq-
|
|
96
|
-
padding-left: kbq-
|
|
97
|
-
padding-right: kbq-
|
|
98
|
-
padding-bottom: kbq-
|
|
95
|
+
padding-top: var(--kbq-size-xs);
|
|
96
|
+
padding-left: var(--kbq-size-m);
|
|
97
|
+
padding-right: var(--kbq-size-m);
|
|
98
|
+
padding-bottom: var(--kbq-size-3xs);
|
|
99
99
|
|
|
100
100
|
.kbq-list-text {
|
|
101
101
|
@include kbq-list-text();
|
|
@@ -109,13 +109,13 @@
|
|
|
109
109
|
box-sizing: border-box;
|
|
110
110
|
min-height: 32px;
|
|
111
111
|
|
|
112
|
-
border-left: kbq-
|
|
113
|
-
border-right: kbq-
|
|
112
|
+
border-left: var(--kbq-size-3xs) solid transparent;
|
|
113
|
+
border-right: var(--kbq-size-3xs) solid transparent;
|
|
114
114
|
|
|
115
|
-
padding-top: kbq-
|
|
116
|
-
padding-left: kbq-
|
|
117
|
-
padding-right: kbq-
|
|
118
|
-
padding-bottom: kbq-
|
|
115
|
+
padding-top: var(--kbq-size-m);
|
|
116
|
+
padding-left: var(--kbq-size-m);
|
|
117
|
+
padding-right: var(--kbq-size-m);
|
|
118
|
+
padding-bottom: var(--kbq-size-xxs);
|
|
119
119
|
|
|
120
120
|
.kbq-list-text {
|
|
121
121
|
@include kbq-list-text();
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
@mixin popup-params($theme) {
|
|
5
5
|
$popup: map.get($theme, components, popup);
|
|
6
6
|
|
|
7
|
-
box-shadow: kbq-
|
|
8
|
-
border-color: kbq-
|
|
7
|
+
box-shadow: var(--kbq-popup-shadow, map.get($popup, shadow));
|
|
8
|
+
border-color: var(--kbq-popup-border, map.get($popup, border));
|
|
9
9
|
|
|
10
|
-
background-color: kbq-
|
|
10
|
+
background-color: var(--kbq-popup-background, map.get($popup, background));
|
|
11
11
|
}
|
|
@@ -42,7 +42,7 @@ $tokens: meta.module-variables(tokens) !default;
|
|
|
42
42
|
|
|
43
43
|
height: kbq-difference-series-css-variables(
|
|
44
44
|
[form-field-size-height,
|
|
45
|
-
calc(kbq-
|
|
45
|
+
calc(var(--kbq-form-field-size-border-width) * 2)]
|
|
46
46
|
);
|
|
47
47
|
}
|
|
48
48
|
|
|
@@ -83,17 +83,17 @@ $tokens: meta.module-variables(tokens) !default;
|
|
|
83
83
|
|
|
84
84
|
height: kbq-difference-series-css-variables(
|
|
85
85
|
[form-field-size-height,
|
|
86
|
-
calc(kbq-
|
|
86
|
+
calc(var(--kbq-select-size-multiple-padding-vertical) * 2)]
|
|
87
87
|
);
|
|
88
88
|
|
|
89
89
|
max-height: kbq-difference-series-css-variables(
|
|
90
90
|
[form-field-size-height,
|
|
91
|
-
calc(kbq-
|
|
91
|
+
calc(var(--kbq-select-size-multiple-padding-vertical) * 2)]
|
|
92
92
|
);
|
|
93
93
|
|
|
94
|
-
gap: kbq-
|
|
94
|
+
gap: var(--kbq-select-size-multiple-content-gap);
|
|
95
95
|
|
|
96
|
-
margin-right: kbq-
|
|
96
|
+
margin-right: var(--kbq-select-size-multiple-content-gap);
|
|
97
97
|
}
|
|
98
98
|
}
|
|
99
99
|
}
|
|
@@ -108,7 +108,7 @@ $tokens: meta.module-variables(tokens) !default;
|
|
|
108
108
|
flex: 0 0 70px;
|
|
109
109
|
align-self: center;
|
|
110
110
|
padding-left: 4px;
|
|
111
|
-
padding-right: kbq-
|
|
111
|
+
padding-right: var(--kbq-select-size-multiple-content-gap);
|
|
112
112
|
|
|
113
113
|
text-align: right;
|
|
114
114
|
}
|
|
@@ -146,7 +146,7 @@ $tokens: meta.module-variables(tokens) !default;
|
|
|
146
146
|
|
|
147
147
|
overflow: hidden;
|
|
148
148
|
|
|
149
|
-
border-radius: kbq-
|
|
149
|
+
border-radius: var(--kbq-select-panel-size-border-radius);
|
|
150
150
|
|
|
151
151
|
// Override optgroup and option to scale based on font-size of the trigger.
|
|
152
152
|
.kbq-optgroup-label,
|
|
@@ -163,15 +163,15 @@ $tokens: meta.module-variables(tokens) !default;
|
|
|
163
163
|
position: relative;
|
|
164
164
|
|
|
165
165
|
max-width: 100%;
|
|
166
|
-
height: kbq-
|
|
166
|
+
height: var(--kbq-option-size-height);
|
|
167
167
|
|
|
168
168
|
cursor: default;
|
|
169
169
|
outline: none;
|
|
170
170
|
|
|
171
|
-
padding-left: kbq-
|
|
172
|
-
padding-right: kbq-
|
|
171
|
+
padding-left: var(--kbq-option-size-horizontal-padding);
|
|
172
|
+
padding-right: var(--kbq-option-size-horizontal-padding);
|
|
173
173
|
|
|
174
|
-
border: kbq-
|
|
174
|
+
border: var(--kbq-option-size-border-width) solid transparent;
|
|
175
175
|
}
|
|
176
176
|
|
|
177
177
|
.kbq-select__search-container {
|
|
@@ -183,7 +183,7 @@ $tokens: meta.module-variables(tokens) !default;
|
|
|
183
183
|
}
|
|
184
184
|
|
|
185
185
|
%kbq-select-content {
|
|
186
|
-
max-height: kbq-
|
|
186
|
+
max-height: var(--kbq-select-panel-size-max-height);
|
|
187
187
|
padding: 4px 0;
|
|
188
188
|
overflow: hidden auto;
|
|
189
189
|
}
|
|
@@ -198,5 +198,5 @@ $tokens: meta.module-variables(tokens) !default;
|
|
|
198
198
|
border-top-width: 1px;
|
|
199
199
|
border-top-style: solid;
|
|
200
200
|
|
|
201
|
-
padding: kbq-
|
|
201
|
+
padding: var(--kbq-size-xxs) var(--kbq-size-m);
|
|
202
202
|
}
|