@entur/travel 5.0.4 → 5.0.7
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 +14 -0
- package/dist/styles.css +46 -39
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,20 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [5.0.7](https://bitbucket.org/enturas/design-system/compare/@entur/travel@5.0.6...@entur/travel@5.0.7) (2022-05-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @entur/travel
|
|
9
|
+
|
|
10
|
+
## [5.0.6](https://bitbucket.org/enturas/design-system/compare/@entur/travel@5.0.5...@entur/travel@5.0.6) (2022-05-04)
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- **validation exclamation icon:** fix incorrect exclamation mark color for non-contrast validation ([22deff9](https://bitbucket.org/enturas/design-system/commits/22deff9cac4f867a26a14ec51197f1c3be13d403))
|
|
15
|
+
|
|
16
|
+
## [5.0.5](https://bitbucket.org/enturas/design-system/compare/@entur/travel@5.0.4...@entur/travel@5.0.5) (2022-04-27)
|
|
17
|
+
|
|
18
|
+
**Note:** Version bump only for package @entur/travel
|
|
19
|
+
|
|
6
20
|
## [5.0.4](https://bitbucket.org/enturas/design-system/compare/@entur/travel@5.0.3...@entur/travel@5.0.4) (2022-04-20)
|
|
7
21
|
|
|
8
22
|
**Note:** Version bump only for package @entur/travel
|
package/dist/styles.css
CHANGED
|
@@ -46,6 +46,45 @@
|
|
|
46
46
|
width: calc(4em / 3);
|
|
47
47
|
}/* DO NOT CHANGE!*/
|
|
48
48
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
49
|
+
.eds-leg-line {
|
|
50
|
+
flex-grow: 1;
|
|
51
|
+
mask-image: url("./pattern/line.svg");
|
|
52
|
+
mask-position: center;
|
|
53
|
+
-webkit-mask-image: url("./pattern/line.svg");
|
|
54
|
+
-webkit-mask-position: center;
|
|
55
|
+
}
|
|
56
|
+
.eds-leg-line--dotted {
|
|
57
|
+
mask-image: url("./pattern/dotted.svg");
|
|
58
|
+
-webkit-mask-image: url("./pattern/dotted.svg");
|
|
59
|
+
}
|
|
60
|
+
.eds-leg-line--vertical {
|
|
61
|
+
mask-repeat: repeat-y;
|
|
62
|
+
width: 1rem;
|
|
63
|
+
-webkit-mask-repeat: repeat-y;
|
|
64
|
+
}
|
|
65
|
+
.eds-leg-line--vertical.eds-leg-line--dashed {
|
|
66
|
+
mask-image: url("./pattern/dashed-vertical.svg");
|
|
67
|
+
-webkit-mask-image: url("./pattern/dashed-vertical.svg");
|
|
68
|
+
}
|
|
69
|
+
.eds-leg-line--vertical.eds-leg-line--wave {
|
|
70
|
+
mask-image: url("./pattern/wave-vertical.svg");
|
|
71
|
+
-webkit-mask-image: url("./pattern/wave-vertical.svg");
|
|
72
|
+
}
|
|
73
|
+
.eds-leg-line--horizontal {
|
|
74
|
+
height: 1rem;
|
|
75
|
+
mask-repeat: repeat-x;
|
|
76
|
+
min-width: 6.25rem;
|
|
77
|
+
-webkit-mask-repeat: repeat-x;
|
|
78
|
+
}
|
|
79
|
+
.eds-leg-line--horizontal.eds-leg-line--dashed {
|
|
80
|
+
mask-image: url("./pattern/dashed-horizontal.svg");
|
|
81
|
+
-webkit-mask-image: url("./pattern/dashed-horizontal.svg");
|
|
82
|
+
}
|
|
83
|
+
.eds-leg-line--horizontal.eds-leg-line--wave {
|
|
84
|
+
mask-image: url("./pattern/wave-horizontal.svg");
|
|
85
|
+
-webkit-mask-image: url("./pattern/wave-horizontal.svg");
|
|
86
|
+
}/* DO NOT CHANGE!*/
|
|
87
|
+
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
49
88
|
.eds-travel-tag {
|
|
50
89
|
background-color: #e9e9e9;
|
|
51
90
|
border-radius: 0.25rem;
|
|
@@ -207,9 +246,16 @@
|
|
|
207
246
|
.eds-travel-tag__alert-exclamation-icon {
|
|
208
247
|
color: #ffca28;
|
|
209
248
|
}
|
|
249
|
+
.eds-travel-tag__alert-exclamation-icon circle {
|
|
250
|
+
color: #181c56;
|
|
251
|
+
fill-opacity: 1;
|
|
252
|
+
}
|
|
210
253
|
.eds-contrast .eds-travel-tag__alert-exclamation-icon {
|
|
211
254
|
color: #ffe082;
|
|
212
255
|
}
|
|
256
|
+
.eds-contrast .eds-travel-tag__alert-exclamation-icon circle {
|
|
257
|
+
fill-opacity: 0;
|
|
258
|
+
}
|
|
213
259
|
.eds-travel-tag__alert-error-icon {
|
|
214
260
|
font-size: 0.875rem;
|
|
215
261
|
color: #d31b1b;
|
|
@@ -285,43 +331,4 @@
|
|
|
285
331
|
}
|
|
286
332
|
.eds-leg-bone--horizontal .eds-leg-bone__stop {
|
|
287
333
|
margin-left: 0.125rem;
|
|
288
|
-
}/* DO NOT CHANGE!*/
|
|
289
|
-
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
290
|
-
.eds-leg-line {
|
|
291
|
-
flex-grow: 1;
|
|
292
|
-
mask-image: url("./pattern/line.svg");
|
|
293
|
-
mask-position: center;
|
|
294
|
-
-webkit-mask-image: url("./pattern/line.svg");
|
|
295
|
-
-webkit-mask-position: center;
|
|
296
|
-
}
|
|
297
|
-
.eds-leg-line--dotted {
|
|
298
|
-
mask-image: url("./pattern/dotted.svg");
|
|
299
|
-
-webkit-mask-image: url("./pattern/dotted.svg");
|
|
300
|
-
}
|
|
301
|
-
.eds-leg-line--vertical {
|
|
302
|
-
mask-repeat: repeat-y;
|
|
303
|
-
width: 1rem;
|
|
304
|
-
-webkit-mask-repeat: repeat-y;
|
|
305
|
-
}
|
|
306
|
-
.eds-leg-line--vertical.eds-leg-line--dashed {
|
|
307
|
-
mask-image: url("./pattern/dashed-vertical.svg");
|
|
308
|
-
-webkit-mask-image: url("./pattern/dashed-vertical.svg");
|
|
309
|
-
}
|
|
310
|
-
.eds-leg-line--vertical.eds-leg-line--wave {
|
|
311
|
-
mask-image: url("./pattern/wave-vertical.svg");
|
|
312
|
-
-webkit-mask-image: url("./pattern/wave-vertical.svg");
|
|
313
|
-
}
|
|
314
|
-
.eds-leg-line--horizontal {
|
|
315
|
-
height: 1rem;
|
|
316
|
-
mask-repeat: repeat-x;
|
|
317
|
-
min-width: 6.25rem;
|
|
318
|
-
-webkit-mask-repeat: repeat-x;
|
|
319
|
-
}
|
|
320
|
-
.eds-leg-line--horizontal.eds-leg-line--dashed {
|
|
321
|
-
mask-image: url("./pattern/dashed-horizontal.svg");
|
|
322
|
-
-webkit-mask-image: url("./pattern/dashed-horizontal.svg");
|
|
323
|
-
}
|
|
324
|
-
.eds-leg-line--horizontal.eds-leg-line--wave {
|
|
325
|
-
mask-image: url("./pattern/wave-horizontal.svg");
|
|
326
|
-
-webkit-mask-image: url("./pattern/wave-horizontal.svg");
|
|
327
334
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@entur/travel",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.7",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/travel.esm.js",
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"lint": "dts lint"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@entur/icons": "^4.1.
|
|
27
|
-
"@entur/layout": "^2.1.
|
|
28
|
-
"@entur/tokens": "^3.3.
|
|
26
|
+
"@entur/icons": "^4.1.2",
|
|
27
|
+
"@entur/layout": "^2.1.6",
|
|
28
|
+
"@entur/tokens": "^3.3.2",
|
|
29
29
|
"@entur/utils": "^0.4.3",
|
|
30
30
|
"classnames": "^2.3.1"
|
|
31
31
|
},
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"rollup-plugin-sass": "^1.2.2"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "9e25b2a4a4ab659dc368f51ad0e0b74bee26e1d0"
|
|
40
40
|
}
|