@vef-framework/shared 1.0.135 → 2.0.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/README +15 -0
- package/dist/cjs/color/color-ops.cjs +76 -0
- package/dist/cjs/color/index.cjs +24 -0
- package/dist/cjs/color/name.cjs +49 -0
- package/dist/cjs/color/palette.cjs +126 -0
- package/dist/cjs/constants/color-names.cjs +1580 -0
- package/dist/cjs/constants/color-palettes.cjs +372 -0
- package/dist/cjs/constants/index.cjs +14 -0
- package/dist/cjs/index.cjs +339 -0
- package/dist/cjs/types/color.cjs +3 -0
- package/dist/cjs/types/common.cjs +3 -0
- package/dist/cjs/types/deep-keys.cjs +3 -0
- package/dist/cjs/types/index.cjs +7 -0
- package/dist/cjs/utils/chrono.cjs +139 -0
- package/dist/cjs/utils/equal.cjs +175 -0
- package/dist/cjs/utils/error.cjs +60 -0
- package/dist/cjs/utils/event.cjs +62 -0
- package/dist/cjs/utils/format.cjs +31 -0
- package/dist/cjs/utils/function.cjs +49 -0
- package/dist/cjs/utils/id.cjs +38 -0
- package/dist/cjs/utils/index.cjs +86 -0
- package/dist/cjs/utils/key.cjs +34 -0
- package/dist/cjs/utils/lib.cjs +234 -0
- package/dist/cjs/utils/object.cjs +20 -0
- package/dist/cjs/utils/path.cjs +63 -0
- package/dist/cjs/utils/pinyin.cjs +53 -0
- package/dist/cjs/utils/security.cjs +44 -0
- package/dist/cjs/utils/string.cjs +13 -0
- package/dist/cjs/utils/task.cjs +17 -0
- package/dist/cjs/utils/tree.cjs +262 -0
- package/dist/cjs/utils/zod.cjs +14 -0
- package/dist/es/color/color-ops.js +62 -0
- package/dist/es/color/index.js +4 -0
- package/dist/es/color/name.js +45 -0
- package/dist/es/color/palette.js +122 -0
- package/dist/es/constants/color-names.js +1575 -0
- package/dist/es/constants/color-palettes.js +367 -0
- package/dist/es/constants/index.js +3 -0
- package/dist/es/index.js +30 -0
- package/dist/es/types/color.js +1 -0
- package/dist/es/types/common.js +1 -0
- package/dist/es/types/deep-keys.js +1 -0
- package/dist/es/types/index.js +4 -0
- package/dist/es/utils/chrono.js +121 -0
- package/dist/es/utils/equal.js +170 -0
- package/dist/es/utils/error.js +33 -0
- package/dist/es/utils/event.js +57 -0
- package/dist/es/utils/format.js +26 -0
- package/dist/es/utils/function.js +41 -0
- package/dist/es/utils/id.js +34 -0
- package/dist/es/utils/index.js +18 -0
- package/dist/es/utils/key.js +30 -0
- package/dist/es/utils/lib.js +10 -0
- package/dist/es/utils/object.js +16 -0
- package/dist/es/utils/path.js +49 -0
- package/dist/es/utils/pinyin.js +47 -0
- package/dist/es/utils/security.js +39 -0
- package/dist/es/utils/string.js +9 -0
- package/dist/es/utils/task.js +13 -0
- package/dist/es/utils/tree.js +252 -0
- package/dist/es/utils/zod.js +6 -0
- package/dist/types/color/color-ops.d.ts +84 -0
- package/dist/types/color/index.d.ts +3 -0
- package/dist/types/color/name.d.ts +7 -0
- package/dist/types/color/palette.d.ts +8 -0
- package/dist/types/constants/color-names.d.ts +11 -0
- package/dist/types/constants/color-palettes.d.ts +823 -0
- package/dist/types/constants/index.d.ts +2 -0
- package/dist/types/index.d.ts +4 -0
- package/dist/types/types/color.d.ts +73 -0
- package/dist/types/types/common.d.ts +25 -0
- package/dist/types/types/deep-keys.d.ts +9 -0
- package/dist/types/types/index.d.ts +3 -0
- package/dist/types/utils/chrono.d.ts +162 -0
- package/dist/types/utils/equal.d.ts +16 -0
- package/dist/types/utils/error.d.ts +38 -0
- package/dist/types/utils/event.d.ts +68 -0
- package/dist/types/utils/format.d.ts +33 -0
- package/dist/types/utils/function.d.ts +59 -0
- package/{types → dist/types/utils}/id.d.ts +2 -2
- package/dist/types/utils/index.d.ts +17 -0
- package/dist/types/utils/key.d.ts +7 -0
- package/dist/types/utils/lib.d.ts +5 -0
- package/dist/types/utils/object.d.ts +9 -0
- package/dist/types/utils/path.d.ts +76 -0
- package/dist/types/utils/pinyin.d.ts +41 -0
- package/dist/types/utils/security.d.ts +18 -0
- package/dist/types/utils/string.d.ts +7 -0
- package/dist/types/utils/task.d.ts +6 -0
- package/dist/types/utils/tree.d.ts +208 -0
- package/dist/types/utils/zod.d.ts +1 -0
- package/package.json +58 -56
- package/README.md +0 -25
- package/cjs/color.cjs +0 -2
- package/cjs/constants.cjs +0 -2
- package/cjs/context.cjs +0 -2
- package/cjs/dom.cjs +0 -2
- package/cjs/error.cjs +0 -2
- package/cjs/event.cjs +0 -2
- package/cjs/expression.cjs +0 -2
- package/cjs/function.cjs +0 -2
- package/cjs/id.cjs +0 -2
- package/cjs/index.cjs +0 -2
- package/cjs/json.cjs +0 -2
- package/cjs/module.cjs +0 -2
- package/cjs/path.cjs +0 -2
- package/cjs/pinyin.cjs +0 -2
- package/cjs/security.cjs +0 -2
- package/cjs/store.cjs +0 -2
- package/cjs/styles.cjs +0 -2
- package/cjs/temporal.cjs +0 -2
- package/cjs/theme-variables.cjs +0 -2
- package/cjs/types.cjs +0 -2
- package/cjs/utils.cjs +0 -2
- package/cjs/validation.cjs +0 -2
- package/cjs/yaml.cjs +0 -2
- package/cjs/zod.cjs +0 -2
- package/esm/color.js +0 -2
- package/esm/constants.js +0 -2
- package/esm/context.js +0 -2
- package/esm/dom.js +0 -2
- package/esm/error.js +0 -2
- package/esm/event.js +0 -2
- package/esm/expression.js +0 -2
- package/esm/function.js +0 -2
- package/esm/id.js +0 -2
- package/esm/index.js +0 -2
- package/esm/json.js +0 -2
- package/esm/module.js +0 -2
- package/esm/path.js +0 -2
- package/esm/pinyin.js +0 -2
- package/esm/security.js +0 -2
- package/esm/store.js +0 -2
- package/esm/styles.js +0 -2
- package/esm/temporal.js +0 -2
- package/esm/theme-variables.js +0 -2
- package/esm/types.js +0 -2
- package/esm/utils.js +0 -2
- package/esm/validation.js +0 -2
- package/esm/yaml.js +0 -2
- package/esm/zod.js +0 -2
- package/types/color.d.ts +0 -7
- package/types/constants.d.ts +0 -28
- package/types/context.d.ts +0 -21
- package/types/dom.d.ts +0 -9
- package/types/error.d.ts +0 -16
- package/types/event.d.ts +0 -6
- package/types/expression.d.ts +0 -23
- package/types/function.d.ts +0 -8
- package/types/index.d.ts +0 -23
- package/types/json.d.ts +0 -7
- package/types/module.d.ts +0 -7
- package/types/path.d.ts +0 -43
- package/types/pinyin.d.ts +0 -14
- package/types/security.d.ts +0 -16
- package/types/store.d.ts +0 -78
- package/types/styles.d.ts +0 -21
- package/types/temporal.d.ts +0 -18
- package/types/theme-variables.d.ts +0 -348
- package/types/types.d.ts +0 -905
- package/types/utils.d.ts +0 -77
- package/types/validation.d.ts +0 -38
- package/types/yaml.d.ts +0 -7
- package/types/zod.d.ts +0 -6
|
@@ -1,348 +0,0 @@
|
|
|
1
|
-
export declare const themeVariables: {
|
|
2
|
-
colorChart1: string;
|
|
3
|
-
colorChart2: string;
|
|
4
|
-
colorChart3: string;
|
|
5
|
-
colorChart4: string;
|
|
6
|
-
colorChart5: string;
|
|
7
|
-
blue: string;
|
|
8
|
-
purple: string;
|
|
9
|
-
cyan: string;
|
|
10
|
-
green: string;
|
|
11
|
-
magenta: string;
|
|
12
|
-
pink: string;
|
|
13
|
-
red: string;
|
|
14
|
-
orange: string;
|
|
15
|
-
yellow: string;
|
|
16
|
-
volcano: string;
|
|
17
|
-
geekblue: string;
|
|
18
|
-
gold: string;
|
|
19
|
-
lime: string;
|
|
20
|
-
colorPrimary: string;
|
|
21
|
-
colorSuccess: string;
|
|
22
|
-
colorWarning: string;
|
|
23
|
-
colorError: string;
|
|
24
|
-
colorInfo: string;
|
|
25
|
-
colorLink: string;
|
|
26
|
-
colorTextBase: string;
|
|
27
|
-
colorBgBase: string;
|
|
28
|
-
fontFamily: string;
|
|
29
|
-
fontFamilyCode: string;
|
|
30
|
-
fontSize: string;
|
|
31
|
-
lineWidth: string;
|
|
32
|
-
lineType: string;
|
|
33
|
-
motionEaseOutCirc: string;
|
|
34
|
-
motionEaseInOutCirc: string;
|
|
35
|
-
motionEaseOut: string;
|
|
36
|
-
motionEaseInOut: string;
|
|
37
|
-
motionEaseOutBack: string;
|
|
38
|
-
motionEaseInBack: string;
|
|
39
|
-
motionEaseInQuint: string;
|
|
40
|
-
motionEaseOutQuint: string;
|
|
41
|
-
borderRadius: string;
|
|
42
|
-
sizePopupArrow: string;
|
|
43
|
-
controlHeight: string;
|
|
44
|
-
zIndexBase: string;
|
|
45
|
-
zIndexPopupBase: string;
|
|
46
|
-
opacityImage: string;
|
|
47
|
-
colorBgLayout: string;
|
|
48
|
-
colorBgSpotlight: string;
|
|
49
|
-
blue1: string;
|
|
50
|
-
blue2: string;
|
|
51
|
-
blue3: string;
|
|
52
|
-
blue4: string;
|
|
53
|
-
blue5: string;
|
|
54
|
-
blue6: string;
|
|
55
|
-
blue7: string;
|
|
56
|
-
blue8: string;
|
|
57
|
-
blue9: string;
|
|
58
|
-
blue10: string;
|
|
59
|
-
purple1: string;
|
|
60
|
-
purple2: string;
|
|
61
|
-
purple3: string;
|
|
62
|
-
purple4: string;
|
|
63
|
-
purple5: string;
|
|
64
|
-
purple6: string;
|
|
65
|
-
purple7: string;
|
|
66
|
-
purple8: string;
|
|
67
|
-
purple9: string;
|
|
68
|
-
purple10: string;
|
|
69
|
-
cyan1: string;
|
|
70
|
-
cyan2: string;
|
|
71
|
-
cyan3: string;
|
|
72
|
-
cyan4: string;
|
|
73
|
-
cyan5: string;
|
|
74
|
-
cyan6: string;
|
|
75
|
-
cyan7: string;
|
|
76
|
-
cyan8: string;
|
|
77
|
-
cyan9: string;
|
|
78
|
-
cyan10: string;
|
|
79
|
-
green1: string;
|
|
80
|
-
green2: string;
|
|
81
|
-
green3: string;
|
|
82
|
-
green4: string;
|
|
83
|
-
green5: string;
|
|
84
|
-
green6: string;
|
|
85
|
-
green7: string;
|
|
86
|
-
green8: string;
|
|
87
|
-
green9: string;
|
|
88
|
-
green10: string;
|
|
89
|
-
magenta1: string;
|
|
90
|
-
magenta2: string;
|
|
91
|
-
magenta3: string;
|
|
92
|
-
magenta4: string;
|
|
93
|
-
magenta5: string;
|
|
94
|
-
magenta6: string;
|
|
95
|
-
magenta7: string;
|
|
96
|
-
magenta8: string;
|
|
97
|
-
magenta9: string;
|
|
98
|
-
magenta10: string;
|
|
99
|
-
pink1: string;
|
|
100
|
-
pink2: string;
|
|
101
|
-
pink3: string;
|
|
102
|
-
pink4: string;
|
|
103
|
-
pink5: string;
|
|
104
|
-
pink6: string;
|
|
105
|
-
pink7: string;
|
|
106
|
-
pink8: string;
|
|
107
|
-
pink9: string;
|
|
108
|
-
pink10: string;
|
|
109
|
-
red1: string;
|
|
110
|
-
red2: string;
|
|
111
|
-
red3: string;
|
|
112
|
-
red4: string;
|
|
113
|
-
red5: string;
|
|
114
|
-
red6: string;
|
|
115
|
-
red7: string;
|
|
116
|
-
red8: string;
|
|
117
|
-
red9: string;
|
|
118
|
-
red10: string;
|
|
119
|
-
orange1: string;
|
|
120
|
-
orange2: string;
|
|
121
|
-
orange3: string;
|
|
122
|
-
orange4: string;
|
|
123
|
-
orange5: string;
|
|
124
|
-
orange6: string;
|
|
125
|
-
orange7: string;
|
|
126
|
-
orange8: string;
|
|
127
|
-
orange9: string;
|
|
128
|
-
orange10: string;
|
|
129
|
-
yellow1: string;
|
|
130
|
-
yellow2: string;
|
|
131
|
-
yellow3: string;
|
|
132
|
-
yellow4: string;
|
|
133
|
-
yellow5: string;
|
|
134
|
-
yellow6: string;
|
|
135
|
-
yellow7: string;
|
|
136
|
-
yellow8: string;
|
|
137
|
-
yellow9: string;
|
|
138
|
-
yellow10: string;
|
|
139
|
-
volcano1: string;
|
|
140
|
-
volcano2: string;
|
|
141
|
-
volcano3: string;
|
|
142
|
-
volcano4: string;
|
|
143
|
-
volcano5: string;
|
|
144
|
-
volcano6: string;
|
|
145
|
-
volcano7: string;
|
|
146
|
-
volcano8: string;
|
|
147
|
-
volcano9: string;
|
|
148
|
-
volcano10: string;
|
|
149
|
-
geekblue1: string;
|
|
150
|
-
geekblue2: string;
|
|
151
|
-
geekblue3: string;
|
|
152
|
-
geekblue4: string;
|
|
153
|
-
geekblue5: string;
|
|
154
|
-
geekblue6: string;
|
|
155
|
-
geekblue7: string;
|
|
156
|
-
geekblue8: string;
|
|
157
|
-
geekblue9: string;
|
|
158
|
-
geekblue10: string;
|
|
159
|
-
gold1: string;
|
|
160
|
-
gold2: string;
|
|
161
|
-
gold3: string;
|
|
162
|
-
gold4: string;
|
|
163
|
-
gold5: string;
|
|
164
|
-
gold6: string;
|
|
165
|
-
gold7: string;
|
|
166
|
-
gold8: string;
|
|
167
|
-
gold9: string;
|
|
168
|
-
gold10: string;
|
|
169
|
-
lime1: string;
|
|
170
|
-
lime2: string;
|
|
171
|
-
lime3: string;
|
|
172
|
-
lime4: string;
|
|
173
|
-
lime5: string;
|
|
174
|
-
lime6: string;
|
|
175
|
-
lime7: string;
|
|
176
|
-
lime8: string;
|
|
177
|
-
lime9: string;
|
|
178
|
-
lime10: string;
|
|
179
|
-
colorText: string;
|
|
180
|
-
colorTextSecondary: string;
|
|
181
|
-
colorTextTertiary: string;
|
|
182
|
-
colorTextQuaternary: string;
|
|
183
|
-
colorTextSlate: string;
|
|
184
|
-
colorFill: string;
|
|
185
|
-
colorFillSecondary: string;
|
|
186
|
-
colorFillTertiary: string;
|
|
187
|
-
colorFillQuaternary: string;
|
|
188
|
-
colorBgSolid: string;
|
|
189
|
-
colorBgSolidHover: string;
|
|
190
|
-
colorBgSolidActive: string;
|
|
191
|
-
colorBgContainer: string;
|
|
192
|
-
colorBgElevated: string;
|
|
193
|
-
colorBgBlur: string;
|
|
194
|
-
colorBorder: string;
|
|
195
|
-
colorBorderSecondary: string;
|
|
196
|
-
colorPrimaryBg: string;
|
|
197
|
-
colorPrimaryBgHover: string;
|
|
198
|
-
colorPrimaryBorder: string;
|
|
199
|
-
colorPrimaryBorderHover: string;
|
|
200
|
-
colorPrimaryHover: string;
|
|
201
|
-
colorPrimaryActive: string;
|
|
202
|
-
colorPrimaryTextHover: string;
|
|
203
|
-
colorPrimaryText: string;
|
|
204
|
-
colorPrimaryTextActive: string;
|
|
205
|
-
colorSuccessBg: string;
|
|
206
|
-
colorSuccessBgHover: string;
|
|
207
|
-
colorSuccessBorder: string;
|
|
208
|
-
colorSuccessBorderHover: string;
|
|
209
|
-
colorSuccessHover: string;
|
|
210
|
-
colorSuccessActive: string;
|
|
211
|
-
colorSuccessTextHover: string;
|
|
212
|
-
colorSuccessText: string;
|
|
213
|
-
colorSuccessTextActive: string;
|
|
214
|
-
colorErrorBg: string;
|
|
215
|
-
colorErrorBgHover: string;
|
|
216
|
-
colorErrorBgFilledHover: string;
|
|
217
|
-
colorErrorBgActive: string;
|
|
218
|
-
colorErrorBorder: string;
|
|
219
|
-
colorErrorBorderHover: string;
|
|
220
|
-
colorErrorHover: string;
|
|
221
|
-
colorErrorActive: string;
|
|
222
|
-
colorErrorTextHover: string;
|
|
223
|
-
colorErrorText: string;
|
|
224
|
-
colorErrorTextActive: string;
|
|
225
|
-
colorWarningBg: string;
|
|
226
|
-
colorWarningBgHover: string;
|
|
227
|
-
colorWarningBorder: string;
|
|
228
|
-
colorWarningBorderHover: string;
|
|
229
|
-
colorWarningHover: string;
|
|
230
|
-
colorWarningActive: string;
|
|
231
|
-
colorWarningTextHover: string;
|
|
232
|
-
colorWarningText: string;
|
|
233
|
-
colorWarningTextActive: string;
|
|
234
|
-
colorInfoBg: string;
|
|
235
|
-
colorInfoBgHover: string;
|
|
236
|
-
colorInfoBorder: string;
|
|
237
|
-
colorInfoBorderHover: string;
|
|
238
|
-
colorInfoHover: string;
|
|
239
|
-
colorInfoActive: string;
|
|
240
|
-
colorInfoTextHover: string;
|
|
241
|
-
colorInfoText: string;
|
|
242
|
-
colorInfoTextActive: string;
|
|
243
|
-
colorLinkHover: string;
|
|
244
|
-
colorLinkActive: string;
|
|
245
|
-
colorBgMask: string;
|
|
246
|
-
colorWhite: string;
|
|
247
|
-
fontSizeSm: string;
|
|
248
|
-
fontSizeLg: string;
|
|
249
|
-
fontSizeXl: string;
|
|
250
|
-
fontSizeHeading1: string;
|
|
251
|
-
fontSizeHeading2: string;
|
|
252
|
-
fontSizeHeading3: string;
|
|
253
|
-
fontSizeHeading4: string;
|
|
254
|
-
fontSizeHeading5: string;
|
|
255
|
-
lineHeight: string;
|
|
256
|
-
lineHeightLg: string;
|
|
257
|
-
lineHeightSm: string;
|
|
258
|
-
fontHeight: string;
|
|
259
|
-
fontHeightLg: string;
|
|
260
|
-
fontHeightSm: string;
|
|
261
|
-
lineHeightHeading1: string;
|
|
262
|
-
lineHeightHeading2: string;
|
|
263
|
-
lineHeightHeading3: string;
|
|
264
|
-
lineHeightHeading4: string;
|
|
265
|
-
lineHeightHeading5: string;
|
|
266
|
-
controlHeightSm: string;
|
|
267
|
-
controlHeightXs: string;
|
|
268
|
-
controlHeightLg: string;
|
|
269
|
-
motionDurationFast: string;
|
|
270
|
-
motionDurationMid: string;
|
|
271
|
-
motionDurationSlow: string;
|
|
272
|
-
lineWidthBold: string;
|
|
273
|
-
borderRadiusXs: string;
|
|
274
|
-
borderRadiusSm: string;
|
|
275
|
-
borderRadiusLg: string;
|
|
276
|
-
borderRadiusOuter: string;
|
|
277
|
-
colorFillContent: string;
|
|
278
|
-
colorFillContentHover: string;
|
|
279
|
-
colorFillAlt: string;
|
|
280
|
-
colorBgContainerDisabled: string;
|
|
281
|
-
colorBorderBg: string;
|
|
282
|
-
colorSplit: string;
|
|
283
|
-
colorTextPlaceholder: string;
|
|
284
|
-
colorTextDisabled: string;
|
|
285
|
-
colorTextHeading: string;
|
|
286
|
-
colorTextLabel: string;
|
|
287
|
-
colorTextDescription: string;
|
|
288
|
-
colorTextLightSolid: string;
|
|
289
|
-
colorHighlight: string;
|
|
290
|
-
colorBgTextHover: string;
|
|
291
|
-
colorBgTextActive: string;
|
|
292
|
-
colorIcon: string;
|
|
293
|
-
colorIconHover: string;
|
|
294
|
-
colorErrorOutline: string;
|
|
295
|
-
colorWarningOutline: string;
|
|
296
|
-
fontSizeIcon: string;
|
|
297
|
-
lineWidthFocus: string;
|
|
298
|
-
controlOutlineWidth: string;
|
|
299
|
-
controlInteractiveSize: string;
|
|
300
|
-
controlItemBgHover: string;
|
|
301
|
-
controlItemBgActive: string;
|
|
302
|
-
controlItemBgActiveHover: string;
|
|
303
|
-
controlItemBgActiveDisabled: string;
|
|
304
|
-
controlTmpOutline: string;
|
|
305
|
-
controlOutline: string;
|
|
306
|
-
fontWeightStrong: string;
|
|
307
|
-
opacityLoading: string;
|
|
308
|
-
linkDecoration: string;
|
|
309
|
-
linkHoverDecoration: string;
|
|
310
|
-
linkFocusDecoration: string;
|
|
311
|
-
controlPaddingHorizontal: string;
|
|
312
|
-
controlPaddingHorizontalSm: string;
|
|
313
|
-
paddingXxs: string;
|
|
314
|
-
paddingXs: string;
|
|
315
|
-
paddingSm: string;
|
|
316
|
-
padding: string;
|
|
317
|
-
paddingMd: string;
|
|
318
|
-
paddingLg: string;
|
|
319
|
-
paddingXl: string;
|
|
320
|
-
paddingContentHorizontalLg: string;
|
|
321
|
-
paddingContentVerticalLg: string;
|
|
322
|
-
paddingContentHorizontal: string;
|
|
323
|
-
paddingContentVertical: string;
|
|
324
|
-
paddingContentHorizontalSm: string;
|
|
325
|
-
paddingContentVerticalSm: string;
|
|
326
|
-
marginXxs: string;
|
|
327
|
-
marginXs: string;
|
|
328
|
-
marginSm: string;
|
|
329
|
-
margin: string;
|
|
330
|
-
marginMd: string;
|
|
331
|
-
marginLg: string;
|
|
332
|
-
marginXl: string;
|
|
333
|
-
marginXxl: string;
|
|
334
|
-
boxShadow: string;
|
|
335
|
-
boxShadowSecondary: string;
|
|
336
|
-
boxShadowTertiary: string;
|
|
337
|
-
boxShadowPopoverArrow: string;
|
|
338
|
-
boxShadowCard: string;
|
|
339
|
-
boxShadowDrawerRight: string;
|
|
340
|
-
boxShadowDrawerLeft: string;
|
|
341
|
-
boxShadowDrawerUp: string;
|
|
342
|
-
boxShadowDrawerDown: string;
|
|
343
|
-
boxShadowTabsOverflowLeft: string;
|
|
344
|
-
boxShadowTabsOverflowRight: string;
|
|
345
|
-
boxShadowTabsOverflowTop: string;
|
|
346
|
-
boxShadowTabsOverflowBottom: string;
|
|
347
|
-
boxShadowElevated: string;
|
|
348
|
-
};
|