@limetech/lime-elements 36.3.0-next.4 → 36.3.0-next.40
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 +2 -2
- package/dist/cjs/lime-elements.cjs.js +1 -1
- package/dist/cjs/limel-badge.cjs.entry.js +4 -6
- package/dist/cjs/limel-button-group.cjs.entry.js +21 -6
- package/dist/cjs/limel-button.cjs.entry.js +1 -1
- package/dist/cjs/limel-callout.cjs.entry.js +54 -0
- package/dist/cjs/limel-chip-set.cjs.entry.js +13 -3
- package/dist/cjs/limel-code-editor.cjs.entry.js +1 -1
- package/dist/cjs/limel-collapsible-section.cjs.entry.js +3 -12
- package/dist/cjs/limel-color-picker-palette.cjs.entry.js +1 -1
- package/dist/cjs/limel-color-picker.cjs.entry.js +1 -1
- package/dist/cjs/limel-date-picker.cjs.entry.js +47 -7
- package/dist/cjs/limel-dialog.cjs.entry.js +1 -1
- package/dist/cjs/limel-dock-button.cjs.entry.js +7 -2
- package/dist/cjs/limel-dock.cjs.entry.js +1 -1
- package/dist/cjs/limel-file.cjs.entry.js +1 -1
- package/dist/cjs/limel-flatpickr-adapter.cjs.entry.js +99 -118
- package/dist/cjs/limel-form.cjs.entry.js +79 -1
- package/dist/cjs/limel-header.cjs.entry.js +2 -2
- package/dist/cjs/limel-icon-button.cjs.entry.js +1 -1
- package/dist/cjs/limel-info-tile.cjs.entry.js +4 -1
- package/dist/cjs/limel-input-field.cjs.entry.js +2 -2
- package/dist/cjs/limel-list_2.cjs.entry.js +1 -1
- package/dist/cjs/limel-menu-list.cjs.entry.js +7 -1
- package/dist/cjs/limel-menu.cjs.entry.js +10 -2
- package/dist/cjs/limel-portal.cjs.entry.js +3 -4
- package/dist/cjs/limel-select.cjs.entry.js +1 -1
- package/dist/cjs/limel-shortcut.cjs.entry.js +1 -1
- package/dist/cjs/limel-slider.cjs.entry.js +1 -1
- package/dist/cjs/limel-snackbar.cjs.entry.js +2 -2
- package/dist/cjs/limel-spinner.cjs.entry.js +1 -1
- package/dist/cjs/limel-split-button.cjs.entry.js +1 -1
- package/dist/cjs/limel-tab-bar.cjs.entry.js +1 -1
- package/dist/cjs/limel-tab-panel.cjs.entry.js +1 -1
- package/dist/cjs/limel-table.cjs.entry.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/{dateFormatter-d7a8d40d.js → sv-dffe48b5.js} +222 -173
- package/dist/cjs/{translations-ca7279bc.js → translations-f8080c48.js} +30 -0
- package/dist/collection/collection-manifest.json +1 -0
- package/dist/collection/components/badge/badge.css +34 -19
- package/dist/collection/components/badge/badge.js +7 -7
- package/dist/collection/components/banner/banner.css +1 -2
- package/dist/collection/components/button/button.css +31 -41
- package/dist/collection/components/button-group/button-group.css +44 -42
- package/dist/collection/components/button-group/button-group.js +25 -6
- package/dist/collection/components/callout/callout.css +77 -0
- package/dist/collection/components/callout/callout.helpers.js +27 -0
- package/dist/collection/components/callout/callout.js +139 -0
- package/dist/collection/components/callout/callout.types.js +1 -0
- package/dist/collection/components/checkbox/checkbox.css +22 -45
- package/dist/collection/components/chip-set/chip-set.css +222 -405
- package/dist/collection/components/chip-set/chip-set.js +6 -2
- package/dist/collection/components/circular-progress/circular-progress.css +8 -0
- package/dist/collection/components/code-editor/code-editor.css +11 -8
- package/dist/collection/components/collapsible-section/collapsible-section.css +88 -55
- package/dist/collection/components/collapsible-section/collapsible-section.js +2 -11
- package/dist/collection/components/color-picker/color-picker-palette.css +16 -14
- package/dist/collection/components/color-picker/color-picker.css +7 -5
- package/dist/collection/components/date-picker/date-picker.js +30 -5
- package/dist/collection/components/date-picker/dateFormatter.js +7 -3
- package/dist/collection/components/date-picker/flatpickr-adapter/flatpickr-adapter.css +11 -1
- package/dist/collection/components/date-picker/flatpickr-adapter/flatpickr-adapter.js +23 -8
- package/dist/collection/components/date-picker/pickers/Picker.js +11 -8
- package/dist/collection/components/dialog/dialog.css +14 -27
- package/dist/collection/components/dock/dock-button/dock-button.css +17 -2
- package/dist/collection/components/dock/dock-button/dock-button.js +6 -1
- package/dist/collection/components/dock/dock.css +19 -1
- package/dist/collection/components/dock/dock.js +1 -0
- package/dist/collection/components/file/file.js +1 -1
- package/dist/collection/components/form/form.css +93 -4
- package/dist/collection/components/form/form.js +1 -0
- package/dist/collection/components/form/form.types.js +8 -0
- package/dist/collection/components/form/row/row.js +47 -0
- package/dist/collection/components/form/templates/object-field.js +5 -0
- package/dist/collection/components/form/templates/row-layout.js +20 -0
- package/dist/collection/components/header/header.css +10 -2
- package/dist/collection/components/header/header.js +7 -2
- package/dist/collection/components/icon-button/icon-button.css +15 -12
- package/dist/collection/components/info-tile/info-tile.css +13 -17
- package/dist/collection/components/info-tile/info-tile.js +3 -0
- package/dist/collection/components/input-field/input-field.css +199 -363
- package/dist/collection/components/input-field/input-field.js +1 -1
- package/dist/collection/components/linear-progress/linear-progress.css +7 -14
- package/dist/collection/components/list/list.css +388 -751
- package/dist/collection/components/menu/menu.css +19 -1
- package/dist/collection/components/menu/menu.js +10 -1
- package/dist/collection/components/menu-list/menu-list-renderer.js +6 -1
- package/dist/collection/components/menu-list/menu-list.css +400 -752
- package/dist/collection/components/menu-surface/menu-surface.css +13 -26
- package/dist/collection/components/popover-surface/popover-surface.css +8 -0
- package/dist/collection/components/progress-flow/progress-flow-item/progress-flow-item.css +8 -0
- package/dist/collection/components/select/select.css +174 -323
- package/dist/collection/components/shortcut/shortcut.css +9 -7
- package/dist/collection/components/slider/slider.css +31 -58
- package/dist/collection/components/snackbar/snackbar.css +19 -34
- package/dist/collection/components/snackbar/snackbar.js +1 -1
- package/dist/collection/components/spinner/spinner.css +4 -0
- package/dist/collection/components/split-button/split-button.css +15 -4
- package/dist/collection/components/switch/switch.css +21 -49
- package/dist/collection/components/tab-bar/tab-bar.css +20 -19
- package/dist/collection/components/tab-panel/tab-panel.css +5 -0
- package/dist/collection/components/table/table.css +33 -0
- package/dist/collection/icons/idea.svg +593 -0
- package/dist/collection/icons/info.svg +593 -0
- package/dist/collection/style/internal/shared_input-select-picker.scss +4 -0
- package/dist/collection/style/internal/z-index.scss +0 -1
- package/dist/collection/style/mixins.scss +15 -4
- package/dist/collection/translations/da.js +5 -0
- package/dist/collection/translations/en.js +5 -0
- package/dist/collection/translations/fi.js +5 -0
- package/dist/collection/translations/nl.js +5 -0
- package/dist/collection/translations/no.js +5 -0
- package/dist/collection/translations/sv.js +5 -0
- package/dist/esm/{keycodes-9f971b46.js → keycodes-44c01beb.js} +1 -1
- package/dist/esm/lime-elements.js +1 -1
- package/dist/esm/limel-badge.entry.js +4 -6
- package/dist/esm/limel-button-group.entry.js +21 -6
- package/dist/esm/limel-button.entry.js +1 -1
- package/dist/esm/limel-callout.entry.js +50 -0
- package/dist/esm/limel-chip-set.entry.js +14 -4
- package/dist/esm/limel-code-editor.entry.js +1 -1
- package/dist/esm/limel-collapsible-section.entry.js +3 -12
- package/dist/esm/limel-color-picker-palette.entry.js +1 -1
- package/dist/esm/limel-color-picker.entry.js +1 -1
- package/dist/esm/limel-date-picker.entry.js +46 -6
- package/dist/esm/limel-dialog.entry.js +1 -1
- package/dist/esm/limel-dock-button.entry.js +7 -2
- package/dist/esm/limel-dock.entry.js +1 -1
- package/dist/esm/limel-file.entry.js +1 -1
- package/dist/esm/limel-flatpickr-adapter.entry.js +99 -118
- package/dist/esm/limel-form.entry.js +79 -1
- package/dist/esm/limel-header.entry.js +2 -2
- package/dist/esm/limel-icon-button.entry.js +1 -1
- package/dist/esm/limel-info-tile.entry.js +4 -1
- package/dist/esm/limel-input-field.entry.js +3 -3
- package/dist/esm/limel-list_2.entry.js +2 -2
- package/dist/esm/limel-menu-list.entry.js +7 -1
- package/dist/esm/limel-menu.entry.js +10 -2
- package/dist/esm/limel-picker.entry.js +1 -1
- package/dist/esm/limel-popover_4.entry.js +1 -1
- package/dist/esm/limel-portal.entry.js +3 -4
- package/dist/esm/limel-select.entry.js +2 -2
- package/dist/esm/limel-shortcut.entry.js +1 -1
- package/dist/esm/limel-slider.entry.js +1 -1
- package/dist/esm/limel-snackbar.entry.js +2 -2
- package/dist/esm/limel-spinner.entry.js +1 -1
- package/dist/esm/limel-split-button.entry.js +1 -1
- package/dist/esm/limel-tab-bar.entry.js +1 -1
- package/dist/esm/limel-tab-panel.entry.js +1 -1
- package/dist/esm/limel-table.entry.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/{dateFormatter-784c3334.js → sv-336c4576.js} +222 -173
- package/dist/esm/{translations-0d0ee941.js → translations-f88bb584.js} +30 -0
- package/dist/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/{p-a8d38277.entry.js → p-10e259de.entry.js} +1 -1
- package/dist/lime-elements/{p-934456bc.entry.js → p-123f5fbb.entry.js} +1 -1
- package/dist/lime-elements/{p-c234a991.entry.js → p-157e0417.entry.js} +2 -2
- package/dist/lime-elements/p-2f9918a3.entry.js +1 -0
- package/dist/lime-elements/p-2fd478df.entry.js +1 -0
- package/dist/lime-elements/p-3be2dfc7.entry.js +1 -0
- package/dist/lime-elements/{p-06f2f6b4.entry.js → p-3fda3473.entry.js} +1 -1
- package/dist/lime-elements/p-46a76d55.entry.js +1 -0
- package/dist/lime-elements/p-4a62273c.entry.js +1 -0
- package/dist/lime-elements/{p-73df4d83.js → p-4dd9a5a5.js} +5 -3
- package/dist/lime-elements/{p-d1187867.entry.js → p-4eeabc1f.entry.js} +1 -1
- package/dist/lime-elements/{p-2f2ea041.entry.js → p-4fcd3337.entry.js} +1 -1
- package/dist/lime-elements/{p-029360c8.entry.js → p-50dbd665.entry.js} +1 -1
- package/dist/lime-elements/{p-e5213a54.entry.js → p-55c8cb64.entry.js} +4 -4
- package/dist/lime-elements/{p-cad7cda1.entry.js → p-58e9df30.entry.js} +1 -1
- package/dist/lime-elements/p-73613abb.entry.js +82 -0
- package/dist/lime-elements/{p-6784c5c3.entry.js → p-7d7d19de.entry.js} +1 -1
- package/dist/lime-elements/{p-d379f4d6.entry.js → p-8c4e3b46.entry.js} +1 -1
- package/dist/lime-elements/{p-004aad18.entry.js → p-9336fd7f.entry.js} +1 -1
- package/dist/lime-elements/{p-5f13035a.entry.js → p-95cefb5f.entry.js} +1 -1
- package/dist/lime-elements/{p-a0c78744.entry.js → p-a88f2922.entry.js} +2 -2
- package/dist/lime-elements/p-b1ae3d1f.entry.js +126 -0
- package/dist/lime-elements/p-b40f37d7.entry.js +1 -0
- package/dist/lime-elements/p-b59e4287.js +1 -0
- package/dist/lime-elements/{p-405207fa.entry.js → p-b80de0ea.entry.js} +1 -1
- package/dist/lime-elements/p-c47cb4c3.entry.js +1 -0
- package/dist/lime-elements/{p-b079fc71.entry.js → p-cc3529bb.entry.js} +1 -1
- package/dist/lime-elements/{p-93ad8b90.entry.js → p-d0084a70.entry.js} +1 -1
- package/dist/lime-elements/p-d16b27b9.entry.js +1 -0
- package/dist/lime-elements/{p-216ffe20.js → p-d7801e00.js} +1 -1
- package/dist/lime-elements/p-d87e2f26.entry.js +1 -0
- package/dist/lime-elements/p-da536426.entry.js +1 -0
- package/dist/lime-elements/{p-d9c96100.entry.js → p-dcf88b3e.entry.js} +1 -1
- package/dist/lime-elements/p-e69231c2.entry.js +16 -0
- package/dist/lime-elements/p-eda87f8c.entry.js +1 -0
- package/dist/lime-elements/{p-0bf916a0.entry.js → p-edbd8d62.entry.js} +1 -1
- package/dist/lime-elements/p-f11e7ce1.entry.js +1 -0
- package/dist/lime-elements/{p-5409b92f.entry.js → p-f979c0f2.entry.js} +1 -1
- package/dist/lime-elements/style/internal/shared_input-select-picker.scss +4 -0
- package/dist/lime-elements/style/internal/z-index.scss +0 -1
- package/dist/lime-elements/style/mixins.scss +15 -4
- package/dist/scss/mixins.scss +186 -0
- package/dist/types/components/badge/badge.d.ts +4 -2
- package/dist/types/components/button/button.types.d.ts +4 -0
- package/dist/types/components/button-group/button-group.d.ts +4 -0
- package/dist/types/components/callout/callout.d.ts +52 -0
- package/dist/types/components/callout/callout.helpers.d.ts +2 -0
- package/dist/types/components/callout/callout.types.d.ts +11 -0
- package/dist/types/components/chip-set/chip-set.d.ts +1 -1
- package/dist/types/components/collapsible-section/collapsible-section.d.ts +0 -1
- package/dist/types/components/date-picker/date-picker.d.ts +10 -0
- package/dist/types/components/date-picker/date.types.d.ts +1 -1
- package/dist/types/components/date-picker/dateFormatter.d.ts +3 -2
- package/dist/types/components/date-picker/flatpickr-adapter/flatpickr-adapter.d.ts +1 -1
- package/dist/types/components/date-picker/pickers/Picker.d.ts +4 -2
- package/dist/types/components/dock/dock-button/dock-button.d.ts +1 -0
- package/dist/types/components/dock/dock.d.ts +1 -0
- package/dist/types/components/dock/dock.types.d.ts +4 -0
- package/dist/types/components/form/form.d.ts +1 -0
- package/dist/types/components/form/form.types.d.ts +16 -1
- package/dist/types/components/form/row/row.d.ts +16 -0
- package/dist/types/components/form/templates/row-layout.d.ts +11 -0
- package/dist/types/components/form/templates/types.d.ts +3 -0
- package/dist/types/components/header/header.d.ts +6 -1
- package/dist/types/components/menu/menu.d.ts +3 -0
- package/dist/types/components/menu/menu.types.d.ts +4 -0
- package/dist/types/components/menu-list/menu-list-renderer.d.ts +1 -0
- package/dist/types/components.d.ts +57 -1
- package/dist/types/interface.d.ts +1 -0
- package/dist/types/translations/da.d.ts +5 -0
- package/dist/types/translations/en.d.ts +5 -0
- package/dist/types/translations/fi.d.ts +5 -0
- package/dist/types/translations/nl.d.ts +5 -0
- package/dist/types/translations/no.d.ts +5 -0
- package/dist/types/translations/sv.d.ts +5 -0
- package/package.json +23 -20
- package/dist/lime-elements/p-246862ec.js +0 -1
- package/dist/lime-elements/p-524bd0cc.entry.js +0 -1
- package/dist/lime-elements/p-52e18d94.entry.js +0 -1
- package/dist/lime-elements/p-61b3352f.entry.js +0 -1
- package/dist/lime-elements/p-65a3be2c.entry.js +0 -1
- package/dist/lime-elements/p-864db270.entry.js +0 -126
- package/dist/lime-elements/p-8ca53aa2.entry.js +0 -1
- package/dist/lime-elements/p-90961075.entry.js +0 -1
- package/dist/lime-elements/p-91604294.entry.js +0 -1
- package/dist/lime-elements/p-95fd48d0.entry.js +0 -82
- package/dist/lime-elements/p-c4a89055.entry.js +0 -16
- package/dist/lime-elements/p-cc9f89a9.entry.js +0 -1
- package/dist/lime-elements/p-d512656b.entry.js +0 -1
- package/dist/lime-elements/p-e6a11b73.entry.js +0 -1
- package/dist/lime-elements/p-f9958763.entry.js +0 -1
|
@@ -61,6 +61,89 @@ createCommonjsModule(function (module, exports) {
|
|
|
61
61
|
})));
|
|
62
62
|
});
|
|
63
63
|
|
|
64
|
+
createCommonjsModule(function (module, exports) {
|
|
65
|
+
(function (global, factory) {
|
|
66
|
+
typeof commonjsRequire === 'function' ? factory(moment) :
|
|
67
|
+
factory(global.moment);
|
|
68
|
+
}(commonjsGlobal, (function (moment) {
|
|
69
|
+
//! moment.js locale configuration
|
|
70
|
+
|
|
71
|
+
function processRelativeTime(number, withoutSuffix, key, isFuture) {
|
|
72
|
+
var format = {
|
|
73
|
+
m: ['eine Minute', 'einer Minute'],
|
|
74
|
+
h: ['eine Stunde', 'einer Stunde'],
|
|
75
|
+
d: ['ein Tag', 'einem Tag'],
|
|
76
|
+
dd: [number + ' Tage', number + ' Tagen'],
|
|
77
|
+
w: ['eine Woche', 'einer Woche'],
|
|
78
|
+
M: ['ein Monat', 'einem Monat'],
|
|
79
|
+
MM: [number + ' Monate', number + ' Monaten'],
|
|
80
|
+
y: ['ein Jahr', 'einem Jahr'],
|
|
81
|
+
yy: [number + ' Jahre', number + ' Jahren'],
|
|
82
|
+
};
|
|
83
|
+
return withoutSuffix ? format[key][0] : format[key][1];
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
var de = moment.defineLocale('de', {
|
|
87
|
+
months: 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split(
|
|
88
|
+
'_'
|
|
89
|
+
),
|
|
90
|
+
monthsShort:
|
|
91
|
+
'Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.'.split('_'),
|
|
92
|
+
monthsParseExact: true,
|
|
93
|
+
weekdays:
|
|
94
|
+
'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split(
|
|
95
|
+
'_'
|
|
96
|
+
),
|
|
97
|
+
weekdaysShort: 'So._Mo._Di._Mi._Do._Fr._Sa.'.split('_'),
|
|
98
|
+
weekdaysMin: 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
|
|
99
|
+
weekdaysParseExact: true,
|
|
100
|
+
longDateFormat: {
|
|
101
|
+
LT: 'HH:mm',
|
|
102
|
+
LTS: 'HH:mm:ss',
|
|
103
|
+
L: 'DD.MM.YYYY',
|
|
104
|
+
LL: 'D. MMMM YYYY',
|
|
105
|
+
LLL: 'D. MMMM YYYY HH:mm',
|
|
106
|
+
LLLL: 'dddd, D. MMMM YYYY HH:mm',
|
|
107
|
+
},
|
|
108
|
+
calendar: {
|
|
109
|
+
sameDay: '[heute um] LT [Uhr]',
|
|
110
|
+
sameElse: 'L',
|
|
111
|
+
nextDay: '[morgen um] LT [Uhr]',
|
|
112
|
+
nextWeek: 'dddd [um] LT [Uhr]',
|
|
113
|
+
lastDay: '[gestern um] LT [Uhr]',
|
|
114
|
+
lastWeek: '[letzten] dddd [um] LT [Uhr]',
|
|
115
|
+
},
|
|
116
|
+
relativeTime: {
|
|
117
|
+
future: 'in %s',
|
|
118
|
+
past: 'vor %s',
|
|
119
|
+
s: 'ein paar Sekunden',
|
|
120
|
+
ss: '%d Sekunden',
|
|
121
|
+
m: processRelativeTime,
|
|
122
|
+
mm: '%d Minuten',
|
|
123
|
+
h: processRelativeTime,
|
|
124
|
+
hh: '%d Stunden',
|
|
125
|
+
d: processRelativeTime,
|
|
126
|
+
dd: processRelativeTime,
|
|
127
|
+
w: processRelativeTime,
|
|
128
|
+
ww: '%d Wochen',
|
|
129
|
+
M: processRelativeTime,
|
|
130
|
+
MM: processRelativeTime,
|
|
131
|
+
y: processRelativeTime,
|
|
132
|
+
yy: processRelativeTime,
|
|
133
|
+
},
|
|
134
|
+
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
|
135
|
+
ordinal: '%d.',
|
|
136
|
+
week: {
|
|
137
|
+
dow: 1, // Monday is the first day of the week.
|
|
138
|
+
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
|
139
|
+
},
|
|
140
|
+
});
|
|
141
|
+
|
|
142
|
+
return de;
|
|
143
|
+
|
|
144
|
+
})));
|
|
145
|
+
});
|
|
146
|
+
|
|
64
147
|
createCommonjsModule(function (module, exports) {
|
|
65
148
|
(function (global, factory) {
|
|
66
149
|
typeof commonjsRequire === 'function' ? factory(moment) :
|
|
@@ -192,146 +275,6 @@ createCommonjsModule(function (module, exports) {
|
|
|
192
275
|
})));
|
|
193
276
|
});
|
|
194
277
|
|
|
195
|
-
createCommonjsModule(function (module, exports) {
|
|
196
|
-
(function (global, factory) {
|
|
197
|
-
typeof commonjsRequire === 'function' ? factory(moment) :
|
|
198
|
-
factory(global.moment);
|
|
199
|
-
}(commonjsGlobal, (function (moment) {
|
|
200
|
-
//! moment.js locale configuration
|
|
201
|
-
|
|
202
|
-
var nb = moment.defineLocale('nb', {
|
|
203
|
-
months: 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split(
|
|
204
|
-
'_'
|
|
205
|
-
),
|
|
206
|
-
monthsShort:
|
|
207
|
-
'jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.'.split('_'),
|
|
208
|
-
monthsParseExact: true,
|
|
209
|
-
weekdays: 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'),
|
|
210
|
-
weekdaysShort: 'sø._ma._ti._on._to._fr._lø.'.split('_'),
|
|
211
|
-
weekdaysMin: 'sø_ma_ti_on_to_fr_lø'.split('_'),
|
|
212
|
-
weekdaysParseExact: true,
|
|
213
|
-
longDateFormat: {
|
|
214
|
-
LT: 'HH:mm',
|
|
215
|
-
LTS: 'HH:mm:ss',
|
|
216
|
-
L: 'DD.MM.YYYY',
|
|
217
|
-
LL: 'D. MMMM YYYY',
|
|
218
|
-
LLL: 'D. MMMM YYYY [kl.] HH:mm',
|
|
219
|
-
LLLL: 'dddd D. MMMM YYYY [kl.] HH:mm',
|
|
220
|
-
},
|
|
221
|
-
calendar: {
|
|
222
|
-
sameDay: '[i dag kl.] LT',
|
|
223
|
-
nextDay: '[i morgen kl.] LT',
|
|
224
|
-
nextWeek: 'dddd [kl.] LT',
|
|
225
|
-
lastDay: '[i går kl.] LT',
|
|
226
|
-
lastWeek: '[forrige] dddd [kl.] LT',
|
|
227
|
-
sameElse: 'L',
|
|
228
|
-
},
|
|
229
|
-
relativeTime: {
|
|
230
|
-
future: 'om %s',
|
|
231
|
-
past: '%s siden',
|
|
232
|
-
s: 'noen sekunder',
|
|
233
|
-
ss: '%d sekunder',
|
|
234
|
-
m: 'ett minutt',
|
|
235
|
-
mm: '%d minutter',
|
|
236
|
-
h: 'en time',
|
|
237
|
-
hh: '%d timer',
|
|
238
|
-
d: 'en dag',
|
|
239
|
-
dd: '%d dager',
|
|
240
|
-
w: 'en uke',
|
|
241
|
-
ww: '%d uker',
|
|
242
|
-
M: 'en måned',
|
|
243
|
-
MM: '%d måneder',
|
|
244
|
-
y: 'ett år',
|
|
245
|
-
yy: '%d år',
|
|
246
|
-
},
|
|
247
|
-
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
|
248
|
-
ordinal: '%d.',
|
|
249
|
-
week: {
|
|
250
|
-
dow: 1, // Monday is the first day of the week.
|
|
251
|
-
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
|
252
|
-
},
|
|
253
|
-
});
|
|
254
|
-
|
|
255
|
-
return nb;
|
|
256
|
-
|
|
257
|
-
})));
|
|
258
|
-
});
|
|
259
|
-
|
|
260
|
-
createCommonjsModule(function (module, exports) {
|
|
261
|
-
(function (global, factory) {
|
|
262
|
-
typeof commonjsRequire === 'function' ? factory(moment) :
|
|
263
|
-
factory(global.moment);
|
|
264
|
-
}(commonjsGlobal, (function (moment) {
|
|
265
|
-
//! moment.js locale configuration
|
|
266
|
-
|
|
267
|
-
var sv = moment.defineLocale('sv', {
|
|
268
|
-
months: 'januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december'.split(
|
|
269
|
-
'_'
|
|
270
|
-
),
|
|
271
|
-
monthsShort: 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'),
|
|
272
|
-
weekdays: 'söndag_måndag_tisdag_onsdag_torsdag_fredag_lördag'.split('_'),
|
|
273
|
-
weekdaysShort: 'sön_mån_tis_ons_tor_fre_lör'.split('_'),
|
|
274
|
-
weekdaysMin: 'sö_må_ti_on_to_fr_lö'.split('_'),
|
|
275
|
-
longDateFormat: {
|
|
276
|
-
LT: 'HH:mm',
|
|
277
|
-
LTS: 'HH:mm:ss',
|
|
278
|
-
L: 'YYYY-MM-DD',
|
|
279
|
-
LL: 'D MMMM YYYY',
|
|
280
|
-
LLL: 'D MMMM YYYY [kl.] HH:mm',
|
|
281
|
-
LLLL: 'dddd D MMMM YYYY [kl.] HH:mm',
|
|
282
|
-
lll: 'D MMM YYYY HH:mm',
|
|
283
|
-
llll: 'ddd D MMM YYYY HH:mm',
|
|
284
|
-
},
|
|
285
|
-
calendar: {
|
|
286
|
-
sameDay: '[Idag] LT',
|
|
287
|
-
nextDay: '[Imorgon] LT',
|
|
288
|
-
lastDay: '[Igår] LT',
|
|
289
|
-
nextWeek: '[På] dddd LT',
|
|
290
|
-
lastWeek: '[I] dddd[s] LT',
|
|
291
|
-
sameElse: 'L',
|
|
292
|
-
},
|
|
293
|
-
relativeTime: {
|
|
294
|
-
future: 'om %s',
|
|
295
|
-
past: 'för %s sedan',
|
|
296
|
-
s: 'några sekunder',
|
|
297
|
-
ss: '%d sekunder',
|
|
298
|
-
m: 'en minut',
|
|
299
|
-
mm: '%d minuter',
|
|
300
|
-
h: 'en timme',
|
|
301
|
-
hh: '%d timmar',
|
|
302
|
-
d: 'en dag',
|
|
303
|
-
dd: '%d dagar',
|
|
304
|
-
M: 'en månad',
|
|
305
|
-
MM: '%d månader',
|
|
306
|
-
y: 'ett år',
|
|
307
|
-
yy: '%d år',
|
|
308
|
-
},
|
|
309
|
-
dayOfMonthOrdinalParse: /\d{1,2}(\:e|\:a)/,
|
|
310
|
-
ordinal: function (number) {
|
|
311
|
-
var b = number % 10,
|
|
312
|
-
output =
|
|
313
|
-
~~((number % 100) / 10) === 1
|
|
314
|
-
? ':e'
|
|
315
|
-
: b === 1
|
|
316
|
-
? ':a'
|
|
317
|
-
: b === 2
|
|
318
|
-
? ':a'
|
|
319
|
-
: b === 3
|
|
320
|
-
? ':e'
|
|
321
|
-
: ':e';
|
|
322
|
-
return number + output;
|
|
323
|
-
},
|
|
324
|
-
week: {
|
|
325
|
-
dow: 1, // Monday is the first day of the week.
|
|
326
|
-
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
|
327
|
-
},
|
|
328
|
-
});
|
|
329
|
-
|
|
330
|
-
return sv;
|
|
331
|
-
|
|
332
|
-
})));
|
|
333
|
-
});
|
|
334
|
-
|
|
335
278
|
createCommonjsModule(function (module, exports) {
|
|
336
279
|
(function (global, factory) {
|
|
337
280
|
typeof commonjsRequire === 'function' ? factory(moment) :
|
|
@@ -447,6 +390,71 @@ createCommonjsModule(function (module, exports) {
|
|
|
447
390
|
})));
|
|
448
391
|
});
|
|
449
392
|
|
|
393
|
+
createCommonjsModule(function (module, exports) {
|
|
394
|
+
(function (global, factory) {
|
|
395
|
+
typeof commonjsRequire === 'function' ? factory(moment) :
|
|
396
|
+
factory(global.moment);
|
|
397
|
+
}(commonjsGlobal, (function (moment) {
|
|
398
|
+
//! moment.js locale configuration
|
|
399
|
+
|
|
400
|
+
var nb = moment.defineLocale('nb', {
|
|
401
|
+
months: 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split(
|
|
402
|
+
'_'
|
|
403
|
+
),
|
|
404
|
+
monthsShort:
|
|
405
|
+
'jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.'.split('_'),
|
|
406
|
+
monthsParseExact: true,
|
|
407
|
+
weekdays: 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'),
|
|
408
|
+
weekdaysShort: 'sø._ma._ti._on._to._fr._lø.'.split('_'),
|
|
409
|
+
weekdaysMin: 'sø_ma_ti_on_to_fr_lø'.split('_'),
|
|
410
|
+
weekdaysParseExact: true,
|
|
411
|
+
longDateFormat: {
|
|
412
|
+
LT: 'HH:mm',
|
|
413
|
+
LTS: 'HH:mm:ss',
|
|
414
|
+
L: 'DD.MM.YYYY',
|
|
415
|
+
LL: 'D. MMMM YYYY',
|
|
416
|
+
LLL: 'D. MMMM YYYY [kl.] HH:mm',
|
|
417
|
+
LLLL: 'dddd D. MMMM YYYY [kl.] HH:mm',
|
|
418
|
+
},
|
|
419
|
+
calendar: {
|
|
420
|
+
sameDay: '[i dag kl.] LT',
|
|
421
|
+
nextDay: '[i morgen kl.] LT',
|
|
422
|
+
nextWeek: 'dddd [kl.] LT',
|
|
423
|
+
lastDay: '[i går kl.] LT',
|
|
424
|
+
lastWeek: '[forrige] dddd [kl.] LT',
|
|
425
|
+
sameElse: 'L',
|
|
426
|
+
},
|
|
427
|
+
relativeTime: {
|
|
428
|
+
future: 'om %s',
|
|
429
|
+
past: '%s siden',
|
|
430
|
+
s: 'noen sekunder',
|
|
431
|
+
ss: '%d sekunder',
|
|
432
|
+
m: 'ett minutt',
|
|
433
|
+
mm: '%d minutter',
|
|
434
|
+
h: 'en time',
|
|
435
|
+
hh: '%d timer',
|
|
436
|
+
d: 'en dag',
|
|
437
|
+
dd: '%d dager',
|
|
438
|
+
w: 'en uke',
|
|
439
|
+
ww: '%d uker',
|
|
440
|
+
M: 'en måned',
|
|
441
|
+
MM: '%d måneder',
|
|
442
|
+
y: 'ett år',
|
|
443
|
+
yy: '%d år',
|
|
444
|
+
},
|
|
445
|
+
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
|
446
|
+
ordinal: '%d.',
|
|
447
|
+
week: {
|
|
448
|
+
dow: 1, // Monday is the first day of the week.
|
|
449
|
+
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
|
450
|
+
},
|
|
451
|
+
});
|
|
452
|
+
|
|
453
|
+
return nb;
|
|
454
|
+
|
|
455
|
+
})));
|
|
456
|
+
});
|
|
457
|
+
|
|
450
458
|
createCommonjsModule(function (module, exports) {
|
|
451
459
|
(function (global, factory) {
|
|
452
460
|
typeof commonjsRequire === 'function' ? factory(moment) :
|
|
@@ -557,36 +565,77 @@ createCommonjsModule(function (module, exports) {
|
|
|
557
565
|
})));
|
|
558
566
|
});
|
|
559
567
|
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
568
|
+
createCommonjsModule(function (module, exports) {
|
|
569
|
+
(function (global, factory) {
|
|
570
|
+
typeof commonjsRequire === 'function' ? factory(moment) :
|
|
571
|
+
factory(global.moment);
|
|
572
|
+
}(commonjsGlobal, (function (moment) {
|
|
573
|
+
//! moment.js locale configuration
|
|
574
|
+
|
|
575
|
+
var sv = moment.defineLocale('sv', {
|
|
576
|
+
months: 'januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december'.split(
|
|
577
|
+
'_'
|
|
578
|
+
),
|
|
579
|
+
monthsShort: 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'),
|
|
580
|
+
weekdays: 'söndag_måndag_tisdag_onsdag_torsdag_fredag_lördag'.split('_'),
|
|
581
|
+
weekdaysShort: 'sön_mån_tis_ons_tor_fre_lör'.split('_'),
|
|
582
|
+
weekdaysMin: 'sö_må_ti_on_to_fr_lö'.split('_'),
|
|
583
|
+
longDateFormat: {
|
|
584
|
+
LT: 'HH:mm',
|
|
585
|
+
LTS: 'HH:mm:ss',
|
|
586
|
+
L: 'YYYY-MM-DD',
|
|
587
|
+
LL: 'D MMMM YYYY',
|
|
588
|
+
LLL: 'D MMMM YYYY [kl.] HH:mm',
|
|
589
|
+
LLLL: 'dddd D MMMM YYYY [kl.] HH:mm',
|
|
590
|
+
lll: 'D MMM YYYY HH:mm',
|
|
591
|
+
llll: 'ddd D MMM YYYY HH:mm',
|
|
592
|
+
},
|
|
593
|
+
calendar: {
|
|
594
|
+
sameDay: '[Idag] LT',
|
|
595
|
+
nextDay: '[Imorgon] LT',
|
|
596
|
+
lastDay: '[Igår] LT',
|
|
597
|
+
nextWeek: '[På] dddd LT',
|
|
598
|
+
lastWeek: '[I] dddd[s] LT',
|
|
599
|
+
sameElse: 'L',
|
|
600
|
+
},
|
|
601
|
+
relativeTime: {
|
|
602
|
+
future: 'om %s',
|
|
603
|
+
past: 'för %s sedan',
|
|
604
|
+
s: 'några sekunder',
|
|
605
|
+
ss: '%d sekunder',
|
|
606
|
+
m: 'en minut',
|
|
607
|
+
mm: '%d minuter',
|
|
608
|
+
h: 'en timme',
|
|
609
|
+
hh: '%d timmar',
|
|
610
|
+
d: 'en dag',
|
|
611
|
+
dd: '%d dagar',
|
|
612
|
+
M: 'en månad',
|
|
613
|
+
MM: '%d månader',
|
|
614
|
+
y: 'ett år',
|
|
615
|
+
yy: '%d år',
|
|
616
|
+
},
|
|
617
|
+
dayOfMonthOrdinalParse: /\d{1,2}(\:e|\:a)/,
|
|
618
|
+
ordinal: function (number) {
|
|
619
|
+
var b = number % 10,
|
|
620
|
+
output =
|
|
621
|
+
~~((number % 100) / 10) === 1
|
|
622
|
+
? ':e'
|
|
623
|
+
: b === 1
|
|
624
|
+
? ':a'
|
|
625
|
+
: b === 2
|
|
626
|
+
? ':a'
|
|
627
|
+
: b === 3
|
|
628
|
+
? ':e'
|
|
629
|
+
: ':e';
|
|
630
|
+
return number + output;
|
|
631
|
+
},
|
|
632
|
+
week: {
|
|
633
|
+
dow: 1, // Monday is the first day of the week.
|
|
634
|
+
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
|
635
|
+
},
|
|
636
|
+
});
|
|
637
|
+
|
|
638
|
+
return sv;
|
|
639
|
+
|
|
640
|
+
})));
|
|
641
|
+
});
|
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
const da = {
|
|
2
|
+
'callout.note': 'Bemærk',
|
|
3
|
+
'callout.important': 'Vigtig',
|
|
4
|
+
'callout.tip': 'Tip',
|
|
5
|
+
'callout.caution': 'Advarsel',
|
|
6
|
+
'callout.warning': 'Advarsel',
|
|
2
7
|
'date-picker.today': 'Idag',
|
|
3
8
|
'date-picker.month.heading': 'Måned',
|
|
4
9
|
'date-picker.quarter.heading': 'Kvartal',
|
|
@@ -8,6 +13,11 @@ const da = {
|
|
|
8
13
|
};
|
|
9
14
|
|
|
10
15
|
const en = {
|
|
16
|
+
'callout.note': 'Note',
|
|
17
|
+
'callout.important': 'Important',
|
|
18
|
+
'callout.tip': 'Tip',
|
|
19
|
+
'callout.caution': 'Caution',
|
|
20
|
+
'callout.warning': 'Warning',
|
|
11
21
|
'date-picker.today': 'Today',
|
|
12
22
|
'date-picker.month.heading': 'Month',
|
|
13
23
|
'date-picker.quarter.heading': 'Quarter',
|
|
@@ -19,6 +29,11 @@ const en = {
|
|
|
19
29
|
};
|
|
20
30
|
|
|
21
31
|
const fi = {
|
|
32
|
+
'callout.note': 'Huomio',
|
|
33
|
+
'callout.important': 'Tärkeää',
|
|
34
|
+
'callout.tip': 'Vinkki',
|
|
35
|
+
'callout.caution': 'Varoitus',
|
|
36
|
+
'callout.warning': 'Varoitus',
|
|
22
37
|
'date-picker.today': 'Tänään',
|
|
23
38
|
'date-picker.month.heading': 'Kuukausi',
|
|
24
39
|
'date-picker.quarter.heading': 'Vuosineljännes',
|
|
@@ -28,6 +43,11 @@ const fi = {
|
|
|
28
43
|
};
|
|
29
44
|
|
|
30
45
|
const nl = {
|
|
46
|
+
'callout.note': 'Opmerking',
|
|
47
|
+
'callout.important': 'Belangrijk',
|
|
48
|
+
'callout.tip': 'Tip',
|
|
49
|
+
'callout.caution': 'Waarschuwing',
|
|
50
|
+
'callout.warning': 'Waarschuwing',
|
|
31
51
|
'date-picker.today': 'Vandaag',
|
|
32
52
|
'date-picker.month.heading': 'Maand',
|
|
33
53
|
'date-picker.quarter.heading': 'Kwartaal',
|
|
@@ -37,6 +57,11 @@ const nl = {
|
|
|
37
57
|
};
|
|
38
58
|
|
|
39
59
|
const no = {
|
|
60
|
+
'callout.note': 'Note',
|
|
61
|
+
'callout.important': 'Viktig',
|
|
62
|
+
'callout.tip': 'Tip',
|
|
63
|
+
'callout.caution': 'Advarsel',
|
|
64
|
+
'callout.warning': 'Advarsel',
|
|
40
65
|
'date-picker.today': 'I dag',
|
|
41
66
|
'date-picker.month.heading': 'Måned',
|
|
42
67
|
'date-picker.quarter.heading': 'Kvartal',
|
|
@@ -46,6 +71,11 @@ const no = {
|
|
|
46
71
|
};
|
|
47
72
|
|
|
48
73
|
const sv = {
|
|
74
|
+
'callout.note': 'Obs',
|
|
75
|
+
'callout.important': 'Viktigt',
|
|
76
|
+
'callout.tip': 'Tips',
|
|
77
|
+
'callout.caution': 'Varning',
|
|
78
|
+
'callout.warning': 'Varning',
|
|
49
79
|
'date-picker.today': 'Idag',
|
|
50
80
|
'date-picker.month.heading': 'Månad',
|
|
51
81
|
'date-picker.quarter.heading': 'Kvartal',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as e,b as l}from"./p-d4e788e1.js";(()=>{const l=import.meta.url,i={};return""!==l&&(i.resourcesUrl=new URL(".",l).href),e(i)})().then((e=>l([["p-
|
|
1
|
+
import{p as e,b as l}from"./p-d4e788e1.js";(()=>{const l=import.meta.url,i={};return""!==l&&(i.resourcesUrl=new URL(".",l).href),e(i)})().then((e=>l([["p-edbd8d62",[[1,"limel-color-picker",{value:[513],label:[513],helperText:[513,"helper-text"],tooltipLabel:[513,"tooltip-label"],required:[516],readonly:[516],isOpen:[32]}]]],["p-d87e2f26",[[1,"limel-dock",{dockItems:[16],dockFooterItems:[16],accessibleLabel:[513,"accessible-label"],expanded:[516],allowResize:[516,"allow-resize"],mobileBreakPoint:[514,"mobile-break-point"],useMobileLayout:[32]}]]],["p-46a76d55",[[1,"limel-split-button",{label:[513],primary:[516],icon:[513],disabled:[516],items:[16]}]]],["p-58e9df30",[[1,"limel-picker",{disabled:[4],readonly:[516],label:[1],searchLabel:[1,"search-label"],helperText:[513,"helper-text"],leadingIcon:[1,"leading-icon"],emptyResultMessage:[1,"empty-result-message"],required:[4],value:[16],searcher:[16],multiple:[4],delimiter:[513],actions:[16],actionPosition:[1,"action-position"],actionScrollBehavior:[1,"action-scroll-behavior"],badgeIcons:[516,"badge-icons"],items:[32],textValue:[32],loading:[32],chips:[32]}]]],["p-b40f37d7",[[1,"limel-date-picker",{disabled:[516],readonly:[516],invalid:[516],label:[513],placeholder:[513],helperText:[513,"helper-text"],required:[516],value:[16],type:[513],format:[513],language:[513],formatter:[16],formattedValue:[32],internalFormat:[32],showPortal:[32]}]]],["p-4a62273c",[[1,"limel-button-group",{value:[16],disabled:[516],selectedButtonId:[32]}]]],["p-eda87f8c",[[1,"limel-info-tile",{value:[520],icon:[1],label:[513],prefix:[513],suffix:[513],disabled:[516],badge:[520],loading:[516],link:[16],progress:[16]}]]],["p-157e0417",[[1,"limel-select",{disabled:[516],readonly:[516],invalid:[516],required:[516],label:[513],helperText:[513,"helper-text"],value:[16],options:[16],multiple:[4],menuOpen:[32]}]]],["p-a88f2922",[[1,"limel-snackbar",{message:[1],timeout:[2],actionText:[1,"action-text"],dismissible:[4],multiline:[4],language:[1],show:[64]}]]],["p-3fda3473",[[1,"limel-tab-panel",{tabs:[1040]}]]],["p-4eeabc1f",[[1,"limel-file",{value:[16],label:[513],required:[516],disabled:[516],readonly:[516],accept:[513],language:[1],isDraggingOverDropZone:[32]}]]],["p-f11e7ce1",[[1,"limel-collapsible-section",{isOpen:[1540,"is-open"],header:[513],actions:[16]}]]],["p-cc3529bb",[[1,"limel-dialog",{heading:[1],fullscreen:[516],open:[1540],closingActions:[16]}]]],["p-35a6ab13",[[1,"limel-progress-flow",{flowItems:[16],disabled:[4],readonly:[4]}]]],["p-4fcd3337",[[1,"limel-shortcut",{icon:[513],label:[513],disabled:[516],badge:[520],link:[16]}]]],["p-7d7d19de",[[1,"limel-table",{data:[16],columns:[16],mode:[1],layout:[1],pageSize:[2,"page-size"],totalRows:[2,"total-rows"],sorting:[16],activeRow:[1040],movableColumns:[4,"movable-columns"],loading:[4],page:[2],emptyMessage:[1,"empty-message"],aggregates:[16],selectable:[4],selection:[16]}]]],["p-bf3d6097",[[1,"limel-banner",{message:[513],icon:[513],isOpen:[32],open:[64],close:[64]}]]],["p-c47cb4c3",[[1,"limel-callout",{heading:[513],icon:[513],type:[513],language:[1]}]]],["p-b80de0ea",[[1,"limel-code-editor",{value:[1],language:[1],readonly:[4],lineNumbers:[4,"line-numbers"],fold:[4],lint:[4],colorScheme:[1,"color-scheme"],random:[32]}]]],["p-6c38b505",[[1,"limel-config",{config:[16]}]]],["p-5338663b",[[1,"limel-flex-container",{direction:[513],justify:[513],align:[513],reverse:[516]}]]],["p-dcf88b3e",[[1,"limel-form",{schema:[16],value:[16],disabled:[4],propsFactory:[16],transformErrors:[16],errors:[16]}]]],["p-82cd7bb6",[[1,"limel-grid"]]],["p-8c4e3b46",[[1,"limel-slider",{disabled:[516],readonly:[516],factor:[514],label:[513],helperText:[513,"helper-text"],unit:[513],value:[514],valuemax:[514],valuemin:[514],step:[514],percentageClass:[32]}]]],["p-c6e913a4",[[1,"limel-switch",{label:[513],disabled:[516],readonly:[516],value:[516],fieldId:[32]}]]],["p-2f9918a3",[[0,"limel-dock-button",{item:[16],expanded:[516],useMobileLayout:[516,"use-mobile-layout"],isOpen:[32]}]]],["p-f979c0f2",[[1,"limel-color-picker-palette",{value:[513],label:[513],helperText:[513,"helper-text"],required:[516]}]]],["p-73613abb",[[1,"limel-menu-list",{items:[16],badgeIcons:[4,"badge-icons"],iconSize:[1,"icon-size"],type:[1],maxLinesSecondaryText:[2,"max-lines-secondary-text"]}]]],["p-d16b27b9",[[1,"limel-menu",{items:[16],disabled:[516],openDirection:[513,"open-direction"],open:[1540],badgeIcons:[516,"badge-icons"],gridLayout:[516,"grid-layout"]}]]],["p-123f5fbb",[[1,"limel-icon-button",{icon:[513],elevated:[516],label:[513],disabled:[516]}]]],["p-55c8cb64",[[1,"limel-tab-bar",{tabs:[1040],canScrollLeft:[32],canScrollRight:[32]},[[9,"resize","handleWindowResize"]]]]],["p-95cefb5f",[[1,"limel-header",{icon:[1],heading:[1],subheading:[1],supportingText:[1,"supporting-text"]}]]],["p-cfaa685f",[[0,"limel-progress-flow-item",{item:[16],disabled:[4],readonly:[4]}]]],["p-eed2a202",[[1,"limel-checkbox",{disabled:[516],readonly:[516],label:[513],helperText:[513,"helper-text"],checked:[516],indeterminate:[516],required:[516],modified:[32]}]]],["p-e69231c2",[[1,"limel-flatpickr-adapter",{value:[16],type:[1],format:[1],isOpen:[4,"is-open"],inputElement:[16],language:[1],formatter:[16]}]]],["p-10e259de",[[1,"limel-spinner",{size:[513],limeBranded:[4,"lime-branded"]}]]],["p-9336fd7f",[[1,"limel-button",{label:[513],primary:[516],outlined:[516],icon:[513],disabled:[516],loading:[516],loadingFailed:[516,"loading-failed"],justLoaded:[32]}]]],["p-2fd478df",[[1,"limel-badge",{label:[520]}]]],["p-b1ae3d1f",[[1,"limel-chip-set",{value:[16],type:[513],label:[513],helperText:[513,"helper-text"],disabled:[516],readonly:[516],inputType:[513,"input-type"],maxItems:[514,"max-items"],required:[516],searchLabel:[513,"search-label"],emptyInputOnBlur:[516,"empty-input-on-blur"],clearAllButton:[4,"clear-all-button"],leadingIcon:[513,"leading-icon"],delimiter:[513],language:[1],editMode:[32],textValue:[32],blurred:[32],inputChipIndexSelected:[32],getEditMode:[64],setFocus:[64],emptyInput:[64]}]]],["p-05d88196",[[1,"limel-circular-progress",{value:[2],maxValue:[2,"max-value"],prefix:[513],suffix:[1],displayPercentageColors:[4,"display-percentage-colors"],size:[513]}],[1,"limel-linear-progress",{value:[2],indeterminate:[4]}]]],["p-3be2dfc7",[[1,"limel-portal",{openDirection:[1,"open-direction"],position:[1],containerId:[1,"container-id"],containerStyle:[16],parent:[16],inheritParentWidth:[4,"inherit-parent-width"],visible:[4]}]]],["p-d0084a70",[[1,"limel-list",{items:[16],badgeIcons:[4,"badge-icons"],iconSize:[1,"icon-size"],type:[1],maxLinesSecondaryText:[2,"max-lines-secondary-text"]}],[1,"limel-menu-surface",{open:[4],allowClicksElement:[16]}]]],["p-75d01713",[[1,"limel-icon",{size:[513],name:[513],badge:[516]}]]],["p-da536426",[[1,"limel-input-field",{disabled:[516],readonly:[516],invalid:[516],label:[513],placeholder:[513],helperText:[513,"helper-text"],prefix:[513],suffix:[513],required:[516],value:[513],trailingIcon:[513,"trailing-icon"],leadingIcon:[513,"leading-icon"],pattern:[513],type:[513],formatNumber:[516,"format-number"],step:[520],max:[514],min:[514],maxlength:[514],minlength:[514],completions:[16],showLink:[516,"show-link"],isFocused:[32],isModified:[32],showCompletions:[32]}]]],["p-50dbd665",[[1,"limel-popover",{open:[4],openDirection:[513,"open-direction"]}],[1,"limel-tooltip",{elementId:[513,"element-id"],label:[513],helperLabel:[513,"helper-label"],maxlength:[514],open:[32]}],[1,"limel-popover-surface",{contentCollection:[16]}],[1,"limel-tooltip-content",{label:[513],helperLabel:[513,"helper-label"],maxlength:[514]}]]]],e)));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{r,h as c}from"./p-d4e788e1.js";const o=class{constructor(c){r(this,c),this.size="mini",this.limeBranded=!0}render(){return[c("svg",{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},this.renderSpinner())]}renderSpinner(){return this.limeBranded?c("g",null,c("g",{"clip-path":"url(#mask)"},c("circle",{class:"outline thick",cx:"12",cy:"12",r:"12"}),c("g",{class:"spinner"},c("circle",{class:"color thick",cx:"12",cy:"12",r:"12"}),c("circle",{class:"color thick",cx:"12",cy:"12",r:"12"}),c("circle",{class:"color thick",cx:"12",cy:"12",r:"12"}),c("circle",{class:"color thick",cx:"12",cy:"12",r:"12"}),c("circle",{class:"color thick",cx:"12",cy:"12",r:"12"}),c("circle",{class:"color thick",cx:"12",cy:"12",r:"12"}),c("circle",{class:"color thick",cx:"12",cy:"12",r:"12"}),c("circle",{class:"color thick",cx:"12",cy:"12",r:"12"}),c("circle",{class:"color thick",cx:"12",cy:"12",r:"12"}),c("circle",{class:"color thick",cx:"12",cy:"12",r:"12"}),c("circle",{class:"color thick",cx:"12",cy:"12",r:"12"}))),c("clipPath",{id:"mask"},c("path",{d:"M2.166 11.248C2.166 5.04 7.058 0 13.083 0 19.108 0 24 5.04 24 11.248c0 3.229-1.307 6.548-4.533 9.306-3.908 3.343-9.15 3.8-17.254 3.249-2.405-.164-2.753-.588-1.51-1.533C4.61 19.3 2.165 17.025 2.165 11.248zm3.124 9.834c5.563.227 9.416-.246 12.397-2.76 2.432-2.05 3.482-4.56 3.51-7.074.05-4.613-3.636-8.36-8.114-8.36-4.478 0-8.114 3.746-8.114 8.36 0 2.793.607 4.737.726 6.345.092 1.252.03 2.388-.405 3.49z"}))):c("g",null,c("circle",{class:"outline",cx:"12",cy:"12",r:"10"}),c("g",{class:"spinner"},c("circle",{class:"color",cx:"12",cy:"12",r:"10"}),c("circle",{class:"color",cx:"12",cy:"12",r:"10"}),c("circle",{class:"color",cx:"12",cy:"12",r:"10"}),c("circle",{class:"color",cx:"12",cy:"12",r:"10"}),c("circle",{class:"color",cx:"12",cy:"12",r:"10"}),c("circle",{class:"color",cx:"12",cy:"12",r:"10"}),c("circle",{class:"color",cx:"12",cy:"12",r:"10"}),c("circle",{class:"color",cx:"12",cy:"12",r:"10"}),c("circle",{class:"color",cx:"12",cy:"12",r:"10"}),c("circle",{class:"color",cx:"12",cy:"12",r:"10"}),c("circle",{class:"color",cx:"12",cy:"12",r:"10"})))}};o.style=":host{--mdc-theme-primary:var(\n --lime-primary-color,\n rgb(var(--color-teal-default))\n );--mdc-theme-secondary:var(\n --lime-secondary-color,\n rgb(var(--contrast-1100))\n );--mdc-theme-on-primary:var(\n --lime-on-primary-color,\n rgb(var(--contrast-100))\n );--mdc-theme-on-secondary:var(\n --lime-on-secondary-color,\n rgb(var(--contrast-100))\n );--mdc-theme-text-disabled-on-background:var(\n --lime-text-disabled-on-background-color,\n rgba(var(--contrast-1700), 0.38)\n );--mdc-theme-text-primary-on-background:var(\n --lime-text-primary-on-background-color,\n rgba(var(--contrast-1700), 0.87)\n );--mdc-theme-text-secondary-on-background:var(\n --lime-text-secondary-on-background-color,\n rgba(var(--contrast-1700), 0.54)\n );--mdc-theme-error:var(\n --lime-error-background-color,\n rgb(var(--color-red-dark))\n );--lime-error-text-color:rgb(var(--color-red-darker));--mdc-theme-surface:var(\n --lime-surface-background-color,\n rgb(var(--contrast-100))\n );--mdc-theme-on-surface:var(\n --lime-on-surface-color,\n rgb(var(--contrast-1500))\n )}@keyframes spin{50%{transform:rotate(180deg)}100%{transform:rotate(720deg)}}@keyframes fade-in-the-spinner{0%{transform:scale(0.7);opacity:0}100%{transform:scale(1);opacity:1}}@keyframes animate-colored-circles{5%{stroke-dashoffset:0}10%,100%{stroke-dashoffset:63}}:host([hidden]){display:none}:host{box-sizing:border-box;display:flex;align-items:center;justify-content:center;height:1.5rem;width:1.5rem;transform:translate3d(0, 0, 0);animation:fade-in-the-spinner 0.5s ease forwards}:host([size=x-small]){height:2rem;width:2rem}:host([size=small]){height:2.125rem;width:2.125rem}:host([size=medium]){height:2.75rem;width:2.75rem}:host([size=large]){height:4rem;width:4rem}.spinner{animation:spin 1s linear infinite;transform-origin:center}.color{animation:animate-colored-circles 10s linear infinite;fill:none;stroke-dasharray:63;stroke-dashoffset:63;stroke-linecap:round;stroke-width:4}.color.thick{stroke-width:10}.color:nth-child(1){stroke:var(--spinner-color-1, rgb(var(--lime-brand-color-deep-red)))}.color:nth-child(2){stroke:var(--spinner-color-2, rgb(var(--lime-brand-color-sellable-orange)));animation-delay:1s}.color:nth-child(3){stroke:var(--spinner-color-3, rgb(var(--lime-brand-color-simple-blue)));animation-delay:2s}.color:nth-child(4){stroke:var(--spinner-color-4, rgb(var(--lime-brand-color-orange)));animation-delay:3s}.color:nth-child(5){stroke:var(--spinner-color-5, rgb(var(--lime-brand-color-lime-green)));animation-delay:4s}.color:nth-child(6){stroke:var(--spinner-color-6, rgb(var(--lime-brand-color-yellow)));animation-delay:5s}.color:nth-child(7){stroke:var(--spinner-color-7, rgb(var(--lime-brand-color-flexible-turquoise)));animation-delay:6s}.color:nth-child(8){stroke:var(--spinner-color-8, rgb(var(--lime-brand-color-loving-magenta)));animation-delay:7s}.color:nth-child(9){stroke:var(--spinner-color-9, rgb(var(--lime-brand-color-dark-blue)));animation-delay:8s}.color:nth-child(10){stroke:var(--spinner-color-9, rgb(var(--lime-brand-color-light-grey)));animation-delay:9s}.outline{stroke:rgba(var(--lime-brand-color-light-grey), 0.3);fill:none;stroke-linecap:round;stroke-width:4}.outline.thick{stroke-width:10}";export{o as limel_spinner}
|
|
1
|
+
import{r,h as c}from"./p-d4e788e1.js";const o=class{constructor(c){r(this,c),this.size="mini",this.limeBranded=!0}render(){return[c("svg",{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},this.renderSpinner())]}renderSpinner(){return this.limeBranded?c("g",null,c("g",{"clip-path":"url(#mask)"},c("circle",{class:"outline thick",cx:"12",cy:"12",r:"12"}),c("g",{class:"spinner"},c("circle",{class:"color thick",cx:"12",cy:"12",r:"12"}),c("circle",{class:"color thick",cx:"12",cy:"12",r:"12"}),c("circle",{class:"color thick",cx:"12",cy:"12",r:"12"}),c("circle",{class:"color thick",cx:"12",cy:"12",r:"12"}),c("circle",{class:"color thick",cx:"12",cy:"12",r:"12"}),c("circle",{class:"color thick",cx:"12",cy:"12",r:"12"}),c("circle",{class:"color thick",cx:"12",cy:"12",r:"12"}),c("circle",{class:"color thick",cx:"12",cy:"12",r:"12"}),c("circle",{class:"color thick",cx:"12",cy:"12",r:"12"}),c("circle",{class:"color thick",cx:"12",cy:"12",r:"12"}),c("circle",{class:"color thick",cx:"12",cy:"12",r:"12"}))),c("clipPath",{id:"mask"},c("path",{d:"M2.166 11.248C2.166 5.04 7.058 0 13.083 0 19.108 0 24 5.04 24 11.248c0 3.229-1.307 6.548-4.533 9.306-3.908 3.343-9.15 3.8-17.254 3.249-2.405-.164-2.753-.588-1.51-1.533C4.61 19.3 2.165 17.025 2.165 11.248zm3.124 9.834c5.563.227 9.416-.246 12.397-2.76 2.432-2.05 3.482-4.56 3.51-7.074.05-4.613-3.636-8.36-8.114-8.36-4.478 0-8.114 3.746-8.114 8.36 0 2.793.607 4.737.726 6.345.092 1.252.03 2.388-.405 3.49z"}))):c("g",null,c("circle",{class:"outline",cx:"12",cy:"12",r:"10"}),c("g",{class:"spinner"},c("circle",{class:"color",cx:"12",cy:"12",r:"10"}),c("circle",{class:"color",cx:"12",cy:"12",r:"10"}),c("circle",{class:"color",cx:"12",cy:"12",r:"10"}),c("circle",{class:"color",cx:"12",cy:"12",r:"10"}),c("circle",{class:"color",cx:"12",cy:"12",r:"10"}),c("circle",{class:"color",cx:"12",cy:"12",r:"10"}),c("circle",{class:"color",cx:"12",cy:"12",r:"10"}),c("circle",{class:"color",cx:"12",cy:"12",r:"10"}),c("circle",{class:"color",cx:"12",cy:"12",r:"10"}),c("circle",{class:"color",cx:"12",cy:"12",r:"10"}),c("circle",{class:"color",cx:"12",cy:"12",r:"10"})))}};o.style=":host{--mdc-theme-primary:var(\n --lime-primary-color,\n rgb(var(--color-teal-default))\n );--mdc-theme-secondary:var(\n --lime-secondary-color,\n rgb(var(--contrast-1100))\n );--mdc-theme-on-primary:var(\n --lime-on-primary-color,\n rgb(var(--contrast-100))\n );--mdc-theme-on-secondary:var(\n --lime-on-secondary-color,\n rgb(var(--contrast-100))\n );--mdc-theme-text-disabled-on-background:var(\n --lime-text-disabled-on-background-color,\n rgba(var(--contrast-1700), 0.38)\n );--mdc-theme-text-primary-on-background:var(\n --lime-text-primary-on-background-color,\n rgba(var(--contrast-1700), 0.87)\n );--mdc-theme-text-secondary-on-background:var(\n --lime-text-secondary-on-background-color,\n rgba(var(--contrast-1700), 0.54)\n );--mdc-theme-error:var(\n --lime-error-background-color,\n rgb(var(--color-red-dark))\n );--lime-error-text-color:rgb(var(--color-red-darker));--mdc-theme-surface:var(\n --lime-surface-background-color,\n rgb(var(--contrast-100))\n );--mdc-theme-on-surface:var(\n --lime-on-surface-color,\n rgb(var(--contrast-1500))\n )}:host(limel-spinner){display:block}@keyframes spin{50%{transform:rotate(180deg)}100%{transform:rotate(720deg)}}@keyframes fade-in-the-spinner{0%{transform:scale(0.7);opacity:0}100%{transform:scale(1);opacity:1}}@keyframes animate-colored-circles{5%{stroke-dashoffset:0}10%,100%{stroke-dashoffset:63}}:host([hidden]){display:none}:host{box-sizing:border-box;display:flex;align-items:center;justify-content:center;height:1.5rem;width:1.5rem;transform:translate3d(0, 0, 0);animation:fade-in-the-spinner 0.5s ease forwards}:host([size=x-small]){height:2rem;width:2rem}:host([size=small]){height:2.125rem;width:2.125rem}:host([size=medium]){height:2.75rem;width:2.75rem}:host([size=large]){height:4rem;width:4rem}.spinner{animation:spin 1s linear infinite;transform-origin:center}.color{animation:animate-colored-circles 10s linear infinite;fill:none;stroke-dasharray:63;stroke-dashoffset:63;stroke-linecap:round;stroke-width:4}.color.thick{stroke-width:10}.color:nth-child(1){stroke:var(--spinner-color-1, rgb(var(--lime-brand-color-deep-red)))}.color:nth-child(2){stroke:var(--spinner-color-2, rgb(var(--lime-brand-color-sellable-orange)));animation-delay:1s}.color:nth-child(3){stroke:var(--spinner-color-3, rgb(var(--lime-brand-color-simple-blue)));animation-delay:2s}.color:nth-child(4){stroke:var(--spinner-color-4, rgb(var(--lime-brand-color-orange)));animation-delay:3s}.color:nth-child(5){stroke:var(--spinner-color-5, rgb(var(--lime-brand-color-lime-green)));animation-delay:4s}.color:nth-child(6){stroke:var(--spinner-color-6, rgb(var(--lime-brand-color-yellow)));animation-delay:5s}.color:nth-child(7){stroke:var(--spinner-color-7, rgb(var(--lime-brand-color-flexible-turquoise)));animation-delay:6s}.color:nth-child(8){stroke:var(--spinner-color-8, rgb(var(--lime-brand-color-loving-magenta)));animation-delay:7s}.color:nth-child(9){stroke:var(--spinner-color-9, rgb(var(--lime-brand-color-dark-blue)));animation-delay:8s}.color:nth-child(10){stroke:var(--spinner-color-9, rgb(var(--lime-brand-color-light-grey)));animation-delay:9s}.outline{stroke:rgba(var(--lime-brand-color-light-grey), 0.3);fill:none;stroke-linecap:round;stroke-width:4}.outline.thick{stroke-width:10}";export{o as limel_spinner}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{r as
|
|
1
|
+
import{r as o,h as t,g as i}from"./p-d4e788e1.js";const n=class{constructor(t){o(this,t),this.icon=void 0,this.elevated=!1,this.label=void 0,this.disabled=!1}connectedCallback(){this.initialize()}componentDidLoad(){this.initialize()}initialize(){this.host.shadowRoot.querySelector(".mdc-icon-button")}render(){const o={};return this.host.hasAttribute("tabindex")&&(o.tabindex=this.host.getAttribute("tabindex")),t("button",Object.assign({class:"mdc-icon-button",disabled:this.disabled,"aria-label":this.label,title:this.label},o),t("limel-icon",{name:this.icon,badge:!0}))}get host(){return i(this)}};n.style='.mdc-icon-button{font-size:24px;width:48px;height:48px;padding:12px}.mdc-icon-button.mdc-icon-button--reduced-size{width:40px;height:40px;padding:8px}.mdc-icon-button.mdc-icon-button--reduced-size.mdc-icon-button--touch{margin-top:4px;margin-bottom:4px;margin-right:4px;margin-left:4px}.mdc-icon-button .mdc-icon-button__touch{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%)}.mdc-icon-button:disabled{color:rgba(0, 0, 0, 0.38);color:var(--mdc-theme-text-disabled-on-light, rgba(0, 0, 0, 0.38))}.mdc-icon-button svg,.mdc-icon-button img{width:24px;height:24px}.mdc-icon-button{display:inline-block;position:relative;box-sizing:border-box;border:none;outline:none;background-color:transparent;fill:currentColor;color:inherit;text-decoration:none;cursor:pointer;user-select:none;overflow:visible}.mdc-icon-button .mdc-icon-button__touch{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%)}.mdc-icon-button:disabled{cursor:default;pointer-events:none}.mdc-icon-button--display-flex{align-items:center;display:inline-flex;justify-content:center}.mdc-icon-button__icon{display:inline-block}.mdc-icon-button__icon.mdc-icon-button__icon--on{display:none}.mdc-icon-button--touch{margin-top:0px;margin-bottom:0px}.mdc-icon-button--on .mdc-icon-button__icon{display:none}.mdc-icon-button--on .mdc-icon-button__icon.mdc-icon-button__icon--on{display:inline-block}@keyframes mdc-ripple-fg-radius-in{from{animation-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transform:translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1)}to{transform:translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1))}}@keyframes mdc-ripple-fg-opacity-in{from{animation-timing-function:linear;opacity:0}to{opacity:var(--mdc-ripple-fg-opacity, 0)}}@keyframes mdc-ripple-fg-opacity-out{from{animation-timing-function:linear;opacity:var(--mdc-ripple-fg-opacity, 0)}to{opacity:0}}.mdc-icon-button{--mdc-ripple-fg-size:0;--mdc-ripple-left:0;--mdc-ripple-top:0;--mdc-ripple-fg-scale:1;--mdc-ripple-fg-translate-end:0;--mdc-ripple-fg-translate-start:0;-webkit-tap-highlight-color:rgba(0, 0, 0, 0);will-change:transform, opacity}.mdc-icon-button .mdc-icon-button__ripple::before,.mdc-icon-button .mdc-icon-button__ripple::after{position:absolute;border-radius:50%;opacity:0;pointer-events:none;content:""}.mdc-icon-button .mdc-icon-button__ripple::before{transition:opacity 15ms linear, background-color 15ms linear;z-index:1;z-index:var(--mdc-ripple-z-index, 1)}.mdc-icon-button .mdc-icon-button__ripple::after{z-index:0;z-index:var(--mdc-ripple-z-index, 0)}.mdc-icon-button.mdc-ripple-upgraded .mdc-icon-button__ripple::before{transform:scale(var(--mdc-ripple-fg-scale, 1))}.mdc-icon-button.mdc-ripple-upgraded .mdc-icon-button__ripple::after{top:0;left:0;transform:scale(0);transform-origin:center center}.mdc-icon-button.mdc-ripple-upgraded--unbounded .mdc-icon-button__ripple::after{top:var(--mdc-ripple-top, 0);left:var(--mdc-ripple-left, 0)}.mdc-icon-button.mdc-ripple-upgraded--foreground-activation .mdc-icon-button__ripple::after{animation:mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards}.mdc-icon-button.mdc-ripple-upgraded--foreground-deactivation .mdc-icon-button__ripple::after{animation:mdc-ripple-fg-opacity-out 150ms;transform:translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1))}.mdc-icon-button .mdc-icon-button__ripple::before,.mdc-icon-button .mdc-icon-button__ripple::after{top:calc(50% - 50%);left:calc(50% - 50%);width:100%;height:100%}.mdc-icon-button.mdc-ripple-upgraded .mdc-icon-button__ripple::before,.mdc-icon-button.mdc-ripple-upgraded .mdc-icon-button__ripple::after{top:var(--mdc-ripple-top, calc(50% - 50%));left:var(--mdc-ripple-left, calc(50% - 50%));width:var(--mdc-ripple-fg-size, 100%);height:var(--mdc-ripple-fg-size, 100%)}.mdc-icon-button.mdc-ripple-upgraded .mdc-icon-button__ripple::after{width:var(--mdc-ripple-fg-size, 100%);height:var(--mdc-ripple-fg-size, 100%)}.mdc-icon-button .mdc-icon-button__ripple::before,.mdc-icon-button .mdc-icon-button__ripple::after{background-color:#000;background-color:var(--mdc-ripple-color, #000)}.mdc-icon-button:hover .mdc-icon-button__ripple::before,.mdc-icon-button.mdc-ripple-surface--hover .mdc-icon-button__ripple::before{opacity:0.04;opacity:var(--mdc-ripple-hover-opacity, 0.04)}.mdc-icon-button.mdc-ripple-upgraded--background-focused .mdc-icon-button__ripple::before,.mdc-icon-button:not(.mdc-ripple-upgraded):focus .mdc-icon-button__ripple::before{transition-duration:75ms;opacity:0.12;opacity:var(--mdc-ripple-focus-opacity, 0.12)}.mdc-icon-button:not(.mdc-ripple-upgraded) .mdc-icon-button__ripple::after{transition:opacity 150ms linear}.mdc-icon-button:not(.mdc-ripple-upgraded):active .mdc-icon-button__ripple::after{transition-duration:75ms;opacity:0.12;opacity:var(--mdc-ripple-press-opacity, 0.12)}.mdc-icon-button.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-ripple-press-opacity, 0.12)}.mdc-icon-button .mdc-icon-button__ripple{pointer-events:none;z-index:1}:host([hidden]){display:none}:host([disabled]){pointer-events:none}.mdc-icon-button{transition:color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease-out;cursor:pointer;color:var(--mdc-theme-on-surface);background-color:var(--icon-background-color, transparent);display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box;height:2.25rem;width:2.25rem;padding:0.125rem;border-radius:50%}.mdc-icon-button:hover{color:var(--mdc-theme-on-surface);background-color:var(--lime-elevated-surface-background-color);box-shadow:var(--button-shadow-hovered)}.mdc-icon-button:active{box-shadow:var(--button-shadow-pressed);transform:translate3d(0, 0.08rem, 0)}:host([elevated]) .mdc-icon-button:not(:hover):not(:active):not(:focus-visible){box-shadow:var(--button-shadow-normal)}.mdc-icon-button:disabled{color:var(--mdc-theme-text-disabled-on-background)}.mdc-icon-button:focus-visible{box-shadow:var(--shadow-depth-8-focused);border-radius:50%}limel-icon{width:1.25rem;height:1.25rem}';export{n as limel_icon_button}
|