@gov-design-system-ce/components 0.0.20 → 0.0.21

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.
@@ -0,0 +1,484 @@
1
+ gov-breadcrumbs ul {
2
+ margin: 0;
3
+ padding: 0;
4
+ }
5
+
6
+ /* stylelint-disable */
7
+ /* stylelint-enable */
8
+ /* stylelint-disable */
9
+ /* stylelint-enable */
10
+ /* stylelint-disable */
11
+ /* stylelint-enable */
12
+ /* stylelint-disable */
13
+ /* stylelint-enable */
14
+ /* [Core] - Buttons
15
+ ------------------------------------------------------------------ */
16
+ /*
17
+ * Gets color from theme-colors or from palette-colors
18
+ */
19
+ /*
20
+ * Converts hex value to rgb colors value
21
+ */
22
+ /* stylelint-disable order/order */
23
+ /* stylelint-enable order/order */
24
+ /*
25
+ * Generates list of utility classes for margin, padding
26
+ *
27
+ * Make sure $list of definitions is sorted so that last item is defined last
28
+ * So largest views are mentioned last.
29
+ */
30
+ /*
31
+ - Variables - Sizes
32
+ */
33
+ /* "Constants" for general usage */
34
+ /*
35
+ - Variables - Layout
36
+ */
37
+ /**
38
+ * Utilities - Offset
39
+ */
40
+ /* stylelint-disable order/order */
41
+ /* stylelint-enable order/order */
42
+ /* stylelint-disable order/order */
43
+ /* stylelint-enable order/order */
44
+ /* stylelint-disable order/order */
45
+ /* stylelint-enable order/order */
46
+ /**
47
+ * Generates CSS3 var with default value
48
+ */
49
+ /*
50
+ - Variables - General
51
+ */
52
+ /*
53
+ - Variables - Typography
54
+ */
55
+ /*
56
+ - Variables - Variants
57
+ */
58
+ /*
59
+ - Variables - Container
60
+ */
61
+ /*
62
+ - Variables - Sizes
63
+ */
64
+ /* "Constants" for general usage */
65
+ /*
66
+ - Variables - Accordion
67
+ */
68
+ /*
69
+ - Variables - Attachments
70
+ */
71
+ /*
72
+ - Variables - Alert
73
+ */
74
+ /*
75
+ - Variables - Backdrop
76
+ */
77
+ /*
78
+ - Variables - Buttons (&& Badges)
79
+ */
80
+ /*
81
+ - Variables - Breadcrumbs
82
+ */
83
+ /*
84
+ - Variables - Classes
85
+ */
86
+ /*
87
+ - Variables - Colors
88
+ */
89
+ /*
90
+ - Variables - Cookiebar
91
+ */
92
+ /*
93
+ - Variables - Card
94
+ */
95
+ /*
96
+ - Variables - Message
97
+ */
98
+ /*
99
+ - Variables - Empty
100
+ */
101
+ /*
102
+ - Variables - Error code
103
+ */
104
+ /*
105
+ - Variables - Grid
106
+ */
107
+ /*
108
+ - Variables - Tiles
109
+ */
110
+ /*
111
+ - Variables - Modal & Prompt
112
+ */
113
+ /**
114
+ * Utilities - Offset
115
+ */
116
+ /*
117
+ - Variables - shadows
118
+ */
119
+ /* "Constants" for general usage */
120
+ /*
121
+ - Variables - Statsbar
122
+ */
123
+ /*
124
+ - Variables - Tabs
125
+ */
126
+ /*
127
+ - Variables - Tooltip
128
+ */
129
+ /*
130
+ - Variables - Loading
131
+ */
132
+ /*
133
+ - Variables - Forms
134
+ */
135
+ /*
136
+ - Variables - Form Autocomplete
137
+ */
138
+ /*
139
+ - Variables - Form Message
140
+ */
141
+ /*
142
+ - Variables - Form label
143
+ */
144
+ /*
145
+ - Variables - Form switch
146
+ */
147
+ /*
148
+ - Variables - Form select
149
+ */
150
+ /*
151
+ - Variables - Form input
152
+ */
153
+ /*
154
+ - Variables - Form multiselect
155
+ */
156
+ /*
157
+ - Variables - Form password power
158
+ */
159
+ /*
160
+ - Variables - Form checkbox & radio
161
+ */
162
+ /*
163
+ - Variables - Form group
164
+ */
165
+ /*
166
+ - Variables - Form file
167
+ */
168
+ /*
169
+ - Variables - Toast Message
170
+ */
171
+ /*
172
+ - Variables - Wizzard
173
+ */
174
+ /*
175
+ - Variables - Stepper
176
+ */
177
+ /*
178
+ - Variables - Side nav
179
+ */
180
+ /*
181
+ - Variables - Grid & Tile
182
+ */
183
+ /*
184
+ - Variables - Pagination
185
+ */
186
+ /*
187
+ - Variables - Nav
188
+ */
189
+ /*
190
+ - Variables - Layout
191
+ */
192
+ .gov-spin-animation,
193
+ .gov-pseudo-spin-animation::before {
194
+ animation: spin 4s linear infinite;
195
+ }
196
+
197
+ @keyframes spin {
198
+ 100% {
199
+ transform: rotate(360deg);
200
+ }
201
+ }
202
+ @keyframes countdown {
203
+ to {
204
+ transform: scaleX(0);
205
+ }
206
+ }
207
+ @keyframes progress {
208
+ 0% {
209
+ background-position: -200px 0;
210
+ }
211
+ 100% {
212
+ background-position: calc(200px + 100%) 0;
213
+ }
214
+ }
215
+ @keyframes pulse {
216
+ 0% {
217
+ opacity: 1;
218
+ }
219
+ 50% {
220
+ opacity: 0.4;
221
+ }
222
+ 100% {
223
+ opacity: 1;
224
+ }
225
+ }
226
+ /*
227
+ - Variables - Accordion
228
+ */
229
+ /*
230
+ - Variables - Buttons (&& Badges)
231
+ */
232
+ /*
233
+ - Variables - Form input
234
+ */
235
+ /*
236
+ - Variables - Form switch
237
+ */
238
+ /*
239
+ - Variables - Form select
240
+ */
241
+ /*
242
+ - Variables - Loading
243
+ */
244
+ /*
245
+ - Variables - Message
246
+ */
247
+ gov-accordion-item[size=xs] {
248
+ min-height: var(--gov-accordion-s-min-height, 3rem);
249
+ }
250
+
251
+ gov-accordion-item[size=s] {
252
+ min-height: var(--gov-accordion-s-min-height, 3rem);
253
+ }
254
+
255
+ gov-accordion-item[size=m] {
256
+ min-height: var(--gov-accordion-m-min-height, 4.5rem);
257
+ }
258
+
259
+ gov-accordion-item[size=l] {
260
+ min-height: var(--gov-accordion-l-min-height, 5.5rem);
261
+ }
262
+
263
+ gov-button[size=xs] {
264
+ min-height: var(--gov-button-xs-min-height, 1.5rem);
265
+ }
266
+
267
+ gov-button[size=s] {
268
+ min-height: var(--gov-button-s-min-height, 2rem);
269
+ }
270
+
271
+ gov-button[size=m] {
272
+ min-height: var(--gov-button-m-min-height, 2.5rem);
273
+ }
274
+
275
+ gov-button[size=l] {
276
+ min-height: var(--gov-button-l-min-height, 3rem);
277
+ }
278
+
279
+ gov-button[size=xl] {
280
+ min-height: var(--gov-button-xl-min-height, 3.5rem);
281
+ }
282
+
283
+ gov-badge[size=xs] {
284
+ min-height: var(--gov-button-xs-min-height, 1.5rem);
285
+ }
286
+
287
+ gov-badge[size=s] {
288
+ min-height: var(--gov-button-s-min-height, 2rem);
289
+ }
290
+
291
+ gov-badge[size=m] {
292
+ min-height: var(--gov-button-m-min-height, 2.5rem);
293
+ }
294
+
295
+ gov-badge[size=l] {
296
+ min-height: var(--gov-button-l-min-height, 3rem);
297
+ }
298
+
299
+ gov-badge[size=xl] {
300
+ min-height: var(--gov-button-xl-min-height, 3.5rem);
301
+ }
302
+
303
+ gov-form-input[size=m] {
304
+ min-height: var(--gov-form-input-core-m-height, 2.5rem);
305
+ }
306
+
307
+ gov-form-input[size=l] {
308
+ min-height: var(--gov-form-input-core-l-height, 3rem);
309
+ }
310
+
311
+ gov-form-input[size=xl] {
312
+ min-height: var(--gov-form-input-core-xl-height, 3.5rem);
313
+ }
314
+
315
+ gov-form-select[size=m] {
316
+ min-height: var(--gov-form-input-core-m-height, 2.5rem);
317
+ }
318
+
319
+ gov-form-select[size=l] {
320
+ min-height: var(--gov-form-input-core-l-height, 3rem);
321
+ }
322
+
323
+ gov-form-select[size=xl] {
324
+ min-height: var(--gov-form-input-core-xl-height, 3.5rem);
325
+ }
326
+
327
+ gov-form-switch[size=xs] {
328
+ min-height: var(--gov-form-switch-xs-indicator-height, 1.25rem);
329
+ }
330
+
331
+ gov-form-switch[size=s] {
332
+ min-height: var(--gov-form-switch-s-indicator-height, 1.375rem);
333
+ }
334
+
335
+ gov-form-switch[size=m] {
336
+ min-height: var(--gov-form-switch-m-indicator-height, 1.5rem);
337
+ }
338
+
339
+ gov-form-switch[size=l] {
340
+ min-height: var(--gov-form-switch-l-indicator-height, 2rem);
341
+ }
342
+
343
+ gov-breadcrumbs {
344
+ min-height: 1.5rem;
345
+ }
346
+ gov-breadcrumbs ul {
347
+ position: relative;
348
+ display: flex;
349
+ width: 100%;
350
+ }
351
+
352
+ gov-skeleton {
353
+ min-height: var(--gov-skeleton-height, 20px);
354
+ }
355
+ gov-skeleton[shape=circle] {
356
+ min-height: var(--gov-skeleton-circle-size, 60px);
357
+ }
358
+
359
+ gov-message {
360
+ min-height: var(--gov-message-box-min-height, 3rem);
361
+ }
362
+
363
+ gov-form-file,
364
+ gov-form-multi-select,
365
+ gov-modal,
366
+ gov-pagination,
367
+ gov-prompt,
368
+ gov-tabs,
369
+ gov-alert,
370
+ gov-loading,
371
+ gov-side-nav-item,
372
+ gov-toast,
373
+ gov-accordion-item,
374
+ gov-card,
375
+ gov-form-checkbox,
376
+ gov-tile,
377
+ gov-wizzard-item,
378
+ gov-accordion,
379
+ gov-app,
380
+ gov-breadcrumbs,
381
+ gov-container,
382
+ gov-cookiebar,
383
+ gov-empty,
384
+ gov-error-code,
385
+ gov-form-control,
386
+ gov-form-group,
387
+ gov-form-label,
388
+ gov-form-password-power,
389
+ gov-form-radio,
390
+ gov-form-search,
391
+ gov-form-switch,
392
+ gov-grid,
393
+ gov-grid-item,
394
+ gov-layout,
395
+ gov-layout-column,
396
+ gov-message,
397
+ gov-nav,
398
+ gov-nav-item,
399
+ gov-side-nav,
400
+ gov-skeleton,
401
+ gov-spacer,
402
+ gov-statsbar,
403
+ gov-statsbar-item,
404
+ gov-stepper,
405
+ gov-stepper-item,
406
+ gov-tabs-item,
407
+ gov-tiles,
408
+ gov-tooltip,
409
+ gov-tooltip-content,
410
+ gov-wizzard,
411
+ gov-attachments-item,
412
+ gov-form-autocomplete,
413
+ gov-attachments,
414
+ gov-form-message,
415
+ gov-form-input,
416
+ gov-form-select,
417
+ gov-badge,
418
+ gov-backdrop,
419
+ gov-icon,
420
+ gov-button {
421
+ visibility: hidden;
422
+ }
423
+ gov-form-file.hydrated,
424
+ gov-form-multi-select.hydrated,
425
+ gov-modal.hydrated,
426
+ gov-pagination.hydrated,
427
+ gov-prompt.hydrated,
428
+ gov-tabs.hydrated,
429
+ gov-alert.hydrated,
430
+ gov-loading.hydrated,
431
+ gov-side-nav-item.hydrated,
432
+ gov-toast.hydrated,
433
+ gov-accordion-item.hydrated,
434
+ gov-card.hydrated,
435
+ gov-form-checkbox.hydrated,
436
+ gov-tile.hydrated,
437
+ gov-wizzard-item.hydrated,
438
+ gov-accordion.hydrated,
439
+ gov-app.hydrated,
440
+ gov-breadcrumbs.hydrated,
441
+ gov-container.hydrated,
442
+ gov-cookiebar.hydrated,
443
+ gov-empty.hydrated,
444
+ gov-error-code.hydrated,
445
+ gov-form-control.hydrated,
446
+ gov-form-group.hydrated,
447
+ gov-form-label.hydrated,
448
+ gov-form-password-power.hydrated,
449
+ gov-form-radio.hydrated,
450
+ gov-form-search.hydrated,
451
+ gov-form-switch.hydrated,
452
+ gov-grid.hydrated,
453
+ gov-grid-item.hydrated,
454
+ gov-layout.hydrated,
455
+ gov-layout-column.hydrated,
456
+ gov-message.hydrated,
457
+ gov-nav.hydrated,
458
+ gov-nav-item.hydrated,
459
+ gov-side-nav.hydrated,
460
+ gov-skeleton.hydrated,
461
+ gov-spacer.hydrated,
462
+ gov-statsbar.hydrated,
463
+ gov-statsbar-item.hydrated,
464
+ gov-stepper.hydrated,
465
+ gov-stepper-item.hydrated,
466
+ gov-tabs-item.hydrated,
467
+ gov-tiles.hydrated,
468
+ gov-tooltip.hydrated,
469
+ gov-tooltip-content.hydrated,
470
+ gov-wizzard.hydrated,
471
+ gov-attachments-item.hydrated,
472
+ gov-form-autocomplete.hydrated,
473
+ gov-attachments.hydrated,
474
+ gov-form-message.hydrated,
475
+ gov-form-input.hydrated,
476
+ gov-form-select.hydrated,
477
+ gov-badge.hydrated,
478
+ gov-backdrop.hydrated,
479
+ gov-icon.hydrated,
480
+ gov-button.hydrated {
481
+ visibility: inherit;
482
+ }
483
+
484
+ /*# sourceMappingURL=critial.css.map */
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name" : "@gov-design-system-ce/components",
3
3
  "description" : "This package includes Gov Design System Web Components and related utilities.",
4
4
  "author": "Zdeněk Vítek",
5
- "version" : "0.0.20",
5
+ "version" : "0.0.21",
6
6
  "license" : "EUPL v1.2 Licensed",
7
7
  "main" : "./dist/index.cjs.js",
8
8
  "module" : "./dist/index.js",