@sentropic/design-system-vue 0.36.27 → 0.36.29
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/AppChrome.d.ts.map +1 -1
- package/dist/AppChrome.js +20 -8
- package/dist/AppChrome.js.map +1 -1
- package/dist/AreaChart.d.ts +33 -0
- package/dist/AreaChart.d.ts.map +1 -1
- package/dist/AreaChart.js +72 -0
- package/dist/AreaChart.js.map +1 -1
- package/dist/BarChart.d.ts +33 -0
- package/dist/BarChart.d.ts.map +1 -1
- package/dist/BarChart.js +70 -0
- package/dist/BarChart.js.map +1 -1
- package/dist/LineChart.d.ts +33 -0
- package/dist/LineChart.d.ts.map +1 -1
- package/dist/LineChart.js +72 -0
- package/dist/LineChart.js.map +1 -1
- package/dist/chartKeyboardNav.d.ts +29 -0
- package/dist/chartKeyboardNav.d.ts.map +1 -0
- package/dist/chartKeyboardNav.js +70 -0
- package/dist/chartKeyboardNav.js.map +1 -0
- package/dist/styles.css +69 -2
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -208,6 +208,7 @@
|
|
|
208
208
|
|
|
209
209
|
.st-areaChart__visual {
|
|
210
210
|
display: block;
|
|
211
|
+
position: relative;
|
|
211
212
|
}
|
|
212
213
|
|
|
213
214
|
.st-areaChart__grid {
|
|
@@ -334,6 +335,23 @@
|
|
|
334
335
|
stroke-width: 2;
|
|
335
336
|
}
|
|
336
337
|
|
|
338
|
+
/* --- Keyboard navigation layer (FR-5) ------------------------------------
|
|
339
|
+
A focusable, transparent overlay of one hit-rect per point. Carries the
|
|
340
|
+
roving tab stop; the focus ring is tokenised (border-interactive). */
|
|
341
|
+
.st-areaChart__navLayer {
|
|
342
|
+
inset: 0;
|
|
343
|
+
position: absolute;
|
|
344
|
+
}
|
|
345
|
+
.st-areaChart__navDatum {
|
|
346
|
+
fill: transparent;
|
|
347
|
+
outline: none;
|
|
348
|
+
}
|
|
349
|
+
.st-areaChart__navDatum:focus-visible {
|
|
350
|
+
fill: color-mix(in srgb, var(--st-semantic-border-interactive) 12%, transparent);
|
|
351
|
+
outline: 2px solid var(--st-semantic-border-interactive);
|
|
352
|
+
outline-offset: 1px;
|
|
353
|
+
}
|
|
354
|
+
|
|
337
355
|
.st-aspectRatio {
|
|
338
356
|
display: block;
|
|
339
357
|
overflow: hidden;
|
|
@@ -442,6 +460,7 @@
|
|
|
442
460
|
|
|
443
461
|
.st-barChart__visual {
|
|
444
462
|
display: block;
|
|
463
|
+
position: relative;
|
|
445
464
|
}
|
|
446
465
|
|
|
447
466
|
.st-chartDataList {
|
|
@@ -694,6 +713,23 @@
|
|
|
694
713
|
opacity: 0.7;
|
|
695
714
|
}
|
|
696
715
|
|
|
716
|
+
/* --- Keyboard navigation layer (FR-5) ------------------------------------
|
|
717
|
+
A focusable, transparent overlay of one hit-rect per bar. Carries the
|
|
718
|
+
roving tab stop; the focus ring is tokenised (border-interactive). */
|
|
719
|
+
.st-barChart__navLayer {
|
|
720
|
+
inset: 0;
|
|
721
|
+
position: absolute;
|
|
722
|
+
}
|
|
723
|
+
.st-barChart__navDatum {
|
|
724
|
+
fill: transparent;
|
|
725
|
+
outline: none;
|
|
726
|
+
}
|
|
727
|
+
.st-barChart__navDatum:focus-visible {
|
|
728
|
+
fill: color-mix(in srgb, var(--st-semantic-border-interactive) 12%, transparent);
|
|
729
|
+
outline: 2px solid var(--st-semantic-border-interactive);
|
|
730
|
+
outline-offset: 1px;
|
|
731
|
+
}
|
|
732
|
+
|
|
697
733
|
@media (prefers-reduced-motion: reduce) {
|
|
698
734
|
.st-barChart__bar,
|
|
699
735
|
.st-barChart__filterChip { transition: none; }
|
|
@@ -3547,6 +3583,7 @@
|
|
|
3547
3583
|
|
|
3548
3584
|
.st-lineChart__visual {
|
|
3549
3585
|
display: block;
|
|
3586
|
+
position: relative;
|
|
3550
3587
|
}
|
|
3551
3588
|
|
|
3552
3589
|
.st-lineChart__grid {
|
|
@@ -3735,6 +3772,23 @@
|
|
|
3735
3772
|
stroke-width: 2;
|
|
3736
3773
|
}
|
|
3737
3774
|
|
|
3775
|
+
/* --- Keyboard navigation layer (FR-5) ------------------------------------
|
|
3776
|
+
A focusable, transparent overlay of one hit-rect per point. Carries the
|
|
3777
|
+
roving tab stop; the focus ring is tokenised (border-interactive). */
|
|
3778
|
+
.st-lineChart__navLayer {
|
|
3779
|
+
inset: 0;
|
|
3780
|
+
position: absolute;
|
|
3781
|
+
}
|
|
3782
|
+
.st-lineChart__navDatum {
|
|
3783
|
+
fill: transparent;
|
|
3784
|
+
outline: none;
|
|
3785
|
+
}
|
|
3786
|
+
.st-lineChart__navDatum:focus-visible {
|
|
3787
|
+
fill: color-mix(in srgb, var(--st-semantic-border-interactive) 12%, transparent);
|
|
3788
|
+
outline: 2px solid var(--st-semantic-border-interactive);
|
|
3789
|
+
outline-offset: 1px;
|
|
3790
|
+
}
|
|
3791
|
+
|
|
3738
3792
|
.st-link {
|
|
3739
3793
|
color: var(--st-component-link-text, var(--st-semantic-text-link));
|
|
3740
3794
|
cursor: var(--st-cursor-interactive, pointer);
|
|
@@ -11536,7 +11590,7 @@
|
|
|
11536
11590
|
.st-appHeader__navLink[aria-current="page"] {
|
|
11537
11591
|
border-bottom-color: var(--st-semantic-border-interactive);
|
|
11538
11592
|
color: var(--st-semantic-text-primary);
|
|
11539
|
-
font-weight:
|
|
11593
|
+
font-weight: 700;
|
|
11540
11594
|
}
|
|
11541
11595
|
|
|
11542
11596
|
.st-appHeader__control {
|
|
@@ -14615,11 +14669,18 @@
|
|
|
14615
14669
|
|
|
14616
14670
|
/* --- AppChrome : coque docs assemblée (compose AppHeader) --- */
|
|
14617
14671
|
.st-appChrome {
|
|
14672
|
+
position: sticky;
|
|
14673
|
+
top: 0;
|
|
14618
14674
|
width: 100%;
|
|
14675
|
+
z-index: 30;
|
|
14619
14676
|
}
|
|
14620
14677
|
|
|
14621
14678
|
.st-appChrome__header .st-appHeader__bar {
|
|
14679
|
+
background: color-mix(in srgb, var(--st-semantic-surface-default) 96%, transparent);
|
|
14680
|
+
backdrop-filter: blur(8px);
|
|
14681
|
+
height: 5rem;
|
|
14622
14682
|
max-width: none;
|
|
14683
|
+
padding: 0 var(--st-spacing-6, 1.5rem);
|
|
14623
14684
|
}
|
|
14624
14685
|
|
|
14625
14686
|
.st-appChrome__brand {
|
|
@@ -14663,7 +14724,7 @@
|
|
|
14663
14724
|
.st-appChrome__utilityNav {
|
|
14664
14725
|
align-items: center;
|
|
14665
14726
|
display: flex;
|
|
14666
|
-
gap: var(--st-spacing-
|
|
14727
|
+
gap: var(--st-spacing-1, 0.25rem);
|
|
14667
14728
|
}
|
|
14668
14729
|
|
|
14669
14730
|
.st-appChrome__menuWrap {
|
|
@@ -14760,6 +14821,12 @@
|
|
|
14760
14821
|
color: var(--st-semantic-text-primary);
|
|
14761
14822
|
}
|
|
14762
14823
|
|
|
14824
|
+
.st-appChrome__extraSelectors {
|
|
14825
|
+
align-items: center;
|
|
14826
|
+
display: flex;
|
|
14827
|
+
gap: var(--st-spacing-1, 0.25rem);
|
|
14828
|
+
}
|
|
14829
|
+
|
|
14763
14830
|
.st-appChrome__drawer {
|
|
14764
14831
|
background: var(--st-semantic-surface-default);
|
|
14765
14832
|
border-bottom: 1px solid var(--st-semantic-border-subtle);
|