@entur/form 8.2.1 → 8.2.2

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.
Files changed (2) hide show
  1. package/dist/styles.css +489 -489
  2. package/package.json +6 -6
package/dist/styles.css CHANGED
@@ -1,5 +1,202 @@
1
1
  /* DO NOT CHANGE!*/
2
2
  /* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
3
+ .eds-form-control__field-and-feedback-text {
4
+ display: flex;
5
+ flex-direction: column;
6
+ height: -moz-fit-content;
7
+ height: fit-content;
8
+ width: 100%;
9
+ }
10
+ .eds-form-control__field-and-feedback-text--has-tooltip {
11
+ padding-right: 2rem;
12
+ }
13
+ .eds-form-control-wrapper {
14
+ display: flex;
15
+ align-items: center;
16
+ position: relative;
17
+ flex: 1;
18
+ min-height: 3rem;
19
+ padding-left: 1rem;
20
+ padding-right: 1rem;
21
+ background-color: var(--components-form-baseform-standard-fill-default);
22
+ border-radius: 0.25rem;
23
+ border: 0.125rem solid var(--components-form-baseform-standard-border-default);
24
+ box-shadow: 0 0 0 transparent;
25
+ color: var(--components-form-baseform-standard-text-content);
26
+ transition: border-color 0.1s ease-in-out;
27
+ }
28
+ .eds-form-control-wrapper:hover {
29
+ border-color: var(--components-form-baseform-standard-border-interactive);
30
+ }
31
+ .eds-contrast .eds-form-control-wrapper:hover {
32
+ border-color: var(--components-form-baseform-contrast-border-interactive);
33
+ }
34
+ .eds-form-control-wrapper:focus-within {
35
+ border-color: var(--components-form-baseform-standard-border-interactive);
36
+ outline: 2px solid var(--components-form-baseform-standard-border-interactive);
37
+ }
38
+ .eds-contrast .eds-form-control-wrapper:focus-within {
39
+ border-color: var(--components-form-baseform-contrast-border-interactive);
40
+ outline-color: var(--components-form-baseform-contrast-border-interactive);
41
+ }
42
+ .eds-form-control-wrapper ::-moz-placeholder {
43
+ color: var(--components-form-baseform-standard-text-label);
44
+ }
45
+ .eds-form-control-wrapper ::placeholder {
46
+ color: var(--components-form-baseform-standard-text-label);
47
+ }
48
+ .eds-form-control-wrapper--disabled {
49
+ border-color: transparent;
50
+ background-color: var(--components-form-baseform-standard-fill-disabled);
51
+ pointer-events: none;
52
+ color: var(--components-form-baseform-standard-text-disabled);
53
+ }
54
+ .eds-form-control-wrapper--disabled .eds-input-group__label {
55
+ color: var(--components-form-baseform-standard-text-disabled);
56
+ }
57
+ .eds-contrast .eds-form-control-wrapper--disabled {
58
+ border-color: transparent;
59
+ background-color: var(--components-form-baseform-contrast-fill-disabled);
60
+ color: var(--components-form-baseform-contrast-text-disabled);
61
+ }
62
+ .eds-contrast .eds-form-control-wrapper--disabled .eds-input-group__label {
63
+ color: var(--components-form-baseform-contrast-text-disabled);
64
+ }
65
+ .eds-form-control-wrapper--disabled::before, .eds-form-control-wrapper--disabled::after {
66
+ display: none;
67
+ }
68
+ .eds-form-control-wrapper--readonly {
69
+ border-color: transparent;
70
+ pointer-events: none;
71
+ cursor: default;
72
+ background: var(--components-form-baseform-standard-fill-readonly);
73
+ border: var(--components-form-baseform-standard-fill-readonly);
74
+ }
75
+ .eds-contrast .eds-form-control-wrapper--readonly {
76
+ background: var(--components-form-baseform-contrast-fill-readonly);
77
+ border: var(--components-form-baseform-contrast-fill-readonly);
78
+ color: var(--components-form-baseform-contrast-text-description);
79
+ }
80
+ .eds-contrast .eds-form-control-wrapper--readonly .eds-form-control {
81
+ color: var(--components-form-baseform-contrast-text-description);
82
+ }
83
+ .eds-contrast .eds-form-control-wrapper--readonly .eds-input-group__label {
84
+ color: var(--components-form-baseform-contrast-text-description);
85
+ }
86
+ .eds-form-control-wrapper--readonly::before, .eds-form-control-wrapper--readonly::after {
87
+ display: none;
88
+ }
89
+ .eds-form-control-wrapper--size-medium .eds-form-control,
90
+ .eds-form-control-wrapper--size-medium .eds-form-control__append,
91
+ .eds-form-control-wrapper--size-medium .eds-form-control__prepend {
92
+ font-size: 1rem;
93
+ line-height: 1rem;
94
+ }
95
+ .eds-form-control-wrapper--size-large {
96
+ min-height: 4rem;
97
+ }
98
+ .eds-form-control-wrapper--size-large .eds-form-control,
99
+ .eds-form-control-wrapper--size-large .eds-form-control__append,
100
+ .eds-form-control-wrapper--size-large .eds-form-control__prepend {
101
+ font-size: 1.5rem;
102
+ }
103
+ .eds-form-control-wrapper--success {
104
+ border-color: var(--components-form-baseform-standard-border-success);
105
+ }
106
+ .eds-form-control-wrapper--success:focus-within {
107
+ border-color: var(--components-form-baseform-standard-border-success);
108
+ outline-color: var(--components-form-baseform-standard-border-success);
109
+ }
110
+ .eds-contrast .eds-form-control-wrapper--success {
111
+ border-color: var(--components-form-baseform-standard-border-success);
112
+ }
113
+ .eds-contrast .eds-form-control-wrapper--success:focus-within {
114
+ border-color: var(--components-form-baseform-contrast-border-success);
115
+ outline-color: var(--components-form-baseform-contrast-border-success);
116
+ }
117
+ .eds-form-control-wrapper--error, .eds-form-control-wrapper--negative {
118
+ border-color: var(--components-form-baseform-standard-border-negative);
119
+ }
120
+ .eds-form-control-wrapper--error:focus-within, .eds-form-control-wrapper--negative:focus-within {
121
+ border-color: var(--components-form-baseform-standard-border-negative);
122
+ outline-color: var(--components-form-baseform-standard-border-negative);
123
+ }
124
+ .eds-contrast .eds-form-control-wrapper--error, .eds-contrast .eds-form-control-wrapper--negative {
125
+ border-color: var(--components-form-baseform-contrast-border-negative);
126
+ }
127
+ .eds-contrast .eds-form-control-wrapper--error:focus-within, .eds-contrast .eds-form-control-wrapper--negative:focus-within {
128
+ border-color: var(--components-form-baseform-contrast-border-negative);
129
+ outline-color: var(--components-form-baseform-contrast-border-negative);
130
+ }
131
+ .eds-contrast .eds-form-control .eds-tooltip {
132
+ background: var(--components-tooltip-tooltip-standard-fill);
133
+ color: var(--components-tooltip-tooltip-standard-text);
134
+ box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.25);
135
+ }
136
+ .eds-form-control .eds-tooltip::after {
137
+ background: var(--components-tooltip-tooltip-standard-fill);
138
+ }
139
+
140
+ .eds-form-control {
141
+ display: block;
142
+ -webkit-appearance: none;
143
+ -moz-appearance: none;
144
+ appearance: none;
145
+ width: 100%;
146
+ height: 100%;
147
+ padding: 20px 0rem 0.25rem;
148
+ font-family: inherit;
149
+ font-size: 1rem;
150
+ line-height: 1rem;
151
+ border: 0;
152
+ color: var(--components-form-baseform-standard-text-content);
153
+ background-color: transparent;
154
+ }
155
+ .eds-form-control::-moz-placeholder {
156
+ opacity: 0;
157
+ -moz-transition: opacity 0.2s ease-in-out;
158
+ transition: opacity 0.2s ease-in-out;
159
+ }
160
+ .eds-form-control::placeholder {
161
+ opacity: 0;
162
+ transition: opacity 0.2s ease-in-out;
163
+ }
164
+ .eds-form-control:focus {
165
+ outline: none;
166
+ }
167
+ .eds-form-control:focus::-moz-placeholder {
168
+ opacity: 1;
169
+ }
170
+ .eds-form-control:focus::placeholder {
171
+ opacity: 1;
172
+ }
173
+ .eds-form-control__prepend, .eds-form-control__append {
174
+ position: relative;
175
+ line-height: inherit;
176
+ }
177
+ .eds-form-control__prepend--tooltip, .eds-form-control__append--tooltip {
178
+ all: unset;
179
+ position: absolute;
180
+ display: flex;
181
+ align-items: center;
182
+ justify-content: center;
183
+ height: 1.5rem;
184
+ width: 1.5rem;
185
+ right: -2rem;
186
+ border-radius: 100%;
187
+ color: var(--primary-text-color);
188
+ cursor: pointer;
189
+ }
190
+ .eds-form-control__prepend {
191
+ margin-right: 0.75rem;
192
+ margin-left: 0;
193
+ }
194
+ .eds-form-control__append {
195
+ margin-right: 0;
196
+ margin-left: 0.75rem;
197
+ }
198
+ /* DO NOT CHANGE!*/
199
+ /* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
3
200
  .eds-checkbox__container {
4
201
  display: flex;
5
202
  align-items: center;
@@ -141,6 +338,11 @@
141
338
  stroke-dashoffset: 0;
142
339
  }
143
340
  }
341
+ .eds-fieldset {
342
+ margin: 0;
343
+ padding: 0;
344
+ border: 0;
345
+ }
144
346
  /* DO NOT CHANGE!*/
