@entur/dropdown 4.0.0-beta.1 → 4.0.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/LICENSE.md +0 -71
- package/README.md +2 -2
- package/dist/BaseDropdown.d.ts +1 -1
- package/dist/DownshiftProvider.d.ts +1 -1
- package/dist/Dropdown.d.ts +3 -3
- package/dist/DropdownInputGroup.d.ts +1 -1
- package/dist/DropdownList.d.ts +1 -1
- package/dist/DropdownLoadingDots.d.ts +1 -1
- package/dist/MultiSelect.d.ts +2 -2
- package/dist/NativeDropdown.d.ts +1 -1
- package/dist/RegularDropdown.d.ts +1 -1
- package/dist/SearchableDropdown.d.ts +1 -1
- package/dist/beta/DropdownList.d.ts +17 -0
- package/dist/beta/SearchableDropdown.d.ts +25 -3
- package/dist/dropdown.cjs.development.js +676 -1186
- package/dist/dropdown.cjs.development.js.map +1 -1
- package/dist/dropdown.cjs.production.min.js +1 -1
- package/dist/dropdown.cjs.production.min.js.map +1 -1
- package/dist/dropdown.esm.js +677 -1187
- package/dist/dropdown.esm.js.map +1 -1
- package/dist/styles.css +116 -156
- package/dist/useNormalizedItems.d.ts +2 -2
- package/dist/useResolvedItems.d.ts +3 -3
- package/package.json +13 -12
- package/CHANGELOG.md +0 -586
package/dist/styles.css
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
:root {
|
|
2
2
|
--eds-dropdown: 1;
|
|
3
|
-
}
|
|
3
|
+
}
|
|
4
|
+
/* DO NOT CHANGE!*/
|
|
4
5
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
5
6
|
.eds-dropdown + .eds-form-control__append {
|
|
6
7
|
margin-left: -2em;
|
|
@@ -13,7 +14,72 @@
|
|
|
13
14
|
}
|
|
14
15
|
.eds-contrast .eds-dropdown option {
|
|
15
16
|
color: #181c56;
|
|
16
|
-
}
|
|
17
|
+
}
|
|
18
|
+
/* DO NOT CHANGE!*/
|
|
19
|
+
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
20
|
+
.eds-dropdown-list {
|
|
21
|
+
border-radius: 0.25rem;
|
|
22
|
+
box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.25);
|
|
23
|
+
display: none;
|
|
24
|
+
list-style: none;
|
|
25
|
+
margin: 0;
|
|
26
|
+
max-height: 50vh;
|
|
27
|
+
padding: 0;
|
|
28
|
+
position: relative;
|
|
29
|
+
overflow-y: auto;
|
|
30
|
+
width: 100%;
|
|
31
|
+
z-index: 20;
|
|
32
|
+
}
|
|
33
|
+
.eds-contrast .eds-dropdown-list {
|
|
34
|
+
box-shadow: 0 0.0625rem 0.1875rem rgb(57, 61, 121);
|
|
35
|
+
}
|
|
36
|
+
.eds-dropdown-list--open {
|
|
37
|
+
display: inline-block;
|
|
38
|
+
}
|
|
39
|
+
.eds-dropdown-list:focus {
|
|
40
|
+
outline: none;
|
|
41
|
+
}
|
|
42
|
+
@media all and (min-width: 50rem) {
|
|
43
|
+
.eds-dropdown-list {
|
|
44
|
+
max-height: 30vh;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
.eds-dropdown-list__item {
|
|
48
|
+
align-items: center;
|
|
49
|
+
background-color: #f8f8f8;
|
|
50
|
+
border-bottom: 0.125rem solid #e9e9e9;
|
|
51
|
+
border-left: 0.125rem solid #e9e9e9;
|
|
52
|
+
border-right: 0.125rem solid #e9e9e9;
|
|
53
|
+
color: #181c56;
|
|
54
|
+
display: flex;
|
|
55
|
+
justify-content: space-between;
|
|
56
|
+
font-family: inherit;
|
|
57
|
+
font-size: 1rem;
|
|
58
|
+
line-height: 1.25rem;
|
|
59
|
+
padding: 0.75rem 1rem;
|
|
60
|
+
width: 100%;
|
|
61
|
+
}
|
|
62
|
+
.eds-dropdown-list__item:first-child {
|
|
63
|
+
border-top: 0.125rem solid #e9e9e9;
|
|
64
|
+
}
|
|
65
|
+
.eds-dropdown-list__item:last-child {
|
|
66
|
+
border-bottom: none;
|
|
67
|
+
}
|
|
68
|
+
.eds-contrast .eds-dropdown-list__item {
|
|
69
|
+
color: #181c56;
|
|
70
|
+
border-color: #54568c;
|
|
71
|
+
background-color: #ffffff;
|
|
72
|
+
}
|
|
73
|
+
.eds-dropdown-list__item--highlighted {
|
|
74
|
+
background-color: #d1d4e3;
|
|
75
|
+
}
|
|
76
|
+
.eds-contrast .eds-dropdown-list__item--highlighted {
|
|
77
|
+
background-color: #d1d4e3;
|
|
78
|
+
}
|
|
79
|
+
.eds-dropdown-list-icon {
|
|
80
|
+
margin-left: 0.75rem;
|
|
81
|
+
}
|
|
82
|
+
/* DO NOT CHANGE!*/
|
|
17
83
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
18
84
|
.eds-multi-select {
|
|
19
85
|
position: relative;
|
|
@@ -96,94 +162,15 @@
|
|
|
96
162
|
}
|
|
97
163
|
.eds-multiselect-checkbox--checked .eds-checkbox-icon__path {
|
|
98
164
|
stroke: #ffffff;
|
|
99
|
-
|
|
100
|
-
animation: stroke ease-in-out 0.2s 0.1s forwards;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
@-webkit-keyframes stroke {
|
|
104
|
-
100% {
|
|
105
|
-
stroke-dashoffset: 0;
|
|
106
|
-
}
|
|
165
|
+
animation: stroke ease-in-out 0.2s 0.1s forwards;
|
|
107
166
|
}
|
|
108
167
|
|
|
109
168
|
@keyframes stroke {
|
|
110
169
|
100% {
|
|
111
170
|
stroke-dashoffset: 0;
|
|
112
171
|
}
|
|
113
|
-
}/* DO NOT CHANGE!*/
|
|
114
|
-
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
115
|
-
.eds-dropdown-list {
|
|
116
|
-
border-radius: 0.25rem;
|
|
117
|
-
box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.25);
|
|
118
|
-
display: none;
|
|
119
|
-
list-style: none;
|
|
120
|
-
margin: 0;
|
|
121
|
-
max-height: 50vh;
|
|
122
|
-
padding: 0;
|
|
123
|
-
position: relative;
|
|
124
|
-
overflow-y: auto;
|
|
125
|
-
width: 100%;
|
|
126
|
-
z-index: 20;
|
|
127
|
-
}
|
|
128
|
-
.eds-contrast .eds-dropdown-list {
|
|
129
|
-
box-shadow: 0 0.0625rem 0.1875rem #393d79;
|
|
130
|
-
}
|
|
131
|
-
.eds-dropdown-list--open {
|
|
132
|
-
display: inline-block;
|
|
133
|
-
}
|
|
134
|
-
.eds-dropdown-list:focus {
|
|
135
|
-
outline: none;
|
|
136
|
-
}
|
|
137
|
-
@media all and (min-width: 50rem) {
|
|
138
|
-
.eds-dropdown-list {
|
|
139
|
-
max-height: 30vh;
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
.eds-dropdown-list__item {
|
|
144
|
-
align-items: center;
|
|
145
|
-
background-color: #f8f8f8;
|
|
146
|
-
border-bottom: 0.125rem solid #e9e9e9;
|
|
147
|
-
border-left: 0.125rem solid #e9e9e9;
|
|
148
|
-
border-right: 0.125rem solid #e9e9e9;
|
|
149
|
-
color: #181c56;
|
|
150
|
-
display: flex;
|
|
151
|
-
justify-content: space-between;
|
|
152
|
-
font-family: inherit;
|
|
153
|
-
font-size: 1rem;
|
|
154
|
-
line-height: 1.25rem;
|
|
155
|
-
padding: 0.75rem 1rem;
|
|
156
|
-
width: 100%;
|
|
157
|
-
}
|
|
158
|
-
.eds-dropdown-list__item:first-child {
|
|
159
|
-
border-top: 0.125rem solid #e9e9e9;
|
|
160
|
-
}
|
|
161
|
-
.eds-dropdown-list__item:last-child {
|
|
162
|
-
border-bottom: none;
|
|
163
172
|
}
|
|
164
|
-
|
|
165
|
-
color: #181c56;
|
|
166
|
-
border-color: #54568c;
|
|
167
|
-
background-color: #ffffff;
|
|
168
|
-
}
|
|
169
|
-
.eds-dropdown-list__item--highlighted {
|
|
170
|
-
background-color: #d1d4e3;
|
|
171
|
-
}
|
|
172
|
-
.eds-contrast .eds-dropdown-list__item--highlighted {
|
|
173
|
-
background-color: #d1d4e3;
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
.eds-dropdown-list__item-icon {
|
|
177
|
-
margin-left: 0.75rem;
|
|
178
|
-
}/* DO NOT CHANGE!*/
|
|
179
|
-
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
180
|
-
.eds-inline-spinner {
|
|
181
|
-
align-items: center;
|
|
182
|
-
display: flex;
|
|
183
|
-
justify-content: center;
|
|
184
|
-
height: 100%;
|
|
185
|
-
width: 100%;
|
|
186
|
-
}/* DO NOT CHANGE!*/
|
|
173
|
+
/* DO NOT CHANGE!*/
|
|
187
174
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
188
175
|
.eds-dropdown__searchable-selected-item {
|
|
189
176
|
display: block;
|
|
@@ -205,14 +192,19 @@
|
|
|
205
192
|
transition: none;
|
|
206
193
|
}
|
|
207
194
|
|
|
208
|
-
.eds-form-control.eds-dropdown__input:-ms-input-placeholder {
|
|
209
|
-
-ms-transition: none;
|
|
210
|
-
transition: none;
|
|
211
|
-
}
|
|
212
|
-
|
|
213
195
|
.eds-form-control.eds-dropdown__input::placeholder {
|
|
214
196
|
transition: none;
|
|
215
|
-
}
|
|
197
|
+
}
|
|
198
|
+
/* DO NOT CHANGE!*/
|
|
199
|
+
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
200
|
+
.eds-inline-spinner {
|
|
201
|
+
align-items: center;
|
|
202
|
+
display: flex;
|
|
203
|
+
justify-content: center;
|
|
204
|
+
height: 100%;
|
|
205
|
+
width: 100%;
|
|
206
|
+
}
|
|
207
|
+
/* DO NOT CHANGE!*/
|
|
216
208
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
217
209
|
.eds-searchable-dropdown__wrapper {
|
|
218
210
|
position: relative;
|
|
@@ -231,80 +223,65 @@
|
|
|
231
223
|
.eds-searchable-dropdown__selected-item__wrapper {
|
|
232
224
|
max-width: 65%;
|
|
233
225
|
}
|
|
234
|
-
.eds-searchable-
|
|
235
|
-
background: none;
|
|
236
|
-
border: none;
|
|
237
|
-
border-radius: 50%;
|
|
238
|
-
color: inherit;
|
|
239
|
-
cursor: pointer;
|
|
240
|
-
display: flex;
|
|
241
|
-
font: inherit;
|
|
242
|
-
font-size: 1rem;
|
|
243
|
-
line-height: 1rem;
|
|
226
|
+
.eds-searchable-dropdown-appendix__clear-button {
|
|
244
227
|
padding: 0.5rem;
|
|
245
228
|
margin-right: 0.25rem;
|
|
246
229
|
}
|
|
247
|
-
.eds-searchable-
|
|
248
|
-
background: #
|
|
230
|
+
.eds-contrast .eds-searchable-dropdown-appendix__clear-button:hover {
|
|
231
|
+
background: #d1d3d3;
|
|
249
232
|
}
|
|
250
|
-
.eds-searchable-
|
|
251
|
-
|
|
233
|
+
.eds-contrast .eds-searchable-dropdown-appendix__clear-button:active {
|
|
234
|
+
background: #949494;
|
|
235
|
+
}
|
|
236
|
+
.eds-contrast .eds-searchable-dropdown-appendix__clear-button:focus {
|
|
237
|
+
border: 0.0625rem solid #181c56;
|
|
252
238
|
outline: none;
|
|
253
|
-
box-shadow: 0 0 0 0.125rem #ffffff, 0 0 0 0.25rem #181c56;
|
|
254
239
|
}
|
|
255
|
-
.eds-searchable-
|
|
240
|
+
.eds-searchable-dropdown-appendix__divider {
|
|
256
241
|
content: "";
|
|
257
242
|
display: block;
|
|
258
243
|
background-color: #e9e9e9;
|
|
259
244
|
height: 1.5rem;
|
|
260
245
|
width: 1px;
|
|
261
246
|
}
|
|
262
|
-
.eds-contrast .eds-form-control-wrapper--disabled .eds-searchable-
|
|
247
|
+
.eds-contrast .eds-form-control-wrapper--disabled .eds-searchable-dropdown-appendix__divider {
|
|
263
248
|
background-color: #8285a8;
|
|
264
249
|
}
|
|
265
|
-
.eds-searchable-
|
|
266
|
-
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
background: none;
|
|
270
|
-
border: none;
|
|
271
|
-
border-radius: 50%;
|
|
272
|
-
color: inherit;
|
|
273
|
-
font-size: inherit;
|
|
274
|
-
font-family: inherit;
|
|
250
|
+
.eds-contrast .eds-searchable-dropdown-appendix__divider {
|
|
251
|
+
background-color: #d1d3d3;
|
|
252
|
+
}
|
|
253
|
+
.eds-searchable-dropdown-appendix__toggle-button {
|
|
275
254
|
margin-right: -0.75rem;
|
|
276
255
|
margin-left: 0.25rem;
|
|
277
|
-
padding: 0.5rem;
|
|
278
|
-
display: flex;
|
|
279
|
-
justify-content: center;
|
|
280
256
|
}
|
|
281
|
-
.eds-searchable-
|
|
257
|
+
.eds-searchable-dropdown-appendix__toggle-button--open svg {
|
|
258
|
+
transform: rotate(180deg);
|
|
259
|
+
}
|
|
260
|
+
.eds-searchable-dropdown-appendix__toggle-button svg {
|
|
282
261
|
transition: transform ease-in-out 0.1s;
|
|
283
262
|
}
|
|
284
|
-
.eds-searchable-
|
|
285
|
-
|
|
263
|
+
.eds-contrast .eds-searchable-dropdown-appendix__toggle-button:hover {
|
|
264
|
+
background: #d1d3d3;
|
|
286
265
|
}
|
|
287
|
-
.eds-searchable-
|
|
288
|
-
background: #
|
|
266
|
+
.eds-contrast .eds-searchable-dropdown-appendix__toggle-button:active {
|
|
267
|
+
background: #949494;
|
|
289
268
|
}
|
|
290
|
-
.eds-searchable-
|
|
291
|
-
|
|
269
|
+
.eds-contrast .eds-searchable-dropdown-appendix__toggle-button:focus {
|
|
270
|
+
border: 0.0625rem solid #181c56;
|
|
292
271
|
outline: none;
|
|
293
|
-
box-shadow: 0 0 0 0.125rem #ffffff, 0 0 0 0.25rem #181c56;
|
|
294
|
-
}
|
|
295
|
-
.eds-contrast .eds-searchable-dropdown__toggle-button:focus {
|
|
296
|
-
box-shadow: 0 0 0 0.125rem #181c56, 0 0 0 0.25rem #ffffff;
|
|
297
272
|
}
|
|
298
273
|
.eds-searchable-dropdown__list {
|
|
299
274
|
position: absolute;
|
|
300
275
|
top: 3rem;
|
|
301
|
-
border-radius: 0.25rem;
|
|
302
|
-
box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.25);
|
|
303
276
|
display: none;
|
|
304
277
|
list-style: none;
|
|
278
|
+
border-radius: 0.25rem;
|
|
279
|
+
border: 0.125rem solid #d1d3d3;
|
|
280
|
+
box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.25);
|
|
281
|
+
padding: 0;
|
|
305
282
|
margin: 0;
|
|
283
|
+
margin-top: 0.5rem;
|
|
306
284
|
max-height: 50vh;
|
|
307
|
-
padding: 0;
|
|
308
285
|
overflow-y: auto;
|
|
309
286
|
width: 100%;
|
|
310
287
|
z-index: 20;
|
|
@@ -323,9 +300,7 @@
|
|
|
323
300
|
.eds-searchable-dropdown__list__item {
|
|
324
301
|
align-items: center;
|
|
325
302
|
background-color: #f8f8f8;
|
|
326
|
-
border-bottom: 0.125rem solid #
|
|
327
|
-
border-left: 0.125rem solid #e9e9e9;
|
|
328
|
-
border-right: 0.125rem solid #e9e9e9;
|
|
303
|
+
border-bottom: 0.125rem solid #d1d3d3;
|
|
329
304
|
color: #181c56;
|
|
330
305
|
display: flex;
|
|
331
306
|
justify-content: space-between;
|
|
@@ -335,9 +310,6 @@
|
|
|
335
310
|
padding: 0.75rem 1rem;
|
|
336
311
|
width: 100%;
|
|
337
312
|
}
|
|
338
|
-
.eds-searchable-dropdown__list__item:first-child {
|
|
339
|
-
border-top: 0.125rem solid #e9e9e9;
|
|
340
|
-
}
|
|
341
313
|
.eds-searchable-dropdown__list__item:last-child {
|
|
342
314
|
border-bottom: none;
|
|
343
315
|
}
|
|
@@ -347,9 +319,6 @@
|
|
|
347
319
|
.eds-searchable-dropdown__list__item--highlighted {
|
|
348
320
|
background-color: #d1d4e3;
|
|
349
321
|
}
|
|
350
|
-
.eds-contrast .eds-searchable-dropdown__list__item--highlighted {
|
|
351
|
-
background-color: #d1d4e3;
|
|
352
|
-
}
|
|
353
322
|
|
|
354
323
|
.eds-form-control.eds-searchable-dropdown__input::-moz-placeholder {
|
|
355
324
|
-moz-transition: none;
|
|
@@ -358,18 +327,12 @@
|
|
|
358
327
|
bottom: 1px;
|
|
359
328
|
}
|
|
360
329
|
|
|
361
|
-
.eds-form-control.eds-searchable-dropdown__input:-ms-input-placeholder {
|
|
362
|
-
-ms-transition: none;
|
|
363
|
-
transition: none;
|
|
364
|
-
position: relative;
|
|
365
|
-
bottom: 1px;
|
|
366
|
-
}
|
|
367
|
-
|
|
368
330
|
.eds-form-control.eds-searchable-dropdown__input::placeholder {
|
|
369
331
|
transition: none;
|
|
370
332
|
position: relative;
|
|
371
333
|
bottom: 1px;
|
|
372
|
-
}
|
|
334
|
+
}
|
|
335
|
+
/* DO NOT CHANGE!*/
|
|
373
336
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
374
337
|
.eds-dropdown-wrapper {
|
|
375
338
|
position: relative;
|
|
@@ -386,10 +349,6 @@
|
|
|
386
349
|
color: #656782;
|
|
387
350
|
}
|
|
388
351
|
|
|
389
|
-
.eds-dropdown__input:-ms-input-placeholder {
|
|
390
|
-
color: #656782;
|
|
391
|
-
}
|
|
392
|
-
|
|
393
352
|
.eds-dropdown__input::placeholder {
|
|
394
353
|
color: #656782;
|
|
395
354
|
}
|
|
@@ -430,7 +389,8 @@
|
|
|
430
389
|
}
|
|
431
390
|
.eds-contrast .eds-form-control-wrapper--disabled .eds-dropdown__divider {
|
|
432
391
|
background-color: #8285a8;
|
|
433
|
-
}
|
|
392
|
+
}
|
|
393
|
+
/* DO NOT CHANGE!*/
|
|
434
394
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
435
395
|
.eds-dropdown__toggle-button {
|
|
436
396
|
-webkit-appearance: none;
|
|
@@ -457,4 +417,4 @@
|
|
|
457
417
|
}
|
|
458
418
|
.eds-contrast .eds-dropdown__toggle-button:focus {
|
|
459
419
|
box-shadow: 0 0 0 0.125rem #181c56, 0 0 0 0.25rem #ffffff;
|
|
460
|
-
}
|
|
420
|
+
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
/** A dropdown item has a string label and a string value */
|
|
3
|
-
export
|
|
3
|
+
export type NormalizedDropdownItemType = {
|
|
4
4
|
value: string;
|
|
5
5
|
label: string;
|
|
6
6
|
icons?: React.ComponentType<any>[];
|
|
7
7
|
};
|
|
8
|
-
export
|
|
8
|
+
export type DropdownItemType = {
|
|
9
9
|
value?: string;
|
|
10
10
|
label: string;
|
|
11
11
|
icons?: React.ComponentType<any>[];
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { DropdownItemType, NormalizedDropdownItemType } from './useNormalizedItems';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export
|
|
2
|
+
type AsyncDropdownItemType = (inputType: string) => Promise<DropdownItemType[]>;
|
|
3
|
+
type SyncDropdownItemType = (inputType: string) => DropdownItemType[];
|
|
4
|
+
export type PotentiallyAsyncDropdownItemType = DropdownItemType[] | SyncDropdownItemType | AsyncDropdownItemType;
|
|
5
5
|
export declare const useResolvedItems: (itemsOrItemsResolver: PotentiallyAsyncDropdownItemType, debounceTimeout?: number) => {
|
|
6
6
|
fetchItems: (arg: string) => void;
|
|
7
7
|
loading: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@entur/dropdown",
|
|
3
|
-
"version": "4.0.0
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/dropdown.esm.js",
|
|
@@ -19,24 +19,25 @@
|
|
|
19
19
|
"scripts": {
|
|
20
20
|
"start": "dts watch --noClean",
|
|
21
21
|
"build": "dts build",
|
|
22
|
-
"test": "dts test
|
|
23
|
-
"lint": "dts lint"
|
|
22
|
+
"test": "dts test",
|
|
23
|
+
"lint": "dts lint src"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
26
|
"react": ">=16.8.0",
|
|
27
27
|
"react-dom": ">=16.8.0"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@entur/a11y": "^0.2.
|
|
31
|
-
"@entur/
|
|
32
|
-
"@entur/
|
|
33
|
-
"@entur/
|
|
34
|
-
"@entur/
|
|
35
|
-
"@entur/
|
|
36
|
-
"@entur/
|
|
37
|
-
"@entur/
|
|
30
|
+
"@entur/a11y": "^0.2.61",
|
|
31
|
+
"@entur/button": "^3.0.2",
|
|
32
|
+
"@entur/chip": "^0.6.27",
|
|
33
|
+
"@entur/form": "^7.0.0",
|
|
34
|
+
"@entur/icons": "^6.0.1",
|
|
35
|
+
"@entur/loader": "^0.4.25",
|
|
36
|
+
"@entur/tokens": "^3.8.1",
|
|
37
|
+
"@entur/tooltip": "^2.6.10",
|
|
38
|
+
"@entur/utils": "^0.6.0",
|
|
38
39
|
"classnames": "^2.3.1",
|
|
39
40
|
"downshift": "^6.1.7"
|
|
40
41
|
},
|
|
41
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "e233b56e0898da453b4215e0923e9c7a21de0a37"
|
|
42
43
|
}
|