@entur/dropdown 3.0.24 → 3.0.25
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/CHANGELOG.md +627 -0
- package/dist/dropdown.cjs.development.js +581 -402
- 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 +581 -402
- package/dist/dropdown.esm.js.map +1 -1
- package/dist/styles.css +32 -9
- package/package.json +14 -21
package/dist/styles.css
CHANGED
|
@@ -161,7 +161,14 @@
|
|
|
161
161
|
}
|
|
162
162
|
.eds-multiselect-checkbox--checked .eds-checkbox-icon__path {
|
|
163
163
|
stroke: #ffffff;
|
|
164
|
-
animation: stroke ease-in-out 0.2s 0.1s forwards;
|
|
164
|
+
-webkit-animation: stroke ease-in-out 0.2s 0.1s forwards;
|
|
165
|
+
animation: stroke ease-in-out 0.2s 0.1s forwards;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
@-webkit-keyframes stroke {
|
|
169
|
+
100% {
|
|
170
|
+
stroke-dashoffset: 0;
|
|
171
|
+
}
|
|
165
172
|
}
|
|
166
173
|
|
|
167
174
|
@keyframes stroke {
|
|
@@ -170,6 +177,14 @@
|
|
|
170
177
|
}
|
|
171
178
|
}/* DO NOT CHANGE!*/
|
|
172
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!*/
|
|
187
|
+
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
173
188
|
.eds-dropdown__searchable-selected-item {
|
|
174
189
|
display: block;
|
|
175
190
|
font-size: 1rem;
|
|
@@ -190,18 +205,15 @@
|
|
|
190
205
|
transition: none;
|
|
191
206
|
}
|
|
192
207
|
|
|
208
|
+
.eds-form-control.eds-dropdown__input:-ms-input-placeholder {
|
|
209
|
+
-ms-transition: none;
|
|
210
|
+
transition: none;
|
|
211
|
+
}
|
|
212
|
+
|
|
193
213
|
.eds-form-control.eds-dropdown__input::placeholder {
|
|
194
214
|
transition: none;
|
|
195
215
|
}/* DO NOT CHANGE!*/
|
|
196
216
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
197
|
-
.eds-inline-spinner {
|
|
198
|
-
align-items: center;
|
|
199
|
-
display: flex;
|
|
200
|
-
justify-content: center;
|
|
201
|
-
height: 100%;
|
|
202
|
-
width: 100%;
|
|
203
|
-
}/* DO NOT CHANGE!*/
|
|
204
|
-
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
205
217
|
.eds-searchable-dropdown__wrapper {
|
|
206
218
|
position: relative;
|
|
207
219
|
}
|
|
@@ -323,6 +335,13 @@
|
|
|
323
335
|
bottom: 1px;
|
|
324
336
|
}
|
|
325
337
|
|
|
338
|
+
.eds-form-control.eds-searchable-dropdown__input:-ms-input-placeholder {
|
|
339
|
+
-ms-transition: none;
|
|
340
|
+
transition: none;
|
|
341
|
+
position: relative;
|
|
342
|
+
bottom: 1px;
|
|
343
|
+
}
|
|
344
|
+
|
|
326
345
|
.eds-form-control.eds-searchable-dropdown__input::placeholder {
|
|
327
346
|
transition: none;
|
|
328
347
|
position: relative;
|
|
@@ -344,6 +363,10 @@
|
|
|
344
363
|
color: #656782;
|
|
345
364
|
}
|
|
346
365
|
|
|
366
|
+
.eds-dropdown__input:-ms-input-placeholder {
|
|
367
|
+
color: #656782;
|
|
368
|
+
}
|
|
369
|
+
|
|
347
370
|
.eds-dropdown__input::placeholder {
|
|
348
371
|
color: #656782;
|
|
349
372
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@entur/dropdown",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.25",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/dropdown.esm.js",
|
|
@@ -17,33 +17,26 @@
|
|
|
17
17
|
"access": "public"
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
20
|
-
"start": "
|
|
21
|
-
"build": "
|
|
22
|
-
"test": "
|
|
23
|
-
"lint": "
|
|
20
|
+
"start": "dts watch --noClean",
|
|
21
|
+
"build": "dts build",
|
|
22
|
+
"test": "dts test --env=jsdom",
|
|
23
|
+
"lint": "dts lint"
|
|
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/chip": "^0.6.
|
|
32
|
-
"@entur/form": "^5.4.
|
|
33
|
-
"@entur/icons": "^5.
|
|
34
|
-
"@entur/loader": "^0.4.
|
|
35
|
-
"@entur/tokens": "^3.4.
|
|
36
|
-
"@entur/tooltip": "^2.5.
|
|
37
|
-
"@entur/utils": "^0.4.
|
|
30
|
+
"@entur/a11y": "^0.2.52",
|
|
31
|
+
"@entur/chip": "^0.6.15",
|
|
32
|
+
"@entur/form": "^5.4.12",
|
|
33
|
+
"@entur/icons": "^5.4.0",
|
|
34
|
+
"@entur/loader": "^0.4.15",
|
|
35
|
+
"@entur/tokens": "^3.4.3",
|
|
36
|
+
"@entur/tooltip": "^2.5.24",
|
|
37
|
+
"@entur/utils": "^0.4.8",
|
|
38
38
|
"classnames": "^2.3.1",
|
|
39
39
|
"downshift": "^6.1.7"
|
|
40
40
|
},
|
|
41
|
-
"
|
|
42
|
-
"dts-cli": "^1.1.6",
|
|
43
|
-
"jest": "^27.0.0",
|
|
44
|
-
"jest-watch-typeahead": "^2.2.0",
|
|
45
|
-
"ts-jest": "^27.0.0",
|
|
46
|
-
"typescript": "^4.8.0"
|
|
47
|
-
},
|
|
48
|
-
"gitHead": "8915b1630bd936740ba9a4a88883f3432948a80e"
|
|
41
|
+
"gitHead": "103844c30bdc32296f3998a360cf6066492173e9"
|
|
49
42
|
}
|