145
347
  /* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
146
348
  .eds-input-group {
@@ -225,319 +427,76 @@
225
427
  }
226
428
  /* DO NOT CHANGE!*/
227
429
  /* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
228
- .eds-form-control__field-and-feedback-text {
229
- display: flex;
230
- flex-direction: column;
231
- height: -moz-fit-content;
232
- height: fit-content;
233
- width: 100%;
234
- }
235
- .eds-form-control__field-and-feedback-text--has-tooltip {
236
- padding-right: 2rem;
237
- }
238
- .eds-form-control-wrapper {
430
+ .eds-feedback-text {
239
431
  display: flex;
240
432
  align-items: center;
241
- position: relative;
242
- flex: 1;
243
- min-height: 3rem;
244
- padding-left: 1rem;
245
- padding-right: 1rem;
246
- background-color: var(--components-form-baseform-standard-fill-default);
247
- border-radius: 0.25rem;
248
- border: 0.125rem solid var(--components-form-baseform-standard-border-default);
249
- box-shadow: 0 0 0 transparent;
250
- color: var(--components-form-baseform-standard-text-content);
251
- transition: border-color 0.1s ease-in-out;
433
+ margin-top: 0.25rem;
252
434
  }
253
- .eds-form-control-wrapper:hover {
254
- border-color: var(--components-form-baseform-standard-border-interactive);
435
+ .eds-feedback-text--info, .eds-feedback-text--information {
436
+ padding-left: calc(1rem + 0.125rem);
255
437
  }
256
- .eds-contrast .eds-form-control-wrapper:hover {
257
- border-color: var(--components-form-baseform-contrast-border-interactive);
438
+ .eds-feedback-text__text {
439
+ color: var(--components-form-feedbacktext-information-standard-text);
258
440
  }
259
- .eds-form-control-wrapper:focus-within {
260
- border-color: var(--components-form-baseform-standard-border-interactive);
261
- outline: 2px solid var(--components-form-baseform-standard-border-interactive);
441
+ .eds-contrast .eds-feedback-text__text {
442
+ color: var(--components-form-feedbacktext-information-contrast-text);
262
443
  }
263
- .eds-contrast .eds-form-control-wrapper:focus-within {
264
- border-color: var(--components-form-baseform-contrast-border-interactive);
265
- outline-color: var(--components-form-baseform-contrast-border-interactive);
444
+
445
+ .eds-feedback-text__icon {
446
+ font-size: 1.5rem;
447
+ min-height: 1.5rem;
448
+ min-width: 1.5rem;
449
+ padding-right: 0.5rem;
450
+ position: relative;
451
+ top: -0.1rem;
266
452
  }
267
- .eds-form-control-wrapper ::-moz-placeholder {
268
- color: var(--components-form-baseform-standard-text-label);
453
+ .eds-feedback-text__icon--success {
454
+ color: var(--components-form-feedbacktext-success-standard-icon-fill);
269
455
  }
270
- .eds-form-control-wrapper ::placeholder {
271
- color: var(--components-form-baseform-standard-text-label);
272
- }
273
- .eds-form-control-wrapper--disabled {
274
- border-color: transparent;
275
- background-color: var(--components-form-baseform-standard-fill-disabled);
276
- pointer-events: none;
277
- color: var(--components-form-baseform-standard-text-disabled);
278
- }
279
- .eds-form-control-wrapper--disabled .eds-input-group__label {
280
- color: var(--components-form-baseform-standard-text-disabled);
281
- }
282
- .eds-contrast .eds-form-control-wrapper--disabled {
283
- border-color: transparent;
284
- background-color: var(--components-form-baseform-contrast-fill-disabled);
285
- color: var(--components-form-baseform-contrast-text-disabled);
286
- }
287
- .eds-contrast .eds-form-control-wrapper--disabled .eds-input-group__label {
288
- color: var(--components-form-baseform-contrast-text-disabled);
289
- }
290
- .eds-form-control-wrapper--disabled::before, .eds-form-control-wrapper--disabled::after {
291
- display: none;
292
- }
293
- .eds-form-control-wrapper--readonly {
294
- border-color: transparent;
295
- pointer-events: none;
296
- cursor: default;
297
- background: var(--components-form-baseform-standard-fill-readonly);
298
- border: var(--components-form-baseform-standard-fill-readonly);
299
- }
300
- .eds-contrast .eds-form-control-wrapper--readonly {
301
- background: var(--components-form-baseform-contrast-fill-readonly);
302
- border: var(--components-form-baseform-contrast-fill-readonly);
303
- color: var(--components-form-baseform-contrast-text-description);
304
- }
305
- .eds-contrast .eds-form-control-wrapper--readonly .eds-form-control {
306
- color: var(--components-form-baseform-contrast-text-description);
307
- }
308
- .eds-contrast .eds-form-control-wrapper--readonly .eds-input-group__label {
309
- color: var(--components-form-baseform-contrast-text-description);
310
- }
311
- .eds-form-control-wrapper--readonly::before, .eds-form-control-wrapper--readonly::after {
312
- display: none;
313
- }
314
- .eds-form-control-wrapper--size-medium .eds-form-control,
315
- .eds-form-control-wrapper--size-medium .eds-form-control__append,
316
- .eds-form-control-wrapper--size-medium .eds-form-control__prepend {
317
- font-size: 1rem;
318
- line-height: 1rem;
319
- }
320
- .eds-form-control-wrapper--size-large {
321
- min-height: 4rem;
322
- }
323
- .eds-form-control-wrapper--size-large .eds-form-control,
324
- .eds-form-control-wrapper--size-large .eds-form-control__append,
325
- .eds-form-control-wrapper--size-large .eds-form-control__prepend {
326
- font-size: 1.5rem;
327
- }
328
- .eds-form-control-wrapper--success {
329
- border-color: var(--components-form-baseform-standard-border-success);
330
- }
331
- .eds-form-control-wrapper--success:focus-within {
332
- border-color: var(--components-form-baseform-standard-border-success);
333
- outline-color: var(--components-form-baseform-standard-border-success);
334
- }
335
- .eds-contrast .eds-form-control-wrapper--success {
336
- border-color: var(--components-form-baseform-standard-border-success);
337
- }
338
- .eds-contrast .eds-form-control-wrapper--success:focus-within {
339
- border-color: var(--components-form-baseform-contrast-border-success);
340
- outline-color: var(--components-form-baseform-contrast-border-success);
341
- }
342
- .eds-form-control-wrapper--error, .eds-form-control-wrapper--negative {
343
- border-color: var(--components-form-baseform-standard-border-negative);
344
- }
345
- .eds-form-control-wrapper--error:focus-within, .eds-form-control-wrapper--negative:focus-within {
346
- border-color: var(--components-form-baseform-standard-border-negative);
347
- outline-color: var(--components-form-baseform-standard-border-negative);
348
- }
349
- .eds-contrast .eds-form-control-wrapper--error, .eds-contrast .eds-form-control-wrapper--negative {
350
- border-color: var(--components-form-baseform-contrast-border-negative);
351
- }
352
- .eds-contrast .eds-form-control-wrapper--error:focus-within, .eds-contrast .eds-form-control-wrapper--negative:focus-within {
353
- border-color: var(--components-form-baseform-contrast-border-negative);
354
- outline-color: var(--components-form-baseform-contrast-border-negative);
355
- }
356
- .eds-contrast .eds-form-control .eds-tooltip {
357
- background: var(--components-tooltip-tooltip-standard-fill);
358
- color: var(--components-tooltip-tooltip-standard-text);
359
- box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.25);
360
- }
361
- .eds-form-control .eds-tooltip::after {
362
- background: var(--components-tooltip-tooltip-standard-fill);
363
- }
364
-
365
- .eds-form-control {
366
- display: block;
367
- -webkit-appearance: none;
368
- -moz-appearance: none;
369
- appearance: none;
370
- width: 100%;
371
- height: 100%;
372
- padding: 20px 0rem 0.25rem;
373
- font-family: inherit;
374
- font-size: 1rem;
375
- line-height: 1rem;
376
- border: 0;
377
- color: var(--components-form-baseform-standard-text-content);
378
- background-color: transparent;
379
- }
380
- .eds-form-control::-moz-placeholder {
381
- opacity: 0;
382
- -moz-transition: opacity 0.2s ease-in-out;
383
- transition: opacity 0.2s ease-in-out;
384
- }
385
- .eds-form-control::placeholder {
386
- opacity: 0;
387
- transition: opacity 0.2s ease-in-out;
388
- }
389
- .eds-form-control:focus {
390
- outline: none;
391
- }
392
- .eds-form-control:focus::-moz-placeholder {
393
- opacity: 1;
394
- }
395
- .eds-form-control:focus::placeholder {
396
- opacity: 1;
397
- }
398
- .eds-form-control__prepend, .eds-form-control__append {
399
- position: relative;
400
- line-height: inherit;
401
- }
402
- .eds-form-control__prepend--tooltip, .eds-form-control__append--tooltip {
403
- all: unset;
404
- position: absolute;
405
- display: flex;
406
- align-items: center;
407
- justify-content: center;
408
- height: 1.5rem;
409
- width: 1.5rem;
410
- right: -2rem;
411
- border-radius: 100%;
412
- color: var(--primary-text-color);
413
- cursor: pointer;
414
- }
415
- .eds-form-control__prepend {
416
- margin-right: 0.75rem;
417
- margin-left: 0;
418
- }
419
- .eds-form-control__append {
420
- margin-right: 0;
421
- margin-left: 0.75rem;
422
- }
423
- /* DO NOT CHANGE!*/
424
- /* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
425
- .eds-switch {
426
- cursor: pointer;
427
- -webkit-user-select: none;
428
- -moz-user-select: none;
429
- user-select: none;
430
- padding: 0.5rem 0;
431
- width: -moz-fit-content;
432
- width: fit-content;
433
- }
434
- .eds-switch input {
435
- opacity: 0;
436
- pointer-events: none;
437
- position: absolute;
438
- }
439
- .eds-switch--right {
440
- display: flex;
441
- flex-direction: row;
442
- align-items: center;
443
- }
444
- .eds-switch--bottom {
445
- display: flex;
446
- flex-direction: column;
447
- align-items: center;
448
- }
449
- .eds-switch__circle {
450
- border-radius: 50%;
451
- height: 1.25rem;
452
- width: 1.25rem;
453
- content: "";
454
- display: flex;
455
- align-items: center;
456
- justify-content: center;
457
- transition: left 0.1s ease-in-out, background-color 0.1s ease-in-out;
458
- box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.25);
459
- background-color: var(--components-form-switch-standard-switch);
460
- top: 0.125rem;
461
- left: 0.125rem;
462
- position: relative;
463
- }
464
- .eds-switch__switch--large .eds-switch__circle {
465
- height: 1.75rem;
466
- width: 1.75rem;
467
- }
468
- .eds-contrast .eds-switch__circle {
469
- box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.5);
470
- }
471
- .eds-switch__switch {
472
- position: relative;
473
- background-color: var(--components-form-switch-standard-fill-false);
474
- content: "";
475
- display: block;
476
- transition: background-color 0.1s ease-in-out;
477
- height: 1.5rem;
478
- width: 3rem;
479
- border-radius: 1.5rem;
480
- box-shadow: inset 0px 2px 2px -1px rgba(0, 0, 0, 0.1);
481
- }
482
- .eds-contrast .eds-switch__switch {
483
- background-color: var(--components-form-switch-contrast-fill-false);
484
- }
485
- .eds-switch--right .eds-switch__switch {
486
- margin-right: 0.75rem;
487
- }
488
- .eds-switch__switch svg g,
489
- .eds-switch__switch path {
490
- fill: var(--components-form-switch-standard-icon-false);
491
- transition: fill ease-in-out 0.1s;
456
+ .eds-feedback-text__icon--success circle {
457
+ fill: var(--components-form-feedbacktext-success-standard-icon-symbol);
492
458
  }
493
- .eds-contrast .eds-switch__switch svg g,
494
- .eds-contrast .eds-switch__switch path {
495
- fill: var(--components-form-switch-contrast-icon-false);
459
+ .eds-contrast .eds-feedback-text__icon--success {
460
+ color: var(--components-form-feedbacktext-success-contrast-icon-fill);
496
461
  }
497
- :checked + .eds-switch__switch {
498
- background-color: var(--eds-switch-color);
462
+ .eds-contrast .eds-feedback-text__icon--success circle {
463
+ fill: var(--components-form-feedbacktext-success-contrast-icon-symbol);
499
464
  }
500
- :checked + .eds-switch__switch .eds-switch__circle {
501
- left: 1.625rem;
465
+ .eds-feedback-text__icon--error, .eds-feedback-text__icon--negative {
466
+ color: var(--components-form-feedbacktext-negative-standard-icon-fill);
502
467
  }
503
- :checked + .eds-switch__switch .eds-switch__circle svg g,
504
- :checked + .eds-switch__switch .eds-switch__circle path {
505
- fill: var(--eds-switch-color);
468
+ .eds-feedback-text__icon--error circle, .eds-feedback-text__icon--negative circle {
469
+ fill: var(--components-form-feedbacktext-negative-standard-icon-symbol);
506
470
  }
507
- .eds-contrast :checked + .eds-switch__switch {
508
- background-color: var(--eds-switch-contrast-color);
471
+ .eds-contrast .eds-feedback-text__icon--error, .eds-contrast .eds-feedback-text__icon--negative {
472
+ color: var(--components-form-feedbacktext-negative-contrast-icon-fill);
509
473
  }
510
- :focus-visible + .eds-switch__switch {
511
- outline: 2px solid #181c56;
512
- outline-color: var(--basecolors-stroke-focus-standard);
513
- outline-offset: 0.125rem;
474
+ .eds-contrast .eds-feedback-text__icon--error circle, .eds-contrast .eds-feedback-text__icon--negative circle {
475
+ fill: var(--components-form-feedbacktext-negative-contrast-icon-symbol);
514
476
  }
515
- .eds-contrast :focus-visible + .eds-switch__switch {
516
- outline-color: var(--basecolors-stroke-focus-contrast);
477
+ .eds-feedback-text__icon--info, .eds-feedback-text__icon--information {
478
+ color: var(--components-form-feedbacktext-information-standard-icon-fill);
517
479
  }
518
- .eds-switch__switch--large {
519
- width: 3.75rem;
520
- height: 2rem;
521
- border-radius: 3.75rem;
480
+ .eds-feedback-text__icon--info circle, .eds-feedback-text__icon--information circle {
481
+ fill: var(--components-form-feedbacktext-information-standard-icon-symbol);
522
482
  }
523
- :checked + .eds-switch__switch--large .eds-switch__circle {
524
- left: 1.875rem;
483
+ .eds-contrast .eds-feedback-text__icon--info, .eds-contrast .eds-feedback-text__icon--information {
484
+ color: var(--components-form-feedbacktext-information-contrast-icon-fill);
525
485
  }
526
- .eds-switch__switch--large svg {
527
- position: relative;
528
- right: 0.05rem;
486
+ .eds-contrast .eds-feedback-text__icon--info circle, .eds-contrast .eds-feedback-text__icon--information circle {
487
+ fill: var(--components-form-feedbacktext-information-contrast-icon-symbol);
529
488
  }
530
- .eds-switch__label--large--right {
531
- font-size: 1rem;
489
+ .eds-feedback-text__icon--warning {
490
+ color: var(--components-form-feedbacktext-warning-standard-icon-fill);
532
491
  }
533
- .eds-switch__label--large--bottom {
534
- font-size: 0.875rem;
492
+ .eds-feedback-text__icon--warning .svg-exclamation {
493
+ fill: var(--components-form-feedbacktext-warning-standard-icon-symbol);
535
494
  }
536
- .eds-switch__label--medium--right {
537
- font-size: 0.875rem;
495
+ .eds-contrast .eds-feedback-text__icon--warning {
496
+ color: var(--components-form-feedbacktext-warning-contrast-icon-fill);
538
497
  }
539
- .eds-switch__label--medium--bottom {
540
- font-size: 0.75rem;
498
+ .eds-contrast .eds-feedback-text__icon--warning circle {
499
+ fill: var(--components-form-feedbacktext-warning-contrast-icon-symbol);
541
500
  }
542
501
  /* DO NOT CHANGE!*/
