@sentropic/design-system-vue 0.36.40 → 0.36.42

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/styles.css CHANGED
@@ -16645,3 +16645,269 @@
16645
16645
  transition: none;
16646
16646
  }
16647
16647
  }
16648
+
16649
+ .st-renkoChart {
16650
+ color: var(--st-semantic-text-secondary);
16651
+ display: block;
16652
+ font-family: inherit;
16653
+ position: relative;
16654
+ width: 100%;
16655
+ }
16656
+
16657
+ .st-renkoChart svg {
16658
+ display: block;
16659
+ overflow: visible;
16660
+ }
16661
+
16662
+ .st-renkoChart__visual {
16663
+ display: block;
16664
+ }
16665
+
16666
+ .st-renkoChart__grid {
16667
+ opacity: 0.5;
16668
+ stroke: var(--st-semantic-border-subtle);
16669
+ stroke-dasharray: 2 3;
16670
+ stroke-width: 1;
16671
+ }
16672
+
16673
+ .st-renkoChart__axis {
16674
+ stroke: var(--st-semantic-border-subtle);
16675
+ stroke-width: 1;
16676
+ }
16677
+
16678
+ .st-renkoChart__tick {
16679
+ fill: var(--st-semantic-text-secondary);
16680
+ font-size: 0.6875rem;
16681
+ }
16682
+
16683
+ .st-renkoChart__brick {
16684
+ cursor: pointer;
16685
+ stroke: var(--st-semantic-surface-default, Canvas);
16686
+ stroke-width: 0.5;
16687
+ transition: opacity 120ms ease;
16688
+ }
16689
+
16690
+ .st-renkoChart__brick--dim {
16691
+ opacity: 0.35;
16692
+ }
16693
+
16694
+ .st-renkoChart__brick--up {
16695
+ fill: var(--st-semantic-feedback-success);
16696
+ }
16697
+
16698
+ .st-renkoChart__brick--down {
16699
+ fill: var(--st-semantic-feedback-error);
16700
+ }
16701
+
16702
+ .st-renkoChart__tooltip {
16703
+ background: var(--st-semantic-surface-inverse);
16704
+ border-radius: var(--st-radius-sm, 0.25rem);
16705
+ color: var(--st-semantic-text-inverse);
16706
+ display: inline-flex;
16707
+ flex-direction: column;
16708
+ font-size: 0.75rem;
16709
+ gap: 0.125rem;
16710
+ line-height: 1.2;
16711
+ padding: 0.375rem 0.5rem;
16712
+ pointer-events: none;
16713
+ position: absolute;
16714
+ transform: translate(-50%, calc(-100% - 8px));
16715
+ white-space: nowrap;
16716
+ z-index: 1;
16717
+ }
16718
+
16719
+ .st-renkoChart__tooltipLabel {
16720
+ font-weight: 600;
16721
+ }
16722
+
16723
+ .st-renkoChart__tooltipValue {
16724
+ opacity: 0.85;
16725
+ }
16726
+
16727
+ @media (prefers-reduced-motion: reduce) {
16728
+ .st-renkoChart__brick {
16729
+ transition: none;
16730
+ }
16731
+ }
16732
+
16733
+ .st-pointAndFigureChart {
16734
+ color: var(--st-semantic-text-secondary);
16735
+ display: block;
16736
+ font-family: inherit;
16737
+ position: relative;
16738
+ width: 100%;
16739
+ }
16740
+
16741
+ .st-pointAndFigureChart svg {
16742
+ display: block;
16743
+ overflow: visible;
16744
+ }
16745
+
16746
+ .st-pointAndFigureChart__visual {
16747
+ display: block;
16748
+ }
16749
+
16750
+ .st-pointAndFigureChart__grid {
16751
+ opacity: 0.5;
16752
+ stroke: var(--st-semantic-border-subtle);
16753
+ stroke-dasharray: 2 3;
16754
+ stroke-width: 1;
16755
+ }
16756
+
16757
+ .st-pointAndFigureChart__axis {
16758
+ stroke: var(--st-semantic-border-subtle);
16759
+ stroke-width: 1;
16760
+ }
16761
+
16762
+ .st-pointAndFigureChart__tick {
16763
+ fill: var(--st-semantic-text-secondary);
16764
+ font-size: 0.6875rem;
16765
+ }
16766
+
16767
+ .st-pointAndFigureChart__mark {
16768
+ transition: opacity 120ms ease;
16769
+ }
16770
+
16771
+ .st-pointAndFigureChart__mark--dim {
16772
+ opacity: 0.35;
16773
+ }
16774
+
16775
+ .st-pointAndFigureChart__glyph {
16776
+ cursor: pointer;
16777
+ fill: none;
16778
+ stroke-linecap: round;
16779
+ stroke-width: 2;
16780
+ }
16781
+
16782
+ .st-pointAndFigureChart__mark--x .st-pointAndFigureChart__glyph,
16783
+ .st-pointAndFigureChart__mark--x.st-pointAndFigureChart__glyph {
16784
+ stroke: var(--st-semantic-feedback-success);
16785
+ }
16786
+
16787
+ .st-pointAndFigureChart__mark--o .st-pointAndFigureChart__glyph,
16788
+ .st-pointAndFigureChart__mark--o.st-pointAndFigureChart__glyph {
16789
+ stroke: var(--st-semantic-feedback-error);
16790
+ }
16791
+
16792
+ .st-pointAndFigureChart__tooltip {
16793
+ background: var(--st-semantic-surface-inverse);
16794
+ border-radius: var(--st-radius-sm, 0.25rem);
16795
+ color: var(--st-semantic-text-inverse);
16796
+ display: inline-flex;
16797
+ flex-direction: column;
16798
+ font-size: 0.75rem;
16799
+ gap: 0.125rem;
16800
+ line-height: 1.2;
16801
+ padding: 0.375rem 0.5rem;
16802
+ pointer-events: none;
16803
+ position: absolute;
16804
+ transform: translate(-50%, calc(-100% - 8px));
16805
+ white-space: nowrap;
16806
+ z-index: 1;
16807
+ }
16808
+
16809
+ .st-pointAndFigureChart__tooltipLabel {
16810
+ font-weight: 600;
16811
+ }
16812
+
16813
+ .st-pointAndFigureChart__tooltipValue {
16814
+ opacity: 0.85;
16815
+ }
16816
+
16817
+ @media (prefers-reduced-motion: reduce) {
16818
+ .st-pointAndFigureChart__mark {
16819
+ transition: none;
16820
+ }
16821
+ }
16822
+
16823
+ /* ---------------------------------------------------------------------------
16824
+ ColorSwatch — affiche UNE couleur arbitraire (hex/rgb/oklch/token) sous forme
16825
+ de pastille. La couleur passée en prop est rendue via un background inline
16826
+ (raison d'être du composant) ; le style propre ci-dessous reste token-only.
16827
+ --------------------------------------------------------------------------- */
16828
+ .st-colorSwatch {
16829
+ align-items: center;
16830
+ color: var(--st-semantic-text-secondary, inherit);
16831
+ display: inline-flex;
16832
+ font-family: inherit;
16833
+ gap: var(--st-spacing-2, 0.5rem);
16834
+ line-height: 1;
16835
+ vertical-align: middle;
16836
+ }
16837
+
16838
+ .st-colorSwatch__chip {
16839
+ border: var(--st-border-width-thin, 1px) solid
16840
+ var(--st-semantic-border-subtle, var(--st-semantic-border-strong, rgba(0, 0, 0, 0.12)));
16841
+ border-radius: var(--st-radius-sm, 0.25rem);
16842
+ box-sizing: border-box;
16843
+ display: inline-block;
16844
+ flex: none;
16845
+ }
16846
+
16847
+ .st-colorSwatch--circle .st-colorSwatch__chip {
16848
+ border-radius: var(--st-radius-full, 999px);
16849
+ }
16850
+
16851
+ .st-colorSwatch--pill .st-colorSwatch__chip {
16852
+ border-radius: var(--st-radius-pill, var(--st-radius-full, 999px));
16853
+ }
16854
+
16855
+ .st-colorSwatch__label {
16856
+ color: var(--st-semantic-text-primary, inherit);
16857
+ font-size: 0.875rem;
16858
+ font-variant-numeric: tabular-nums;
16859
+ }
16860
+
16861
+ /* ---------------------------------------------------------------------------
16862
+ ColorScaleBar — échelle de couleur continue (gradient) à partir de stops
16863
+ arbitraires. Le gradient est rendu via un background inline (raison d'être) ;
16864
+ le style propre ci-dessous reste token-only.
16865
+ --------------------------------------------------------------------------- */
16866
+ .st-colorScaleBar {
16867
+ color: var(--st-semantic-text-secondary, inherit);
16868
+ display: inline-flex;
16869
+ flex-direction: column;
16870
+ font-family: inherit;
16871
+ gap: var(--st-spacing-1, 0.25rem);
16872
+ }
16873
+
16874
+ .st-colorScaleBar__label {
16875
+ color: var(--st-semantic-text-primary, inherit);
16876
+ font-size: 0.875rem;
16877
+ line-height: 1.2;
16878
+ }
16879
+
16880
+ .st-colorScaleBar__track {
16881
+ align-items: center;
16882
+ display: inline-flex;
16883
+ gap: var(--st-spacing-2, 0.5rem);
16884
+ }
16885
+
16886
+ .st-colorScaleBar--vertical .st-colorScaleBar__track {
16887
+ flex-direction: column;
16888
+ }
16889
+
16890
+ .st-colorScaleBar__bar {
16891
+ border: var(--st-border-width-thin, 1px) solid
16892
+ var(--st-semantic-border-subtle, var(--st-semantic-border-strong, rgba(0, 0, 0, 0.12)));
16893
+ border-radius: var(--st-radius-sm, 0.25rem);
16894
+ box-sizing: border-box;
16895
+ }
16896
+
16897
+ .st-colorScaleBar--horizontal .st-colorScaleBar__bar {
16898
+ height: var(--st-colorScaleBar-thickness, 0.75rem);
16899
+ width: var(--st-colorScaleBar-length, 12rem);
16900
+ }
16901
+
16902
+ .st-colorScaleBar--vertical .st-colorScaleBar__bar {
16903
+ height: var(--st-colorScaleBar-length, 12rem);
16904
+ width: var(--st-colorScaleBar-thickness, 0.75rem);
16905
+ }
16906
+
16907
+ .st-colorScaleBar__end {
16908
+ color: var(--st-semantic-text-secondary, inherit);
16909
+ font-size: 0.75rem;
16910
+ font-variant-numeric: tabular-nums;
16911
+ line-height: 1;
16912
+ white-space: nowrap;
16913
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentropic/design-system-vue",
3
- "version": "0.36.40",
3
+ "version": "0.36.42",
4
4
  "description": "Vue 3 components for the Sentropic design system.",
5
5
  "type": "module",
6
6
  "publishConfig": {