@nswds/tokens 3.1.0 → 3.2.0
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/css/typography/global.css +32 -0
- package/dist/index.cjs +249 -65
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +154 -0
- package/dist/index.d.ts +154 -0
- package/dist/index.js +249 -65
- package/dist/index.js.map +1 -1
- package/dist/js/typography/global.js +42 -0
- package/dist/json/typography/global.json +42 -0
- package/dist/less/typography/global.less +30 -0
- package/dist/scss/typography/global.scss +30 -0
- package/dist/tailwind/typography/global.css +32 -0
- package/dist/tokens/global/typography/canonical.json +240 -0
- package/dist/tokens/typography.base.json +240 -0
- package/dist/ts/typography/global.ts +42 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -106,6 +106,10 @@ declare namespace breakpointsCssGlobal {
|
|
|
106
106
|
export { };
|
|
107
107
|
}
|
|
108
108
|
|
|
109
|
+
declare namespace typographyCssGlobal {
|
|
110
|
+
export { };
|
|
111
|
+
}
|
|
112
|
+
|
|
109
113
|
declare const nswGrey$7: {
|
|
110
114
|
50: string;
|
|
111
115
|
100: string;
|
|
@@ -3777,6 +3781,52 @@ declare namespace breakpointsJsGlobal {
|
|
|
3777
3781
|
export { breakpoint$1 as breakpoint };
|
|
3778
3782
|
}
|
|
3779
3783
|
|
|
3784
|
+
declare namespace fontFamily$1 {
|
|
3785
|
+
let sans: string;
|
|
3786
|
+
let display: string;
|
|
3787
|
+
let system: string;
|
|
3788
|
+
let mono: string;
|
|
3789
|
+
}
|
|
3790
|
+
declare const fontSize$1: {
|
|
3791
|
+
12: string;
|
|
3792
|
+
14: string;
|
|
3793
|
+
16: string;
|
|
3794
|
+
18: string;
|
|
3795
|
+
20: string;
|
|
3796
|
+
22: string;
|
|
3797
|
+
24: string;
|
|
3798
|
+
30: string;
|
|
3799
|
+
36: string;
|
|
3800
|
+
48: string;
|
|
3801
|
+
56: string;
|
|
3802
|
+
64: string;
|
|
3803
|
+
};
|
|
3804
|
+
declare namespace fontWeight$1 {
|
|
3805
|
+
let light: number;
|
|
3806
|
+
let regular: number;
|
|
3807
|
+
let medium: number;
|
|
3808
|
+
let semibold: number;
|
|
3809
|
+
let bold: number;
|
|
3810
|
+
}
|
|
3811
|
+
declare namespace lineHeight$1 {
|
|
3812
|
+
let none: number;
|
|
3813
|
+
let tight: number;
|
|
3814
|
+
let snug: number;
|
|
3815
|
+
let base: number;
|
|
3816
|
+
let relaxed: number;
|
|
3817
|
+
let loose: number;
|
|
3818
|
+
}
|
|
3819
|
+
declare namespace letterSpacing$1 {
|
|
3820
|
+
let tight_1: string;
|
|
3821
|
+
export { tight_1 as tight };
|
|
3822
|
+
export let normal: string;
|
|
3823
|
+
export let wide: string;
|
|
3824
|
+
}
|
|
3825
|
+
|
|
3826
|
+
declare namespace typographyJsGlobal {
|
|
3827
|
+
export { fontFamily$1 as fontFamily, fontSize$1 as fontSize, fontWeight$1 as fontWeight, letterSpacing$1 as letterSpacing, lineHeight$1 as lineHeight };
|
|
3828
|
+
}
|
|
3829
|
+
|
|
3780
3830
|
declare namespace globalLessHex {
|
|
3781
3831
|
export { };
|
|
3782
3832
|
}
|
|
@@ -3885,6 +3935,10 @@ declare namespace breakpointsLessGlobal {
|
|
|
3885
3935
|
export { };
|
|
3886
3936
|
}
|
|
3887
3937
|
|
|
3938
|
+
declare namespace typographyLessGlobal {
|
|
3939
|
+
export { };
|
|
3940
|
+
}
|
|
3941
|
+
|
|
3888
3942
|
declare namespace globalScssHex {
|
|
3889
3943
|
export { };
|
|
3890
3944
|
}
|
|
@@ -3993,6 +4047,10 @@ declare namespace breakpointsScssGlobal {
|
|
|
3993
4047
|
export { };
|
|
3994
4048
|
}
|
|
3995
4049
|
|
|
4050
|
+
declare namespace typographyScssGlobal {
|
|
4051
|
+
export { };
|
|
4052
|
+
}
|
|
4053
|
+
|
|
3996
4054
|
declare namespace globalTailwindHex {
|
|
3997
4055
|
export { };
|
|
3998
4056
|
}
|
|
@@ -4101,6 +4159,10 @@ declare namespace breakpointsTailwindGlobal {
|
|
|
4101
4159
|
export { };
|
|
4102
4160
|
}
|
|
4103
4161
|
|
|
4162
|
+
declare namespace typographyTailwindGlobal {
|
|
4163
|
+
export { };
|
|
4164
|
+
}
|
|
4165
|
+
|
|
4104
4166
|
declare const nswGrey$3: {
|
|
4105
4167
|
'50': string;
|
|
4106
4168
|
'100': string;
|
|
@@ -7810,6 +7872,56 @@ declare namespace breakpointsTsGlobal {
|
|
|
7810
7872
|
export { breakpointsTsGlobal_breakpoint as breakpoint };
|
|
7811
7873
|
}
|
|
7812
7874
|
|
|
7875
|
+
declare const fontFamily: {
|
|
7876
|
+
sans: string;
|
|
7877
|
+
display: string;
|
|
7878
|
+
system: string;
|
|
7879
|
+
mono: string;
|
|
7880
|
+
};
|
|
7881
|
+
declare const fontSize: {
|
|
7882
|
+
'12': string;
|
|
7883
|
+
'14': string;
|
|
7884
|
+
'16': string;
|
|
7885
|
+
'18': string;
|
|
7886
|
+
'20': string;
|
|
7887
|
+
'22': string;
|
|
7888
|
+
'24': string;
|
|
7889
|
+
'30': string;
|
|
7890
|
+
'36': string;
|
|
7891
|
+
'48': string;
|
|
7892
|
+
'56': string;
|
|
7893
|
+
'64': string;
|
|
7894
|
+
};
|
|
7895
|
+
declare const fontWeight: {
|
|
7896
|
+
light: number;
|
|
7897
|
+
regular: number;
|
|
7898
|
+
medium: number;
|
|
7899
|
+
semibold: number;
|
|
7900
|
+
bold: number;
|
|
7901
|
+
};
|
|
7902
|
+
declare const lineHeight: {
|
|
7903
|
+
none: number;
|
|
7904
|
+
tight: number;
|
|
7905
|
+
snug: number;
|
|
7906
|
+
base: number;
|
|
7907
|
+
relaxed: number;
|
|
7908
|
+
loose: number;
|
|
7909
|
+
};
|
|
7910
|
+
declare const letterSpacing: {
|
|
7911
|
+
tight: string;
|
|
7912
|
+
normal: string;
|
|
7913
|
+
wide: string;
|
|
7914
|
+
};
|
|
7915
|
+
|
|
7916
|
+
declare const typographyTsGlobal_fontFamily: typeof fontFamily;
|
|
7917
|
+
declare const typographyTsGlobal_fontSize: typeof fontSize;
|
|
7918
|
+
declare const typographyTsGlobal_fontWeight: typeof fontWeight;
|
|
7919
|
+
declare const typographyTsGlobal_letterSpacing: typeof letterSpacing;
|
|
7920
|
+
declare const typographyTsGlobal_lineHeight: typeof lineHeight;
|
|
7921
|
+
declare namespace typographyTsGlobal {
|
|
7922
|
+
export { typographyTsGlobal_fontFamily as fontFamily, typographyTsGlobal_fontSize as fontSize, typographyTsGlobal_fontWeight as fontWeight, typographyTsGlobal_letterSpacing as letterSpacing, typographyTsGlobal_lineHeight as lineHeight };
|
|
7923
|
+
}
|
|
7924
|
+
|
|
7813
7925
|
declare const tokens: {
|
|
7814
7926
|
colors: {
|
|
7815
7927
|
global: {
|
|
@@ -7899,6 +8011,9 @@ declare const tokens: {
|
|
|
7899
8011
|
breakpoints: {
|
|
7900
8012
|
global: typeof breakpointsCssGlobal;
|
|
7901
8013
|
};
|
|
8014
|
+
typography: {
|
|
8015
|
+
global: typeof typographyCssGlobal;
|
|
8016
|
+
};
|
|
7902
8017
|
};
|
|
7903
8018
|
js: {
|
|
7904
8019
|
global: {
|
|
@@ -7948,6 +8063,9 @@ declare const tokens: {
|
|
|
7948
8063
|
breakpoints: {
|
|
7949
8064
|
global: typeof breakpointsJsGlobal;
|
|
7950
8065
|
};
|
|
8066
|
+
typography: {
|
|
8067
|
+
global: typeof typographyJsGlobal;
|
|
8068
|
+
};
|
|
7951
8069
|
};
|
|
7952
8070
|
json: {
|
|
7953
8071
|
global: {
|
|
@@ -7997,6 +8115,9 @@ declare const tokens: {
|
|
|
7997
8115
|
breakpoints: {
|
|
7998
8116
|
global: any;
|
|
7999
8117
|
};
|
|
8118
|
+
typography: {
|
|
8119
|
+
global: any;
|
|
8120
|
+
};
|
|
8000
8121
|
};
|
|
8001
8122
|
less: {
|
|
8002
8123
|
global: {
|
|
@@ -8046,6 +8167,9 @@ declare const tokens: {
|
|
|
8046
8167
|
breakpoints: {
|
|
8047
8168
|
global: typeof breakpointsLessGlobal;
|
|
8048
8169
|
};
|
|
8170
|
+
typography: {
|
|
8171
|
+
global: typeof typographyLessGlobal;
|
|
8172
|
+
};
|
|
8049
8173
|
};
|
|
8050
8174
|
scss: {
|
|
8051
8175
|
global: {
|
|
@@ -8095,6 +8219,9 @@ declare const tokens: {
|
|
|
8095
8219
|
breakpoints: {
|
|
8096
8220
|
global: typeof breakpointsScssGlobal;
|
|
8097
8221
|
};
|
|
8222
|
+
typography: {
|
|
8223
|
+
global: typeof typographyScssGlobal;
|
|
8224
|
+
};
|
|
8098
8225
|
};
|
|
8099
8226
|
tailwind: {
|
|
8100
8227
|
global: {
|
|
@@ -8144,6 +8271,9 @@ declare const tokens: {
|
|
|
8144
8271
|
breakpoints: {
|
|
8145
8272
|
global: typeof breakpointsTailwindGlobal;
|
|
8146
8273
|
};
|
|
8274
|
+
typography: {
|
|
8275
|
+
global: typeof typographyTailwindGlobal;
|
|
8276
|
+
};
|
|
8147
8277
|
};
|
|
8148
8278
|
ts: {
|
|
8149
8279
|
global: {
|
|
@@ -8193,6 +8323,9 @@ declare const tokens: {
|
|
|
8193
8323
|
breakpoints: {
|
|
8194
8324
|
global: typeof breakpointsTsGlobal;
|
|
8195
8325
|
};
|
|
8326
|
+
typography: {
|
|
8327
|
+
global: typeof typographyTsGlobal;
|
|
8328
|
+
};
|
|
8196
8329
|
};
|
|
8197
8330
|
};
|
|
8198
8331
|
declare const colorTokens: {
|
|
@@ -8283,6 +8416,9 @@ declare const cssTokens: {
|
|
|
8283
8416
|
breakpoints: {
|
|
8284
8417
|
global: typeof breakpointsCssGlobal;
|
|
8285
8418
|
};
|
|
8419
|
+
typography: {
|
|
8420
|
+
global: typeof typographyCssGlobal;
|
|
8421
|
+
};
|
|
8286
8422
|
};
|
|
8287
8423
|
declare const jsTokens: {
|
|
8288
8424
|
global: {
|
|
@@ -8332,6 +8468,9 @@ declare const jsTokens: {
|
|
|
8332
8468
|
breakpoints: {
|
|
8333
8469
|
global: typeof breakpointsJsGlobal;
|
|
8334
8470
|
};
|
|
8471
|
+
typography: {
|
|
8472
|
+
global: typeof typographyJsGlobal;
|
|
8473
|
+
};
|
|
8335
8474
|
};
|
|
8336
8475
|
declare const jsonTokens: {
|
|
8337
8476
|
global: {
|
|
@@ -8381,6 +8520,9 @@ declare const jsonTokens: {
|
|
|
8381
8520
|
breakpoints: {
|
|
8382
8521
|
global: any;
|
|
8383
8522
|
};
|
|
8523
|
+
typography: {
|
|
8524
|
+
global: any;
|
|
8525
|
+
};
|
|
8384
8526
|
};
|
|
8385
8527
|
declare const lessTokens: {
|
|
8386
8528
|
global: {
|
|
@@ -8430,6 +8572,9 @@ declare const lessTokens: {
|
|
|
8430
8572
|
breakpoints: {
|
|
8431
8573
|
global: typeof breakpointsLessGlobal;
|
|
8432
8574
|
};
|
|
8575
|
+
typography: {
|
|
8576
|
+
global: typeof typographyLessGlobal;
|
|
8577
|
+
};
|
|
8433
8578
|
};
|
|
8434
8579
|
declare const scssTokens: {
|
|
8435
8580
|
global: {
|
|
@@ -8479,6 +8624,9 @@ declare const scssTokens: {
|
|
|
8479
8624
|
breakpoints: {
|
|
8480
8625
|
global: typeof breakpointsScssGlobal;
|
|
8481
8626
|
};
|
|
8627
|
+
typography: {
|
|
8628
|
+
global: typeof typographyScssGlobal;
|
|
8629
|
+
};
|
|
8482
8630
|
};
|
|
8483
8631
|
declare const tailwindTokens: {
|
|
8484
8632
|
global: {
|
|
@@ -8528,6 +8676,9 @@ declare const tailwindTokens: {
|
|
|
8528
8676
|
breakpoints: {
|
|
8529
8677
|
global: typeof breakpointsTailwindGlobal;
|
|
8530
8678
|
};
|
|
8679
|
+
typography: {
|
|
8680
|
+
global: typeof typographyTailwindGlobal;
|
|
8681
|
+
};
|
|
8531
8682
|
};
|
|
8532
8683
|
declare const tsTokens: {
|
|
8533
8684
|
global: {
|
|
@@ -8577,6 +8728,9 @@ declare const tsTokens: {
|
|
|
8577
8728
|
breakpoints: {
|
|
8578
8729
|
global: typeof breakpointsTsGlobal;
|
|
8579
8730
|
};
|
|
8731
|
+
typography: {
|
|
8732
|
+
global: typeof typographyTsGlobal;
|
|
8733
|
+
};
|
|
8580
8734
|
};
|
|
8581
8735
|
declare const brand: {
|
|
8582
8736
|
iconDark: {
|
package/dist/index.d.ts
CHANGED
|
@@ -106,6 +106,10 @@ declare namespace breakpointsCssGlobal {
|
|
|
106
106
|
export { };
|
|
107
107
|
}
|
|
108
108
|
|
|
109
|
+
declare namespace typographyCssGlobal {
|
|
110
|
+
export { };
|
|
111
|
+
}
|
|
112
|
+
|
|
109
113
|
declare const nswGrey$7: {
|
|
110
114
|
50: string;
|
|
111
115
|
100: string;
|
|
@@ -3777,6 +3781,52 @@ declare namespace breakpointsJsGlobal {
|
|
|
3777
3781
|
export { breakpoint$1 as breakpoint };
|
|
3778
3782
|
}
|
|
3779
3783
|
|
|
3784
|
+
declare namespace fontFamily$1 {
|
|
3785
|
+
let sans: string;
|
|
3786
|
+
let display: string;
|
|
3787
|
+
let system: string;
|
|
3788
|
+
let mono: string;
|
|
3789
|
+
}
|
|
3790
|
+
declare const fontSize$1: {
|
|
3791
|
+
12: string;
|
|
3792
|
+
14: string;
|
|
3793
|
+
16: string;
|
|
3794
|
+
18: string;
|
|
3795
|
+
20: string;
|
|
3796
|
+
22: string;
|
|
3797
|
+
24: string;
|
|
3798
|
+
30: string;
|
|
3799
|
+
36: string;
|
|
3800
|
+
48: string;
|
|
3801
|
+
56: string;
|
|
3802
|
+
64: string;
|
|
3803
|
+
};
|
|
3804
|
+
declare namespace fontWeight$1 {
|
|
3805
|
+
let light: number;
|
|
3806
|
+
let regular: number;
|
|
3807
|
+
let medium: number;
|
|
3808
|
+
let semibold: number;
|
|
3809
|
+
let bold: number;
|
|
3810
|
+
}
|
|
3811
|
+
declare namespace lineHeight$1 {
|
|
3812
|
+
let none: number;
|
|
3813
|
+
let tight: number;
|
|
3814
|
+
let snug: number;
|
|
3815
|
+
let base: number;
|
|
3816
|
+
let relaxed: number;
|
|
3817
|
+
let loose: number;
|
|
3818
|
+
}
|
|
3819
|
+
declare namespace letterSpacing$1 {
|
|
3820
|
+
let tight_1: string;
|
|
3821
|
+
export { tight_1 as tight };
|
|
3822
|
+
export let normal: string;
|
|
3823
|
+
export let wide: string;
|
|
3824
|
+
}
|
|
3825
|
+
|
|
3826
|
+
declare namespace typographyJsGlobal {
|
|
3827
|
+
export { fontFamily$1 as fontFamily, fontSize$1 as fontSize, fontWeight$1 as fontWeight, letterSpacing$1 as letterSpacing, lineHeight$1 as lineHeight };
|
|
3828
|
+
}
|
|
3829
|
+
|
|
3780
3830
|
declare namespace globalLessHex {
|
|
3781
3831
|
export { };
|
|
3782
3832
|
}
|
|
@@ -3885,6 +3935,10 @@ declare namespace breakpointsLessGlobal {
|
|
|
3885
3935
|
export { };
|
|
3886
3936
|
}
|
|
3887
3937
|
|
|
3938
|
+
declare namespace typographyLessGlobal {
|
|
3939
|
+
export { };
|
|
3940
|
+
}
|
|
3941
|
+
|
|
3888
3942
|
declare namespace globalScssHex {
|
|
3889
3943
|
export { };
|
|
3890
3944
|
}
|
|
@@ -3993,6 +4047,10 @@ declare namespace breakpointsScssGlobal {
|
|
|
3993
4047
|
export { };
|
|
3994
4048
|
}
|
|
3995
4049
|
|
|
4050
|
+
declare namespace typographyScssGlobal {
|
|
4051
|
+
export { };
|
|
4052
|
+
}
|
|
4053
|
+
|
|
3996
4054
|
declare namespace globalTailwindHex {
|
|
3997
4055
|
export { };
|
|
3998
4056
|
}
|
|
@@ -4101,6 +4159,10 @@ declare namespace breakpointsTailwindGlobal {
|
|
|
4101
4159
|
export { };
|
|
4102
4160
|
}
|
|
4103
4161
|
|
|
4162
|
+
declare namespace typographyTailwindGlobal {
|
|
4163
|
+
export { };
|
|
4164
|
+
}
|
|
4165
|
+
|
|
4104
4166
|
declare const nswGrey$3: {
|
|
4105
4167
|
'50': string;
|
|
4106
4168
|
'100': string;
|
|
@@ -7810,6 +7872,56 @@ declare namespace breakpointsTsGlobal {
|
|
|
7810
7872
|
export { breakpointsTsGlobal_breakpoint as breakpoint };
|
|
7811
7873
|
}
|
|
7812
7874
|
|
|
7875
|
+
declare const fontFamily: {
|
|
7876
|
+
sans: string;
|
|
7877
|
+
display: string;
|
|
7878
|
+
system: string;
|
|
7879
|
+
mono: string;
|
|
7880
|
+
};
|
|
7881
|
+
declare const fontSize: {
|
|
7882
|
+
'12': string;
|
|
7883
|
+
'14': string;
|
|
7884
|
+
'16': string;
|
|
7885
|
+
'18': string;
|
|
7886
|
+
'20': string;
|
|
7887
|
+
'22': string;
|
|
7888
|
+
'24': string;
|
|
7889
|
+
'30': string;
|
|
7890
|
+
'36': string;
|
|
7891
|
+
'48': string;
|
|
7892
|
+
'56': string;
|
|
7893
|
+
'64': string;
|
|
7894
|
+
};
|
|
7895
|
+
declare const fontWeight: {
|
|
7896
|
+
light: number;
|
|
7897
|
+
regular: number;
|
|
7898
|
+
medium: number;
|
|
7899
|
+
semibold: number;
|
|
7900
|
+
bold: number;
|
|
7901
|
+
};
|
|
7902
|
+
declare const lineHeight: {
|
|
7903
|
+
none: number;
|
|
7904
|
+
tight: number;
|
|
7905
|
+
snug: number;
|
|
7906
|
+
base: number;
|
|
7907
|
+
relaxed: number;
|
|
7908
|
+
loose: number;
|
|
7909
|
+
};
|
|
7910
|
+
declare const letterSpacing: {
|
|
7911
|
+
tight: string;
|
|
7912
|
+
normal: string;
|
|
7913
|
+
wide: string;
|
|
7914
|
+
};
|
|
7915
|
+
|
|
7916
|
+
declare const typographyTsGlobal_fontFamily: typeof fontFamily;
|
|
7917
|
+
declare const typographyTsGlobal_fontSize: typeof fontSize;
|
|
7918
|
+
declare const typographyTsGlobal_fontWeight: typeof fontWeight;
|
|
7919
|
+
declare const typographyTsGlobal_letterSpacing: typeof letterSpacing;
|
|
7920
|
+
declare const typographyTsGlobal_lineHeight: typeof lineHeight;
|
|
7921
|
+
declare namespace typographyTsGlobal {
|
|
7922
|
+
export { typographyTsGlobal_fontFamily as fontFamily, typographyTsGlobal_fontSize as fontSize, typographyTsGlobal_fontWeight as fontWeight, typographyTsGlobal_letterSpacing as letterSpacing, typographyTsGlobal_lineHeight as lineHeight };
|
|
7923
|
+
}
|
|
7924
|
+
|
|
7813
7925
|
declare const tokens: {
|
|
7814
7926
|
colors: {
|
|
7815
7927
|
global: {
|
|
@@ -7899,6 +8011,9 @@ declare const tokens: {
|
|
|
7899
8011
|
breakpoints: {
|
|
7900
8012
|
global: typeof breakpointsCssGlobal;
|
|
7901
8013
|
};
|
|
8014
|
+
typography: {
|
|
8015
|
+
global: typeof typographyCssGlobal;
|
|
8016
|
+
};
|
|
7902
8017
|
};
|
|
7903
8018
|
js: {
|
|
7904
8019
|
global: {
|
|
@@ -7948,6 +8063,9 @@ declare const tokens: {
|
|
|
7948
8063
|
breakpoints: {
|
|
7949
8064
|
global: typeof breakpointsJsGlobal;
|
|
7950
8065
|
};
|
|
8066
|
+
typography: {
|
|
8067
|
+
global: typeof typographyJsGlobal;
|
|
8068
|
+
};
|
|
7951
8069
|
};
|
|
7952
8070
|
json: {
|
|
7953
8071
|
global: {
|
|
@@ -7997,6 +8115,9 @@ declare const tokens: {
|
|
|
7997
8115
|
breakpoints: {
|
|
7998
8116
|
global: any;
|
|
7999
8117
|
};
|
|
8118
|
+
typography: {
|
|
8119
|
+
global: any;
|
|
8120
|
+
};
|
|
8000
8121
|
};
|
|
8001
8122
|
less: {
|
|
8002
8123
|
global: {
|
|
@@ -8046,6 +8167,9 @@ declare const tokens: {
|
|
|
8046
8167
|
breakpoints: {
|
|
8047
8168
|
global: typeof breakpointsLessGlobal;
|
|
8048
8169
|
};
|
|
8170
|
+
typography: {
|
|
8171
|
+
global: typeof typographyLessGlobal;
|
|
8172
|
+
};
|
|
8049
8173
|
};
|
|
8050
8174
|
scss: {
|
|
8051
8175
|
global: {
|
|
@@ -8095,6 +8219,9 @@ declare const tokens: {
|
|
|
8095
8219
|
breakpoints: {
|
|
8096
8220
|
global: typeof breakpointsScssGlobal;
|
|
8097
8221
|
};
|
|
8222
|
+
typography: {
|
|
8223
|
+
global: typeof typographyScssGlobal;
|
|
8224
|
+
};
|
|
8098
8225
|
};
|
|
8099
8226
|
tailwind: {
|
|
8100
8227
|
global: {
|
|
@@ -8144,6 +8271,9 @@ declare const tokens: {
|
|
|
8144
8271
|
breakpoints: {
|
|
8145
8272
|
global: typeof breakpointsTailwindGlobal;
|
|
8146
8273
|
};
|
|
8274
|
+
typography: {
|
|
8275
|
+
global: typeof typographyTailwindGlobal;
|
|
8276
|
+
};
|
|
8147
8277
|
};
|
|
8148
8278
|
ts: {
|
|
8149
8279
|
global: {
|
|
@@ -8193,6 +8323,9 @@ declare const tokens: {
|
|
|
8193
8323
|
breakpoints: {
|
|
8194
8324
|
global: typeof breakpointsTsGlobal;
|
|
8195
8325
|
};
|
|
8326
|
+
typography: {
|
|
8327
|
+
global: typeof typographyTsGlobal;
|
|
8328
|
+
};
|
|
8196
8329
|
};
|
|
8197
8330
|
};
|
|
8198
8331
|
declare const colorTokens: {
|
|
@@ -8283,6 +8416,9 @@ declare const cssTokens: {
|
|
|
8283
8416
|
breakpoints: {
|
|
8284
8417
|
global: typeof breakpointsCssGlobal;
|
|
8285
8418
|
};
|
|
8419
|
+
typography: {
|
|
8420
|
+
global: typeof typographyCssGlobal;
|
|
8421
|
+
};
|
|
8286
8422
|
};
|
|
8287
8423
|
declare const jsTokens: {
|
|
8288
8424
|
global: {
|
|
@@ -8332,6 +8468,9 @@ declare const jsTokens: {
|
|
|
8332
8468
|
breakpoints: {
|
|
8333
8469
|
global: typeof breakpointsJsGlobal;
|
|
8334
8470
|
};
|
|
8471
|
+
typography: {
|
|
8472
|
+
global: typeof typographyJsGlobal;
|
|
8473
|
+
};
|
|
8335
8474
|
};
|
|
8336
8475
|
declare const jsonTokens: {
|
|
8337
8476
|
global: {
|
|
@@ -8381,6 +8520,9 @@ declare const jsonTokens: {
|
|
|
8381
8520
|
breakpoints: {
|
|
8382
8521
|
global: any;
|
|
8383
8522
|
};
|
|
8523
|
+
typography: {
|
|
8524
|
+
global: any;
|
|
8525
|
+
};
|
|
8384
8526
|
};
|
|
8385
8527
|
declare const lessTokens: {
|
|
8386
8528
|
global: {
|
|
@@ -8430,6 +8572,9 @@ declare const lessTokens: {
|
|
|
8430
8572
|
breakpoints: {
|
|
8431
8573
|
global: typeof breakpointsLessGlobal;
|
|
8432
8574
|
};
|
|
8575
|
+
typography: {
|
|
8576
|
+
global: typeof typographyLessGlobal;
|
|
8577
|
+
};
|
|
8433
8578
|
};
|
|
8434
8579
|
declare const scssTokens: {
|
|
8435
8580
|
global: {
|
|
@@ -8479,6 +8624,9 @@ declare const scssTokens: {
|
|
|
8479
8624
|
breakpoints: {
|
|
8480
8625
|
global: typeof breakpointsScssGlobal;
|
|
8481
8626
|
};
|
|
8627
|
+
typography: {
|
|
8628
|
+
global: typeof typographyScssGlobal;
|
|
8629
|
+
};
|
|
8482
8630
|
};
|
|
8483
8631
|
declare const tailwindTokens: {
|
|
8484
8632
|
global: {
|
|
@@ -8528,6 +8676,9 @@ declare const tailwindTokens: {
|
|
|
8528
8676
|
breakpoints: {
|
|
8529
8677
|
global: typeof breakpointsTailwindGlobal;
|
|
8530
8678
|
};
|
|
8679
|
+
typography: {
|
|
8680
|
+
global: typeof typographyTailwindGlobal;
|
|
8681
|
+
};
|
|
8531
8682
|
};
|
|
8532
8683
|
declare const tsTokens: {
|
|
8533
8684
|
global: {
|
|
@@ -8577,6 +8728,9 @@ declare const tsTokens: {
|
|
|
8577
8728
|
breakpoints: {
|
|
8578
8729
|
global: typeof breakpointsTsGlobal;
|
|
8579
8730
|
};
|
|
8731
|
+
typography: {
|
|
8732
|
+
global: typeof typographyTsGlobal;
|
|
8733
|
+
};
|
|
8580
8734
|
};
|
|
8581
8735
|
declare const brand: {
|
|
8582
8736
|
iconDark: {
|