@entur/dropdown 3.0.23 → 3.0.24
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/dist/dropdown.cjs.development.js +402 -581
- 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 +402 -581
- package/dist/dropdown.esm.js.map +1 -1
- package/dist/styles.css +1 -24
- package/package.json +21 -14
- package/CHANGELOG.md +0 -619
package/dist/styles.css
CHANGED
|
@@ -161,14 +161,7 @@
|
|
|
161
161
|
}
|
|
162
162
|
.eds-multiselect-checkbox--checked .eds-checkbox-icon__path {
|
|
163
163
|
stroke: #ffffff;
|
|
164
|
-
|
|
165
|
-
animation: stroke ease-in-out 0.2s 0.1s forwards;
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
@-webkit-keyframes stroke {
|
|
169
|
-
100% {
|
|
170
|
-
stroke-dashoffset: 0;
|
|
171
|
-
}
|
|
164
|
+
animation: stroke ease-in-out 0.2s 0.1s forwards;
|
|
172
165
|
}
|
|
173
166
|
|
|
174
167
|
@keyframes stroke {
|
|
@@ -197,11 +190,6 @@
|
|
|
197
190
|
transition: none;
|
|
198
191
|
}
|
|
199
192
|
|
|
200
|
-
.eds-form-control.eds-dropdown__input:-ms-input-placeholder {
|
|
201
|
-
-ms-transition: none;
|
|
202
|
-
transition: none;
|
|
203
|
-
}
|
|
204
|
-
|
|
205
193
|
.eds-form-control.eds-dropdown__input::placeholder {
|
|
206
194
|
transition: none;
|
|
207
195
|
}/* DO NOT CHANGE!*/
|
|
@@ -335,13 +323,6 @@
|
|
|
335
323
|
bottom: 1px;
|
|
336
324
|
}
|
|
337
325
|
|
|
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
|
-
|
|
345
326
|
.eds-form-control.eds-searchable-dropdown__input::placeholder {
|
|
346
327
|
transition: none;
|
|
347
328
|
position: relative;
|
|
@@ -363,10 +344,6 @@
|
|
|
363
344
|
color: #656782;
|
|
364
345
|
}
|
|
365
346
|
|
|
366
|
-
.eds-dropdown__input:-ms-input-placeholder {
|
|
367
|
-
color: #656782;
|
|
368
|
-
}
|
|
369
|
-
|
|
370
347
|
.eds-dropdown__input::placeholder {
|
|
371
348
|
color: #656782;
|
|
372
349
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@entur/dropdown",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.24",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/dropdown.esm.js",
|
|
@@ -17,26 +17,33 @@
|
|
|
17
17
|
"access": "public"
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
20
|
-
"start": "dts watch --noClean",
|
|
21
|
-
"build": "dts build",
|
|
22
|
-
"test": "dts test --env=jsdom",
|
|
23
|
-
"lint": "dts lint"
|
|
20
|
+
"start": "yarn run dts watch --noClean",
|
|
21
|
+
"build": "yarn run dts build",
|
|
22
|
+
"test": "yarn run dts test --env=jsdom",
|
|
23
|
+
"lint": "yarn run 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.51",
|
|
31
|
+
"@entur/chip": "^0.6.14",
|
|
32
|
+
"@entur/form": "^5.4.11",
|
|
33
|
+
"@entur/icons": "^5.3.0",
|
|
34
|
+
"@entur/loader": "^0.4.14",
|
|
35
|
+
"@entur/tokens": "^3.4.2",
|
|
36
|
+
"@entur/tooltip": "^2.5.23",
|
|
37
|
+
"@entur/utils": "^0.4.7",
|
|
38
38
|
"classnames": "^2.3.1",
|
|
39
39
|
"downshift": "^6.1.7"
|
|
40
40
|
},
|
|
41
|
-
"
|
|
41
|
+
"devDependencies": {
|
|
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"
|
|
42
49
|
}
|