@koobiq/components 17.0.0-beta.2 → 17.0.0-rc.10
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/README.md +1 -2
- package/alert/_alert-theme.scss +48 -24
- package/alert/alert.component.d.ts +23 -3
- package/alert/alert.component.scss +91 -59
- package/autocomplete/_autocomplete-theme.scss +3 -3
- package/autocomplete/autocomplete.scss +8 -18
- package/badge/_badge-theme.scss +30 -45
- package/badge/badge.component.scss +18 -39
- package/button/_button-base.scss +7 -14
- package/button/_button-theme.scss +30 -86
- package/button/button.component.d.ts +3 -2
- package/button/button.scss +7 -17
- package/button-toggle/_button-toggle-theme.scss +19 -20
- package/button-toggle/button-toggle.scss +17 -44
- package/card/_card-theme.scss +18 -17
- package/card/card.component.scss +3 -6
- package/checkbox/_checkbox-theme.scss +50 -50
- package/checkbox/checkbox.scss +31 -35
- package/code-block/README.md +18 -14
- package/code-block/_code-block-theme.scss +53 -23
- package/code-block/actionbar.component.scss +11 -25
- package/code-block/code-block.component.d.ts +12 -4
- package/code-block/code-block.scss +62 -77
- package/core/form-field/form-field-ref.d.ts +2 -0
- package/core/forms/_forms-theme.scss +4 -8
- package/core/forms/_forms.scss +13 -43
- package/core/locales/formatters.d.ts +96 -0
- package/core/locales/locale-service.d.ts +97 -0
- package/core/option/_optgroup-theme.scss +4 -6
- package/core/option/_option-action-theme.scss +8 -11
- package/core/option/_option-theme.scss +15 -20
- package/core/option/optgroup.scss +0 -1
- package/core/option/option.scss +0 -1
- package/core/pop-up/_pop-up.scss +0 -1
- package/core/pop-up/pop-up-trigger.d.ts +3 -1
- package/core/select/common.d.ts +35 -0
- package/core/select/index.d.ts +1 -0
- package/core/selection/pseudo-checkbox/_pseudo-checkbox-theme.scss +15 -19
- package/core/selection/pseudo-checkbox/pseudo-checkbox.scss +9 -9
- package/core/services/theme.service.d.ts +3 -2
- package/core/styles/_core.scss +0 -1
- package/core/styles/_koobiq-theme.scss +5 -3
- package/core/styles/common/_animation.scss +9 -8
- package/core/styles/common/_button.scss +0 -2
- package/core/styles/common/_clearfix.scss +1 -1
- package/core/styles/common/_groups.scss +3 -9
- package/core/styles/common/_list.scss +28 -31
- package/core/styles/common/_overlay.scss +4 -3
- package/core/styles/common/_popup.scss +5 -5
- package/core/styles/common/_rtl.scss +4 -4
- package/core/styles/common/_select.scss +48 -42
- package/core/styles/common/_tokens.scss +47 -0
- package/core/styles/functions/_number.scss +14 -19
- package/core/styles/functions/_string.scss +18 -19
- package/core/styles/functions/_timing.scss +24 -24
- package/core/styles/theming/_components-theming.scss +1380 -1384
- package/core/styles/theming/_scrollbar-theme.scss +8 -5
- package/core/styles/theming/_theming.scss +26 -29
- package/core/styles/typography/_typography-utils.scss +1 -2
- package/core/styles/typography/_typography.scss +138 -85
- package/core/styles/visual/_body.scss +0 -2
- package/core/styles/visual/_layout.scss +44 -38
- package/core/utils/data-size/config.d.ts +20 -2
- package/core/utils/data-size/data-size.pipe.d.ts +10 -9
- package/core/utils/data-size/size.d.ts +3 -4
- package/datepicker/_datepicker-theme.scss +38 -40
- package/datepicker/calendar-body.scss +3 -11
- package/datepicker/calendar-header.scss +4 -10
- package/datepicker/calendar.scss +5 -17
- package/datepicker/datepicker-content.scss +5 -15
- package/datepicker/datepicker-input.scss +0 -5
- package/datepicker/datepicker-toggle.scss +3 -3
- package/divider/_divider-theme.scss +2 -1
- package/divider/divider.scss +9 -26
- package/dl/_dl-theme.scss +5 -8
- package/dl/dl.scss +5 -20
- package/dropdown/_dropdown-theme.scss +27 -22
- package/dropdown/dropdown-item.scss +5 -12
- package/dropdown/dropdown-trigger.directive.d.ts +2 -2
- package/dropdown/dropdown.scss +6 -15
- package/ellipsis-center/ellipsis-center.directive.d.ts +3 -2
- package/empty-state/README.md +0 -0
- package/empty-state/_empty-state-theme.scss +56 -0
- package/empty-state/empty-state.component.d.ts +31 -0
- package/empty-state/empty-state.module.d.ts +10 -0
- package/empty-state/empty-state.scss +81 -0
- package/empty-state/index.d.ts +1 -0
- package/empty-state/public-api.d.ts +2 -0
- package/esm2022/alert/alert.component.mjs +52 -5
- package/esm2022/badge/badge.component.mjs +2 -2
- package/esm2022/button/button.component.mjs +13 -6
- package/esm2022/button-toggle/button-toggle.component.mjs +2 -2
- package/esm2022/checkbox/checkbox.mjs +2 -2
- package/esm2022/code-block/actionbar.component.mjs +2 -2
- package/esm2022/code-block/code-block.component.mjs +58 -14
- package/esm2022/core/animation/select-animations.mjs +4 -4
- package/esm2022/core/form-field/form-field-ref.mjs +1 -1
- package/esm2022/core/locales/formatters.mjs +97 -1
- package/esm2022/core/locales/locale-service.mjs +5 -2
- package/esm2022/core/option/option.mjs +2 -2
- package/esm2022/core/pop-up/pop-up-trigger.mjs +18 -11
- package/esm2022/core/select/common.mjs +120 -0
- package/esm2022/core/select/index.mjs +2 -1
- package/esm2022/core/services/theme.service.mjs +4 -1
- package/esm2022/core/utils/data-size/config.mjs +5 -17
- package/esm2022/core/utils/data-size/data-size.pipe.mjs +36 -22
- package/esm2022/core/utils/data-size/size.mjs +10 -14
- package/esm2022/core/version.mjs +2 -2
- package/esm2022/datepicker/calendar-header.component.mjs +1 -1
- package/esm2022/datepicker/datepicker-animations.mjs +2 -2
- package/esm2022/dropdown/dropdown-animations.mjs +4 -4
- package/esm2022/dropdown/dropdown-item.component.mjs +2 -2
- package/esm2022/dropdown/dropdown-trigger.directive.mjs +4 -4
- package/esm2022/ellipsis-center/ellipsis-center.directive.mjs +7 -5
- package/esm2022/empty-state/empty-state.component.mjs +104 -0
- package/esm2022/empty-state/empty-state.module.mjs +50 -0
- package/esm2022/empty-state/index.mjs +2 -0
- package/esm2022/empty-state/koobiq-components-empty-state.mjs +5 -0
- package/esm2022/empty-state/public-api.mjs +3 -0
- package/esm2022/file-upload/file-upload.mjs +15 -1
- package/esm2022/file-upload/file-upload.module.mjs +15 -5
- package/esm2022/file-upload/multiple-file-upload.component.mjs +98 -49
- package/esm2022/file-upload/single-file-upload.component.mjs +110 -54
- package/esm2022/form-field/form-field.mjs +2 -2
- package/esm2022/form-field/hint.mjs +2 -2
- package/esm2022/form-field/password-hint.mjs +2 -2
- package/esm2022/form-field/password-toggle.mjs +11 -9
- package/esm2022/icon/icon-item.component.mjs +16 -6
- package/esm2022/input/input-number.mjs +2 -2
- package/esm2022/list/list-selection.component.mjs +2 -2
- package/esm2022/list/list.component.mjs +2 -2
- package/esm2022/loader-overlay/loader-overlay.component.mjs +2 -2
- package/esm2022/markdown/markdown.component.mjs +2 -2
- package/esm2022/modal/modal.component.mjs +8 -9
- package/esm2022/navbar/navbar-item.component.mjs +11 -11
- package/esm2022/navbar/navbar.component.mjs +2 -2
- package/esm2022/navbar/vertical-navbar.component.mjs +2 -2
- package/esm2022/popover/popover-confirm.component.mjs +3 -3
- package/esm2022/popover/popover.component.mjs +3 -3
- package/esm2022/radio/radio.component.mjs +2 -2
- package/esm2022/scrollbar/scrollbar.component.mjs +2 -2
- package/esm2022/select/select-option.directive.mjs +7 -5
- package/esm2022/select/select.component.mjs +71 -125
- package/esm2022/select/select.module.mjs +28 -28
- package/esm2022/splitter/splitter.component.mjs +37 -17
- package/esm2022/table/table.component.mjs +29 -6
- package/esm2022/table/table.module.mjs +14 -6
- package/esm2022/tabs/tab-body.component.mjs +1 -1
- package/esm2022/tabs/tab-group.component.mjs +55 -13
- package/esm2022/tabs/tab-header.component.mjs +2 -2
- package/esm2022/tabs/tab-nav-bar/tab-nav-bar.mjs +2 -2
- package/esm2022/tags/tag-default-options.mjs +1 -1
- package/esm2022/tags/tag-input.mjs +17 -3
- package/esm2022/tags/tag-list.component.mjs +2 -2
- package/esm2022/tags/tag.component.mjs +4 -4
- package/esm2022/textarea/textarea.component.mjs +12 -10
- package/esm2022/timepicker/timepicker.directive.mjs +11 -3
- package/esm2022/timezone/timezone-option.component.mjs +2 -2
- package/esm2022/timezone/timezone-option.directive.mjs +7 -5
- package/esm2022/timezone/timezone-select.component.mjs +5 -5
- package/esm2022/title/title.directive.mjs +3 -4
- package/esm2022/toast/toast-container.component.mjs +2 -2
- package/esm2022/toast/toast.component.mjs +4 -4
- package/esm2022/toast/toast.service.mjs +18 -13
- package/esm2022/toast/toast.type.mjs +3 -1
- package/esm2022/tooltip/tooltip.component.mjs +28 -14
- package/esm2022/tree/padding.directive.mjs +2 -2
- package/esm2022/tree/tree-base.mjs +2 -2
- package/esm2022/tree/tree-option.component.mjs +2 -2
- package/esm2022/tree/tree-selection.component.mjs +6 -1
- package/esm2022/tree-select/tree-select.component.mjs +29 -44
- package/esm2022/tree-select/tree-select.module.mjs +31 -11
- package/fesm2022/koobiq-components-alert.mjs +52 -5
- package/fesm2022/koobiq-components-alert.mjs.map +1 -1
- package/fesm2022/koobiq-components-badge.mjs +2 -2
- package/fesm2022/koobiq-components-badge.mjs.map +1 -1
- package/fesm2022/koobiq-components-button-toggle.mjs +2 -2
- package/fesm2022/koobiq-components-button-toggle.mjs.map +1 -1
- package/fesm2022/koobiq-components-button.mjs +12 -5
- package/fesm2022/koobiq-components-button.mjs.map +1 -1
- package/fesm2022/koobiq-components-checkbox.mjs +2 -2
- package/fesm2022/koobiq-components-checkbox.mjs.map +1 -1
- package/fesm2022/koobiq-components-code-block.mjs +57 -14
- package/fesm2022/koobiq-components-code-block.mjs.map +1 -1
- package/fesm2022/koobiq-components-core.mjs +285 -67
- package/fesm2022/koobiq-components-core.mjs.map +1 -1
- package/fesm2022/koobiq-components-datepicker.mjs +2 -2
- package/fesm2022/koobiq-components-datepicker.mjs.map +1 -1
- package/fesm2022/koobiq-components-dropdown.mjs +8 -8
- package/fesm2022/koobiq-components-dropdown.mjs.map +1 -1
- package/fesm2022/koobiq-components-ellipsis-center.mjs +5 -4
- package/fesm2022/koobiq-components-ellipsis-center.mjs.map +1 -1
- package/fesm2022/koobiq-components-empty-state.mjs +157 -0
- package/fesm2022/koobiq-components-empty-state.mjs.map +1 -0
- package/fesm2022/koobiq-components-file-upload.mjs +225 -97
- package/fesm2022/koobiq-components-file-upload.mjs.map +1 -1
- package/fesm2022/koobiq-components-form-field.mjs +21 -21
- package/fesm2022/koobiq-components-form-field.mjs.map +1 -1
- package/fesm2022/koobiq-components-icon.mjs +14 -4
- package/fesm2022/koobiq-components-icon.mjs.map +1 -1
- package/fesm2022/koobiq-components-input.mjs +1 -1
- package/fesm2022/koobiq-components-input.mjs.map +1 -1
- package/fesm2022/koobiq-components-list.mjs +4 -4
- package/fesm2022/koobiq-components-list.mjs.map +1 -1
- package/fesm2022/koobiq-components-loader-overlay.mjs +1 -1
- package/fesm2022/koobiq-components-loader-overlay.mjs.map +1 -1
- package/fesm2022/koobiq-components-markdown.mjs +2 -2
- package/fesm2022/koobiq-components-modal.mjs +7 -8
- package/fesm2022/koobiq-components-modal.mjs.map +1 -1
- package/fesm2022/koobiq-components-navbar.mjs +14 -14
- package/fesm2022/koobiq-components-navbar.mjs.map +1 -1
- package/fesm2022/koobiq-components-popover.mjs +4 -4
- package/fesm2022/koobiq-components-popover.mjs.map +1 -1
- package/fesm2022/koobiq-components-radio.mjs +2 -2
- package/fesm2022/koobiq-components-radio.mjs.map +1 -1
- package/fesm2022/koobiq-components-scrollbar.mjs +2 -2
- package/fesm2022/koobiq-components-scrollbar.mjs.map +1 -1
- package/fesm2022/koobiq-components-select.mjs +102 -155
- package/fesm2022/koobiq-components-select.mjs.map +1 -1
- package/fesm2022/koobiq-components-splitter.mjs +36 -16
- package/fesm2022/koobiq-components-splitter.mjs.map +1 -1
- package/fesm2022/koobiq-components-table.mjs +41 -10
- package/fesm2022/koobiq-components-table.mjs.map +1 -1
- package/fesm2022/koobiq-components-tabs.mjs +57 -15
- package/fesm2022/koobiq-components-tabs.mjs.map +1 -1
- package/fesm2022/koobiq-components-tags.mjs +21 -8
- package/fesm2022/koobiq-components-tags.mjs.map +1 -1
- package/fesm2022/koobiq-components-textarea.mjs +11 -9
- package/fesm2022/koobiq-components-textarea.mjs.map +1 -1
- package/fesm2022/koobiq-components-timepicker.mjs +10 -2
- package/fesm2022/koobiq-components-timepicker.mjs.map +1 -1
- package/fesm2022/koobiq-components-timezone.mjs +11 -10
- package/fesm2022/koobiq-components-timezone.mjs.map +1 -1
- package/fesm2022/koobiq-components-title.mjs +2 -3
- package/fesm2022/koobiq-components-title.mjs.map +1 -1
- package/fesm2022/koobiq-components-toast.mjs +25 -17
- package/fesm2022/koobiq-components-toast.mjs.map +1 -1
- package/fesm2022/koobiq-components-tooltip.mjs +26 -13
- package/fesm2022/koobiq-components-tooltip.mjs.map +1 -1
- package/fesm2022/koobiq-components-tree-select.mjs +57 -51
- package/fesm2022/koobiq-components-tree-select.mjs.map +1 -1
- package/fesm2022/koobiq-components-tree.mjs +9 -4
- package/fesm2022/koobiq-components-tree.mjs.map +1 -1
- package/file-upload/_file-upload-theme.scss +124 -73
- package/file-upload/file-upload.d.ts +1 -1
- package/file-upload/file-upload.module.d.ts +11 -9
- package/file-upload/file-upload.scss +0 -6
- package/file-upload/multiple-file-upload.component.d.ts +38 -10
- package/file-upload/multiple-file-upload.component.scss +50 -120
- package/file-upload/single-file-upload.component.d.ts +40 -13
- package/file-upload/single-file-upload.component.scss +12 -33
- package/form-field/_form-field-theme.scss +46 -36
- package/form-field/_hint-theme.scss +15 -20
- package/form-field/cleaner.scss +3 -9
- package/form-field/form-field.scss +23 -26
- package/form-field/hint.scss +5 -8
- package/form-field/password-toggle.d.ts +3 -2
- package/form-field/password-toggle.scss +3 -10
- package/form-field/stepper.scss +4 -11
- package/icon/_icon-button-theme.scss +47 -36
- package/icon/_icon-item-theme.scss +47 -26
- package/icon/_icon-theme.scss +12 -14
- package/icon/icon-button.scss +5 -20
- package/icon/icon-item.component.d.ts +3 -1
- package/icon/icon-item.scss +10 -8
- package/icon/icon.scss +0 -6
- package/input/_input-theme.scss +6 -4
- package/input/input.scss +11 -10
- package/link/_link-theme.scss +30 -49
- package/list/_list-theme.scss +21 -19
- package/list/list.scss +2 -6
- package/loader-overlay/_loader-overlay-theme.scss +17 -18
- package/loader-overlay/loader-overlay.scss +9 -33
- package/markdown/_markdown-theme.scss +47 -47
- package/markdown/markdown.scss +41 -91
- package/modal/README.md +5 -4
- package/modal/_modal-animation.scss +0 -1
- package/modal/_modal-confirm.scss +2 -7
- package/modal/_modal-theme.scss +11 -13
- package/modal/modal.component.d.ts +1 -1
- package/modal/modal.scss +15 -31
- package/navbar/README.md +21 -20
- package/navbar/_navbar-item_horizontal.scss +28 -29
- package/navbar/_navbar-item_vertical.scss +31 -31
- package/navbar/_navbar-theme.scss +20 -24
- package/navbar/navbar-brand.scss +24 -27
- package/navbar/navbar-divider.scss +4 -8
- package/navbar/navbar-item.component.d.ts +4 -4
- package/navbar/navbar-item.scss +13 -15
- package/navbar/navbar.scss +2 -6
- package/navbar/vertical-navbar.scss +4 -6
- package/package.json +23 -16
- package/popover/README.md +18 -14
- package/popover/_popover-theme.scss +9 -17
- package/popover/popover.scss +15 -29
- package/prebuilt-themes/dark-theme.css +1 -1
- package/prebuilt-themes/light-theme.css +1 -1
- package/progress-bar/_progress-bar-theme.scss +7 -11
- package/progress-bar/progress-bar.scss +6 -19
- package/progress-spinner/_progress-spinner-theme.scss +6 -8
- package/progress-spinner/progress-spinner.scss +8 -18
- package/radio/_radio-theme.scss +36 -37
- package/radio/radio.scss +25 -40
- package/risk-level/_risk-level-theme.scss +25 -31
- package/risk-level/risk-level.component.scss +4 -10
- package/schematics/collection.json +11 -0
- package/schematics/ng-add/index.js +70 -0
- package/schematics/ng-add/schema.json +15 -0
- package/scrollbar/_scrollbar-component-theme.scss +15 -19
- package/scrollbar/scrollbar.component.scss +68 -63
- package/scrollbar/scrollbar.directive.d.ts +1 -0
- package/scrollbar/scrollbar.types.d.ts +1 -0
- package/select/_select-theme.scss +14 -16
- package/select/select-option.directive.d.ts +3 -2
- package/select/select.component.d.ts +12 -33
- package/select/select.module.d.ts +1 -1
- package/select/select.scss +3 -11
- package/sidepanel/_sidepanel-theme.scss +8 -10
- package/sidepanel/sidepanel.scss +20 -37
- package/splitter/_splitter-theme.scss +5 -6
- package/splitter/splitter.component.d.ts +10 -5
- package/splitter/splitter.scss +0 -1
- package/table/_table-theme.scss +16 -15
- package/table/table.component.d.ts +8 -1
- package/table/table.module.d.ts +1 -1
- package/table/table.scss +41 -42
- package/tabs/_tabs-common.scss +13 -15
- package/tabs/_tabs-theme.scss +76 -44
- package/tabs/tab-body.component.d.ts +1 -1
- package/tabs/tab-group.component.d.ts +9 -3
- package/tabs/tab-group.scss +2 -8
- package/tabs/tab-header.scss +0 -10
- package/tabs/tab-nav-bar/tab-nav-bar.scss +2 -9
- package/tags/_tag-theme.scss +22 -27
- package/tags/tag-default-options.d.ts +1 -0
- package/tags/tag-input.d.ts +7 -1
- package/tags/tag-list.scss +15 -12
- package/tags/tag.component.d.ts +1 -1
- package/tags/tag.scss +5 -11
- package/textarea/_textarea-theme.scss +2 -5
- package/textarea/textarea.scss +5 -10
- package/timepicker/timepicker.directive.d.ts +1 -1
- package/timepicker/timepicker.scss +2 -8
- package/timezone/_timezone-option-theme.scss +8 -10
- package/timezone/timezone-option.component.scss +5 -8
- package/timezone/timezone-option.directive.d.ts +3 -2
- package/timezone/timezone-select.component.d.ts +2 -1
- package/timezone/timezone-select.component.scss +2 -4
- package/title/title.directive.d.ts +0 -1
- package/toast/_toast-theme.scss +20 -16
- package/toast/toast-container.component.scss +5 -6
- package/toast/toast.component.scss +28 -29
- package/toast/toast.service.d.ts +8 -4
- package/toast/toast.type.d.ts +2 -0
- package/toggle/_toggle-theme.scss +49 -42
- package/toggle/toggle.scss +9 -22
- package/tooltip/_tooltip-theme.scss +12 -16
- package/tooltip/tooltip.component.d.ts +12 -8
- package/tooltip/tooltip.scss +7 -13
- package/tree/_tree-theme.scss +20 -23
- package/tree/toggle.scss +3 -6
- package/tree/tree-base.d.ts +1 -1
- package/tree/tree-option.scss +17 -14
- package/tree/tree-selection.component.d.ts +1 -0
- package/tree-select/_tree-select-theme.scss +12 -15
- package/tree-select/tree-select.component.d.ts +8 -17
- package/tree-select/tree-select.module.d.ts +1 -2
- package/tree-select/tree-select.scss +1 -6
- package/core/styles/_variables.scss +0 -1
package/dl/dl.scss
CHANGED
|
@@ -1,21 +1,12 @@
|
|
|
1
1
|
@use 'sass:meta';
|
|
2
2
|
@use 'sass:map';
|
|
3
3
|
|
|
4
|
-
@use '../core/styles/tokens'
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
$tokens: meta.module-variables(tokens) !default;
|
|
4
|
+
@use '../core/styles/common/tokens' as *;
|
|
8
5
|
|
|
9
6
|
.kbq-dl {
|
|
10
7
|
display: grid;
|
|
11
|
-
column-gap:
|
|
12
|
-
|
|
13
|
-
map.get($tokens, description-list-size-horizontal-content-gap-horizontal)
|
|
14
|
-
);
|
|
15
|
-
row-gap: var(
|
|
16
|
-
--kbq-description-list-size-horizontal-gap-vertical,
|
|
17
|
-
map.get($tokens, description-list-size-horizontal-gap-vertical)
|
|
18
|
-
);
|
|
8
|
+
column-gap: kbq-css-variable(description-list-size-horizontal-content-gap-horizontal);
|
|
9
|
+
row-gap: kbq-css-variable(description-list-size-horizontal-gap-vertical);
|
|
19
10
|
|
|
20
11
|
grid-template-columns: repeat(4, 1fr);
|
|
21
12
|
|
|
@@ -42,10 +33,7 @@ $tokens: meta.module-variables(tokens) !default;
|
|
|
42
33
|
&.kbq-dl_vertical {
|
|
43
34
|
grid-template-columns: repeat(1, 1fr);
|
|
44
35
|
|
|
45
|
-
row-gap:
|
|
46
|
-
--kbq-description-list-size-vertical-content-gap-vertical,
|
|
47
|
-
map.get($tokens, description-list-size-vertical-content-gap-vertical)
|
|
48
|
-
);
|
|
36
|
+
row-gap: kbq-css-variable(description-list-size-vertical-content-gap-vertical);
|
|
49
37
|
|
|
50
38
|
.kbq-dt,
|
|
51
39
|
.kbq-dd {
|
|
@@ -53,10 +41,7 @@ $tokens: meta.module-variables(tokens) !default;
|
|
|
53
41
|
}
|
|
54
42
|
|
|
55
43
|
.kbq-dd {
|
|
56
|
-
margin-bottom:
|
|
57
|
-
--kbq-description-list-size-vertical-gap-vertical,
|
|
58
|
-
map.get($tokens, description-list-size-vertical-gap-vertical)
|
|
59
|
-
);
|
|
44
|
+
margin-bottom: kbq-css-variable(description-list-size-vertical-gap-vertical);
|
|
60
45
|
}
|
|
61
46
|
}
|
|
62
47
|
}
|
|
@@ -3,50 +3,57 @@
|
|
|
3
3
|
|
|
4
4
|
@use '../core/styles/theming/theming' as *;
|
|
5
5
|
@use '../core/styles/typography/typography-utils' as *;
|
|
6
|
+
@use '../core/styles/common/tokens' as *;
|
|
6
7
|
|
|
8
|
+
@mixin kbq-dropdown-item-state($component, $style-name) {
|
|
9
|
+
$state: map.get($component, $style-name);
|
|
7
10
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
color: map.get($state, text);
|
|
11
|
+
background: kbq-css-variable(list-#{$style-name}-container-background, map.get($state, container-background));
|
|
12
|
+
color: kbq-css-variable(list-#{$style-name}-text, map.get($state, text));
|
|
11
13
|
|
|
12
14
|
.kbq-dropdown-item__caption {
|
|
13
|
-
color: map.get($state, caption);
|
|
15
|
+
color: kbq-css-variable(list-#{$style-name}-caption, map.get($state, caption));
|
|
14
16
|
}
|
|
15
17
|
}
|
|
16
18
|
|
|
17
19
|
@mixin kbq-dropdown-theme($theme) {
|
|
18
20
|
$dropdown: map.get(map.get($theme, components), dropdown);
|
|
19
|
-
$divider: map.get(map.get($theme, components), divider);
|
|
20
21
|
|
|
21
22
|
.kbq-dropdown__panel {
|
|
22
|
-
box-shadow: map.get($dropdown, box-shadow);
|
|
23
|
-
background: map.get($dropdown, background);
|
|
23
|
+
box-shadow: kbq-css-variable(dropdown-box-shadow, map.get($dropdown, box-shadow));
|
|
24
|
+
background: kbq-css-variable(dropdown-background, map.get($dropdown, background));
|
|
24
25
|
}
|
|
25
26
|
|
|
26
27
|
.kbq-dropdown-item {
|
|
27
|
-
$
|
|
28
|
+
$list-item: map.get(map.get($theme, components), list-item);
|
|
28
29
|
|
|
29
|
-
@include kbq-dropdown-item-state(
|
|
30
|
+
@include kbq-dropdown-item-state($list-item, default);
|
|
30
31
|
|
|
31
32
|
&.kbq-dropdown-item_highlighted,
|
|
32
33
|
&:hover:not(.kbq-disabled) {
|
|
33
|
-
@include kbq-dropdown-item-state(
|
|
34
|
+
@include kbq-dropdown-item-state($list-item, states-hover);
|
|
34
35
|
}
|
|
35
36
|
|
|
36
37
|
&.cdk-keyboard-focused {
|
|
37
|
-
border-color:
|
|
38
|
+
border-color: kbq-css-variable(list-focused-focus-outline, map.get($list-item, focused, focus-outline));
|
|
38
39
|
}
|
|
39
40
|
|
|
40
41
|
&.kbq-selected {
|
|
41
|
-
@include kbq-dropdown-item-state(
|
|
42
|
+
@include kbq-dropdown-item-state($list-item, states-selected);
|
|
42
43
|
|
|
43
44
|
&:hover:not(.kbq-disabled) {
|
|
44
|
-
@include kbq-dropdown-item-state(
|
|
45
|
+
@include kbq-dropdown-item-state($list-item, states-selected-hover);
|
|
45
46
|
}
|
|
46
47
|
}
|
|
47
48
|
|
|
48
49
|
&.kbq-disabled {
|
|
49
|
-
@include kbq-dropdown-item-state(
|
|
50
|
+
@include kbq-dropdown-item-state($list-item, states-disabled);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.kbq-dropdown__group-header {
|
|
55
|
+
&.kbq-dropdown__group-header_small {
|
|
56
|
+
color: kbq-css-variable(foreground-contrast-secondary, map.get($theme, foreground, contrast-secondary));
|
|
50
57
|
}
|
|
51
58
|
}
|
|
52
59
|
|
|
@@ -56,22 +63,20 @@
|
|
|
56
63
|
}
|
|
57
64
|
|
|
58
65
|
@mixin kbq-dropdown-typography($config) {
|
|
59
|
-
$tokens: map.get($config, tokens);
|
|
60
|
-
|
|
61
66
|
.kbq-dropdown-item,
|
|
62
67
|
.kbq-dropdown__content {
|
|
63
|
-
@include kbq-typography-
|
|
64
|
-
}
|
|
68
|
+
@include kbq-typography-css-variables(list, text);
|
|
65
69
|
|
|
66
|
-
|
|
67
|
-
|
|
70
|
+
.kbq-dropdown-item__caption {
|
|
71
|
+
@include kbq-typography-css-variables(list, caption);
|
|
72
|
+
}
|
|
68
73
|
}
|
|
69
74
|
|
|
70
75
|
.kbq-dropdown__group-header {
|
|
71
|
-
@include kbq-typography-
|
|
76
|
+
@include kbq-typography-css-variables(list, header);
|
|
72
77
|
|
|
73
78
|
&.kbq-dropdown__group-header_small {
|
|
74
|
-
@include kbq-typography-
|
|
79
|
+
@include kbq-typography-css-variables(list, subheading);
|
|
75
80
|
}
|
|
76
81
|
}
|
|
77
82
|
}
|
|
@@ -3,12 +3,11 @@
|
|
|
3
3
|
|
|
4
4
|
@use '../core/styles/common';
|
|
5
5
|
|
|
6
|
-
@use '../core/styles/tokens'
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
$tokens: meta.module-variables(tokens) !default;
|
|
6
|
+
@use '../core/styles/common/tokens' as *;
|
|
10
7
|
|
|
11
8
|
.kbq-dropdown-item {
|
|
9
|
+
width: 100%;
|
|
10
|
+
|
|
12
11
|
@include common.user-select(none);
|
|
13
12
|
@include common.kbq-list-item-base();
|
|
14
13
|
|
|
@@ -19,19 +18,13 @@ $tokens: meta.module-variables(tokens) !default;
|
|
|
19
18
|
text-align: left;
|
|
20
19
|
|
|
21
20
|
& > .kbq-icon:first-child {
|
|
22
|
-
$outline-width: map.get($tokens, list-size-container-focus-outline-width);
|
|
23
|
-
$padding-vertical: map.get($tokens, list-size-container-padding-vertical);
|
|
24
|
-
|
|
25
21
|
align-self: flex-start;
|
|
26
22
|
|
|
27
|
-
margin-top:
|
|
23
|
+
margin-top: kbq-css-variable(list-size-container-padding-vertical);
|
|
28
24
|
}
|
|
29
25
|
|
|
30
26
|
& .kbq-dropdown-item__caption {
|
|
31
|
-
padding-top:
|
|
32
|
-
--kbq-list-size-container-content-gap-vertical,
|
|
33
|
-
map.get($tokens, list-size-container-content-gap-vertical)
|
|
34
|
-
);
|
|
27
|
+
padding-top: kbq-css-variable(list-size-container-content-gap-vertical);
|
|
35
28
|
}
|
|
36
29
|
}
|
|
37
30
|
|
|
@@ -31,7 +31,7 @@ export declare class KbqDropdownTrigger implements AfterContentInit, OnDestroy {
|
|
|
31
31
|
private parent;
|
|
32
32
|
private dropdownItemInstance;
|
|
33
33
|
private _dir;
|
|
34
|
-
private
|
|
34
|
+
private changeDetectorRef;
|
|
35
35
|
private focusMonitor?;
|
|
36
36
|
lastDestroyReason: DropdownCloseReason;
|
|
37
37
|
/** Data to be passed along to any lazily-rendered content. */
|
|
@@ -61,7 +61,7 @@ export declare class KbqDropdownTrigger implements AfterContentInit, OnDestroy {
|
|
|
61
61
|
private overlayRef;
|
|
62
62
|
private closeSubscription;
|
|
63
63
|
private hoverSubscription;
|
|
64
|
-
constructor(overlay: Overlay, elementRef: ElementRef<HTMLElement>, viewContainerRef: ViewContainerRef, scrollStrategy: any, parent: KbqDropdown, dropdownItemInstance: KbqDropdownItem, _dir: Directionality,
|
|
64
|
+
constructor(overlay: Overlay, elementRef: ElementRef<HTMLElement>, viewContainerRef: ViewContainerRef, scrollStrategy: any, parent: KbqDropdown, dropdownItemInstance: KbqDropdownItem, _dir: Directionality, changeDetectorRef: ChangeDetectorRef, focusMonitor?: FocusMonitor | undefined);
|
|
65
65
|
ngAfterContentInit(): void;
|
|
66
66
|
ngOnDestroy(): void;
|
|
67
67
|
/** Whether the dropdown triggers a nested dropdown or a top-level one. */
|
package/dropdown/dropdown.scss
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
@use 'sass:meta';
|
|
2
2
|
@use 'sass:map';
|
|
3
3
|
|
|
4
|
-
@use '../core/styles/tokens'
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
$tokens: meta.module-variables(tokens) !default;
|
|
4
|
+
@use '../core/styles/common/tokens' as *;
|
|
8
5
|
|
|
9
6
|
.kbq-dropdown-trigger.kbq-button-icon_right.kbq-button-icon_left {
|
|
10
7
|
& .kbq-icon_left {
|
|
@@ -23,20 +20,14 @@ $tokens: meta.module-variables(tokens) !default;
|
|
|
23
20
|
.kbq-dropdown__panel {
|
|
24
21
|
margin-top: 2px;
|
|
25
22
|
|
|
26
|
-
min-width:
|
|
27
|
-
max-width:
|
|
23
|
+
min-width: kbq-css-variable(dropdown-size-container-width-min);
|
|
24
|
+
max-width: kbq-css-variable(dropdown-size-container-width-max);
|
|
28
25
|
|
|
29
|
-
border-radius:
|
|
30
|
-
--kbq-dropdown-size-container-border-radius, map.get($tokens, dropdown-size-container-border-radius)
|
|
31
|
-
);
|
|
26
|
+
border-radius: kbq-css-variable(dropdown-size-container-border-radius);
|
|
32
27
|
|
|
33
|
-
padding-top:
|
|
34
|
-
--kbq-dropdown-size-container-padding-vertical, map.get($tokens, dropdown-size-container-padding-vertical)
|
|
35
|
-
);
|
|
28
|
+
padding-top: kbq-css-variable(dropdown-size-container-padding-vertical);
|
|
36
29
|
|
|
37
|
-
padding-bottom:
|
|
38
|
-
--kbq-dropdown-size-container-padding-vertical, map.get($tokens, dropdown-size-container-padding-vertical)
|
|
39
|
-
);
|
|
30
|
+
padding-bottom: kbq-css-variable(dropdown-size-container-padding-vertical);
|
|
40
31
|
|
|
41
32
|
// Prevent users from interacting with the panel while it's animating. Note that
|
|
42
33
|
// people won't be able to click through it, because the overlay pane will catch the click.
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { FocusMonitor } from '@angular/cdk/a11y';
|
|
1
2
|
import { Directionality } from '@angular/cdk/bidi';
|
|
2
3
|
import { Overlay, ScrollDispatcher } from '@angular/cdk/overlay';
|
|
3
4
|
import { ElementRef, OnInit, OnDestroy, NgZone, ViewContainerRef, Renderer2, AfterViewInit } from '@angular/core';
|
|
@@ -12,12 +13,12 @@ export declare class KbqEllipsisCenterDirective extends KbqTooltipTrigger implem
|
|
|
12
13
|
private _kbqEllipsisCenter;
|
|
13
14
|
private resizeSubscription;
|
|
14
15
|
private readonly debounceInterval;
|
|
15
|
-
constructor(overlay: Overlay, elementRef: ElementRef<HTMLElement>, ngZone: NgZone, scrollDispatcher: ScrollDispatcher, hostView: ViewContainerRef, scrollStrategy: any, direction: Directionality, renderer: Renderer2);
|
|
16
|
+
constructor(overlay: Overlay, elementRef: ElementRef<HTMLElement>, ngZone: NgZone, scrollDispatcher: ScrollDispatcher, hostView: ViewContainerRef, scrollStrategy: any, direction: Directionality, focusMonitor: FocusMonitor, renderer: Renderer2);
|
|
16
17
|
ngOnInit(): void;
|
|
17
18
|
ngAfterViewInit(): void;
|
|
18
19
|
ngOnDestroy(): void;
|
|
19
20
|
private refresh;
|
|
20
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KbqEllipsisCenterDirective, [null, null, null, null, null, null, { optional: true; }, null]>;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KbqEllipsisCenterDirective, [null, null, null, null, null, null, { optional: true; }, null, null]>;
|
|
21
22
|
static ɵdir: i0.ɵɵDirectiveDeclaration<KbqEllipsisCenterDirective, "[kbqEllipsisCenter]", never, { "kbqEllipsisCenter": { "alias": "kbqEllipsisCenter"; "required": false; }; "minVisibleLength": { "alias": "minVisibleLength"; "required": false; }; }, {}, never, never, false, never>;
|
|
22
23
|
}
|
|
23
24
|
export declare class KbqEllipsisCenterModule {
|
|
File without changes
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
@use 'sass:meta';
|
|
2
|
+
@use 'sass:map';
|
|
3
|
+
|
|
4
|
+
@use '../core/styles/typography/typography-utils' as *;
|
|
5
|
+
@use '../core/styles/common/tokens' as *;
|
|
6
|
+
|
|
7
|
+
@mixin kbq-empty-state-theme($theme) {
|
|
8
|
+
$empty-state: map.get($theme, components, empty-state);
|
|
9
|
+
|
|
10
|
+
.kbq-empty-state_normal-color {
|
|
11
|
+
.kbq-empty-state-title {
|
|
12
|
+
color: kbq-css-variable(empty-state-title, map.get($empty-state, title));
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.kbq-empty-state-text {
|
|
16
|
+
color: kbq-css-variable(empty-state-title, map.get($empty-state, title));
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.kbq-empty-state_error-color {
|
|
21
|
+
.kbq-empty-state-title {
|
|
22
|
+
color: kbq-css-variable(empty-state-title, map.get($theme, foreground, error));
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.kbq-empty-state-text {
|
|
26
|
+
color: kbq-css-variable(empty-state-title, map.get($theme, foreground, error));
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
@mixin kbq-empty-state-typography($config) {
|
|
32
|
+
.kbq-empty-state-title,
|
|
33
|
+
.kbq-empty-state-text {
|
|
34
|
+
text-align: center;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.kbq-empty-state_normal {
|
|
38
|
+
.kbq-empty-state-title {
|
|
39
|
+
@include kbq-typography-css-variables(empty-state, normal-title);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.kbq-empty-state-text {
|
|
43
|
+
@include kbq-typography-css-variables(empty-state, normal-text);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.kbq-empty-state_big {
|
|
48
|
+
.kbq-empty-state-title {
|
|
49
|
+
@include kbq-typography-css-variables(empty-state, big-title);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.kbq-empty-state-text {
|
|
53
|
+
@include kbq-typography-css-variables(empty-state, big-text);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { AfterContentInit } from '@angular/core';
|
|
2
|
+
import { KbqIconItem } from '@koobiq/components/icon';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class KbqEmptyStateIcon {
|
|
5
|
+
private icon;
|
|
6
|
+
constructor(icon: KbqIconItem);
|
|
7
|
+
setErrorColor(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KbqEmptyStateIcon, [{ optional: true; }]>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<KbqEmptyStateIcon, "[kbq-empty-state-icon]", never, {}, {}, never, never, false, never>;
|
|
10
|
+
}
|
|
11
|
+
export declare class KbqEmptyStateText {
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KbqEmptyStateText, never>;
|
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<KbqEmptyStateText, "[kbq-empty-state-text]", never, {}, {}, never, never, false, never>;
|
|
14
|
+
}
|
|
15
|
+
export declare class KbqEmptyStateTitle {
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KbqEmptyStateTitle, never>;
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<KbqEmptyStateTitle, "[kbq-empty-state-title]", never, {}, {}, never, never, false, never>;
|
|
18
|
+
}
|
|
19
|
+
export declare class KbqEmptyStateActions {
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KbqEmptyStateActions, never>;
|
|
21
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<KbqEmptyStateActions, "[kbq-empty-state-actions]", never, {}, {}, never, never, false, never>;
|
|
22
|
+
}
|
|
23
|
+
export declare class KbqEmptyState implements AfterContentInit {
|
|
24
|
+
errorColor: boolean;
|
|
25
|
+
big: boolean;
|
|
26
|
+
alignTop: boolean;
|
|
27
|
+
icon: KbqEmptyStateIcon | null;
|
|
28
|
+
ngAfterContentInit(): void;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KbqEmptyState, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KbqEmptyState, "kbq-empty-state", never, { "errorColor": { "alias": "errorColor"; "required": false; }; "big": { "alias": "big"; "required": false; }; "alignTop": { "alias": "alignTop"; "required": false; }; }, {}, ["icon"], ["[kbq-empty-state-icon]", "[kbq-empty-state-title]", "[kbq-empty-state-text]", "[kbq-empty-state-actions]"], false, never>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./empty-state.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/cdk/a11y";
|
|
5
|
+
import * as i4 from "@angular/cdk/platform";
|
|
6
|
+
export declare class KbqEmptyStateModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KbqEmptyStateModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KbqEmptyStateModule, [typeof i1.KbqEmptyState, typeof i1.KbqEmptyStateIcon, typeof i1.KbqEmptyStateText, typeof i1.KbqEmptyStateTitle, typeof i1.KbqEmptyStateTitle, typeof i1.KbqEmptyStateActions], [typeof i2.CommonModule, typeof i3.A11yModule, typeof i4.PlatformModule], [typeof i1.KbqEmptyState, typeof i1.KbqEmptyStateIcon, typeof i1.KbqEmptyStateText, typeof i1.KbqEmptyStateTitle, typeof i1.KbqEmptyStateActions]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KbqEmptyStateModule>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
@use 'sass:meta';
|
|
2
|
+
@use 'sass:map';
|
|
3
|
+
|
|
4
|
+
@use '../core/styles/tokens';
|
|
5
|
+
@use '../core/styles/common/tokens' as *;
|
|
6
|
+
|
|
7
|
+
.kbq-empty-state {
|
|
8
|
+
display: flex;
|
|
9
|
+
flex-direction: column;
|
|
10
|
+
align-items: center;
|
|
11
|
+
|
|
12
|
+
flex: 1;
|
|
13
|
+
|
|
14
|
+
&.kbq-empty-state_normal {
|
|
15
|
+
padding: kbq-css-variable(empty-state-size-normal-padding-top)
|
|
16
|
+
kbq-css-variable(empty-state-size-normal-padding-horizontal)
|
|
17
|
+
kbq-css-variable(empty-state-size-normal-padding-bottom);
|
|
18
|
+
|
|
19
|
+
& .kbq-empty-state-icon {
|
|
20
|
+
margin-bottom: kbq-css-variable(empty-state-size-normal-image-margin-bottom);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
& .kbq-empty-state-text {
|
|
24
|
+
max-width: kbq-css-variable(empty-state-size-normal-max-width);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
& .kbq-empty-state-title {
|
|
28
|
+
max-width: kbq-css-variable(empty-state-size-normal-max-width);
|
|
29
|
+
|
|
30
|
+
margin-bottom: kbq-css-variable(empty-state-size-normal-title-margin-bottom);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
& .kbq-empty-state-actions {
|
|
34
|
+
max-width: kbq-css-variable(empty-state-size-normal-max-width);
|
|
35
|
+
|
|
36
|
+
margin-top: kbq-css-variable(empty-state-size-normal-actions-margin-top);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
&.kbq-empty-state_align-center.kbq-empty-state_has-icon {
|
|
40
|
+
margin-bottom: kbq-css-variable(empty-state-size-normal-image-addon-height);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
&.kbq-empty-state_big {
|
|
45
|
+
padding: kbq-css-variable(empty-state-size-big-padding-top)
|
|
46
|
+
kbq-css-variable(empty-state-size-big-padding-horizontal)
|
|
47
|
+
kbq-css-variable(empty-state-size-big-padding-bottom);
|
|
48
|
+
|
|
49
|
+
& .kbq-empty-state-icon {
|
|
50
|
+
margin-bottom: kbq-css-variable(empty-state-size-big-image-margin-bottom);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
& .kbq-empty-state-text {
|
|
54
|
+
max-width: kbq-css-variable(empty-state-size-big-max-width);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
& .kbq-empty-state-title {
|
|
58
|
+
max-width: kbq-css-variable(empty-state-size-big-max-width);
|
|
59
|
+
|
|
60
|
+
margin-bottom: kbq-css-variable(empty-state-size-big-title-margin-bottom);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
& .kbq-empty-state-actions {
|
|
64
|
+
max-width: kbq-css-variable(empty-state-size-big-max-width);
|
|
65
|
+
|
|
66
|
+
margin-top: kbq-css-variable(empty-state-size-big-actions-margin-top);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
&.kbq-empty-state_align-center.kbq-empty-state_has-icon {
|
|
70
|
+
margin-bottom: kbq-css-variable(empty-state-size-big-image-addon-height);
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
&.kbq-empty-state_align-center {
|
|
75
|
+
justify-content: center;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
&.kbq-empty-state_align-top {
|
|
79
|
+
justify-content: flex-start;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './public-api';
|
|
@@ -1,7 +1,20 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component, ContentChild, Directive, ViewEncapsulation } from '@angular/core';
|
|
2
|
-
import { KbqIconItem } from '@koobiq/components/icon';
|
|
1
|
+
import { ChangeDetectionStrategy, Component, ContentChild, Directive, Input, ViewEncapsulation } from '@angular/core';
|
|
2
|
+
import { KbqIcon, KbqIconItem } from '@koobiq/components/icon';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
import * as i1 from "@angular/common";
|
|
5
|
+
export var KbqAlertStyles;
|
|
6
|
+
(function (KbqAlertStyles) {
|
|
7
|
+
KbqAlertStyles["Default"] = "default";
|
|
8
|
+
KbqAlertStyles["Colored"] = "colored";
|
|
9
|
+
})(KbqAlertStyles || (KbqAlertStyles = {}));
|
|
10
|
+
export var KbqAlertColors;
|
|
11
|
+
(function (KbqAlertColors) {
|
|
12
|
+
KbqAlertColors["Contrast"] = "contrast";
|
|
13
|
+
KbqAlertColors["Error"] = "error";
|
|
14
|
+
KbqAlertColors["Warning"] = "warning";
|
|
15
|
+
KbqAlertColors["Success"] = "success";
|
|
16
|
+
KbqAlertColors["Theme"] = "theme";
|
|
17
|
+
})(KbqAlertColors || (KbqAlertColors = {}));
|
|
5
18
|
export class KbqAlertTitle {
|
|
6
19
|
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqAlertTitle, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
7
20
|
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.0", type: KbqAlertTitle, selector: "[kbq-alert-title]", host: { classAttribute: "kbq-alert__title" }, ngImport: i0 }); }
|
|
@@ -42,18 +55,46 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImpor
|
|
|
42
55
|
}]
|
|
43
56
|
}] });
|
|
44
57
|
export class KbqAlert {
|
|
58
|
+
constructor() {
|
|
59
|
+
this.compact = false;
|
|
60
|
+
this.alertStyle = KbqAlertStyles.Default;
|
|
61
|
+
this._alertColor = KbqAlertColors.Contrast;
|
|
62
|
+
}
|
|
63
|
+
get alertColor() {
|
|
64
|
+
return `kbq-alert_${this._alertColor}`;
|
|
65
|
+
}
|
|
66
|
+
set alertColor(value) {
|
|
67
|
+
this._alertColor = value || KbqAlertColors.Contrast;
|
|
68
|
+
}
|
|
69
|
+
get isColored() {
|
|
70
|
+
return this.alertStyle === KbqAlertStyles.Colored;
|
|
71
|
+
}
|
|
72
|
+
ngAfterContentInit() {
|
|
73
|
+
const icon = this.icon || this.iconItem;
|
|
74
|
+
if (icon) {
|
|
75
|
+
icon.color = this._alertColor;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
45
78
|
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqAlert, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
46
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.0", type: KbqAlert, selector: "kbq-alert", host: { properties: { "class.kbq-alert_dismissible": "closeButton" }, classAttribute: "kbq-alert" }, queries: [{ propertyName: "iconItem", first: true, predicate: KbqIconItem, descendants: true }, { propertyName: "title", first: true, predicate: KbqAlertTitle, descendants: true }, { propertyName: "control", first: true, predicate: KbqAlertControl, descendants: true }, { propertyName: "closeButton", first: true, predicate: KbqAlertCloseButton, descendants: true }], ngImport: i0, template: "<div class=\"kbq-alert__icon\" *ngIf=\"iconItem\">\n <ng-content select=\"[kbq-icon-item]\"></ng-content>\n</div>\n\n<div class=\"kbq-alert__content\">\n <ng-content select=\"[kbq-alert-title]\"></ng-content>\n\n <div class=\"kbq-alert__text\">\n <ng-content></ng-content>\n </div>\n\n <div class=\"kbq-
|
|
79
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.0", type: KbqAlert, selector: "kbq-alert", inputs: { compact: "compact", alertStyle: "alertStyle", alertColor: "alertColor" }, host: { properties: { "class": "alertColor", "class.kbq-alert_normal": "!compact", "class.kbq-alert_compact": "compact", "class.kbq-alert_default": "!isColored", "class.kbq-alert_colored": "isColored", "class.kbq-alert_dismissible": "closeButton" }, classAttribute: "kbq-alert" }, queries: [{ propertyName: "iconItem", first: true, predicate: KbqIconItem, descendants: true }, { propertyName: "icon", first: true, predicate: KbqIcon, descendants: true }, { propertyName: "title", first: true, predicate: KbqAlertTitle, descendants: true }, { propertyName: "control", first: true, predicate: KbqAlertControl, descendants: true }, { propertyName: "closeButton", first: true, predicate: KbqAlertCloseButton, descendants: true }], ngImport: i0, template: "<div class=\"kbq-alert__icon\" [class.kbq-alert__icon_title]=\"title\" *ngIf=\"iconItem || icon\">\n <ng-content select=\"[kbq-icon-item],[kbq-icon]\"></ng-content>\n</div>\n\n<div class=\"kbq-alert__content\" [class.kbq-alert__content_title]=\"title\">\n <ng-content select=\"[kbq-alert-title]\"></ng-content>\n\n <div class=\"kbq-alert__text\">\n <ng-content></ng-content>\n </div>\n\n <div class=\"kbq-alert__button-stack\" *ngIf=\"control\">\n <ng-content select=\"[kbq-alert-control]\"></ng-content>\n </div>\n</div>\n\n<div class=\"kbq-alert__close-button\" [hidden]=\"!closeButton\">\n <ng-content select=\"[kbq-alert-close-button]\"></ng-content>\n</div>\n", styles: [".kbq-alert{display:flex;box-sizing:border-box}.kbq-alert .kbq-alert__content_title{margin-bottom:var(--kbq-size-xxs, 4px)}.kbq-alert__content{display:flex;flex-direction:column;flex:1;justify-content:center}.kbq-alert.kbq-alert_normal{border-radius:var(--kbq-alert-size-normal-container-border-radius, 12px);padding:var(--kbq-alert-size-normal-container-padding-top, 0) var(--kbq-alert-size-normal-container-padding-right, 8px) var(--kbq-alert-size-normal-container-padding-bottom, 0) var(--kbq-alert-size-normal-container-padding-left, 8px)}.kbq-alert.kbq-alert_normal .kbq-alert__icon{margin:var(--kbq-alert-size-normal-no-title-icon-margin-top, 16px) var(--kbq-alert-size-normal-icon-margin-right, 0) var(--kbq-alert-size-normal-icon-margin-bottom, 16px) var(--kbq-alert-size-normal-icon-margin-left, 12px);display:inline-flex;align-items:flex-start}.kbq-alert.kbq-alert_normal .kbq-alert__icon.kbq-alert__icon_title{margin-top:var(--kbq-alert-size-normal-icon-margin-top, 16px);padding-top:var(--kbq-alert-size-normal-no-title-icon-padding-top, 2px)}.kbq-alert.kbq-alert_normal .kbq-alert__content{padding:var(--kbq-alert-size-normal-content-padding-top, 16px) var(--kbq-alert-size-normal-content-padding-right, 8px) var(--kbq-alert-size-normal-content-padding-bottom, 16px) var(--kbq-alert-size-normal-content-padding-left, 12px)}.kbq-alert.kbq-alert_normal .kbq-alert__title{margin-bottom:var(--kbq-alert-size-normal-title-margin-bottom, 4px)}.kbq-alert.kbq-alert_normal .kbq-alert__button-stack{padding-top:var(--kbq-alert-size-normal-button-stack-padding-top, 8px);padding-bottom:var(--kbq-alert-size-normal-button-stack-padding-bottom, 2px)}.kbq-alert.kbq-alert_normal .kbq-alert__close-button{margin-top:var(--kbq-alert-size-normal-close-button-margin-top, 8px);margin-left:var(--kbq-alert-size-normal-close-button-margin-left, 2px)}.kbq-alert.kbq-alert_compact{border-radius:var(--kbq-alert-size-compact-container-border-radius, 12px);padding:var(--kbq-alert-size-compact-container-padding-top, 0) var(--kbq-alert-size-compact-container-padding-right, 8px) var(--kbq-alert-size-compact-container-padding-bottom, 0) var(--kbq-alert-size-compact-container-padding-left, 16px)}.kbq-alert.kbq-alert_compact .kbq-alert__icon{margin-top:var(--kbq-alert-size-compact-no-title-icon-margin-top, 12px);margin-right:var(--kbq-alert-size-compact-icon-margin-right, 8px);padding-top:var(--kbq-alert-size-compact-no-title-icon-padding-top, 2px);display:inline-flex;align-items:flex-start}.kbq-alert.kbq-alert_compact .kbq-alert__icon.kbq-alert__icon_title{margin-top:var(--kbq-alert-size-compact-icon-margin-top, 12px);padding-top:var(--kbq-alert-size-compact-icon-padding-top, 4px)}.kbq-alert.kbq-alert_compact .kbq-alert__content{padding:var(--kbq-alert-size-compact-content-padding-top, 12px) var(--kbq-alert-size-compact-content-padding-right, 8px) var(--kbq-alert-size-compact-content-padding-bottom, 12px) var(--kbq-alert-size-compact-content-padding-left, 0)}.kbq-alert.kbq-alert_compact .kbq-alert__title{margin-bottom:var(--kbq-alert-size-compact-title-margin-bottom, 2px)}.kbq-alert.kbq-alert_compact .kbq-alert__button-stack{padding-top:var(--kbq-alert-size-compact-button-stack-padding-top, 8px);padding-bottom:var(--kbq-alert-size-compact-button-stack-padding-bottom, 2px)}.kbq-alert.kbq-alert_compact .kbq-alert__close-button{margin-top:var(--kbq-alert-size-compact-close-button-margin-top, 8px);margin-left:var(--kbq-alert-size-compact-close-button-margin-left, 2px)}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
47
80
|
}
|
|
48
81
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqAlert, decorators: [{
|
|
49
82
|
type: Component,
|
|
50
83
|
args: [{ selector: 'kbq-alert', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: {
|
|
51
84
|
class: 'kbq-alert',
|
|
85
|
+
'[class]': 'alertColor',
|
|
86
|
+
'[class.kbq-alert_normal]': '!compact',
|
|
87
|
+
'[class.kbq-alert_compact]': 'compact',
|
|
88
|
+
'[class.kbq-alert_default]': '!isColored',
|
|
89
|
+
'[class.kbq-alert_colored]': 'isColored',
|
|
52
90
|
'[class.kbq-alert_dismissible]': 'closeButton'
|
|
53
|
-
}, template: "<div class=\"kbq-alert__icon\" *ngIf=\"iconItem\">\n <ng-content select=\"[kbq-icon-item]\"></ng-content>\n</div>\n\n<div class=\"kbq-alert__content\">\n <ng-content select=\"[kbq-alert-title]\"></ng-content>\n\n <div class=\"kbq-alert__text\">\n <ng-content></ng-content>\n </div>\n\n <div class=\"kbq-
|
|
91
|
+
}, template: "<div class=\"kbq-alert__icon\" [class.kbq-alert__icon_title]=\"title\" *ngIf=\"iconItem || icon\">\n <ng-content select=\"[kbq-icon-item],[kbq-icon]\"></ng-content>\n</div>\n\n<div class=\"kbq-alert__content\" [class.kbq-alert__content_title]=\"title\">\n <ng-content select=\"[kbq-alert-title]\"></ng-content>\n\n <div class=\"kbq-alert__text\">\n <ng-content></ng-content>\n </div>\n\n <div class=\"kbq-alert__button-stack\" *ngIf=\"control\">\n <ng-content select=\"[kbq-alert-control]\"></ng-content>\n </div>\n</div>\n\n<div class=\"kbq-alert__close-button\" [hidden]=\"!closeButton\">\n <ng-content select=\"[kbq-alert-close-button]\"></ng-content>\n</div>\n", styles: [".kbq-alert{display:flex;box-sizing:border-box}.kbq-alert .kbq-alert__content_title{margin-bottom:var(--kbq-size-xxs, 4px)}.kbq-alert__content{display:flex;flex-direction:column;flex:1;justify-content:center}.kbq-alert.kbq-alert_normal{border-radius:var(--kbq-alert-size-normal-container-border-radius, 12px);padding:var(--kbq-alert-size-normal-container-padding-top, 0) var(--kbq-alert-size-normal-container-padding-right, 8px) var(--kbq-alert-size-normal-container-padding-bottom, 0) var(--kbq-alert-size-normal-container-padding-left, 8px)}.kbq-alert.kbq-alert_normal .kbq-alert__icon{margin:var(--kbq-alert-size-normal-no-title-icon-margin-top, 16px) var(--kbq-alert-size-normal-icon-margin-right, 0) var(--kbq-alert-size-normal-icon-margin-bottom, 16px) var(--kbq-alert-size-normal-icon-margin-left, 12px);display:inline-flex;align-items:flex-start}.kbq-alert.kbq-alert_normal .kbq-alert__icon.kbq-alert__icon_title{margin-top:var(--kbq-alert-size-normal-icon-margin-top, 16px);padding-top:var(--kbq-alert-size-normal-no-title-icon-padding-top, 2px)}.kbq-alert.kbq-alert_normal .kbq-alert__content{padding:var(--kbq-alert-size-normal-content-padding-top, 16px) var(--kbq-alert-size-normal-content-padding-right, 8px) var(--kbq-alert-size-normal-content-padding-bottom, 16px) var(--kbq-alert-size-normal-content-padding-left, 12px)}.kbq-alert.kbq-alert_normal .kbq-alert__title{margin-bottom:var(--kbq-alert-size-normal-title-margin-bottom, 4px)}.kbq-alert.kbq-alert_normal .kbq-alert__button-stack{padding-top:var(--kbq-alert-size-normal-button-stack-padding-top, 8px);padding-bottom:var(--kbq-alert-size-normal-button-stack-padding-bottom, 2px)}.kbq-alert.kbq-alert_normal .kbq-alert__close-button{margin-top:var(--kbq-alert-size-normal-close-button-margin-top, 8px);margin-left:var(--kbq-alert-size-normal-close-button-margin-left, 2px)}.kbq-alert.kbq-alert_compact{border-radius:var(--kbq-alert-size-compact-container-border-radius, 12px);padding:var(--kbq-alert-size-compact-container-padding-top, 0) var(--kbq-alert-size-compact-container-padding-right, 8px) var(--kbq-alert-size-compact-container-padding-bottom, 0) var(--kbq-alert-size-compact-container-padding-left, 16px)}.kbq-alert.kbq-alert_compact .kbq-alert__icon{margin-top:var(--kbq-alert-size-compact-no-title-icon-margin-top, 12px);margin-right:var(--kbq-alert-size-compact-icon-margin-right, 8px);padding-top:var(--kbq-alert-size-compact-no-title-icon-padding-top, 2px);display:inline-flex;align-items:flex-start}.kbq-alert.kbq-alert_compact .kbq-alert__icon.kbq-alert__icon_title{margin-top:var(--kbq-alert-size-compact-icon-margin-top, 12px);padding-top:var(--kbq-alert-size-compact-icon-padding-top, 4px)}.kbq-alert.kbq-alert_compact .kbq-alert__content{padding:var(--kbq-alert-size-compact-content-padding-top, 12px) var(--kbq-alert-size-compact-content-padding-right, 8px) var(--kbq-alert-size-compact-content-padding-bottom, 12px) var(--kbq-alert-size-compact-content-padding-left, 0)}.kbq-alert.kbq-alert_compact .kbq-alert__title{margin-bottom:var(--kbq-alert-size-compact-title-margin-bottom, 2px)}.kbq-alert.kbq-alert_compact .kbq-alert__button-stack{padding-top:var(--kbq-alert-size-compact-button-stack-padding-top, 8px);padding-bottom:var(--kbq-alert-size-compact-button-stack-padding-bottom, 2px)}.kbq-alert.kbq-alert_compact .kbq-alert__close-button{margin-top:var(--kbq-alert-size-compact-close-button-margin-top, 8px);margin-left:var(--kbq-alert-size-compact-close-button-margin-left, 2px)}\n"] }]
|
|
54
92
|
}], propDecorators: { iconItem: [{
|
|
55
93
|
type: ContentChild,
|
|
56
94
|
args: [KbqIconItem]
|
|
95
|
+
}], icon: [{
|
|
96
|
+
type: ContentChild,
|
|
97
|
+
args: [KbqIcon]
|
|
57
98
|
}], title: [{
|
|
58
99
|
type: ContentChild,
|
|
59
100
|
args: [KbqAlertTitle]
|
|
@@ -63,5 +104,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImpor
|
|
|
63
104
|
}], closeButton: [{
|
|
64
105
|
type: ContentChild,
|
|
65
106
|
args: [KbqAlertCloseButton]
|
|
107
|
+
}], compact: [{
|
|
108
|
+
type: Input
|
|
109
|
+
}], alertStyle: [{
|
|
110
|
+
type: Input
|
|
111
|
+
}], alertColor: [{
|
|
112
|
+
type: Input
|
|
66
113
|
}] } });
|
|
67
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
114
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWxlcnQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcGFja2FnZXMvY29tcG9uZW50cy9hbGVydC9hbGVydC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi9wYWNrYWdlcy9jb21wb25lbnRzL2FsZXJ0L2FsZXJ0LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFFSCx1QkFBdUIsRUFDdkIsU0FBUyxFQUNULFlBQVksRUFDWixTQUFTLEVBQ1QsS0FBSyxFQUNMLGlCQUFpQixFQUNwQixNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQUUsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLHlCQUF5QixDQUFDOzs7QUFHL0QsTUFBTSxDQUFOLElBQVksY0FHWDtBQUhELFdBQVksY0FBYztJQUN0QixxQ0FBbUIsQ0FBQTtJQUNuQixxQ0FBbUIsQ0FBQTtBQUN2QixDQUFDLEVBSFcsY0FBYyxLQUFkLGNBQWMsUUFHekI7QUFFRCxNQUFNLENBQU4sSUFBWSxjQU1YO0FBTkQsV0FBWSxjQUFjO0lBQ3RCLHVDQUFxQixDQUFBO0lBQ3JCLGlDQUFlLENBQUE7SUFDZixxQ0FBbUIsQ0FBQTtJQUNuQixxQ0FBbUIsQ0FBQTtJQUNuQixpQ0FBZSxDQUFBO0FBQ25CLENBQUMsRUFOVyxjQUFjLEtBQWQsY0FBYyxRQU16QjtBQVFELE1BQU0sT0FBTyxhQUFhO2lJQUFiLGFBQWE7cUhBQWIsYUFBYTs7MkZBQWIsYUFBYTtrQkFOekIsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUsbUJBQW1CO29CQUM3QixJQUFJLEVBQUU7d0JBQ0YsS0FBSyxFQUFFLGtCQUFrQjtxQkFDNUI7aUJBQ0o7O0FBU0QsTUFBTSxPQUFPLG1CQUFtQjtpSUFBbkIsbUJBQW1CO3FIQUFuQixtQkFBbUI7OzJGQUFuQixtQkFBbUI7a0JBTi9CLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLDBCQUEwQjtvQkFDcEMsSUFBSSxFQUFFO3dCQUNGLEtBQUssRUFBRSx3QkFBd0I7cUJBQ2xDO2lCQUNKOztBQVNELE1BQU0sT0FBTyxlQUFlO2lJQUFmLGVBQWU7cUhBQWYsZUFBZTs7MkZBQWYsZUFBZTtrQkFOM0IsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUscUJBQXFCO29CQUMvQixJQUFJLEVBQUU7d0JBQ0YsS0FBSyxFQUFFLG1CQUFtQjtxQkFDN0I7aUJBQ0o7O0FBbUJELE1BQU0sT0FBTyxRQUFRO0lBaEJyQjtRQXVCYSxZQUFPLEdBQVksS0FBSyxDQUFDO1FBQ3pCLGVBQVUsR0FBNEIsY0FBYyxDQUFDLE9BQU8sQ0FBQztRQVc5RCxnQkFBVyxHQUE0QixjQUFjLENBQUMsUUFBUSxDQUFDO0tBYTFFO0lBdEJHLElBQ0ksVUFBVTtRQUNWLE9BQU8sYUFBYSxJQUFJLENBQUMsV0FBVyxFQUFFLENBQUM7SUFDM0MsQ0FBQztJQUVELElBQUksVUFBVSxDQUFDLEtBQThCO1FBQ3pDLElBQUksQ0FBQyxXQUFXLEdBQUcsS0FBSyxJQUFJLGNBQWMsQ0FBQyxRQUFRLENBQUM7SUFDeEQsQ0FBQztJQUlELElBQUksU0FBUztRQUNULE9BQU8sSUFBSSxDQUFDLFVBQVUsS0FBSyxjQUFjLENBQUMsT0FBTyxDQUFBO0lBQ3JELENBQUM7SUFFRCxrQkFBa0I7UUFDZCxNQUFNLElBQUksR0FBRyxJQUFJLENBQUMsSUFBSSxJQUFJLElBQUksQ0FBQyxRQUFRLENBQUM7UUFFeEMsSUFBSSxJQUFJLEVBQUUsQ0FBQztZQUNQLElBQUksQ0FBQyxLQUFLLEdBQUcsSUFBSSxDQUFDLFdBQVcsQ0FBQztRQUNsQyxDQUFDO0lBQ0wsQ0FBQztpSUEvQlEsUUFBUTtxSEFBUixRQUFRLG9jQUNILFdBQVcsdUVBQ1gsT0FBTyx3RUFDUCxhQUFhLDBFQUNiLGVBQWUsOEVBQ2YsbUJBQW1CLGdEQ3RFckMsNnJCQW1CQTs7MkZEOENhLFFBQVE7a0JBaEJwQixTQUFTOytCQUNJLFdBQVcsbUJBR0osdUJBQXVCLENBQUMsTUFBTSxpQkFDaEMsaUJBQWlCLENBQUMsSUFBSSxRQUMvQjt3QkFDRixLQUFLLEVBQUUsV0FBVzt3QkFDbEIsU0FBUyxFQUFFLFlBQVk7d0JBQ3ZCLDBCQUEwQixFQUFFLFVBQVU7d0JBQ3RDLDJCQUEyQixFQUFFLFNBQVM7d0JBQ3RDLDJCQUEyQixFQUFFLFlBQVk7d0JBQ3pDLDJCQUEyQixFQUFFLFdBQVc7d0JBQ3hDLCtCQUErQixFQUFFLGFBQWE7cUJBQ2pEOzhCQUcwQixRQUFRO3NCQUFsQyxZQUFZO3VCQUFDLFdBQVc7Z0JBQ0YsSUFBSTtzQkFBMUIsWUFBWTt1QkFBQyxPQUFPO2dCQUNRLEtBQUs7c0JBQWpDLFlBQVk7dUJBQUMsYUFBYTtnQkFDSSxPQUFPO3NCQUFyQyxZQUFZO3VCQUFDLGVBQWU7Z0JBQ00sV0FBVztzQkFBN0MsWUFBWTt1QkFBQyxtQkFBbUI7Z0JBRXhCLE9BQU87c0JBQWYsS0FBSztnQkFDRyxVQUFVO3NCQUFsQixLQUFLO2dCQUdGLFVBQVU7c0JBRGIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gICAgQWZ0ZXJDb250ZW50SW5pdCxcbiAgICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcbiAgICBDb21wb25lbnQsXG4gICAgQ29udGVudENoaWxkLFxuICAgIERpcmVjdGl2ZSxcbiAgICBJbnB1dCxcbiAgICBWaWV3RW5jYXBzdWxhdGlvblxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEticUljb24sIEticUljb25JdGVtIH0gZnJvbSAnQGtvb2JpcS9jb21wb25lbnRzL2ljb24nO1xuXG5cbmV4cG9ydCBlbnVtIEticUFsZXJ0U3R5bGVzIHtcbiAgICBEZWZhdWx0ID0gJ2RlZmF1bHQnLFxuICAgIENvbG9yZWQgPSAnY29sb3JlZCdcbn1cblxuZXhwb3J0IGVudW0gS2JxQWxlcnRDb2xvcnMge1xuICAgIENvbnRyYXN0ID0gJ2NvbnRyYXN0JyxcbiAgICBFcnJvciA9ICdlcnJvcicsXG4gICAgV2FybmluZyA9ICd3YXJuaW5nJyxcbiAgICBTdWNjZXNzID0gJ3N1Y2Nlc3MnLFxuICAgIFRoZW1lID0gJ3RoZW1lJ1xufVxuXG5ARGlyZWN0aXZlKHtcbiAgICBzZWxlY3RvcjogJ1trYnEtYWxlcnQtdGl0bGVdJyxcbiAgICBob3N0OiB7XG4gICAgICAgIGNsYXNzOiAna2JxLWFsZXJ0X190aXRsZSdcbiAgICB9XG59KVxuZXhwb3J0IGNsYXNzIEticUFsZXJ0VGl0bGUge31cblxuQERpcmVjdGl2ZSh7XG4gICAgc2VsZWN0b3I6ICdba2JxLWFsZXJ0LWNsb3NlLWJ1dHRvbl0nLFxuICAgIGhvc3Q6IHtcbiAgICAgICAgY2xhc3M6ICdrYnEtYWxlcnQtY2xvc2UtYnV0dG9uJ1xuICAgIH1cbn0pXG5leHBvcnQgY2xhc3MgS2JxQWxlcnRDbG9zZUJ1dHRvbiB7fVxuXG5ARGlyZWN0aXZlKHtcbiAgICBzZWxlY3RvcjogJ1trYnEtYWxlcnQtY29udHJvbF0nLFxuICAgIGhvc3Q6IHtcbiAgICAgICAgY2xhc3M6ICdrYnEtYWxlcnQtY29udHJvbCdcbiAgICB9XG59KVxuZXhwb3J0IGNsYXNzIEticUFsZXJ0Q29udHJvbCB7fVxuXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ2ticS1hbGVydCcsXG4gICAgdGVtcGxhdGVVcmw6ICcuL2FsZXJ0LmNvbXBvbmVudC5odG1sJyxcbiAgICBzdHlsZVVybHM6IFsnYWxlcnQuY29tcG9uZW50LnNjc3MnXSxcbiAgICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICAgIGhvc3Q6IHtcbiAgICAgICAgY2xhc3M6ICdrYnEtYWxlcnQnLFxuICAgICAgICAnW2NsYXNzXSc6ICdhbGVydENvbG9yJyxcbiAgICAgICAgJ1tjbGFzcy5rYnEtYWxlcnRfbm9ybWFsXSc6ICchY29tcGFjdCcsXG4gICAgICAgICdbY2xhc3Mua2JxLWFsZXJ0X2NvbXBhY3RdJzogJ2NvbXBhY3QnLFxuICAgICAgICAnW2NsYXNzLmticS1hbGVydF9kZWZhdWx0XSc6ICchaXNDb2xvcmVkJyxcbiAgICAgICAgJ1tjbGFzcy5rYnEtYWxlcnRfY29sb3JlZF0nOiAnaXNDb2xvcmVkJyxcbiAgICAgICAgJ1tjbGFzcy5rYnEtYWxlcnRfZGlzbWlzc2libGVdJzogJ2Nsb3NlQnV0dG9uJ1xuICAgIH1cbn0pXG5leHBvcnQgY2xhc3MgS2JxQWxlcnQgaW1wbGVtZW50cyBBZnRlckNvbnRlbnRJbml0IHtcbiAgICBAQ29udGVudENoaWxkKEticUljb25JdGVtKSBpY29uSXRlbTogS2JxSWNvbkl0ZW07XG4gICAgQENvbnRlbnRDaGlsZChLYnFJY29uKSBpY29uOiBLYnFJY29uO1xuICAgIEBDb250ZW50Q2hpbGQoS2JxQWxlcnRUaXRsZSkgdGl0bGU6IEticUFsZXJ0VGl0bGU7XG4gICAgQENvbnRlbnRDaGlsZChLYnFBbGVydENvbnRyb2wpIGNvbnRyb2w6IEticUFsZXJ0Q29udHJvbDtcbiAgICBAQ29udGVudENoaWxkKEticUFsZXJ0Q2xvc2VCdXR0b24pIGNsb3NlQnV0dG9uOiBLYnFBbGVydENsb3NlQnV0dG9uO1xuXG4gICAgQElucHV0KCkgY29tcGFjdDogYm9vbGVhbiA9IGZhbHNlO1xuICAgIEBJbnB1dCgpIGFsZXJ0U3R5bGU6IEticUFsZXJ0U3R5bGVzIHwgc3RyaW5nID0gS2JxQWxlcnRTdHlsZXMuRGVmYXVsdDtcblxuICAgIEBJbnB1dCgpXG4gICAgZ2V0IGFsZXJ0Q29sb3IoKTogc3RyaW5nIHtcbiAgICAgICAgcmV0dXJuIGBrYnEtYWxlcnRfJHt0aGlzLl9hbGVydENvbG9yfWA7XG4gICAgfVxuXG4gICAgc2V0IGFsZXJ0Q29sb3IodmFsdWU6IHN0cmluZyB8IEticUFsZXJ0Q29sb3JzKSB7XG4gICAgICAgIHRoaXMuX2FsZXJ0Q29sb3IgPSB2YWx1ZSB8fCBLYnFBbGVydENvbG9ycy5Db250cmFzdDtcbiAgICB9XG5cbiAgICBwcml2YXRlIF9hbGVydENvbG9yOiBzdHJpbmcgfCBLYnFBbGVydENvbG9ycyA9IEticUFsZXJ0Q29sb3JzLkNvbnRyYXN0O1xuXG4gICAgZ2V0IGlzQ29sb3JlZCgpOiBib29sZWFuIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuYWxlcnRTdHlsZSA9PT0gS2JxQWxlcnRTdHlsZXMuQ29sb3JlZFxuICAgIH1cblxuICAgIG5nQWZ0ZXJDb250ZW50SW5pdCgpOiB2b2lkIHtcbiAgICAgICAgY29uc3QgaWNvbiA9IHRoaXMuaWNvbiB8fCB0aGlzLmljb25JdGVtO1xuXG4gICAgICAgIGlmIChpY29uKSB7XG4gICAgICAgICAgICBpY29uLmNvbG9yID0gdGhpcy5fYWxlcnRDb2xvcjtcbiAgICAgICAgfVxuICAgIH1cbn1cblxuIiwiPGRpdiBjbGFzcz1cImticS1hbGVydF9faWNvblwiIFtjbGFzcy5rYnEtYWxlcnRfX2ljb25fdGl0bGVdPVwidGl0bGVcIiAqbmdJZj1cImljb25JdGVtIHx8IGljb25cIj5cbiAgICA8bmctY29udGVudCBzZWxlY3Q9XCJba2JxLWljb24taXRlbV0sW2ticS1pY29uXVwiPjwvbmctY29udGVudD5cbjwvZGl2PlxuXG48ZGl2IGNsYXNzPVwia2JxLWFsZXJ0X19jb250ZW50XCIgW2NsYXNzLmticS1hbGVydF9fY29udGVudF90aXRsZV09XCJ0aXRsZVwiPlxuICAgIDxuZy1jb250ZW50IHNlbGVjdD1cIltrYnEtYWxlcnQtdGl0bGVdXCI+PC9uZy1jb250ZW50PlxuXG4gICAgPGRpdiBjbGFzcz1cImticS1hbGVydF9fdGV4dFwiPlxuICAgICAgICA8bmctY29udGVudD48L25nLWNvbnRlbnQ+XG4gICAgPC9kaXY+XG5cbiAgICA8ZGl2IGNsYXNzPVwia2JxLWFsZXJ0X19idXR0b24tc3RhY2tcIiAqbmdJZj1cImNvbnRyb2xcIj5cbiAgICAgICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiW2ticS1hbGVydC1jb250cm9sXVwiPjwvbmctY29udGVudD5cbiAgICA8L2Rpdj5cbjwvZGl2PlxuXG48ZGl2IGNsYXNzPVwia2JxLWFsZXJ0X19jbG9zZS1idXR0b25cIiBbaGlkZGVuXT1cIiFjbG9zZUJ1dHRvblwiPlxuICAgIDxuZy1jb250ZW50IHNlbGVjdD1cIltrYnEtYWxlcnQtY2xvc2UtYnV0dG9uXVwiPjwvbmctY29udGVudD5cbjwvZGl2PlxuIl19
|
|
@@ -99,7 +99,7 @@ export class KbqBadge {
|
|
|
99
99
|
this._badgeColor = value || KbqBadgeColors.FadeContrast;
|
|
100
100
|
}
|
|
101
101
|
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqBadge, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
102
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.0", type: KbqBadge, selector: "kbq-badge", inputs: { compact: "compact", outline: "outline", badgeColor: "badgeColor" }, host: { properties: { "class.kbq-badge_compact": "compact", "class.kbq-badge-filled": "!outline", "class.kbq-badge-outline": "outline", "class": "badgeColor" }, classAttribute: "kbq-badge" }, queries: [{ propertyName: "iconItem", first: true, predicate: KbqIconItem, descendants: true }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true, styles: [".kbq-badge{display:inline-flex;flex-direction:row;justify-content:flex-start;align-items:center;text-align:center;white-space:nowrap;border-style:solid;box-sizing:border-box;padding:var(--kbq-badge-size-normal-
|
|
102
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.0", type: KbqBadge, selector: "kbq-badge", inputs: { compact: "compact", outline: "outline", badgeColor: "badgeColor" }, host: { properties: { "class.kbq-badge_compact": "compact", "class.kbq-badge-filled": "!outline", "class.kbq-badge-outline": "outline", "class": "badgeColor" }, classAttribute: "kbq-badge" }, queries: [{ propertyName: "iconItem", first: true, predicate: KbqIconItem, descendants: true }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true, styles: [".kbq-badge{display:inline-flex;flex-direction:row;justify-content:flex-start;align-items:center;height:var(--kbq-badge-size-normal-height, 24px);text-align:center;white-space:nowrap;border-style:solid;box-sizing:border-box;padding-right:var(--kbq-badge-size-normal-horizontal-padding, 8px);padding-left:var(--kbq-badge-size-normal-horizontal-padding, 8px);border-width:var(--kbq-badge-size-normal-border-width, 1px);border-radius:var(--kbq-badge-size-normal-border-radius, 4px)}.kbq-badge .kbq-badge-caption{padding-left:var(--kbq-badge-size-normal-content-padding, 4px)}.kbq-badge .kbq-icon_left{margin-right:var(--kbq-badge-size-normal-icon-left-margin-right, 4px)}.kbq-badge .kbq-icon_right{margin-left:var(--kbq-badge-size-normal-icon-right-margin-left, 4px)}.kbq-badge.kbq-badge_compact{height:var(--kbq-badge-size-compact-height, 16px);padding-right:var(--kbq-badge-size-compact-horizontal-padding, 4px);padding-left:var(--kbq-badge-size-compact-horizontal-padding, 4px);border-width:var(--kbq-badge-size-compact-border-width, 1px);border-radius:var(--kbq-badge-size-compact-border-radius, 4px)}.kbq-badge.kbq-badge_compact .kbq-badge-caption{padding-left:var(--kbq-badge-size-compact-content-padding, 2px)}.kbq-badge.kbq-badge_compact .kbq-icon_left{margin-right:var(--kbq-badge-size-compact-icon-left-margin-right, 2px)}.kbq-badge.kbq-badge_compact .kbq-icon_right{margin-left:var(--kbq-badge-size-compact-icon-right-margin-left, 2px)}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
103
103
|
}
|
|
104
104
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqBadge, decorators: [{
|
|
105
105
|
type: Component,
|
|
@@ -109,7 +109,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImpor
|
|
|
109
109
|
'[class.kbq-badge-filled]': '!outline',
|
|
110
110
|
'[class.kbq-badge-outline]': 'outline',
|
|
111
111
|
'[class]': 'badgeColor'
|
|
112
|
-
}, styles: [".kbq-badge{display:inline-flex;flex-direction:row;justify-content:flex-start;align-items:center;text-align:center;white-space:nowrap;border-style:solid;box-sizing:border-box;padding:var(--kbq-badge-size-normal-
|
|
112
|
+
}, styles: [".kbq-badge{display:inline-flex;flex-direction:row;justify-content:flex-start;align-items:center;height:var(--kbq-badge-size-normal-height, 24px);text-align:center;white-space:nowrap;border-style:solid;box-sizing:border-box;padding-right:var(--kbq-badge-size-normal-horizontal-padding, 8px);padding-left:var(--kbq-badge-size-normal-horizontal-padding, 8px);border-width:var(--kbq-badge-size-normal-border-width, 1px);border-radius:var(--kbq-badge-size-normal-border-radius, 4px)}.kbq-badge .kbq-badge-caption{padding-left:var(--kbq-badge-size-normal-content-padding, 4px)}.kbq-badge .kbq-icon_left{margin-right:var(--kbq-badge-size-normal-icon-left-margin-right, 4px)}.kbq-badge .kbq-icon_right{margin-left:var(--kbq-badge-size-normal-icon-right-margin-left, 4px)}.kbq-badge.kbq-badge_compact{height:var(--kbq-badge-size-compact-height, 16px);padding-right:var(--kbq-badge-size-compact-horizontal-padding, 4px);padding-left:var(--kbq-badge-size-compact-horizontal-padding, 4px);border-width:var(--kbq-badge-size-compact-border-width, 1px);border-radius:var(--kbq-badge-size-compact-border-radius, 4px)}.kbq-badge.kbq-badge_compact .kbq-badge-caption{padding-left:var(--kbq-badge-size-compact-content-padding, 2px)}.kbq-badge.kbq-badge_compact .kbq-icon_left{margin-right:var(--kbq-badge-size-compact-icon-left-margin-right, 2px)}.kbq-badge.kbq-badge_compact .kbq-icon_right{margin-left:var(--kbq-badge-size-compact-icon-right-margin-left, 2px)}\n"] }]
|
|
113
113
|
}], propDecorators: { iconItem: [{
|
|
114
114
|
type: ContentChild,
|
|
115
115
|
args: [KbqIconItem]
|