543
502
  /* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
@@ -623,81 +582,270 @@
623
582
  }
624
583
  /* DO NOT CHANGE!*/
625
584
  /* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
626
- .eds-feedback-text {
585
+ .eds-input-panel:has(:focus-visible) .eds-input-panel__container {
586
+ outline: 2px solid #181c56;
587
+ outline-color: var(--basecolors-stroke-focus-standard);
588
+ outline-offset: 0.125rem;
589
+ }
590
+ .eds-contrast .eds-input-panel:has(:focus-visible) .eds-input-panel__container {
591
+ outline-color: var(--basecolors-stroke-focus-contrast);
592
+ }
593
+ .eds-input-panel > input {
594
+ position: absolute;
595
+ opacity: 0;
596
+ cursor: pointer;
597
+ height: 0;
598
+ width: 0;
599
+ }
600
+ .eds-input-panel > input:checked + .eds-input-panel__container {
601
+ border-color: var(--components-form-basepanel-standard-border-selected);
602
+ background: var(--components-form-basepanel-standard-fill-selected);
603
+ }
604
+ .eds-contrast .eds-input-panel > input:checked + .eds-input-panel__container {
605
+ border-color: var(--components-form-basepanel-contrast-border-selected);
606
+ background: var(--components-form-basepanel-contrast-fill-selected);
607
+ }
608
+ .eds-input-panel > input:checked + .eds-input-panel__container .eds-form-component--radio__circle {
609
+ width: 0.75rem;
610
+ height: 0.75rem;
611
+ }
612
+ .eds-contrast .eds-input-panel > input:checked + .eds-input-panel__container .eds-form-component--radio__circle {
613
+ background-color: var(--components-form-radio-contrast-icon);
614
+ }
615
+ .eds-input-panel > input:checked + .eds-input-panel__container:hover {
616
+ background-color: var(--components-form-basepanel-standard-fill-hover);
617
+ /* The following styling is needed to sync the inner checkbox/radiobutton's
618
+ hover state styling with the inputPanel container */
619
+ }
620
+ .eds-contrast .eds-input-panel > input:checked + .eds-input-panel__container:hover {
621
+ background-color: var(--components-form-basepanel-contrast-fill-hover);
622
+ }
623
+ .eds-input-panel > input:checked + .eds-input-panel__container:hover .eds-form-component--radio__radio {
624
+ background-color: var(--components-form-basepanel-standard-fill-hover);
625
+ border-color: var(--components-form-basepanel-standard-border-selected);
626
+ }
627
+ .eds-contrast .eds-input-panel > input:checked + .eds-input-panel__container:hover .eds-form-component--radio__radio {
628
+ background-color: var(--components-form-basepanel-contrast-fill-hover);
629
+ border-color: var(--components-form-basepanel-contrast-border-selected);
630
+ }
631
+ .eds-input-panel > input:checked + .eds-input-panel__container:hover .eds-checkbox__icon {
632
+ border-color: transparent;
633
+ }
634
+ .eds-contrast .eds-input-panel > input:checked + .eds-input-panel__container:hover .eds-checkbox__icon {
635
+ background-color: var(--components-form-checkbox-contrast-fill-selectedhover);
636
+ }
637
+ .eds-input-panel__container {
638
+ background: var(--components-form-basepanel-standard-fill-default);
639
+ border: 0.125rem solid var(--components-form-basepanel-standard-border-default);
640
+ color: var(--components-form-basepanel-standard-text-accent);
641
+ border-radius: 0.25rem;
627
642
  display: flex;
643
+ flex-direction: column;
644
+ justify-content: flex-start;
645
+ min-width: 20rem;
646
+ position: relative;
647
+ padding: 1rem;
648
+ -webkit-user-select: none;
649
+ -moz-user-select: none;
650
+ user-select: none;
651
+ width: -moz-fit-content;
652
+ width: fit-content;
653
+ transition: background ease-in-out 0.1s, border-color ease-in-out 0.1s;
654
+ }
655
+ .eds-contrast .eds-input-panel__container {
656
+ background-color: var(--components-form-basepanel-contrast-fill-default);
657
+ border-color: var(--components-form-basepanel-contrast-border-default);
658
+ color: var(--components-form-basepanel-contrast-text-accent);
659
+ }
660
+ .eds-input-panel__container:hover {
661
+ background-color: var(--components-form-basepanel-standard-fill-hover);
662
+ /* The following styling is needed to sync the inner checkbox/radiobutton's
663
+ hover state styling with the inputPanel container */
664
+ }
665
+ .eds-contrast .eds-input-panel__container:hover {
666
+ background-color: var(--components-form-basepanel-contrast-fill-hover);
667
+ }
668
+ .eds-input-panel__container:hover .eds-checkbox__icon,
669
+ .eds-input-panel__container:hover .eds-form-component--radio__radio {
670
+ background-color: var(--components-form-basepanel-standard-fill-hover);
671
+ border-color: var(--components-form-basepanel-standard-border-selected);
672
+ }
673
+ .eds-contrast .eds-input-panel__container:hover .eds-checkbox__icon,
674
+ .eds-contrast .eds-input-panel__container:hover .eds-form-component--radio__radio {
675
+ background-color: var(--components-form-basepanel-contrast-fill-hover);
676
+ border-color: var(--components-form-basepanel-contrast-border-selected);
677
+ }
678
+ input:disabled + .eds-input-panel__container {
679
+ background: var(--components-form-basepanel-standard-fill-disabled);
680
+ border-color: var(--components-form-basepanel-standard-border-disabled);
681
+ color: var(--components-form-basepanel-standard-text-disabled);
682
+ cursor: not-allowed;
683
+ }
684
+ .eds-contrast input:disabled + .eds-input-panel__container {
685
+ background: var(--components-form-basepanel-contrast-fill-disabled);
686
+ border-style: dashed;
687
+ border-color: var(--components-form-basepanel-contrast-border-disabled);
688
+ color: var(--components-form-basepanel-contrast-text-disabled);
689
+ }
690
+ .eds-input-panel__container .eds-checkbox__icon,
691
+ .eds-input-panel__container .eds-checkbox__icon .eds-checkbox__icon,
692
+ .eds-input-panel__container .eds-form-component--radio__radio {
693
+ width: 1.5rem;
694
+ height: 1.5rem;
695
+ margin-right: 0;
696
+ }
697
+ .eds-input-panel--medium .eds-input-panel__title {
698
+ font-size: 1rem;
699
+ font-weight: 500;
700
+ }
701
+ .eds-input-panel--medium.eds-input-panel__container {
702
+ padding-bottom: 1rem;
703
+ min-height: 3.75rem;
704
+ }
705
+ .eds-input-panel--large.eds-input-panel__container {
706
+ min-height: 6rem;
707
+ }
708
+ .eds-input-panel--large .eds-input-panel__title {
709
+ font-size: 1.25rem;
710
+ font-weight: 500;
711
+ line-height: 1.875rem;
712
+ }
713
+ .eds-input-panel__title-wrapper {
714
+ display: flex;
715
+ justify-content: space-between;
628
716
  align-items: center;
717
+ }
718
+ .eds-input-panel__secondary-label-and-icon-wrapper {
719
+ display: flex;
720
+ justify-content: center;
721
+ align-items: center;
722
+ gap: 0.75rem;
723
+ }
724
+ .eds-input-panel__secondary-label-and-icon-wrapper .eds-checkbox__container {
725
+ margin: 0;
726
+ }
727
+ .eds-input-panel__additional-content {
629
728
  margin-top: 0.25rem;
729
+ word-wrap: break-word;
630
730
  }
