@kcascend/liquid-ui 0.0.4 → 0.0.6
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 +66 -61
- package/dist/components/Checkbox/Checkbox.d.ts +2 -1
- package/dist/components/Checkbox/Checkbox.d.ts.map +1 -1
- package/dist/components/Checkbox/Checkbox.js +9 -0
- package/dist/components/DataTable/DataTable.d.ts +1 -1
- package/dist/components/DataTable/DataTable.d.ts.map +1 -1
- package/dist/components/DataTable/DataTable.js +12 -12
- package/dist/components/GridLayout/layoutPatterns.d.ts +8 -0
- package/dist/components/GridLayout/layoutPatterns.d.ts.map +1 -0
- package/dist/components/GridLayout/layoutPatterns.js +317 -0
- package/dist/components/HeaderShell/HeaderShell.d.ts +1 -1
- package/dist/components/HeaderShell/HeaderShell.d.ts.map +1 -1
- package/dist/components/HeaderShell/HeaderShell.js +46 -17
- package/dist/generated/tokens.d.ts +863 -65
- package/dist/generated/tokens.d.ts.map +1 -1
- package/dist/generated/tokens.js +863 -65
- package/dist/governance/checkboxGovernance.d.ts.map +1 -1
- package/dist/governance/checkboxGovernance.js +4 -3
- package/dist/governance/gridLayoutGovernance.d.ts.map +1 -1
- package/dist/governance/gridLayoutGovernance.js +6 -5
- package/dist/index.d.ts +3 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -1
- package/dist/styles.css +3741 -3609
- package/dist/tokens/components.css +22 -7
- package/dist/tokens/primitives.css +1 -0
- package/dist/tokens/semantic.css +36 -5
- package/dist/types.d.ts +44 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +33 -33
|
@@ -747,6 +747,10 @@ export declare const tokens: {
|
|
|
747
747
|
readonly type: "dimension";
|
|
748
748
|
readonly value: "0px";
|
|
749
749
|
};
|
|
750
|
+
readonly "1": {
|
|
751
|
+
readonly type: "dimension";
|
|
752
|
+
readonly value: "1px";
|
|
753
|
+
};
|
|
750
754
|
readonly "2": {
|
|
751
755
|
readonly type: "dimension";
|
|
752
756
|
readonly value: "2px";
|
|
@@ -1447,19 +1451,19 @@ export declare const tokens: {
|
|
|
1447
1451
|
readonly background: {
|
|
1448
1452
|
readonly neutral: {
|
|
1449
1453
|
readonly type: "color";
|
|
1450
|
-
readonly value: "{primitives.color.gray.
|
|
1454
|
+
readonly value: "{primitives.color.gray.20}";
|
|
1451
1455
|
};
|
|
1452
1456
|
readonly blue: {
|
|
1453
1457
|
readonly type: "color";
|
|
1454
|
-
readonly value: "{primitives.color.blue.
|
|
1458
|
+
readonly value: "{primitives.color.blue.20}";
|
|
1455
1459
|
};
|
|
1456
1460
|
readonly green: {
|
|
1457
1461
|
readonly type: "color";
|
|
1458
|
-
readonly value: "{primitives.color.green.
|
|
1462
|
+
readonly value: "{primitives.color.green.20}";
|
|
1459
1463
|
};
|
|
1460
1464
|
readonly purple: {
|
|
1461
1465
|
readonly type: "color";
|
|
1462
|
-
readonly value: "{primitives.color.purple.
|
|
1466
|
+
readonly value: "{primitives.color.purple.20}";
|
|
1463
1467
|
};
|
|
1464
1468
|
};
|
|
1465
1469
|
readonly text: {
|
|
@@ -1473,7 +1477,7 @@ export declare const tokens: {
|
|
|
1473
1477
|
};
|
|
1474
1478
|
readonly green: {
|
|
1475
1479
|
readonly type: "color";
|
|
1476
|
-
readonly value: "{primitives.color.green.
|
|
1480
|
+
readonly value: "{primitives.color.green.70}";
|
|
1477
1481
|
};
|
|
1478
1482
|
readonly purple: {
|
|
1479
1483
|
readonly type: "color";
|
|
@@ -1585,6 +1589,10 @@ export declare const tokens: {
|
|
|
1585
1589
|
readonly type: "color";
|
|
1586
1590
|
readonly value: "{semantic-layout.spacing.32}";
|
|
1587
1591
|
};
|
|
1592
|
+
readonly "2xs": {
|
|
1593
|
+
readonly type: "dimension";
|
|
1594
|
+
readonly value: "{primitives.space.4}";
|
|
1595
|
+
};
|
|
1588
1596
|
};
|
|
1589
1597
|
readonly icon: {
|
|
1590
1598
|
readonly sm: {
|
|
@@ -1831,6 +1839,50 @@ export declare const tokens: {
|
|
|
1831
1839
|
readonly value: "{primitives.typography.letter-spacing.minus-016}";
|
|
1832
1840
|
};
|
|
1833
1841
|
};
|
|
1842
|
+
readonly "display-mobile-01": {
|
|
1843
|
+
readonly family: {
|
|
1844
|
+
readonly type: "string";
|
|
1845
|
+
readonly value: "{primitives.typography.family.roboto-condensed}";
|
|
1846
|
+
};
|
|
1847
|
+
readonly weight: {
|
|
1848
|
+
readonly type: "string";
|
|
1849
|
+
readonly value: "{primitives.typography.weight.semibold}";
|
|
1850
|
+
};
|
|
1851
|
+
readonly size: {
|
|
1852
|
+
readonly type: "dimension";
|
|
1853
|
+
readonly value: "{primitives.typography.size.48}";
|
|
1854
|
+
};
|
|
1855
|
+
readonly "line-height": {
|
|
1856
|
+
readonly type: "dimension";
|
|
1857
|
+
readonly value: "{primitives.typography.line-height.56}";
|
|
1858
|
+
};
|
|
1859
|
+
readonly "letter-spacing": {
|
|
1860
|
+
readonly type: "dimension";
|
|
1861
|
+
readonly value: "{primitives.typography.letter-spacing.0}";
|
|
1862
|
+
};
|
|
1863
|
+
};
|
|
1864
|
+
readonly "display-mobile-02": {
|
|
1865
|
+
readonly family: {
|
|
1866
|
+
readonly type: "string";
|
|
1867
|
+
readonly value: "{primitives.typography.family.roboto-condensed}";
|
|
1868
|
+
};
|
|
1869
|
+
readonly weight: {
|
|
1870
|
+
readonly type: "string";
|
|
1871
|
+
readonly value: "{primitives.typography.weight.semibold}";
|
|
1872
|
+
};
|
|
1873
|
+
readonly size: {
|
|
1874
|
+
readonly type: "dimension";
|
|
1875
|
+
readonly value: "{primitives.typography.size.40}";
|
|
1876
|
+
};
|
|
1877
|
+
readonly "line-height": {
|
|
1878
|
+
readonly type: "dimension";
|
|
1879
|
+
readonly value: "{primitives.typography.line-height.48}";
|
|
1880
|
+
};
|
|
1881
|
+
readonly "letter-spacing": {
|
|
1882
|
+
readonly type: "dimension";
|
|
1883
|
+
readonly value: "{primitives.typography.letter-spacing.0}";
|
|
1884
|
+
};
|
|
1885
|
+
};
|
|
1834
1886
|
};
|
|
1835
1887
|
readonly heading: {
|
|
1836
1888
|
readonly "heading-01": {
|
|
@@ -1965,6 +2017,94 @@ export declare const tokens: {
|
|
|
1965
2017
|
readonly value: "{primitives.typography.letter-spacing.0}";
|
|
1966
2018
|
};
|
|
1967
2019
|
};
|
|
2020
|
+
readonly "heading-mobile-01": {
|
|
2021
|
+
readonly family: {
|
|
2022
|
+
readonly type: "string";
|
|
2023
|
+
readonly value: "{primitives.typography.family.roboto-condensed}";
|
|
2024
|
+
};
|
|
2025
|
+
readonly weight: {
|
|
2026
|
+
readonly type: "string";
|
|
2027
|
+
readonly value: "{primitives.typography.weight.medium}";
|
|
2028
|
+
};
|
|
2029
|
+
readonly size: {
|
|
2030
|
+
readonly type: "dimension";
|
|
2031
|
+
readonly value: "{primitives.typography.size.36}";
|
|
2032
|
+
};
|
|
2033
|
+
readonly "line-height": {
|
|
2034
|
+
readonly type: "dimension";
|
|
2035
|
+
readonly value: "{primitives.typography.line-height.44}";
|
|
2036
|
+
};
|
|
2037
|
+
readonly "letter-spacing": {
|
|
2038
|
+
readonly type: "dimension";
|
|
2039
|
+
readonly value: "{primitives.typography.letter-spacing.0}";
|
|
2040
|
+
};
|
|
2041
|
+
};
|
|
2042
|
+
readonly "heading-mobile-02": {
|
|
2043
|
+
readonly family: {
|
|
2044
|
+
readonly type: "string";
|
|
2045
|
+
readonly value: "{primitives.typography.family.roboto-condensed}";
|
|
2046
|
+
};
|
|
2047
|
+
readonly weight: {
|
|
2048
|
+
readonly type: "string";
|
|
2049
|
+
readonly value: "{primitives.typography.weight.medium}";
|
|
2050
|
+
};
|
|
2051
|
+
readonly size: {
|
|
2052
|
+
readonly type: "dimension";
|
|
2053
|
+
readonly value: "{primitives.typography.size.32}";
|
|
2054
|
+
};
|
|
2055
|
+
readonly "line-height": {
|
|
2056
|
+
readonly type: "dimension";
|
|
2057
|
+
readonly value: "{primitives.typography.line-height.40}";
|
|
2058
|
+
};
|
|
2059
|
+
readonly "letter-spacing": {
|
|
2060
|
+
readonly type: "dimension";
|
|
2061
|
+
readonly value: "{primitives.typography.letter-spacing.0}";
|
|
2062
|
+
};
|
|
2063
|
+
};
|
|
2064
|
+
readonly "heading-mobile-03": {
|
|
2065
|
+
readonly family: {
|
|
2066
|
+
readonly type: "string";
|
|
2067
|
+
readonly value: "{primitives.typography.family.roboto-condensed}";
|
|
2068
|
+
};
|
|
2069
|
+
readonly weight: {
|
|
2070
|
+
readonly type: "string";
|
|
2071
|
+
readonly value: "{primitives.typography.weight.medium}";
|
|
2072
|
+
};
|
|
2073
|
+
readonly size: {
|
|
2074
|
+
readonly type: "dimension";
|
|
2075
|
+
readonly value: "{primitives.typography.size.28}";
|
|
2076
|
+
};
|
|
2077
|
+
readonly "line-height": {
|
|
2078
|
+
readonly type: "dimension";
|
|
2079
|
+
readonly value: "{primitives.typography.line-height.36}";
|
|
2080
|
+
};
|
|
2081
|
+
readonly "letter-spacing": {
|
|
2082
|
+
readonly type: "dimension";
|
|
2083
|
+
readonly value: "{primitives.typography.letter-spacing.0}";
|
|
2084
|
+
};
|
|
2085
|
+
};
|
|
2086
|
+
readonly "heading-mobile-04": {
|
|
2087
|
+
readonly family: {
|
|
2088
|
+
readonly type: "string";
|
|
2089
|
+
readonly value: "{primitives.typography.family.roboto-condensed}";
|
|
2090
|
+
};
|
|
2091
|
+
readonly weight: {
|
|
2092
|
+
readonly type: "string";
|
|
2093
|
+
readonly value: "{primitives.typography.weight.medium}";
|
|
2094
|
+
};
|
|
2095
|
+
readonly size: {
|
|
2096
|
+
readonly type: "dimension";
|
|
2097
|
+
readonly value: "{primitives.typography.size.20}";
|
|
2098
|
+
};
|
|
2099
|
+
readonly "line-height": {
|
|
2100
|
+
readonly type: "dimension";
|
|
2101
|
+
readonly value: "{primitives.typography.line-height.28}";
|
|
2102
|
+
};
|
|
2103
|
+
readonly "letter-spacing": {
|
|
2104
|
+
readonly type: "dimension";
|
|
2105
|
+
readonly value: "{primitives.typography.letter-spacing.0}";
|
|
2106
|
+
};
|
|
2107
|
+
};
|
|
1968
2108
|
};
|
|
1969
2109
|
readonly body: {
|
|
1970
2110
|
readonly lg: {
|
|
@@ -2249,6 +2389,10 @@ export declare const tokens: {
|
|
|
2249
2389
|
readonly value: "{primitives.space.16}";
|
|
2250
2390
|
readonly description: "Narrow gutter mode.";
|
|
2251
2391
|
};
|
|
2392
|
+
readonly condensed: {
|
|
2393
|
+
readonly type: "dimension";
|
|
2394
|
+
readonly value: "{primitives.space.1}";
|
|
2395
|
+
};
|
|
2252
2396
|
};
|
|
2253
2397
|
readonly container: {
|
|
2254
2398
|
readonly hang: {
|
|
@@ -2635,6 +2779,14 @@ export declare const tokens: {
|
|
|
2635
2779
|
readonly type: "color";
|
|
2636
2780
|
readonly value: "{semantic-color.focus.focus}";
|
|
2637
2781
|
};
|
|
2782
|
+
readonly default: {
|
|
2783
|
+
readonly type: "color";
|
|
2784
|
+
readonly value: "{semantic-color.icon.icon-primary}";
|
|
2785
|
+
};
|
|
2786
|
+
readonly error: {
|
|
2787
|
+
readonly type: "color";
|
|
2788
|
+
readonly value: "{semantic-color.border.border-error}";
|
|
2789
|
+
};
|
|
2638
2790
|
};
|
|
2639
2791
|
readonly icon: {
|
|
2640
2792
|
readonly default: {
|
|
@@ -2656,6 +2808,30 @@ export declare const tokens: {
|
|
|
2656
2808
|
readonly value: "{semantic-color.text.text-disabled}";
|
|
2657
2809
|
};
|
|
2658
2810
|
};
|
|
2811
|
+
readonly "group-label": {
|
|
2812
|
+
readonly text: {
|
|
2813
|
+
readonly type: "color";
|
|
2814
|
+
readonly value: "{semantic-color.text.text-secondary}";
|
|
2815
|
+
};
|
|
2816
|
+
};
|
|
2817
|
+
readonly helper: {
|
|
2818
|
+
readonly text: {
|
|
2819
|
+
readonly type: "color";
|
|
2820
|
+
readonly value: "{semantic-color.text.text-helper}";
|
|
2821
|
+
};
|
|
2822
|
+
};
|
|
2823
|
+
readonly error: {
|
|
2824
|
+
readonly text: {
|
|
2825
|
+
readonly type: "color";
|
|
2826
|
+
readonly value: "{semantic-color.text.text-error}";
|
|
2827
|
+
};
|
|
2828
|
+
};
|
|
2829
|
+
readonly warning: {
|
|
2830
|
+
readonly text: {
|
|
2831
|
+
readonly type: "color";
|
|
2832
|
+
readonly value: "{semantic-color.text.text-primary}";
|
|
2833
|
+
};
|
|
2834
|
+
};
|
|
2659
2835
|
};
|
|
2660
2836
|
readonly radio: {
|
|
2661
2837
|
readonly border: {
|
|
@@ -2663,6 +2839,14 @@ export declare const tokens: {
|
|
|
2663
2839
|
readonly type: "color";
|
|
2664
2840
|
readonly value: "{semantic-color.focus.focus}";
|
|
2665
2841
|
};
|
|
2842
|
+
readonly default: {
|
|
2843
|
+
readonly type: "color";
|
|
2844
|
+
readonly value: "{semantic-color.icon.icon-primary}";
|
|
2845
|
+
};
|
|
2846
|
+
readonly error: {
|
|
2847
|
+
readonly type: "color";
|
|
2848
|
+
readonly value: "{semantic-color.border.border-error}";
|
|
2849
|
+
};
|
|
2666
2850
|
};
|
|
2667
2851
|
readonly icon: {
|
|
2668
2852
|
readonly default: {
|
|
@@ -2684,6 +2868,36 @@ export declare const tokens: {
|
|
|
2684
2868
|
readonly value: "{semantic-color.text.text-disabled}";
|
|
2685
2869
|
};
|
|
2686
2870
|
};
|
|
2871
|
+
readonly "group-label": {
|
|
2872
|
+
readonly text: {
|
|
2873
|
+
readonly type: "color";
|
|
2874
|
+
readonly value: "{semantic-color.text.text-secondary}";
|
|
2875
|
+
};
|
|
2876
|
+
};
|
|
2877
|
+
readonly helper: {
|
|
2878
|
+
readonly text: {
|
|
2879
|
+
readonly type: "color";
|
|
2880
|
+
readonly value: "{semantic-color.text.text-helper}";
|
|
2881
|
+
};
|
|
2882
|
+
};
|
|
2883
|
+
readonly error: {
|
|
2884
|
+
readonly text: {
|
|
2885
|
+
readonly type: "color";
|
|
2886
|
+
readonly value: "{semantic-color.text.text-error}";
|
|
2887
|
+
};
|
|
2888
|
+
};
|
|
2889
|
+
readonly warning: {
|
|
2890
|
+
readonly text: {
|
|
2891
|
+
readonly type: "color";
|
|
2892
|
+
readonly value: "{semantic-color.text.text-primary}";
|
|
2893
|
+
};
|
|
2894
|
+
};
|
|
2895
|
+
readonly dot: {
|
|
2896
|
+
readonly default: {
|
|
2897
|
+
readonly type: "color";
|
|
2898
|
+
readonly value: "{semantic-color.icon.icon-primary}";
|
|
2899
|
+
};
|
|
2900
|
+
};
|
|
2687
2901
|
};
|
|
2688
2902
|
readonly select: {
|
|
2689
2903
|
readonly field: {
|
|
@@ -3793,51 +4007,199 @@ export declare const tokens: {
|
|
|
3793
4007
|
};
|
|
3794
4008
|
};
|
|
3795
4009
|
};
|
|
3796
|
-
|
|
3797
|
-
|
|
3798
|
-
|
|
3799
|
-
readonly component: {
|
|
3800
|
-
readonly button: {
|
|
3801
|
-
readonly height: {
|
|
3802
|
-
readonly sm: {
|
|
4010
|
+
readonly "checkbox-group": {
|
|
4011
|
+
readonly "group-label": {
|
|
4012
|
+
readonly text: {
|
|
3803
4013
|
readonly type: "color";
|
|
3804
|
-
readonly value: "{semantic-
|
|
4014
|
+
readonly value: "{semantic-color.text.text-secondary}";
|
|
3805
4015
|
};
|
|
3806
|
-
|
|
4016
|
+
};
|
|
4017
|
+
readonly helper: {
|
|
4018
|
+
readonly text: {
|
|
3807
4019
|
readonly type: "color";
|
|
3808
|
-
readonly value: "{semantic-
|
|
4020
|
+
readonly value: "{semantic-color.text.text-helper}";
|
|
3809
4021
|
};
|
|
3810
|
-
|
|
4022
|
+
};
|
|
4023
|
+
readonly error: {
|
|
4024
|
+
readonly text: {
|
|
3811
4025
|
readonly type: "color";
|
|
3812
|
-
readonly value: "{semantic-
|
|
4026
|
+
readonly value: "{semantic-color.text.text-error}";
|
|
3813
4027
|
};
|
|
3814
4028
|
};
|
|
3815
|
-
readonly
|
|
3816
|
-
readonly
|
|
4029
|
+
readonly warning: {
|
|
4030
|
+
readonly text: {
|
|
3817
4031
|
readonly type: "color";
|
|
3818
|
-
readonly value: "{semantic-
|
|
4032
|
+
readonly value: "{semantic-color.text.text-primary}";
|
|
3819
4033
|
};
|
|
3820
|
-
|
|
4034
|
+
};
|
|
4035
|
+
};
|
|
4036
|
+
readonly "radio-group": {
|
|
4037
|
+
readonly "group-label": {
|
|
4038
|
+
readonly text: {
|
|
3821
4039
|
readonly type: "color";
|
|
3822
|
-
readonly value: "{semantic-
|
|
4040
|
+
readonly value: "{semantic-color.text.text-secondary}";
|
|
3823
4041
|
};
|
|
3824
|
-
|
|
4042
|
+
};
|
|
4043
|
+
readonly helper: {
|
|
4044
|
+
readonly text: {
|
|
3825
4045
|
readonly type: "color";
|
|
3826
|
-
readonly value: "{semantic-
|
|
4046
|
+
readonly value: "{semantic-color.text.text-helper}";
|
|
3827
4047
|
};
|
|
3828
4048
|
};
|
|
3829
|
-
readonly
|
|
3830
|
-
readonly
|
|
3831
|
-
|
|
4049
|
+
readonly error: {
|
|
4050
|
+
readonly text: {
|
|
4051
|
+
readonly type: "color";
|
|
4052
|
+
readonly value: "{semantic-color.text.text-error}";
|
|
4053
|
+
};
|
|
3832
4054
|
};
|
|
3833
|
-
readonly
|
|
3834
|
-
readonly
|
|
3835
|
-
|
|
4055
|
+
readonly warning: {
|
|
4056
|
+
readonly text: {
|
|
4057
|
+
readonly type: "color";
|
|
4058
|
+
readonly value: "{semantic-color.text.text-primary}";
|
|
4059
|
+
};
|
|
3836
4060
|
};
|
|
3837
4061
|
};
|
|
3838
|
-
readonly
|
|
3839
|
-
readonly
|
|
3840
|
-
readonly
|
|
4062
|
+
readonly "ui-shell-right-panel": {
|
|
4063
|
+
readonly item: {
|
|
4064
|
+
readonly background: {
|
|
4065
|
+
readonly default: {
|
|
4066
|
+
readonly type: "color";
|
|
4067
|
+
readonly value: "{semantic-color.background.transparent}";
|
|
4068
|
+
};
|
|
4069
|
+
readonly hover: {
|
|
4070
|
+
readonly type: "color";
|
|
4071
|
+
readonly value: "{semantic-color.surface.surface-02-hover}";
|
|
4072
|
+
};
|
|
4073
|
+
};
|
|
4074
|
+
readonly text: {
|
|
4075
|
+
readonly default: {
|
|
4076
|
+
readonly type: "color";
|
|
4077
|
+
readonly value: "{semantic-color.text.text-secondary}";
|
|
4078
|
+
};
|
|
4079
|
+
readonly hover: {
|
|
4080
|
+
readonly type: "color";
|
|
4081
|
+
readonly value: "{semantic-color.text.text-primary}";
|
|
4082
|
+
};
|
|
4083
|
+
readonly disabled: {
|
|
4084
|
+
readonly type: "color";
|
|
4085
|
+
readonly value: "{semantic-color.text.text-disabled}";
|
|
4086
|
+
};
|
|
4087
|
+
};
|
|
4088
|
+
readonly border: {
|
|
4089
|
+
readonly focus: {
|
|
4090
|
+
readonly type: "color";
|
|
4091
|
+
readonly value: "{semantic-color.focus.focus}";
|
|
4092
|
+
};
|
|
4093
|
+
};
|
|
4094
|
+
readonly divider: {
|
|
4095
|
+
readonly type: "color";
|
|
4096
|
+
readonly value: "{semantic-color.border.border-subtle}";
|
|
4097
|
+
};
|
|
4098
|
+
};
|
|
4099
|
+
readonly background: {
|
|
4100
|
+
readonly type: "color";
|
|
4101
|
+
readonly value: "{semantic-color.surface.surface-02}";
|
|
4102
|
+
};
|
|
4103
|
+
readonly border: {
|
|
4104
|
+
readonly type: "color";
|
|
4105
|
+
readonly value: "{semantic-color.border.border-subtle}";
|
|
4106
|
+
};
|
|
4107
|
+
};
|
|
4108
|
+
readonly "ui-shell-left-panel": {
|
|
4109
|
+
readonly background: {
|
|
4110
|
+
readonly type: "color";
|
|
4111
|
+
readonly value: "{semantic-color.background.background}";
|
|
4112
|
+
};
|
|
4113
|
+
readonly item: {
|
|
4114
|
+
readonly background: {
|
|
4115
|
+
readonly default: {
|
|
4116
|
+
readonly type: "color";
|
|
4117
|
+
readonly value: "{semantic-color.background.transparent}";
|
|
4118
|
+
};
|
|
4119
|
+
readonly hover: {
|
|
4120
|
+
readonly type: "color";
|
|
4121
|
+
readonly value: "{semantic-color.surface.surface-02-hover}";
|
|
4122
|
+
};
|
|
4123
|
+
readonly selected: {
|
|
4124
|
+
readonly type: "color";
|
|
4125
|
+
readonly value: "{semantic-color.background.background-selected}";
|
|
4126
|
+
};
|
|
4127
|
+
};
|
|
4128
|
+
readonly text: {
|
|
4129
|
+
readonly default: {
|
|
4130
|
+
readonly type: "color";
|
|
4131
|
+
readonly value: "{semantic-color.text.text-secondary}";
|
|
4132
|
+
};
|
|
4133
|
+
readonly hover: {
|
|
4134
|
+
readonly type: "color";
|
|
4135
|
+
readonly value: "{semantic-color.text.text-primary}";
|
|
4136
|
+
};
|
|
4137
|
+
readonly selected: {
|
|
4138
|
+
readonly type: "color";
|
|
4139
|
+
readonly value: "{semantic-color.text.text-primary}";
|
|
4140
|
+
};
|
|
4141
|
+
readonly disabled: {
|
|
4142
|
+
readonly type: "color";
|
|
4143
|
+
readonly value: "{semantic-color.text.text-disabled}";
|
|
4144
|
+
};
|
|
4145
|
+
};
|
|
4146
|
+
readonly indicator: {
|
|
4147
|
+
readonly type: "color";
|
|
4148
|
+
readonly value: "{semantic-color.border.border-selected}";
|
|
4149
|
+
};
|
|
4150
|
+
readonly border: {
|
|
4151
|
+
readonly focus: {
|
|
4152
|
+
readonly type: "color";
|
|
4153
|
+
readonly value: "{semantic-color.focus.focus}";
|
|
4154
|
+
};
|
|
4155
|
+
};
|
|
4156
|
+
};
|
|
4157
|
+
};
|
|
4158
|
+
};
|
|
4159
|
+
};
|
|
4160
|
+
readonly "component-layout": {
|
|
4161
|
+
readonly component: {
|
|
4162
|
+
readonly button: {
|
|
4163
|
+
readonly height: {
|
|
4164
|
+
readonly sm: {
|
|
4165
|
+
readonly type: "color";
|
|
4166
|
+
readonly value: "{semantic-layout.control.height.sm}";
|
|
4167
|
+
};
|
|
4168
|
+
readonly md: {
|
|
4169
|
+
readonly type: "color";
|
|
4170
|
+
readonly value: "{semantic-layout.control.height.md}";
|
|
4171
|
+
};
|
|
4172
|
+
readonly lg: {
|
|
4173
|
+
readonly type: "color";
|
|
4174
|
+
readonly value: "{semantic-layout.control.height.lg}";
|
|
4175
|
+
};
|
|
4176
|
+
};
|
|
4177
|
+
readonly "padding-x": {
|
|
4178
|
+
readonly sm: {
|
|
4179
|
+
readonly type: "color";
|
|
4180
|
+
readonly value: "{semantic-layout.control.padding.sm}";
|
|
4181
|
+
};
|
|
4182
|
+
readonly md: {
|
|
4183
|
+
readonly type: "color";
|
|
4184
|
+
readonly value: "{semantic-layout.control.padding.md}";
|
|
4185
|
+
};
|
|
4186
|
+
readonly lg: {
|
|
4187
|
+
readonly type: "color";
|
|
4188
|
+
readonly value: "{semantic-layout.control.padding.lg}";
|
|
4189
|
+
};
|
|
4190
|
+
};
|
|
4191
|
+
readonly gap: {
|
|
4192
|
+
readonly type: "color";
|
|
4193
|
+
readonly value: "{semantic-layout.control.icon-gap}";
|
|
4194
|
+
};
|
|
4195
|
+
readonly "min-width": {
|
|
4196
|
+
readonly type: "color";
|
|
4197
|
+
readonly value: "{semantic-layout.spacing.96}";
|
|
4198
|
+
};
|
|
4199
|
+
};
|
|
4200
|
+
readonly search: {
|
|
4201
|
+
readonly height: {
|
|
4202
|
+
readonly type: "color";
|
|
3841
4203
|
readonly value: "{semantic-layout.control.height.lg}";
|
|
3842
4204
|
};
|
|
3843
4205
|
readonly "padding-x": {
|
|
@@ -3896,7 +4258,7 @@ export declare const tokens: {
|
|
|
3896
4258
|
readonly type: "color";
|
|
3897
4259
|
readonly value: "{semantic-layout.control.icon-gap}";
|
|
3898
4260
|
};
|
|
3899
|
-
readonly
|
|
4261
|
+
readonly gap: {
|
|
3900
4262
|
readonly type: "color";
|
|
3901
4263
|
readonly value: "{semantic-layout.stack.xs}";
|
|
3902
4264
|
};
|
|
@@ -3910,9 +4272,9 @@ export declare const tokens: {
|
|
|
3910
4272
|
readonly type: "color";
|
|
3911
4273
|
readonly value: "{semantic-layout.icon.sm}";
|
|
3912
4274
|
};
|
|
3913
|
-
readonly
|
|
4275
|
+
readonly gap: {
|
|
3914
4276
|
readonly type: "color";
|
|
3915
|
-
readonly value: "{semantic-layout.
|
|
4277
|
+
readonly value: "{semantic-layout.inline.2xs}";
|
|
3916
4278
|
};
|
|
3917
4279
|
readonly target: {
|
|
3918
4280
|
readonly type: "color";
|
|
@@ -3922,6 +4284,22 @@ export declare const tokens: {
|
|
|
3922
4284
|
readonly type: "color";
|
|
3923
4285
|
readonly value: "{semantic-layout.control.icon-gap}";
|
|
3924
4286
|
};
|
|
4287
|
+
readonly group: {
|
|
4288
|
+
readonly "label-gap": {
|
|
4289
|
+
readonly type: "color";
|
|
4290
|
+
readonly value: "{semantic-layout.stack.xs}";
|
|
4291
|
+
};
|
|
4292
|
+
readonly "item-gap-vertical": {
|
|
4293
|
+
readonly type: "color";
|
|
4294
|
+
readonly value: "{semantic-layout.stack.2xs}";
|
|
4295
|
+
};
|
|
4296
|
+
};
|
|
4297
|
+
readonly option: {
|
|
4298
|
+
readonly "control-label-gap": {
|
|
4299
|
+
readonly type: "color";
|
|
4300
|
+
readonly value: "{semantic-layout.inline.xs}";
|
|
4301
|
+
};
|
|
4302
|
+
};
|
|
3925
4303
|
};
|
|
3926
4304
|
readonly select: {
|
|
3927
4305
|
readonly field: {
|
|
@@ -3972,7 +4350,7 @@ export declare const tokens: {
|
|
|
3972
4350
|
readonly value: "{semantic-layout.stack.xs}";
|
|
3973
4351
|
};
|
|
3974
4352
|
};
|
|
3975
|
-
readonly
|
|
4353
|
+
readonly gap: {
|
|
3976
4354
|
readonly type: "color";
|
|
3977
4355
|
readonly value: "{semantic-layout.stack.xs}";
|
|
3978
4356
|
};
|
|
@@ -4008,9 +4386,9 @@ export declare const tokens: {
|
|
|
4008
4386
|
readonly type: "color";
|
|
4009
4387
|
readonly value: "{semantic-layout.inset.2xs}";
|
|
4010
4388
|
};
|
|
4011
|
-
readonly
|
|
4389
|
+
readonly gap: {
|
|
4012
4390
|
readonly type: "color";
|
|
4013
|
-
readonly value: "{semantic-layout.
|
|
4391
|
+
readonly value: "{semantic-layout.inline.2xs}";
|
|
4014
4392
|
};
|
|
4015
4393
|
readonly target: {
|
|
4016
4394
|
readonly type: "color";
|
|
@@ -4212,9 +4590,9 @@ export declare const tokens: {
|
|
|
4212
4590
|
readonly type: "color";
|
|
4213
4591
|
readonly value: "{semantic-layout.target.min}";
|
|
4214
4592
|
};
|
|
4215
|
-
readonly
|
|
4593
|
+
readonly gap: {
|
|
4216
4594
|
readonly type: "color";
|
|
4217
|
-
readonly value: "{semantic-layout.
|
|
4595
|
+
readonly value: "{semantic-layout.inline.2xs}";
|
|
4218
4596
|
};
|
|
4219
4597
|
readonly size: {
|
|
4220
4598
|
readonly type: "color";
|
|
@@ -4224,6 +4602,22 @@ export declare const tokens: {
|
|
|
4224
4602
|
readonly type: "color";
|
|
4225
4603
|
readonly value: "{semantic-layout.control.icon-gap}";
|
|
4226
4604
|
};
|
|
4605
|
+
readonly group: {
|
|
4606
|
+
readonly "label-gap": {
|
|
4607
|
+
readonly type: "color";
|
|
4608
|
+
readonly value: "{semantic-layout.stack.xs}";
|
|
4609
|
+
};
|
|
4610
|
+
readonly "item-gap-vertical": {
|
|
4611
|
+
readonly type: "color";
|
|
4612
|
+
readonly value: "{semantic-layout.stack.xs}";
|
|
4613
|
+
};
|
|
4614
|
+
};
|
|
4615
|
+
readonly option: {
|
|
4616
|
+
readonly "control-label-gap": {
|
|
4617
|
+
readonly type: "color";
|
|
4618
|
+
readonly value: "{semantic-layout.inline.xs}";
|
|
4619
|
+
};
|
|
4620
|
+
};
|
|
4227
4621
|
};
|
|
4228
4622
|
readonly pagination: {
|
|
4229
4623
|
readonly "divider-width": {
|
|
@@ -4319,6 +4713,10 @@ export declare const tokens: {
|
|
|
4319
4713
|
readonly type: "color";
|
|
4320
4714
|
readonly value: "{semantic-layout.stack.3xl}";
|
|
4321
4715
|
};
|
|
4716
|
+
readonly "title-description-gap": {
|
|
4717
|
+
readonly type: "color";
|
|
4718
|
+
readonly value: "{semantic-layout.stack.xs}";
|
|
4719
|
+
};
|
|
4322
4720
|
};
|
|
4323
4721
|
readonly body: {
|
|
4324
4722
|
readonly "item-gap": {
|
|
@@ -4571,6 +4969,74 @@ export declare const tokens: {
|
|
|
4571
4969
|
};
|
|
4572
4970
|
};
|
|
4573
4971
|
};
|
|
4972
|
+
readonly "checkbox-group": {
|
|
4973
|
+
readonly "label-gap": {
|
|
4974
|
+
readonly type: "color";
|
|
4975
|
+
readonly value: "{semantic-layout.stack.sm}";
|
|
4976
|
+
};
|
|
4977
|
+
readonly "item-gap-vertical": {
|
|
4978
|
+
readonly type: "color";
|
|
4979
|
+
readonly value: "{semantic-layout.stack.xs}";
|
|
4980
|
+
};
|
|
4981
|
+
readonly "control-label-gap": {
|
|
4982
|
+
readonly type: "color";
|
|
4983
|
+
readonly value: "{semantic-layout.inline.xs}";
|
|
4984
|
+
};
|
|
4985
|
+
readonly "helper-gap": {
|
|
4986
|
+
readonly type: "color";
|
|
4987
|
+
readonly value: "{semantic-layout.stack.xs}";
|
|
4988
|
+
};
|
|
4989
|
+
};
|
|
4990
|
+
readonly "radio-group": {
|
|
4991
|
+
readonly "label-gap": {
|
|
4992
|
+
readonly type: "color";
|
|
4993
|
+
readonly value: "{semantic-layout.stack.sm}";
|
|
4994
|
+
};
|
|
4995
|
+
readonly "item-gap-vertical": {
|
|
4996
|
+
readonly type: "color";
|
|
4997
|
+
readonly value: "{semantic-layout.stack.xs}";
|
|
4998
|
+
};
|
|
4999
|
+
readonly "control-label-gap": {
|
|
5000
|
+
readonly type: "color";
|
|
5001
|
+
readonly value: "{semantic-layout.inline.xs}";
|
|
5002
|
+
};
|
|
5003
|
+
readonly "helper-gap": {
|
|
5004
|
+
readonly type: "color";
|
|
5005
|
+
readonly value: "{semantic-layout.stack.xs}";
|
|
5006
|
+
};
|
|
5007
|
+
};
|
|
5008
|
+
readonly "ui-shell-right-panel": {
|
|
5009
|
+
readonly item: {
|
|
5010
|
+
readonly "padding-x": {
|
|
5011
|
+
readonly type: "color";
|
|
5012
|
+
readonly value: "{semantic-layout.control.padding.md}";
|
|
5013
|
+
};
|
|
5014
|
+
readonly "padding-y": {
|
|
5015
|
+
readonly type: "color";
|
|
5016
|
+
readonly value: "{semantic-layout.control.padding.xs}";
|
|
5017
|
+
};
|
|
5018
|
+
};
|
|
5019
|
+
readonly "padding-y": {
|
|
5020
|
+
readonly type: "color";
|
|
5021
|
+
readonly value: "{semantic-layout.inset.md}";
|
|
5022
|
+
};
|
|
5023
|
+
};
|
|
5024
|
+
readonly "ui-shell-left-panel": {
|
|
5025
|
+
readonly "padding-y": {
|
|
5026
|
+
readonly type: "color";
|
|
5027
|
+
readonly value: "{semantic-layout.inset.md}";
|
|
5028
|
+
};
|
|
5029
|
+
readonly item: {
|
|
5030
|
+
readonly height: {
|
|
5031
|
+
readonly type: "color";
|
|
5032
|
+
readonly value: "{semantic-layout.control.height.sm}";
|
|
5033
|
+
};
|
|
5034
|
+
readonly "padding-x": {
|
|
5035
|
+
readonly type: "color";
|
|
5036
|
+
readonly value: "{semantic-layout.control.padding.md}";
|
|
5037
|
+
};
|
|
5038
|
+
};
|
|
5039
|
+
};
|
|
4574
5040
|
};
|
|
4575
5041
|
};
|
|
4576
5042
|
readonly "component-type": {
|
|
@@ -4760,6 +5226,50 @@ export declare const tokens: {
|
|
|
4760
5226
|
readonly value: "{semantic-type.label.label-02.letter-spacing}";
|
|
4761
5227
|
};
|
|
4762
5228
|
};
|
|
5229
|
+
readonly "group-label": {
|
|
5230
|
+
readonly family: {
|
|
5231
|
+
readonly type: "color";
|
|
5232
|
+
readonly value: "{semantic-type.label.label-02.family}";
|
|
5233
|
+
};
|
|
5234
|
+
readonly weight: {
|
|
5235
|
+
readonly type: "color";
|
|
5236
|
+
readonly value: "{semantic-type.label.label-02.weight}";
|
|
5237
|
+
};
|
|
5238
|
+
readonly size: {
|
|
5239
|
+
readonly type: "color";
|
|
5240
|
+
readonly value: "{semantic-type.label.label-02.size}";
|
|
5241
|
+
};
|
|
5242
|
+
readonly "line-height": {
|
|
5243
|
+
readonly type: "color";
|
|
5244
|
+
readonly value: "{semantic-type.label.label-02.line-height}";
|
|
5245
|
+
};
|
|
5246
|
+
readonly "letter-spacing": {
|
|
5247
|
+
readonly type: "color";
|
|
5248
|
+
readonly value: "{semantic-type.label.label-02.letter-spacing}";
|
|
5249
|
+
};
|
|
5250
|
+
};
|
|
5251
|
+
readonly helper: {
|
|
5252
|
+
readonly family: {
|
|
5253
|
+
readonly type: "color";
|
|
5254
|
+
readonly value: "{semantic-type.helper.helper-01.family}";
|
|
5255
|
+
};
|
|
5256
|
+
readonly weight: {
|
|
5257
|
+
readonly type: "color";
|
|
5258
|
+
readonly value: "{semantic-type.helper.helper-01.weight}";
|
|
5259
|
+
};
|
|
5260
|
+
readonly size: {
|
|
5261
|
+
readonly type: "color";
|
|
5262
|
+
readonly value: "{semantic-type.helper.helper-01.size}";
|
|
5263
|
+
};
|
|
5264
|
+
readonly "line-height": {
|
|
5265
|
+
readonly type: "color";
|
|
5266
|
+
readonly value: "{semantic-type.helper.helper-01.line-height}";
|
|
5267
|
+
};
|
|
5268
|
+
readonly "letter-spacing": {
|
|
5269
|
+
readonly type: "color";
|
|
5270
|
+
readonly value: "{semantic-type.helper.helper-01.letter-spacing}";
|
|
5271
|
+
};
|
|
5272
|
+
};
|
|
4763
5273
|
};
|
|
4764
5274
|
readonly select: {
|
|
4765
5275
|
readonly value: {
|
|
@@ -5129,53 +5639,97 @@ export declare const tokens: {
|
|
|
5129
5639
|
};
|
|
5130
5640
|
readonly "letter-spacing": {
|
|
5131
5641
|
readonly type: "color";
|
|
5132
|
-
readonly value: "{semantic-type.body.lg.letter-spacing}";
|
|
5642
|
+
readonly value: "{semantic-type.body.lg.letter-spacing}";
|
|
5643
|
+
};
|
|
5644
|
+
};
|
|
5645
|
+
readonly footer: {
|
|
5646
|
+
readonly family: {
|
|
5647
|
+
readonly type: "color";
|
|
5648
|
+
readonly value: "{semantic-type.label.label-01.family}";
|
|
5649
|
+
};
|
|
5650
|
+
readonly weight: {
|
|
5651
|
+
readonly type: "color";
|
|
5652
|
+
readonly value: "{semantic-type.label.label-01.weight}";
|
|
5653
|
+
};
|
|
5654
|
+
readonly size: {
|
|
5655
|
+
readonly type: "color";
|
|
5656
|
+
readonly value: "{semantic-type.label.label-01.size}";
|
|
5657
|
+
};
|
|
5658
|
+
readonly "line-height": {
|
|
5659
|
+
readonly type: "color";
|
|
5660
|
+
readonly value: "{semantic-type.label.label-01.line-height}";
|
|
5661
|
+
};
|
|
5662
|
+
readonly "letter-spacing": {
|
|
5663
|
+
readonly type: "color";
|
|
5664
|
+
readonly value: "{semantic-type.label.label-01.letter-spacing}";
|
|
5665
|
+
};
|
|
5666
|
+
};
|
|
5667
|
+
};
|
|
5668
|
+
readonly radio: {
|
|
5669
|
+
readonly label: {
|
|
5670
|
+
readonly family: {
|
|
5671
|
+
readonly type: "color";
|
|
5672
|
+
readonly value: "{semantic-type.label.label-02.family}";
|
|
5673
|
+
};
|
|
5674
|
+
readonly weight: {
|
|
5675
|
+
readonly type: "color";
|
|
5676
|
+
readonly value: "{semantic-type.label.label-02.weight}";
|
|
5677
|
+
};
|
|
5678
|
+
readonly size: {
|
|
5679
|
+
readonly type: "color";
|
|
5680
|
+
readonly value: "{semantic-type.label.label-02.size}";
|
|
5681
|
+
};
|
|
5682
|
+
readonly "line-height": {
|
|
5683
|
+
readonly type: "color";
|
|
5684
|
+
readonly value: "{semantic-type.label.label-02.line-height}";
|
|
5685
|
+
};
|
|
5686
|
+
readonly "letter-spacing": {
|
|
5687
|
+
readonly type: "color";
|
|
5688
|
+
readonly value: "{semantic-type.label.label-02.letter-spacing}";
|
|
5133
5689
|
};
|
|
5134
5690
|
};
|
|
5135
|
-
readonly
|
|
5691
|
+
readonly "group-label": {
|
|
5136
5692
|
readonly family: {
|
|
5137
5693
|
readonly type: "color";
|
|
5138
|
-
readonly value: "{semantic-type.label.label-
|
|
5694
|
+
readonly value: "{semantic-type.label.label-02.family}";
|
|
5139
5695
|
};
|
|
5140
5696
|
readonly weight: {
|
|
5141
5697
|
readonly type: "color";
|
|
5142
|
-
readonly value: "{semantic-type.label.label-
|
|
5698
|
+
readonly value: "{semantic-type.label.label-02.weight}";
|
|
5143
5699
|
};
|
|
5144
5700
|
readonly size: {
|
|
5145
5701
|
readonly type: "color";
|
|
5146
|
-
readonly value: "{semantic-type.label.label-
|
|
5702
|
+
readonly value: "{semantic-type.label.label-02.size}";
|
|
5147
5703
|
};
|
|
5148
5704
|
readonly "line-height": {
|
|
5149
5705
|
readonly type: "color";
|
|
5150
|
-
readonly value: "{semantic-type.label.label-
|
|
5706
|
+
readonly value: "{semantic-type.label.label-02.line-height}";
|
|
5151
5707
|
};
|
|
5152
5708
|
readonly "letter-spacing": {
|
|
5153
5709
|
readonly type: "color";
|
|
5154
|
-
readonly value: "{semantic-type.label.label-
|
|
5710
|
+
readonly value: "{semantic-type.label.label-02.letter-spacing}";
|
|
5155
5711
|
};
|
|
5156
5712
|
};
|
|
5157
|
-
|
|
5158
|
-
readonly radio: {
|
|
5159
|
-
readonly label: {
|
|
5713
|
+
readonly helper: {
|
|
5160
5714
|
readonly family: {
|
|
5161
5715
|
readonly type: "color";
|
|
5162
|
-
readonly value: "{semantic-type.
|
|
5716
|
+
readonly value: "{semantic-type.helper.helper-01.family}";
|
|
5163
5717
|
};
|
|
5164
5718
|
readonly weight: {
|
|
5165
5719
|
readonly type: "color";
|
|
5166
|
-
readonly value: "{semantic-type.
|
|
5720
|
+
readonly value: "{semantic-type.helper.helper-01.weight}";
|
|
5167
5721
|
};
|
|
5168
5722
|
readonly size: {
|
|
5169
5723
|
readonly type: "color";
|
|
5170
|
-
readonly value: "{semantic-type.
|
|
5724
|
+
readonly value: "{semantic-type.helper.helper-01.size}";
|
|
5171
5725
|
};
|
|
5172
5726
|
readonly "line-height": {
|
|
5173
5727
|
readonly type: "color";
|
|
5174
|
-
readonly value: "{semantic-type.
|
|
5728
|
+
readonly value: "{semantic-type.helper.helper-01.line-height}";
|
|
5175
5729
|
};
|
|
5176
5730
|
readonly "letter-spacing": {
|
|
5177
5731
|
readonly type: "color";
|
|
5178
|
-
readonly value: "{semantic-type.
|
|
5732
|
+
readonly value: "{semantic-type.helper.helper-01.letter-spacing}";
|
|
5179
5733
|
};
|
|
5180
5734
|
};
|
|
5181
5735
|
};
|
|
@@ -5354,6 +5908,28 @@ export declare const tokens: {
|
|
|
5354
5908
|
readonly type: "color";
|
|
5355
5909
|
readonly value: "{semantic-type.heading.heading-03.letter-spacing}";
|
|
5356
5910
|
};
|
|
5911
|
+
readonly mobile: {
|
|
5912
|
+
readonly family: {
|
|
5913
|
+
readonly type: "color";
|
|
5914
|
+
readonly value: "{semantic-type.heading.heading-mobile-03.family}";
|
|
5915
|
+
};
|
|
5916
|
+
readonly weight: {
|
|
5917
|
+
readonly type: "color";
|
|
5918
|
+
readonly value: "{semantic-type.heading.heading-mobile-03.weight}";
|
|
5919
|
+
};
|
|
5920
|
+
readonly size: {
|
|
5921
|
+
readonly type: "color";
|
|
5922
|
+
readonly value: "{semantic-type.heading.heading-mobile-03.size}";
|
|
5923
|
+
};
|
|
5924
|
+
readonly "line-height": {
|
|
5925
|
+
readonly type: "color";
|
|
5926
|
+
readonly value: "{semantic-type.heading.heading-mobile-03.line-height}";
|
|
5927
|
+
};
|
|
5928
|
+
readonly "letter-spacing": {
|
|
5929
|
+
readonly type: "color";
|
|
5930
|
+
readonly value: "{semantic-type.heading.heading-mobile-03.letter-spacing}";
|
|
5931
|
+
};
|
|
5932
|
+
};
|
|
5357
5933
|
};
|
|
5358
5934
|
readonly description: {
|
|
5359
5935
|
readonly family: {
|
|
@@ -5871,6 +6447,150 @@ export declare const tokens: {
|
|
|
5871
6447
|
};
|
|
5872
6448
|
};
|
|
5873
6449
|
};
|
|
6450
|
+
readonly "checkbox-group": {
|
|
6451
|
+
readonly "group-label": {
|
|
6452
|
+
readonly family: {
|
|
6453
|
+
readonly type: "color";
|
|
6454
|
+
readonly value: "{semantic-type.label.label-02.family}";
|
|
6455
|
+
};
|
|
6456
|
+
readonly weight: {
|
|
6457
|
+
readonly type: "color";
|
|
6458
|
+
readonly value: "{semantic-type.label.label-02.weight}";
|
|
6459
|
+
};
|
|
6460
|
+
readonly size: {
|
|
6461
|
+
readonly type: "color";
|
|
6462
|
+
readonly value: "{semantic-type.label.label-02.size}";
|
|
6463
|
+
};
|
|
6464
|
+
readonly "line-height": {
|
|
6465
|
+
readonly type: "color";
|
|
6466
|
+
readonly value: "{semantic-type.label.label-02.line-height}";
|
|
6467
|
+
};
|
|
6468
|
+
readonly "letter-spacing": {
|
|
6469
|
+
readonly type: "color";
|
|
6470
|
+
readonly value: "{semantic-type.label.label-02.letter-spacing}";
|
|
6471
|
+
};
|
|
6472
|
+
};
|
|
6473
|
+
readonly helper: {
|
|
6474
|
+
readonly family: {
|
|
6475
|
+
readonly type: "color";
|
|
6476
|
+
readonly value: "{semantic-type.helper.helper-01.family}";
|
|
6477
|
+
};
|
|
6478
|
+
readonly weight: {
|
|
6479
|
+
readonly type: "color";
|
|
6480
|
+
readonly value: "{semantic-type.helper.helper-01.weight}";
|
|
6481
|
+
};
|
|
6482
|
+
readonly size: {
|
|
6483
|
+
readonly type: "color";
|
|
6484
|
+
readonly value: "{semantic-type.helper.helper-01.size}";
|
|
6485
|
+
};
|
|
6486
|
+
readonly "line-height": {
|
|
6487
|
+
readonly type: "color";
|
|
6488
|
+
readonly value: "{semantic-type.helper.helper-01.line-height}";
|
|
6489
|
+
};
|
|
6490
|
+
readonly "letter-spacing": {
|
|
6491
|
+
readonly type: "color";
|
|
6492
|
+
readonly value: "{semantic-type.helper.helper-01.letter-spacing}";
|
|
6493
|
+
};
|
|
6494
|
+
};
|
|
6495
|
+
};
|
|
6496
|
+
readonly "radio-group": {
|
|
6497
|
+
readonly "group-label": {
|
|
6498
|
+
readonly family: {
|
|
6499
|
+
readonly type: "color";
|
|
6500
|
+
readonly value: "{semantic-type.label.label-02.family}";
|
|
6501
|
+
};
|
|
6502
|
+
readonly weight: {
|
|
6503
|
+
readonly type: "color";
|
|
6504
|
+
readonly value: "{semantic-type.label.label-02.weight}";
|
|
6505
|
+
};
|
|
6506
|
+
readonly size: {
|
|
6507
|
+
readonly type: "color";
|
|
6508
|
+
readonly value: "{semantic-type.label.label-02.size}";
|
|
6509
|
+
};
|
|
6510
|
+
readonly "line-height": {
|
|
6511
|
+
readonly type: "color";
|
|
6512
|
+
readonly value: "{semantic-type.label.label-02.line-height}";
|
|
6513
|
+
};
|
|
6514
|
+
readonly "letter-spacing": {
|
|
6515
|
+
readonly type: "color";
|
|
6516
|
+
readonly value: "{semantic-type.label.label-02.letter-spacing}";
|
|
6517
|
+
};
|
|
6518
|
+
};
|
|
6519
|
+
readonly helper: {
|
|
6520
|
+
readonly family: {
|
|
6521
|
+
readonly type: "color";
|
|
6522
|
+
readonly value: "{semantic-type.helper.helper-01.family}";
|
|
6523
|
+
};
|
|
6524
|
+
readonly weight: {
|
|
6525
|
+
readonly type: "color";
|
|
6526
|
+
readonly value: "{semantic-type.helper.helper-01.weight}";
|
|
6527
|
+
};
|
|
6528
|
+
readonly size: {
|
|
6529
|
+
readonly type: "color";
|
|
6530
|
+
readonly value: "{semantic-type.helper.helper-01.size}";
|
|
6531
|
+
};
|
|
6532
|
+
readonly "line-height": {
|
|
6533
|
+
readonly type: "color";
|
|
6534
|
+
readonly value: "{semantic-type.helper.helper-01.line-height}";
|
|
6535
|
+
};
|
|
6536
|
+
readonly "letter-spacing": {
|
|
6537
|
+
readonly type: "color";
|
|
6538
|
+
readonly value: "{semantic-type.helper.helper-01.letter-spacing}";
|
|
6539
|
+
};
|
|
6540
|
+
};
|
|
6541
|
+
};
|
|
6542
|
+
readonly "ui-shell-right-panel": {
|
|
6543
|
+
readonly item: {
|
|
6544
|
+
readonly label: {
|
|
6545
|
+
readonly family: {
|
|
6546
|
+
readonly type: "color";
|
|
6547
|
+
readonly value: "{semantic-type.label.label-01.family}";
|
|
6548
|
+
};
|
|
6549
|
+
readonly weight: {
|
|
6550
|
+
readonly type: "color";
|
|
6551
|
+
readonly value: "{semantic-type.label.label-01.weight}";
|
|
6552
|
+
};
|
|
6553
|
+
readonly size: {
|
|
6554
|
+
readonly type: "color";
|
|
6555
|
+
readonly value: "{semantic-type.label.label-01.size}";
|
|
6556
|
+
};
|
|
6557
|
+
readonly "line-height": {
|
|
6558
|
+
readonly type: "color";
|
|
6559
|
+
readonly value: "{semantic-type.label.label-01.line-height}";
|
|
6560
|
+
};
|
|
6561
|
+
readonly "letter-spacing": {
|
|
6562
|
+
readonly type: "color";
|
|
6563
|
+
readonly value: "{semantic-type.label.label-01.letter-spacing}";
|
|
6564
|
+
};
|
|
6565
|
+
};
|
|
6566
|
+
};
|
|
6567
|
+
};
|
|
6568
|
+
readonly "ui-shell-left-panel": {
|
|
6569
|
+
readonly item: {
|
|
6570
|
+
readonly label: {
|
|
6571
|
+
readonly family: {
|
|
6572
|
+
readonly type: "color";
|
|
6573
|
+
readonly value: "{semantic-type.body.sm.family}";
|
|
6574
|
+
};
|
|
6575
|
+
readonly weight: {
|
|
6576
|
+
readonly type: "color";
|
|
6577
|
+
readonly value: "{semantic-type.body.sm.weight}";
|
|
6578
|
+
};
|
|
6579
|
+
readonly size: {
|
|
6580
|
+
readonly type: "color";
|
|
6581
|
+
readonly value: "{semantic-type.body.sm.size}";
|
|
6582
|
+
};
|
|
6583
|
+
readonly "line-height": {
|
|
6584
|
+
readonly type: "color";
|
|
6585
|
+
readonly value: "{semantic-type.body.sm.line-height}";
|
|
6586
|
+
};
|
|
6587
|
+
readonly "letter-spacing": {
|
|
6588
|
+
readonly type: "color";
|
|
6589
|
+
readonly value: "{semantic-type.body.sm.letter-spacing}";
|
|
6590
|
+
};
|
|
6591
|
+
};
|
|
6592
|
+
};
|
|
6593
|
+
};
|
|
5874
6594
|
};
|
|
5875
6595
|
};
|
|
5876
6596
|
readonly typography: {
|
|
@@ -7542,7 +8262,7 @@ export declare const tokens: {
|
|
|
7542
8262
|
readonly border: {
|
|
7543
8263
|
readonly default: {
|
|
7544
8264
|
readonly type: "color";
|
|
7545
|
-
readonly value: "{semantic-color.
|
|
8265
|
+
readonly value: "{semantic-color.icon.icon-primary}";
|
|
7546
8266
|
};
|
|
7547
8267
|
readonly hover: {
|
|
7548
8268
|
readonly type: "color";
|
|
@@ -7552,11 +8272,29 @@ export declare const tokens: {
|
|
|
7552
8272
|
readonly type: "color";
|
|
7553
8273
|
readonly value: "{semantic-color.focus.focus}";
|
|
7554
8274
|
};
|
|
8275
|
+
readonly error: {
|
|
8276
|
+
readonly type: "color";
|
|
8277
|
+
readonly value: "{semantic-color.border.border-error}";
|
|
8278
|
+
};
|
|
7555
8279
|
readonly disabled: {
|
|
7556
8280
|
readonly type: "color";
|
|
7557
8281
|
readonly value: "{semantic-color.border.border-disabled}";
|
|
7558
8282
|
};
|
|
7559
8283
|
};
|
|
8284
|
+
readonly icon: {
|
|
8285
|
+
readonly check: {
|
|
8286
|
+
readonly type: "color";
|
|
8287
|
+
readonly value: "{primitives.color.base.white}";
|
|
8288
|
+
};
|
|
8289
|
+
readonly default: {
|
|
8290
|
+
readonly type: "color";
|
|
8291
|
+
readonly value: "{semantic-color.icon.icon-primary}";
|
|
8292
|
+
};
|
|
8293
|
+
readonly disabled: {
|
|
8294
|
+
readonly type: "color";
|
|
8295
|
+
readonly value: "{semantic-color.icon.icon-disabled}";
|
|
8296
|
+
};
|
|
8297
|
+
};
|
|
7560
8298
|
readonly text: {
|
|
7561
8299
|
readonly label: {
|
|
7562
8300
|
readonly type: "color";
|
|
@@ -7567,10 +8305,28 @@ export declare const tokens: {
|
|
|
7567
8305
|
readonly value: "{semantic-color.text.text-disabled}";
|
|
7568
8306
|
};
|
|
7569
8307
|
};
|
|
7570
|
-
readonly
|
|
7571
|
-
readonly
|
|
8308
|
+
readonly "group-label": {
|
|
8309
|
+
readonly text: {
|
|
7572
8310
|
readonly type: "color";
|
|
7573
|
-
readonly value: "{
|
|
8311
|
+
readonly value: "{semantic-color.text.text-secondary}";
|
|
8312
|
+
};
|
|
8313
|
+
};
|
|
8314
|
+
readonly helper: {
|
|
8315
|
+
readonly text: {
|
|
8316
|
+
readonly type: "color";
|
|
8317
|
+
readonly value: "{semantic-color.text.text-helper}";
|
|
8318
|
+
};
|
|
8319
|
+
};
|
|
8320
|
+
readonly error: {
|
|
8321
|
+
readonly text: {
|
|
8322
|
+
readonly type: "color";
|
|
8323
|
+
readonly value: "{semantic-color.text.text-error}";
|
|
8324
|
+
};
|
|
8325
|
+
};
|
|
8326
|
+
readonly warning: {
|
|
8327
|
+
readonly text: {
|
|
8328
|
+
readonly type: "color";
|
|
8329
|
+
readonly value: "{semantic-color.text.text-primary}";
|
|
7574
8330
|
};
|
|
7575
8331
|
};
|
|
7576
8332
|
readonly label: {
|
|
@@ -7610,6 +8366,48 @@ export declare const tokens: {
|
|
|
7610
8366
|
};
|
|
7611
8367
|
};
|
|
7612
8368
|
};
|
|
8369
|
+
readonly "checkbox-group": {
|
|
8370
|
+
readonly "label-gap": {
|
|
8371
|
+
readonly type: "dimension";
|
|
8372
|
+
readonly value: "{semantic-layout.stack.sm}";
|
|
8373
|
+
};
|
|
8374
|
+
readonly "item-gap-vertical": {
|
|
8375
|
+
readonly type: "dimension";
|
|
8376
|
+
readonly value: "{semantic-layout.stack.xs}";
|
|
8377
|
+
};
|
|
8378
|
+
readonly "control-label-gap": {
|
|
8379
|
+
readonly type: "dimension";
|
|
8380
|
+
readonly value: "{semantic-layout.inline.xs}";
|
|
8381
|
+
};
|
|
8382
|
+
readonly "helper-gap": {
|
|
8383
|
+
readonly type: "dimension";
|
|
8384
|
+
readonly value: "{semantic-layout.stack.xs}";
|
|
8385
|
+
};
|
|
8386
|
+
readonly "group-label": {
|
|
8387
|
+
readonly text: {
|
|
8388
|
+
readonly type: "color";
|
|
8389
|
+
readonly value: "{semantic-color.text.text-secondary}";
|
|
8390
|
+
};
|
|
8391
|
+
};
|
|
8392
|
+
readonly helper: {
|
|
8393
|
+
readonly text: {
|
|
8394
|
+
readonly type: "color";
|
|
8395
|
+
readonly value: "{semantic-color.text.text-helper}";
|
|
8396
|
+
};
|
|
8397
|
+
};
|
|
8398
|
+
readonly error: {
|
|
8399
|
+
readonly text: {
|
|
8400
|
+
readonly type: "color";
|
|
8401
|
+
readonly value: "{semantic-color.text.text-error}";
|
|
8402
|
+
};
|
|
8403
|
+
};
|
|
8404
|
+
readonly warning: {
|
|
8405
|
+
readonly text: {
|
|
8406
|
+
readonly type: "color";
|
|
8407
|
+
readonly value: "{semantic-color.text.text-primary}";
|
|
8408
|
+
};
|
|
8409
|
+
};
|
|
8410
|
+
};
|
|
7613
8411
|
readonly "contained-list": {
|
|
7614
8412
|
readonly layout: {
|
|
7615
8413
|
readonly width: {
|
|
@@ -9555,19 +10353,19 @@ export declare const tokens: {
|
|
|
9555
10353
|
readonly background: {
|
|
9556
10354
|
readonly neutral: {
|
|
9557
10355
|
readonly type: "color";
|
|
9558
|
-
readonly value: "
|
|
10356
|
+
readonly value: "#E0E0E0";
|
|
9559
10357
|
};
|
|
9560
10358
|
readonly blue: {
|
|
9561
10359
|
readonly type: "color";
|
|
9562
|
-
readonly value: "#
|
|
10360
|
+
readonly value: "#D0E2FF";
|
|
9563
10361
|
};
|
|
9564
10362
|
readonly green: {
|
|
9565
10363
|
readonly type: "color";
|
|
9566
|
-
readonly value: "#
|
|
10364
|
+
readonly value: "#A7F0BA";
|
|
9567
10365
|
};
|
|
9568
10366
|
readonly purple: {
|
|
9569
10367
|
readonly type: "color";
|
|
9570
|
-
readonly value: "#
|
|
10368
|
+
readonly value: "#E8DAFF";
|
|
9571
10369
|
};
|
|
9572
10370
|
};
|
|
9573
10371
|
readonly text: {
|
|
@@ -9581,7 +10379,7 @@ export declare const tokens: {
|
|
|
9581
10379
|
};
|
|
9582
10380
|
readonly green: {
|
|
9583
10381
|
readonly type: "color";
|
|
9584
|
-
readonly value: "#
|
|
10382
|
+
readonly value: "#0E6027";
|
|
9585
10383
|
};
|
|
9586
10384
|
readonly purple: {
|
|
9587
10385
|
readonly type: "color";
|