@entur/menu 5.1.3 → 5.1.4
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/README.md +2 -2
- package/dist/styles.css +196 -194
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
This package contains the navigation components
|
|
4
4
|
|
|
5
|
-
> 💡 Looking for the [documentation](https://
|
|
5
|
+
> 💡 Looking for the [documentation](https://linje.entur.no/komponenter/navigasjon/top-navigation)?
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
@@ -14,4 +14,4 @@ yarn add @entur/menu
|
|
|
14
14
|
|
|
15
15
|
## Usage
|
|
16
16
|
|
|
17
|
-
Please refer to the [documentation](https://
|
|
17
|
+
Please refer to the [documentation](https://linje.entur.no/komponenter/navigasjon/top-navigation) for further usage information.
|
package/dist/styles.css
CHANGED
|
@@ -55,6 +55,51 @@
|
|
|
55
55
|
}
|
|
56
56
|
/* DO NOT CHANGE!*/
|
|
57
57
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
58
|
+
.eds-overflow-menu__menu-list {
|
|
59
|
+
box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.25);
|
|
60
|
+
overflow: hidden;
|
|
61
|
+
border-radius: 0.25rem;
|
|
62
|
+
border: 0.0625rem solid var(--components-menu-overflowmenu-border);
|
|
63
|
+
z-index: 20;
|
|
64
|
+
}
|
|
65
|
+
.eds-overflow-menu__menu-list.eds-contrast {
|
|
66
|
+
box-shadow: 0 0.0625rem 0.1875rem rgb(57, 61, 121);
|
|
67
|
+
}
|
|
68
|
+
.eds-overflow-menu__item {
|
|
69
|
+
display: block;
|
|
70
|
+
width: 100%;
|
|
71
|
+
-webkit-appearance: none;
|
|
72
|
+
-moz-appearance: none;
|
|
73
|
+
appearance: none;
|
|
74
|
+
padding: 0.75rem;
|
|
75
|
+
border: none;
|
|
76
|
+
outline: none;
|
|
77
|
+
font-size: 1rem;
|
|
78
|
+
line-height: 1.375rem;
|
|
79
|
+
text-align: left;
|
|
80
|
+
-webkit-text-decoration: none;
|
|
81
|
+
text-decoration: none;
|
|
82
|
+
color: var(--components-menu-overflowmenu-text);
|
|
83
|
+
background: var(--components-menu-overflowmenu-fill-default);
|
|
84
|
+
cursor: pointer;
|
|
85
|
+
}
|
|
86
|
+
.eds-overflow-menu__item--highlighted {
|
|
87
|
+
background: var(--components-menu-overflowmenu-fill-hover);
|
|
88
|
+
}
|
|
89
|
+
.eds-overflow-menu__item:active {
|
|
90
|
+
background: var(--components-menu-overflowmenu-fill-active);
|
|
91
|
+
color: var(--components-menu-overflowmenu-text-active);
|
|
92
|
+
}
|
|
93
|
+
.eds-overflow-menu__item--disabled {
|
|
94
|
+
background: var(--components-menu-overflowmenu-fill-default);
|
|
95
|
+
color: var(--components-menu-overflowmenu-text-disabled);
|
|
96
|
+
cursor: not-allowed;
|
|
97
|
+
}
|
|
98
|
+
.eds-overflow-menu__item svg {
|
|
99
|
+
margin-right: 0.75rem;
|
|
100
|
+
}
|
|
101
|
+
/* DO NOT CHANGE!*/
|
|
102
|
+
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
58
103
|
.eds-side-navigation,
|
|
59
104
|
.eds-side-navigation-group {
|
|
60
105
|
color: var(--components-menu-sidenavigation-standard-text);
|
|
@@ -285,48 +330,121 @@
|
|
|
285
330
|
}
|
|
286
331
|
/* DO NOT CHANGE!*/
|
|
287
332
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
288
|
-
.eds-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
.eds-overflow-menu__menu-list.eds-contrast {
|
|
296
|
-
box-shadow: 0 0.0625rem 0.1875rem rgb(57, 61, 121);
|
|
297
|
-
}
|
|
298
|
-
.eds-overflow-menu__item {
|
|
299
|
-
display: block;
|
|
333
|
+
.eds-stepper {
|
|
334
|
+
--text-color: var(--components-menu-stepper-standard-text-uncompleted);
|
|
335
|
+
--line-color: var(--components-menu-stepper-standard-background);
|
|
336
|
+
--label-font-weight: 500;
|
|
337
|
+
--display-active-line: none;
|
|
338
|
+
display: flex;
|
|
339
|
+
flex-direction: row;
|
|
300
340
|
width: 100%;
|
|
341
|
+
list-style-type: none;
|
|
342
|
+
}
|
|
343
|
+
.eds-stepper__step {
|
|
344
|
+
display: flex;
|
|
345
|
+
flex-grow: 1;
|
|
346
|
+
flex-basis: 0;
|
|
347
|
+
flex-direction: column;
|
|
348
|
+
align-items: inherit;
|
|
301
349
|
-webkit-appearance: none;
|
|
302
350
|
-moz-appearance: none;
|
|
303
351
|
appearance: none;
|
|
304
|
-
|
|
352
|
+
background: none;
|
|
305
353
|
border: none;
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
354
|
+
font-family: inherit;
|
|
355
|
+
text-transform: none;
|
|
356
|
+
}
|
|
357
|
+
.eds-stepper__step:focus-visible .eds-stepper__step__label {
|
|
358
|
+
outline-offset: 0.125rem;
|
|
359
|
+
outline: 2px solid #181c56;
|
|
360
|
+
}
|
|
361
|
+
.eds-contrast .eds-stepper__step:focus-visible .eds-stepper__step__label {
|
|
362
|
+
outline: 2px solid #ffffff;
|
|
363
|
+
}
|
|
364
|
+
.eds-contrast .eds-stepper__step {
|
|
365
|
+
--text-color: var(--components-menu-stepper-contrast-text-uncompleted);
|
|
366
|
+
--line-color: var(--components-menu-stepper-contrast-background);
|
|
367
|
+
}
|
|
368
|
+
.eds-stepper__step__wrapper {
|
|
369
|
+
flex-grow: 1;
|
|
370
|
+
}
|
|
371
|
+
.eds-stepper__step--interactive {
|
|
372
|
+
all: unset;
|
|
373
|
+
display: flex;
|
|
374
|
+
flex-direction: column;
|
|
375
|
+
width: 100%;
|
|
314
376
|
cursor: pointer;
|
|
315
377
|
}
|
|
316
|
-
.eds-
|
|
317
|
-
|
|
378
|
+
.eds-stepper__step--active {
|
|
379
|
+
--text-color: var(--components-menu-stepper-standard-text-uncompleted);
|
|
380
|
+
--label-font-weight: 600;
|
|
381
|
+
--display-active-line: block;
|
|
318
382
|
}
|
|
319
|
-
.eds-
|
|
320
|
-
|
|
321
|
-
color: var(--components-menu-overflowmenu-text-active);
|
|
383
|
+
.eds-contrast .eds-stepper__step--active {
|
|
384
|
+
--text-color: var(--components-menu-stepper-contrast-text-uncompleted);
|
|
322
385
|
}
|
|
323
|
-
.eds-
|
|
324
|
-
|
|
325
|
-
color: var(--components-menu-
|
|
326
|
-
cursor: not-allowed;
|
|
386
|
+
.eds-stepper__step--completed {
|
|
387
|
+
--text-color: var(--components-menu-stepper-standard-text-completed);
|
|
388
|
+
--line-color: var(--components-menu-stepper-standard-progressbar);
|
|
327
389
|
}
|
|
328
|
-
.eds-
|
|
329
|
-
|
|
390
|
+
.eds-contrast .eds-stepper__step--completed {
|
|
391
|
+
--text-color: var(--components-menu-stepper-contrast-text-completed);
|
|
392
|
+
--line-color: var(--components-menu-stepper-contrast-progressbar);
|
|
393
|
+
}
|
|
394
|
+
.eds-stepper__step__label {
|
|
395
|
+
flex-grow: 1;
|
|
396
|
+
flex-direction: column;
|
|
397
|
+
align-self: center;
|
|
398
|
+
text-align: center;
|
|
399
|
+
font-size: 0.875rem;
|
|
400
|
+
margin: 0.5rem 0 0;
|
|
401
|
+
padding: 0 0.5rem;
|
|
402
|
+
width: -moz-fit-content;
|
|
403
|
+
width: fit-content;
|
|
404
|
+
border-radius: 0.0625rem;
|
|
405
|
+
color: var(--text-color);
|
|
406
|
+
font-weight: var(--label-font-weight);
|
|
407
|
+
}
|
|
408
|
+
.eds-stepper__step--interactive:hover .eds-stepper__step__label {
|
|
409
|
+
background-color: var(--components-menu-stepper-standard-background);
|
|
410
|
+
color: var(--components-menu-stepper-standard-text-completed);
|
|
411
|
+
}
|
|
412
|
+
.eds-contrast .eds-stepper__step--interactive:hover .eds-stepper__step__label {
|
|
413
|
+
background-color: var(--components-menu-stepper-contrast-background);
|
|
414
|
+
color: var(--components-menu-stepper-contrast-text-completed);
|
|
415
|
+
}
|
|
416
|
+
.eds-stepper__step__line {
|
|
417
|
+
height: 0.5rem;
|
|
418
|
+
background: var(--line-color);
|
|
419
|
+
position: relative;
|
|
420
|
+
}
|
|
421
|
+
.eds-stepper__step__line:before {
|
|
422
|
+
display: var(--display-active-line);
|
|
423
|
+
content: "";
|
|
424
|
+
position: absolute;
|
|
425
|
+
right: calc(50% - 0.2rem);
|
|
426
|
+
bottom: 0.0625rem;
|
|
427
|
+
border-radius: 0.0625rem;
|
|
428
|
+
background: var(--components-menu-stepper-standard-progressbar);
|
|
429
|
+
width: calc(0.5rem - 0.125rem - 0.01rem);
|
|
430
|
+
height: calc(0.5rem - 0.125rem - 0.01rem);
|
|
431
|
+
transform: rotate(45deg);
|
|
432
|
+
}
|
|
433
|
+
.eds-contrast .eds-stepper__step__line:before {
|
|
434
|
+
background: var(--components-menu-stepper-contrast-progressbar);
|
|
435
|
+
}
|
|
436
|
+
.eds-stepper__step__line:after {
|
|
437
|
+
display: var(--display-active-line);
|
|
438
|
+
content: "";
|
|
439
|
+
position: absolute;
|
|
440
|
+
left: 0;
|
|
441
|
+
bottom: 0;
|
|
442
|
+
width: 50%;
|
|
443
|
+
height: 0.5rem;
|
|
444
|
+
background: var(--components-menu-stepper-standard-progressbar);
|
|
445
|
+
}
|
|
446
|
+
.eds-contrast .eds-stepper__step__line:after {
|
|
447
|
+
background: var(--components-menu-stepper-contrast-progressbar);
|
|
330
448
|
}
|
|
331
449
|
/* DO NOT CHANGE!*/
|
|
332
450
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
@@ -491,121 +609,60 @@
|
|
|
491
609
|
}
|
|
492
610
|
/* DO NOT CHANGE!*/
|
|
493
611
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
494
|
-
.eds-
|
|
495
|
-
--
|
|
496
|
-
|
|
497
|
-
--label-font-weight: 500;
|
|
498
|
-
--display-active-line: none;
|
|
499
|
-
display: flex;
|
|
500
|
-
flex-direction: row;
|
|
501
|
-
width: 100%;
|
|
502
|
-
list-style-type: none;
|
|
503
|
-
}
|
|
504
|
-
.eds-stepper__step {
|
|
505
|
-
display: flex;
|
|
506
|
-
flex-grow: 1;
|
|
507
|
-
flex-basis: 0;
|
|
508
|
-
flex-direction: column;
|
|
509
|
-
align-items: inherit;
|
|
510
|
-
-webkit-appearance: none;
|
|
511
|
-
-moz-appearance: none;
|
|
512
|
-
appearance: none;
|
|
513
|
-
background: none;
|
|
514
|
-
border: none;
|
|
515
|
-
font-family: inherit;
|
|
516
|
-
text-transform: none;
|
|
517
|
-
}
|
|
518
|
-
.eds-stepper__step:focus-visible .eds-stepper__step__label {
|
|
519
|
-
outline-offset: 0.125rem;
|
|
520
|
-
outline: 2px solid #181c56;
|
|
521
|
-
}
|
|
522
|
-
.eds-contrast .eds-stepper__step:focus-visible .eds-stepper__step__label {
|
|
523
|
-
outline: 2px solid #ffffff;
|
|
524
|
-
}
|
|
525
|
-
.eds-contrast .eds-stepper__step {
|
|
526
|
-
--text-color: var(--components-menu-stepper-contrast-text-uncompleted);
|
|
527
|
-
--line-color: var(--components-menu-stepper-contrast-background);
|
|
528
|
-
}
|
|
529
|
-
.eds-stepper__step__wrapper {
|
|
530
|
-
flex-grow: 1;
|
|
531
|
-
}
|
|
532
|
-
.eds-stepper__step--interactive {
|
|
533
|
-
all: unset;
|
|
534
|
-
display: flex;
|
|
535
|
-
flex-direction: column;
|
|
536
|
-
width: 100%;
|
|
612
|
+
.eds-top-navigation-item {
|
|
613
|
+
--show-active-line: 0;
|
|
614
|
+
display: inline-block;
|
|
537
615
|
cursor: pointer;
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
.eds-contrast .eds-stepper__step--active {
|
|
545
|
-
--text-color: var(--components-menu-stepper-contrast-text-uncompleted);
|
|
546
|
-
}
|
|
547
|
-
.eds-stepper__step--completed {
|
|
548
|
-
--text-color: var(--components-menu-stepper-standard-text-completed);
|
|
549
|
-
--line-color: var(--components-menu-stepper-standard-progressbar);
|
|
550
|
-
}
|
|
551
|
-
.eds-contrast .eds-stepper__step--completed {
|
|
552
|
-
--text-color: var(--components-menu-stepper-contrast-text-completed);
|
|
553
|
-
--line-color: var(--components-menu-stepper-contrast-progressbar);
|
|
554
|
-
}
|
|
555
|
-
.eds-stepper__step__label {
|
|
556
|
-
flex-grow: 1;
|
|
557
|
-
flex-direction: column;
|
|
558
|
-
align-self: center;
|
|
559
|
-
text-align: center;
|
|
560
|
-
font-size: 0.875rem;
|
|
561
|
-
margin: 0.5rem 0 0;
|
|
562
|
-
padding: 0 0.5rem;
|
|
616
|
+
color: var(--components-menu-navigationbar-standard-text-unselected);
|
|
617
|
+
-webkit-text-decoration: none;
|
|
618
|
+
text-decoration: none;
|
|
619
|
+
position: relative;
|
|
620
|
+
padding: 1rem;
|
|
621
|
+
min-width: 5rem;
|
|
563
622
|
width: -moz-fit-content;
|
|
564
623
|
width: fit-content;
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
font-
|
|
624
|
+
text-align: center;
|
|
625
|
+
font-family: inherit;
|
|
626
|
+
font-size: 1rem;
|
|
627
|
+
font-weight: 600;
|
|
568
628
|
}
|
|
569
|
-
.eds-
|
|
570
|
-
|
|
571
|
-
|
|
629
|
+
.eds-top-navigation-item::after {
|
|
630
|
+
content: "";
|
|
631
|
+
display: block;
|
|
632
|
+
bottom: 1rem;
|
|
633
|
+
height: 0.1875rem;
|
|
634
|
+
width: 0;
|
|
635
|
+
margin: 0 auto;
|
|
636
|
+
opacity: var(--show-active-line);
|
|
637
|
+
background: var(--components-menu-navigationbar-standard-stroke-selected);
|
|
638
|
+
transition: width ease-in-out 0.2s, opacity ease-in-out 0.2s;
|
|
572
639
|
}
|
|
573
|
-
.eds-contrast .eds-
|
|
574
|
-
|
|
575
|
-
color: var(--components-menu-stepper-contrast-text-completed);
|
|
640
|
+
.eds-contrast .eds-top-navigation-item {
|
|
641
|
+
color: var(--components-menu-navigationbar-contrast-text-unselected);
|
|
576
642
|
}
|
|
577
|
-
.eds-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
643
|
+
.eds-top-navigation-item:focus-visible {
|
|
644
|
+
outline: 2px solid #181c56;
|
|
645
|
+
outline-color: var(--basecolors-stroke-focus-standard);
|
|
646
|
+
outline-offset: 0.125rem;
|
|
581
647
|
}
|
|
582
|
-
.eds-
|
|
583
|
-
|
|
584
|
-
content: "";
|
|
585
|
-
position: absolute;
|
|
586
|
-
right: calc(50% - 0.2rem);
|
|
587
|
-
bottom: 0.0625rem;
|
|
588
|
-
border-radius: 0.0625rem;
|
|
589
|
-
background: var(--components-menu-stepper-standard-progressbar);
|
|
590
|
-
width: calc(0.5rem - 0.125rem - 0.01rem);
|
|
591
|
-
height: calc(0.5rem - 0.125rem - 0.01rem);
|
|
592
|
-
transform: rotate(45deg);
|
|
648
|
+
.eds-contrast .eds-top-navigation-item:focus-visible {
|
|
649
|
+
outline-color: var(--basecolors-stroke-focus-contrast);
|
|
593
650
|
}
|
|
594
|
-
.eds-
|
|
595
|
-
|
|
651
|
+
.eds-top-navigation-item:hover {
|
|
652
|
+
--show-active-line: 1;
|
|
596
653
|
}
|
|
597
|
-
.eds-
|
|
598
|
-
|
|
599
|
-
content: "";
|
|
600
|
-
position: absolute;
|
|
601
|
-
left: 0;
|
|
602
|
-
bottom: 0;
|
|
603
|
-
width: 50%;
|
|
604
|
-
height: 0.5rem;
|
|
605
|
-
background: var(--components-menu-stepper-standard-progressbar);
|
|
654
|
+
.eds-top-navigation-item:hover::after {
|
|
655
|
+
width: 2rem;
|
|
606
656
|
}
|
|
607
|
-
.eds-
|
|
608
|
-
|
|
657
|
+
.eds-top-navigation-item--active {
|
|
658
|
+
color: var(--components-menu-navigationbar-standard-text-selected);
|
|
659
|
+
--show-active-line: 1;
|
|
660
|
+
}
|
|
661
|
+
.eds-top-navigation-item--active::after {
|
|
662
|
+
width: 2rem;
|
|
663
|
+
}
|
|
664
|
+
.eds-contrast .eds-top-navigation-item--active {
|
|
665
|
+
color: var(--components-menu-navigationbar-contrast-text-selected);
|
|
609
666
|
}
|
|
610
667
|
/* DO NOT CHANGE!*/
|
|
611
668
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
@@ -816,6 +873,7 @@
|
|
|
816
873
|
:root {
|
|
817
874
|
--basecolors-frame-contrast: #181c56;
|
|
818
875
|
--basecolors-frame-contrastalt: #393d79;
|
|
876
|
+
--basecolors-frame-contrastalt-2: #292b6a;
|
|
819
877
|
--basecolors-frame-default: #ffffff;
|
|
820
878
|
--basecolors-frame-elevated: #ffffff;
|
|
821
879
|
--basecolors-frame-elevatedalt: #f6f6f9;
|
|
@@ -881,6 +939,7 @@
|
|
|
881
939
|
[data-color-mode=dark] {
|
|
882
940
|
--basecolors-frame-contrast: #212233;
|
|
883
941
|
--basecolors-frame-contrastalt: #141527;
|
|
942
|
+
--basecolors-frame-contrastalt-2: #08091c;
|
|
884
943
|
--basecolors-frame-default: #08091c;
|
|
885
944
|
--basecolors-frame-elevated: rgba(229, 229, 233, 0.1490196078);
|
|
886
945
|
--basecolors-frame-elevatedalt: #464755;
|
|
@@ -947,60 +1006,3 @@
|
|
|
947
1006
|
--eds-menu: 1;
|
|
948
1007
|
--reach-menu-button: 1;
|
|
949
1008
|
}
|
|
950
|
-
/* DO NOT CHANGE!*/
|
|
951
|
-
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
952
|
-
.eds-top-navigation-item {
|
|
953
|
-
--show-active-line: 0;
|
|
954
|
-
display: inline-block;
|
|
955
|
-
cursor: pointer;
|
|
956
|
-
color: var(--components-menu-navigationbar-standard-text-unselected);
|
|
957
|
-
-webkit-text-decoration: none;
|
|
958
|
-
text-decoration: none;
|
|
959
|
-
position: relative;
|
|
960
|
-
padding: 1rem;
|
|
961
|
-
min-width: 5rem;
|
|
962
|
-
width: -moz-fit-content;
|
|
963
|
-
width: fit-content;
|
|
964
|
-
text-align: center;
|
|
965
|
-
font-family: inherit;
|
|
966
|
-
font-size: 1rem;
|
|
967
|
-
font-weight: 600;
|
|
968
|
-
}
|
|
969
|
-
.eds-top-navigation-item::after {
|
|
970
|
-
content: "";
|
|
971
|
-
display: block;
|
|
972
|
-
bottom: 1rem;
|
|
973
|
-
height: 0.1875rem;
|
|
974
|
-
width: 0;
|
|
975
|
-
margin: 0 auto;
|
|
976
|
-
opacity: var(--show-active-line);
|
|
977
|
-
background: var(--components-menu-navigationbar-standard-stroke-selected);
|
|
978
|
-
transition: width ease-in-out 0.2s, opacity ease-in-out 0.2s;
|
|
979
|
-
}
|
|
980
|
-
.eds-contrast .eds-top-navigation-item {
|
|
981
|
-
color: var(--components-menu-navigationbar-contrast-text-unselected);
|
|
982
|
-
}
|
|
983
|
-
.eds-top-navigation-item:focus-visible {
|
|
984
|
-
outline: 2px solid #181c56;
|
|
985
|
-
outline-color: var(--basecolors-stroke-focus-standard);
|
|
986
|
-
outline-offset: 0.125rem;
|
|
987
|
-
}
|
|
988
|
-
.eds-contrast .eds-top-navigation-item:focus-visible {
|
|
989
|
-
outline-color: var(--basecolors-stroke-focus-contrast);
|
|
990
|
-
}
|
|
991
|
-
.eds-top-navigation-item:hover {
|
|
992
|
-
--show-active-line: 1;
|
|
993
|
-
}
|
|
994
|
-
.eds-top-navigation-item:hover::after {
|
|
995
|
-
width: 2rem;
|
|
996
|
-
}
|
|
997
|
-
.eds-top-navigation-item--active {
|
|
998
|
-
color: var(--components-menu-navigationbar-standard-text-selected);
|
|
999
|
-
--show-active-line: 1;
|
|
1000
|
-
}
|
|
1001
|
-
.eds-top-navigation-item--active::after {
|
|
1002
|
-
width: 2rem;
|
|
1003
|
-
}
|
|
1004
|
-
.eds-contrast .eds-top-navigation-item--active {
|
|
1005
|
-
color: var(--components-menu-navigationbar-contrast-text-selected);
|
|
1006
|
-
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@entur/menu",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.4",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/menu.esm.js",
|
|
@@ -27,20 +27,20 @@
|
|
|
27
27
|
"react-dom": ">=16.8.0"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@entur/a11y": "^0.2.
|
|
31
|
-
"@entur/button": "^3.3.
|
|
32
|
-
"@entur/expand": "^3.6.
|
|
33
|
-
"@entur/icons": "^7.
|
|
34
|
-
"@entur/layout": "^3.
|
|
35
|
-
"@entur/tokens": "^3.
|
|
36
|
-
"@entur/tooltip": "^5.2.
|
|
37
|
-
"@entur/typography": "^1.9.
|
|
38
|
-
"@entur/utils": "^0.12.
|
|
30
|
+
"@entur/a11y": "^0.2.98",
|
|
31
|
+
"@entur/button": "^3.3.4",
|
|
32
|
+
"@entur/expand": "^3.6.4",
|
|
33
|
+
"@entur/icons": "^7.8.0",
|
|
34
|
+
"@entur/layout": "^3.1.0",
|
|
35
|
+
"@entur/tokens": "^3.19.0",
|
|
36
|
+
"@entur/tooltip": "^5.2.4",
|
|
37
|
+
"@entur/typography": "^1.9.4",
|
|
38
|
+
"@entur/utils": "^0.12.3",
|
|
39
39
|
"@floating-ui/react": "^0.26.23",
|
|
40
40
|
"classnames": "^2.3.1"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"dts-cli": "2.0.5"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "bfd8f62e4735cc13d55e50bc8747535d72aaf679"
|
|
46
46
|
}
|