@limetech/lime-elements 36.1.0-next.8 → 36.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/{checkbox.template-b6c6562c.js → checkbox.template-ac867c17.js} +1 -1
- package/dist/cjs/{index-2a28697b.js → index-287e25e0.js} +424 -246
- package/dist/cjs/lime-elements.cjs.js +3 -3
- package/dist/cjs/limel-badge.cjs.entry.js +2 -1
- package/dist/cjs/limel-banner.cjs.entry.js +3 -1
- package/dist/cjs/limel-button-group.cjs.entry.js +3 -8
- package/dist/cjs/{limel-button.cjs.entry.js → limel-button_2.cjs.entry.js} +117 -21
- package/dist/cjs/limel-checkbox.cjs.entry.js +10 -26
- package/dist/cjs/limel-chip-set.cjs.entry.js +21 -52
- package/dist/cjs/{limel-linear-progress.cjs.entry.js → limel-circular-progress_2.cjs.entry.js} +34 -7
- package/dist/cjs/limel-code-editor.cjs.entry.js +110 -97
- package/dist/cjs/limel-collapsible-section.cjs.entry.js +4 -5
- package/dist/cjs/limel-color-picker-palette.cjs.entry.js +5 -1
- package/dist/cjs/limel-color-picker.cjs.entry.js +8 -2
- package/dist/cjs/limel-config.cjs.entry.js +2 -1
- package/dist/cjs/limel-date-picker.cjs.entry.js +15 -33
- package/dist/cjs/limel-dialog.cjs.entry.js +4 -12
- package/dist/cjs/limel-dock-button.cjs.entry.js +5 -15
- package/dist/cjs/limel-dock.cjs.entry.js +8 -40
- package/dist/cjs/limel-file.cjs.entry.js +10 -24
- package/dist/cjs/limel-flatpickr-adapter.cjs.entry.js +149 -48
- package/dist/cjs/limel-flex-container.cjs.entry.js +1 -13
- package/dist/cjs/limel-form.cjs.entry.js +328 -327
- package/dist/cjs/limel-grid.cjs.entry.js +1 -1
- package/dist/cjs/limel-header.cjs.entry.js +5 -1
- package/dist/cjs/limel-icon-button.cjs.entry.js +3 -8
- package/dist/cjs/limel-icon.cjs.entry.js +4 -1
- package/dist/cjs/limel-info-tile.cjs.entry.js +95 -0
- package/dist/cjs/limel-input-field.cjs.entry.js +27 -60
- package/dist/cjs/limel-list_2.cjs.entry.js +10 -21
- package/dist/cjs/limel-menu-list.cjs.entry.js +7 -14
- package/dist/cjs/limel-picker.cjs.entry.js +14 -39
- package/dist/cjs/limel-popover_4.cjs.entry.js +13 -12
- package/dist/cjs/limel-portal.cjs.entry.js +63 -73
- package/dist/cjs/limel-progress-flow-item.cjs.entry.js +4 -13
- package/dist/cjs/limel-progress-flow.cjs.entry.js +4 -20
- package/dist/cjs/limel-select.cjs.entry.js +20 -32
- package/dist/cjs/limel-shortcut.cjs.entry.js +52 -0
- package/dist/cjs/limel-slider.cjs.entry.js +12 -33
- package/dist/cjs/limel-snackbar.cjs.entry.js +7 -5
- package/dist/cjs/limel-spinner.cjs.entry.js +1 -7
- package/dist/cjs/limel-split-button.cjs.entry.js +35 -0
- package/dist/cjs/limel-switch.cjs.entry.js +6 -19
- package/dist/cjs/limel-tab-bar.cjs.entry.js +2 -5
- package/dist/cjs/limel-tab-panel.cjs.entry.js +2 -5
- package/dist/cjs/limel-table.cjs.entry.js +16 -28
- package/dist/cjs/loader.cjs.js +3 -3
- package/dist/cjs/{translations-5a8d7f6c.js → translations-ca7279bc.js} +6 -0
- package/dist/collection/collection-manifest.json +5 -2
- package/dist/collection/components/badge/badge.js +35 -26
- package/dist/collection/components/banner/banner.js +88 -83
- package/dist/collection/components/button/button.css +4 -1
- package/dist/collection/components/button/button.js +148 -160
- package/dist/collection/components/button-group/button-group.js +81 -79
- package/dist/collection/components/checkbox/checkbox.js +172 -176
- package/dist/collection/components/checkbox/checkbox.template.js +15 -23
- package/dist/collection/components/chip-set/chip-set.js +486 -528
- package/dist/collection/components/circular-progress/circular-progress.css +27 -5
- package/dist/collection/components/circular-progress/circular-progress.js +129 -113
- package/dist/collection/components/code-editor/code-editor.js +178 -182
- package/dist/collection/components/collapsible-section/collapsible-section.js +120 -124
- package/dist/collection/components/color-picker/color-picker-palette.js +102 -92
- package/dist/collection/components/color-picker/color-picker.js +143 -131
- package/dist/collection/components/config/config.js +21 -17
- package/dist/collection/components/date-picker/date-picker.js +254 -261
- package/dist/collection/components/date-picker/flatpickr-adapter/flatpickr-adapter.css +591 -166
- package/dist/collection/components/date-picker/flatpickr-adapter/flatpickr-adapter.js +150 -143
- package/dist/collection/components/date-picker/pickers/QuarterPicker.js +1 -3
- package/dist/collection/components/dialog/dialog.css +7 -1
- package/dist/collection/components/dialog/dialog.js +134 -142
- package/dist/collection/components/dock/dock-button/dock-button.js +138 -141
- package/dist/collection/components/dock/dock.js +204 -233
- package/dist/collection/components/file/file.js +187 -191
- package/dist/collection/components/flex-container/flex-container.js +96 -102
- package/dist/collection/components/form/form.js +158 -150
- package/dist/collection/components/form/widgets/code-editor.js +2 -0
- package/dist/collection/components/grid/grid.js +11 -7
- package/dist/collection/components/header/header.js +89 -87
- package/dist/collection/components/icon/icon.js +79 -66
- package/dist/collection/components/icon-button/icon-button.js +85 -85
- package/dist/collection/components/info-tile/info-tile.css +310 -0
- package/dist/collection/components/info-tile/info-tile.js +294 -0
- package/dist/collection/components/info-tile/info-tile.types.js +1 -0
- package/dist/collection/components/input-field/input-field.css +3 -0
- package/dist/collection/components/input-field/input-field.js +482 -523
- package/dist/collection/components/linear-progress/linear-progress.js +57 -61
- package/dist/collection/components/list/list-renderer.js +3 -12
- package/dist/collection/components/list/list.css +11 -116
- package/dist/collection/components/list/list.js +167 -166
- package/dist/collection/components/list/radio-button/radio-button.template.js +2 -8
- package/dist/collection/components/menu/menu.js +183 -195
- package/dist/collection/components/menu-list/menu-list-renderer.js +2 -9
- package/dist/collection/components/menu-list/menu-list.css +11 -116
- package/dist/collection/components/menu-list/menu-list.js +149 -146
- package/dist/collection/components/menu-surface/menu-surface.js +69 -64
- package/dist/collection/components/picker/picker.js +412 -427
- package/dist/collection/components/popover/popover.js +79 -74
- package/dist/collection/components/popover-surface/popover-surface.js +34 -25
- package/dist/collection/components/portal/portal.js +145 -158
- package/dist/collection/components/progress-flow/progress-flow-item/progress-flow-item.js +90 -94
- package/dist/collection/components/progress-flow/progress-flow.js +93 -101
- package/dist/collection/components/select/select.css +8 -7
- package/dist/collection/components/select/select.js +206 -211
- package/dist/collection/components/select/select.template.js +18 -27
- package/dist/collection/components/shortcut/shortcut.css +91 -0
- package/dist/collection/components/shortcut/shortcut.js +161 -0
- package/dist/collection/components/slider/slider.js +233 -264
- package/dist/collection/components/snackbar/snackbar.js +175 -169
- package/dist/collection/components/spinner/spinner.js +56 -85
- package/dist/collection/components/split-button/split-button.css +84 -0
- package/dist/collection/components/split-button/split-button.js +176 -0
- package/dist/collection/components/switch/switch.js +117 -129
- package/dist/collection/components/tab-bar/tab-bar.js +87 -92
- package/dist/collection/components/tab-panel/tab-panel.js +64 -61
- package/dist/collection/components/table/table.js +447 -457
- package/dist/collection/components/tooltip/tooltip-content.js +70 -61
- package/dist/collection/components/tooltip/tooltip.js +96 -91
- package/dist/collection/global/shared-types/link.types.js +1 -0
- package/dist/collection/style/internal/z-index.scss +0 -5
- package/dist/collection/translations/da.js +1 -0
- package/dist/collection/translations/en.js +1 -0
- package/dist/collection/translations/fi.js +1 -0
- package/dist/collection/translations/nl.js +1 -0
- package/dist/collection/translations/no.js +1 -0
- package/dist/collection/translations/sv.js +1 -0
- package/dist/esm/{checkbox.template-2f1bbc98.js → checkbox.template-fc7fcd06.js} +1 -1
- package/dist/esm/{index-11cd0b60.js → index-cdfd351d.js} +424 -246
- package/dist/esm/lime-elements.js +3 -3
- package/dist/esm/limel-badge.entry.js +2 -1
- package/dist/esm/limel-banner.entry.js +3 -1
- package/dist/esm/limel-button-group.entry.js +3 -8
- package/dist/esm/{limel-button.entry.js → limel-button_2.entry.js} +117 -22
- package/dist/esm/limel-checkbox.entry.js +10 -26
- package/dist/esm/limel-chip-set.entry.js +21 -52
- package/dist/esm/{limel-linear-progress.entry.js → limel-circular-progress_2.entry.js} +34 -8
- package/dist/esm/limel-code-editor.entry.js +110 -97
- package/dist/esm/limel-collapsible-section.entry.js +4 -5
- package/dist/esm/limel-color-picker-palette.entry.js +5 -1
- package/dist/esm/limel-color-picker.entry.js +8 -2
- package/dist/esm/limel-config.entry.js +2 -1
- package/dist/esm/limel-date-picker.entry.js +15 -33
- package/dist/esm/limel-dialog.entry.js +4 -12
- package/dist/esm/limel-dock-button.entry.js +5 -15
- package/dist/esm/limel-dock.entry.js +8 -40
- package/dist/esm/limel-file.entry.js +10 -24
- package/dist/esm/limel-flatpickr-adapter.entry.js +149 -48
- package/dist/esm/limel-flex-container.entry.js +1 -13
- package/dist/esm/limel-form.entry.js +328 -327
- package/dist/esm/limel-grid.entry.js +1 -1
- package/dist/esm/limel-header.entry.js +5 -1
- package/dist/esm/limel-icon-button.entry.js +3 -8
- package/dist/esm/limel-icon.entry.js +4 -1
- package/dist/esm/limel-info-tile.entry.js +91 -0
- package/dist/esm/limel-input-field.entry.js +27 -60
- package/dist/esm/limel-list_2.entry.js +10 -21
- package/dist/esm/limel-menu-list.entry.js +7 -14
- package/dist/esm/limel-picker.entry.js +14 -39
- package/dist/esm/limel-popover_4.entry.js +13 -12
- package/dist/esm/limel-portal.entry.js +63 -73
- package/dist/esm/limel-progress-flow-item.entry.js +4 -13
- package/dist/esm/limel-progress-flow.entry.js +4 -20
- package/dist/esm/limel-select.entry.js +20 -32
- package/dist/esm/limel-shortcut.entry.js +48 -0
- package/dist/esm/limel-slider.entry.js +12 -33
- package/dist/esm/limel-snackbar.entry.js +7 -5
- package/dist/esm/limel-spinner.entry.js +1 -7
- package/dist/esm/limel-split-button.entry.js +31 -0
- package/dist/esm/limel-switch.entry.js +6 -19
- package/dist/esm/limel-tab-bar.entry.js +2 -5
- package/dist/esm/limel-tab-panel.entry.js +2 -5
- package/dist/esm/limel-table.entry.js +16 -28
- package/dist/esm/loader.js +3 -3
- package/dist/esm/polyfills/css-shim.js +1 -1
- package/dist/esm/{translations-682e905e.js → translations-0d0ee941.js} +6 -0
- package/dist/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/p-059e0a64.entry.js +1 -0
- package/dist/lime-elements/{p-440454ed.entry.js → p-06f2f6b4.entry.js} +1 -1
- package/dist/lime-elements/p-12a7453b.entry.js +73 -0
- package/dist/lime-elements/p-1386d86d.entry.js +82 -0
- package/dist/lime-elements/p-15c2eb16.entry.js +1 -0
- package/dist/lime-elements/{p-c80acfb2.entry.js → p-15ca0d70.entry.js} +4 -4
- package/dist/lime-elements/{p-ed65468d.entry.js → p-16eb9071.entry.js} +1 -1
- package/dist/lime-elements/{p-1ede893b.js → p-1af8258b.js} +1 -1
- package/dist/lime-elements/{p-71efe2ca.entry.js → p-21058db5.entry.js} +4 -3
- package/dist/lime-elements/p-246862ec.js +1 -0
- package/dist/lime-elements/p-36a3b897.entry.js +1 -0
- package/dist/lime-elements/p-4eda8b67.entry.js +82 -0
- package/dist/lime-elements/{p-9af0704c.entry.js → p-4fb4e89b.entry.js} +1 -1
- package/dist/lime-elements/p-4fc38050.entry.js +1 -0
- package/dist/lime-elements/{p-a5af84a7.entry.js → p-5338663b.entry.js} +1 -1
- package/dist/lime-elements/p-5ce60a32.entry.js +126 -0
- package/dist/lime-elements/p-5f13035a.entry.js +1 -0
- package/dist/lime-elements/p-5f29f099.entry.js +16 -0
- package/dist/lime-elements/p-600464a9.entry.js +1 -0
- package/dist/lime-elements/p-6534e16a.entry.js +1 -0
- package/dist/lime-elements/p-6a4a5ddd.entry.js +1 -0
- package/dist/lime-elements/p-6c38b505.entry.js +1 -0
- package/dist/lime-elements/p-75d01713.entry.js +1 -0
- package/dist/lime-elements/p-768b7cbb.entry.js +1 -0
- package/dist/lime-elements/{p-6e7809a6.entry.js → p-82cd7bb6.entry.js} +1 -1
- package/dist/lime-elements/p-84a137a7.entry.js +1 -0
- package/dist/lime-elements/{p-aa66620a.entry.js → p-8ab597a8.entry.js} +2 -2
- package/dist/lime-elements/{p-8827628d.entry.js → p-8fb83e83.entry.js} +2 -2
- package/dist/lime-elements/p-90961075.entry.js +1 -0
- package/dist/lime-elements/p-9984b31c.entry.js +1 -0
- package/dist/lime-elements/p-9bd76629.entry.js +59 -0
- package/dist/lime-elements/p-9ea8dd5c.entry.js +1 -0
- package/dist/lime-elements/p-cad7cda1.entry.js +16 -0
- package/dist/lime-elements/{p-104c89e8.entry.js → p-cfaa685f.entry.js} +1 -1
- package/dist/lime-elements/{p-94899019.entry.js → p-d1187867.entry.js} +1 -1
- package/dist/lime-elements/p-d4e788e1.js +2 -0
- package/dist/lime-elements/p-d512656b.entry.js +1 -0
- package/dist/lime-elements/p-d8e5a9ee.entry.js +1 -0
- package/dist/lime-elements/p-de161bb5.entry.js +1 -0
- package/dist/lime-elements/p-e4bca82b.entry.js +1 -0
- package/dist/lime-elements/p-e6f84d68.entry.js +1 -0
- package/dist/lime-elements/{p-c15da26d.entry.js → p-e7bb664f.entry.js} +1 -1
- package/dist/lime-elements/p-e88f7922.entry.js +1 -0
- package/dist/lime-elements/p-ec4c075d.entry.js +1 -0
- package/dist/lime-elements/p-f1ed857b.entry.js +37 -0
- package/dist/lime-elements/p-f33cfcb8.entry.js +11 -0
- package/dist/lime-elements/style/internal/z-index.scss +0 -5
- package/dist/loader/package.json +1 -0
- package/dist/types/components/circular-progress/circular-progress.d.ts +5 -0
- package/dist/types/components/dock/dock.d.ts +0 -1
- package/dist/types/components/info-tile/info-tile.d.ts +87 -0
- package/dist/types/components/info-tile/info-tile.types.d.ts +23 -0
- package/dist/types/components/picker/picker.d.ts +2 -2
- package/dist/types/components/shortcut/shortcut.d.ts +42 -0
- package/dist/types/components/split-button/split-button.d.ts +46 -0
- package/dist/types/components.d.ts +403 -67
- package/dist/types/global/shared-types/link.types.d.ts +25 -0
- package/dist/types/interface.d.ts +2 -0
- package/dist/types/stencil-public-runtime.d.ts +20 -4
- package/dist/types/translations/da.d.ts +1 -0
- package/dist/types/translations/en.d.ts +1 -0
- package/dist/types/translations/fi.d.ts +1 -0
- package/dist/types/translations/nl.d.ts +1 -0
- package/dist/types/translations/no.d.ts +1 -0
- package/dist/types/translations/sv.d.ts +1 -0
- package/package.json +25 -24
- package/dist/cjs/limel-circular-progress.cjs.entry.js +0 -44
- package/dist/cjs/limel-menu.cjs.entry.js +0 -137
- package/dist/esm/limel-circular-progress.entry.js +0 -40
- package/dist/esm/limel-menu.entry.js +0 -133
- package/dist/lime-elements/p-009de50e.entry.js +0 -1
- package/dist/lime-elements/p-0ba0c38a.entry.js +0 -11
- package/dist/lime-elements/p-19f72dab.entry.js +0 -1
- package/dist/lime-elements/p-2639edf9.entry.js +0 -73
- package/dist/lime-elements/p-2fc4f4ff.entry.js +0 -1
- package/dist/lime-elements/p-3bf54a4c.js +0 -1
- package/dist/lime-elements/p-3cf4aae0.entry.js +0 -1
- package/dist/lime-elements/p-41e902ac.entry.js +0 -126
- package/dist/lime-elements/p-4dc07252.entry.js +0 -82
- package/dist/lime-elements/p-53e01330.entry.js +0 -1
- package/dist/lime-elements/p-5ef52589.entry.js +0 -1
- package/dist/lime-elements/p-629862f4.entry.js +0 -1
- package/dist/lime-elements/p-63e25a0a.entry.js +0 -1
- package/dist/lime-elements/p-6b1bc80f.entry.js +0 -1
- package/dist/lime-elements/p-93cd2268.entry.js +0 -1
- package/dist/lime-elements/p-95f275ab.entry.js +0 -1
- package/dist/lime-elements/p-9917f042.entry.js +0 -16
- package/dist/lime-elements/p-995bbd2a.entry.js +0 -1
- package/dist/lime-elements/p-a465084b.entry.js +0 -82
- package/dist/lime-elements/p-b0046fcd.entry.js +0 -1
- package/dist/lime-elements/p-b0e54dc2.entry.js +0 -1
- package/dist/lime-elements/p-b4de3380.entry.js +0 -1
- package/dist/lime-elements/p-c59cbd68.entry.js +0 -1
- package/dist/lime-elements/p-cb8db8c2.entry.js +0 -37
- package/dist/lime-elements/p-d74fa89e.entry.js +0 -1
- package/dist/lime-elements/p-e98d76e8.entry.js +0 -59
- package/dist/lime-elements/p-e9a95b8f.js +0 -1
- package/dist/lime-elements/p-eec907ac.entry.js +0 -1
- package/dist/lime-elements/p-f0c9dadd.entry.js +0 -1
- package/dist/lime-elements/p-f0e872b6.entry.js +0 -16
- package/dist/lime-elements/p-f41567a1.entry.js +0 -1
- package/dist/lime-elements/p-f5df4d4f.entry.js +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { h } from '@stencil/core';
|
|
2
2
|
import config from '../../global/config';
|
|
3
3
|
import iconCache from '../../global/icon-cache';
|
|
4
4
|
/**
|
|
@@ -56,6 +56,11 @@ import iconCache from '../../global/icon-cache';
|
|
|
56
56
|
* @exampleComponent limel-example-icon-background
|
|
57
57
|
*/
|
|
58
58
|
export class Icon {
|
|
59
|
+
constructor() {
|
|
60
|
+
this.size = undefined;
|
|
61
|
+
this.name = undefined;
|
|
62
|
+
this.badge = undefined;
|
|
63
|
+
}
|
|
59
64
|
componentDidLoad() {
|
|
60
65
|
this.loadIcon(this.name);
|
|
61
66
|
}
|
|
@@ -92,73 +97,81 @@ export class Icon {
|
|
|
92
97
|
}
|
|
93
98
|
static get is() { return "limel-icon"; }
|
|
94
99
|
static get encapsulation() { return "shadow"; }
|
|
95
|
-
static get originalStyleUrls() {
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
"
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
100
|
+
static get originalStyleUrls() {
|
|
101
|
+
return {
|
|
102
|
+
"$": ["icon.scss"]
|
|
103
|
+
};
|
|
104
|
+
}
|
|
105
|
+
static get styleUrls() {
|
|
106
|
+
return {
|
|
107
|
+
"$": ["icon.css"]
|
|
108
|
+
};
|
|
109
|
+
}
|
|
110
|
+
static get properties() {
|
|
111
|
+
return {
|
|
112
|
+
"size": {
|
|
113
|
+
"type": "string",
|
|
114
|
+
"mutable": false,
|
|
115
|
+
"complexType": {
|
|
116
|
+
"original": "IconSize",
|
|
117
|
+
"resolved": "\"large\" | \"medium\" | \"small\" | \"x-small\"",
|
|
118
|
+
"references": {
|
|
119
|
+
"IconSize": {
|
|
120
|
+
"location": "import",
|
|
121
|
+
"path": "./icon.types"
|
|
122
|
+
}
|
|
112
123
|
}
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
"reflect": true
|
|
123
|
-
},
|
|
124
|
-
"name": {
|
|
125
|
-
"type": "string",
|
|
126
|
-
"mutable": false,
|
|
127
|
-
"complexType": {
|
|
128
|
-
"original": "string",
|
|
129
|
-
"resolved": "string",
|
|
130
|
-
"references": {}
|
|
124
|
+
},
|
|
125
|
+
"required": false,
|
|
126
|
+
"optional": false,
|
|
127
|
+
"docs": {
|
|
128
|
+
"tags": [],
|
|
129
|
+
"text": "Size of the icon"
|
|
130
|
+
},
|
|
131
|
+
"attribute": "size",
|
|
132
|
+
"reflect": true
|
|
131
133
|
},
|
|
132
|
-
"
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
"
|
|
136
|
-
|
|
134
|
+
"name": {
|
|
135
|
+
"type": "string",
|
|
136
|
+
"mutable": false,
|
|
137
|
+
"complexType": {
|
|
138
|
+
"original": "string",
|
|
139
|
+
"resolved": "string",
|
|
140
|
+
"references": {}
|
|
141
|
+
},
|
|
142
|
+
"required": false,
|
|
143
|
+
"optional": false,
|
|
144
|
+
"docs": {
|
|
145
|
+
"tags": [],
|
|
146
|
+
"text": "Name of the icon"
|
|
147
|
+
},
|
|
148
|
+
"attribute": "name",
|
|
149
|
+
"reflect": true
|
|
137
150
|
},
|
|
138
|
-
"
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
"
|
|
147
|
-
"
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
"
|
|
153
|
-
"
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
}
|
|
158
|
-
}; }
|
|
151
|
+
"badge": {
|
|
152
|
+
"type": "boolean",
|
|
153
|
+
"mutable": false,
|
|
154
|
+
"complexType": {
|
|
155
|
+
"original": "boolean",
|
|
156
|
+
"resolved": "boolean",
|
|
157
|
+
"references": {}
|
|
158
|
+
},
|
|
159
|
+
"required": false,
|
|
160
|
+
"optional": false,
|
|
161
|
+
"docs": {
|
|
162
|
+
"tags": [],
|
|
163
|
+
"text": "Set to `true` to give the icon a round background with some padding.\nOnly works when the `size` attribute is also set."
|
|
164
|
+
},
|
|
165
|
+
"attribute": "badge",
|
|
166
|
+
"reflect": true
|
|
167
|
+
}
|
|
168
|
+
};
|
|
169
|
+
}
|
|
159
170
|
static get elementRef() { return "host"; }
|
|
160
|
-
static get watchers() {
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
171
|
+
static get watchers() {
|
|
172
|
+
return [{
|
|
173
|
+
"propName": "name",
|
|
174
|
+
"methodName": "loadIcon"
|
|
175
|
+
}];
|
|
176
|
+
}
|
|
164
177
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { h } from '@stencil/core';
|
|
2
2
|
/**
|
|
3
3
|
* @exampleComponent limel-example-icon-button-basic
|
|
4
4
|
* @exampleComponent limel-example-icon-button-disabled
|
|
@@ -8,14 +8,9 @@ import { Component, Element, h, Prop } from '@stencil/core';
|
|
|
8
8
|
*/
|
|
9
9
|
export class IconButton {
|
|
10
10
|
constructor() {
|
|
11
|
-
|
|
12
|
-
* Set to `true` to give the button our standard "elevated" look, lifting
|
|
13
|
-
* it off the flat layout.
|
|
14
|
-
*/
|
|
11
|
+
this.icon = undefined;
|
|
15
12
|
this.elevated = false;
|
|
16
|
-
|
|
17
|
-
* Set to `true` to disable the button.
|
|
18
|
-
*/
|
|
13
|
+
this.label = undefined;
|
|
19
14
|
this.disabled = false;
|
|
20
15
|
}
|
|
21
16
|
connectedCallback() {
|
|
@@ -35,88 +30,93 @@ export class IconButton {
|
|
|
35
30
|
if (this.host.hasAttribute('tabindex')) {
|
|
36
31
|
buttonAttributes.tabindex = this.host.getAttribute('tabindex');
|
|
37
32
|
}
|
|
38
|
-
return (h("button", Object.assign({ class: "mdc-icon-button", disabled: this.disabled, "aria-label": this.label, title: this.label }, buttonAttributes),
|
|
39
|
-
h("limel-icon", { name: this.icon, badge: true })));
|
|
33
|
+
return (h("button", Object.assign({ class: "mdc-icon-button", disabled: this.disabled, "aria-label": this.label, title: this.label }, buttonAttributes), h("limel-icon", { name: this.icon, badge: true })));
|
|
40
34
|
}
|
|
41
35
|
static get is() { return "limel-icon-button"; }
|
|
42
36
|
static get encapsulation() { return "shadow"; }
|
|
43
|
-
static get originalStyleUrls() {
|
|
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
|
-
"original": "boolean",
|
|
72
|
-
"resolved": "boolean",
|
|
73
|
-
"references": {}
|
|
74
|
-
},
|
|
75
|
-
"required": false,
|
|
76
|
-
"optional": false,
|
|
77
|
-
"docs": {
|
|
78
|
-
"tags": [],
|
|
79
|
-
"text": "Set to `true` to give the button our standard \"elevated\" look, lifting\nit off the flat layout."
|
|
80
|
-
},
|
|
81
|
-
"attribute": "elevated",
|
|
82
|
-
"reflect": true,
|
|
83
|
-
"defaultValue": "false"
|
|
84
|
-
},
|
|
85
|
-
"label": {
|
|
86
|
-
"type": "string",
|
|
87
|
-
"mutable": false,
|
|
88
|
-
"complexType": {
|
|
89
|
-
"original": "string",
|
|
90
|
-
"resolved": "string",
|
|
91
|
-
"references": {}
|
|
92
|
-
},
|
|
93
|
-
"required": false,
|
|
94
|
-
"optional": false,
|
|
95
|
-
"docs": {
|
|
96
|
-
"tags": [],
|
|
97
|
-
"text": "The text to show to screenreaders and other assistive tech."
|
|
37
|
+
static get originalStyleUrls() {
|
|
38
|
+
return {
|
|
39
|
+
"$": ["icon-button.scss"]
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
static get styleUrls() {
|
|
43
|
+
return {
|
|
44
|
+
"$": ["icon-button.css"]
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
static get properties() {
|
|
48
|
+
return {
|
|
49
|
+
"icon": {
|
|
50
|
+
"type": "string",
|
|
51
|
+
"mutable": false,
|
|
52
|
+
"complexType": {
|
|
53
|
+
"original": "string",
|
|
54
|
+
"resolved": "string",
|
|
55
|
+
"references": {}
|
|
56
|
+
},
|
|
57
|
+
"required": false,
|
|
58
|
+
"optional": false,
|
|
59
|
+
"docs": {
|
|
60
|
+
"tags": [],
|
|
61
|
+
"text": "The icon to display."
|
|
62
|
+
},
|
|
63
|
+
"attribute": "icon",
|
|
64
|
+
"reflect": true
|
|
98
65
|
},
|
|
99
|
-
"
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
"
|
|
108
|
-
"
|
|
66
|
+
"elevated": {
|
|
67
|
+
"type": "boolean",
|
|
68
|
+
"mutable": false,
|
|
69
|
+
"complexType": {
|
|
70
|
+
"original": "boolean",
|
|
71
|
+
"resolved": "boolean",
|
|
72
|
+
"references": {}
|
|
73
|
+
},
|
|
74
|
+
"required": false,
|
|
75
|
+
"optional": false,
|
|
76
|
+
"docs": {
|
|
77
|
+
"tags": [],
|
|
78
|
+
"text": "Set to `true` to give the button our standard \"elevated\" look, lifting\nit off the flat layout."
|
|
79
|
+
},
|
|
80
|
+
"attribute": "elevated",
|
|
81
|
+
"reflect": true,
|
|
82
|
+
"defaultValue": "false"
|
|
109
83
|
},
|
|
110
|
-
"
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
"
|
|
114
|
-
|
|
84
|
+
"label": {
|
|
85
|
+
"type": "string",
|
|
86
|
+
"mutable": false,
|
|
87
|
+
"complexType": {
|
|
88
|
+
"original": "string",
|
|
89
|
+
"resolved": "string",
|
|
90
|
+
"references": {}
|
|
91
|
+
},
|
|
92
|
+
"required": false,
|
|
93
|
+
"optional": false,
|
|
94
|
+
"docs": {
|
|
95
|
+
"tags": [],
|
|
96
|
+
"text": "The text to show to screenreaders and other assistive tech."
|
|
97
|
+
},
|
|
98
|
+
"attribute": "label",
|
|
99
|
+
"reflect": true
|
|
115
100
|
},
|
|
116
|
-
"
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
101
|
+
"disabled": {
|
|
102
|
+
"type": "boolean",
|
|
103
|
+
"mutable": false,
|
|
104
|
+
"complexType": {
|
|
105
|
+
"original": "boolean",
|
|
106
|
+
"resolved": "boolean",
|
|
107
|
+
"references": {}
|
|
108
|
+
},
|
|
109
|
+
"required": false,
|
|
110
|
+
"optional": false,
|
|
111
|
+
"docs": {
|
|
112
|
+
"tags": [],
|
|
113
|
+
"text": "Set to `true` to disable the button."
|
|
114
|
+
},
|
|
115
|
+
"attribute": "disabled",
|
|
116
|
+
"reflect": true,
|
|
117
|
+
"defaultValue": "false"
|
|
118
|
+
}
|
|
119
|
+
};
|
|
120
|
+
}
|
|
121
121
|
static get elementRef() { return "host"; }
|
|
122
122
|
}
|
|
@@ -0,0 +1,310 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This file is imported into every component!
|
|
3
|
+
*
|
|
4
|
+
* Nothing in this file may output any CSS
|
|
5
|
+
* without being explicitly called by outside code.
|
|
6
|
+
*/
|
|
7
|
+
/**
|
|
8
|
+
* @prop --info-tile-border-radius: defines the radius of corners of the info-tile. Defaults to `1rem`
|
|
9
|
+
* @prop --info-tile-icon-color: defines the fill color of the info-tile icon. Defaults to `--contrast-1000`
|
|
10
|
+
* @prop --info-tile-text-color: defines the color of the info-tile label. Defaults to `--contrast-1100`
|
|
11
|
+
* @prop --info-tile-background-color: defines the backgrounds color of the info-tile icon. Defaults to `--contrast-100`
|
|
12
|
+
* @prop --info-tile-badge-text-color: Text color of the notification badge. Defaults to `--color-white`
|
|
13
|
+
* @prop --info-tile-badge-background-color: Background color of the notification badge. Defaults to `--color-red-default`
|
|
14
|
+
* @prop --info-tile-progress-fill-color: Determines the color of the progressed section. Defaults to `--lime-primary-color`.
|
|
15
|
+
* @prop --info-tile-progress-background-color: Determines the background color of the central section of the progress bar. Defaults to `--info-tile-background-color`.
|
|
16
|
+
* @prop --info-tile-progress-suffix-color: Determines the color of the progress prefix. Defaults to `--contrast-1000`.
|
|
17
|
+
* @prop --info-tile-progress-text-color: Determines the color of the progress value. Defaults to `--info-tile-text-color`.
|
|
18
|
+
* @prop --info-tile-progress-prefix-color: Determines the color of the progress suffix. Defaults to `--contrast-1000`.
|
|
19
|
+
*/
|
|
20
|
+
:host(limel-info-tile) {
|
|
21
|
+
--badge-text-color: var(
|
|
22
|
+
--info-tile-badge-text-color,
|
|
23
|
+
rgb(var(--color-white))
|
|
24
|
+
);
|
|
25
|
+
--badge-background-color: var(
|
|
26
|
+
--info-tile-badge-background-color,
|
|
27
|
+
rgb(var(--color-red-default))
|
|
28
|
+
);
|
|
29
|
+
--circular-progress-text-color: var(
|
|
30
|
+
--info-tile-progress-text-color,
|
|
31
|
+
var(--info-tile-text-color)
|
|
32
|
+
);
|
|
33
|
+
--circular-progress-suffix-color: var(--info-tile-progress-suffix-color);
|
|
34
|
+
--circular-progress-prefix-color: var(--info-tile-progress-prefix-color);
|
|
35
|
+
--circular-progress-track-color: rgb(var(--contrast-800), 0.3);
|
|
36
|
+
--circular-progress-fill-color: var(--info-tile-progress-fill-color);
|
|
37
|
+
--circular-progress-background-color: var(
|
|
38
|
+
--info-tile-progress-background-color,
|
|
39
|
+
var(--info-tile-background-color)
|
|
40
|
+
);
|
|
41
|
+
--label-min-size: 0.75rem;
|
|
42
|
+
--label-preferred-size: 6cqw;
|
|
43
|
+
--label-max-size: 1rem;
|
|
44
|
+
--value-min-size: 1rem;
|
|
45
|
+
--value-preferred-size: 20cqw;
|
|
46
|
+
--value-max-size: 4rem;
|
|
47
|
+
--suffix-prefix-min-size: 0.75rem;
|
|
48
|
+
--suffix-prefix-preferred-size: 8cqw;
|
|
49
|
+
--suffix-prefix-max-size: 1.5rem;
|
|
50
|
+
--icon-min-size: 2rem;
|
|
51
|
+
--icon-preferred-size: 60cqh;
|
|
52
|
+
--icon-max-size: calc(100cqw - 0.5rem);
|
|
53
|
+
isolation: isolate;
|
|
54
|
+
container-type: size;
|
|
55
|
+
position: relative;
|
|
56
|
+
display: flex;
|
|
57
|
+
width: 100%;
|
|
58
|
+
height: 100%;
|
|
59
|
+
}
|
|
60
|
+
:host(limel-info-tile) * {
|
|
61
|
+
box-sizing: border-box;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
:host(limel-info-tile[disabled]) a {
|
|
65
|
+
opacity: 0.5;
|
|
66
|
+
cursor: not-allowed;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
a {
|
|
70
|
+
all: unset;
|
|
71
|
+
overflow: hidden;
|
|
72
|
+
display: flex;
|
|
73
|
+
flex-direction: column;
|
|
74
|
+
justify-content: flex-end;
|
|
75
|
+
align-items: flex-start;
|
|
76
|
+
height: 100%;
|
|
77
|
+
width: 100%;
|
|
78
|
+
flex-grow: 1;
|
|
79
|
+
padding: 0.25rem 1rem 0.5rem 1rem;
|
|
80
|
+
border-radius: var(--info-tile-border-radius, 1rem);
|
|
81
|
+
background-color: var(--info-tile-background-color, rgb(var(--contrast-100)));
|
|
82
|
+
}
|
|
83
|
+
a.is-clickable {
|
|
84
|
+
transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease-out;
|
|
85
|
+
box-shadow: var(--button-shadow-normal);
|
|
86
|
+
cursor: pointer;
|
|
87
|
+
}
|
|
88
|
+
a.is-clickable:hover {
|
|
89
|
+
box-shadow: var(--button-shadow-hovered);
|
|
90
|
+
}
|
|
91
|
+
a.is-clickable:active {
|
|
92
|
+
box-shadow: var(--button-shadow-pressed);
|
|
93
|
+
transform: translate3d(0, 0.08rem, 0);
|
|
94
|
+
}
|
|
95
|
+
a.is-clickable:focus {
|
|
96
|
+
outline: none;
|
|
97
|
+
}
|
|
98
|
+
a.is-clickable:focus-visible {
|
|
99
|
+
outline: none;
|
|
100
|
+
box-shadow: var(--shadow-depth-8-focused);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.icon {
|
|
104
|
+
position: absolute;
|
|
105
|
+
top: 0.5rem;
|
|
106
|
+
right: 0.75rem;
|
|
107
|
+
padding: 0.25rem;
|
|
108
|
+
display: flex;
|
|
109
|
+
justify-content: center;
|
|
110
|
+
color: var(--info-tile-icon-color, rgb(var(--contrast-1000)));
|
|
111
|
+
border-radius: 0;
|
|
112
|
+
height: clamp(var(--icon-min-size), var(--icon-preferred-size), var(--icon-max-size));
|
|
113
|
+
}
|
|
114
|
+
@supports not (container-type: size) {
|
|
115
|
+
.icon {
|
|
116
|
+
height: min(60%, var(--icon-max-size));
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
.has-circular-progress .icon {
|
|
120
|
+
top: unset;
|
|
121
|
+
bottom: 0.5rem;
|
|
122
|
+
--icon-min-size: 1.5rem;
|
|
123
|
+
--icon-preferred-size: 20cqh;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.progress {
|
|
127
|
+
position: absolute;
|
|
128
|
+
top: 0.75rem;
|
|
129
|
+
right: 0.75rem;
|
|
130
|
+
--circular-progress-size: min(
|
|
131
|
+
var(--icon-preferred-size),
|
|
132
|
+
var(--icon-max-size)
|
|
133
|
+
);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.label {
|
|
137
|
+
z-index: 1;
|
|
138
|
+
color: var(--info-tile-text-color, rgb(var(--contrast-1100)));
|
|
139
|
+
line-height: normal;
|
|
140
|
+
font-size: clamp(var(--label-min-size), var(--label-preferred-size), var(--label-max-size));
|
|
141
|
+
}
|
|
142
|
+
@supports not (container-type: size) {
|
|
143
|
+
.label {
|
|
144
|
+
font-size: 0.875rem;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
limel-badge {
|
|
149
|
+
position: absolute;
|
|
150
|
+
top: -0.5rem;
|
|
151
|
+
right: -0.5rem;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
limel-linear-progress {
|
|
155
|
+
--lime-primary-color: var(--info-tile-text-color);
|
|
156
|
+
position: absolute;
|
|
157
|
+
inset: auto 0 0 0;
|
|
158
|
+
border-radius: 1rem;
|
|
159
|
+
overflow: hidden;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.value-group {
|
|
163
|
+
position: relative;
|
|
164
|
+
z-index: 1;
|
|
165
|
+
display: flex;
|
|
166
|
+
flex-direction: column;
|
|
167
|
+
color: var(--info-tile-text-color, rgb(var(--contrast-1100)));
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.value-and-suffix,
|
|
171
|
+
.label {
|
|
172
|
+
text-shadow: 0 0 0.5rem var(--info-tile-background-color, rgb(var(--contrast-100))), 0 0 0.25rem var(--info-tile-background-color, rgb(var(--contrast-100)));
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.value-and-suffix {
|
|
176
|
+
display: flex;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.prefix,
|
|
180
|
+
.suffix {
|
|
181
|
+
font-size: clamp(var(--suffix-prefix-min-size), var(--suffix-prefix-preferred-size), var(--suffix-prefix-max-size));
|
|
182
|
+
opacity: 0.7;
|
|
183
|
+
}
|
|
184
|
+
@supports not (container-type: size) {
|
|
185
|
+
.prefix,
|
|
186
|
+
.suffix {
|
|
187
|
+
font-size: 0.75rem;
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.prefix {
|
|
192
|
+
align-self: flex-start;
|
|
193
|
+
line-height: normal;
|
|
194
|
+
transform: translateY(40%);
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.value {
|
|
198
|
+
transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.95);
|
|
199
|
+
transform-origin: left;
|
|
200
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
201
|
+
overflow: hidden;
|
|
202
|
+
white-space: nowrap;
|
|
203
|
+
text-overflow: ellipsis;
|
|
204
|
+
font-weight: bold;
|
|
205
|
+
line-height: normal;
|
|
206
|
+
font-size: clamp(var(--value-min-size), var(--value-preferred-size), var(--value-max-size));
|
|
207
|
+
}
|
|
208
|
+
@supports not (container-type: size) {
|
|
209
|
+
.value {
|
|
210
|
+
font-size: 2.5rem;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
:host(limel-info-tile[loading]) .value {
|
|
214
|
+
opacity: 0.3;
|
|
215
|
+
transform: translate3d(0, 0, 0) scale(0.9);
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.suffix {
|
|
219
|
+
transform: translateY(10%);
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
@container (width < 8rem) {
|
|
223
|
+
.progress {
|
|
224
|
+
top: 0.25rem;
|
|
225
|
+
right: 0.25rem;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
a {
|
|
229
|
+
padding: 0.375rem;
|
|
230
|
+
gap: 0.125rem;
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
@container (width < 18.75rem) {
|
|
234
|
+
.progress {
|
|
235
|
+
top: 0.5rem;
|
|
236
|
+
right: 0.5rem;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.icon {
|
|
240
|
+
top: 0.25rem;
|
|
241
|
+
right: 0.5rem;
|
|
242
|
+
}
|
|
243
|
+
.has-circular-progress .icon {
|
|
244
|
+
right: 0.25rem;
|
|
245
|
+
bottom: 0.25rem;
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
@container (width < 40.5rem) {
|
|
249
|
+
.value {
|
|
250
|
+
--value-preferred-size: 13cqw;
|
|
251
|
+
}
|
|
252
|
+
.value.ch-1, .value.ch-2, .value.ch-3, .value.ch-4 {
|
|
253
|
+
--value-preferred-size: 20cqw;
|
|
254
|
+
}
|
|
255
|
+
.value.ch-5 {
|
|
256
|
+
--value-preferred-size: 18cqw;
|
|
257
|
+
}
|
|
258
|
+
.value.ch-6 {
|
|
259
|
+
--value-preferred-size: 17cqw;
|
|
260
|
+
}
|
|
261
|
+
.value.ch-7 {
|
|
262
|
+
--value-preferred-size: 16cqw;
|
|
263
|
+
}
|
|
264
|
+
.value.ch-8 {
|
|
265
|
+
--value-preferred-size: 15cqw;
|
|
266
|
+
}
|
|
267
|
+
.value.ch-9 {
|
|
268
|
+
--value-preferred-size: 14cqw;
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
@container (height > 8rem) {
|
|
272
|
+
a {
|
|
273
|
+
padding-top: 0.75rem;
|
|
274
|
+
padding-bottom: 1rem;
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
@container (height < 8rem) and (width > 8rem) {
|
|
278
|
+
.value {
|
|
279
|
+
--value-preferred-size: 32cqh !important;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.suffix,
|
|
283
|
+
.prefix {
|
|
284
|
+
--suffix-prefix-preferred-size: 16cqh !important;
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
@container (height > 18.75rem) {
|
|
288
|
+
.progress,
|
|
289
|
+
.icon {
|
|
290
|
+
position: relative;
|
|
291
|
+
top: unset;
|
|
292
|
+
right: unset;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
a {
|
|
296
|
+
align-items: center;
|
|
297
|
+
justify-content: center;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.label {
|
|
301
|
+
text-align: center;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.has-circular-progress .icon {
|
|
305
|
+
position: absolute;
|
|
306
|
+
top: 0.5rem;
|
|
307
|
+
right: 0.5rem;
|
|
308
|
+
--icon-max-size: 3rem;
|
|
309
|
+
}
|
|
310
|
+
}
|