@sentropic/design-system-vue 0.36.35 → 0.36.38
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/AnomalySwimLaneChart.d.ts +88 -0
- package/dist/AnomalySwimLaneChart.d.ts.map +1 -0
- package/dist/AnomalySwimLaneChart.js +227 -0
- package/dist/AnomalySwimLaneChart.js.map +1 -0
- package/dist/CopyButton.d.ts +1 -1
- package/dist/DecompositionTreeChart.d.ts +81 -0
- package/dist/DecompositionTreeChart.d.ts.map +1 -0
- package/dist/DecompositionTreeChart.js +206 -0
- package/dist/DecompositionTreeChart.js.map +1 -0
- package/dist/Density2DChart.d.ts +85 -0
- package/dist/Density2DChart.d.ts.map +1 -0
- package/dist/Density2DChart.js +254 -0
- package/dist/Density2DChart.js.map +1 -0
- package/dist/FlamegraphChart.d.ts +73 -0
- package/dist/FlamegraphChart.d.ts.map +1 -0
- package/dist/FlamegraphChart.js +146 -0
- package/dist/FlamegraphChart.js.map +1 -0
- package/dist/RibbonChart.d.ts +76 -0
- package/dist/RibbonChart.d.ts.map +1 -0
- package/dist/RibbonChart.js +223 -0
- package/dist/RibbonChart.js.map +1 -0
- package/dist/TraceWaterfallChart.d.ts +88 -0
- package/dist/TraceWaterfallChart.d.ts.map +1 -0
- package/dist/TraceWaterfallChart.js +278 -0
- package/dist/TraceWaterfallChart.js.map +1 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/styles.css +642 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -9916,6 +9916,248 @@
|
|
|
9916
9916
|
}
|
|
9917
9917
|
}
|
|
9918
9918
|
|
|
9919
|
+
/* ---------------------------------------------------------------------------
|
|
9920
|
+
RibbonChart — rang empilé à rubans dans le temps (façon Power BI « ribbon
|
|
9921
|
+
chart ») : segments empilés triés par valeur + rubans lissés par catégorie.
|
|
9922
|
+
--------------------------------------------------------------------------- */
|
|
9923
|
+
.st-ribbonChart {
|
|
9924
|
+
color: var(--st-semantic-text-secondary);
|
|
9925
|
+
display: block;
|
|
9926
|
+
font-family: inherit;
|
|
9927
|
+
position: relative;
|
|
9928
|
+
width: 100%;
|
|
9929
|
+
}
|
|
9930
|
+
|
|
9931
|
+
.st-ribbonChart svg {
|
|
9932
|
+
display: block;
|
|
9933
|
+
overflow: visible;
|
|
9934
|
+
}
|
|
9935
|
+
|
|
9936
|
+
.st-ribbonChart__visual {
|
|
9937
|
+
display: block;
|
|
9938
|
+
}
|
|
9939
|
+
|
|
9940
|
+
.st-ribbonChart__periodLabel {
|
|
9941
|
+
fill: var(--st-semantic-text-secondary);
|
|
9942
|
+
font-size: 0.6875rem;
|
|
9943
|
+
}
|
|
9944
|
+
|
|
9945
|
+
.st-ribbonChart__ribbon {
|
|
9946
|
+
opacity: 0.34;
|
|
9947
|
+
transition: opacity 120ms ease;
|
|
9948
|
+
}
|
|
9949
|
+
|
|
9950
|
+
.st-ribbonChart__ribbon--dim {
|
|
9951
|
+
opacity: 0.1;
|
|
9952
|
+
}
|
|
9953
|
+
|
|
9954
|
+
.st-ribbonChart__seg {
|
|
9955
|
+
cursor: pointer;
|
|
9956
|
+
stroke: var(--st-semantic-surface-default, Canvas);
|
|
9957
|
+
stroke-width: 1;
|
|
9958
|
+
transition: opacity 120ms ease;
|
|
9959
|
+
}
|
|
9960
|
+
|
|
9961
|
+
.st-ribbonChart__seg--dim {
|
|
9962
|
+
opacity: 0.4;
|
|
9963
|
+
}
|
|
9964
|
+
|
|
9965
|
+
.st-ribbonChart__seg--category1,
|
|
9966
|
+
.st-ribbonChart__ribbon--category1 { fill: var(--st-semantic-data-category1); }
|
|
9967
|
+
.st-ribbonChart__seg--category2,
|
|
9968
|
+
.st-ribbonChart__ribbon--category2 { fill: var(--st-semantic-data-category2); }
|
|
9969
|
+
.st-ribbonChart__seg--category3,
|
|
9970
|
+
.st-ribbonChart__ribbon--category3 { fill: var(--st-semantic-data-category3); }
|
|
9971
|
+
.st-ribbonChart__seg--category4,
|
|
9972
|
+
.st-ribbonChart__ribbon--category4 { fill: var(--st-semantic-data-category4); }
|
|
9973
|
+
.st-ribbonChart__seg--category5,
|
|
9974
|
+
.st-ribbonChart__ribbon--category5 { fill: var(--st-semantic-data-category5); }
|
|
9975
|
+
.st-ribbonChart__seg--category6,
|
|
9976
|
+
.st-ribbonChart__ribbon--category6 { fill: var(--st-semantic-data-category6); }
|
|
9977
|
+
.st-ribbonChart__seg--category7,
|
|
9978
|
+
.st-ribbonChart__ribbon--category7 { fill: var(--st-semantic-data-category7); }
|
|
9979
|
+
.st-ribbonChart__seg--category8,
|
|
9980
|
+
.st-ribbonChart__ribbon--category8 { fill: var(--st-semantic-data-category8); }
|
|
9981
|
+
|
|
9982
|
+
.st-ribbonChart__legend {
|
|
9983
|
+
display: flex;
|
|
9984
|
+
flex-wrap: wrap;
|
|
9985
|
+
gap: var(--st-spacing-3, 0.75rem);
|
|
9986
|
+
list-style: none;
|
|
9987
|
+
margin: var(--st-spacing-2, 0.5rem) 0 0 0;
|
|
9988
|
+
padding: 0;
|
|
9989
|
+
}
|
|
9990
|
+
|
|
9991
|
+
.st-ribbonChart__legendItem {
|
|
9992
|
+
align-items: center;
|
|
9993
|
+
color: var(--st-semantic-text-secondary);
|
|
9994
|
+
display: inline-flex;
|
|
9995
|
+
font-size: 0.75rem;
|
|
9996
|
+
gap: var(--st-spacing-1, 0.25rem);
|
|
9997
|
+
line-height: 1;
|
|
9998
|
+
}
|
|
9999
|
+
|
|
10000
|
+
.st-ribbonChart__legendSwatch {
|
|
10001
|
+
border-radius: var(--st-radius-sm, 0.25rem);
|
|
10002
|
+
display: inline-block;
|
|
10003
|
+
height: 0.625rem;
|
|
10004
|
+
width: 0.625rem;
|
|
10005
|
+
}
|
|
10006
|
+
.st-ribbonChart__legendSwatch--category1 { background: var(--st-semantic-data-category1); }
|
|
10007
|
+
.st-ribbonChart__legendSwatch--category2 { background: var(--st-semantic-data-category2); }
|
|
10008
|
+
.st-ribbonChart__legendSwatch--category3 { background: var(--st-semantic-data-category3); }
|
|
10009
|
+
.st-ribbonChart__legendSwatch--category4 { background: var(--st-semantic-data-category4); }
|
|
10010
|
+
.st-ribbonChart__legendSwatch--category5 { background: var(--st-semantic-data-category5); }
|
|
10011
|
+
.st-ribbonChart__legendSwatch--category6 { background: var(--st-semantic-data-category6); }
|
|
10012
|
+
.st-ribbonChart__legendSwatch--category7 { background: var(--st-semantic-data-category7); }
|
|
10013
|
+
.st-ribbonChart__legendSwatch--category8 { background: var(--st-semantic-data-category8); }
|
|
10014
|
+
|
|
10015
|
+
.st-ribbonChart__tooltip {
|
|
10016
|
+
background: var(--st-semantic-surface-inverse);
|
|
10017
|
+
border-radius: var(--st-radius-sm, 0.25rem);
|
|
10018
|
+
color: var(--st-semantic-text-inverse);
|
|
10019
|
+
display: inline-flex;
|
|
10020
|
+
flex-direction: column;
|
|
10021
|
+
font-size: 0.75rem;
|
|
10022
|
+
gap: 0.125rem;
|
|
10023
|
+
line-height: 1.2;
|
|
10024
|
+
padding: 0.375rem 0.5rem;
|
|
10025
|
+
pointer-events: none;
|
|
10026
|
+
position: absolute;
|
|
10027
|
+
transform: translate(-50%, calc(-100% - 8px));
|
|
10028
|
+
white-space: nowrap;
|
|
10029
|
+
z-index: 1;
|
|
10030
|
+
}
|
|
10031
|
+
|
|
10032
|
+
.st-ribbonChart__tooltipLabel {
|
|
10033
|
+
font-weight: 600;
|
|
10034
|
+
}
|
|
10035
|
+
|
|
10036
|
+
.st-ribbonChart__tooltipValue {
|
|
10037
|
+
opacity: 0.85;
|
|
10038
|
+
}
|
|
10039
|
+
|
|
10040
|
+
@media (prefers-reduced-motion: reduce) {
|
|
10041
|
+
.st-ribbonChart__seg,
|
|
10042
|
+
.st-ribbonChart__ribbon {
|
|
10043
|
+
transition: none;
|
|
10044
|
+
}
|
|
10045
|
+
}
|
|
10046
|
+
|
|
10047
|
+
/* ---------------------------------------------------------------------------
|
|
10048
|
+
AnomalySwimLaneChart — heatmap temps × job, score CONTINU → gradient
|
|
10049
|
+
d'intensité (façon Kibana ML « anomaly swim lane »).
|
|
10050
|
+
--------------------------------------------------------------------------- */
|
|
10051
|
+
.st-anomalySwimLaneChart {
|
|
10052
|
+
color: var(--st-semantic-text-secondary);
|
|
10053
|
+
display: block;
|
|
10054
|
+
font-family: inherit;
|
|
10055
|
+
position: relative;
|
|
10056
|
+
width: 100%;
|
|
10057
|
+
}
|
|
10058
|
+
|
|
10059
|
+
.st-anomalySwimLaneChart svg {
|
|
10060
|
+
display: block;
|
|
10061
|
+
overflow: visible;
|
|
10062
|
+
}
|
|
10063
|
+
|
|
10064
|
+
.st-anomalySwimLaneChart__visual {
|
|
10065
|
+
display: block;
|
|
10066
|
+
}
|
|
10067
|
+
|
|
10068
|
+
.st-anomalySwimLaneChart__axis {
|
|
10069
|
+
stroke: var(--st-semantic-border-subtle);
|
|
10070
|
+
stroke-width: 1;
|
|
10071
|
+
}
|
|
10072
|
+
|
|
10073
|
+
.st-anomalySwimLaneChart__tickLabel,
|
|
10074
|
+
.st-anomalySwimLaneChart__jobLabel {
|
|
10075
|
+
fill: var(--st-semantic-text-secondary);
|
|
10076
|
+
font-size: 0.6875rem;
|
|
10077
|
+
}
|
|
10078
|
+
|
|
10079
|
+
.st-anomalySwimLaneChart__cell {
|
|
10080
|
+
cursor: pointer;
|
|
10081
|
+
stroke: var(--st-semantic-surface-default, Canvas);
|
|
10082
|
+
stroke-width: 1;
|
|
10083
|
+
transition: opacity 120ms ease;
|
|
10084
|
+
}
|
|
10085
|
+
|
|
10086
|
+
.st-anomalySwimLaneChart__cell--dim {
|
|
10087
|
+
opacity: 0.4;
|
|
10088
|
+
}
|
|
10089
|
+
|
|
10090
|
+
.st-anomalySwimLaneChart__cell--category1,
|
|
10091
|
+
.st-anomalySwimLaneChart__legendSwatch--category1 { fill: var(--st-semantic-data-category1); background: var(--st-semantic-data-category1); }
|
|
10092
|
+
.st-anomalySwimLaneChart__cell--category2,
|
|
10093
|
+
.st-anomalySwimLaneChart__legendSwatch--category2 { fill: var(--st-semantic-data-category2); background: var(--st-semantic-data-category2); }
|
|
10094
|
+
.st-anomalySwimLaneChart__cell--category3,
|
|
10095
|
+
.st-anomalySwimLaneChart__legendSwatch--category3 { fill: var(--st-semantic-data-category3); background: var(--st-semantic-data-category3); }
|
|
10096
|
+
.st-anomalySwimLaneChart__cell--category4,
|
|
10097
|
+
.st-anomalySwimLaneChart__legendSwatch--category4 { fill: var(--st-semantic-data-category4); background: var(--st-semantic-data-category4); }
|
|
10098
|
+
.st-anomalySwimLaneChart__cell--category5,
|
|
10099
|
+
.st-anomalySwimLaneChart__legendSwatch--category5 { fill: var(--st-semantic-data-category5); background: var(--st-semantic-data-category5); }
|
|
10100
|
+
.st-anomalySwimLaneChart__cell--category6,
|
|
10101
|
+
.st-anomalySwimLaneChart__legendSwatch--category6 { fill: var(--st-semantic-data-category6); background: var(--st-semantic-data-category6); }
|
|
10102
|
+
.st-anomalySwimLaneChart__cell--category7,
|
|
10103
|
+
.st-anomalySwimLaneChart__legendSwatch--category7 { fill: var(--st-semantic-data-category7); background: var(--st-semantic-data-category7); }
|
|
10104
|
+
.st-anomalySwimLaneChart__cell--category8,
|
|
10105
|
+
.st-anomalySwimLaneChart__legendSwatch--category8 { fill: var(--st-semantic-data-category8); background: var(--st-semantic-data-category8); }
|
|
10106
|
+
|
|
10107
|
+
.st-anomalySwimLaneChart__legend {
|
|
10108
|
+
align-items: center;
|
|
10109
|
+
display: flex;
|
|
10110
|
+
gap: var(--st-spacing-2, 0.5rem);
|
|
10111
|
+
margin-top: var(--st-spacing-2, 0.5rem);
|
|
10112
|
+
}
|
|
10113
|
+
|
|
10114
|
+
.st-anomalySwimLaneChart__legendRamp {
|
|
10115
|
+
display: inline-grid;
|
|
10116
|
+
grid-template-columns: repeat(8, minmax(0.75rem, 1fr));
|
|
10117
|
+
min-width: 8rem;
|
|
10118
|
+
}
|
|
10119
|
+
|
|
10120
|
+
.st-anomalySwimLaneChart__legendSwatch {
|
|
10121
|
+
display: block;
|
|
10122
|
+
height: 0.5rem;
|
|
10123
|
+
}
|
|
10124
|
+
|
|
10125
|
+
.st-anomalySwimLaneChart__legendText {
|
|
10126
|
+
color: var(--st-semantic-text-secondary);
|
|
10127
|
+
font-size: 0.75rem;
|
|
10128
|
+
}
|
|
10129
|
+
|
|
10130
|
+
.st-anomalySwimLaneChart__tooltip {
|
|
10131
|
+
background: var(--st-semantic-surface-inverse);
|
|
10132
|
+
border-radius: var(--st-radius-sm, 0.25rem);
|
|
10133
|
+
color: var(--st-semantic-text-inverse);
|
|
10134
|
+
display: inline-flex;
|
|
10135
|
+
flex-direction: column;
|
|
10136
|
+
font-size: 0.75rem;
|
|
10137
|
+
gap: 0.125rem;
|
|
10138
|
+
line-height: 1.2;
|
|
10139
|
+
padding: 0.375rem 0.5rem;
|
|
10140
|
+
pointer-events: none;
|
|
10141
|
+
position: absolute;
|
|
10142
|
+
transform: translate(-50%, calc(-100% - 8px));
|
|
10143
|
+
white-space: nowrap;
|
|
10144
|
+
z-index: 1;
|
|
10145
|
+
}
|
|
10146
|
+
|
|
10147
|
+
.st-anomalySwimLaneChart__tooltipLabel {
|
|
10148
|
+
font-weight: 600;
|
|
10149
|
+
}
|
|
10150
|
+
|
|
10151
|
+
.st-anomalySwimLaneChart__tooltipValue {
|
|
10152
|
+
opacity: 0.85;
|
|
10153
|
+
}
|
|
10154
|
+
|
|
10155
|
+
@media (prefers-reduced-motion: reduce) {
|
|
10156
|
+
.st-anomalySwimLaneChart__cell {
|
|
10157
|
+
transition: none;
|
|
10158
|
+
}
|
|
10159
|
+
}
|
|
10160
|
+
|
|
9919
10161
|
/* ---------------------------------------------------------------------------
|
|
9920
10162
|
FunnelChart — decreasing trapezoid stages, vertical or horizontal.
|
|
9921
10163
|
--------------------------------------------------------------------------- */
|
|
@@ -15617,3 +15859,403 @@
|
|
|
15617
15859
|
display: flex;
|
|
15618
15860
|
}
|
|
15619
15861
|
}
|
|
15862
|
+
|
|
15863
|
+
/* ---------------------------------------------------------------------------
|
|
15864
|
+
FlamegraphChart — pile d'appels « icicle » empilée (façon Grafana
|
|
15865
|
+
flamegraph), largeur ∝ value, profondeur = niveau vertical.
|
|
15866
|
+
--------------------------------------------------------------------------- */
|
|
15867
|
+
.st-flamegraphChart {
|
|
15868
|
+
color: var(--st-semantic-text-secondary);
|
|
15869
|
+
display: block;
|
|
15870
|
+
font-family: inherit;
|
|
15871
|
+
position: relative;
|
|
15872
|
+
width: 100%;
|
|
15873
|
+
}
|
|
15874
|
+
|
|
15875
|
+
.st-flamegraphChart svg {
|
|
15876
|
+
display: block;
|
|
15877
|
+
overflow: visible;
|
|
15878
|
+
}
|
|
15879
|
+
|
|
15880
|
+
.st-flamegraphChart__visual {
|
|
15881
|
+
display: block;
|
|
15882
|
+
}
|
|
15883
|
+
|
|
15884
|
+
.st-flamegraphChart__frame {
|
|
15885
|
+
cursor: pointer;
|
|
15886
|
+
stroke: var(--st-semantic-surface-default, Canvas);
|
|
15887
|
+
stroke-width: 1;
|
|
15888
|
+
transition: opacity 120ms ease;
|
|
15889
|
+
}
|
|
15890
|
+
|
|
15891
|
+
.st-flamegraphChart__frame--dim {
|
|
15892
|
+
opacity: 0.4;
|
|
15893
|
+
}
|
|
15894
|
+
|
|
15895
|
+
.st-flamegraphChart__frame--category1 { fill: var(--st-semantic-data-category1); }
|
|
15896
|
+
.st-flamegraphChart__frame--category2 { fill: var(--st-semantic-data-category2); }
|
|
15897
|
+
.st-flamegraphChart__frame--category3 { fill: var(--st-semantic-data-category3); }
|
|
15898
|
+
.st-flamegraphChart__frame--category4 { fill: var(--st-semantic-data-category4); }
|
|
15899
|
+
.st-flamegraphChart__frame--category5 { fill: var(--st-semantic-data-category5); }
|
|
15900
|
+
.st-flamegraphChart__frame--category6 { fill: var(--st-semantic-data-category6); }
|
|
15901
|
+
.st-flamegraphChart__frame--category7 { fill: var(--st-semantic-data-category7); }
|
|
15902
|
+
.st-flamegraphChart__frame--category8 { fill: var(--st-semantic-data-category8); }
|
|
15903
|
+
|
|
15904
|
+
.st-flamegraphChart__label {
|
|
15905
|
+
fill: var(--st-semantic-text-inverse);
|
|
15906
|
+
font-size: 0.6875rem;
|
|
15907
|
+
pointer-events: none;
|
|
15908
|
+
}
|
|
15909
|
+
|
|
15910
|
+
.st-flamegraphChart__tooltip {
|
|
15911
|
+
background: var(--st-semantic-surface-inverse);
|
|
15912
|
+
border-radius: var(--st-radius-sm, 0.25rem);
|
|
15913
|
+
color: var(--st-semantic-text-inverse);
|
|
15914
|
+
display: inline-flex;
|
|
15915
|
+
flex-direction: column;
|
|
15916
|
+
font-size: 0.75rem;
|
|
15917
|
+
gap: 0.125rem;
|
|
15918
|
+
line-height: 1.2;
|
|
15919
|
+
padding: 0.375rem 0.5rem;
|
|
15920
|
+
pointer-events: none;
|
|
15921
|
+
position: absolute;
|
|
15922
|
+
transform: translate(-50%, calc(-100% - 8px));
|
|
15923
|
+
white-space: nowrap;
|
|
15924
|
+
z-index: 1;
|
|
15925
|
+
}
|
|
15926
|
+
|
|
15927
|
+
.st-flamegraphChart__tooltipLabel {
|
|
15928
|
+
font-weight: 600;
|
|
15929
|
+
}
|
|
15930
|
+
|
|
15931
|
+
.st-flamegraphChart__tooltipValue {
|
|
15932
|
+
opacity: 0.85;
|
|
15933
|
+
}
|
|
15934
|
+
|
|
15935
|
+
@media (prefers-reduced-motion: reduce) {
|
|
15936
|
+
.st-flamegraphChart__frame {
|
|
15937
|
+
transition: none;
|
|
15938
|
+
}
|
|
15939
|
+
}
|
|
15940
|
+
|
|
15941
|
+
/* ---------------------------------------------------------------------------
|
|
15942
|
+
TraceWaterfallChart — spans distribués imbriqués (trace waterfall), barres
|
|
15943
|
+
start → start + duration sur l'axe temps, ordre hiérarchique (DFS) + indentation.
|
|
15944
|
+
--------------------------------------------------------------------------- */
|
|
15945
|
+
.st-traceWaterfallChart {
|
|
15946
|
+
color: var(--st-semantic-text-secondary);
|
|
15947
|
+
display: block;
|
|
15948
|
+
font-family: inherit;
|
|
15949
|
+
position: relative;
|
|
15950
|
+
width: 100%;
|
|
15951
|
+
}
|
|
15952
|
+
|
|
15953
|
+
.st-traceWaterfallChart svg {
|
|
15954
|
+
display: block;
|
|
15955
|
+
overflow: visible;
|
|
15956
|
+
}
|
|
15957
|
+
|
|
15958
|
+
.st-traceWaterfallChart__visual {
|
|
15959
|
+
display: block;
|
|
15960
|
+
}
|
|
15961
|
+
|
|
15962
|
+
.st-traceWaterfallChart__axis {
|
|
15963
|
+
stroke: var(--st-semantic-border-subtle);
|
|
15964
|
+
stroke-width: 1;
|
|
15965
|
+
}
|
|
15966
|
+
|
|
15967
|
+
.st-traceWaterfallChart__grid {
|
|
15968
|
+
stroke: var(--st-semantic-border-subtle);
|
|
15969
|
+
stroke-dasharray: 2 3;
|
|
15970
|
+
stroke-width: 1;
|
|
15971
|
+
opacity: 0.7;
|
|
15972
|
+
}
|
|
15973
|
+
|
|
15974
|
+
.st-traceWaterfallChart__tickLabel,
|
|
15975
|
+
.st-traceWaterfallChart__spanLabel {
|
|
15976
|
+
fill: var(--st-semantic-text-secondary);
|
|
15977
|
+
font-size: 0.6875rem;
|
|
15978
|
+
}
|
|
15979
|
+
|
|
15980
|
+
.st-traceWaterfallChart__bar {
|
|
15981
|
+
cursor: pointer;
|
|
15982
|
+
transition: opacity 120ms ease;
|
|
15983
|
+
}
|
|
15984
|
+
|
|
15985
|
+
.st-traceWaterfallChart__bar--dim {
|
|
15986
|
+
opacity: 0.4;
|
|
15987
|
+
}
|
|
15988
|
+
|
|
15989
|
+
.st-traceWaterfallChart__bar--category1 { fill: var(--st-semantic-data-category1); }
|
|
15990
|
+
.st-traceWaterfallChart__bar--category2 { fill: var(--st-semantic-data-category2); }
|
|
15991
|
+
.st-traceWaterfallChart__bar--category3 { fill: var(--st-semantic-data-category3); }
|
|
15992
|
+
.st-traceWaterfallChart__bar--category4 { fill: var(--st-semantic-data-category4); }
|
|
15993
|
+
.st-traceWaterfallChart__bar--category5 { fill: var(--st-semantic-data-category5); }
|
|
15994
|
+
.st-traceWaterfallChart__bar--category6 { fill: var(--st-semantic-data-category6); }
|
|
15995
|
+
.st-traceWaterfallChart__bar--category7 { fill: var(--st-semantic-data-category7); }
|
|
15996
|
+
.st-traceWaterfallChart__bar--category8 { fill: var(--st-semantic-data-category8); }
|
|
15997
|
+
|
|
15998
|
+
.st-traceWaterfallChart__legend {
|
|
15999
|
+
display: flex;
|
|
16000
|
+
flex-wrap: wrap;
|
|
16001
|
+
gap: var(--st-spacing-3, 0.75rem);
|
|
16002
|
+
list-style: none;
|
|
16003
|
+
margin: var(--st-spacing-2, 0.5rem) 0 0 0;
|
|
16004
|
+
padding: 0;
|
|
16005
|
+
}
|
|
16006
|
+
|
|
16007
|
+
.st-traceWaterfallChart__legendItem {
|
|
16008
|
+
align-items: center;
|
|
16009
|
+
color: var(--st-semantic-text-secondary);
|
|
16010
|
+
display: inline-flex;
|
|
16011
|
+
font-size: 0.75rem;
|
|
16012
|
+
gap: var(--st-spacing-1, 0.25rem);
|
|
16013
|
+
line-height: 1;
|
|
16014
|
+
}
|
|
16015
|
+
|
|
16016
|
+
.st-traceWaterfallChart__legendSwatch {
|
|
16017
|
+
border-radius: var(--st-radius-sm, 0.25rem);
|
|
16018
|
+
display: inline-block;
|
|
16019
|
+
height: 0.625rem;
|
|
16020
|
+
width: 0.625rem;
|
|
16021
|
+
}
|
|
16022
|
+
.st-traceWaterfallChart__legendSwatch--category1 { background: var(--st-semantic-data-category1); }
|
|
16023
|
+
.st-traceWaterfallChart__legendSwatch--category2 { background: var(--st-semantic-data-category2); }
|
|
16024
|
+
.st-traceWaterfallChart__legendSwatch--category3 { background: var(--st-semantic-data-category3); }
|
|
16025
|
+
.st-traceWaterfallChart__legendSwatch--category4 { background: var(--st-semantic-data-category4); }
|
|
16026
|
+
.st-traceWaterfallChart__legendSwatch--category5 { background: var(--st-semantic-data-category5); }
|
|
16027
|
+
.st-traceWaterfallChart__legendSwatch--category6 { background: var(--st-semantic-data-category6); }
|
|
16028
|
+
.st-traceWaterfallChart__legendSwatch--category7 { background: var(--st-semantic-data-category7); }
|
|
16029
|
+
.st-traceWaterfallChart__legendSwatch--category8 { background: var(--st-semantic-data-category8); }
|
|
16030
|
+
|
|
16031
|
+
.st-traceWaterfallChart__tooltip {
|
|
16032
|
+
background: var(--st-semantic-surface-inverse);
|
|
16033
|
+
border-radius: var(--st-radius-sm, 0.25rem);
|
|
16034
|
+
color: var(--st-semantic-text-inverse);
|
|
16035
|
+
display: inline-flex;
|
|
16036
|
+
flex-direction: column;
|
|
16037
|
+
font-size: 0.75rem;
|
|
16038
|
+
gap: 0.125rem;
|
|
16039
|
+
line-height: 1.2;
|
|
16040
|
+
padding: 0.375rem 0.5rem;
|
|
16041
|
+
pointer-events: none;
|
|
16042
|
+
position: absolute;
|
|
16043
|
+
transform: translate(-50%, calc(-100% - 8px));
|
|
16044
|
+
white-space: nowrap;
|
|
16045
|
+
z-index: 1;
|
|
16046
|
+
}
|
|
16047
|
+
|
|
16048
|
+
.st-traceWaterfallChart__tooltipLabel {
|
|
16049
|
+
font-weight: 600;
|
|
16050
|
+
}
|
|
16051
|
+
|
|
16052
|
+
.st-traceWaterfallChart__tooltipValue {
|
|
16053
|
+
opacity: 0.85;
|
|
16054
|
+
}
|
|
16055
|
+
|
|
16056
|
+
@media (prefers-reduced-motion: reduce) {
|
|
16057
|
+
.st-traceWaterfallChart__bar {
|
|
16058
|
+
transition: none;
|
|
16059
|
+
}
|
|
16060
|
+
}
|
|
16061
|
+
|
|
16062
|
+
/* ---------------------------------------------------------------------------
|
|
16063
|
+
DecompositionTreeChart — arbre de décomposition (Power BI decomposition tree).
|
|
16064
|
+
--------------------------------------------------------------------------- */
|
|
16065
|
+
.st-decompositionTreeChart {
|
|
16066
|
+
color: var(--st-semantic-text-secondary);
|
|
16067
|
+
display: block;
|
|
16068
|
+
font-family: inherit;
|
|
16069
|
+
position: relative;
|
|
16070
|
+
width: 100%;
|
|
16071
|
+
}
|
|
16072
|
+
|
|
16073
|
+
.st-decompositionTreeChart svg {
|
|
16074
|
+
display: block;
|
|
16075
|
+
overflow: visible;
|
|
16076
|
+
}
|
|
16077
|
+
|
|
16078
|
+
.st-decompositionTreeChart__visual {
|
|
16079
|
+
display: block;
|
|
16080
|
+
}
|
|
16081
|
+
|
|
16082
|
+
.st-decompositionTreeChart__link {
|
|
16083
|
+
fill: none;
|
|
16084
|
+
stroke: var(--st-semantic-border-subtle);
|
|
16085
|
+
stroke-width: 1.5;
|
|
16086
|
+
transition: opacity 120ms ease;
|
|
16087
|
+
}
|
|
16088
|
+
|
|
16089
|
+
.st-decompositionTreeChart__link--dim {
|
|
16090
|
+
opacity: 0.3;
|
|
16091
|
+
}
|
|
16092
|
+
|
|
16093
|
+
.st-decompositionTreeChart__bar {
|
|
16094
|
+
cursor: pointer;
|
|
16095
|
+
stroke: var(--st-semantic-surface-default, Canvas);
|
|
16096
|
+
stroke-width: 1;
|
|
16097
|
+
transition: opacity 120ms ease;
|
|
16098
|
+
}
|
|
16099
|
+
|
|
16100
|
+
.st-decompositionTreeChart__bar--dim {
|
|
16101
|
+
opacity: 0.4;
|
|
16102
|
+
}
|
|
16103
|
+
|
|
16104
|
+
.st-decompositionTreeChart__bar--category1 { fill: var(--st-semantic-data-category1); }
|
|
16105
|
+
.st-decompositionTreeChart__bar--category2 { fill: var(--st-semantic-data-category2); }
|
|
16106
|
+
.st-decompositionTreeChart__bar--category3 { fill: var(--st-semantic-data-category3); }
|
|
16107
|
+
.st-decompositionTreeChart__bar--category4 { fill: var(--st-semantic-data-category4); }
|
|
16108
|
+
.st-decompositionTreeChart__bar--category5 { fill: var(--st-semantic-data-category5); }
|
|
16109
|
+
.st-decompositionTreeChart__bar--category6 { fill: var(--st-semantic-data-category6); }
|
|
16110
|
+
.st-decompositionTreeChart__bar--category7 { fill: var(--st-semantic-data-category7); }
|
|
16111
|
+
.st-decompositionTreeChart__bar--category8 { fill: var(--st-semantic-data-category8); }
|
|
16112
|
+
|
|
16113
|
+
.st-decompositionTreeChart__label {
|
|
16114
|
+
fill: var(--st-semantic-text-inverse);
|
|
16115
|
+
font-size: 0.6875rem;
|
|
16116
|
+
pointer-events: none;
|
|
16117
|
+
}
|
|
16118
|
+
|
|
16119
|
+
.st-decompositionTreeChart__tooltip {
|
|
16120
|
+
background: var(--st-semantic-surface-inverse);
|
|
16121
|
+
border-radius: var(--st-radius-sm, 0.25rem);
|
|
16122
|
+
color: var(--st-semantic-text-inverse);
|
|
16123
|
+
display: inline-flex;
|
|
16124
|
+
flex-direction: column;
|
|
16125
|
+
font-size: 0.75rem;
|
|
16126
|
+
gap: 0.125rem;
|
|
16127
|
+
line-height: 1.2;
|
|
16128
|
+
padding: 0.375rem 0.5rem;
|
|
16129
|
+
pointer-events: none;
|
|
16130
|
+
position: absolute;
|
|
16131
|
+
transform: translate(-50%, calc(-100% - 8px));
|
|
16132
|
+
white-space: nowrap;
|
|
16133
|
+
z-index: 1;
|
|
16134
|
+
}
|
|
16135
|
+
|
|
16136
|
+
.st-decompositionTreeChart__tooltipLabel {
|
|
16137
|
+
font-weight: 600;
|
|
16138
|
+
}
|
|
16139
|
+
|
|
16140
|
+
.st-decompositionTreeChart__tooltipValue {
|
|
16141
|
+
opacity: 0.85;
|
|
16142
|
+
}
|
|
16143
|
+
|
|
16144
|
+
@media (prefers-reduced-motion: reduce) {
|
|
16145
|
+
.st-decompositionTreeChart__bar,
|
|
16146
|
+
.st-decompositionTreeChart__link {
|
|
16147
|
+
transition: none;
|
|
16148
|
+
}
|
|
16149
|
+
}
|
|
16150
|
+
|
|
16151
|
+
/* ---------------------------------------------------------------------------
|
|
16152
|
+
Density2DChart — densité 2D binned sur axes numériques (Tableau/Dataiku).
|
|
16153
|
+
--------------------------------------------------------------------------- */
|
|
16154
|
+
.st-density2DChart {
|
|
16155
|
+
color: var(--st-semantic-text-secondary);
|
|
16156
|
+
display: block;
|
|
16157
|
+
font-family: inherit;
|
|
16158
|
+
position: relative;
|
|
16159
|
+
width: 100%;
|
|
16160
|
+
}
|
|
16161
|
+
|
|
16162
|
+
.st-density2DChart svg {
|
|
16163
|
+
display: block;
|
|
16164
|
+
overflow: visible;
|
|
16165
|
+
}
|
|
16166
|
+
|
|
16167
|
+
.st-density2DChart__visual {
|
|
16168
|
+
display: block;
|
|
16169
|
+
}
|
|
16170
|
+
|
|
16171
|
+
.st-density2DChart__axis {
|
|
16172
|
+
stroke: var(--st-semantic-border-subtle);
|
|
16173
|
+
stroke-width: 1;
|
|
16174
|
+
}
|
|
16175
|
+
|
|
16176
|
+
.st-density2DChart__tickLabel {
|
|
16177
|
+
fill: var(--st-semantic-text-secondary);
|
|
16178
|
+
font-size: 0.6875rem;
|
|
16179
|
+
}
|
|
16180
|
+
|
|
16181
|
+
.st-density2DChart__cell {
|
|
16182
|
+
cursor: pointer;
|
|
16183
|
+
stroke: var(--st-semantic-surface-default, Canvas);
|
|
16184
|
+
stroke-width: 0.5;
|
|
16185
|
+
transition: opacity 120ms ease;
|
|
16186
|
+
}
|
|
16187
|
+
|
|
16188
|
+
.st-density2DChart__cell--dim {
|
|
16189
|
+
opacity: 0.4;
|
|
16190
|
+
}
|
|
16191
|
+
|
|
16192
|
+
.st-density2DChart__cell--category1,
|
|
16193
|
+
.st-density2DChart__legendSwatch--category1 { fill: var(--st-semantic-data-category1); background: var(--st-semantic-data-category1); }
|
|
16194
|
+
.st-density2DChart__cell--category2,
|
|
16195
|
+
.st-density2DChart__legendSwatch--category2 { fill: var(--st-semantic-data-category2); background: var(--st-semantic-data-category2); }
|
|
16196
|
+
.st-density2DChart__cell--category3,
|
|
16197
|
+
.st-density2DChart__legendSwatch--category3 { fill: var(--st-semantic-data-category3); background: var(--st-semantic-data-category3); }
|
|
16198
|
+
.st-density2DChart__cell--category4,
|
|
16199
|
+
.st-density2DChart__legendSwatch--category4 { fill: var(--st-semantic-data-category4); background: var(--st-semantic-data-category4); }
|
|
16200
|
+
.st-density2DChart__cell--category5,
|
|
16201
|
+
.st-density2DChart__legendSwatch--category5 { fill: var(--st-semantic-data-category5); background: var(--st-semantic-data-category5); }
|
|
16202
|
+
.st-density2DChart__cell--category6,
|
|
16203
|
+
.st-density2DChart__legendSwatch--category6 { fill: var(--st-semantic-data-category6); background: var(--st-semantic-data-category6); }
|
|
16204
|
+
.st-density2DChart__cell--category7,
|
|
16205
|
+
.st-density2DChart__legendSwatch--category7 { fill: var(--st-semantic-data-category7); background: var(--st-semantic-data-category7); }
|
|
16206
|
+
.st-density2DChart__cell--category8,
|
|
16207
|
+
.st-density2DChart__legendSwatch--category8 { fill: var(--st-semantic-data-category8); background: var(--st-semantic-data-category8); }
|
|
16208
|
+
|
|
16209
|
+
.st-density2DChart__legend {
|
|
16210
|
+
align-items: center;
|
|
16211
|
+
display: flex;
|
|
16212
|
+
gap: var(--st-spacing-2, 0.5rem);
|
|
16213
|
+
margin-top: var(--st-spacing-2, 0.5rem);
|
|
16214
|
+
}
|
|
16215
|
+
|
|
16216
|
+
.st-density2DChart__legendRamp {
|
|
16217
|
+
display: inline-grid;
|
|
16218
|
+
grid-template-columns: repeat(8, minmax(0.75rem, 1fr));
|
|
16219
|
+
min-width: 8rem;
|
|
16220
|
+
}
|
|
16221
|
+
|
|
16222
|
+
.st-density2DChart__legendSwatch {
|
|
16223
|
+
display: block;
|
|
16224
|
+
height: 0.5rem;
|
|
16225
|
+
}
|
|
16226
|
+
|
|
16227
|
+
.st-density2DChart__legendText {
|
|
16228
|
+
color: var(--st-semantic-text-secondary);
|
|
16229
|
+
font-size: 0.75rem;
|
|
16230
|
+
}
|
|
16231
|
+
|
|
16232
|
+
.st-density2DChart__tooltip {
|
|
16233
|
+
background: var(--st-semantic-surface-inverse);
|
|
16234
|
+
border-radius: var(--st-radius-sm, 0.25rem);
|
|
16235
|
+
color: var(--st-semantic-text-inverse);
|
|
16236
|
+
display: inline-flex;
|
|
16237
|
+
flex-direction: column;
|
|
16238
|
+
font-size: 0.75rem;
|
|
16239
|
+
gap: 0.125rem;
|
|
16240
|
+
line-height: 1.2;
|
|
16241
|
+
padding: 0.375rem 0.5rem;
|
|
16242
|
+
pointer-events: none;
|
|
16243
|
+
position: absolute;
|
|
16244
|
+
transform: translate(-50%, calc(-100% - 8px));
|
|
16245
|
+
white-space: nowrap;
|
|
16246
|
+
z-index: 1;
|
|
16247
|
+
}
|
|
16248
|
+
|
|
16249
|
+
.st-density2DChart__tooltipLabel {
|
|
16250
|
+
font-weight: 600;
|
|
16251
|
+
}
|
|
16252
|
+
|
|
16253
|
+
.st-density2DChart__tooltipValue {
|
|
16254
|
+
opacity: 0.85;
|
|
16255
|
+
}
|
|
16256
|
+
|
|
16257
|
+
@media (prefers-reduced-motion: reduce) {
|
|
16258
|
+
.st-density2DChart__cell {
|
|
16259
|
+
transition: none;
|
|
16260
|
+
}
|
|
16261
|
+
}
|