@entur/menu 4.0.7 → 4.0.10
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 +12 -0
- package/dist/styles.css +56 -12
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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
|
+
## [4.0.10](https://bitbucket.org/enturas/design-system/compare/@entur/menu@4.0.9...@entur/menu@4.0.10) (2022-04-27)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @entur/menu
|
|
9
|
+
|
|
10
|
+
## [4.0.9](https://bitbucket.org/enturas/design-system/compare/@entur/menu@4.0.8...@entur/menu@4.0.9) (2022-04-20)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @entur/menu
|
|
13
|
+
|
|
14
|
+
## [4.0.8](https://bitbucket.org/enturas/design-system/compare/@entur/menu@4.0.7...@entur/menu@4.0.8) (2022-04-19)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @entur/menu
|
|
17
|
+
|
|
6
18
|
## [4.0.7](https://bitbucket.org/enturas/design-system/compare/@entur/menu@4.0.6...@entur/menu@4.0.7) (2022-03-01)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package @entur/menu
|
package/dist/styles.css
CHANGED
|
@@ -29,13 +29,22 @@
|
|
|
29
29
|
background-image: linear-gradient(120deg, #ffffff 0%, #ffffff 100%);
|
|
30
30
|
}
|
|
31
31
|
.eds-breadcrumb__link:hover {
|
|
32
|
-
animation: eds-breadcrumb-underline 0.3s ease-in;
|
|
32
|
+
-webkit-animation: eds-breadcrumb-underline 0.3s ease-in;
|
|
33
|
+
animation: eds-breadcrumb-underline 0.3s ease-in;
|
|
33
34
|
}
|
|
34
35
|
.eds-breadcrumb__link:focus {
|
|
35
36
|
outline: none;
|
|
36
37
|
box-shadow: 0 0 0 0.125rem #ffffff, 0 0 0 0.25rem #181c56;
|
|
37
38
|
outline-offset: 0.125rem;
|
|
38
39
|
}
|
|
40
|
+
@-webkit-keyframes eds-breadcrumb-underline {
|
|
41
|
+
from {
|
|
42
|
+
background-size: 0% 0.125rem;
|
|
43
|
+
}
|
|
44
|
+
to {
|
|
45
|
+
background-size: 100% 0.125rem;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
39
48
|
@keyframes eds-breadcrumb-underline {
|
|
40
49
|
from {
|
|
41
50
|
background-size: 0% 0.125rem;
|
|
@@ -155,7 +164,9 @@
|
|
|
155
164
|
}
|
|
156
165
|
|
|
157
166
|
.eds-side-navigation__click-target {
|
|
158
|
-
appearance: none;
|
|
167
|
+
-webkit-appearance: none;
|
|
168
|
+
-moz-appearance: none;
|
|
169
|
+
appearance: none;
|
|
159
170
|
background: none;
|
|
160
171
|
border: 0;
|
|
161
172
|
border-bottom: 0.125rem solid #e9e9e9;
|
|
@@ -222,7 +233,9 @@
|
|
|
222
233
|
|
|
223
234
|
.eds-side-navigation-group__trigger {
|
|
224
235
|
align-items: center;
|
|
225
|
-
appearance: none;
|
|
236
|
+
-webkit-appearance: none;
|
|
237
|
+
-moz-appearance: none;
|
|
238
|
+
appearance: none;
|
|
226
239
|
background: none;
|
|
227
240
|
border: none;
|
|
228
241
|
border-radius: 0;
|
|
@@ -272,6 +285,8 @@
|
|
|
272
285
|
position: relative;
|
|
273
286
|
padding: 1rem;
|
|
274
287
|
min-width: 5rem;
|
|
288
|
+
width: -webkit-fit-content;
|
|
289
|
+
width: -moz-fit-content;
|
|
275
290
|
width: fit-content;
|
|
276
291
|
text-align: center;
|
|
277
292
|
font-family: inherit;
|
|
@@ -318,7 +333,9 @@
|
|
|
318
333
|
cursor: pointer;
|
|
319
334
|
font-family: inherit;
|
|
320
335
|
text-transform: none;
|
|
321
|
-
appearance: none;
|
|
336
|
+
-webkit-appearance: none;
|
|
337
|
+
-moz-appearance: none;
|
|
338
|
+
appearance: none;
|
|
322
339
|
background: none;
|
|
323
340
|
border: none;
|
|
324
341
|
margin: 0;
|
|
@@ -445,7 +462,9 @@
|
|
|
445
462
|
}
|
|
446
463
|
|
|
447
464
|
.eds-pagination-menu__menu-button {
|
|
448
|
-
appearance: none;
|
|
465
|
+
-webkit-appearance: none;
|
|
466
|
+
-moz-appearance: none;
|
|
467
|
+
appearance: none;
|
|
449
468
|
background: transparent;
|
|
450
469
|
border: 0.0625rem solid #d1d3d3;
|
|
451
470
|
border-radius: 0.25rem;
|
|
@@ -472,7 +491,9 @@
|
|
|
472
491
|
|
|
473
492
|
.eds-pagination__page {
|
|
474
493
|
align-items: center;
|
|
475
|
-
appearance: none;
|
|
494
|
+
-webkit-appearance: none;
|
|
495
|
+
-moz-appearance: none;
|
|
496
|
+
appearance: none;
|
|
476
497
|
background: transparent;
|
|
477
498
|
border: 0.0625rem solid #d1d3d3;
|
|
478
499
|
border-color: #d1d3d3;
|
|
@@ -487,7 +508,10 @@
|
|
|
487
508
|
margin: 0 0.125rem;
|
|
488
509
|
padding: 0 0.25rem;
|
|
489
510
|
transition: background 0.1s ease-out, border-color 0.1s ease-out;
|
|
490
|
-
user-select: none;
|
|
511
|
+
-webkit-user-select: none;
|
|
512
|
+
-moz-user-select: none;
|
|
513
|
+
-ms-user-select: none;
|
|
514
|
+
user-select: none;
|
|
491
515
|
min-width: 2rem;
|
|
492
516
|
}
|
|
493
517
|
.eds-contrast .eds-pagination__page {
|
|
@@ -527,7 +551,10 @@
|
|
|
527
551
|
font-size: 1.5rem;
|
|
528
552
|
height: 2rem;
|
|
529
553
|
justify-content: center;
|
|
530
|
-
user-select: none;
|
|
554
|
+
-webkit-user-select: none;
|
|
555
|
+
-moz-user-select: none;
|
|
556
|
+
-ms-user-select: none;
|
|
557
|
+
user-select: none;
|
|
531
558
|
width: 2rem;
|
|
532
559
|
}
|
|
533
560
|
|
|
@@ -544,7 +571,9 @@
|
|
|
544
571
|
}
|
|
545
572
|
|
|
546
573
|
.eds-pagination__input-field {
|
|
547
|
-
appearance: none;
|
|
574
|
+
-webkit-appearance: none;
|
|
575
|
+
-moz-appearance: none;
|
|
576
|
+
appearance: none;
|
|
548
577
|
background: transparent;
|
|
549
578
|
border: 0.0625rem solid #d1d3d3;
|
|
550
579
|
border-radius: 0.25rem;
|
|
@@ -556,12 +585,15 @@
|
|
|
556
585
|
width: 2rem;
|
|
557
586
|
}
|
|
558
587
|
.eds-pagination__input-field::-webkit-inner-spin-button, .eds-pagination__input-field::-webkit-outer-spin-button {
|
|
559
|
-
appearance: none;
|
|
588
|
+
-webkit-appearance: none;
|
|
589
|
+
appearance: none;
|
|
560
590
|
margin: 0;
|
|
561
591
|
}/* DO NOT CHANGE!*/
|
|
562
592
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
563
593
|
.eds-overflow-menu__item {
|
|
564
|
-
appearance: none;
|
|
594
|
+
-webkit-appearance: none;
|
|
595
|
+
-moz-appearance: none;
|
|
596
|
+
appearance: none;
|
|
565
597
|
border: none;
|
|
566
598
|
font-size: 0.875rem;
|
|
567
599
|
font-family: inherit;
|
|
@@ -621,7 +653,19 @@
|
|
|
621
653
|
|
|
622
654
|
.eds-overflow-menu__menu-list[data-reach-menu-list],
|
|
623
655
|
.eds-overflow-menu__menu-list[data-reach-menu-items] {
|
|
624
|
-
animation: slide-in 0.2s ease-in-out;
|
|
656
|
+
-webkit-animation: slide-in 0.2s ease-in-out;
|
|
657
|
+
animation: slide-in 0.2s ease-in-out;
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
@-webkit-keyframes slide-in {
|
|
661
|
+
0% {
|
|
662
|
+
opacity: 0;
|
|
663
|
+
transform: translateY(0.5rem);
|
|
664
|
+
}
|
|
665
|
+
100% {
|
|
666
|
+
opacity: 1;
|
|
667
|
+
transform: translateY(0);
|
|
668
|
+
}
|
|
625
669
|
}
|
|
626
670
|
|
|
627
671
|
@keyframes slide-in {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@entur/menu",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.10",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/menu.esm.js",
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"lint": "dts lint"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@entur/button": "^2.8.
|
|
27
|
-
"@entur/expand": "^3.3.
|
|
28
|
-
"@entur/icons": "^
|
|
29
|
-
"@entur/layout": "^2.1.
|
|
30
|
-
"@entur/tokens": "^3.3.
|
|
31
|
-
"@entur/typography": "^1.6.
|
|
26
|
+
"@entur/button": "^2.8.1",
|
|
27
|
+
"@entur/expand": "^3.3.11",
|
|
28
|
+
"@entur/icons": "^4.1.1",
|
|
29
|
+
"@entur/layout": "^2.1.5",
|
|
30
|
+
"@entur/tokens": "^3.3.2",
|
|
31
|
+
"@entur/typography": "^1.6.12",
|
|
32
32
|
"@entur/utils": "^0.4.3",
|
|
33
33
|
"@reach/menu-button": "^0.16.1",
|
|
34
34
|
"classnames": "^2.3.1"
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"react": ">=16.8.0",
|
|
38
38
|
"react-dom": ">=16.8.0"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "7b557782d62c07bdce744f9b084d57177e2202e9"
|
|
41
41
|
}
|