@fremtind/jokul 0.25.3 → 0.26.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/README.md +9 -1
- package/package.json +383 -3
- package/styles/components/button/button.css +2 -2
- package/styles/components/button/button.min.css +1 -1
- package/styles/components/checkbox/checkbox.css +4 -4
- package/styles/components/checkbox/checkbox.min.css +1 -1
- package/styles/components/feedback/feedback.css +2 -2
- package/styles/components/feedback/feedback.min.css +1 -1
- package/styles/components/input-group/input-group.css +2 -2
- package/styles/components/input-group/input-group.min.css +1 -1
- package/styles/components/loader/loader.css +6 -6
- package/styles/components/loader/loader.min.css +1 -1
- package/styles/components/loader/skeleton-loader.css +5 -5
- package/styles/components/loader/skeleton-loader.min.css +1 -1
- package/styles/components/message/message.css +2 -2
- package/styles/components/message/message.min.css +1 -1
- package/styles/components/progress-bar/progress-bar.css +2 -2
- package/styles/components/progress-bar/progress-bar.min.css +1 -1
- package/styles/components/radio-button/radio-button.css +2 -2
- package/styles/components/radio-button/radio-button.min.css +1 -1
- package/styles/components/system-message/system-message.css +2 -2
- package/styles/components/system-message/system-message.min.css +1 -1
- package/styles/components/toast/toast.css +4 -4
- package/styles/components/toast/toast.min.css +1 -1
- package/styles/styles.css +33 -33
- package/styles/styles.min.css +1 -1
package/README.md
CHANGED
|
@@ -10,12 +10,20 @@ Alle komponentene våre installeres fra denne pakka, enten fra roten
|
|
|
10
10
|
import { CalendarIcon, List, Link, Message, TextInput } from "@fremtind/jokul";
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
eller
|
|
13
|
+
eller fra en felles komponent-mappe
|
|
14
14
|
|
|
15
15
|
```jsx
|
|
16
16
|
import { CalendarIcon, List, Link, Message, TextInput } from "@fremtind/jokul/components";
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
+
eller fra en fullt kvalifisert mappe
|
|
20
|
+
|
|
21
|
+
```jsx
|
|
22
|
+
import { Feedback } from "@fremtind/jokul/components/feedback";
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Det siste vil være mest effektivt når node skal finne fram til riktig fil og vil derfor gi raskere kjøretid på bygg og tester.
|
|
26
|
+
|
|
19
27
|
For en full liste over komponenter kan du kikke i [components-mappa](src/components/)
|
|
20
28
|
|
|
21
29
|
## Stilark
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fremtind/jokul",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.26.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
},
|
|
42
42
|
"./core/tokens.less": "./src/core/tokens.less",
|
|
43
43
|
"./core/jkl": "./src/core/jkl/_index.scss",
|
|
44
|
+
"./styles/*": "./styles/*",
|
|
44
45
|
"./hooks": {
|
|
45
46
|
"import": {
|
|
46
47
|
"default": "./build/es/hooks/index.js",
|
|
@@ -71,7 +72,386 @@
|
|
|
71
72
|
"types": "./build/cjs/components/index.d.cts"
|
|
72
73
|
}
|
|
73
74
|
},
|
|
74
|
-
"./
|
|
75
|
+
"./components/accordion": {
|
|
76
|
+
"import": {
|
|
77
|
+
"default": "./build/es/components/accordion/index.js",
|
|
78
|
+
"types": "./build/es/components/accordion/index.d.ts"
|
|
79
|
+
},
|
|
80
|
+
"require": {
|
|
81
|
+
"default": "./build/cjs/components/accordion/index.cjs",
|
|
82
|
+
"types": "./build/cjs/components/accordion/index.d.cts"
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
"./components/breadcrumb": {
|
|
86
|
+
"import": {
|
|
87
|
+
"default": "./build/es/components/breadcrumb/index.js",
|
|
88
|
+
"types": "./build/es/components/breadcrumb/index.d.ts"
|
|
89
|
+
},
|
|
90
|
+
"require": {
|
|
91
|
+
"default": "./build/cjs/components/breadcrumb/index.cjs",
|
|
92
|
+
"types": "./build/cjs/components/breadcrumb/index.d.cts"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"./components/button": {
|
|
96
|
+
"import": {
|
|
97
|
+
"default": "./build/es/components/button/index.js",
|
|
98
|
+
"types": "./build/es/components/button/index.d.ts"
|
|
99
|
+
},
|
|
100
|
+
"require": {
|
|
101
|
+
"default": "./build/cjs/components/button/index.cjs",
|
|
102
|
+
"types": "./build/cjs/components/button/index.d.cts"
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"./components/card": {
|
|
106
|
+
"import": {
|
|
107
|
+
"default": "./build/es/components/card/index.js",
|
|
108
|
+
"types": "./build/es/components/card/index.d.ts"
|
|
109
|
+
},
|
|
110
|
+
"require": {
|
|
111
|
+
"default": "./build/cjs/components/card/index.cjs",
|
|
112
|
+
"types": "./build/cjs/components/card/index.d.cts"
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
"./components/checkbox": {
|
|
116
|
+
"import": {
|
|
117
|
+
"default": "./build/es/components/checkbox/index.js",
|
|
118
|
+
"types": "./build/es/components/checkbox/index.d.ts"
|
|
119
|
+
},
|
|
120
|
+
"require": {
|
|
121
|
+
"default": "./build/cjs/components/checkbox/index.cjs",
|
|
122
|
+
"types": "./build/cjs/components/checkbox/index.d.cts"
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
"./components/combobox": {
|
|
126
|
+
"import": {
|
|
127
|
+
"default": "./build/es/components/combobox/index.js",
|
|
128
|
+
"types": "./build/es/components/combobox/index.d.ts"
|
|
129
|
+
},
|
|
130
|
+
"require": {
|
|
131
|
+
"default": "./build/cjs/components/combobox/index.cjs",
|
|
132
|
+
"types": "./build/cjs/components/combobox/index.d.cts"
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
"./components/cookie-consent": {
|
|
136
|
+
"import": {
|
|
137
|
+
"default": "./build/es/components/cookie-consent/index.js",
|
|
138
|
+
"types": "./build/es/components/cookie-consent/index.d.ts"
|
|
139
|
+
},
|
|
140
|
+
"require": {
|
|
141
|
+
"default": "./build/cjs/components/cookie-consent/index.cjs",
|
|
142
|
+
"types": "./build/cjs/components/cookie-consent/index.d.cts"
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
"./components/datepicker": {
|
|
146
|
+
"import": {
|
|
147
|
+
"default": "./build/es/components/datepicker/index.js",
|
|
148
|
+
"types": "./build/es/components/datepicker/index.d.ts"
|
|
149
|
+
},
|
|
150
|
+
"require": {
|
|
151
|
+
"default": "./build/cjs/components/datepicker/index.cjs",
|
|
152
|
+
"types": "./build/cjs/components/datepicker/index.d.cts"
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
"./components/description-list": {
|
|
156
|
+
"import": {
|
|
157
|
+
"default": "./build/es/components/description-list/index.js",
|
|
158
|
+
"types": "./build/es/components/description-list/index.d.ts"
|
|
159
|
+
},
|
|
160
|
+
"require": {
|
|
161
|
+
"default": "./build/cjs/components/description-list/index.cjs",
|
|
162
|
+
"types": "./build/cjs/components/description-list/index.d.cts"
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"./components/expander": {
|
|
166
|
+
"import": {
|
|
167
|
+
"default": "./build/es/components/expander/index.js",
|
|
168
|
+
"types": "./build/es/components/expander/index.d.ts"
|
|
169
|
+
},
|
|
170
|
+
"require": {
|
|
171
|
+
"default": "./build/cjs/components/expander/index.cjs",
|
|
172
|
+
"types": "./build/cjs/components/expander/index.d.cts"
|
|
173
|
+
}
|
|
174
|
+
},
|
|
175
|
+
"./components/feedback": {
|
|
176
|
+
"import": {
|
|
177
|
+
"default": "./build/es/components/feedback/index.js",
|
|
178
|
+
"types": "./build/es/components/feedback/index.d.ts"
|
|
179
|
+
},
|
|
180
|
+
"require": {
|
|
181
|
+
"default": "./build/cjs/components/feedback/index.cjs",
|
|
182
|
+
"types": "./build/cjs/components/feedback/index.d.cts"
|
|
183
|
+
}
|
|
184
|
+
},
|
|
185
|
+
"./components/flex": {
|
|
186
|
+
"import": {
|
|
187
|
+
"default": "./build/es/components/flex/index.js",
|
|
188
|
+
"types": "./build/es/components/flex/index.d.ts"
|
|
189
|
+
},
|
|
190
|
+
"require": {
|
|
191
|
+
"default": "./build/cjs/components/flex/index.cjs",
|
|
192
|
+
"types": "./build/cjs/components/flex/index.d.cts"
|
|
193
|
+
}
|
|
194
|
+
},
|
|
195
|
+
"./components/icon": {
|
|
196
|
+
"import": {
|
|
197
|
+
"default": "./build/es/components/icon/index.js",
|
|
198
|
+
"types": "./build/es/components/icon/index.d.ts"
|
|
199
|
+
},
|
|
200
|
+
"require": {
|
|
201
|
+
"default": "./build/cjs/components/icon/index.cjs",
|
|
202
|
+
"types": "./build/cjs/components/icon/index.d.cts"
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
"./components/icon-button": {
|
|
206
|
+
"import": {
|
|
207
|
+
"default": "./build/es/components/icon-button/index.js",
|
|
208
|
+
"types": "./build/es/components/icon-button/index.d.ts"
|
|
209
|
+
},
|
|
210
|
+
"require": {
|
|
211
|
+
"default": "./build/cjs/components/icon-button/index.cjs",
|
|
212
|
+
"types": "./build/cjs/components/icon-button/index.d.cts"
|
|
213
|
+
}
|
|
214
|
+
},
|
|
215
|
+
"./components/image": {
|
|
216
|
+
"import": {
|
|
217
|
+
"default": "./build/es/components/image/index.js",
|
|
218
|
+
"types": "./build/es/components/image/index.d.ts"
|
|
219
|
+
},
|
|
220
|
+
"require": {
|
|
221
|
+
"default": "./build/cjs/components/image/index.cjs",
|
|
222
|
+
"types": "./build/cjs/components/image/index.d.cts"
|
|
223
|
+
}
|
|
224
|
+
},
|
|
225
|
+
"./components/input-group": {
|
|
226
|
+
"import": {
|
|
227
|
+
"default": "./build/es/components/input-group/index.js",
|
|
228
|
+
"types": "./build/es/components/input-group/index.d.ts"
|
|
229
|
+
},
|
|
230
|
+
"require": {
|
|
231
|
+
"default": "./build/cjs/components/input-group/index.cjs",
|
|
232
|
+
"types": "./build/cjs/components/input-group/index.d.cts"
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
"./components/link": {
|
|
236
|
+
"import": {
|
|
237
|
+
"default": "./build/es/components/link/index.js",
|
|
238
|
+
"types": "./build/es/components/link/index.d.ts"
|
|
239
|
+
},
|
|
240
|
+
"require": {
|
|
241
|
+
"default": "./build/cjs/components/link/index.cjs",
|
|
242
|
+
"types": "./build/cjs/components/link/index.d.cts"
|
|
243
|
+
}
|
|
244
|
+
},
|
|
245
|
+
"./components/link-list": {
|
|
246
|
+
"import": {
|
|
247
|
+
"default": "./build/es/components/link-list/index.js",
|
|
248
|
+
"types": "./build/es/components/link-list/index.d.ts"
|
|
249
|
+
},
|
|
250
|
+
"require": {
|
|
251
|
+
"default": "./build/cjs/components/link-list/index.cjs",
|
|
252
|
+
"types": "./build/cjs/components/link-list/index.d.cts"
|
|
253
|
+
}
|
|
254
|
+
},
|
|
255
|
+
"./components/list": {
|
|
256
|
+
"import": {
|
|
257
|
+
"default": "./build/es/components/list/index.js",
|
|
258
|
+
"types": "./build/es/components/list/index.d.ts"
|
|
259
|
+
},
|
|
260
|
+
"require": {
|
|
261
|
+
"default": "./build/cjs/components/list/index.cjs",
|
|
262
|
+
"types": "./build/cjs/components/list/index.d.cts"
|
|
263
|
+
}
|
|
264
|
+
},
|
|
265
|
+
"./components/loader": {
|
|
266
|
+
"import": {
|
|
267
|
+
"default": "./build/es/components/loader/index.js",
|
|
268
|
+
"types": "./build/es/components/loader/index.d.ts"
|
|
269
|
+
},
|
|
270
|
+
"require": {
|
|
271
|
+
"default": "./build/cjs/components/loader/index.cjs",
|
|
272
|
+
"types": "./build/cjs/components/loader/index.d.cts"
|
|
273
|
+
}
|
|
274
|
+
},
|
|
275
|
+
"./components/logo": {
|
|
276
|
+
"import": {
|
|
277
|
+
"default": "./build/es/components/logo/index.js",
|
|
278
|
+
"types": "./build/es/components/logo/index.d.ts"
|
|
279
|
+
},
|
|
280
|
+
"require": {
|
|
281
|
+
"default": "./build/cjs/components/logo/index.cjs",
|
|
282
|
+
"types": "./build/cjs/components/logo/index.d.cts"
|
|
283
|
+
}
|
|
284
|
+
},
|
|
285
|
+
"./components/menu": {
|
|
286
|
+
"import": {
|
|
287
|
+
"default": "./build/es/components/menu/index.js",
|
|
288
|
+
"types": "./build/es/components/menu/index.d.ts"
|
|
289
|
+
},
|
|
290
|
+
"require": {
|
|
291
|
+
"default": "./build/cjs/components/menu/index.cjs",
|
|
292
|
+
"types": "./build/cjs/components/menu/index.d.cts"
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
"./components/message": {
|
|
296
|
+
"import": {
|
|
297
|
+
"default": "./build/es/components/message/index.js",
|
|
298
|
+
"types": "./build/es/components/message/index.d.ts"
|
|
299
|
+
},
|
|
300
|
+
"require": {
|
|
301
|
+
"default": "./build/cjs/components/message/index.cjs",
|
|
302
|
+
"types": "./build/cjs/components/message/index.d.cts"
|
|
303
|
+
}
|
|
304
|
+
},
|
|
305
|
+
"./components/modal": {
|
|
306
|
+
"import": {
|
|
307
|
+
"default": "./build/es/components/modal/index.js",
|
|
308
|
+
"types": "./build/es/components/modal/index.d.ts"
|
|
309
|
+
},
|
|
310
|
+
"require": {
|
|
311
|
+
"default": "./build/cjs/components/modal/index.cjs",
|
|
312
|
+
"types": "./build/cjs/components/modal/index.d.cts"
|
|
313
|
+
}
|
|
314
|
+
},
|
|
315
|
+
"./components/pagination": {
|
|
316
|
+
"import": {
|
|
317
|
+
"default": "./build/es/components/pagination/index.js",
|
|
318
|
+
"types": "./build/es/components/pagination/index.d.ts"
|
|
319
|
+
},
|
|
320
|
+
"require": {
|
|
321
|
+
"default": "./build/cjs/components/pagination/index.cjs",
|
|
322
|
+
"types": "./build/cjs/components/pagination/index.d.cts"
|
|
323
|
+
}
|
|
324
|
+
},
|
|
325
|
+
"./components/popover": {
|
|
326
|
+
"import": {
|
|
327
|
+
"default": "./build/es/components/popover/index.js",
|
|
328
|
+
"types": "./build/es/components/popover/index.d.ts"
|
|
329
|
+
},
|
|
330
|
+
"require": {
|
|
331
|
+
"default": "./build/cjs/components/popover/index.cjs",
|
|
332
|
+
"types": "./build/cjs/components/popover/index.d.cts"
|
|
333
|
+
}
|
|
334
|
+
},
|
|
335
|
+
"./components/progress-bar": {
|
|
336
|
+
"import": {
|
|
337
|
+
"default": "./build/es/components/progress-bar/index.js",
|
|
338
|
+
"types": "./build/es/components/progress-bar/index.d.ts"
|
|
339
|
+
},
|
|
340
|
+
"require": {
|
|
341
|
+
"default": "./build/cjs/components/progress-bar/index.cjs",
|
|
342
|
+
"types": "./build/cjs/components/progress-bar/index.d.cts"
|
|
343
|
+
}
|
|
344
|
+
},
|
|
345
|
+
"./components/radio-button": {
|
|
346
|
+
"import": {
|
|
347
|
+
"default": "./build/es/components/radio-button/index.js",
|
|
348
|
+
"types": "./build/es/components/radio-button/index.d.ts"
|
|
349
|
+
},
|
|
350
|
+
"require": {
|
|
351
|
+
"default": "./build/cjs/components/radio-button/index.cjs",
|
|
352
|
+
"types": "./build/cjs/components/radio-button/index.d.cts"
|
|
353
|
+
}
|
|
354
|
+
},
|
|
355
|
+
"./components/select": {
|
|
356
|
+
"import": {
|
|
357
|
+
"default": "./build/es/components/select/index.js",
|
|
358
|
+
"types": "./build/es/components/select/index.d.ts"
|
|
359
|
+
},
|
|
360
|
+
"require": {
|
|
361
|
+
"default": "./build/cjs/components/select/index.cjs",
|
|
362
|
+
"types": "./build/cjs/components/select/index.d.cts"
|
|
363
|
+
}
|
|
364
|
+
},
|
|
365
|
+
"./components/summary-table": {
|
|
366
|
+
"import": {
|
|
367
|
+
"default": "./build/es/components/summary-table/index.js",
|
|
368
|
+
"types": "./build/es/components/summary-table/index.d.ts"
|
|
369
|
+
},
|
|
370
|
+
"require": {
|
|
371
|
+
"default": "./build/cjs/components/summary-table/index.cjs",
|
|
372
|
+
"types": "./build/cjs/components/summary-table/index.d.cts"
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
"./components/system-message": {
|
|
376
|
+
"import": {
|
|
377
|
+
"default": "./build/es/components/system-message/index.js",
|
|
378
|
+
"types": "./build/es/components/system-message/index.d.ts"
|
|
379
|
+
},
|
|
380
|
+
"require": {
|
|
381
|
+
"default": "./build/cjs/components/system-message/index.cjs",
|
|
382
|
+
"types": "./build/cjs/components/system-message/index.d.cts"
|
|
383
|
+
}
|
|
384
|
+
},
|
|
385
|
+
"./components/table": {
|
|
386
|
+
"import": {
|
|
387
|
+
"default": "./build/es/components/table/index.js",
|
|
388
|
+
"types": "./build/es/components/table/index.d.ts"
|
|
389
|
+
},
|
|
390
|
+
"require": {
|
|
391
|
+
"default": "./build/cjs/components/table/index.cjs",
|
|
392
|
+
"types": "./build/cjs/components/table/index.d.cts"
|
|
393
|
+
}
|
|
394
|
+
},
|
|
395
|
+
"./components/tabs": {
|
|
396
|
+
"import": {
|
|
397
|
+
"default": "./build/es/components/tabs/index.js",
|
|
398
|
+
"types": "./build/es/components/tabs/index.d.ts"
|
|
399
|
+
},
|
|
400
|
+
"require": {
|
|
401
|
+
"default": "./build/cjs/components/tabs/index.cjs",
|
|
402
|
+
"types": "./build/cjs/components/tabs/index.d.cts"
|
|
403
|
+
}
|
|
404
|
+
},
|
|
405
|
+
"./components/tag": {
|
|
406
|
+
"import": {
|
|
407
|
+
"default": "./build/es/components/tag/index.js",
|
|
408
|
+
"types": "./build/es/components/tag/index.d.ts"
|
|
409
|
+
},
|
|
410
|
+
"require": {
|
|
411
|
+
"default": "./build/cjs/components/tag/index.cjs",
|
|
412
|
+
"types": "./build/cjs/components/tag/index.d.cts"
|
|
413
|
+
}
|
|
414
|
+
},
|
|
415
|
+
"./components/text-input": {
|
|
416
|
+
"import": {
|
|
417
|
+
"default": "./build/es/components/text-input/index.js",
|
|
418
|
+
"types": "./build/es/components/text-input/index.d.ts"
|
|
419
|
+
},
|
|
420
|
+
"require": {
|
|
421
|
+
"default": "./build/cjs/components/text-input/index.cjs",
|
|
422
|
+
"types": "./build/cjs/components/text-input/index.d.cts"
|
|
423
|
+
}
|
|
424
|
+
},
|
|
425
|
+
"./components/toast": {
|
|
426
|
+
"import": {
|
|
427
|
+
"default": "./build/es/components/toast/index.js",
|
|
428
|
+
"types": "./build/es/components/toast/index.d.ts"
|
|
429
|
+
},
|
|
430
|
+
"require": {
|
|
431
|
+
"default": "./build/cjs/components/toast/index.cjs",
|
|
432
|
+
"types": "./build/cjs/components/toast/index.d.cts"
|
|
433
|
+
}
|
|
434
|
+
},
|
|
435
|
+
"./components/toggle-switch": {
|
|
436
|
+
"import": {
|
|
437
|
+
"default": "./build/es/components/toggle-switch/index.js",
|
|
438
|
+
"types": "./build/es/components/toggle-switch/index.d.ts"
|
|
439
|
+
},
|
|
440
|
+
"require": {
|
|
441
|
+
"default": "./build/cjs/components/toggle-switch/index.cjs",
|
|
442
|
+
"types": "./build/cjs/components/toggle-switch/index.d.cts"
|
|
443
|
+
}
|
|
444
|
+
},
|
|
445
|
+
"./components/tooltip": {
|
|
446
|
+
"import": {
|
|
447
|
+
"default": "./build/es/components/tooltip/index.js",
|
|
448
|
+
"types": "./build/es/components/tooltip/index.d.ts"
|
|
449
|
+
},
|
|
450
|
+
"require": {
|
|
451
|
+
"default": "./build/cjs/components/tooltip/index.cjs",
|
|
452
|
+
"types": "./build/cjs/components/tooltip/index.d.cts"
|
|
453
|
+
}
|
|
454
|
+
}
|
|
75
455
|
},
|
|
76
456
|
"scripts": {
|
|
77
457
|
"generate:tokens": "node tokens.build.mjs",
|
|
@@ -131,5 +511,5 @@
|
|
|
131
511
|
"@babel/preset-react"
|
|
132
512
|
]
|
|
133
513
|
},
|
|
134
|
-
"gitHead": "
|
|
514
|
+
"gitHead": "3c45b15544beafea78c8e19e76f36ce0e32012db"
|
|
135
515
|
}
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
height: 1rem;
|
|
137
137
|
}
|
|
138
138
|
html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
139
|
-
animation: cubic-bezier(0.6, 0.2, 0.35, 1) 250ms jkl-tertiary-flash-
|
|
139
|
+
animation: cubic-bezier(0.6, 0.2, 0.35, 1) 250ms jkl-tertiary-flash-uz4t33t;
|
|
140
140
|
}
|
|
141
141
|
:not([data-touchnavigation]) .jkl-button--primary:hover, :not([data-touchnavigation]) .jkl-button--secondary:hover, :not([data-touchnavigation]) .jkl-button--tertiary:hover {
|
|
142
142
|
scale: 1.05;
|
|
@@ -180,7 +180,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
180
180
|
--background-color: var(--jkl-color-background-interactive-hover);
|
|
181
181
|
}
|
|
182
182
|
|
|
183
|
-
@keyframes jkl-tertiary-flash-
|
|
183
|
+
@keyframes jkl-tertiary-flash-uz4t33t {
|
|
184
184
|
0% {
|
|
185
185
|
opacity: 0.5;
|
|
186
186
|
scale: 1;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.jkl .jkl-button,.jkl-button[data-density=comfortable],.jkl-button[data-layout-density=comfortable],[data-density=comfortable] .jkl-button,[data-layout-density=comfortable] .jkl-button{--padding-block:0.5rem;--padding-text:1.5rem;--padding-icon:1rem;--padding-icon-button:0.5rem;--padding-tertiary-inline:0.25rem;--padding-ghost-inline:0.5rem}.jkl-button[data-density=compact],.jkl-button[data-layout-density=compact],[data-density=compact] .jkl-button,[data-layout-density=compact] .jkl-button{--padding-block:0.25rem;--padding-text:0.75rem;--padding-icon:0.5rem;--padding-icon-button:0.25rem;--padding-tertiary-inline:0.125rem;--padding-ghost-inline:0.25rem;font-size:1rem;font-weight:400;line-height:1.5rem;--jkl-icon-weight:300;--jkl-icon-size:1.25rem;--jkl-icon-opsz:20;--jkl-icon-weight:500;font-weight:700}.jkl-button{--text-color:var(--jkl-color-text-default);--background-color:transparent;--border-radius:0;--border-width:0.0625rem;background-color:var(--background-color);border:unset;color:var(--text-color);cursor:pointer;text-decoration:none;-webkit-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;border-radius:var(--border-radius);font-size:1.125rem;font-weight:400;line-height:1.75rem;max-width:100%;overflow:hidden;padding-block:var(--padding-block);padding-inline:var(--padding-text);position:relative;transition-duration:.15s;transition-property:scale;transition-timing-function:ease;--jkl-icon-weight:300;--jkl-icon-weight:500;font-weight:700}@media (min-width:680px){.jkl-button{font-size:1.25rem;font-weight:400;line-height:2rem;--jkl-icon-weight:300;--jkl-icon-weight:500;font-weight:700}}.jkl-button:has(.jkl-icon:first-child){padding-inline-start:var(--padding-icon)}.jkl-button:has(.jkl-icon:last-child){padding-inline-end:var(--padding-icon)}.jkl-button:has(.jkl-icon:first-child):has(.jkl-icon:last-child){padding-inline:var(--padding-icon-button)}.jkl-button__label{align-items:center;display:flex;flex-direction:row;gap:.125rem;pointer-events:none;transition-duration:.25s;transition-property:translate;transition-timing-function:ease}.jkl-button__loader{left:50%;opacity:0;pointer-events:none;position:absolute;top:50%;transition-duration:.25s;transition-property:opacity,translate;transition-timing-function:ease;translate:-50% 350%}.jkl-button__text{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.jkl-button[data-loading=true] .jkl-button__label{translate:0 -120%}.jkl-button[data-loading=true] .jkl-button__loader{opacity:1;translate:-50% -50%}.jkl-button:focus-visible{outline:2px solid var(--jkl-color-border-action);outline-offset:2px}.jkl-button:before{background-color:var(--text-color);border-radius:9999px;content:"";display:block;height:1rem;left:var(--jkl-touch-xcoord,50%);opacity:0;pointer-events:none;position:absolute;top:var(--jkl-touch-ycoord,50%);transform-origin:center;translate:-100%,-100%;width:1rem}html[data-touchnavigation] .jkl-button.jkl-button--pressed:before{animation:jkl-tertiary-flash-
|
|
1
|
+
.jkl .jkl-button,.jkl-button[data-density=comfortable],.jkl-button[data-layout-density=comfortable],[data-density=comfortable] .jkl-button,[data-layout-density=comfortable] .jkl-button{--padding-block:0.5rem;--padding-text:1.5rem;--padding-icon:1rem;--padding-icon-button:0.5rem;--padding-tertiary-inline:0.25rem;--padding-ghost-inline:0.5rem}.jkl-button[data-density=compact],.jkl-button[data-layout-density=compact],[data-density=compact] .jkl-button,[data-layout-density=compact] .jkl-button{--padding-block:0.25rem;--padding-text:0.75rem;--padding-icon:0.5rem;--padding-icon-button:0.25rem;--padding-tertiary-inline:0.125rem;--padding-ghost-inline:0.25rem;font-size:1rem;font-weight:400;line-height:1.5rem;--jkl-icon-weight:300;--jkl-icon-size:1.25rem;--jkl-icon-opsz:20;--jkl-icon-weight:500;font-weight:700}.jkl-button{--text-color:var(--jkl-color-text-default);--background-color:transparent;--border-radius:0;--border-width:0.0625rem;background-color:var(--background-color);border:unset;color:var(--text-color);cursor:pointer;text-decoration:none;-webkit-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;border-radius:var(--border-radius);font-size:1.125rem;font-weight:400;line-height:1.75rem;max-width:100%;overflow:hidden;padding-block:var(--padding-block);padding-inline:var(--padding-text);position:relative;transition-duration:.15s;transition-property:scale;transition-timing-function:ease;--jkl-icon-weight:300;--jkl-icon-weight:500;font-weight:700}@media (min-width:680px){.jkl-button{font-size:1.25rem;font-weight:400;line-height:2rem;--jkl-icon-weight:300;--jkl-icon-weight:500;font-weight:700}}.jkl-button:has(.jkl-icon:first-child){padding-inline-start:var(--padding-icon)}.jkl-button:has(.jkl-icon:last-child){padding-inline-end:var(--padding-icon)}.jkl-button:has(.jkl-icon:first-child):has(.jkl-icon:last-child){padding-inline:var(--padding-icon-button)}.jkl-button__label{align-items:center;display:flex;flex-direction:row;gap:.125rem;pointer-events:none;transition-duration:.25s;transition-property:translate;transition-timing-function:ease}.jkl-button__loader{left:50%;opacity:0;pointer-events:none;position:absolute;top:50%;transition-duration:.25s;transition-property:opacity,translate;transition-timing-function:ease;translate:-50% 350%}.jkl-button__text{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.jkl-button[data-loading=true] .jkl-button__label{translate:0 -120%}.jkl-button[data-loading=true] .jkl-button__loader{opacity:1;translate:-50% -50%}.jkl-button:focus-visible{outline:2px solid var(--jkl-color-border-action);outline-offset:2px}.jkl-button:before{background-color:var(--text-color);border-radius:9999px;content:"";display:block;height:1rem;left:var(--jkl-touch-xcoord,50%);opacity:0;pointer-events:none;position:absolute;top:var(--jkl-touch-ycoord,50%);transform-origin:center;translate:-100%,-100%;width:1rem}html[data-touchnavigation] .jkl-button.jkl-button--pressed:before{animation:jkl-tertiary-flash-uz4t33t .25s cubic-bezier(.6,.2,.35,1)}:not([data-touchnavigation]) .jkl-button--primary:hover,:not([data-touchnavigation]) .jkl-button--secondary:hover,:not([data-touchnavigation]) .jkl-button--tertiary:hover{scale:1.05;transform-origin:center}.jkl-button--primary,.jkl-button--secondary{--border-radius:999px}.jkl-button--primary{--background-color:var(--jkl-color-background-action);--text-color:var(--jkl-color-text-on-action)}.jkl-button--secondary:after{border:var(--border-width) solid var(--text-color);border-radius:var(--border-radius);content:"";inset:0;position:absolute}.jkl-button--tertiary,.jkl-button--tertiary:has(.jkl-icon:first-child),.jkl-button--tertiary:has(.jkl-icon:last-child){padding-inline:var(--padding-tertiary-inline)}.jkl-button--tertiary:after,.jkl-button--tertiary:has(.jkl-icon:first-child):after,.jkl-button--tertiary:has(.jkl-icon:last-child):after{border-bottom:var(--border-width) solid var(--text-color);border-radius:var(--border-radius);content:"";inset:0;position:absolute}.jkl-button--tertiary:focus-visible,.jkl-button--tertiary:has(.jkl-icon:first-child):focus-visible,.jkl-button--tertiary:has(.jkl-icon:first-child):hover,.jkl-button--tertiary:has(.jkl-icon:last-child):focus-visible,.jkl-button--tertiary:has(.jkl-icon:last-child):hover,.jkl-button--tertiary:hover{--border-width:0.125rem}.jkl-button--ghost,.jkl-button--ghost:has(.jkl-icon:first-child),.jkl-button--ghost:has(.jkl-icon:last-child){border-radius:.25rem;padding-inline:var(--padding-ghost-inline);transition-duration:.15s;transition-property:background-color;transition-timing-function:ease}.jkl-button--ghost:has(.jkl-icon:first-child):hover,.jkl-button--ghost:has(.jkl-icon:last-child):hover,.jkl-button--ghost:hover{--background-color:var(--jkl-color-background-interactive-hover)}@keyframes jkl-tertiary-flash-uz4t33t{0%{opacity:.5;scale:1}to{opacity:0;scale:8}}
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
--jkl-checkbox-line-height: 1.5rem;
|
|
33
33
|
}
|
|
34
34
|
|
|
35
|
-
@keyframes jkl-checkbox-checked-
|
|
35
|
+
@keyframes jkl-checkbox-checked-ufc4y4b {
|
|
36
36
|
0% {
|
|
37
37
|
width: 0;
|
|
38
38
|
height: 0;
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
height: 58%;
|
|
47
47
|
}
|
|
48
48
|
}
|
|
49
|
-
@keyframes jkl-checkbox-indeterminate-
|
|
49
|
+
@keyframes jkl-checkbox-indeterminate-ufc4y4n {
|
|
50
50
|
0% {
|
|
51
51
|
width: 0;
|
|
52
52
|
}
|
|
@@ -74,11 +74,11 @@
|
|
|
74
74
|
top: -6px;
|
|
75
75
|
}
|
|
76
76
|
.jkl-checkbox__input:checked + .jkl-checkbox__label .jkl-checkbox__check-mark::after {
|
|
77
|
-
animation: jkl-checkbox-checked-
|
|
77
|
+
animation: jkl-checkbox-checked-ufc4y4b 150ms ease-in-out forwards;
|
|
78
78
|
opacity: 1;
|
|
79
79
|
}
|
|
80
80
|
.jkl-checkbox__input:indeterminate:not(:checked) + .jkl-checkbox__label .jkl-checkbox__indeterminate-mark::after {
|
|
81
|
-
animation: jkl-checkbox-indeterminate-
|
|
81
|
+
animation: jkl-checkbox-indeterminate-ufc4y4n 150ms ease-in-out forwards;
|
|
82
82
|
opacity: 1;
|
|
83
83
|
}
|
|
84
84
|
.jkl-checkbox__input:focus-visible + .jkl-checkbox__label {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
:root,[data-density=comfortable],[data-layout-density=comfortable]{--jkl-checkbox-font-size:var(--jkl-body-font-size);--jkl-checkbox-line-height:var(--jkl-body-line-height);--jkl-checkbox-font-weight:var(--jkl-body-font-weight);--jkl-checkbox-height:3rem;--jkl-checkbox-box-size:1.5rem;--jkl-checkbox-line-height:2rem}@media (width >= 0) and (max-width:679px){:root,[data-density=comfortable],[data-layout-density=comfortable]{--jkl-checkbox-height:2.5rem;--jkl-checkbox-box-size:1.5rem;--jkl-checkbox-line-height:1.75rem}}[data-density=compact],[data-layout-density=compact]{--jkl-checkbox-font-size:var(--jkl-small-font-size);--jkl-checkbox-line-height:var(--jkl-small-line-height);--jkl-checkbox-font-weight:var(--jkl-small-font-weight);--jkl-checkbox-height:1.75rem;--jkl-checkbox-box-size:1.125rem;--jkl-checkbox-line-height:1.5rem}@keyframes jkl-checkbox-checked-
|
|
1
|
+
:root,[data-density=comfortable],[data-layout-density=comfortable]{--jkl-checkbox-font-size:var(--jkl-body-font-size);--jkl-checkbox-line-height:var(--jkl-body-line-height);--jkl-checkbox-font-weight:var(--jkl-body-font-weight);--jkl-checkbox-height:3rem;--jkl-checkbox-box-size:1.5rem;--jkl-checkbox-line-height:2rem}@media (width >= 0) and (max-width:679px){:root,[data-density=comfortable],[data-layout-density=comfortable]{--jkl-checkbox-height:2.5rem;--jkl-checkbox-box-size:1.5rem;--jkl-checkbox-line-height:1.75rem}}[data-density=compact],[data-layout-density=compact]{--jkl-checkbox-font-size:var(--jkl-small-font-size);--jkl-checkbox-line-height:var(--jkl-small-line-height);--jkl-checkbox-font-weight:var(--jkl-small-font-weight);--jkl-checkbox-height:1.75rem;--jkl-checkbox-box-size:1.125rem;--jkl-checkbox-line-height:1.5rem}@keyframes jkl-checkbox-checked-ufc4y4b{0%{height:0;width:0}40%{height:0;width:18%}to{height:58%;width:18%}}@keyframes jkl-checkbox-indeterminate-ufc4y4n{0%{width:0}to{width:66%}}.jkl-checkbox{--box-color:var(--jkl-color-border-action);--check-color:var(--jkl-color-border-action);--text-color:var(--jkl-color-text-default);--background-color:transparent;color:var(--text-color);display:flex;flex-wrap:wrap;font-size:var(--jkl-checkbox-font-size);font-weight:var(--jkl-checkbox-font-weight);line-height:var(--jkl-checkbox-line-height);min-height:var(--jkl-checkbox-height);position:relative}.jkl-checkbox__input{opacity:0;position:absolute;top:-6px}.jkl-checkbox__input:checked+.jkl-checkbox__label .jkl-checkbox__check-mark:after{animation:jkl-checkbox-checked-ufc4y4b .15s ease-in-out forwards;opacity:1}.jkl-checkbox__input:indeterminate:not(:checked)+.jkl-checkbox__label .jkl-checkbox__indeterminate-mark:after{animation:jkl-checkbox-indeterminate-ufc4y4n .15s ease-in-out forwards;opacity:1}.jkl-checkbox__input:focus-visible+.jkl-checkbox__label{color:var(--jkl-checkbox-focus-color)}.jkl-checkbox__input:focus-visible+.jkl-checkbox__label>.jkl-checkbox__mark{--background-color:var(--jkl-color-background-input-focus);outline:2px solid var(--jkl-color-border-action);outline-offset:2px}.jkl-checkbox__input:disabled+.jkl-checkbox__label{color:var(--jkl-checkbox-disabled-color)}.jkl-checkbox__label{cursor:pointer;display:flex;flex-shrink:0;max-width:100%;min-width:0}.jkl-checkbox__label:active .jkl-checkbox__mark,.jkl-checkbox__label:hover .jkl-checkbox__mark{outline:1px solid var(--box-color)}.jkl-checkbox__label:active{--background-color:var(--jkl-color-background-input-focus)}.jkl-checkbox__text{margin:calc((var(--jkl-checkbox-height) - var(--jkl-checkbox-line-height))*.5) 0;transition-duration:.15s;transition-property:color;transition-timing-function:ease;translate:0 .0625rem}.jkl-checkbox__mark{align-self:flex-start;background-color:var(--background-color);border:1px solid;border-color:var(--box-color);border-radius:0;box-sizing:border-box;flex-shrink:0;height:var(--jkl-checkbox-box-size);margin-block:calc((var(--jkl-checkbox-height) - var(--jkl-checkbox-box-size))*.5);margin-inline-end:var(--jkl-spacing-8);outline:none;position:relative;transition-duration:.15s;transition-property:background-color;transition-timing-function:ease;width:var(--jkl-checkbox-box-size)}@media screen and (forced-colors:active){.jkl-checkbox__mark{border:1px solid ButtonText;outline:revert}}.jkl-checkbox__check-mark:after{border-bottom:.125rem solid var(--check-color);border-left-width:.125rem;border-left:0 solid var(--check-color);border-right:.125rem solid var(--check-color);border-top-width:.125rem;border-top:0 solid var(--check-color);bottom:42%;content:"";display:block;height:58%;left:18%;opacity:0;position:absolute;transform:rotate(45deg);transform-origin:bottom left;transition-duration:.15s;transition-property:opacity,border-color;transition-timing-function:ease;width:18%}@media screen and (forced-colors:active){.jkl-checkbox__check-mark:after{border-color:ButtonText}}.jkl-checkbox__indeterminate-mark:after{--width:66%;--thickness:0.125rem;border-bottom:solid var(--thickness) var(--check-color);bottom:calc(50% - var(--thickness)/2);content:"";display:block;left:calc((100% - var(--width))/2);opacity:0;position:absolute;transition-duration:.15s;transition-property:opacity,border-color;transition-timing-function:ease;width:var(--width)}@media screen and (forced-colors:active){.jkl-checkbox__indeterminate-mark:after{border-color:ButtonText}}.jkl-checkbox--inline{display:inline-flex}.jkl-checkbox--inline:not(:last-of-type){margin-right:1.5rem}.jkl-checkbox--error{--background-color:var(--jkl-color-background-alert-error);--check-color:var(--jkl-color-text-on-alert)}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Do not edit directly
|
|
3
3
|
* Generated on Mon, 23 Sep 2024 08:51:40 GMT
|
|
4
4
|
*/
|
|
5
|
-
@keyframes jkl-show-
|
|
5
|
+
@keyframes jkl-show-uhcv955 {
|
|
6
6
|
from {
|
|
7
7
|
transform: translate3d(0, 0.5rem, 0);
|
|
8
8
|
opacity: 0;
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
39
|
.jkl-feedback__fade-in {
|
|
40
|
-
animation: jkl-show-
|
|
40
|
+
animation: jkl-show-uhcv955 0.25s ease-out;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
.jkl-feedback-smileys {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@keyframes jkl-show-
|
|
1
|
+
@keyframes jkl-show-uhcv955{0%{opacity:0;transform:translate3d(0,.5rem,0)}}.jkl-feedback{max-width:34.375rem}.jkl-feedback__submit-wrapper{transition-duration:.25s;transition-property:height;transition-timing-function:ease;width:100%}.jkl-feedback__submit-wrapper--hidden{display:none}.jkl-feedback__step-counter{color:var(--jkl-color-text-subdued);font-size:1.125rem;font-weight:400;line-height:1.75rem;margin-bottom:1rem;--jkl-icon-weight:300}@media (min-width:680px){.jkl-feedback__step-counter{font-size:1.25rem;font-weight:400;line-height:2rem;--jkl-icon-weight:300}}.jkl-feedback__fade-in{animation:jkl-show-uhcv955 .25s ease-out}.jkl-feedback-smileys{display:flex;flex-wrap:nowrap;gap:.75rem;justify-content:space-between;margin-top:.5rem;max-width:22.5rem;width:100%}.jkl-feedback-smiley-option{color:var(--jkl-color-text-subdued);cursor:pointer;display:inline-block;height:2.5rem;position:relative;transform:translateZ(0);transition-duration:.15s;transition-property:transform,color;transition-timing-function:ease;width:2.5rem}@media screen and (forced-colors:active){.jkl-feedback-smiley-option,.jkl-feedback-smiley-option path,.jkl-feedback-smiley-option svg{stroke:ButtonFace;fill:ButtonText}}.jkl-feedback-smiley-option:after,.jkl-feedback-smiley-option:before{border-radius:50%;content:"";opacity:0;position:absolute;transition-duration:.15s;transition-property:opacity;transition-timing-function:ease}.jkl-feedback-smiley-option:after{box-shadow:0 0 0 .125rem currentColor;inset:-.125rem -.125rem -.125rem -.125rem}.jkl-feedback-smiley-option:before{box-shadow:0 .125rem 1.875rem rgba(0,0,0,.1);inset:0}.jkl-feedback-smiley-option:hover{color:var(--jkl-color-text-default)}input:checked+.jkl-feedback-smiley-option{color:var(--jkl-color-text-default);transform:translate3d(0,-20%,0)}input:checked+.jkl-feedback-smiley-option:before{opacity:1}html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus+.jkl-feedback-smiley-option:after{opacity:1}
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
--color: var(--jkl-color-text-default);
|
|
79
79
|
}
|
|
80
80
|
.jkl-form-support-label--error .jkl-form-support-label__icon, .jkl-form-support-label--warning .jkl-form-support-label__icon, .jkl-form-support-label--success .jkl-form-support-label__icon {
|
|
81
|
-
animation: 400ms cubic-bezier(0, 0, 0.3, 1) 250ms jkl-support-icon-entrance-
|
|
81
|
+
animation: 400ms cubic-bezier(0, 0, 0.3, 1) 250ms jkl-support-icon-entrance-uajvz28 forwards;
|
|
82
82
|
}
|
|
83
83
|
.jkl-form-support-label--sr-only {
|
|
84
84
|
border: 0 !important;
|
|
@@ -153,7 +153,7 @@
|
|
|
153
153
|
white-space: nowrap !important; /* 3 */
|
|
154
154
|
}
|
|
155
155
|
|
|
156
|
-
@keyframes jkl-support-icon-entrance-
|
|
156
|
+
@keyframes jkl-support-icon-entrance-uajvz28 {
|
|
157
157
|
0% {
|
|
158
158
|
margin-right: 0;
|
|
159
159
|
opacity: 0;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.jkl-field-group{border-style:none;outline:0;outline-style:none}.jkl-field-group:active,.jkl-field-group:focus,.jkl-field-group:hover{outline:0;outline-style:none}@media screen and (forced-colors:active){.jkl-field-group{border-style:revert;outline:revert;outline-style:revert}.jkl-field-group:active,.jkl-field-group:focus,.jkl-field-group:hover{outline:revert;outline-style:revert}}.jkl-dormant-form-support-label{display:none;opacity:0;pointer-events:none}:root,[data-density=comfortable],[data-layout-density=comfortable]{--jkl-form-support-label-font-size:var(--jkl-small-font-size);--jkl-form-support-label-line-height:var(--jkl-small-line-height);--jkl-form-support-label-font-weight:var(--jkl-small-font-weight);--jkl-form-support-label-margin:0.5rem 0 0;--jkl-form-support-label-icon-size:1.25rem;--jkl-form-support-label-icon-margin:0 -1.25rem -0.375rem 0}[data-density=compact],[data-layout-density=compact]{--jkl-form-support-label-icon-size:1.375rem;--jkl-form-support-label-icon-margin:0 -1.375rem -0.3125rem 0}.jkl-form-support-label{--color:var(--jkl-color-text-subdued);color:var(--color);display:flex;font-size:var(--jkl-form-support-label-font-size);font-weight:var(--jkl-form-support-label-font-weight);line-height:var(--jkl-form-support-label-line-height);margin:var(--jkl-form-support-label-margin);transition-delay:.15s;transition-duration:.4s;transition-property:color;transition-timing-function:ease}.jkl-form-support-label__icon,.jkl-form-support-label__icon.jkl-icon{height:var(--jkl-form-support-label-icon-size);margin:var(--jkl-form-support-label-icon-margin);opacity:0}@media screen and (forced-colors:active){.jkl-form-support-label__icon,.jkl-form-support-label__icon path,.jkl-form-support-label__icon svg,.jkl-form-support-label__icon.jkl-icon,.jkl-form-support-label__icon.jkl-icon path,.jkl-form-support-label__icon.jkl-icon svg{stroke:CanvasText;fill:Canvas}}.jkl-form-support-label--error,.jkl-form-support-label--success,.jkl-form-support-label--warning{--color:var(--jkl-color-text-default)}.jkl-form-support-label--error .jkl-form-support-label__icon,.jkl-form-support-label--success .jkl-form-support-label__icon,.jkl-form-support-label--warning .jkl-form-support-label__icon{animation:jkl-support-icon-entrance-
|
|
1
|
+
.jkl-field-group{border-style:none;outline:0;outline-style:none}.jkl-field-group:active,.jkl-field-group:focus,.jkl-field-group:hover{outline:0;outline-style:none}@media screen and (forced-colors:active){.jkl-field-group{border-style:revert;outline:revert;outline-style:revert}.jkl-field-group:active,.jkl-field-group:focus,.jkl-field-group:hover{outline:revert;outline-style:revert}}.jkl-dormant-form-support-label{display:none;opacity:0;pointer-events:none}:root,[data-density=comfortable],[data-layout-density=comfortable]{--jkl-form-support-label-font-size:var(--jkl-small-font-size);--jkl-form-support-label-line-height:var(--jkl-small-line-height);--jkl-form-support-label-font-weight:var(--jkl-small-font-weight);--jkl-form-support-label-margin:0.5rem 0 0;--jkl-form-support-label-icon-size:1.25rem;--jkl-form-support-label-icon-margin:0 -1.25rem -0.375rem 0}[data-density=compact],[data-layout-density=compact]{--jkl-form-support-label-icon-size:1.375rem;--jkl-form-support-label-icon-margin:0 -1.375rem -0.3125rem 0}.jkl-form-support-label{--color:var(--jkl-color-text-subdued);color:var(--color);display:flex;font-size:var(--jkl-form-support-label-font-size);font-weight:var(--jkl-form-support-label-font-weight);line-height:var(--jkl-form-support-label-line-height);margin:var(--jkl-form-support-label-margin);transition-delay:.15s;transition-duration:.4s;transition-property:color;transition-timing-function:ease}.jkl-form-support-label__icon,.jkl-form-support-label__icon.jkl-icon{height:var(--jkl-form-support-label-icon-size);margin:var(--jkl-form-support-label-icon-margin);opacity:0}@media screen and (forced-colors:active){.jkl-form-support-label__icon,.jkl-form-support-label__icon path,.jkl-form-support-label__icon svg,.jkl-form-support-label__icon.jkl-icon,.jkl-form-support-label__icon.jkl-icon path,.jkl-form-support-label__icon.jkl-icon svg{stroke:CanvasText;fill:Canvas}}.jkl-form-support-label--error,.jkl-form-support-label--success,.jkl-form-support-label--warning{--color:var(--jkl-color-text-default)}.jkl-form-support-label--error .jkl-form-support-label__icon,.jkl-form-support-label--success .jkl-form-support-label__icon,.jkl-form-support-label--warning .jkl-form-support-label__icon{animation:jkl-support-icon-entrance-uajvz28 .4s cubic-bezier(0,0,.3,1) .25s forwards}.jkl-form-support-label--sr-only{border:0!important;clip:rect(1px,1px,1px,1px)!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}:root,[data-density=comfortable],[data-layout-density=comfortable]{--jkl-label-small-margin:0 0 0.25rem 0;--jkl-label-medium-margin:0 0 0.5rem 0;--jkl-label-large-margin:0 0 1rem -0.0625rem;--jkl-label-small-font-size:var(--jkl-small-font-size);--jkl-label-small-line-height:var(--jkl-small-line-height);--jkl-label-small-font-weight:var(--jkl-small-font-weight);--jkl-label-medium-font-size:var(--jkl-body-font-size);--jkl-label-medium-line-height:var(--jkl-body-line-height);--jkl-label-medium-font-weight:var(--jkl-body-font-weight);--jkl-label-large-font-size:var(--jkl-heading-2-font-size);--jkl-label-large-line-height:var(--jkl-heading-2-line-height);--jkl-label-large-font-weight:var(--jkl-heading-2-font-weight)}[data-density=compact],[data-layout-density=compact]{--jkl-label-small-margin:0 0 0.25rem 0;--jkl-label-medium-margin:0 0 0.5rem 0;--jkl-label-large-margin:0 0 0.75rem -0.0625rem}.jkl-label{color:var(--jkl-color-text-default);display:block;margin-left:0}.jkl-label--small{font-size:var(--jkl-label-small-font-size);font-weight:var(--jkl-label-small-font-weight);line-height:var(--jkl-label-small-line-height);margin:var(--jkl-label-small-margin)}.jkl-label--medium{font-size:var(--jkl-label-medium-font-size);font-weight:var(--jkl-label-medium-font-weight);line-height:var(--jkl-label-medium-line-height);margin:var(--jkl-label-medium-margin)}.jkl-label--large{font-size:var(--jkl-label-large-font-size);font-weight:var(--jkl-label-large-font-weight);line-height:var(--jkl-label-large-line-height);margin:var(--jkl-label-large-margin)}.jkl-label--sr-only{border:0!important;clip:rect(1px,1px,1px,1px)!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}@keyframes jkl-support-icon-entrance-uajvz28{0%{margin-right:0;opacity:0;transform:scale(1)}30%{margin-right:.5rem}50%{opacity:1}70%{transform:scale(1.1)}85%{transform:scale(.9)}to{margin-right:.5rem;opacity:1;transform:scale(1)}}@media screen and (forced-colors:active){.jkl-text-input-action-button,.jkl-text-input-action-button path,.jkl-text-input-action-button svg{stroke:ButtonText;fill:ButtonFace}}
|
|
@@ -17,15 +17,15 @@
|
|
|
17
17
|
animation: 2500ms linear infinite;
|
|
18
18
|
}
|
|
19
19
|
.jkl-loader__dot--left {
|
|
20
|
-
animation-name: jkl-loader-left-spin-
|
|
20
|
+
animation-name: jkl-loader-left-spin-umwgngc;
|
|
21
21
|
margin-right: 1.71em;
|
|
22
22
|
}
|
|
23
23
|
.jkl-loader__dot--middle {
|
|
24
|
-
animation-name: jkl-loader-middle-spin-
|
|
24
|
+
animation-name: jkl-loader-middle-spin-umwgngf;
|
|
25
25
|
margin-right: 1.9em;
|
|
26
26
|
}
|
|
27
27
|
.jkl-loader__dot--right {
|
|
28
|
-
animation-name: jkl-loader-right-spin-
|
|
28
|
+
animation-name: jkl-loader-right-spin-umwgngu;
|
|
29
29
|
}
|
|
30
30
|
@media screen and (forced-colors: active) {
|
|
31
31
|
.jkl-loader__dot {
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
margin-right: 0.3em;
|
|
54
54
|
}
|
|
55
55
|
|
|
56
|
-
@keyframes jkl-loader-left-spin-
|
|
56
|
+
@keyframes jkl-loader-left-spin-umwgngc {
|
|
57
57
|
0% {
|
|
58
58
|
transform: rotate(0) scale(0);
|
|
59
59
|
}
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
transform: rotate(180deg) scale(0);
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
|
-
@keyframes jkl-loader-middle-spin-
|
|
70
|
+
@keyframes jkl-loader-middle-spin-umwgngf {
|
|
71
71
|
0% {
|
|
72
72
|
transform: rotate(20deg) scale(0);
|
|
73
73
|
}
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
transform: rotate(200deg) scale(0);
|
|
85
85
|
}
|
|
86
86
|
}
|
|
87
|
-
@keyframes jkl-loader-right-spin-
|
|
87
|
+
@keyframes jkl-loader-right-spin-umwgngu {
|
|
88
88
|
0% {
|
|
89
89
|
transform: rotate(40deg) scale(0);
|
|
90
90
|
}
|