@mittwald/flow-design-tokens 0.2.0-alpha.273 → 0.2.0-alpha.275
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/variables.css +10 -0
- package/dist/variables.json +178 -0
- package/package.json +2 -2
package/dist/variables.css
CHANGED
|
@@ -488,6 +488,10 @@
|
|
|
488
488
|
--big-number--font-weight: var(--font-weight--bold);
|
|
489
489
|
--cartesian-grid--color: var(--color--gray--700);
|
|
490
490
|
--chart-tooltip--spacing: var(--size-px--s);
|
|
491
|
+
--donut-chart--spacing-y: var(--size-rem--s);
|
|
492
|
+
--donut-chart--spacing-x: var(--size-rem--m);
|
|
493
|
+
--donut-chart--padding--m: var(--size-px--l);
|
|
494
|
+
--donut-chart--padding--l: var(--size-px--xl);
|
|
491
495
|
--legend--spacing-x: var(--size-px--m);
|
|
492
496
|
--legend--spacing-y: var(--size-px--s);
|
|
493
497
|
--legend-item--spacing: var(--size-rem--s);
|
|
@@ -959,6 +963,7 @@
|
|
|
959
963
|
--axis--text-color: var(--neutral--color--1000);
|
|
960
964
|
--axis--stroke-width: var(--border-width--100);
|
|
961
965
|
--cartesian-grid--stroke-width: var(--border-width--100);
|
|
966
|
+
--donut-chart--background-color: var(--neutral--color--300);
|
|
962
967
|
--legend-item--marker--corner-radius: var(--corner-radius--default);
|
|
963
968
|
--focus--outline-color: var(--primary--color--800);
|
|
964
969
|
--focus--secondary-outline-color: var(--neutral--color--100);
|
|
@@ -1213,6 +1218,11 @@
|
|
|
1213
1218
|
--label--color--disabled: var(--disabled-plain-content-color);
|
|
1214
1219
|
--text--color--disabled: var(--disabled-plain-content-color);
|
|
1215
1220
|
--text--blockquote-border-color: var(--info-outline-border-color);
|
|
1221
|
+
--donut-chart--border-color: var(--neutral-outline-border-color);
|
|
1222
|
+
--donut-chart--info-fill-background-color: var(--info-solid-background-color--default);
|
|
1223
|
+
--donut-chart--success-fill-background-color: var(--success-solid-background-color--default);
|
|
1224
|
+
--donut-chart--warning-fill-background-color: var(--warning-solid-background-color--default);
|
|
1225
|
+
--donut-chart--danger-fill-background-color: var(--danger-solid-background-color--default);
|
|
1216
1226
|
--choice--icon-color--default: var(--icon--color);
|
|
1217
1227
|
--choice--icon-color--disabled: var(--disabled-outline-content-color);
|
|
1218
1228
|
--date-picker--date-segment-background-color--focused: var(--primary-plain-background-color--pressed);
|
package/dist/variables.json
CHANGED
|
@@ -14804,6 +14804,184 @@
|
|
|
14804
14804
|
]
|
|
14805
14805
|
}
|
|
14806
14806
|
},
|
|
14807
|
+
"donut-chart": {
|
|
14808
|
+
"border-color": {
|
|
14809
|
+
"value": "#909090",
|
|
14810
|
+
"filePath": "src/dataVisualisation/donut-chart.yml",
|
|
14811
|
+
"isSource": true,
|
|
14812
|
+
"original": {
|
|
14813
|
+
"value": "{neutral-outline-border-color}"
|
|
14814
|
+
},
|
|
14815
|
+
"name": "DonutChartBorderColor",
|
|
14816
|
+
"attributes": {
|
|
14817
|
+
"category": "donut-chart",
|
|
14818
|
+
"type": "border-color"
|
|
14819
|
+
},
|
|
14820
|
+
"path": [
|
|
14821
|
+
"donut-chart",
|
|
14822
|
+
"border-color"
|
|
14823
|
+
]
|
|
14824
|
+
},
|
|
14825
|
+
"background-color": {
|
|
14826
|
+
"value": "#F8F8F8",
|
|
14827
|
+
"filePath": "src/dataVisualisation/donut-chart.yml",
|
|
14828
|
+
"isSource": true,
|
|
14829
|
+
"original": {
|
|
14830
|
+
"value": "{neutral.color.300}"
|
|
14831
|
+
},
|
|
14832
|
+
"name": "DonutChartBackgroundColor",
|
|
14833
|
+
"attributes": {
|
|
14834
|
+
"category": "donut-chart",
|
|
14835
|
+
"type": "background-color"
|
|
14836
|
+
},
|
|
14837
|
+
"path": [
|
|
14838
|
+
"donut-chart",
|
|
14839
|
+
"background-color"
|
|
14840
|
+
]
|
|
14841
|
+
},
|
|
14842
|
+
"spacing-y": {
|
|
14843
|
+
"value": "0.5rem",
|
|
14844
|
+
"filePath": "src/dataVisualisation/donut-chart.yml",
|
|
14845
|
+
"isSource": true,
|
|
14846
|
+
"original": {
|
|
14847
|
+
"value": "{size-rem.s}"
|
|
14848
|
+
},
|
|
14849
|
+
"name": "DonutChartSpacingY",
|
|
14850
|
+
"attributes": {
|
|
14851
|
+
"category": "donut-chart",
|
|
14852
|
+
"type": "spacing-y"
|
|
14853
|
+
},
|
|
14854
|
+
"path": [
|
|
14855
|
+
"donut-chart",
|
|
14856
|
+
"spacing-y"
|
|
14857
|
+
]
|
|
14858
|
+
},
|
|
14859
|
+
"spacing-x": {
|
|
14860
|
+
"value": "1rem",
|
|
14861
|
+
"filePath": "src/dataVisualisation/donut-chart.yml",
|
|
14862
|
+
"isSource": true,
|
|
14863
|
+
"original": {
|
|
14864
|
+
"value": "{size-rem.m}"
|
|
14865
|
+
},
|
|
14866
|
+
"name": "DonutChartSpacingX",
|
|
14867
|
+
"attributes": {
|
|
14868
|
+
"category": "donut-chart",
|
|
14869
|
+
"type": "spacing-x"
|
|
14870
|
+
},
|
|
14871
|
+
"path": [
|
|
14872
|
+
"donut-chart",
|
|
14873
|
+
"spacing-x"
|
|
14874
|
+
]
|
|
14875
|
+
},
|
|
14876
|
+
"padding": {
|
|
14877
|
+
"m": {
|
|
14878
|
+
"value": "24px",
|
|
14879
|
+
"filePath": "src/dataVisualisation/donut-chart.yml",
|
|
14880
|
+
"isSource": true,
|
|
14881
|
+
"original": {
|
|
14882
|
+
"value": "{size-px.l}"
|
|
14883
|
+
},
|
|
14884
|
+
"name": "DonutChartPaddingM",
|
|
14885
|
+
"attributes": {
|
|
14886
|
+
"category": "donut-chart",
|
|
14887
|
+
"type": "padding",
|
|
14888
|
+
"item": "m"
|
|
14889
|
+
},
|
|
14890
|
+
"path": [
|
|
14891
|
+
"donut-chart",
|
|
14892
|
+
"padding",
|
|
14893
|
+
"m"
|
|
14894
|
+
]
|
|
14895
|
+
},
|
|
14896
|
+
"l": {
|
|
14897
|
+
"value": "32px",
|
|
14898
|
+
"filePath": "src/dataVisualisation/donut-chart.yml",
|
|
14899
|
+
"isSource": true,
|
|
14900
|
+
"original": {
|
|
14901
|
+
"value": "{size-px.xl}"
|
|
14902
|
+
},
|
|
14903
|
+
"name": "DonutChartPaddingL",
|
|
14904
|
+
"attributes": {
|
|
14905
|
+
"category": "donut-chart",
|
|
14906
|
+
"type": "padding",
|
|
14907
|
+
"item": "l"
|
|
14908
|
+
},
|
|
14909
|
+
"path": [
|
|
14910
|
+
"donut-chart",
|
|
14911
|
+
"padding",
|
|
14912
|
+
"l"
|
|
14913
|
+
]
|
|
14914
|
+
}
|
|
14915
|
+
},
|
|
14916
|
+
"info-fill-background-color": {
|
|
14917
|
+
"value": "#0054F5",
|
|
14918
|
+
"filePath": "src/dataVisualisation/donut-chart.yml",
|
|
14919
|
+
"isSource": true,
|
|
14920
|
+
"original": {
|
|
14921
|
+
"value": "{info-solid-background-color.default}"
|
|
14922
|
+
},
|
|
14923
|
+
"name": "DonutChartInfoFillBackgroundColor",
|
|
14924
|
+
"attributes": {
|
|
14925
|
+
"category": "donut-chart",
|
|
14926
|
+
"type": "info-fill-background-color"
|
|
14927
|
+
},
|
|
14928
|
+
"path": [
|
|
14929
|
+
"donut-chart",
|
|
14930
|
+
"info-fill-background-color"
|
|
14931
|
+
]
|
|
14932
|
+
},
|
|
14933
|
+
"success-fill-background-color": {
|
|
14934
|
+
"value": "#00825B",
|
|
14935
|
+
"filePath": "src/dataVisualisation/donut-chart.yml",
|
|
14936
|
+
"isSource": true,
|
|
14937
|
+
"original": {
|
|
14938
|
+
"value": "{success-solid-background-color.default}"
|
|
14939
|
+
},
|
|
14940
|
+
"name": "DonutChartSuccessFillBackgroundColor",
|
|
14941
|
+
"attributes": {
|
|
14942
|
+
"category": "donut-chart",
|
|
14943
|
+
"type": "success-fill-background-color"
|
|
14944
|
+
},
|
|
14945
|
+
"path": [
|
|
14946
|
+
"donut-chart",
|
|
14947
|
+
"success-fill-background-color"
|
|
14948
|
+
]
|
|
14949
|
+
},
|
|
14950
|
+
"warning-fill-background-color": {
|
|
14951
|
+
"value": "#F56800",
|
|
14952
|
+
"filePath": "src/dataVisualisation/donut-chart.yml",
|
|
14953
|
+
"isSource": true,
|
|
14954
|
+
"original": {
|
|
14955
|
+
"value": "{warning-solid-background-color.default}"
|
|
14956
|
+
},
|
|
14957
|
+
"name": "DonutChartWarningFillBackgroundColor",
|
|
14958
|
+
"attributes": {
|
|
14959
|
+
"category": "donut-chart",
|
|
14960
|
+
"type": "warning-fill-background-color"
|
|
14961
|
+
},
|
|
14962
|
+
"path": [
|
|
14963
|
+
"donut-chart",
|
|
14964
|
+
"warning-fill-background-color"
|
|
14965
|
+
]
|
|
14966
|
+
},
|
|
14967
|
+
"danger-fill-background-color": {
|
|
14968
|
+
"value": "#E1244C",
|
|
14969
|
+
"filePath": "src/dataVisualisation/donut-chart.yml",
|
|
14970
|
+
"isSource": true,
|
|
14971
|
+
"original": {
|
|
14972
|
+
"value": "{danger-solid-background-color.default}"
|
|
14973
|
+
},
|
|
14974
|
+
"name": "DonutChartDangerFillBackgroundColor",
|
|
14975
|
+
"attributes": {
|
|
14976
|
+
"category": "donut-chart",
|
|
14977
|
+
"type": "danger-fill-background-color"
|
|
14978
|
+
},
|
|
14979
|
+
"path": [
|
|
14980
|
+
"donut-chart",
|
|
14981
|
+
"danger-fill-background-color"
|
|
14982
|
+
]
|
|
14983
|
+
}
|
|
14984
|
+
},
|
|
14807
14985
|
"legend": {
|
|
14808
14986
|
"spacing-x": {
|
|
14809
14987
|
"value": "16px",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/flow-design-tokens",
|
|
3
|
-
"version": "0.2.0-alpha.
|
|
3
|
+
"version": "0.2.0-alpha.275",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "The design tokens used in Flow, mittwald’s design system",
|
|
6
6
|
"homepage": "https://github.com/mittwald/flow/tree/main/packages/design-tokens",
|
|
@@ -24,5 +24,5 @@
|
|
|
24
24
|
"rimraf": "^6.0.1",
|
|
25
25
|
"style-dictionary": "^4.4.0"
|
|
26
26
|
},
|
|
27
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "c37dee7aa0010982e7780fab60fa26746664e698"
|
|
28
28
|
}
|