@ardium-ui/ui 5.0.0-alpha.9 → 5.0.0-alpha.91
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/fesm2022/ardium-ui-ui.mjs +5065 -2572
- package/fesm2022/ardium-ui-ui.mjs.map +1 -1
- package/lib/_internal/boolean-component.d.ts +13 -1
- package/lib/_internal/disablable-component.d.ts +2 -1
- package/lib/_internal/focusable-component.d.ts +2 -1
- package/lib/_internal/form-field-component.d.ts +3 -2
- package/lib/_internal/item-storages/dropdown-item-storage.d.ts +21 -21
- package/lib/_internal/item-storages/simple-item-storage.d.ts +15 -12
- package/lib/_internal/item-storages/simplest-item-storage.d.ts +1 -1
- package/lib/_internal/ngmodel-component.d.ts +8 -9
- package/lib/_internal/selectable-list-component.d.ts +6 -6
- package/lib/_internal/utils/date.utils.d.ts +16 -0
- package/lib/badge/badge.directive.d.ts +3 -2
- package/lib/breakpoints/breakpoint.service.d.ts +12 -0
- package/lib/breakpoints/breakpoint.utils.d.ts +7 -0
- package/lib/breakpoints/breakpoints.d.ts +13 -0
- package/lib/breakpoints/index.d.ts +2 -0
- package/lib/buttons/_button-base.d.ts +12 -8
- package/lib/buttons/_button-base.defaults.d.ts +3 -2
- package/lib/buttons/button/button.component.d.ts +5 -5
- package/lib/buttons/button/button.defaults.d.ts +0 -2
- package/lib/buttons/button/button.directive.d.ts +17 -0
- package/lib/buttons/button/button.module.d.ts +3 -2
- package/lib/buttons/button/index.d.ts +1 -0
- package/lib/buttons/fab/fab.component.d.ts +3 -1
- package/lib/buttons/icon-button/icon-button.component.d.ts +6 -4
- package/lib/buttons/icon-button/icon-button.defaults.d.ts +2 -1
- package/lib/calendar/abstract-calendar.d.ts +128 -0
- package/lib/calendar/calendar.component.d.ts +8 -96
- package/lib/calendar/calendar.defaults.d.ts +16 -1
- package/lib/calendar/calendar.internal-directives.d.ts +24 -8
- package/lib/calendar/calendar.internal-types.d.ts +1 -0
- package/lib/calendar/calendar.module.d.ts +4 -9
- package/lib/calendar/calendar.types.d.ts +21 -5
- package/lib/calendar/index.d.ts +3 -0
- package/lib/calendar/range-calendar.component.d.ts +16 -0
- package/lib/calendar/range-calendar.directives.d.ts +51 -0
- package/lib/calendar/range-calendar.module.d.ts +10 -0
- package/lib/calendar/views/calendar-views.module.d.ts +13 -0
- package/lib/calendar/views/days-view/days-view.component.d.ts +20 -2
- package/lib/calendar/views/days-view/days-view.helpers.d.ts +2 -2
- package/lib/calendar/views/months-view/months-view.component.d.ts +15 -3
- package/lib/calendar/views/years-view/years-view.component.d.ts +16 -3
- package/lib/checkbox/checkbox.component.d.ts +5 -2
- package/lib/checkbox/checkbox.types.d.ts +2 -0
- package/lib/checkbox-list/checkbox-list.component.d.ts +9 -7
- package/lib/checkbox-list/checkbox-list.directives.d.ts +7 -0
- package/lib/checkbox-list/checkbox-list.module.d.ts +1 -1
- package/lib/chip/chip.component.d.ts +2 -1
- package/lib/chip/deletable-chip/deletable-chip.component.d.ts +2 -1
- package/lib/chip/selectable-chip/selectable-chip.component.d.ts +5 -2
- package/lib/dialog/dialog.component.d.ts +13 -8
- package/lib/dialog/dialog.types.d.ts +1 -0
- package/lib/divider/divider.component.d.ts +2 -3
- package/lib/divider/divider.defaults.d.ts +5 -0
- package/lib/divider/divider.directive.d.ts +18 -0
- package/lib/divider/divider.module.d.ts +3 -2
- package/lib/divider/divider.types.d.ts +5 -0
- package/lib/divider/index.d.ts +2 -0
- package/lib/dropdown-panel/dropdown-panel.component.d.ts +2 -1
- package/lib/dropdown-panel/dropdown-panel.types.d.ts +1 -1
- package/lib/file-inputs/file-input/file-input.component.d.ts +2 -1
- package/lib/file-inputs/file-input-base.d.ts +4 -5
- package/lib/form-field/auto-error/auto-error.component.d.ts +19 -0
- package/lib/form-field/auto-error/auto-error.provider.d.ts +7 -0
- package/lib/form-field/error/error.directive.d.ts +3 -2
- package/lib/form-field/form-field-base.d.ts +5 -2
- package/lib/form-field/form-field-child.token.d.ts +5 -5
- package/lib/form-field/form-field-native-inputs.d.ts +6 -11
- package/lib/form-field/form-field.component.d.ts +1 -1
- package/lib/form-field/form-field.defaults.d.ts +1 -0
- package/lib/form-field/form-field.module.d.ts +5 -4
- package/lib/form-field/hint/hint.directive.d.ts +3 -2
- package/lib/form-field/hint-error/hint-error.directive.d.ts +3 -2
- package/lib/form-field/horizontal-form-field.component.d.ts +1 -1
- package/lib/form-field/index.d.ts +2 -0
- package/lib/form-field/label/label.component.d.ts +3 -2
- package/lib/form-field-frame/form-field-frame.component.d.ts +5 -3
- package/lib/grid/grid.component.d.ts +51 -0
- package/lib/grid/grid.defaults.d.ts +16 -0
- package/lib/grid/grid.module.d.ts +7 -0
- package/lib/grid/grid.types.d.ts +38 -0
- package/lib/grid/grid.utils.d.ts +11 -0
- package/lib/grid/index.d.ts +4 -0
- package/lib/icon/icon.component.d.ts +2 -1
- package/lib/inputs/_simple-input-base.d.ts +9 -4
- package/lib/inputs/autocomplete-input/autocomplete-input.component.d.ts +5 -4
- package/lib/inputs/date-input/abstract-date-input.d.ts +110 -0
- package/lib/inputs/date-input/date-input.component.d.ts +19 -81
- package/lib/inputs/date-input/date-input.defaults.d.ts +21 -3
- package/lib/inputs/date-input/{date-input.directive.d.ts → date-input.directives.d.ts} +2 -2
- package/lib/inputs/date-input/date-input.module.d.ts +5 -4
- package/lib/inputs/date-input/date-input.serializers.d.ts +4 -2
- package/lib/inputs/date-input/date-input.types.d.ts +5 -4
- package/lib/inputs/date-input/date-range-input.component.d.ts +30 -0
- package/lib/inputs/date-input/date-range-input.directives.d.ts +82 -0
- package/lib/inputs/date-input/date-range-input.module.d.ts +17 -0
- package/lib/inputs/date-input/index.d.ts +7 -1
- package/lib/inputs/date-input/multipage-date-range-input.component.d.ts +45 -0
- package/lib/inputs/date-input/multipage-date-range-input.directives.d.ts +82 -0
- package/lib/inputs/date-input/multipage-date-range-input.module.d.ts +17 -0
- package/lib/inputs/digit-input/digit-input.component.d.ts +4 -3
- package/lib/inputs/hex-input/hex-input.component.d.ts +5 -5
- package/lib/inputs/input-types.d.ts +9 -0
- package/lib/inputs/input-utils.d.ts +13 -2
- package/lib/inputs/number-input/number-input.component.d.ts +20 -13
- package/lib/inputs/number-input/number-input.defaults.d.ts +6 -0
- package/lib/inputs/number-input/number-input.directives.d.ts +12 -0
- package/lib/inputs/number-input/number-input.module.d.ts +1 -1
- package/lib/inputs/number-input/number-input.types.d.ts +6 -0
- package/lib/inputs/password-input/password-input.component.d.ts +6 -5
- package/lib/kbd/kbd.component.d.ts +2 -1
- package/lib/kbd-shortcut/kbd-shortcut.component.d.ts +2 -1
- package/lib/modal/modal.component.d.ts +9 -6
- package/lib/modal/modal.defaults.d.ts +2 -0
- package/lib/option/option.component.d.ts +2 -1
- package/lib/progress-bar/progress-bar.component.d.ts +4 -3
- package/lib/progress-circle/progress-circle.component.d.ts +5 -4
- package/lib/radio/radio/radio.component.d.ts +8 -3
- package/lib/radio/radio-group.component.d.ts +2 -2
- package/lib/search-functions.d.ts +1 -1
- package/lib/segment/segment.component.d.ts +6 -5
- package/lib/select/select.component.d.ts +45 -39
- package/lib/select/select.defaults.d.ts +4 -2
- package/lib/select/select.directive.d.ts +6 -0
- package/lib/select/select.module.d.ts +1 -1
- package/lib/select/select.types.d.ts +6 -2
- package/lib/slide-toggle/slide-toggle.component.d.ts +2 -0
- package/lib/slider/abstract-slider.d.ts +37 -29
- package/lib/slider/index.d.ts +1 -0
- package/lib/slider/range-slider/range-slider.component.d.ts +12 -9
- package/lib/slider/range-slider/range-slider.types.d.ts +6 -0
- package/lib/slider/slider.component.d.ts +5 -4
- package/lib/slider/slider.types.d.ts +3 -3
- package/lib/snackbar/snackbar-ref.d.ts +37 -4
- package/lib/snackbar/snackbar.service.d.ts +27 -0
- package/lib/snackbar/snackbar.types.d.ts +36 -0
- package/lib/star/rating-display/rating-display.component.d.ts +2 -1
- package/lib/star/rating-input/rating-input.component.d.ts +5 -3
- package/lib/star/rating-input/rating-input.defaults.d.ts +2 -2
- package/lib/star/star-button/star-button.component.d.ts +4 -1
- package/lib/star/star-button/star-button.types.d.ts +1 -0
- package/lib/tabber/index.d.ts +2 -1
- package/lib/tabber/tab/tab.component.d.ts +16 -8
- package/lib/tabber/tabber.component.d.ts +25 -9
- package/lib/tabber/tabber.defaults.d.ts +2 -0
- package/lib/tabber/tabber.directives.d.ts +9 -0
- package/lib/tabber/tabber.module.d.ts +3 -2
- package/lib/tabber/tabber.types.d.ts +5 -0
- package/lib/table/table.component.d.ts +16 -15
- package/lib/table-pagination/table-pagination.component.d.ts +4 -3
- package/lib/text-list/text-list.component.d.ts +2 -1
- package/lib/types/alignment.types.d.ts +7 -1
- package/lib/types/item-storage.types.d.ts +29 -18
- package/lib/types/theming.types.d.ts +1 -0
- package/package.json +3 -2
- package/prebuilt-themes/default/badge.css +234 -205
- package/prebuilt-themes/default/badge.css.map +1 -1
- package/prebuilt-themes/default/buttons/button.css +324 -301
- package/prebuilt-themes/default/buttons/button.css.map +1 -1
- package/prebuilt-themes/default/buttons/fab.css +317 -299
- package/prebuilt-themes/default/buttons/fab.css.map +1 -1
- package/prebuilt-themes/default/buttons/icon-button.css +299 -287
- package/prebuilt-themes/default/buttons/icon-button.css.map +1 -1
- package/prebuilt-themes/default/calendar.css +390 -308
- package/prebuilt-themes/default/calendar.css.map +1 -1
- package/prebuilt-themes/default/card.css +151 -127
- package/prebuilt-themes/default/card.css.map +1 -1
- package/prebuilt-themes/default/checkbox-list.css +89 -62
- package/prebuilt-themes/default/checkbox-list.css.map +1 -1
- package/prebuilt-themes/default/checkbox.css +349 -362
- package/prebuilt-themes/default/checkbox.css.map +1 -1
- package/prebuilt-themes/default/chips.css +412 -359
- package/prebuilt-themes/default/chips.css.map +1 -1
- package/prebuilt-themes/default/color-display.css +34 -26
- package/prebuilt-themes/default/color-display.css.map +1 -1
- package/prebuilt-themes/default/color-picker.css +105 -103
- package/prebuilt-themes/default/color-picker.css.map +1 -1
- package/prebuilt-themes/default/core.css +108 -86
- package/prebuilt-themes/default/core.css.map +1 -1
- package/prebuilt-themes/default/dialog.css +19 -15
- package/prebuilt-themes/default/dialog.css.map +1 -1
- package/prebuilt-themes/default/divider.css +84 -8
- package/prebuilt-themes/default/divider.css.map +1 -1
- package/prebuilt-themes/default/dropdown-panel.css +42 -34
- package/prebuilt-themes/default/dropdown-panel.css.map +1 -1
- package/prebuilt-themes/default/file-drop-area.css +329 -276
- package/prebuilt-themes/default/file-drop-area.css.map +1 -1
- package/prebuilt-themes/default/form-field-frame.css +102 -98
- package/prebuilt-themes/default/form-field-frame.css.map +1 -1
- package/prebuilt-themes/default/form-field.css +148 -118
- package/prebuilt-themes/default/form-field.css.map +1 -1
- package/prebuilt-themes/default/inputs/autocomplete-input.css +183 -132
- package/prebuilt-themes/default/inputs/autocomplete-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/color-input.css +99 -137
- package/prebuilt-themes/default/inputs/color-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/date-input.css +132 -63
- package/prebuilt-themes/default/inputs/date-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/digit-input.css +120 -110
- package/prebuilt-themes/default/inputs/digit-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/file-input.css +385 -325
- package/prebuilt-themes/default/inputs/file-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/hex-input.css +150 -117
- package/prebuilt-themes/default/inputs/hex-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/input.css +137 -107
- package/prebuilt-themes/default/inputs/input.css.map +1 -1
- package/prebuilt-themes/default/inputs/number-input.css +214 -164
- package/prebuilt-themes/default/inputs/number-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/password-input.css +120 -71
- package/prebuilt-themes/default/inputs/password-input.css.map +1 -1
- package/prebuilt-themes/default/kbd-shortcut.css +14 -9
- package/prebuilt-themes/default/kbd-shortcut.css.map +1 -1
- package/prebuilt-themes/default/kbd.css +26 -15
- package/prebuilt-themes/default/kbd.css.map +1 -1
- package/prebuilt-themes/default/modal.css +96 -71
- package/prebuilt-themes/default/modal.css.map +1 -1
- package/prebuilt-themes/default/progress-bar.css +250 -228
- package/prebuilt-themes/default/progress-bar.css.map +1 -1
- package/prebuilt-themes/default/progress-circle.css +178 -164
- package/prebuilt-themes/default/progress-circle.css.map +1 -1
- package/prebuilt-themes/default/radio.css +246 -223
- package/prebuilt-themes/default/radio.css.map +1 -1
- package/prebuilt-themes/default/segment.css +432 -414
- package/prebuilt-themes/default/segment.css.map +1 -1
- package/prebuilt-themes/default/select.css +302 -270
- package/prebuilt-themes/default/select.css.map +1 -1
- package/prebuilt-themes/default/slide-toggle.css +319 -261
- package/prebuilt-themes/default/slide-toggle.css.map +1 -1
- package/prebuilt-themes/default/slider.css +399 -351
- package/prebuilt-themes/default/slider.css.map +1 -1
- package/prebuilt-themes/default/snackbar.css +189 -169
- package/prebuilt-themes/default/snackbar.css.map +1 -1
- package/prebuilt-themes/default/spinner.css +161 -148
- package/prebuilt-themes/default/spinner.css.map +1 -1
- package/prebuilt-themes/default/stars.css +271 -246
- package/prebuilt-themes/default/stars.css.map +1 -1
- package/prebuilt-themes/default/tabber.css +250 -207
- package/prebuilt-themes/default/tabber.css.map +1 -1
- package/prebuilt-themes/default/table-pagination.css +57 -45
- package/prebuilt-themes/default/table-pagination.css.map +1 -1
- package/prebuilt-themes/default/table.css +464 -432
- package/prebuilt-themes/default/table.css.map +1 -1
- package/public-api.d.ts +2 -1
- package/themes/_variables.scss +2 -1
- package/themes/default/_coloring.scss +7 -0
- package/themes/default/_mixins.scss +5 -5
- package/themes/default/badge.scss +115 -80
- package/themes/default/buttons/_button-mixins.scss +43 -33
- package/themes/default/buttons/button.scss +90 -63
- package/themes/default/buttons/fab.scss +74 -49
- package/themes/default/buttons/icon-button.scss +70 -45
- package/themes/default/calendar.scss +257 -163
- package/themes/default/card.scss +167 -121
- package/themes/default/checkbox-list.scss +90 -62
- package/themes/default/checkbox.scss +64 -91
- package/themes/default/chips.scss +203 -143
- package/themes/default/color-display.scss +40 -28
- package/themes/default/color-picker.scss +95 -93
- package/themes/default/core.scss +123 -97
- package/themes/default/dialog.scss +22 -13
- package/themes/default/divider.scss +109 -7
- package/themes/default/dropdown-panel.scss +49 -34
- package/themes/default/file-drop-area.scss +197 -138
- package/themes/default/form-field-frame.scss +73 -63
- package/themes/default/form-field.scss +136 -98
- package/themes/default/inputs/_shared.scss +52 -12
- package/themes/default/inputs/autocomplete-input.scss +102 -31
- package/themes/default/inputs/color-input.scss +34 -32
- package/themes/default/inputs/date-input.scss +88 -20
- package/themes/default/inputs/digit-input.scss +103 -79
- package/themes/default/inputs/file-input.scss +160 -81
- package/themes/default/inputs/hex-input.scss +68 -16
- package/themes/default/inputs/input.scss +55 -6
- package/themes/default/inputs/number-input.scss +167 -92
- package/themes/default/inputs/password-input.scss +100 -29
- package/themes/default/kbd-shortcut.scss +16 -8
- package/themes/default/kbd.scss +35 -16
- package/themes/default/modal.scss +109 -73
- package/themes/default/progress-bar.scss +126 -102
- package/themes/default/progress-circle.scss +49 -41
- package/themes/default/radio.scss +110 -87
- package/themes/default/segment.scss +282 -267
- package/themes/default/select.scss +255 -197
- package/themes/default/slide-toggle.scss +193 -116
- package/themes/default/slider.scss +230 -187
- package/themes/default/snackbar.scss +52 -32
- package/themes/default/spinner.scss +24 -14
- package/themes/default/stars.scss +99 -68
- package/themes/default/tabber.scss +109 -67
- package/themes/default/table-pagination.scss +60 -44
- package/themes/default/table.scss +379 -343
- package/lib/statebox/index.d.ts +0 -4
- package/lib/statebox/statebox.component.d.ts +0 -26
- package/lib/statebox/statebox.defaults.d.ts +0 -10
- package/lib/statebox/statebox.module.d.ts +0 -8
- package/lib/statebox/statebox.types.d.ts +0 -26
- package/lib/tabber/tab/tab.defaults.d.ts +0 -6
- package/prebuilt-themes/default/calendar-OLD.css +0 -294
- package/prebuilt-themes/default/calendar-OLD.css.map +0 -1
- package/prebuilt-themes/default/inputs/search-bar.css +0 -118
- package/prebuilt-themes/default/inputs/search-bar.css.map +0 -1
- package/prebuilt-themes/default/statebox.css +0 -235
- package/prebuilt-themes/default/statebox.css.map +0 -1
- package/themes/default/calendar-OLD.scss +0 -183
- package/themes/default/inputs/search-bar.scss +0 -19
- package/themes/default/statebox.scss +0 -109
|
@@ -1,362 +1,415 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
}
|
|
138
|
-
.ard-chip-wrapper.ard-color-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
}
|
|
246
|
-
.ard-chip-wrapper
|
|
247
|
-
|
|
248
|
-
}
|
|
249
|
-
.ard-chip-wrapper.ard-
|
|
250
|
-
|
|
251
|
-
}
|
|
252
|
-
.ard-chip-wrapper.ard-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
}
|
|
288
|
-
.ard-chip-wrapper.ard-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
}
|
|
349
|
-
.ard-chip-wrapper.ard-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
1
|
+
@layer ard-ui {
|
|
2
|
+
:root {
|
|
3
|
+
--ard-chip-margin: 0;
|
|
4
|
+
--ard-chip-height: 2rem;
|
|
5
|
+
--ard-chip-height-compact: 1.4375rem;
|
|
6
|
+
--ard-chip-padding: 0 0.75rem;
|
|
7
|
+
--ard-chip-padding-compact: 0 0.5625rem;
|
|
8
|
+
--ard-chip-padding-align-left: 0.125rem;
|
|
9
|
+
--ard-chip-padding-align-left-deletable: 0.25rem;
|
|
10
|
+
--ard-chip-padding-align-right: 0.125rem;
|
|
11
|
+
--ard-chip-padding-align-right-deletable: 0.25rem;
|
|
12
|
+
--ard-chip-selection-icon-padding: 0.5rem;
|
|
13
|
+
--ard-chip-selection-icon-margin: -0.125rem;
|
|
14
|
+
--ard-chip-selection-icon-padding-compact: 0.25rem;
|
|
15
|
+
--ard-chip-selection-icon-margin-compact: -0.25rem;
|
|
16
|
+
--ard-chip-content-wrapper-padding: 0.5rem;
|
|
17
|
+
--ard-chip-selectable-hover-overlay-opacity: 7.5%;
|
|
18
|
+
--ard-chip-selectable-active-overlay-opacity: 20%;
|
|
19
|
+
--ard-chip-outlined-hover-overlay-opacity: 4%;
|
|
20
|
+
--ard-chip-outlined-active-overlay-opacity: 10%;
|
|
21
|
+
--ard-chip-outlined-selected-overlay-opacity: 12%;
|
|
22
|
+
--ard-chip-outlined-selected-hover-overlay-opacity: 17%;
|
|
23
|
+
--ard-chip-outlined-selected-focus-overlay-opacity: 0%;
|
|
24
|
+
--ard-chip-outlined-selected-focus-visible-overlay-opacity: 17%;
|
|
25
|
+
--ard-chip-outlined-selected-active-overlay-opacity: 22%;
|
|
26
|
+
--ard-chip-transition: 0.15s ease;
|
|
27
|
+
--ard-chip-disabled-opacity: 60%;
|
|
28
|
+
--ard-chip-disabled-selected-opacity: 40%;
|
|
29
|
+
}
|
|
30
|
+
.ard-chip-wrapper {
|
|
31
|
+
border-radius: var(--ard-variant-border-radius);
|
|
32
|
+
font-family: var(--ard-font-family);
|
|
33
|
+
color: var(--ard-text2);
|
|
34
|
+
background: var(--ard-bg);
|
|
35
|
+
border-radius: var(--ard-variant-border-radius);
|
|
36
|
+
padding: 0;
|
|
37
|
+
margin: var(--ard-chip-margin, 0);
|
|
38
|
+
vertical-align: center;
|
|
39
|
+
display: flex;
|
|
40
|
+
align-items: center;
|
|
41
|
+
font-size: var(--ard-chip-font-size, 0.875rem);
|
|
42
|
+
position: relative;
|
|
43
|
+
outline: none;
|
|
44
|
+
user-select: none;
|
|
45
|
+
overflow: hidden;
|
|
46
|
+
height: var(--ard-chip-height, 2rem);
|
|
47
|
+
}
|
|
48
|
+
.ard-chip-wrapper.ard-color-none {
|
|
49
|
+
--ard-cmpcl--bg: var(--ard-bg);
|
|
50
|
+
--ard-cmpcl--bg-colored: var(--ard-bg-alt);
|
|
51
|
+
--ard-cmpcl--bg-colored-light: var(--ard-detail-light);
|
|
52
|
+
--ard-cmpcl--bg-header: var(--ard-bg-filled);
|
|
53
|
+
--ard-cmpcl--bg-colored-verylight: var(--ard-bg-darker);
|
|
54
|
+
--ard-cmpcl--on-bg: var(--ard-text);
|
|
55
|
+
--ard-cmpcl--on-bg-colored: var(--ard-text-alt);
|
|
56
|
+
--ard-cmpcl--on-bg-colored-light: var(--ard-text);
|
|
57
|
+
--ard-cmpcl--border: var(--ard-text);
|
|
58
|
+
--ard-cmpcl--border-light: var(--ard-text2);
|
|
59
|
+
--ard-cmpcl--content: var(--ard-text);
|
|
60
|
+
--ard-cmpcl--content-light: var(--ard-text-alt);
|
|
61
|
+
--ard-cmpcl--overlay-rgb: var(--ard-overlay-rgb);
|
|
62
|
+
--ard-cmpcl--overlay: var(--ard-overlay);
|
|
63
|
+
--ard-cmpcl--overlay-colored: var(--ard-overlay);
|
|
64
|
+
--ard-cmpcl--overlay-colored-light: var(--ard-text-alt);
|
|
65
|
+
}
|
|
66
|
+
.ard-chip-wrapper.ard-color-primary {
|
|
67
|
+
--ard-cmpcl--bg: rgb(var(--ard-primary-500));
|
|
68
|
+
--ard-cmpcl--bg-colored: rgb(var(--ard-primary-500));
|
|
69
|
+
--ard-cmpcl--bg-colored-light: rgb(var(--ard-primary-100));
|
|
70
|
+
--ard-cmpcl--bg-header: rgb(var(--ard-primary-100));
|
|
71
|
+
--ard-cmpcl--bg-colored-verylight: rgb(var(--ard-primary-50));
|
|
72
|
+
--ard-cmpcl--on-bg: var(--ard-text-alt);
|
|
73
|
+
--ard-cmpcl--on-bg-colored: var(--ard-text-alt);
|
|
74
|
+
--ard-cmpcl--on-bg-colored-light: var(--ard-text);
|
|
75
|
+
--ard-cmpcl--border: rgb(var(--ard-primary-300));
|
|
76
|
+
--ard-cmpcl--border-light: rgb(var(--ard-primary-100));
|
|
77
|
+
--ard-cmpcl--content: rgb(var(--ard-primary-700));
|
|
78
|
+
--ard-cmpcl--content-light: rgb(var(--ard-primary-300));
|
|
79
|
+
--ard-cmpcl--overlay-rgb: var(--ard-primary-500);
|
|
80
|
+
--ard-cmpcl--overlay: var(--ard-overlay);
|
|
81
|
+
--ard-cmpcl--overlay-colored: rgb(var(--ard-primary-700));
|
|
82
|
+
--ard-cmpcl--overlay-colored-light: rgb(var(--ard-primary-100));
|
|
83
|
+
}
|
|
84
|
+
.ard-chip-wrapper.ard-color-secondary {
|
|
85
|
+
--ard-cmpcl--bg: rgb(var(--ard-secondary-500));
|
|
86
|
+
--ard-cmpcl--bg-colored: rgb(var(--ard-secondary-500));
|
|
87
|
+
--ard-cmpcl--bg-colored-light: rgb(var(--ard-secondary-50));
|
|
88
|
+
--ard-cmpcl--bg-header: rgb(var(--ard-secondary-50));
|
|
89
|
+
--ard-cmpcl--bg-colored-verylight: rgb(var(--ard-secondary-50));
|
|
90
|
+
--ard-cmpcl--on-bg: var(--ard-text-alt);
|
|
91
|
+
--ard-cmpcl--on-bg-colored: var(--ard-text-alt);
|
|
92
|
+
--ard-cmpcl--on-bg-colored-light: var(--ard-text);
|
|
93
|
+
--ard-cmpcl--border: rgb(var(--ard-secondary-300));
|
|
94
|
+
--ard-cmpcl--border-light: rgb(var(--ard-secondary-100));
|
|
95
|
+
--ard-cmpcl--content: rgb(var(--ard-secondary-700));
|
|
96
|
+
--ard-cmpcl--content-light: rgb(var(--ard-secondary-300));
|
|
97
|
+
--ard-cmpcl--overlay-rgb: var(--ard-secondary-500);
|
|
98
|
+
--ard-cmpcl--overlay: var(--ard-overlay);
|
|
99
|
+
--ard-cmpcl--overlay-colored: rgb(var(--ard-secondary-700));
|
|
100
|
+
--ard-cmpcl--overlay-colored-light: rgb(var(--ard-secondary-100));
|
|
101
|
+
}
|
|
102
|
+
.ard-chip-wrapper.ard-color-warn {
|
|
103
|
+
--ard-cmpcl--bg: rgb(var(--ard-warn-500));
|
|
104
|
+
--ard-cmpcl--bg-colored: rgb(var(--ard-warn-500));
|
|
105
|
+
--ard-cmpcl--bg-colored-light: rgb(var(--ard-warn-50));
|
|
106
|
+
--ard-cmpcl--bg-header: rgb(var(--ard-warn-50));
|
|
107
|
+
--ard-cmpcl--bg-colored-verylight: rgb(var(--ard-warn-50));
|
|
108
|
+
--ard-cmpcl--on-bg: var(--ard-text-alt);
|
|
109
|
+
--ard-cmpcl--on-bg-colored: var(--ard-text-alt);
|
|
110
|
+
--ard-cmpcl--on-bg-colored-light: var(--ard-text);
|
|
111
|
+
--ard-cmpcl--border: rgb(var(--ard-warn-300));
|
|
112
|
+
--ard-cmpcl--border-light: rgb(var(--ard-warn-100));
|
|
113
|
+
--ard-cmpcl--content: rgb(var(--ard-warn-700));
|
|
114
|
+
--ard-cmpcl--content-light: rgb(var(--ard-warn-100));
|
|
115
|
+
--ard-cmpcl--overlay-rgb: var(--ard-warn-500);
|
|
116
|
+
--ard-cmpcl--overlay: var(--ard-overlay);
|
|
117
|
+
--ard-cmpcl--overlay-colored: rgb(var(--ard-warn-700));
|
|
118
|
+
--ard-cmpcl--overlay-colored-light: rgb(var(--ard-warn-100));
|
|
119
|
+
}
|
|
120
|
+
.ard-chip-wrapper.ard-color-danger {
|
|
121
|
+
--ard-cmpcl--bg: rgb(var(--ard-danger-700));
|
|
122
|
+
--ard-cmpcl--bg-colored: rgb(var(--ard-danger-700));
|
|
123
|
+
--ard-cmpcl--bg-colored-light: rgb(var(--ard-danger-100));
|
|
124
|
+
--ard-cmpcl--bg-header: rgb(var(--ard-danger-100));
|
|
125
|
+
--ard-cmpcl--bg-colored-verylight: rgb(var(--ard-danger-50));
|
|
126
|
+
--ard-cmpcl--on-bg: var(--ard-text-alt);
|
|
127
|
+
--ard-cmpcl--on-bg-colored: var(--ard-text-alt);
|
|
128
|
+
--ard-cmpcl--on-bg-colored-light: var(--ard-text);
|
|
129
|
+
--ard-cmpcl--border: rgb(var(--ard-danger-300));
|
|
130
|
+
--ard-cmpcl--border-light: rgb(var(--ard-danger-100));
|
|
131
|
+
--ard-cmpcl--content: rgb(var(--ard-danger-900));
|
|
132
|
+
--ard-cmpcl--content-light: rgb(var(--ard-danger-500));
|
|
133
|
+
--ard-cmpcl--overlay-rgb: var(--ard-danger-700);
|
|
134
|
+
--ard-cmpcl--overlay: var(--ard-overlay);
|
|
135
|
+
--ard-cmpcl--overlay-colored: rgb(var(--ard-danger-700));
|
|
136
|
+
--ard-cmpcl--overlay-colored-light: rgb(var(--ard-danger-300));
|
|
137
|
+
}
|
|
138
|
+
.ard-chip-wrapper.ard-color-success {
|
|
139
|
+
--ard-cmpcl--bg: rgb(var(--ard-success-700));
|
|
140
|
+
--ard-cmpcl--bg-colored: rgb(var(--ard-success-700));
|
|
141
|
+
--ard-cmpcl--bg-colored-light: rgb(var(--ard-success-50));
|
|
142
|
+
--ard-cmpcl--bg-header: rgb(var(--ard-success-50));
|
|
143
|
+
--ard-cmpcl--bg-colored-verylight: rgb(var(--ard-success-50));
|
|
144
|
+
--ard-cmpcl--on-bg: var(--ard-text-alt);
|
|
145
|
+
--ard-cmpcl--on-bg-colored: var(--ard-text-alt);
|
|
146
|
+
--ard-cmpcl--on-bg-colored-light: var(--ard-text);
|
|
147
|
+
--ard-cmpcl--border: rgb(var(--ard-success-300));
|
|
148
|
+
--ard-cmpcl--border-light: rgb(var(--ard-success-100));
|
|
149
|
+
--ard-cmpcl--content: rgb(var(--ard-success-900));
|
|
150
|
+
--ard-cmpcl--content-light: rgb(var(--ard-success-300));
|
|
151
|
+
--ard-cmpcl--overlay-rgb: var(--ard-success-700);
|
|
152
|
+
--ard-cmpcl--overlay: var(--ard-overlay);
|
|
153
|
+
--ard-cmpcl--overlay-colored: rgb(var(--ard-success-700));
|
|
154
|
+
--ard-cmpcl--overlay-colored-light: rgb(var(--ard-success-300));
|
|
155
|
+
}
|
|
156
|
+
.ard-chip-wrapper.ard-color-info {
|
|
157
|
+
--ard-cmpcl--bg: rgb(var(--ard-info-500));
|
|
158
|
+
--ard-cmpcl--bg-colored: rgb(var(--ard-info-500));
|
|
159
|
+
--ard-cmpcl--bg-colored-light: rgb(var(--ard-info-50));
|
|
160
|
+
--ard-cmpcl--bg-header: rgb(var(--ard-info-50));
|
|
161
|
+
--ard-cmpcl--bg-colored-verylight: rgb(var(--ard-info-50));
|
|
162
|
+
--ard-cmpcl--on-bg: var(--ard-text-alt);
|
|
163
|
+
--ard-cmpcl--on-bg-colored: var(--ard-text-alt);
|
|
164
|
+
--ard-cmpcl--on-bg-colored-light: var(--ard-text);
|
|
165
|
+
--ard-cmpcl--border: rgb(var(--ard-info-300));
|
|
166
|
+
--ard-cmpcl--border-light: rgb(var(--ard-info-100));
|
|
167
|
+
--ard-cmpcl--content: rgb(var(--ard-info-700));
|
|
168
|
+
--ard-cmpcl--content-light: rgb(var(--ard-info-300));
|
|
169
|
+
--ard-cmpcl--overlay-rgb: var(--ard-info-500);
|
|
170
|
+
--ard-cmpcl--overlay: var(--ard-overlay);
|
|
171
|
+
--ard-cmpcl--overlay-colored: rgb(var(--ard-info-700));
|
|
172
|
+
--ard-cmpcl--overlay-colored-light: rgb(var(--ard-info-100));
|
|
173
|
+
}
|
|
174
|
+
.ard-chip-wrapper.ard-color-currentColor {
|
|
175
|
+
--ard-cmpcl--bg: var(--ard-bg);
|
|
176
|
+
--ard-cmpcl--bg-colored: currentColor;
|
|
177
|
+
--ard-cmpcl--on-bg: currentColor;
|
|
178
|
+
--ard-cmpcl--on-bg-colored: var(--ard-text-alt);
|
|
179
|
+
--ard-cmpcl--border: currentColor;
|
|
180
|
+
--ard-cmpcl--border-light: currentColor;
|
|
181
|
+
--ard-cmpcl--content: currentColor;
|
|
182
|
+
--ard-cmpcl--content-light: currentColor;
|
|
183
|
+
--ard-cmpcl--overlay-rgb: var(--ard-overlay-rgb);
|
|
184
|
+
--ard-cmpcl--overlay: var(--ard-overlay);
|
|
185
|
+
--ard-cmpcl--overlay-colored: currentColor;
|
|
186
|
+
--ard-cmpcl--overlay-colored-light: currentColor;
|
|
187
|
+
}
|
|
188
|
+
.ard-chip-wrapper ard-clear-button {
|
|
189
|
+
height: var(--ard-clear-button-size);
|
|
190
|
+
width: var(--ard-clear-button-size);
|
|
191
|
+
position: relative;
|
|
192
|
+
}
|
|
193
|
+
.ard-chip-wrapper .ard-clear-btn-wrapper {
|
|
194
|
+
cursor: pointer;
|
|
195
|
+
font-size: medium;
|
|
196
|
+
color: var(--ard-detail);
|
|
197
|
+
width: var(--ard-clear-button-size);
|
|
198
|
+
height: var(--ard-clear-button-size);
|
|
199
|
+
line-height: 1em;
|
|
200
|
+
border-radius: 999px;
|
|
201
|
+
border: none;
|
|
202
|
+
padding: 0;
|
|
203
|
+
background: transparent;
|
|
204
|
+
position: absolute;
|
|
205
|
+
left: 50%;
|
|
206
|
+
top: 50%;
|
|
207
|
+
transform: translate(-50%, -50%);
|
|
208
|
+
outline: none;
|
|
209
|
+
color: inherit;
|
|
210
|
+
}
|
|
211
|
+
.ard-chip-wrapper .ard-clear-btn-wrapper .ard-hitbox {
|
|
212
|
+
position: absolute;
|
|
213
|
+
left: -1px;
|
|
214
|
+
right: -1px;
|
|
215
|
+
top: -1px;
|
|
216
|
+
bottom: -1px;
|
|
217
|
+
}
|
|
218
|
+
.ard-chip-wrapper .ard-clear-btn-wrapper .ard-focus-overlay {
|
|
219
|
+
position: absolute;
|
|
220
|
+
top: calc(-1 * 1px);
|
|
221
|
+
bottom: calc(-1 * 1px);
|
|
222
|
+
left: calc(-1 * 1px);
|
|
223
|
+
right: calc(-1 * 1px);
|
|
224
|
+
opacity: 0;
|
|
225
|
+
border-radius: inherit;
|
|
226
|
+
pointer-events: none;
|
|
227
|
+
transition: opacity 0.2s ease;
|
|
228
|
+
background: currentColor;
|
|
229
|
+
}
|
|
230
|
+
.ard-chip-wrapper .ard-clear-btn-wrapper .ard-clear-btn {
|
|
231
|
+
position: absolute;
|
|
232
|
+
left: 50%;
|
|
233
|
+
top: 50%;
|
|
234
|
+
transform: translate(-50%, -50%);
|
|
235
|
+
}
|
|
236
|
+
.ard-chip-wrapper .ard-clear-btn-wrapper .ard-clear-btn::before {
|
|
237
|
+
content: "close";
|
|
238
|
+
font-family: "Material Symbols Outlined";
|
|
239
|
+
font-size: 1.5em;
|
|
240
|
+
font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 48;
|
|
241
|
+
font-size: 70%;
|
|
242
|
+
}
|
|
243
|
+
.ard-chip-wrapper .ard-clear-btn-wrapper:hover .ard-focus-overlay {
|
|
244
|
+
opacity: 5%;
|
|
245
|
+
}
|
|
246
|
+
.ard-chip-wrapper .ard-clear-btn-wrapper:focus .ard-focus-overlay {
|
|
247
|
+
opacity: 8%;
|
|
248
|
+
}
|
|
249
|
+
.ard-chip-wrapper .ard-clear-btn-wrapper:active .ard-focus-overlay {
|
|
250
|
+
opacity: 15%;
|
|
251
|
+
}
|
|
252
|
+
.ard-chip-wrapper.ard-variant-rounded, .ard-chip-wrapper.ard-variant-semirounded {
|
|
253
|
+
--ard-variant-border-radius: 8px;
|
|
254
|
+
}
|
|
255
|
+
.ard-chip-wrapper.ard-variant-pill {
|
|
256
|
+
--ard-variant-border-radius: 9999px;
|
|
257
|
+
}
|
|
258
|
+
.ard-chip-wrapper.ard-variant-sharp {
|
|
259
|
+
--ard-variant-border-radius: 0;
|
|
260
|
+
}
|
|
261
|
+
.ard-chip-wrapper > .ard-chip-content-wrapper {
|
|
262
|
+
padding: var(--ard-chip-padding, 0 0.75rem);
|
|
263
|
+
}
|
|
264
|
+
.ard-chip-wrapper > .ard-focus-overlay {
|
|
265
|
+
position: absolute;
|
|
266
|
+
top: calc(-1 * 0px);
|
|
267
|
+
bottom: calc(-1 * 0px);
|
|
268
|
+
left: calc(-1 * 0px);
|
|
269
|
+
right: calc(-1 * 0px);
|
|
270
|
+
opacity: 0;
|
|
271
|
+
border-radius: inherit;
|
|
272
|
+
pointer-events: none;
|
|
273
|
+
transition: opacity 0.2s ease;
|
|
274
|
+
background: var(--ard-overlay);
|
|
275
|
+
border-radius: 0;
|
|
276
|
+
}
|
|
277
|
+
.ard-chip-wrapper.ard-chip-selectable {
|
|
278
|
+
cursor: pointer;
|
|
279
|
+
display: flex;
|
|
280
|
+
align-items: center;
|
|
281
|
+
}
|
|
282
|
+
.ard-chip-wrapper.ard-chip-selectable:hover > .ard-focus-overlay, .ard-chip-wrapper.ard-chip-selectable:focus > .ard-focus-overlay {
|
|
283
|
+
opacity: var(--ard-chip-selectable-hover-overlay-opacity, 7.5%);
|
|
284
|
+
}
|
|
285
|
+
.ard-chip-wrapper.ard-chip-selectable:active > .ard-focus-overlay {
|
|
286
|
+
opacity: var(--ard-chip-selectable-active-overlay-opacity, 20%);
|
|
287
|
+
}
|
|
288
|
+
.ard-chip-wrapper.ard-chip-selectable .ard-chip-selection-icon {
|
|
289
|
+
font-family: "Material Symbols Outlined";
|
|
290
|
+
font-size: 1.5em;
|
|
291
|
+
font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 48;
|
|
292
|
+
}
|
|
293
|
+
.ard-chip-wrapper.ard-chip-selectable .ard-chip-selection-icon::after {
|
|
294
|
+
content: "\e876";
|
|
295
|
+
}
|
|
296
|
+
.ard-chip-wrapper.ard-appearance-filled, .ard-chip-wrapper.ard-appearance-filled-strong {
|
|
297
|
+
border: 1px solid transparent;
|
|
298
|
+
}
|
|
299
|
+
.ard-chip-wrapper.ard-appearance-filled.ard-chip-selectable, .ard-chip-wrapper.ard-appearance-filled-strong.ard-chip-selectable {
|
|
300
|
+
background-color: var(--ard-chip-filled-unselected-background, var(--ard-bg-filled));
|
|
301
|
+
color: var(--ard-chip-filled-unselected-color, var(--ard-text2));
|
|
302
|
+
transition: color var(--ard-chip-transition, 0.15s ease), border-color var(--ard-chip-transition, 0.15s ease), background-color var(--ard-chip-transition, 0.15s ease);
|
|
303
|
+
}
|
|
304
|
+
.ard-chip-wrapper.ard-appearance-filled.ard-chip-selectable.ard-chip-selected, .ard-chip-wrapper.ard-appearance-filled-strong.ard-chip-selectable.ard-chip-selected {
|
|
305
|
+
color: var(--ard-cmpcl--on-bg-colored);
|
|
306
|
+
background: var(--ard-cmpcl--bg-colored);
|
|
307
|
+
}
|
|
308
|
+
.ard-chip-wrapper.ard-appearance-filled {
|
|
309
|
+
background: var(--ard-cmpcl--bg-colored-light);
|
|
310
|
+
color: var(--ard-cmpcl--on-bg-colored-light);
|
|
311
|
+
}
|
|
312
|
+
.ard-chip-wrapper.ard-appearance-filled-strong {
|
|
313
|
+
background: var(--ard-cmpcl--bg-colored);
|
|
314
|
+
color: var(--ard-cmpcl--on-bg-colored);
|
|
315
|
+
}
|
|
316
|
+
.ard-chip-wrapper.ard-appearance-outlined, .ard-chip-wrapper.ard-appearance-outlined-strong {
|
|
317
|
+
background: transparent;
|
|
318
|
+
color: var(--ard-cmpcl--content);
|
|
319
|
+
border: 1px solid var(--ard-cmpcl--bg-colored);
|
|
320
|
+
border-radius: var(--ard-variant-border-radius);
|
|
321
|
+
font-weight: 600;
|
|
322
|
+
}
|
|
323
|
+
.ard-chip-wrapper.ard-appearance-outlined.ard-chip-selectable, .ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable {
|
|
324
|
+
transition: color var(--ard-chip-transition, 0.15s ease), border-color var(--ard-chip-transition, 0.15s ease);
|
|
325
|
+
}
|
|
326
|
+
.ard-chip-wrapper.ard-appearance-outlined.ard-chip-selectable > .ard-focus-overlay, .ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable > .ard-focus-overlay {
|
|
327
|
+
opacity: 0;
|
|
328
|
+
background: var(--ard-cmpcl--bg-colored);
|
|
329
|
+
}
|
|
330
|
+
.ard-chip-wrapper.ard-appearance-outlined.ard-chip-selectable:hover > .ard-focus-overlay, .ard-chip-wrapper.ard-appearance-outlined.ard-chip-selectable:focus > .ard-focus-overlay, .ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable:hover > .ard-focus-overlay, .ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable:focus > .ard-focus-overlay {
|
|
331
|
+
opacity: var(--ard-chip-outlined-hover-overlay-opacity, 4%);
|
|
332
|
+
}
|
|
333
|
+
.ard-chip-wrapper.ard-appearance-outlined.ard-chip-selectable:active > .ard-focus-overlay, .ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable:active > .ard-focus-overlay {
|
|
334
|
+
opacity: var(--ard-chip-outlined-active-overlay-opacity, 10%);
|
|
335
|
+
}
|
|
336
|
+
.ard-chip-wrapper.ard-appearance-outlined.ard-chip-selectable.ard-chip-selected, .ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable.ard-chip-selected {
|
|
337
|
+
color: var(--ard-cmpcl--content);
|
|
338
|
+
border-color: var(--ard-cmpcl--content);
|
|
339
|
+
}
|
|
340
|
+
.ard-chip-wrapper.ard-appearance-outlined.ard-chip-selectable.ard-chip-selected > .ard-focus-overlay, .ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable.ard-chip-selected > .ard-focus-overlay {
|
|
341
|
+
opacity: var(--ard-chip-outlined-selected-overlay-opacity, 12%);
|
|
342
|
+
}
|
|
343
|
+
.ard-chip-wrapper.ard-appearance-outlined.ard-chip-selectable.ard-chip-selected:hover > .ard-focus-overlay, .ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable.ard-chip-selected:hover > .ard-focus-overlay {
|
|
344
|
+
opacity: var(--ard-chip-outlined-selected-hover-overlay-opacity, 17%);
|
|
345
|
+
}
|
|
346
|
+
.ard-chip-wrapper.ard-appearance-outlined.ard-chip-selectable.ard-chip-selected:focus > .ard-focus-overlay, .ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable.ard-chip-selected:focus > .ard-focus-overlay {
|
|
347
|
+
opacity: var(--ard-chip-outlined-selected-focus-overlay-opacity, 0%);
|
|
348
|
+
}
|
|
349
|
+
.ard-chip-wrapper.ard-appearance-outlined.ard-chip-selectable.ard-chip-selected:focus-visible > .ard-focus-overlay, .ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable.ard-chip-selected:focus-visible > .ard-focus-overlay {
|
|
350
|
+
opacity: var(--ard-chip-outlined-selected-focus-visible-overlay-opacity, 17%);
|
|
351
|
+
}
|
|
352
|
+
.ard-chip-wrapper.ard-appearance-outlined.ard-chip-selectable.ard-chip-selected:active > .ard-focus-overlay, .ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable.ard-chip-selected:active > .ard-focus-overlay {
|
|
353
|
+
opacity: var(--ard-chip-outlined-selected-active-overlay-opacity, 22%);
|
|
354
|
+
}
|
|
355
|
+
.ard-chip-wrapper.ard-appearance-outlined-strong > .ard-focus-overlay {
|
|
356
|
+
opacity: var(--ard-chip-outlined-selected-overlay-opacity, 12%);
|
|
357
|
+
background: var(--ard-cmpcl--bg-colored);
|
|
358
|
+
}
|
|
359
|
+
.ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable {
|
|
360
|
+
color: var(--ard-chip-outlined-strong-selectable-color, var(--ard-text2));
|
|
361
|
+
border: 1px solid var(--ard-chip-outlined-strong-selectable-border-color, var(--ard-detail-light));
|
|
362
|
+
}
|
|
363
|
+
.ard-chip-wrapper.ard-chip-align-left {
|
|
364
|
+
flex-direction: row;
|
|
365
|
+
padding-left: var(--ard-chip-padding-align-left, 0.125rem);
|
|
366
|
+
}
|
|
367
|
+
.ard-chip-wrapper.ard-chip-align-left .ard-chip-selection-icon {
|
|
368
|
+
padding-left: var(--ard-chip-selection-icon-padding, 0.5rem);
|
|
369
|
+
margin-right: var(--ard-chip-selection-icon-margin, -0.125rem);
|
|
370
|
+
}
|
|
371
|
+
.ard-chip-wrapper.ard-chip-align-left.ard-chip-deletable {
|
|
372
|
+
padding-left: var(--ard-chip-padding-align-left-deletable, 0.25rem);
|
|
373
|
+
}
|
|
374
|
+
.ard-chip-wrapper.ard-chip-align-left.ard-chip-deletable .ard-chip-content-wrapper {
|
|
375
|
+
padding-left: var(--ard-chip-content-wrapper-padding, 0.5rem);
|
|
376
|
+
}
|
|
377
|
+
.ard-chip-wrapper.ard-chip-align-right {
|
|
378
|
+
flex-direction: row-reverse;
|
|
379
|
+
padding-right: var(--ard-chip-padding-align-right, 0.125rem);
|
|
380
|
+
}
|
|
381
|
+
.ard-chip-wrapper.ard-chip-align-right .ard-chip-selection-icon {
|
|
382
|
+
padding-right: var(--ard-chip-selection-icon-padding, 0.5rem);
|
|
383
|
+
margin-left: var(--ard-chip-selection-icon-margin, -0.125rem);
|
|
384
|
+
}
|
|
385
|
+
.ard-chip-wrapper.ard-chip-align-right.ard-chip-deletable {
|
|
386
|
+
padding-right: var(--ard-chip-padding-align-right-deletable, 0.25rem);
|
|
387
|
+
}
|
|
388
|
+
.ard-chip-wrapper.ard-chip-align-right.ard-chip-deletable .ard-chip-content-wrapper {
|
|
389
|
+
padding-right: var(--ard-chip-content-wrapper-padding, 0.5rem);
|
|
390
|
+
}
|
|
391
|
+
.ard-chip-wrapper.ard-compact {
|
|
392
|
+
height: var(--ard-chip-height-compact, 1.4375rem);
|
|
393
|
+
font-size: var(--ard-chip-font-size-compact, 0.8125rem);
|
|
394
|
+
}
|
|
395
|
+
.ard-chip-wrapper.ard-compact > .ard-chip-content-wrapper {
|
|
396
|
+
padding: var(--ard-chip-padding-compact, 0 0.5625rem);
|
|
397
|
+
}
|
|
398
|
+
.ard-chip-wrapper.ard-compact.ard-chip-align-left .ard-chip-selection-icon {
|
|
399
|
+
padding-left: var(--ard-chip-selection-icon-padding-compact, 0.25rem);
|
|
400
|
+
margin-right: var(--ard-chip-selection-icon-margin-compact, -0.25rem);
|
|
401
|
+
}
|
|
402
|
+
.ard-chip-wrapper.ard-compact.ard-chip-align-right .ard-chip-selection-icon {
|
|
403
|
+
padding-right: var(--ard-chip-selection-icon-padding-compact, 0.25rem);
|
|
404
|
+
margin-left: var(--ard-chip-selection-icon-margin-compact, -0.25rem);
|
|
405
|
+
}
|
|
406
|
+
.ard-disabled .ard-chip-wrapper {
|
|
407
|
+
pointer-events: none;
|
|
408
|
+
opacity: var(--ard-chip-disabled-opacity, 60%);
|
|
409
|
+
}
|
|
410
|
+
.ard-disabled .ard-chip-wrapper.ard-chip-selected {
|
|
411
|
+
opacity: var(--ard-chip-disabled-selected-opacity, 40%);
|
|
412
|
+
}
|
|
360
413
|
}
|
|
361
414
|
|
|
362
415
|
/*# sourceMappingURL=chips.css.map */
|