@entur/icons 8.3.2-beta-automat.0 → 8.4.1-beta.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 +202 -186
- package/dist/index.esm.native.js +200 -186
- package/dist/index.js +380 -363
- package/dist/styles.css +15 -26
- package/package.json +3 -3
package/dist/styles.css
CHANGED
|
@@ -146,26 +146,13 @@
|
|
|
146
146
|
.eds-icon {
|
|
147
147
|
display: inline;
|
|
148
148
|
}
|
|
149
|
-
|
|
150
|
-
.eds-icon.eds-icon--inline,
|
|
151
|
-
p .eds-icon {
|
|
149
|
+
.eds-icon--inline, p .eds-icon {
|
|
152
150
|
position: relative;
|
|
153
151
|
top: 0.2em;
|
|
154
152
|
}
|
|
155
|
-
|
|
156
153
|
.eds-icon :where(g, path) {
|
|
157
154
|
fill: currentColor;
|
|
158
155
|
}
|
|
159
|
-
|
|
160
|
-
.svg-exclamation {
|
|
161
|
-
fill: #ffffff;
|
|
162
|
-
fill: var(--basecolors-frame-default);
|
|
163
|
-
}
|
|
164
|
-
.eds-contrast .svg-exclamation {
|
|
165
|
-
fill: #181c56;
|
|
166
|
-
fill: var(--basecolors-frame-contrast);
|
|
167
|
-
}
|
|
168
|
-
|
|
169
156
|
.eds-icon__metro {
|
|
170
157
|
color: #bf5826;
|
|
171
158
|
color: var(--basecolors-shape-metro-default);
|
|
@@ -222,11 +209,11 @@ p .eds-icon {
|
|
|
222
209
|
color: #b482fb;
|
|
223
210
|
color: var(--basecolors-shape-cableway-contrast);
|
|
224
211
|
}
|
|
225
|
-
.eds-icon__taxi {
|
|
212
|
+
.eds-icon__car, .eds-icon__taxi, .eds-icon__snowcoach {
|
|
226
213
|
color: #3d3e40;
|
|
227
214
|
color: var(--basecolors-shape-taxi-default);
|
|
228
215
|
}
|
|
229
|
-
.eds-contrast .eds-icon__taxi {
|
|
216
|
+
.eds-contrast .eds-icon__car, .eds-contrast .eds-icon__taxi, .eds-contrast .eds-icon__snowcoach {
|
|
230
217
|
color: #ffe082;
|
|
231
218
|
color: var(--basecolors-shape-taxi-contrast);
|
|
232
219
|
}
|
|
@@ -238,11 +225,11 @@ p .eds-icon {
|
|
|
238
225
|
color: #00dbb6;
|
|
239
226
|
color: var(--basecolors-shape-bicycle-contrast);
|
|
240
227
|
}
|
|
241
|
-
.eds-icon__walk {
|
|
228
|
+
.eds-icon__standing, .eds-icon__walk, .eds-icon__strolling, .eds-icon__running {
|
|
242
229
|
color: #8d8e9c;
|
|
243
230
|
color: var(--basecolors-shape-walk-default);
|
|
244
231
|
}
|
|
245
|
-
.eds-contrast .eds-icon__walk {
|
|
232
|
+
.eds-contrast .eds-icon__standing, .eds-contrast .eds-icon__walk, .eds-contrast .eds-icon__strolling, .eds-contrast .eds-icon__running {
|
|
246
233
|
color: #8284ab;
|
|
247
234
|
color: var(--basecolors-shape-walk-contrast);
|
|
248
235
|
}
|
|
@@ -254,20 +241,14 @@ p .eds-icon {
|
|
|
254
241
|
color: #42a5f5;
|
|
255
242
|
color: var(--basecolors-shape-train-contrast);
|
|
256
243
|
}
|
|
257
|
-
.eds-icon__ferry {
|
|
244
|
+
.eds-icon__ferry, .eds-icon__carferry {
|
|
258
245
|
color: #0c6693;
|
|
259
246
|
color: var(--basecolors-shape-ferry-default);
|
|
260
247
|
}
|
|
261
|
-
.eds-contrast .eds-icon__ferry {
|
|
248
|
+
.eds-contrast .eds-icon__ferry, .eds-contrast .eds-icon__carferry {
|
|
262
249
|
color: #6fdfff;
|
|
263
250
|
color: var(--basecolors-shape-ferry-contrast);
|
|
264
251
|
}
|
|
265
|
-
.eds-icon__carferry {
|
|
266
|
-
color: var(--basecolors-shape-carferry-default);
|
|
267
|
-
}
|
|
268
|
-
.eds-contrast .eds-icon__carferry {
|
|
269
|
-
color: var(--basecolors-shape-carferry-contrast);
|
|
270
|
-
}
|
|
271
252
|
.eds-icon__mobility, .eds-icon__citybike, .eds-icon__carsharing {
|
|
272
253
|
color: #0d827e;
|
|
273
254
|
color: var(--basecolors-shape-mobility-default);
|
|
@@ -275,4 +256,12 @@ p .eds-icon {
|
|
|
275
256
|
.eds-contrast .eds-icon__mobility, .eds-contrast .eds-icon__citybike, .eds-contrast .eds-icon__carsharing {
|
|
276
257
|
color: #00dbb6;
|
|
277
258
|
color: var(--basecolors-shape-mobility-contrast);
|
|
259
|
+
}
|
|
260
|
+
.eds-icon :where(.svg-exclamation) {
|
|
261
|
+
fill: #ffffff;
|
|
262
|
+
fill: var(--basecolors-frame-default);
|
|
263
|
+
}
|
|
264
|
+
.eds-contrast .eds-icon :where(.svg-exclamation) {
|
|
265
|
+
fill: #181c56;
|
|
266
|
+
fill: var(--basecolors-frame-contrast);
|
|
278
267
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@entur/icons",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.4.1-beta.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.21.1
|
|
60
|
+
"@entur/tokens": "^3.21.1"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "bb439f99d29ac82cfa40794f882839e0c6162f8a"
|
|
63
63
|
}
|