@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
|
@@ -7,32 +7,48 @@
|
|
|
7
7
|
|
|
8
8
|
$tokens: meta.module-variables(tokens) !default;
|
|
9
9
|
|
|
10
|
-
.kbq-file-upload {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
padding
|
|
16
|
-
--kbq-file-upload-size-single-
|
|
17
|
-
|
|
18
|
-
);
|
|
19
|
-
padding-bottom: var(
|
|
20
|
-
--kbq-file-upload-size-single-vertical-padding,
|
|
21
|
-
map.get($tokens, file-upload-size-single-vertical-padding)
|
|
22
|
-
);
|
|
23
|
-
padding-left: map.get($tokens, size-m);
|
|
10
|
+
.kbq-single-file-upload .kbq-file-upload {
|
|
11
|
+
$padding-vertical: map.get($tokens, file-upload-size-single-container-padding-vertical);
|
|
12
|
+
$padding-horizontal: map.get($tokens, file-upload-size-single-container-padding-horizontal);
|
|
13
|
+
$border-width: map.get($tokens, file-upload-size-single-container-border-width);
|
|
14
|
+
|
|
15
|
+
padding:
|
|
16
|
+
calc(var(--kbq-file-upload-size-single-container-padding-vertical, $padding-vertical) - $border-width)
|
|
17
|
+
calc(var(--kbq-file-upload-size-single-container-padding-horizontal, $padding-horizontal) - $border-width);
|
|
24
18
|
|
|
25
19
|
border-radius: var(
|
|
26
|
-
--kbq-file-upload-size-single-border-radius,
|
|
27
|
-
map.get($tokens, file-upload-size-single-border-radius)
|
|
20
|
+
--kbq-file-upload-size-single-container-border-radius,
|
|
21
|
+
map.get($tokens, file-upload-size-single-container-border-radius)
|
|
28
22
|
);
|
|
29
23
|
border-width: var(
|
|
30
|
-
--kbq-file-upload-size-single-border-width,
|
|
31
|
-
map.get($tokens, file-upload-size-single-border-width)
|
|
32
|
-
border-style: var(
|
|
33
|
-
--kbq-file-upload-size-single-border-style,
|
|
34
|
-
map.get($tokens, file-upload-size-single-border-style)
|
|
24
|
+
--kbq-file-upload-size-single-container-border-width,
|
|
25
|
+
map.get($tokens, file-upload-size-single-container-border-width)
|
|
35
26
|
);
|
|
27
|
+
border-style: dashed;
|
|
28
|
+
|
|
29
|
+
& .dropzone__text {
|
|
30
|
+
padding-top: var(
|
|
31
|
+
--kbq-file-upload-size-single-text-block-padding-vertical,
|
|
32
|
+
map.get($tokens, file-upload-size-single-text-block-padding-vertical)
|
|
33
|
+
);
|
|
34
|
+
|
|
35
|
+
padding-bottom: var(
|
|
36
|
+
--kbq-file-upload-size-single-text-block-padding-vertical,
|
|
37
|
+
map.get($tokens, file-upload-size-single-text-block-padding-vertical)
|
|
38
|
+
);
|
|
39
|
+
|
|
40
|
+
gap: var(
|
|
41
|
+
--kbq-file-upload-size-single-text-block-content-gap-horizontal,
|
|
42
|
+
map.get($tokens, file-upload-size-single-text-block-content-gap-horizontal)
|
|
43
|
+
);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
& .dropzone {
|
|
47
|
+
gap: var(
|
|
48
|
+
--kbq-file-upload-size-single-container-content-gap-horizontal,
|
|
49
|
+
map.get($tokens, file-upload-size-single-container-content-gap-horizontal)
|
|
50
|
+
);
|
|
51
|
+
}
|
|
36
52
|
|
|
37
53
|
.file-item {
|
|
38
54
|
width: 100%;
|
|
@@ -42,8 +58,12 @@ $tokens: meta.module-variables(tokens) !default;
|
|
|
42
58
|
align-items: center;
|
|
43
59
|
width: 100%;
|
|
44
60
|
|
|
61
|
+
gap: var(
|
|
62
|
+
--kbq-file-upload-size-single-container-content-gap-horizontal,
|
|
63
|
+
map.get($tokens, file-upload-size-single-container-content-gap-horizontal)
|
|
64
|
+
);
|
|
65
|
+
|
|
45
66
|
.file-item__text {
|
|
46
|
-
margin-left: map.get($tokens, size-s);
|
|
47
67
|
width: 120px;
|
|
48
68
|
flex-grow: 1;
|
|
49
69
|
}
|
|
@@ -75,11 +75,8 @@
|
|
|
75
75
|
&.kbq-disabled {
|
|
76
76
|
@include kbq-form-field-state($disabled);
|
|
77
77
|
|
|
78
|
-
.kbq-icon
|
|
79
|
-
.kbq-input,
|
|
80
|
-
.kbq-textarea {
|
|
78
|
+
.kbq-icon {
|
|
81
79
|
color: map.get($disabled, text);
|
|
82
|
-
background: map.get($disabled, background);
|
|
83
80
|
-webkit-text-fill-color: map.get($disabled, text);
|
|
84
81
|
}
|
|
85
82
|
}
|
|
@@ -103,10 +100,10 @@
|
|
|
103
100
|
$tokens: map.get($config, tokens);
|
|
104
101
|
|
|
105
102
|
.kbq-form-field {
|
|
106
|
-
@include kbq-typography-level-to-styles($config, map.get($tokens, form-field-font-
|
|
103
|
+
@include kbq-typography-level-to-styles($config, map.get($tokens, form-field-font-text));
|
|
107
104
|
}
|
|
108
105
|
|
|
109
|
-
.kbq-form-field__hint > .kbq-hint {
|
|
106
|
+
.kbq-form-field__hint > .kbq-hint .kbq-hint__text {
|
|
110
107
|
@include kbq-typography-level-to-styles($config, map.get($tokens, form-field-hint-font-text));
|
|
111
108
|
}
|
|
112
109
|
}
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
color: map.get($hint, text);
|
|
10
10
|
|
|
11
11
|
& .kbq-icon {
|
|
12
|
-
color: map.get($hint, icon);
|
|
12
|
+
color: map.get($hint, icon) !important;
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
|
|
@@ -62,6 +62,10 @@
|
|
|
62
62
|
$tokens: map.get($config, tokens);
|
|
63
63
|
|
|
64
64
|
.kbq-hint .kbq-hint__text {
|
|
65
|
-
@include kbq-typography-level-to-styles($config, map.get($tokens, hint-font-text));
|
|
65
|
+
@include kbq-typography-level-to-styles($config, map.get($tokens, hint-font-normal-text));
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.kbq-hint.kbq-hint_compact .kbq-hint__text {
|
|
69
|
+
@include kbq-typography-level-to-styles($config, map.get($tokens, hint-font-compact-text));
|
|
66
70
|
}
|
|
67
71
|
}
|
package/form-field/cleaner.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class KbqCleaner {
|
|
3
3
|
static ɵfac: i0.ɵɵFactoryDeclaration<KbqCleaner, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KbqCleaner, "kbq-cleaner", ["
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KbqCleaner, "kbq-cleaner", ["kbqCleaner"], {}, {}, never, never, false, never>;
|
|
5
5
|
}
|
|
@@ -36,7 +36,6 @@ export declare class KbqFormField extends KbqFormFieldMixinBase implements After
|
|
|
36
36
|
canCleanerClearByEsc: boolean;
|
|
37
37
|
private $unsubscribe;
|
|
38
38
|
get hasHint(): boolean;
|
|
39
|
-
get hasPasswordStrengthError(): boolean;
|
|
40
39
|
get hasSuffix(): boolean;
|
|
41
40
|
get hasPrefix(): boolean;
|
|
42
41
|
get hasCleaner(): boolean;
|
|
@@ -66,11 +65,11 @@ export declare class KbqFormField extends KbqFormFieldMixinBase implements After
|
|
|
66
65
|
/** Throws an error if the form field's control is missing. */
|
|
67
66
|
protected validateControlChild(): void;
|
|
68
67
|
static ɵfac: i0.ɵɵFactoryDeclaration<KbqFormField, never>;
|
|
69
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KbqFormField, "kbq-form-field", ["
|
|
68
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KbqFormField, "kbq-form-field", ["kbqFormField"], { "color": { "alias": "color"; "required": false; }; }, {}, ["control", "stepper", "cleaner", "passwordToggle", "hint", "passwordHints", "suffix", "prefix"], ["[kbqPrefix]", "*", "[kbqSuffix]", "kbq-cleaner", "kbq-password-toggle", "kbq-stepper", "kbq-hint, kbq-password-hint"], false, never>;
|
|
70
69
|
}
|
|
71
70
|
export declare class KbqFormFieldWithoutBorders {
|
|
72
71
|
static ɵfac: i0.ɵɵFactoryDeclaration<KbqFormFieldWithoutBorders, never>;
|
|
73
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<KbqFormFieldWithoutBorders, "kbq-form-field[
|
|
72
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<KbqFormFieldWithoutBorders, "kbq-form-field[kbqFormFieldWithoutBorders]", ["kbqFormFieldWithoutBorders"], {}, {}, never, never, false, never>;
|
|
74
73
|
}
|
|
75
74
|
export declare class KbqTrim {
|
|
76
75
|
private readonly noTrim;
|
|
@@ -80,5 +79,5 @@ export declare class KbqTrim {
|
|
|
80
79
|
trim(value: any): any;
|
|
81
80
|
private registerOnChange;
|
|
82
81
|
static ɵfac: i0.ɵɵFactoryDeclaration<KbqTrim, [{ attribute: "no-trim"; }, { optional: true; self: true; }]>;
|
|
83
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<KbqTrim, "[
|
|
82
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<KbqTrim, "[kbqInput], [kbqTextarea]", ["KbqTrim"], {}, {}, never, never, false, never>;
|
|
84
83
|
}
|
|
@@ -38,8 +38,8 @@ $tokens: meta.module-variables(tokens) !default;
|
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
&.kbq-form-field_without-borders .kbq-form-field__container {
|
|
41
|
-
border-color: transparent;
|
|
42
|
-
box-shadow: none;
|
|
41
|
+
border-color: transparent !important;
|
|
42
|
+
box-shadow: none !important;
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
&.kbq-form-field_has-prefix {
|
package/form-field/hint.d.ts
CHANGED
|
@@ -11,7 +11,10 @@ export declare const KbqHintMixinBase: CanColorCtor & typeof KbqHintBase;
|
|
|
11
11
|
export declare class KbqHint extends KbqHintMixinBase {
|
|
12
12
|
id: string;
|
|
13
13
|
fillTextOff: boolean;
|
|
14
|
+
get compact(): any;
|
|
15
|
+
set compact(value: any);
|
|
16
|
+
private _compact;
|
|
14
17
|
constructor(elementRef: ElementRef);
|
|
15
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<KbqHint, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KbqHint, "kbq-hint", ["
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KbqHint, "kbq-hint", ["kbqHint"], { "color": { "alias": "color"; "required": false; }; "id": { "alias": "id"; "required": false; }; "fillTextOff": { "alias": "fillTextOff"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; }, {}, never, ["[kbq-icon]", "*"], false, never>;
|
|
17
20
|
}
|
package/form-field/hint.scss
CHANGED
|
@@ -10,6 +10,14 @@ $tokens: meta.module-variables(tokens) !default;
|
|
|
10
10
|
display: block;
|
|
11
11
|
|
|
12
12
|
& .kbq-icon {
|
|
13
|
-
margin-right: var(--kbq-hint-size-content-padding, map-get($tokens, hint-size-content-padding));
|
|
13
|
+
margin-right: var(--kbq-hint-size-normal-content-padding, map-get($tokens, hint-size-normal-content-padding));
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
&.kbq-hint_compact {
|
|
17
|
+
& .kbq-icon {
|
|
18
|
+
margin-right: var(
|
|
19
|
+
--kbq-hint-size-compact-content-padding, map-get($tokens, hint-size-compact-content-padding)
|
|
20
|
+
);
|
|
21
|
+
}
|
|
14
22
|
}
|
|
15
23
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { AfterContentInit, ChangeDetectorRef } from '@angular/core';
|
|
1
|
+
import { AfterContentInit, ChangeDetectorRef, QueryList } from '@angular/core';
|
|
2
|
+
import { KbqFormField } from './form-field';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare enum PasswordRules {
|
|
4
5
|
Length = 0,
|
|
@@ -14,6 +15,7 @@ export declare const regExpPasswordValidator: {
|
|
|
14
15
|
3: RegExp;
|
|
15
16
|
4: RegExp;
|
|
16
17
|
};
|
|
18
|
+
export declare const hasPasswordStrengthError: (passwordHints: QueryList<KbqPasswordHint>) => boolean;
|
|
17
19
|
export declare class KbqPasswordHint implements AfterContentInit {
|
|
18
20
|
private changeDetectorRef;
|
|
19
21
|
private formField;
|
|
@@ -22,6 +24,8 @@ export declare class KbqPasswordHint implements AfterContentInit {
|
|
|
22
24
|
min: number;
|
|
23
25
|
max: number;
|
|
24
26
|
regex: RegExp | null;
|
|
27
|
+
customCheckRule: (value: string) => boolean;
|
|
28
|
+
viewFormField?: KbqFormField;
|
|
25
29
|
hasError: boolean;
|
|
26
30
|
checked: boolean;
|
|
27
31
|
get icon(): string;
|
|
@@ -35,6 +39,6 @@ export declare class KbqPasswordHint implements AfterContentInit {
|
|
|
35
39
|
private checkRegexRule;
|
|
36
40
|
private checkSpecialSymbolsRegexRule;
|
|
37
41
|
private isValueChanged;
|
|
38
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KbqPasswordHint,
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KbqPasswordHint, "kbq-password-hint", never, { "id": { "alias": "id"; "required": false; }; "rule": { "alias": "rule"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "regex": { "alias": "regex"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KbqPasswordHint, [null, { optional: true; }]>;
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KbqPasswordHint, "kbq-password-hint", never, { "id": { "alias": "id"; "required": false; }; "rule": { "alias": "rule"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "regex": { "alias": "regex"; "required": false; }; "customCheckRule": { "alias": "checkRule"; "required": false; }; "viewFormField": { "alias": "viewFormField"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
40
44
|
}
|
|
@@ -1,18 +1,24 @@
|
|
|
1
1
|
import { Directionality } from '@angular/cdk/bidi';
|
|
2
2
|
import { Overlay, ScrollDispatcher } from '@angular/cdk/overlay';
|
|
3
|
-
import { ElementRef, NgZone, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
3
|
+
import { AfterViewInit, ChangeDetectorRef, ElementRef, NgZone, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
4
4
|
import { KbqFormFieldRef } from '@koobiq/components/core';
|
|
5
|
+
import { KbqIconButton } from '@koobiq/components/icon';
|
|
5
6
|
import { KbqTooltipTrigger } from '@koobiq/components/tooltip';
|
|
6
7
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class KbqPasswordToggle extends KbqTooltipTrigger {
|
|
8
|
+
export declare class KbqPasswordToggle extends KbqTooltipTrigger implements AfterViewInit {
|
|
8
9
|
private formField;
|
|
10
|
+
private changeDetector;
|
|
11
|
+
icon: KbqIconButton;
|
|
9
12
|
get content(): string | TemplateRef<any>;
|
|
10
13
|
set content(content: string | TemplateRef<any>);
|
|
11
|
-
|
|
14
|
+
kbqTooltipHidden: string | TemplateRef<any>;
|
|
12
15
|
get hidden(): boolean;
|
|
13
|
-
get
|
|
14
|
-
|
|
16
|
+
get iconClass(): string;
|
|
17
|
+
get visibility(): string;
|
|
18
|
+
constructor(overlay: Overlay, elementRef: ElementRef, ngZone: NgZone, scrollDispatcher: ScrollDispatcher, hostView: ViewContainerRef, scrollStrategy: any, direction: Directionality, formField: KbqFormFieldRef, changeDetector: ChangeDetectorRef);
|
|
19
|
+
ngAfterViewInit(): void;
|
|
15
20
|
toggle(event: KeyboardEvent): void;
|
|
16
|
-
|
|
17
|
-
static
|
|
21
|
+
private updateState;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KbqPasswordToggle, [null, null, null, null, null, null, { optional: true; }, null, null]>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KbqPasswordToggle, "kbq-password-toggle", ["kbqPasswordToggle"], { "content": { "alias": "kbqTooltipNotHidden"; "required": false; }; "kbqTooltipHidden": { "alias": "kbqTooltipHidden"; "required": false; }; }, {}, never, never, false, never>;
|
|
18
24
|
}
|
package/form-field/prefix.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class KbqPrefix {
|
|
3
3
|
static ɵfac: i0.ɵɵFactoryDeclaration<KbqPrefix, never>;
|
|
4
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<KbqPrefix, "[
|
|
4
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<KbqPrefix, "[kbqPrefix]", never, {}, {}, never, never, false, never>;
|
|
5
5
|
}
|
package/form-field/suffix.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class KbqSuffix {
|
|
3
3
|
static ɵfac: i0.ɵɵFactoryDeclaration<KbqSuffix, never>;
|
|
4
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<KbqSuffix, "[
|
|
4
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<KbqSuffix, "[kbqSuffix]", never, {}, {}, never, never, false, never>;
|
|
5
5
|
}
|
|
@@ -29,5 +29,5 @@ export declare class KbqValidateDirective implements AfterContentInit {
|
|
|
29
29
|
setMosaicValidationForModelControl(): void;
|
|
30
30
|
setMosaicValidationForFormControl(): void;
|
|
31
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<KbqValidateDirective, [null, { optional: true; self: true; }, { optional: true; self: true; }, { optional: true; }, { optional: true; }, { optional: true; }, null]>;
|
|
32
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<KbqValidateDirective, " input[
|
|
32
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<KbqValidateDirective, " input[kbqInput], input[kbqInputPassword], input[kbqTimepicker], input[kbqDatepicker], textarea[kbqTextarea], kbq-select, kbq-tree-select, kbq-tag-list ", ["KbqValidate"], {}, {}, never, never, false, never>;
|
|
33
33
|
}
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
@use 'sass:map';
|
|
2
|
+
|
|
3
|
+
@use '../core/styles/theming/theming' as *;
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
@mixin kbq-icon-button-theme($themeObj) {
|
|
7
|
+
$icon-button: map.get(map.get($themeObj, components), icon-button);
|
|
8
|
+
|
|
9
|
+
$theme: map.get($icon-button, theme);
|
|
10
|
+
$contrast: map.get($icon-button, contrast);
|
|
11
|
+
$fade-contrast: map.get($icon-button, fade-contrast);
|
|
12
|
+
$error: map.get($icon-button, error);
|
|
13
|
+
$success: map.get($icon-button, success);
|
|
14
|
+
$warning: map.get($icon-button, warning);
|
|
15
|
+
|
|
16
|
+
.kbq-icon-button {
|
|
17
|
+
&:focus {
|
|
18
|
+
outline: none;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
&.kbq-theme {
|
|
22
|
+
color: map.get($theme, default);
|
|
23
|
+
|
|
24
|
+
&:active,
|
|
25
|
+
&.kbq-active {
|
|
26
|
+
color: map.get($theme, state-active);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&:not(.kbq-disabled):hover {
|
|
30
|
+
color: map.get($theme, state-hover);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
&.kbq-disabled {
|
|
34
|
+
color: map.get($theme, state-disabled);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
&.kbq-contrast {
|
|
39
|
+
color: map.get($contrast, default);
|
|
40
|
+
|
|
41
|
+
&:active,
|
|
42
|
+
&.kbq-active {
|
|
43
|
+
color: map.get($contrast, state-active);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
&:not(.kbq-disabled):hover {
|
|
47
|
+
color: map.get($contrast, state-hover);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
&.kbq-disabled {
|
|
51
|
+
color: map.get($contrast, state-disabled);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
&.kbq-contrast-fade {
|
|
56
|
+
color: map.get($fade-contrast, default);
|
|
57
|
+
|
|
58
|
+
&:active,
|
|
59
|
+
&.kbq-active {
|
|
60
|
+
color: map.get($fade-contrast, state-active);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
&:not(.kbq-disabled):hover {
|
|
64
|
+
color: map.get($fade-contrast, state-hover);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
&.kbq-disabled {
|
|
68
|
+
color: map.get($fade-contrast, state-disabled);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
&.kbq-error {
|
|
73
|
+
color: map.get($error, default);
|
|
74
|
+
|
|
75
|
+
&:active,
|
|
76
|
+
&.kbq-active {
|
|
77
|
+
color: map.get($error, state-active);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
&:not(.kbq-disabled):hover {
|
|
81
|
+
color: map.get($error, state-hover);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
&.kbq-disabled {
|
|
85
|
+
color: map.get($error, state-disabled);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
&.kbq-success {
|
|
90
|
+
color: map.get($success, default);
|
|
91
|
+
|
|
92
|
+
&:active,
|
|
93
|
+
&.kbq-active {
|
|
94
|
+
color: map.get($success, state-active);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
&:not(.kbq-disabled):hover {
|
|
98
|
+
color: map.get($success, state-hover);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
&.kbq-disabled {
|
|
102
|
+
color: map.get($success, state-disabled);
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
&.kbq-warning {
|
|
107
|
+
color: map.get($warning, default);
|
|
108
|
+
|
|
109
|
+
&:active,
|
|
110
|
+
&.kbq-active {
|
|
111
|
+
color: map.get($warning, state-active);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
&:not(.kbq-disabled):hover {
|
|
115
|
+
color: map.get($warning, state-hover);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
&.kbq-disabled {
|
|
119
|
+
color: map.get($warning, state-disabled);
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
&.cdk-keyboard-focused {
|
|
124
|
+
box-shadow:
|
|
125
|
+
inset 0 0 0 1px map.get(map.get($themeObj, states), focused-color),
|
|
126
|
+
0 0 0 1px map.get(map.get($themeObj, states), focused-color);
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
@use 'sass:map';
|
|
2
|
+
|
|
3
|
+
@use '../core/styles/theming/theming' as *;
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
@mixin kbq-icon-item-theme($themeObj) {
|
|
7
|
+
$icon-item: map.get(map.get($themeObj, components), icon-item);
|
|
8
|
+
|
|
9
|
+
$theme: map.get($icon-item, theme);
|
|
10
|
+
$contrast: map.get($icon-item, contrast);
|
|
11
|
+
$fade-contrast: map.get($icon-item, fade-contrast);
|
|
12
|
+
$error: map.get($icon-item, error);
|
|
13
|
+
$success: map.get($icon-item, success);
|
|
14
|
+
|
|
15
|
+
.kbq-icon-item {
|
|
16
|
+
&.kbq-theme {
|
|
17
|
+
color: map.get($theme, color);
|
|
18
|
+
background: map.get($theme, background);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
&.kbq-contrast {
|
|
22
|
+
color: map.get($contrast, color);
|
|
23
|
+
background: map.get($contrast, background);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&.kbq-contrast-fade {
|
|
27
|
+
color: map.get($fade-contrast, color);
|
|
28
|
+
background: map.get($fade-contrast, background);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&.kbq-error {
|
|
32
|
+
color: map.get($error, color);
|
|
33
|
+
background: map.get($error, background);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
&.kbq-success {
|
|
37
|
+
color: map.get($success, color);
|
|
38
|
+
background: map.get($success, background);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|