631
- .eds-feedback-text--info, .eds-feedback-text--information {
632
- padding-left: calc(1rem + 0.125rem);
731
+ /* DO NOT CHANGE!*/
732
+ /* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
733
+ .eds-switch {
734
+ cursor: pointer;
735
+ -webkit-user-select: none;
736
+ -moz-user-select: none;
737
+ user-select: none;
738
+ padding: 0.5rem 0;
739
+ width: -moz-fit-content;
740
+ width: fit-content;
741
+ }
742
+ .eds-switch input {
743
+ opacity: 0;
744
+ pointer-events: none;
745
+ position: absolute;
746
+ }
747
+ .eds-switch--right {
748
+ display: flex;
749
+ flex-direction: row;
750
+ align-items: center;
751
+ }
752
+ .eds-switch--bottom {
753
+ display: flex;
754
+ flex-direction: column;
755
+ align-items: center;
756
+ }
757
+ .eds-switch__circle {
758
+ border-radius: 50%;
759
+ height: 1.25rem;
760
+ width: 1.25rem;
761
+ content: "";
762
+ display: flex;
763
+ align-items: center;
764
+ justify-content: center;
765
+ transition: left 0.1s ease-in-out, background-color 0.1s ease-in-out;
766
+ box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.25);
767
+ background-color: var(--components-form-switch-standard-switch);
768
+ top: 0.125rem;
769
+ left: 0.125rem;
770
+ position: relative;
633
771
  }
634
- .eds-feedback-text__text {
635
- color: var(--components-form-feedbacktext-information-standard-text);
772
+ .eds-switch__switch--large .eds-switch__circle {
773
+ height: 1.75rem;
774
+ width: 1.75rem;
636
775
  }
637
- .eds-contrast .eds-feedback-text__text {
638
- color: var(--components-form-feedbacktext-information-contrast-text);
776
+ .eds-contrast .eds-switch__circle {
777
+ box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.5);
639
778
  }
640
-
641
- .eds-feedback-text__icon {
642
- font-size: 1.5rem;
643
- min-height: 1.5rem;
644
- min-width: 1.5rem;
645
- padding-right: 0.5rem;
779
+ .eds-switch__switch {
646
780
  position: relative;
647
- top: -0.1rem;
781
+ background-color: var(--components-form-switch-standard-fill-false);
782
+ content: "";
783
+ display: block;
784
+ transition: background-color 0.1s ease-in-out;
785
+ height: 1.5rem;
786
+ width: 3rem;
787
+ border-radius: 1.5rem;
788
+ box-shadow: inset 0px 2px 2px -1px rgba(0, 0, 0, 0.1);
648
789
  }
649
- .eds-feedback-text__icon--success {
650
- color: var(--components-form-feedbacktext-success-standard-icon-fill);
790
+ .eds-contrast .eds-switch__switch {
791
+ background-color: var(--components-form-switch-contrast-fill-false);
651
792
  }
652
- .eds-feedback-text__icon--success circle {
653
- fill: var(--components-form-feedbacktext-success-standard-icon-symbol);
793
+ .eds-switch--right .eds-switch__switch {
794
+ margin-right: 0.75rem;
654
795
  }
655
- .eds-contrast .eds-feedback-text__icon--success {
656
- color: var(--components-form-feedbacktext-success-contrast-icon-fill);
796
+ .eds-switch__switch svg g,
797
+ .eds-switch__switch path {
798
+ fill: var(--components-form-switch-standard-icon-false);
799
+ transition: fill ease-in-out 0.1s;
657
800
  }
658
- .eds-contrast .eds-feedback-text__icon--success circle {
659
- fill: var(--components-form-feedbacktext-success-contrast-icon-symbol);
801
+ .eds-contrast .eds-switch__switch svg g,
802
+ .eds-contrast .eds-switch__switch path {
803
+ fill: var(--components-form-switch-contrast-icon-false);
660
804
  }
661
- .eds-feedback-text__icon--error, .eds-feedback-text__icon--negative {
662
- color: var(--components-form-feedbacktext-negative-standard-icon-fill);
805
+ :checked + .eds-switch__switch {
806
+ background-color: var(--eds-switch-color);
663
807
  }
664
- .eds-feedback-text__icon--error circle, .eds-feedback-text__icon--negative circle {
665
- fill: var(--components-form-feedbacktext-negative-standard-icon-symbol);
808
+ :checked + .eds-switch__switch .eds-switch__circle {
809
+ left: 1.625rem;
666
810
  }
667
- .eds-contrast .eds-feedback-text__icon--error, .eds-contrast .eds-feedback-text__icon--negative {
668
- color: var(--components-form-feedbacktext-negative-contrast-icon-fill);
811
+ :checked + .eds-switch__switch .eds-switch__circle svg g,
812
+ :checked + .eds-switch__switch .eds-switch__circle path {
813
+ fill: var(--eds-switch-color);
669
814
  }
670
- .eds-contrast .eds-feedback-text__icon--error circle, .eds-contrast .eds-feedback-text__icon--negative circle {
671
- fill: var(--components-form-feedbacktext-negative-contrast-icon-symbol);
815
+ .eds-contrast :checked + .eds-switch__switch {
816
+ background-color: var(--eds-switch-contrast-color);
672
817
  }
673
- .eds-feedback-text__icon--info, .eds-feedback-text__icon--information {
674
- color: var(--components-form-feedbacktext-information-standard-icon-fill);
818
+ :focus-visible + .eds-switch__switch {
819
+ outline: 2px solid #181c56;
820
+ outline-color: var(--basecolors-stroke-focus-standard);
821
+ outline-offset: 0.125rem;
675
822
  }
676
- .eds-feedback-text__icon--info circle, .eds-feedback-text__icon--information circle {
677
- fill: var(--components-form-feedbacktext-information-standard-icon-symbol);
823
+ .eds-contrast :focus-visible + .eds-switch__switch {
824
+ outline-color: var(--basecolors-stroke-focus-contrast);
678
825
  }
679
- .eds-contrast .eds-feedback-text__icon--info, .eds-contrast .eds-feedback-text__icon--information {
680
- color: var(--components-form-feedbacktext-information-contrast-icon-fill);
826
+ .eds-switch__switch--large {
827
+ width: 3.75rem;
828
+ height: 2rem;
829
+ border-radius: 3.75rem;
681
830
  }
682
- .eds-contrast .eds-feedback-text__icon--info circle, .eds-contrast .eds-feedback-text__icon--information circle {
683
- fill: var(--components-form-feedbacktext-information-contrast-icon-symbol);
831
+ :checked + .eds-switch__switch--large .eds-switch__circle {
832
+ left: 1.875rem;
684
833
  }
685
- .eds-feedback-text__icon--warning {
686
- color: var(--components-form-feedbacktext-warning-standard-icon-fill);
834
+ .eds-switch__switch--large svg {
835
+ position: relative;
836
+ right: 0.05rem;
687
837
  }
688
- .eds-feedback-text__icon--warning .svg-exclamation {
689
- fill: var(--components-form-feedbacktext-warning-standard-icon-symbol);
838
+ .eds-switch__label--large--right {
839
+ font-size: 1rem;
690
840
  }
691
- .eds-contrast .eds-feedback-text__icon--warning {
692
- color: var(--components-form-feedbacktext-warning-contrast-icon-fill);
841
+ .eds-switch__label--large--bottom {
842
+ font-size: 0.875rem;
693
843
  }
694
- .eds-contrast .eds-feedback-text__icon--warning circle {
695
- fill: var(--components-form-feedbacktext-warning-contrast-icon-symbol);
844
+ .eds-switch__label--medium--right {
845
+ font-size: 0.875rem;
696
846
  }
697
- .eds-fieldset {
698
- margin: 0;
699
- padding: 0;
700
- border: 0;
847
+ .eds-switch__label--medium--bottom {
848
+ font-size: 0.75rem;
701
849
  }
702
850
  /* DO NOT CHANGE!*/
703
851
  /* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
@@ -865,154 +1013,6 @@
865
1013
  }
866
1014
  /* DO NOT CHANGE!*/
867
1015
  /* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
868
- .eds-input-panel:has(:focus-visible) .eds-input-panel__container {
869
- outline: 2px solid #181c56;
870
- outline-color: var(--basecolors-stroke-focus-standard);
871
- outline-offset: 0.125rem;
872
- }
873
- .eds-contrast .eds-input-panel:has(:focus-visible) .eds-input-panel__container {
874
- outline-color: var(--basecolors-stroke-focus-contrast);
875
- }
876
- .eds-input-panel > input {
877
- position: absolute;
878
- opacity: 0;
879
- cursor: pointer;
880
- height: 0;
881
- width: 0;
882
- }
883
- .eds-input-panel > input:checked + .eds-input-panel__container {
884
- border-color: var(--components-form-basepanel-standard-border-selected);
885
- background: var(--components-form-basepanel-standard-fill-selected);
886
- }
887
- .eds-contrast .eds-input-panel > input:checked + .eds-input-panel__container {
888
- border-color: var(--components-form-basepanel-contrast-border-selected);
889
- background: var(--components-form-basepanel-contrast-fill-selected);
890
- }
891
- .eds-input-panel > input:checked + .eds-input-panel__container .eds-form-component--radio__circle {
892
- width: 0.75rem;
893
- height: 0.75rem;
894
- }
895
- .eds-contrast .eds-input-panel > input:checked + .eds-input-panel__container .eds-form-component--radio__circle {
896
- background-color: var(--components-form-radio-contrast-icon);
897
- }
898
- .eds-input-panel > input:checked + .eds-input-panel__container:hover {
899
- background-color: var(--components-form-basepanel-standard-fill-hover);
900
- /* The following styling is needed to sync the inner checkbox/radiobutton's
901
- hover state styling with the inputPanel container */
902
- }
903
- .eds-contrast .eds-input-panel > input:checked + .eds-input-panel__container:hover {
904
- background-color: var(--components-form-basepanel-contrast-fill-hover);
905
- }
906
- .eds-input-panel > input:checked + .eds-input-panel__container:hover .eds-form-component--radio__radio {
907
- background-color: var(--components-form-basepanel-standard-fill-hover);
908
- border-color: var(--components-form-basepanel-standard-border-selected);
909
- }
910
- .eds-contrast .eds-input-panel > input:checked + .eds-input-panel__container:hover .eds-form-component--radio__radio {
911
- background-color: var(--components-form-basepanel-contrast-fill-hover);
912
- border-color: var(--components-form-basepanel-contrast-border-selected);
913
- }
914
- .eds-input-panel > input:checked + .eds-input-panel__container:hover .eds-checkbox__icon {
915
- border-color: transparent;
916
- }
917
- .eds-contrast .eds-input-panel > input:checked + .eds-input-panel__container:hover .eds-checkbox__icon {
918
- background-color: var(--components-form-checkbox-contrast-fill-selectedhover);
919
- }
920
- .eds-input-panel__container {
921
- background: var(--components-form-basepanel-standard-fill-default);
922
- border: 0.125rem solid var(--components-form-basepanel-standard-border-default);
923
- color: var(--components-form-basepanel-standard-text-accent);
924
- border-radius: 0.25rem;
925
- display: flex;
926
- flex-direction: column;
927
- justify-content: flex-start;
928
- min-width: 20rem;
929
- position: relative;
930
- padding: 1rem;
931
- -webkit-user-select: none;
932
- -moz-user-select: none;
933
- user-select: none;
934
- width: -moz-fit-content;
935
- width: fit-content;
936
- transition: background ease-in-out 0.1s, border-color ease-in-out 0.1s;
937
- }
938
- .eds-contrast .eds-input-panel__container {
939
- background-color: var(--components-form-basepanel-contrast-fill-default);
940
- border-color: var(--components-form-basepanel-contrast-border-default);
941
- color: var(--components-form-basepanel-contrast-text-accent);
942
- }
943
- .eds-input-panel__container:hover {
944
- background-color: var(--components-form-basepanel-standard-fill-hover);
945
- /* The following styling is needed to sync the inner checkbox/radiobutton's
946
- hover state styling with the inputPanel container */
947
- }
948
- .eds-contrast .eds-input-panel__container:hover {
949
- background-color: var(--components-form-basepanel-contrast-fill-hover);
950
- }
951
- .eds-input-panel__container:hover .eds-checkbox__icon,
952
- .eds-input-panel__container:hover .eds-form-component--radio__radio {
953
- background-color: var(--components-form-basepanel-standard-fill-hover);
954
- border-color: var(--components-form-basepanel-standard-border-selected);
955
- }
956
- .eds-contrast .eds-input-panel__container:hover .eds-checkbox__icon,
957
- .eds-contrast .eds-input-panel__container:hover .eds-form-component--radio__radio {
958
- background-color: var(--components-form-basepanel-contrast-fill-hover);
959
- border-color: var(--components-form-basepanel-contrast-border-selected);
960
- }
961
- input:disabled + .eds-input-panel__container {
962
- background: var(--components-form-basepanel-standard-fill-disabled);
963
- border-color: var(--components-form-basepanel-standard-border-disabled);
964
- color: var(--components-form-basepanel-standard-text-disabled);
965
- cursor: not-allowed;
966
- }
967
- .eds-contrast input:disabled + .eds-input-panel__container {
968
- background: var(--components-form-basepanel-contrast-fill-disabled);
969
- border-style: dashed;
970
- border-color: var(--components-form-basepanel-contrast-border-disabled);
971
- color: var(--components-form-basepanel-contrast-text-disabled);
972
- }
973
- .eds-input-panel__container .eds-checkbox__icon,
974
- .eds-input-panel__container .eds-checkbox__icon .eds-checkbox__icon,
975
- .eds-input-panel__container .eds-form-component--radio__radio {
976
- width: 1.5rem;
977
- height: 1.5rem;
978
- margin-right: 0;
979
- }
980
- .eds-input-panel--medium .eds-input-panel__title {
981
- font-size: 1rem;
982
- font-weight: 500;
983
- }
984
- .eds-input-panel--medium.eds-input-panel__container {
985
- padding-bottom: 1rem;
986
- min-height: 3.75rem;
987
- }
988
- .eds-input-panel--large.eds-input-panel__container {
989
- min-height: 6rem;
990
- }
991
- .eds-input-panel--large .eds-input-panel__title {
992
- font-size: 1.25rem;
993
- font-weight: 500;
994
- line-height: 1.875rem;
995
- }
996
- .eds-input-panel__title-wrapper {
997
- display: flex;
998
- justify-content: space-between;
999
- align-items: center;
1000
- }
1001
- .eds-input-panel__secondary-label-and-icon-wrapper {
1002
- display: flex;
1003
- justify-content: center;
1004
- align-items: center;
1005
- gap: 0.75rem;
1006
- }
1007
- .eds-input-panel__secondary-label-and-icon-wrapper .eds-checkbox__container {
1008
- margin: 0;
1009
- }
1010
- .eds-input-panel__additional-content {
1011
- margin-top: 0.25rem;
1012
- word-wrap: break-word;
1013
- }
1014
- /* DO NOT CHANGE!*/
1015
- /* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
1016
1016
  .eds-textfield__clear-button {
1017
1017
  background: none;
1018
1018
  border: none;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@entur/form",
3
- "version": "8.2.1",
3
+ "version": "8.2.2",
4
4
  "license": "EUPL-1.2",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/form.esm.js",
@@ -27,16 +27,16 @@
27
27
  "react-dom": ">=16.8.0"
28
28
  },
29
29
  "dependencies": {
30
- "@entur/button": "^3.3.1",
31
- "@entur/icons": "^7.6.1",
30
+ "@entur/button": "^3.3.2",
31
+ "@entur/icons": "^7.7.0",
32
32
  "@entur/tokens": "^3.17.6",
33
- "@entur/tooltip": "^5.2.1",
34
- "@entur/typography": "^1.9.1",
33
+ "@entur/tooltip": "^5.2.2",
34
+ "@entur/typography": "^1.9.2",
35
35
  "@entur/utils": "^0.12.2",
36
36
  "classnames": "^2.3.1"
37
37
  },
38
38
  "devDependencies": {
39
39
  "dts-cli": "2.0.5"
40
40
  },
41
- "gitHead": "d7798b768ab73d677162cebcf3edd58680dc626f"
41
+ "gitHead": "7c03f458e9c34f5e0fd4f2d23c8eb6a6e47fb669"
42
42
  }