@entur/menu 4.1.14-alpha.0 → 4.1.14-alpha.1
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 +4 -0
- package/dist/styles.css +211 -211
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
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.1.14-alpha.1](https://bitbucket.org/enturas/design-system/compare/@entur/menu@4.1.14-alpha.0...@entur/menu@4.1.14-alpha.1) (2022-10-26)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @entur/menu
|
|
9
|
+
|
|
6
10
|
## [4.1.14-alpha.0](https://bitbucket.org/enturas/design-system/compare/@entur/menu@4.1.13...@entur/menu@4.1.14-alpha.0) (2022-10-20)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @entur/menu
|
package/dist/styles.css
CHANGED
|
@@ -106,103 +106,6 @@
|
|
|
106
106
|
width: 2rem;
|
|
107
107
|
}/* DO NOT CHANGE!*/
|
|
108
108
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
109
|
-
.eds-overflow-menu__item {
|
|
110
|
-
-webkit-appearance: none;
|
|
111
|
-
-moz-appearance: none;
|
|
112
|
-
appearance: none;
|
|
113
|
-
border: none;
|
|
114
|
-
font-size: 0.875rem;
|
|
115
|
-
font-family: inherit;
|
|
116
|
-
color: var(--primary-text-color);
|
|
117
|
-
background: #f8f8f8;
|
|
118
|
-
display: block;
|
|
119
|
-
height: 3rem;
|
|
120
|
-
cursor: pointer;
|
|
121
|
-
width: 100%;
|
|
122
|
-
line-height: 1.375rem;
|
|
123
|
-
text-align: left;
|
|
124
|
-
padding: 0.75rem 1rem;
|
|
125
|
-
opacity: 1;
|
|
126
|
-
}
|
|
127
|
-
.eds-contrast .eds-overflow-menu__item {
|
|
128
|
-
color: #181c56;
|
|
129
|
-
}
|
|
130
|
-
.eds-overflow-menu__item.eds-overflow-menu__item--disabled {
|
|
131
|
-
background: #e9e9e9;
|
|
132
|
-
color: #949494;
|
|
133
|
-
}
|
|
134
|
-
.eds-contrast .eds-overflow-menu__item.eds-overflow-menu__item--disabled {
|
|
135
|
-
background: #e9e9e9;
|
|
136
|
-
color: #949494;
|
|
137
|
-
}
|
|
138
|
-
.eds-overflow-menu__item.eds-overflow-menu__item--disabled:hover {
|
|
139
|
-
cursor: not-allowed;
|
|
140
|
-
background: #e9e9e9;
|
|
141
|
-
color: #949494;
|
|
142
|
-
}
|
|
143
|
-
.eds-overflow-menu__item .eds-icon {
|
|
144
|
-
margin-right: 0.75rem;
|
|
145
|
-
}
|
|
146
|
-
.eds-overflow-menu__item:hover, .eds-overflow-menu__item:focus, .eds-overflow-menu__item[data-selected] {
|
|
147
|
-
background: #d1d4e3;
|
|
148
|
-
}
|
|
149
|
-
.eds-overflow-menu__item:focus {
|
|
150
|
-
outline: none;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
.eds-overflow-menu__item + .eds-overflow-menu__item {
|
|
154
|
-
border-top: 0.0625rem solid #e9e9e9;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
.eds-overflow-menu__menu-list[data-reach-menu-list] {
|
|
158
|
-
border: 0.0625rem solid #e9e9e9;
|
|
159
|
-
border-radius: 0.25rem;
|
|
160
|
-
box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.25);
|
|
161
|
-
overflow: hidden;
|
|
162
|
-
}
|
|
163
|
-
.eds-overflow-menu__menu-list[data-reach-menu-list]:focus {
|
|
164
|
-
outline: none;
|
|
165
|
-
}
|
|
166
|
-
.eds-overflow-menu__menu-list[data-reach-menu-list].eds-contrast {
|
|
167
|
-
box-shadow: 0 0.0625rem 0.1875rem #393d79;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
.eds-overflow-menu__menu-list[data-reach-menu-list],
|
|
171
|
-
.eds-overflow-menu__menu-list[data-reach-menu-items] {
|
|
172
|
-
-webkit-animation: slide-in 0.2s ease-in-out;
|
|
173
|
-
animation: slide-in 0.2s ease-in-out;
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
@-webkit-keyframes slide-in {
|
|
177
|
-
0% {
|
|
178
|
-
opacity: 0;
|
|
179
|
-
transform: translateY(0.5rem);
|
|
180
|
-
}
|
|
181
|
-
100% {
|
|
182
|
-
opacity: 1;
|
|
183
|
-
transform: translateY(0);
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
@keyframes slide-in {
|
|
188
|
-
0% {
|
|
189
|
-
opacity: 0;
|
|
190
|
-
transform: translateY(0.5rem);
|
|
191
|
-
}
|
|
192
|
-
100% {
|
|
193
|
-
opacity: 1;
|
|
194
|
-
transform: translateY(0);
|
|
195
|
-
}
|
|
196
|
-
}
|
|
197
|
-
[data-reach-menu-popover] {
|
|
198
|
-
position: absolute;
|
|
199
|
-
z-index: 30;
|
|
200
|
-
}
|
|
201
|
-
[data-reach-menu-popover] .eds-overflow-menu__menu-list--left {
|
|
202
|
-
position: relative;
|
|
203
|
-
right: calc(100% - 2rem);
|
|
204
|
-
}/* DO NOT CHANGE!*/
|
|
205
|
-
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
206
109
|
/* DO NOT CHANGE!*/
|
|
207
110
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
208
111
|
.eds-side-navigation,
|
|
@@ -422,120 +325,6 @@
|
|
|
422
325
|
outline: 2px solid #ffffff;
|
|
423
326
|
}/* DO NOT CHANGE!*/
|
|
424
327
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
425
|
-
.eds-stepper {
|
|
426
|
-
display: flex;
|
|
427
|
-
flex-direction: row;
|
|
428
|
-
}
|
|
429
|
-
.eds-stepper__item__container {
|
|
430
|
-
cursor: pointer;
|
|
431
|
-
font-family: inherit;
|
|
432
|
-
text-transform: none;
|
|
433
|
-
-webkit-appearance: none;
|
|
434
|
-
-moz-appearance: none;
|
|
435
|
-
appearance: none;
|
|
436
|
-
background: none;
|
|
437
|
-
border: none;
|
|
438
|
-
margin: 0;
|
|
439
|
-
padding: 0;
|
|
440
|
-
align-items: inherit;
|
|
441
|
-
display: flex;
|
|
442
|
-
flex-grow: 1;
|
|
443
|
-
flex-basis: 0;
|
|
444
|
-
flex-direction: column;
|
|
445
|
-
margin-left: 0.25rem;
|
|
446
|
-
}
|
|
447
|
-
.eds-stepper__item__container--non-interactive {
|
|
448
|
-
cursor: default;
|
|
449
|
-
}
|
|
450
|
-
.eds-stepper__item__container:focus {
|
|
451
|
-
outline-offset: 0.125rem;
|
|
452
|
-
outline: none;
|
|
453
|
-
box-shadow: 0 0 0 0.125rem #ffffff, 0 0 0 0.25rem #181c56;
|
|
454
|
-
}
|
|
455
|
-
.eds-contrast .eds-stepper__item__container:focus {
|
|
456
|
-
box-shadow: 0 0 0 0.125rem #181c56, 0 0 0 0.25rem #ffffff;
|
|
457
|
-
}
|
|
458
|
-
.eds-stepper__item__container:first-child {
|
|
459
|
-
margin-left: 0;
|
|
460
|
-
}
|
|
461
|
-
.eds-stepper__item__label {
|
|
462
|
-
cursor: inherit;
|
|
463
|
-
flex-grow: 1;
|
|
464
|
-
flex-direction: column;
|
|
465
|
-
text-align: center;
|
|
466
|
-
font-size: 0.875rem;
|
|
467
|
-
padding: 0.25rem 1rem;
|
|
468
|
-
}
|
|
469
|
-
.eds-stepper__item__label--active {
|
|
470
|
-
font-weight: 600;
|
|
471
|
-
}
|
|
472
|
-
.eds-stepper__item__label.eds-stepper__item__label--active {
|
|
473
|
-
color: #181c56;
|
|
474
|
-
}
|
|
475
|
-
.eds-contrast .eds-stepper__item__label.eds-stepper__item__label--active {
|
|
476
|
-
color: #ffffff;
|
|
477
|
-
}
|
|
478
|
-
.eds-stepper__item__label.eds-stepper__item__label--has-been {
|
|
479
|
-
color: #181c56;
|
|
480
|
-
}
|
|
481
|
-
.eds-contrast .eds-stepper__item__label.eds-stepper__item__label--has-been {
|
|
482
|
-
color: #ffffff;
|
|
483
|
-
}
|
|
484
|
-
.eds-stepper__item__square {
|
|
485
|
-
height: 0.5rem;
|
|
486
|
-
}
|
|
487
|
-
.eds-stepper__item__square--active {
|
|
488
|
-
color: inherit;
|
|
489
|
-
background: #e9e9e9;
|
|
490
|
-
position: relative;
|
|
491
|
-
}
|
|
492
|
-
.eds-stepper__item__square--active:before {
|
|
493
|
-
background: #181c56;
|
|
494
|
-
content: "";
|
|
495
|
-
position: absolute;
|
|
496
|
-
right: calc(50% - 0.2rem);
|
|
497
|
-
border-radius: 0.0625rem;
|
|
498
|
-
bottom: 0.0625rem;
|
|
499
|
-
width: calc( 0.5rem - 0.125rem - 0.01rem );
|
|
500
|
-
height: calc( 0.5rem - 0.125rem - 0.01rem );
|
|
501
|
-
transform: rotate(45deg);
|
|
502
|
-
}
|
|
503
|
-
.eds-contrast .eds-stepper__item__square--active:before {
|
|
504
|
-
border-left-color: #aeb7e2;
|
|
505
|
-
border-left-color: #aeb7e2;
|
|
506
|
-
}
|
|
507
|
-
.eds-stepper__item__square--active:after {
|
|
508
|
-
content: "";
|
|
509
|
-
position: absolute;
|
|
510
|
-
left: 0;
|
|
511
|
-
bottom: 0;
|
|
512
|
-
width: 50%;
|
|
513
|
-
height: 0.5rem;
|
|
514
|
-
background: #181c56;
|
|
515
|
-
}
|
|
516
|
-
.eds-contrast .eds-stepper__item__square--active:after {
|
|
517
|
-
background: #aeb7e2;
|
|
518
|
-
}
|
|
519
|
-
.eds-contrast .eds-stepper__item__square--active {
|
|
520
|
-
background: #aeb7e2;
|
|
521
|
-
background: #393d79;
|
|
522
|
-
}
|
|
523
|
-
.eds-stepper__item__square--inactive {
|
|
524
|
-
color: #656782;
|
|
525
|
-
background: #e9e9e9;
|
|
526
|
-
}
|
|
527
|
-
.eds-contrast .eds-stepper__item__square--inactive {
|
|
528
|
-
color: #aeb7e2;
|
|
529
|
-
background: #393d79;
|
|
530
|
-
}
|
|
531
|
-
.eds-stepper__item__square--has-been {
|
|
532
|
-
color: inherit;
|
|
533
|
-
background: #181c56;
|
|
534
|
-
}
|
|
535
|
-
.eds-contrast .eds-stepper__item__square--has-been {
|
|
536
|
-
background: #aeb7e2;
|
|
537
|
-
}/* DO NOT CHANGE!*/
|
|
538
|
-
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
539
328
|
.eds-pagination {
|
|
540
329
|
align-items: center;
|
|
541
330
|
display: flex;
|
|
@@ -695,4 +484,215 @@
|
|
|
695
484
|
-webkit-appearance: none;
|
|
696
485
|
appearance: none;
|
|
697
486
|
margin: 0;
|
|
487
|
+
}/* DO NOT CHANGE!*/
|
|
488
|
+
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
489
|
+
.eds-overflow-menu__item {
|
|
490
|
+
-webkit-appearance: none;
|
|
491
|
+
-moz-appearance: none;
|
|
492
|
+
appearance: none;
|
|
493
|
+
border: none;
|
|
494
|
+
font-size: 0.875rem;
|
|
495
|
+
font-family: inherit;
|
|
496
|
+
color: var(--primary-text-color);
|
|
497
|
+
background: #f8f8f8;
|
|
498
|
+
display: block;
|
|
499
|
+
height: 3rem;
|
|
500
|
+
cursor: pointer;
|
|
501
|
+
width: 100%;
|
|
502
|
+
line-height: 1.375rem;
|
|
503
|
+
text-align: left;
|
|
504
|
+
padding: 0.75rem 1rem;
|
|
505
|
+
opacity: 1;
|
|
506
|
+
}
|
|
507
|
+
.eds-contrast .eds-overflow-menu__item {
|
|
508
|
+
color: #181c56;
|
|
509
|
+
}
|
|
510
|
+
.eds-overflow-menu__item.eds-overflow-menu__item--disabled {
|
|
511
|
+
background: #e9e9e9;
|
|
512
|
+
color: #949494;
|
|
513
|
+
}
|
|
514
|
+
.eds-contrast .eds-overflow-menu__item.eds-overflow-menu__item--disabled {
|
|
515
|
+
background: #e9e9e9;
|
|
516
|
+
color: #949494;
|
|
517
|
+
}
|
|
518
|
+
.eds-overflow-menu__item.eds-overflow-menu__item--disabled:hover {
|
|
519
|
+
cursor: not-allowed;
|
|
520
|
+
background: #e9e9e9;
|
|
521
|
+
color: #949494;
|
|
522
|
+
}
|
|
523
|
+
.eds-overflow-menu__item .eds-icon {
|
|
524
|
+
margin-right: 0.75rem;
|
|
525
|
+
}
|
|
526
|
+
.eds-overflow-menu__item:hover, .eds-overflow-menu__item:focus, .eds-overflow-menu__item[data-selected] {
|
|
527
|
+
background: #d1d4e3;
|
|
528
|
+
}
|
|
529
|
+
.eds-overflow-menu__item:focus {
|
|
530
|
+
outline: none;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
.eds-overflow-menu__item + .eds-overflow-menu__item {
|
|
534
|
+
border-top: 0.0625rem solid #e9e9e9;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
.eds-overflow-menu__menu-list[data-reach-menu-list] {
|
|
538
|
+
border: 0.0625rem solid #e9e9e9;
|
|
539
|
+
border-radius: 0.25rem;
|
|
540
|
+
box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.25);
|
|
541
|
+
overflow: hidden;
|
|
542
|
+
}
|
|
543
|
+
.eds-overflow-menu__menu-list[data-reach-menu-list]:focus {
|
|
544
|
+
outline: none;
|
|
545
|
+
}
|
|
546
|
+
.eds-overflow-menu__menu-list[data-reach-menu-list].eds-contrast {
|
|
547
|
+
box-shadow: 0 0.0625rem 0.1875rem #393d79;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
.eds-overflow-menu__menu-list[data-reach-menu-list],
|
|
551
|
+
.eds-overflow-menu__menu-list[data-reach-menu-items] {
|
|
552
|
+
-webkit-animation: slide-in 0.2s ease-in-out;
|
|
553
|
+
animation: slide-in 0.2s ease-in-out;
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
@-webkit-keyframes slide-in {
|
|
557
|
+
0% {
|
|
558
|
+
opacity: 0;
|
|
559
|
+
transform: translateY(0.5rem);
|
|
560
|
+
}
|
|
561
|
+
100% {
|
|
562
|
+
opacity: 1;
|
|
563
|
+
transform: translateY(0);
|
|
564
|
+
}
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
@keyframes slide-in {
|
|
568
|
+
0% {
|
|
569
|
+
opacity: 0;
|
|
570
|
+
transform: translateY(0.5rem);
|
|
571
|
+
}
|
|
572
|
+
100% {
|
|
573
|
+
opacity: 1;
|
|
574
|
+
transform: translateY(0);
|
|
575
|
+
}
|
|
576
|
+
}
|
|
577
|
+
[data-reach-menu-popover] {
|
|
578
|
+
position: absolute;
|
|
579
|
+
z-index: 30;
|
|
580
|
+
}
|
|
581
|
+
[data-reach-menu-popover] .eds-overflow-menu__menu-list--left {
|
|
582
|
+
position: relative;
|
|
583
|
+
right: calc(100% - 2rem);
|
|
584
|
+
}/* DO NOT CHANGE!*/
|
|
585
|
+
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
586
|
+
.eds-stepper {
|
|
587
|
+
display: flex;
|
|
588
|
+
flex-direction: row;
|
|
589
|
+
}
|
|
590
|
+
.eds-stepper__item__container {
|
|
591
|
+
cursor: pointer;
|
|
592
|
+
font-family: inherit;
|
|
593
|
+
text-transform: none;
|
|
594
|
+
-webkit-appearance: none;
|
|
595
|
+
-moz-appearance: none;
|
|
596
|
+
appearance: none;
|
|
597
|
+
background: none;
|
|
598
|
+
border: none;
|
|
599
|
+
margin: 0;
|
|
600
|
+
padding: 0;
|
|
601
|
+
align-items: inherit;
|
|
602
|
+
display: flex;
|
|
603
|
+
flex-grow: 1;
|
|
604
|
+
flex-basis: 0;
|
|
605
|
+
flex-direction: column;
|
|
606
|
+
margin-left: 0.25rem;
|
|
607
|
+
}
|
|
608
|
+
.eds-stepper__item__container--non-interactive {
|
|
609
|
+
cursor: default;
|
|
610
|
+
}
|
|
611
|
+
.eds-stepper__item__container:focus {
|
|
612
|
+
outline-offset: 0.125rem;
|
|
613
|
+
outline: none;
|
|
614
|
+
box-shadow: 0 0 0 0.125rem #ffffff, 0 0 0 0.25rem #181c56;
|
|
615
|
+
}
|
|
616
|
+
.eds-contrast .eds-stepper__item__container:focus {
|
|
617
|
+
box-shadow: 0 0 0 0.125rem #181c56, 0 0 0 0.25rem #ffffff;
|
|
618
|
+
}
|
|
619
|
+
.eds-stepper__item__container:first-child {
|
|
620
|
+
margin-left: 0;
|
|
621
|
+
}
|
|
622
|
+
.eds-stepper__item__label {
|
|
623
|
+
cursor: inherit;
|
|
624
|
+
flex-grow: 1;
|
|
625
|
+
flex-direction: column;
|
|
626
|
+
text-align: center;
|
|
627
|
+
font-size: 0.875rem;
|
|
628
|
+
padding: 0.25rem 1rem;
|
|
629
|
+
}
|
|
630
|
+
.eds-stepper__item__label--active {
|
|
631
|
+
font-weight: 600;
|
|
632
|
+
}
|
|
633
|
+
.eds-stepper__item__label.eds-stepper__item__label--active {
|
|
634
|
+
color: #181c56;
|
|
635
|
+
}
|
|
636
|
+
.eds-contrast .eds-stepper__item__label.eds-stepper__item__label--active {
|
|
637
|
+
color: #ffffff;
|
|
638
|
+
}
|
|
639
|
+
.eds-stepper__item__label.eds-stepper__item__label--has-been {
|
|
640
|
+
color: #181c56;
|
|
641
|
+
}
|
|
642
|
+
.eds-contrast .eds-stepper__item__label.eds-stepper__item__label--has-been {
|
|
643
|
+
color: #ffffff;
|
|
644
|
+
}
|
|
645
|
+
.eds-stepper__item__square {
|
|
646
|
+
height: 0.5rem;
|
|
647
|
+
}
|
|
648
|
+
.eds-stepper__item__square--active {
|
|
649
|
+
color: inherit;
|
|
650
|
+
background: #e9e9e9;
|
|
651
|
+
position: relative;
|
|
652
|
+
}
|
|
653
|
+
.eds-stepper__item__square--active:before {
|
|
654
|
+
background: #181c56;
|
|
655
|
+
content: "";
|
|
656
|
+
position: absolute;
|
|
657
|
+
right: calc(50% - 0.2rem);
|
|
658
|
+
border-radius: 0.0625rem;
|
|
659
|
+
bottom: 0.0625rem;
|
|
660
|
+
width: calc( 0.5rem - 0.125rem - 0.01rem );
|
|
661
|
+
height: calc( 0.5rem - 0.125rem - 0.01rem );
|
|
662
|
+
transform: rotate(45deg);
|
|
663
|
+
}
|
|
664
|
+
.eds-contrast .eds-stepper__item__square--active:before {
|
|
665
|
+
border-left-color: #aeb7e2;
|
|
666
|
+
border-left-color: #aeb7e2;
|
|
667
|
+
}
|
|
668
|
+
.eds-stepper__item__square--active:after {
|
|
669
|
+
content: "";
|
|
670
|
+
position: absolute;
|
|
671
|
+
left: 0;
|
|
672
|
+
bottom: 0;
|
|
673
|
+
width: 50%;
|
|
674
|
+
height: 0.5rem;
|
|
675
|
+
background: #181c56;
|
|
676
|
+
}
|
|
677
|
+
.eds-contrast .eds-stepper__item__square--active:after {
|
|
678
|
+
background: #aeb7e2;
|
|
679
|
+
}
|
|
680
|
+
.eds-contrast .eds-stepper__item__square--active {
|
|
681
|
+
background: #aeb7e2;
|
|
682
|
+
background: #393d79;
|
|
683
|
+
}
|
|
684
|
+
.eds-stepper__item__square--inactive {
|
|
685
|
+
color: #656782;
|
|
686
|
+
background: #e9e9e9;
|
|
687
|
+
}
|
|
688
|
+
.eds-contrast .eds-stepper__item__square--inactive {
|
|
689
|
+
color: #aeb7e2;
|
|
690
|
+
background: #393d79;
|
|
691
|
+
}
|
|
692
|
+
.eds-stepper__item__square--has-been {
|
|
693
|
+
color: inherit;
|
|
694
|
+
background: #181c56;
|
|
695
|
+
}
|
|
696
|
+
.eds-contrast .eds-stepper__item__square--has-been {
|
|
697
|
+
background: #aeb7e2;
|
|
698
698
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@entur/menu",
|
|
3
|
-
"version": "4.1.14-alpha.
|
|
3
|
+
"version": "4.1.14-alpha.1",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/menu.esm.js",
|
|
@@ -23,14 +23,14 @@
|
|
|
23
23
|
"lint": "dts lint"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@entur/a11y": "^0.2.50-alpha.
|
|
27
|
-
"@entur/button": "^2.10.5-alpha.
|
|
28
|
-
"@entur/expand": "^3.3.22-alpha.
|
|
29
|
-
"@entur/icons": "^5.0.1-alpha.
|
|
30
|
-
"@entur/layout": "^2.1.12-alpha.
|
|
26
|
+
"@entur/a11y": "^0.2.50-alpha.1",
|
|
27
|
+
"@entur/button": "^2.10.5-alpha.1",
|
|
28
|
+
"@entur/expand": "^3.3.22-alpha.1",
|
|
29
|
+
"@entur/icons": "^5.0.1-alpha.1",
|
|
30
|
+
"@entur/layout": "^2.1.12-alpha.1",
|
|
31
31
|
"@entur/tokens": "^3.4.1",
|
|
32
|
-
"@entur/typography": "^1.7.1-alpha.
|
|
33
|
-
"@entur/utils": "^0.
|
|
32
|
+
"@entur/typography": "^1.7.1-alpha.1",
|
|
33
|
+
"@entur/utils": "^0.5.0-alpha.0",
|
|
34
34
|
"@reach/menu-button": "^0.16.1",
|
|
35
35
|
"classnames": "^2.3.1"
|
|
36
36
|
},
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"react": ">=16.8.0",
|
|
39
39
|
"react-dom": ">=16.8.0"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "8e5d6c63d180d5b3a7b2d0c6c4cdbb8ecb8af8f4"
|
|
42
42
|
}
|