@entur/icons 8.3.0 → 8.4.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/dist/index.d.ts +1 -0
- package/dist/index.esm.js +205 -189
- package/dist/index.esm.native.js +200 -186
- package/dist/index.js +383 -366
- package/dist/styles.css +18 -24
- package/package.json +3 -3
package/dist/styles.css
CHANGED
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
--basecolors-frame-subdued: #d9dae8;
|
|
18
18
|
--basecolors-frame-tint: #f6f6f9;
|
|
19
19
|
--basecolors-shape-accent: #181c56;
|
|
20
|
-
--basecolors-shape-bicycle-contrast: #
|
|
21
|
-
--basecolors-shape-bicycle-default: #
|
|
20
|
+
--basecolors-shape-bicycle-contrast: #00dbb6;
|
|
21
|
+
--basecolors-shape-bicycle-default: #0d827e;
|
|
22
22
|
--basecolors-shape-bus-contrast: #ff6392;
|
|
23
23
|
--basecolors-shape-bus-default: #c5044e;
|
|
24
24
|
--basecolors-shape-cableway-contrast: #b482fb;
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
--basecolors-shape-maskalt: #ffffff;
|
|
38
38
|
--basecolors-shape-metro-contrast: #f08901;
|
|
39
39
|
--basecolors-shape-metro-default: #bf5826;
|
|
40
|
-
--basecolors-shape-mobility-contrast: #
|
|
41
|
-
--basecolors-shape-mobility-default: #
|
|
40
|
+
--basecolors-shape-mobility-contrast: #00dbb6;
|
|
41
|
+
--basecolors-shape-mobility-default: #0d827e;
|
|
42
42
|
--basecolors-shape-plane-contrast: #fbafea;
|
|
43
43
|
--basecolors-shape-plane-default: #800664;
|
|
44
44
|
--basecolors-shape-subdued: #626493;
|
|
@@ -83,8 +83,8 @@
|
|
|
83
83
|
--basecolors-frame-subdued: #2d2e3e;
|
|
84
84
|
--basecolors-frame-tint: #141527;
|
|
85
85
|
--basecolors-shape-accent: #e5e5e9;
|
|
86
|
-
--basecolors-shape-bicycle-contrast: #
|
|
87
|
-
--basecolors-shape-bicycle-default: #
|
|
86
|
+
--basecolors-shape-bicycle-contrast: #4db2a1;
|
|
87
|
+
--basecolors-shape-bicycle-default: #4db2a1;
|
|
88
88
|
--basecolors-shape-bus-contrast: #ef7398;
|
|
89
89
|
--basecolors-shape-bus-default: #ef7398;
|
|
90
90
|
--basecolors-shape-cableway-contrast: #b898e5;
|
|
@@ -103,8 +103,8 @@
|
|
|
103
103
|
--basecolors-shape-maskalt: #393a49;
|
|
104
104
|
--basecolors-shape-metro-contrast: #dd973c;
|
|
105
105
|
--basecolors-shape-metro-default: #dd973c;
|
|
106
|
-
--basecolors-shape-mobility-contrast: #
|
|
107
|
-
--basecolors-shape-mobility-default: #
|
|
106
|
+
--basecolors-shape-mobility-contrast: #4db2a1;
|
|
107
|
+
--basecolors-shape-mobility-default: #4db2a1;
|
|
108
108
|
--basecolors-shape-plane-contrast: #f2b8e5;
|
|
109
109
|
--basecolors-shape-plane-default: #f2b8e5;
|
|
110
110
|
--basecolors-shape-subdued: #b3b4bd;
|
|
@@ -218,27 +218,27 @@ p .eds-icon {
|
|
|
218
218
|
color: #b482fb;
|
|
219
219
|
color: var(--basecolors-shape-cableway-contrast);
|
|
220
220
|
}
|
|
221
|
-
.eds-icon__taxi {
|
|
221
|
+
.eds-icon__car, .eds-icon__taxi, .eds-icon__snowcoach {
|
|
222
222
|
color: #3d3e40;
|
|
223
223
|
color: var(--basecolors-shape-taxi-default);
|
|
224
224
|
}
|
|
225
|
-
.eds-contrast .eds-icon__taxi {
|
|
225
|
+
.eds-contrast .eds-icon__car, .eds-contrast .eds-icon__taxi, .eds-contrast .eds-icon__snowcoach {
|
|
226
226
|
color: #ffe082;
|
|
227
227
|
color: var(--basecolors-shape-taxi-contrast);
|
|
228
228
|
}
|
|
229
229
|
.eds-icon__bicycle {
|
|
230
|
-
color: #
|
|
230
|
+
color: #0d827e;
|
|
231
231
|
color: var(--basecolors-shape-bicycle-default);
|
|
232
232
|
}
|
|
233
233
|
.eds-contrast .eds-icon__bicycle {
|
|
234
|
-
color: #
|
|
234
|
+
color: #00dbb6;
|
|
235
235
|
color: var(--basecolors-shape-bicycle-contrast);
|
|
236
236
|
}
|
|
237
|
-
.eds-icon__walk {
|
|
237
|
+
.eds-icon__standing, .eds-icon__walk, .eds-icon__strolling, .eds-icon__running {
|
|
238
238
|
color: #8d8e9c;
|
|
239
239
|
color: var(--basecolors-shape-walk-default);
|
|
240
240
|
}
|
|
241
|
-
.eds-contrast .eds-icon__walk {
|
|
241
|
+
.eds-contrast .eds-icon__standing, .eds-contrast .eds-icon__walk, .eds-contrast .eds-icon__strolling, .eds-contrast .eds-icon__running {
|
|
242
242
|
color: #8284ab;
|
|
243
243
|
color: var(--basecolors-shape-walk-contrast);
|
|
244
244
|
}
|
|
@@ -250,25 +250,19 @@ p .eds-icon {
|
|
|
250
250
|
color: #42a5f5;
|
|
251
251
|
color: var(--basecolors-shape-train-contrast);
|
|
252
252
|
}
|
|
253
|
-
.eds-icon__ferry {
|
|
253
|
+
.eds-icon__ferry, .eds-icon__carferry {
|
|
254
254
|
color: #0c6693;
|
|
255
255
|
color: var(--basecolors-shape-ferry-default);
|
|
256
256
|
}
|
|
257
|
-
.eds-contrast .eds-icon__ferry {
|
|
257
|
+
.eds-contrast .eds-icon__ferry, .eds-contrast .eds-icon__carferry {
|
|
258
258
|
color: #6fdfff;
|
|
259
259
|
color: var(--basecolors-shape-ferry-contrast);
|
|
260
260
|
}
|
|
261
|
-
.eds-icon__carferry {
|
|
262
|
-
color: var(--basecolors-shape-carferry-default);
|
|
263
|
-
}
|
|
264
|
-
.eds-contrast .eds-icon__carferry {
|
|
265
|
-
color: var(--basecolors-shape-carferry-contrast);
|
|
266
|
-
}
|
|
267
261
|
.eds-icon__mobility, .eds-icon__citybike, .eds-icon__carsharing {
|
|
268
|
-
color: #
|
|
262
|
+
color: #0d827e;
|
|
269
263
|
color: var(--basecolors-shape-mobility-default);
|
|
270
264
|
}
|
|
271
265
|
.eds-contrast .eds-icon__mobility, .eds-contrast .eds-icon__citybike, .eds-contrast .eds-icon__carsharing {
|
|
272
|
-
color: #
|
|
266
|
+
color: #00dbb6;
|
|
273
267
|
color: var(--basecolors-shape-mobility-contrast);
|
|
274
268
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@entur/icons",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.4.0",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"typescript": "^5.9.2"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@entur/tokens": "^3.
|
|
60
|
+
"@entur/tokens": "^3.21.1"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "fc1996af692ebbe6c00454abf846cf61e0fe6231"
|
|
63
63
|
}
|