@jitera/jitera-web-ui-library 1.0.3
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 +23 -0
- package/dist/index.d.ts +1971 -0
- package/dist/index.esm.js +1 -0
- package/dist/index.js +1 -0
- package/dist/style.css +1 -0
- package/package.json +115 -0
package/dist/index.d.ts
ADDED
@@ -0,0 +1,1971 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
import React, { ForwardRefExoticComponent, RefAttributes, ReactElement } from 'react'
|
3
|
+
import {
|
4
|
+
ButtonProps as ButtonProps$1,
|
5
|
+
CardProps as CardProps$1,
|
6
|
+
FormProps as FormProps$1,
|
7
|
+
FormInstance,
|
8
|
+
Form as Form$1,
|
9
|
+
InputProps as InputProps$1,
|
10
|
+
FormItemProps,
|
11
|
+
InputRef
|
12
|
+
} from 'antd'
|
13
|
+
export { FormItemProps } from 'antd'
|
14
|
+
import { CardInterface } from 'antd/lib/card'
|
15
|
+
import { BasicProps } from 'antd/lib/layout/layout'
|
16
|
+
import { SiderProps as SiderProps$1 } from 'antd/lib/layout/Sider'
|
17
|
+
import { TextProps } from 'antd/lib/typography/Text'
|
18
|
+
import { LinkProps } from 'antd/lib/typography/Link'
|
19
|
+
import { TitleProps } from 'antd/lib/typography/Title'
|
20
|
+
import { ParagraphProps } from 'antd/lib/typography/Paragraph'
|
21
|
+
import OtpInput, { OtpInputProps } from 'react-otp-input'
|
22
|
+
|
23
|
+
interface PreviewProps {
|
24
|
+
isPreview?: boolean
|
25
|
+
}
|
26
|
+
|
27
|
+
declare type ComponentProps<T> = Omit<T, 'prefixCls' | 'iconPrefixCls'>
|
28
|
+
|
29
|
+
interface ButtonProps extends PreviewProps, ComponentProps<ButtonProps$1> {}
|
30
|
+
declare const Button: React.ForwardRefExoticComponent<
|
31
|
+
ButtonProps & React.RefAttributes<HTMLButtonElement>
|
32
|
+
>
|
33
|
+
|
34
|
+
interface CardProps extends PreviewProps, ComponentProps<CardProps$1> {}
|
35
|
+
declare const Card: React.ForwardRefExoticComponent<CardProps & React.RefAttributes<CardInterface>>
|
36
|
+
|
37
|
+
interface ContentProps extends PreviewProps, ComponentProps<BasicProps> {}
|
38
|
+
declare const Content: React.ForwardRefExoticComponent<
|
39
|
+
ContentProps & React.RefAttributes<HTMLDivElement>
|
40
|
+
>
|
41
|
+
|
42
|
+
interface FooterProps extends PreviewProps, ComponentProps<BasicProps> {}
|
43
|
+
declare const Footer: React.ForwardRefExoticComponent<
|
44
|
+
FooterProps & React.RefAttributes<HTMLDivElement>
|
45
|
+
>
|
46
|
+
|
47
|
+
interface FormProps extends PreviewProps, ComponentProps<FormProps$1> {
|
48
|
+
formRef?: React.RefObject<FormInstance>
|
49
|
+
formStyle?: React.CSSProperties
|
50
|
+
}
|
51
|
+
declare type AntFormType = typeof Form$1
|
52
|
+
interface FormInterface
|
53
|
+
extends ForwardRefExoticComponent<FormProps & RefAttributes<HTMLDivElement>>,
|
54
|
+
AntFormType {}
|
55
|
+
declare const Form: FormInterface
|
56
|
+
|
57
|
+
interface HeaderProps extends PreviewProps, ComponentProps<BasicProps> {}
|
58
|
+
declare const Header: React.ForwardRefExoticComponent<
|
59
|
+
HeaderProps & React.RefAttributes<HTMLDivElement>
|
60
|
+
>
|
61
|
+
|
62
|
+
interface InputProps extends PreviewProps, ComponentProps<InputProps$1> {
|
63
|
+
formItem?: boolean
|
64
|
+
formItemProps?: Omit<FormItemProps, 'children'>
|
65
|
+
}
|
66
|
+
declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<InputRef>>
|
67
|
+
|
68
|
+
interface LayoutProps extends PreviewProps, ComponentProps<BasicProps> {}
|
69
|
+
declare const Layout: React.ForwardRefExoticComponent<
|
70
|
+
LayoutProps & React.RefAttributes<HTMLDivElement>
|
71
|
+
>
|
72
|
+
|
73
|
+
interface PageProps extends PreviewProps, React.HTMLAttributes<HTMLDivElement> {}
|
74
|
+
declare const Page: React.ForwardRefExoticComponent<PageProps & React.RefAttributes<HTMLDivElement>>
|
75
|
+
|
76
|
+
interface SiderProps extends PreviewProps, ComponentProps<SiderProps$1> {}
|
77
|
+
declare const Sider: React.ForwardRefExoticComponent<
|
78
|
+
SiderProps & React.RefAttributes<HTMLDivElement>
|
79
|
+
>
|
80
|
+
|
81
|
+
declare enum TypographyVariantType {
|
82
|
+
Title = 'Title',
|
83
|
+
Link = 'Link',
|
84
|
+
Text = 'Text',
|
85
|
+
Paragraph = 'Paragraph'
|
86
|
+
}
|
87
|
+
declare type TypographyElement = HTMLHeadingElement &
|
88
|
+
HTMLSpanElement &
|
89
|
+
HTMLParagraphElement &
|
90
|
+
HTMLElement
|
91
|
+
declare type CombinedTypographyProps = ComponentProps<TextProps> &
|
92
|
+
ComponentProps<LinkProps> &
|
93
|
+
ComponentProps<TitleProps> &
|
94
|
+
ComponentProps<ParagraphProps>
|
95
|
+
interface TypographyProps extends PreviewProps, CombinedTypographyProps {
|
96
|
+
variant?: TypographyVariantType
|
97
|
+
}
|
98
|
+
declare const Typography: React.ForwardRefExoticComponent<
|
99
|
+
TypographyProps & React.RefAttributes<TypographyElement>
|
100
|
+
>
|
101
|
+
|
102
|
+
interface OTPInputProps extends OtpInputProps {
|
103
|
+
errorMessage?: string
|
104
|
+
}
|
105
|
+
declare const OTPInput: React.ForwardRefExoticComponent<
|
106
|
+
OTPInputProps & React.RefAttributes<OtpInput>
|
107
|
+
>
|
108
|
+
|
109
|
+
declare type ThemeProviderProps = {
|
110
|
+
children: ReactElement
|
111
|
+
}
|
112
|
+
declare const ThemeProvider: ({ children }: ThemeProviderProps) => JSX.Element
|
113
|
+
|
114
|
+
declare const defaultTheme: {
|
115
|
+
blueBase: string
|
116
|
+
blue1: string
|
117
|
+
blue2: string
|
118
|
+
blue3: string
|
119
|
+
blue4: string
|
120
|
+
blue5: string
|
121
|
+
blue6: string
|
122
|
+
blue7: string
|
123
|
+
blue8: string
|
124
|
+
blue9: string
|
125
|
+
blue10: string
|
126
|
+
purpleBase: string
|
127
|
+
purple1: string
|
128
|
+
purple2: string
|
129
|
+
purple3: string
|
130
|
+
purple4: string
|
131
|
+
purple5: string
|
132
|
+
purple6: string
|
133
|
+
purple7: string
|
134
|
+
purple8: string
|
135
|
+
purple9: string
|
136
|
+
purple10: string
|
137
|
+
cyanBase: string
|
138
|
+
cyan1: string
|
139
|
+
cyan2: string
|
140
|
+
cyan3: string
|
141
|
+
cyan4: string
|
142
|
+
cyan5: string
|
143
|
+
cyan6: string
|
144
|
+
cyan7: string
|
145
|
+
cyan8: string
|
146
|
+
cyan9: string
|
147
|
+
cyan10: string
|
148
|
+
greenBase: string
|
149
|
+
green1: string
|
150
|
+
green2: string
|
151
|
+
green3: string
|
152
|
+
green4: string
|
153
|
+
green5: string
|
154
|
+
green6: string
|
155
|
+
green7: string
|
156
|
+
green8: string
|
157
|
+
green9: string
|
158
|
+
green10: string
|
159
|
+
magentaBase: string
|
160
|
+
magenta1: string
|
161
|
+
magenta2: string
|
162
|
+
magenta3: string
|
163
|
+
magenta4: string
|
164
|
+
magenta5: string
|
165
|
+
magenta6: string
|
166
|
+
magenta7: string
|
167
|
+
magenta8: string
|
168
|
+
magenta9: string
|
169
|
+
magenta10: string
|
170
|
+
pinkBase: string
|
171
|
+
pink1: string
|
172
|
+
pink2: string
|
173
|
+
pink3: string
|
174
|
+
pink4: string
|
175
|
+
pink5: string
|
176
|
+
pink6: string
|
177
|
+
pink7: string
|
178
|
+
pink8: string
|
179
|
+
pink9: string
|
180
|
+
pink10: string
|
181
|
+
redBase: string
|
182
|
+
red1: string
|
183
|
+
red2: string
|
184
|
+
red3: string
|
185
|
+
red4: string
|
186
|
+
red5: string
|
187
|
+
red6: string
|
188
|
+
red7: string
|
189
|
+
red8: string
|
190
|
+
red9: string
|
191
|
+
red10: string
|
192
|
+
orangeBase: string
|
193
|
+
orange1: string
|
194
|
+
orange2: string
|
195
|
+
orange3: string
|
196
|
+
orange4: string
|
197
|
+
orange5: string
|
198
|
+
orange6: string
|
199
|
+
orange7: string
|
200
|
+
orange8: string
|
201
|
+
orange9: string
|
202
|
+
orange10: string
|
203
|
+
yellowBase: string
|
204
|
+
yellow1: string
|
205
|
+
yellow2: string
|
206
|
+
yellow3: string
|
207
|
+
yellow4: string
|
208
|
+
yellow5: string
|
209
|
+
yellow6: string
|
210
|
+
yellow7: string
|
211
|
+
yellow8: string
|
212
|
+
yellow9: string
|
213
|
+
yellow10: string
|
214
|
+
volcanoBase: string
|
215
|
+
volcano1: string
|
216
|
+
volcano2: string
|
217
|
+
volcano3: string
|
218
|
+
volcano4: string
|
219
|
+
volcano5: string
|
220
|
+
volcano6: string
|
221
|
+
volcano7: string
|
222
|
+
volcano8: string
|
223
|
+
volcano9: string
|
224
|
+
volcano10: string
|
225
|
+
geekblueBase: string
|
226
|
+
geekblue1: string
|
227
|
+
geekblue2: string
|
228
|
+
geekblue3: string
|
229
|
+
geekblue4: string
|
230
|
+
geekblue5: string
|
231
|
+
geekblue6: string
|
232
|
+
geekblue7: string
|
233
|
+
geekblue8: string
|
234
|
+
geekblue9: string
|
235
|
+
geekblue10: string
|
236
|
+
limeBase: string
|
237
|
+
lime1: string
|
238
|
+
lime2: string
|
239
|
+
lime3: string
|
240
|
+
lime4: string
|
241
|
+
lime5: string
|
242
|
+
lime6: string
|
243
|
+
lime7: string
|
244
|
+
lime8: string
|
245
|
+
lime9: string
|
246
|
+
lime10: string
|
247
|
+
goldBase: string
|
248
|
+
gold1: string
|
249
|
+
gold2: string
|
250
|
+
gold3: string
|
251
|
+
gold4: string
|
252
|
+
gold5: string
|
253
|
+
gold6: string
|
254
|
+
gold7: string
|
255
|
+
gold8: string
|
256
|
+
gold9: string
|
257
|
+
gold10: string
|
258
|
+
presetColors: string
|
259
|
+
theme: string
|
260
|
+
antPrefix: string
|
261
|
+
htmlSelector: string
|
262
|
+
primaryColor: string
|
263
|
+
primaryColorHover: string
|
264
|
+
primaryColorActive: string
|
265
|
+
primaryColorOutline: string
|
266
|
+
processingColor: string
|
267
|
+
infoColor: string
|
268
|
+
infoColorDeprecatedBg: string
|
269
|
+
infoColorDeprecatedBorder: string
|
270
|
+
successColor: string
|
271
|
+
successColorHover: string
|
272
|
+
successColorActive: string
|
273
|
+
successColorOutline: string
|
274
|
+
successColorDeprecatedBg: string
|
275
|
+
successColorDeprecatedBorder: string
|
276
|
+
warningColor: string
|
277
|
+
warningColorHover: string
|
278
|
+
warningColorActive: string
|
279
|
+
warningColorOutline: string
|
280
|
+
warningColorDeprecatedBg: string
|
281
|
+
warningColorDeprecatedBorder: string
|
282
|
+
errorColor: string
|
283
|
+
errorColorHover: string
|
284
|
+
errorColorActive: string
|
285
|
+
errorColorOutline: string
|
286
|
+
errorColorDeprecatedBg: string
|
287
|
+
errorColorDeprecatedBorder: string
|
288
|
+
highlightColor: string
|
289
|
+
normalColor: string
|
290
|
+
white: string
|
291
|
+
black: string
|
292
|
+
primary1: string
|
293
|
+
primary2: string
|
294
|
+
primary3: string
|
295
|
+
primary4: string
|
296
|
+
primary5: string
|
297
|
+
primary6: string
|
298
|
+
primary7: string
|
299
|
+
primary8: string
|
300
|
+
primary9: string
|
301
|
+
primary10: string
|
302
|
+
bodyBackground: string
|
303
|
+
componentBackground: string
|
304
|
+
popoverBackground: string
|
305
|
+
popoverCustomizeBorderColor: string
|
306
|
+
fontFamily: string
|
307
|
+
codeFamily: string
|
308
|
+
textColor: string
|
309
|
+
textColorSecondary: string
|
310
|
+
textColorInverse: string
|
311
|
+
iconColor: string
|
312
|
+
iconColorHover: string
|
313
|
+
headingColor: string
|
314
|
+
textColorDark: string
|
315
|
+
textColorSecondaryDark: string
|
316
|
+
textSelectionBg: string
|
317
|
+
fontVariantBase: string
|
318
|
+
fontFeatureSettingsBase: string
|
319
|
+
fontSizeBase: string
|
320
|
+
fontSizeLg: string
|
321
|
+
fontSizeSm: string
|
322
|
+
heading1Size: string
|
323
|
+
heading2Size: string
|
324
|
+
heading3Size: string
|
325
|
+
heading4Size: string
|
326
|
+
heading5Size: string
|
327
|
+
lineHeightBase: string
|
328
|
+
borderRadiusBase: string
|
329
|
+
borderRadiusSm: string
|
330
|
+
paddingLg: string
|
331
|
+
paddingMd: string
|
332
|
+
paddingSm: string
|
333
|
+
paddingXs: string
|
334
|
+
paddingXss: string
|
335
|
+
controlPaddingHorizontal: string
|
336
|
+
controlPaddingHorizontalSm: string
|
337
|
+
marginLg: string
|
338
|
+
marginMd: string
|
339
|
+
marginSm: string
|
340
|
+
marginXs: string
|
341
|
+
marginXss: string
|
342
|
+
heightBase: string
|
343
|
+
heightLg: string
|
344
|
+
heightSm: string
|
345
|
+
itemActiveBg: string
|
346
|
+
itemHoverBg: string
|
347
|
+
iconfontCssPrefix: string
|
348
|
+
linkColor: string
|
349
|
+
linkHoverColor: string
|
350
|
+
linkActiveColor: string
|
351
|
+
linkDecoration: string
|
352
|
+
linkHoverDecoration: string
|
353
|
+
linkFocusDecoration: string
|
354
|
+
linkFocusOutline: string
|
355
|
+
easeBaseOut: string
|
356
|
+
easeBaseIn: string
|
357
|
+
easeOut: string
|
358
|
+
easeIn: string
|
359
|
+
easeInOut: string
|
360
|
+
easeOutBack: string
|
361
|
+
easeInBack: string
|
362
|
+
easeInOutBack: string
|
363
|
+
easeOutCirc: string
|
364
|
+
easeInCirc: string
|
365
|
+
easeInOutCirc: string
|
366
|
+
easeOutQuint: string
|
367
|
+
easeInQuint: string
|
368
|
+
easeInOutQuint: string
|
369
|
+
borderColorBase: string
|
370
|
+
borderColorSplit: string
|
371
|
+
borderColorInverse: string
|
372
|
+
borderWidthBase: string
|
373
|
+
borderStyleBase: string
|
374
|
+
outlineBlurSize: string
|
375
|
+
outlineWidth: string
|
376
|
+
outlineColor: string
|
377
|
+
outlineFade: string
|
378
|
+
backgroundColorLight: string
|
379
|
+
backgroundColorBase: string
|
380
|
+
disabledColor: string
|
381
|
+
disabledBg: string
|
382
|
+
disabledActiveBg: string
|
383
|
+
disabledColorDark: string
|
384
|
+
shadowColor: string
|
385
|
+
shadowColorInverse: string
|
386
|
+
boxShadowBase: string
|
387
|
+
shadow1Up: string
|
388
|
+
shadow1Down: string
|
389
|
+
shadow1Left: string
|
390
|
+
shadow1Right: string
|
391
|
+
shadow2: string
|
392
|
+
btnFontWeight: string
|
393
|
+
btnBorderRadiusBase: string
|
394
|
+
btnBorderRadiusSm: string
|
395
|
+
btnBorderWidth: string
|
396
|
+
btnBorderStyle: string
|
397
|
+
btnShadow: string
|
398
|
+
btnPrimaryShadow: string
|
399
|
+
btnTextShadow: string
|
400
|
+
btnPrimaryColor: string
|
401
|
+
btnPrimaryBg: string
|
402
|
+
btnDefaultColor: string
|
403
|
+
btnDefaultBg: string
|
404
|
+
btnDefaultBorder: string
|
405
|
+
btnDangerColor: string
|
406
|
+
btnDangerBg: string
|
407
|
+
btnDangerBorder: string
|
408
|
+
btnDisableColor: string
|
409
|
+
btnDisableBg: string
|
410
|
+
btnDisableBorder: string
|
411
|
+
btnDefaultGhostColor: string
|
412
|
+
btnDefaultGhostBg: string
|
413
|
+
btnDefaultGhostBorder: string
|
414
|
+
btnFontSizeLg: string
|
415
|
+
btnFontSizeSm: string
|
416
|
+
btnPaddingHorizontalBase: string
|
417
|
+
btnPaddingHorizontalLg: string
|
418
|
+
btnPaddingHorizontalSm: string
|
419
|
+
btnHeightBase: string
|
420
|
+
btnHeightLg: string
|
421
|
+
btnHeightSm: string
|
422
|
+
btnLineHeight: string
|
423
|
+
btnCircleSize: string
|
424
|
+
btnCircleSizeLg: string
|
425
|
+
btnCircleSizeSm: string
|
426
|
+
btnSquareSize: string
|
427
|
+
btnSquareSizeLg: string
|
428
|
+
btnSquareSizeSm: string
|
429
|
+
btnSquareOnlyIconSize: string
|
430
|
+
btnSquareOnlyIconSizeSm: string
|
431
|
+
btnSquareOnlyIconSizeLg: string
|
432
|
+
btnGroupBorder: string
|
433
|
+
btnLinkHoverBg: string
|
434
|
+
btnTextHoverBg: string
|
435
|
+
checkboxSize: string
|
436
|
+
checkboxColor: string
|
437
|
+
checkboxCheckColor: string
|
438
|
+
checkboxCheckBg: string
|
439
|
+
checkboxBorderWidth: string
|
440
|
+
checkboxBorderRadius: string
|
441
|
+
checkboxGroupItemMarginRight: string
|
442
|
+
descriptionsBg: string
|
443
|
+
descriptionsTitleMarginBottom: string
|
444
|
+
descriptionsDefaultPadding: string
|
445
|
+
descriptionsMiddlePadding: string
|
446
|
+
descriptionsSmallPadding: string
|
447
|
+
descriptionsItemPaddingBottom: string
|
448
|
+
descriptionsItemTrailingColon: string
|
449
|
+
descriptionsItemLabelColonMarginRight: string
|
450
|
+
descriptionsItemLabelColonMarginLeft: string
|
451
|
+
descriptionsExtraColor: string
|
452
|
+
dividerTextPadding: string
|
453
|
+
dividerOrientationMargin: string
|
454
|
+
dividerColor: string
|
455
|
+
dividerVerticalGutter: string
|
456
|
+
dropdownSelectedColor: string
|
457
|
+
dropdownMenuSubmenuDisabledBg: string
|
458
|
+
dropdownSelectedBg: string
|
459
|
+
emptyFontSize: string
|
460
|
+
radioSize: string
|
461
|
+
radioTop: string
|
462
|
+
radioBorderWidth: string
|
463
|
+
radioDotSize: string
|
464
|
+
radioDotColor: string
|
465
|
+
radioDotDisabledColor: string
|
466
|
+
radioSolidCheckedColor: string
|
467
|
+
radioButtonBg: string
|
468
|
+
radioButtonCheckedBg: string
|
469
|
+
radioButtonColor: string
|
470
|
+
radioButtonHoverColor: string
|
471
|
+
radioButtonActiveColor: string
|
472
|
+
radioButtonPaddingHorizontal: string
|
473
|
+
radioDisabledButtonCheckedBg: string
|
474
|
+
radioDisabledButtonCheckedColor: string
|
475
|
+
radioWrapperMarginRight: string
|
476
|
+
screenXs: string
|
477
|
+
screenXsMin: string
|
478
|
+
screenSm: string
|
479
|
+
screenSmMin: string
|
480
|
+
screenMd: string
|
481
|
+
screenMdMin: string
|
482
|
+
screenLg: string
|
483
|
+
screenLgMin: string
|
484
|
+
screenXl: string
|
485
|
+
screenXlMin: string
|
486
|
+
screenXxl: string
|
487
|
+
screenXxlMin: string
|
488
|
+
screenXsMax: string
|
489
|
+
screenSmMax: string
|
490
|
+
screenMdMax: string
|
491
|
+
screenLgMax: string
|
492
|
+
screenXlMax: string
|
493
|
+
gridColumns: string
|
494
|
+
layoutBodyBackground: string
|
495
|
+
layoutHeaderBackground: string
|
496
|
+
layoutHeaderHeight: string
|
497
|
+
layoutHeaderPadding: string
|
498
|
+
layoutHeaderColor: string
|
499
|
+
layoutFooterPadding: string
|
500
|
+
layoutFooterBackground: string
|
501
|
+
layoutSiderBackground: string
|
502
|
+
layoutTriggerHeight: string
|
503
|
+
layoutTriggerBackground: string
|
504
|
+
layoutTriggerColor: string
|
505
|
+
layoutZeroTriggerWidth: string
|
506
|
+
layoutZeroTriggerHeight: string
|
507
|
+
layoutSiderBackgroundLight: string
|
508
|
+
layoutTriggerBackgroundLight: string
|
509
|
+
layoutTriggerColorLight: string
|
510
|
+
zindexBadge: string
|
511
|
+
zindexTableFixed: string
|
512
|
+
zindexAffix: string
|
513
|
+
zindexBackTop: string
|
514
|
+
zindexPickerPanel: string
|
515
|
+
zindexPopupClose: string
|
516
|
+
zindexModal: string
|
517
|
+
zindexModalMask: string
|
518
|
+
zindexMessage: string
|
519
|
+
zindexNotification: string
|
520
|
+
zindexPopover: string
|
521
|
+
zindexDropdown: string
|
522
|
+
zindexPicker: string
|
523
|
+
zindexPopoconfirm: string
|
524
|
+
zindexTooltip: string
|
525
|
+
zindexImage: string
|
526
|
+
animationDurationSlow: string
|
527
|
+
animationDurationBase: string
|
528
|
+
animationDurationFast: string
|
529
|
+
collapsePanelBorderRadius: string
|
530
|
+
dropdownMenuBg: string
|
531
|
+
dropdownVerticalPadding: string
|
532
|
+
dropdownEdgeChildVerticalPadding: string
|
533
|
+
dropdownFontSize: string
|
534
|
+
dropdownLineHeight: string
|
535
|
+
labelRequiredColor: string
|
536
|
+
labelColor: string
|
537
|
+
formWarningInputBg: string
|
538
|
+
formItemMarginBottom: string
|
539
|
+
formItemTrailingColon: string
|
540
|
+
formVerticalLabelPadding: string
|
541
|
+
formVerticalLabelMargin: string
|
542
|
+
formItemLabelFontSize: string
|
543
|
+
formItemLabelHeight: string
|
544
|
+
formItemLabelColonMarginRight: string
|
545
|
+
formItemLabelColonMarginLeft: string
|
546
|
+
formErrorInputBg: string
|
547
|
+
inputHeightBase: string
|
548
|
+
inputHeightLg: string
|
549
|
+
inputHeightSm: string
|
550
|
+
inputPaddingHorizontal: string
|
551
|
+
inputPaddingHorizontalBase: string
|
552
|
+
inputPaddingHorizontalSm: string
|
553
|
+
inputPaddingHorizontalLg: string
|
554
|
+
inputPaddingVerticalBase: string
|
555
|
+
inputPaddingVerticalSm: string
|
556
|
+
inputPaddingVerticalLg: string
|
557
|
+
inputPlaceholderColor: string
|
558
|
+
inputColor: string
|
559
|
+
inputIconColor: string
|
560
|
+
inputBorderColor: string
|
561
|
+
inputBg: string
|
562
|
+
inputNumberHoverBorderColor: string
|
563
|
+
inputNumberHandlerActiveBg: string
|
564
|
+
inputNumberHandlerHoverBg: string
|
565
|
+
inputNumberHandlerBg: string
|
566
|
+
inputNumberHandlerBorderColor: string
|
567
|
+
inputAddonBg: string
|
568
|
+
inputHoverBorderColor: string
|
569
|
+
inputDisabledBg: string
|
570
|
+
inputOutlineOffset: string
|
571
|
+
inputIconHoverColor: string
|
572
|
+
inputDisabledColor: string
|
573
|
+
mentionsDropdownBg: string
|
574
|
+
mentionsDropdownMenuItemHoverBg: string
|
575
|
+
selectBorderColor: string
|
576
|
+
selectItemSelectedColor: string
|
577
|
+
selectItemSelectedFontWeight: string
|
578
|
+
selectDropdownBg: string
|
579
|
+
selectItemSelectedBg: string
|
580
|
+
selectItemActiveBg: string
|
581
|
+
selectDropdownVerticalPadding: string
|
582
|
+
selectDropdownFontSize: string
|
583
|
+
selectDropdownLineHeight: string
|
584
|
+
selectDropdownHeight: string
|
585
|
+
selectBackground: string
|
586
|
+
selectClearBackground: string
|
587
|
+
selectSelectionItemBg: string
|
588
|
+
selectSelectionItemBorderColor: string
|
589
|
+
selectSingleItemHeightLg: string
|
590
|
+
selectMultipleItemHeight: string
|
591
|
+
selectMultipleItemHeightLg: string
|
592
|
+
selectMultipleItemSpacingHalf: string
|
593
|
+
selectMultipleDisabledBackground: string
|
594
|
+
selectMultipleItemDisabledColor: string
|
595
|
+
selectMultipleItemDisabledBorderColor: string
|
596
|
+
cascaderBg: string
|
597
|
+
cascaderItemSelectedBg: string
|
598
|
+
cascaderMenuBg: string
|
599
|
+
cascaderMenuBorderColorSplit: string
|
600
|
+
cascaderDropdownVerticalPadding: string
|
601
|
+
cascaderDropdownEdgeChildVerticalPadding: string
|
602
|
+
cascaderDropdownFontSize: string
|
603
|
+
cascaderDropdownLineHeight: string
|
604
|
+
anchorBg: string
|
605
|
+
anchorBorderColor: string
|
606
|
+
anchorLinkTop: string
|
607
|
+
anchorLinkLeft: string
|
608
|
+
anchorLinkPadding: string
|
609
|
+
tooltipMaxWidth: string
|
610
|
+
tooltipColor: string
|
611
|
+
tooltipBg: string
|
612
|
+
tooltipArrowWidth: string
|
613
|
+
tooltipDistance: string
|
614
|
+
tooltipArrowColor: string
|
615
|
+
popoverBg: string
|
616
|
+
popoverColor: string
|
617
|
+
popoverMinWidth: string
|
618
|
+
popoverMinHeight: string
|
619
|
+
popoverArrowWidth: string
|
620
|
+
popoverArrowColor: string
|
621
|
+
popoverArrowOuterColor: string
|
622
|
+
popoverDistance: string
|
623
|
+
popoverPaddingHorizontal: string
|
624
|
+
modalHeaderPaddingVertical: string
|
625
|
+
modalHeaderPaddingHorizontal: string
|
626
|
+
modalBodyPadding: string
|
627
|
+
modalHeaderBg: string
|
628
|
+
modalHeaderPadding: string
|
629
|
+
modalHeaderBorderWidth: string
|
630
|
+
modalHeaderBorderStyle: string
|
631
|
+
modalHeaderTitleLineHeight: string
|
632
|
+
modalHeaderTitleFontSize: string
|
633
|
+
modalHeaderBorderColorSplit: string
|
634
|
+
modalHeaderCloseSize: string
|
635
|
+
modalContentBg: string
|
636
|
+
modalHeadingColor: string
|
637
|
+
modalCloseColor: string
|
638
|
+
modalFooterBg: string
|
639
|
+
modalFooterBorderColorSplit: string
|
640
|
+
modalFooterBorderStyle: string
|
641
|
+
modalFooterPaddingVertical: string
|
642
|
+
modalFooterPaddingHorizontal: string
|
643
|
+
modalFooterBorderWidth: string
|
644
|
+
modalMaskBg: string
|
645
|
+
modalConfirmBodyPadding: string
|
646
|
+
modalConfirmTitleFontSize: string
|
647
|
+
progressDefaultColor: string
|
648
|
+
progressRemainingColor: string
|
649
|
+
progressInfoTextColor: string
|
650
|
+
progressRadius: string
|
651
|
+
progressStepsItemBg: string
|
652
|
+
progressTextFontSize: string
|
653
|
+
progressTextColor: string
|
654
|
+
progressCircleTextFontSize: string
|
655
|
+
menuInlineToplevelItemHeight: string
|
656
|
+
menuItemHeight: string
|
657
|
+
menuItemGroupHeight: string
|
658
|
+
menuCollapsedWidth: string
|
659
|
+
menuBg: string
|
660
|
+
menuPopupBg: string
|
661
|
+
menuItemColor: string
|
662
|
+
menuInlineSubmenuBg: string
|
663
|
+
menuHighlightColor: string
|
664
|
+
menuHighlightDangerColor: string
|
665
|
+
menuItemActiveBg: string
|
666
|
+
menuItemActiveDangerBg: string
|
667
|
+
menuItemActiveBorderWidth: string
|
668
|
+
menuItemGroupTitleColor: string
|
669
|
+
menuItemVerticalMargin: string
|
670
|
+
menuItemFontSize: string
|
671
|
+
menuItemBoundaryMargin: string
|
672
|
+
menuItemPaddingHorizontal: string
|
673
|
+
menuItemPadding: string
|
674
|
+
menuHorizontalLineHeight: string
|
675
|
+
menuIconMarginRight: string
|
676
|
+
menuIconSize: string
|
677
|
+
menuIconSizeLg: string
|
678
|
+
menuItemGroupTitleFontSize: string
|
679
|
+
menuDarkColor: string
|
680
|
+
menuDarkDangerColor: string
|
681
|
+
menuDarkBg: string
|
682
|
+
menuDarkArrowColor: string
|
683
|
+
menuDarkInlineSubmenuBg: string
|
684
|
+
menuDarkHighlightColor: string
|
685
|
+
menuDarkItemActiveBg: string
|
686
|
+
menuDarkItemActiveDangerBg: string
|
687
|
+
menuDarkSelectedItemIconColor: string
|
688
|
+
menuDarkSelectedItemTextColor: string
|
689
|
+
menuDarkItemHoverBg: string
|
690
|
+
spinDotSizeSm: string
|
691
|
+
spinDotSize: string
|
692
|
+
spinDotSizeLg: string
|
693
|
+
tableBg: string
|
694
|
+
tableHeaderBg: string
|
695
|
+
tableHeaderColor: string
|
696
|
+
tableHeaderSortBg: string
|
697
|
+
tableBodySortBg: string
|
698
|
+
tableRowHoverBg: string
|
699
|
+
tableSelectedRowColor: string
|
700
|
+
tableSelectedRowBg: string
|
701
|
+
tableBodySelectedSortBg: string
|
702
|
+
tableSelectedRowHoverBg: string
|
703
|
+
tableExpandedRowBg: string
|
704
|
+
tablePaddingVertical: string
|
705
|
+
tablePaddingHorizontal: string
|
706
|
+
tablePaddingVerticalMd: string
|
707
|
+
tablePaddingHorizontalMd: string
|
708
|
+
tablePaddingVerticalSm: string
|
709
|
+
tablePaddingHorizontalSm: string
|
710
|
+
tableBorderColor: string
|
711
|
+
tableBorderRadiusBase: string
|
712
|
+
tableFooterBg: string
|
713
|
+
tableFooterColor: string
|
714
|
+
tableHeaderBgSm: string
|
715
|
+
tableFontSize: string
|
716
|
+
tableFontSizeMd: string
|
717
|
+
tableFontSizeSm: string
|
718
|
+
tableHeaderCellSplitColor: string
|
719
|
+
tableHeaderSortActiveBg: string
|
720
|
+
tableFixedHeaderSortActiveBg: string
|
721
|
+
tableHeaderFilterActiveBg: string
|
722
|
+
tableFilterBtnsBg: string
|
723
|
+
tableFilterDropdownBg: string
|
724
|
+
tableExpandIconBg: string
|
725
|
+
tableSelectionColumnWidth: string
|
726
|
+
tableStickyScrollBarBg: string
|
727
|
+
tableStickyScrollBarRadius: string
|
728
|
+
tagDefaultBg: string
|
729
|
+
tagDefaultColor: string
|
730
|
+
tagFontSize: string
|
731
|
+
tagLineHeight: string
|
732
|
+
pickerBg: string
|
733
|
+
pickerBasicCellHoverColor: string
|
734
|
+
pickerBasicCellActiveWithRangeColor: string
|
735
|
+
pickerBasicCellHoverWithRangeColor: string
|
736
|
+
pickerBasicCellDisabledBg: string
|
737
|
+
pickerBorderColor: string
|
738
|
+
pickerDateHoverRangeBorderColor: string
|
739
|
+
pickerDateHoverRangeColor: string
|
740
|
+
pickerTimePanelColumnWidth: string
|
741
|
+
pickerTimePanelColumnHeight: string
|
742
|
+
pickerTimePanelCellHeight: string
|
743
|
+
pickerPanelCellHeight: string
|
744
|
+
pickerPanelCellWidth: string
|
745
|
+
pickerTextHeight: string
|
746
|
+
pickerPanelWithoutTimeCellHeight: string
|
747
|
+
calendarBg: string
|
748
|
+
calendarInputBg: string
|
749
|
+
calendarBorderColor: string
|
750
|
+
calendarItemActiveBg: string
|
751
|
+
calendarColumnActiveBg: string
|
752
|
+
calendarFullBg: string
|
753
|
+
calendarFullPanelBg: string
|
754
|
+
carouselDotWidth: string
|
755
|
+
carouselDotHeight: string
|
756
|
+
carouselDotActiveWidth: string
|
757
|
+
badgeHeight: string
|
758
|
+
badgeHeightSm: string
|
759
|
+
badgeDotSize: string
|
760
|
+
badgeFontSize: string
|
761
|
+
badgeFontSizeSm: string
|
762
|
+
badgeFontWeight: string
|
763
|
+
badgeStatusSize: string
|
764
|
+
badgeTextColor: string
|
765
|
+
badgeColor: string
|
766
|
+
rateStarColor: string
|
767
|
+
rateStarBg: string
|
768
|
+
rateStarSize: string
|
769
|
+
rateStarHoverScale: string
|
770
|
+
cardHeadColor: string
|
771
|
+
cardHeadBackground: string
|
772
|
+
cardHeadFontSize: string
|
773
|
+
cardHeadFontSizeSm: string
|
774
|
+
cardHeadPadding: string
|
775
|
+
cardHeadPaddingSm: string
|
776
|
+
cardHeadHeight: string
|
777
|
+
cardHeadHeightSm: string
|
778
|
+
cardInnerHeadPadding: string
|
779
|
+
cardPaddingBase: string
|
780
|
+
cardPaddingBaseSm: string
|
781
|
+
cardActionsBackground: string
|
782
|
+
cardActionsLiMargin: string
|
783
|
+
cardSkeletonBg: string
|
784
|
+
cardBackground: string
|
785
|
+
cardShadow: string
|
786
|
+
cardRadius: string
|
787
|
+
cardHeadTabsMarginBottom: string
|
788
|
+
cardHeadExtraColor: string
|
789
|
+
commentBg: string
|
790
|
+
commentPaddingBase: string
|
791
|
+
commentNestIndent: string
|
792
|
+
commentFontSizeBase: string
|
793
|
+
commentFontSizeSm: string
|
794
|
+
commentAuthorNameColor: string
|
795
|
+
commentAuthorTimeColor: string
|
796
|
+
commentActionColor: string
|
797
|
+
commentActionHoverColor: string
|
798
|
+
commentActionsMarginBottom: string
|
799
|
+
commentActionsMarginTop: string
|
800
|
+
commentContentDetailPMarginBottom: string
|
801
|
+
tabsCardHeadBackground: string
|
802
|
+
tabsCardHeight: string
|
803
|
+
tabsCardActiveColor: string
|
804
|
+
tabsCardHorizontalPadding: string
|
805
|
+
tabsCardHorizontalPaddingSm: string
|
806
|
+
tabsCardHorizontalPaddingLg: string
|
807
|
+
tabsTitleFontSize: string
|
808
|
+
tabsTitleFontSizeLg: string
|
809
|
+
tabsTitleFontSizeSm: string
|
810
|
+
tabsInkBarColor: string
|
811
|
+
tabsBarMargin: string
|
812
|
+
tabsHorizontalGutter: string
|
813
|
+
tabsHorizontalMargin: string
|
814
|
+
tabsHorizontalMarginRtl: string
|
815
|
+
tabsHorizontalPadding: string
|
816
|
+
tabsHorizontalPaddingLg: string
|
817
|
+
tabsHorizontalPaddingSm: string
|
818
|
+
tabsVerticalPadding: string
|
819
|
+
tabsVerticalMargin: string
|
820
|
+
tabsScrollingSize: string
|
821
|
+
tabsHighlightColor: string
|
822
|
+
tabsHoverColor: string
|
823
|
+
tabsActiveColor: string
|
824
|
+
tabsCardGutter: string
|
825
|
+
tabsCardTabActiveBorderTop: string
|
826
|
+
backTopColor: string
|
827
|
+
backTopBg: string
|
828
|
+
backTopHoverBg: string
|
829
|
+
avatarSizeBase: string
|
830
|
+
avatarSizeLg: string
|
831
|
+
avatarSizeSm: string
|
832
|
+
avatarFontSizeBase: string
|
833
|
+
avatarFontSizeLg: string
|
834
|
+
avatarFontSizeSm: string
|
835
|
+
avatarBg: string
|
836
|
+
avatarColor: string
|
837
|
+
avatarBorderRadius: string
|
838
|
+
avatarGroupOverlapping: string
|
839
|
+
avatarGroupSpace: string
|
840
|
+
avatarGroupBorderColor: string
|
841
|
+
switchHeight: string
|
842
|
+
switchSmHeight: string
|
843
|
+
switchMinWidth: string
|
844
|
+
switchSmMinWidth: string
|
845
|
+
switchDisabledOpacity: string
|
846
|
+
switchColor: string
|
847
|
+
switchBg: string
|
848
|
+
switchShadowColor: string
|
849
|
+
switchPadding: string
|
850
|
+
switchInnerMarginMin: string
|
851
|
+
switchInnerMarginMax: string
|
852
|
+
switchSmInnerMarginMin: string
|
853
|
+
switchSmInnerMarginMax: string
|
854
|
+
paginationItemBg: string
|
855
|
+
paginationItemSize: string
|
856
|
+
paginationItemSizeSm: string
|
857
|
+
paginationFontFamily: string
|
858
|
+
paginationFontWeightActive: string
|
859
|
+
paginationItemBgActive: string
|
860
|
+
paginationItemLinkBg: string
|
861
|
+
paginationItemDisabledColorActive: string
|
862
|
+
paginationItemDisabledBgActive: string
|
863
|
+
paginationItemInputBg: string
|
864
|
+
paginationMiniOptionsSizeChangerTop: string
|
865
|
+
pageHeaderPadding: string
|
866
|
+
pageHeaderPaddingVertical: string
|
867
|
+
pageHeaderPaddingBreadcrumb: string
|
868
|
+
pageHeaderContentPaddingVertical: string
|
869
|
+
pageHeaderBackColor: string
|
870
|
+
pageHeaderGhostBg: string
|
871
|
+
pageHeaderHeadingTitle: string
|
872
|
+
pageHeaderHeadingSubTitle: string
|
873
|
+
pageHeaderTabsTabFontSize: string
|
874
|
+
breadcrumbBaseColor: string
|
875
|
+
breadcrumbLastItemColor: string
|
876
|
+
breadcrumbFontSize: string
|
877
|
+
breadcrumbIconFontSize: string
|
878
|
+
breadcrumbLinkColor: string
|
879
|
+
breadcrumbLinkColorHover: string
|
880
|
+
breadcrumbSeparatorColor: string
|
881
|
+
breadcrumbSeparatorMargin: string
|
882
|
+
sliderMargin: string
|
883
|
+
sliderRailBackgroundColor: string
|
884
|
+
sliderRailBackgroundColorHover: string
|
885
|
+
sliderTrackBackgroundColor: string
|
886
|
+
sliderTrackBackgroundColorHover: string
|
887
|
+
sliderHandleBorderWidth: string
|
888
|
+
sliderHandleBackgroundColor: string
|
889
|
+
sliderHandleColor: string
|
890
|
+
sliderHandleColorHover: string
|
891
|
+
sliderHandleColorFocus: string
|
892
|
+
sliderHandleColorFocusShadow: string
|
893
|
+
sliderHandleColorTooltipOpen: string
|
894
|
+
sliderHandleSize: string
|
895
|
+
sliderHandleMarginTop: string
|
896
|
+
sliderHandleShadow: string
|
897
|
+
sliderDotBorderColor: string
|
898
|
+
sliderDotBorderColorActive: string
|
899
|
+
sliderDisabledColor: string
|
900
|
+
sliderDisabledBackgroundColor: string
|
901
|
+
treeBg: string
|
902
|
+
treeTitleHeight: string
|
903
|
+
treeChildPadding: string
|
904
|
+
treeDirectorySelectedColor: string
|
905
|
+
treeDirectorySelectedBg: string
|
906
|
+
treeNodeHoverBg: string
|
907
|
+
treeNodeSelectedBg: string
|
908
|
+
collapseHeaderPadding: string
|
909
|
+
collapseHeaderPaddingExtra: string
|
910
|
+
collapseHeaderBg: string
|
911
|
+
collapseContentPadding: string
|
912
|
+
collapseContentBg: string
|
913
|
+
collapseHeaderArrowLeft: string
|
914
|
+
skeletonColor: string
|
915
|
+
skeletonToColor: string
|
916
|
+
skeletonParagraphMarginTop: string
|
917
|
+
skeletonParagraphLiMarginTop: string
|
918
|
+
skeletonParagraphLiHeight: string
|
919
|
+
skeletonTitleHeight: string
|
920
|
+
skeletonTitleParagraphMarginTop: string
|
921
|
+
transferHeaderHeight: string
|
922
|
+
transferItemHeight: string
|
923
|
+
transferDisabledBg: string
|
924
|
+
transferListHeight: string
|
925
|
+
transferItemHoverBg: string
|
926
|
+
transferItemSelectedHoverBg: string
|
927
|
+
transferItemPaddingVertical: string
|
928
|
+
transferListSearchIconTop: string
|
929
|
+
messageNoticeContentPadding: string
|
930
|
+
messageNoticeContentBg: string
|
931
|
+
waveAnimationWidth: string
|
932
|
+
alertSuccessBorderColor: string
|
933
|
+
alertSuccessBgColor: string
|
934
|
+
alertSuccessIconColor: string
|
935
|
+
alertInfoBorderColor: string
|
936
|
+
alertInfoBgColor: string
|
937
|
+
alertInfoIconColor: string
|
938
|
+
alertWarningBorderColor: string
|
939
|
+
alertWarningBgColor: string
|
940
|
+
alertWarningIconColor: string
|
941
|
+
alertErrorBorderColor: string
|
942
|
+
alertErrorBgColor: string
|
943
|
+
alertErrorIconColor: string
|
944
|
+
alertMessageColor: string
|
945
|
+
alertTextColor: string
|
946
|
+
alertCloseColor: string
|
947
|
+
alertCloseHoverColor: string
|
948
|
+
alertNoIconPaddingVertical: string
|
949
|
+
alertWithDescriptionNoIconPaddingVertical: string
|
950
|
+
alertWithDescriptionPaddingVertical: string
|
951
|
+
alertWithDescriptionPadding: string
|
952
|
+
alertIconTop: string
|
953
|
+
alertWithDescriptionIconSize: string
|
954
|
+
listHeaderBackground: string
|
955
|
+
listFooterBackground: string
|
956
|
+
listEmptyTextPadding: string
|
957
|
+
listItemPadding: string
|
958
|
+
listItemPaddingSm: string
|
959
|
+
listItemPaddingLg: string
|
960
|
+
listItemMetaMarginBottom: string
|
961
|
+
listItemMetaAvatarMarginRight: string
|
962
|
+
listItemMetaTitleMarginBottom: string
|
963
|
+
listCustomizeCardBg: string
|
964
|
+
listItemMetaDescriptionFontSize: string
|
965
|
+
statisticTitleFontSize: string
|
966
|
+
statisticContentFontSize: string
|
967
|
+
statisticUnitFontSize: string
|
968
|
+
statisticFontFamily: string
|
969
|
+
drawerHeaderPadding: string
|
970
|
+
drawerBodyPadding: string
|
971
|
+
drawerBg: string
|
972
|
+
drawerFooterPaddingVertical: string
|
973
|
+
drawerFooterPaddingHorizontal: string
|
974
|
+
drawerHeaderCloseSize: string
|
975
|
+
drawerTitleFontSize: string
|
976
|
+
drawerTitleLineHeight: string
|
977
|
+
timelineWidth: string
|
978
|
+
timelineColor: string
|
979
|
+
timelineDotBorderWidth: string
|
980
|
+
timelineDotColor: string
|
981
|
+
timelineDotBg: string
|
982
|
+
timelineItemPaddingBottom: string
|
983
|
+
typographyTitleFontWeight: string
|
984
|
+
typographyTitleMarginTop: string
|
985
|
+
typographyTitleMarginBottom: string
|
986
|
+
uploadActionsColor: string
|
987
|
+
processTailColor: string
|
988
|
+
stepsNavArrowColor: string
|
989
|
+
stepsBackground: string
|
990
|
+
stepsIconSize: string
|
991
|
+
stepsIconCustomSize: string
|
992
|
+
stepsIconCustomTop: string
|
993
|
+
stepsIconCustomFontSize: string
|
994
|
+
stepsIconTop: string
|
995
|
+
stepsIconFontSize: string
|
996
|
+
stepsIconMargin: string
|
997
|
+
stepsTitleLineHeight: string
|
998
|
+
stepsSmallIconSize: string
|
999
|
+
stepsSmallIconMargin: string
|
1000
|
+
stepsDotSize: string
|
1001
|
+
stepsDotTop: string
|
1002
|
+
stepsCurrentDotSize: string
|
1003
|
+
stepsDescriptionMaxWidth: string
|
1004
|
+
stepsNavContentMaxWidth: string
|
1005
|
+
stepsVerticalIconWidth: string
|
1006
|
+
stepsVerticalTailWidth: string
|
1007
|
+
stepsVerticalTailWidthSm: string
|
1008
|
+
notificationBg: string
|
1009
|
+
notificationPaddingVertical: string
|
1010
|
+
notificationPaddingHorizontal: string
|
1011
|
+
resultTitleFontSize: string
|
1012
|
+
resultSubtitleFontSize: string
|
1013
|
+
resultIconFontSize: string
|
1014
|
+
resultExtraMargin: string
|
1015
|
+
imageSizeBase: string
|
1016
|
+
imageFontSizeBase: string
|
1017
|
+
imageBg: string
|
1018
|
+
imageColor: string
|
1019
|
+
imageMaskFontSize: string
|
1020
|
+
imagePreviewOperationSize: string
|
1021
|
+
imagePreviewOperationColor: string
|
1022
|
+
imagePreviewOperationDisabledColor: string
|
1023
|
+
}
|
1024
|
+
|
1025
|
+
declare const useTheme: () => {
|
1026
|
+
theme: {
|
1027
|
+
blueBase: string
|
1028
|
+
blue1: string
|
1029
|
+
blue2: string
|
1030
|
+
blue3: string
|
1031
|
+
blue4: string
|
1032
|
+
blue5: string
|
1033
|
+
blue6: string
|
1034
|
+
blue7: string
|
1035
|
+
blue8: string
|
1036
|
+
blue9: string
|
1037
|
+
blue10: string
|
1038
|
+
purpleBase: string
|
1039
|
+
purple1: string
|
1040
|
+
purple2: string
|
1041
|
+
purple3: string
|
1042
|
+
purple4: string
|
1043
|
+
purple5: string
|
1044
|
+
purple6: string
|
1045
|
+
purple7: string
|
1046
|
+
purple8: string
|
1047
|
+
purple9: string
|
1048
|
+
purple10: string
|
1049
|
+
cyanBase: string
|
1050
|
+
cyan1: string
|
1051
|
+
cyan2: string
|
1052
|
+
cyan3: string
|
1053
|
+
cyan4: string
|
1054
|
+
cyan5: string
|
1055
|
+
cyan6: string
|
1056
|
+
cyan7: string
|
1057
|
+
cyan8: string
|
1058
|
+
cyan9: string
|
1059
|
+
cyan10: string
|
1060
|
+
greenBase: string
|
1061
|
+
green1: string
|
1062
|
+
green2: string
|
1063
|
+
green3: string
|
1064
|
+
green4: string
|
1065
|
+
green5: string
|
1066
|
+
green6: string
|
1067
|
+
green7: string
|
1068
|
+
green8: string
|
1069
|
+
green9: string
|
1070
|
+
green10: string
|
1071
|
+
magentaBase: string
|
1072
|
+
magenta1: string
|
1073
|
+
magenta2: string
|
1074
|
+
magenta3: string
|
1075
|
+
magenta4: string
|
1076
|
+
magenta5: string
|
1077
|
+
magenta6: string
|
1078
|
+
magenta7: string
|
1079
|
+
magenta8: string
|
1080
|
+
magenta9: string
|
1081
|
+
magenta10: string
|
1082
|
+
pinkBase: string
|
1083
|
+
pink1: string
|
1084
|
+
pink2: string
|
1085
|
+
pink3: string
|
1086
|
+
pink4: string
|
1087
|
+
pink5: string
|
1088
|
+
pink6: string
|
1089
|
+
pink7: string
|
1090
|
+
pink8: string
|
1091
|
+
pink9: string
|
1092
|
+
pink10: string
|
1093
|
+
redBase: string
|
1094
|
+
red1: string
|
1095
|
+
red2: string
|
1096
|
+
red3: string
|
1097
|
+
red4: string
|
1098
|
+
red5: string
|
1099
|
+
red6: string
|
1100
|
+
red7: string
|
1101
|
+
red8: string
|
1102
|
+
red9: string
|
1103
|
+
red10: string
|
1104
|
+
orangeBase: string
|
1105
|
+
orange1: string
|
1106
|
+
orange2: string
|
1107
|
+
orange3: string
|
1108
|
+
orange4: string
|
1109
|
+
orange5: string
|
1110
|
+
orange6: string
|
1111
|
+
orange7: string
|
1112
|
+
orange8: string
|
1113
|
+
orange9: string
|
1114
|
+
orange10: string
|
1115
|
+
yellowBase: string
|
1116
|
+
yellow1: string
|
1117
|
+
yellow2: string
|
1118
|
+
yellow3: string
|
1119
|
+
yellow4: string
|
1120
|
+
yellow5: string
|
1121
|
+
yellow6: string
|
1122
|
+
yellow7: string
|
1123
|
+
yellow8: string
|
1124
|
+
yellow9: string
|
1125
|
+
yellow10: string
|
1126
|
+
volcanoBase: string
|
1127
|
+
volcano1: string
|
1128
|
+
volcano2: string
|
1129
|
+
volcano3: string
|
1130
|
+
volcano4: string
|
1131
|
+
volcano5: string
|
1132
|
+
volcano6: string
|
1133
|
+
volcano7: string
|
1134
|
+
volcano8: string
|
1135
|
+
volcano9: string
|
1136
|
+
volcano10: string
|
1137
|
+
geekblueBase: string
|
1138
|
+
geekblue1: string
|
1139
|
+
geekblue2: string
|
1140
|
+
geekblue3: string
|
1141
|
+
geekblue4: string
|
1142
|
+
geekblue5: string
|
1143
|
+
geekblue6: string
|
1144
|
+
geekblue7: string
|
1145
|
+
geekblue8: string
|
1146
|
+
geekblue9: string
|
1147
|
+
geekblue10: string
|
1148
|
+
limeBase: string
|
1149
|
+
lime1: string
|
1150
|
+
lime2: string
|
1151
|
+
lime3: string
|
1152
|
+
lime4: string
|
1153
|
+
lime5: string
|
1154
|
+
lime6: string
|
1155
|
+
lime7: string
|
1156
|
+
lime8: string
|
1157
|
+
lime9: string
|
1158
|
+
lime10: string
|
1159
|
+
goldBase: string
|
1160
|
+
gold1: string
|
1161
|
+
gold2: string
|
1162
|
+
gold3: string
|
1163
|
+
gold4: string
|
1164
|
+
gold5: string
|
1165
|
+
gold6: string
|
1166
|
+
gold7: string
|
1167
|
+
gold8: string
|
1168
|
+
gold9: string
|
1169
|
+
gold10: string
|
1170
|
+
presetColors: string
|
1171
|
+
theme: string
|
1172
|
+
antPrefix: string
|
1173
|
+
htmlSelector: string
|
1174
|
+
primaryColor: string
|
1175
|
+
primaryColorHover: string
|
1176
|
+
primaryColorActive: string
|
1177
|
+
primaryColorOutline: string
|
1178
|
+
processingColor: string
|
1179
|
+
infoColor: string
|
1180
|
+
infoColorDeprecatedBg: string
|
1181
|
+
infoColorDeprecatedBorder: string
|
1182
|
+
successColor: string
|
1183
|
+
successColorHover: string
|
1184
|
+
successColorActive: string
|
1185
|
+
successColorOutline: string
|
1186
|
+
successColorDeprecatedBg: string
|
1187
|
+
successColorDeprecatedBorder: string
|
1188
|
+
warningColor: string
|
1189
|
+
warningColorHover: string
|
1190
|
+
warningColorActive: string
|
1191
|
+
warningColorOutline: string
|
1192
|
+
warningColorDeprecatedBg: string
|
1193
|
+
warningColorDeprecatedBorder: string
|
1194
|
+
errorColor: string
|
1195
|
+
errorColorHover: string
|
1196
|
+
errorColorActive: string
|
1197
|
+
errorColorOutline: string
|
1198
|
+
errorColorDeprecatedBg: string
|
1199
|
+
errorColorDeprecatedBorder: string
|
1200
|
+
highlightColor: string
|
1201
|
+
normalColor: string
|
1202
|
+
white: string
|
1203
|
+
black: string
|
1204
|
+
primary1: string
|
1205
|
+
primary2: string
|
1206
|
+
primary3: string
|
1207
|
+
primary4: string
|
1208
|
+
primary5: string
|
1209
|
+
primary6: string
|
1210
|
+
primary7: string
|
1211
|
+
primary8: string
|
1212
|
+
primary9: string
|
1213
|
+
primary10: string
|
1214
|
+
bodyBackground: string
|
1215
|
+
componentBackground: string
|
1216
|
+
popoverBackground: string
|
1217
|
+
popoverCustomizeBorderColor: string
|
1218
|
+
fontFamily: string
|
1219
|
+
codeFamily: string
|
1220
|
+
textColor: string
|
1221
|
+
textColorSecondary: string
|
1222
|
+
textColorInverse: string
|
1223
|
+
iconColor: string
|
1224
|
+
iconColorHover: string
|
1225
|
+
headingColor: string
|
1226
|
+
textColorDark: string
|
1227
|
+
textColorSecondaryDark: string
|
1228
|
+
textSelectionBg: string
|
1229
|
+
fontVariantBase: string
|
1230
|
+
fontFeatureSettingsBase: string
|
1231
|
+
fontSizeBase: string
|
1232
|
+
fontSizeLg: string
|
1233
|
+
fontSizeSm: string
|
1234
|
+
heading1Size: string
|
1235
|
+
heading2Size: string
|
1236
|
+
heading3Size: string
|
1237
|
+
heading4Size: string
|
1238
|
+
heading5Size: string
|
1239
|
+
lineHeightBase: string
|
1240
|
+
borderRadiusBase: string
|
1241
|
+
borderRadiusSm: string
|
1242
|
+
paddingLg: string
|
1243
|
+
paddingMd: string
|
1244
|
+
paddingSm: string
|
1245
|
+
paddingXs: string
|
1246
|
+
paddingXss: string
|
1247
|
+
controlPaddingHorizontal: string
|
1248
|
+
controlPaddingHorizontalSm: string
|
1249
|
+
marginLg: string
|
1250
|
+
marginMd: string
|
1251
|
+
marginSm: string
|
1252
|
+
marginXs: string
|
1253
|
+
marginXss: string
|
1254
|
+
heightBase: string
|
1255
|
+
heightLg: string
|
1256
|
+
heightSm: string
|
1257
|
+
itemActiveBg: string
|
1258
|
+
itemHoverBg: string
|
1259
|
+
iconfontCssPrefix: string
|
1260
|
+
linkColor: string
|
1261
|
+
linkHoverColor: string
|
1262
|
+
linkActiveColor: string
|
1263
|
+
linkDecoration: string
|
1264
|
+
linkHoverDecoration: string
|
1265
|
+
linkFocusDecoration: string
|
1266
|
+
linkFocusOutline: string
|
1267
|
+
easeBaseOut: string
|
1268
|
+
easeBaseIn: string
|
1269
|
+
easeOut: string
|
1270
|
+
easeIn: string
|
1271
|
+
easeInOut: string
|
1272
|
+
easeOutBack: string
|
1273
|
+
easeInBack: string
|
1274
|
+
easeInOutBack: string
|
1275
|
+
easeOutCirc: string
|
1276
|
+
easeInCirc: string
|
1277
|
+
easeInOutCirc: string
|
1278
|
+
easeOutQuint: string
|
1279
|
+
easeInQuint: string
|
1280
|
+
easeInOutQuint: string
|
1281
|
+
borderColorBase: string
|
1282
|
+
borderColorSplit: string
|
1283
|
+
borderColorInverse: string
|
1284
|
+
borderWidthBase: string
|
1285
|
+
borderStyleBase: string
|
1286
|
+
outlineBlurSize: string
|
1287
|
+
outlineWidth: string
|
1288
|
+
outlineColor: string
|
1289
|
+
outlineFade: string
|
1290
|
+
backgroundColorLight: string
|
1291
|
+
backgroundColorBase: string
|
1292
|
+
disabledColor: string
|
1293
|
+
disabledBg: string
|
1294
|
+
disabledActiveBg: string
|
1295
|
+
disabledColorDark: string
|
1296
|
+
shadowColor: string
|
1297
|
+
shadowColorInverse: string
|
1298
|
+
boxShadowBase: string
|
1299
|
+
shadow1Up: string
|
1300
|
+
shadow1Down: string
|
1301
|
+
shadow1Left: string
|
1302
|
+
shadow1Right: string
|
1303
|
+
shadow2: string
|
1304
|
+
btnFontWeight: string
|
1305
|
+
btnBorderRadiusBase: string
|
1306
|
+
btnBorderRadiusSm: string
|
1307
|
+
btnBorderWidth: string
|
1308
|
+
btnBorderStyle: string
|
1309
|
+
btnShadow: string
|
1310
|
+
btnPrimaryShadow: string
|
1311
|
+
btnTextShadow: string
|
1312
|
+
btnPrimaryColor: string
|
1313
|
+
btnPrimaryBg: string
|
1314
|
+
btnDefaultColor: string
|
1315
|
+
btnDefaultBg: string
|
1316
|
+
btnDefaultBorder: string
|
1317
|
+
btnDangerColor: string
|
1318
|
+
btnDangerBg: string
|
1319
|
+
btnDangerBorder: string
|
1320
|
+
btnDisableColor: string
|
1321
|
+
btnDisableBg: string
|
1322
|
+
btnDisableBorder: string
|
1323
|
+
btnDefaultGhostColor: string
|
1324
|
+
btnDefaultGhostBg: string
|
1325
|
+
btnDefaultGhostBorder: string
|
1326
|
+
btnFontSizeLg: string
|
1327
|
+
btnFontSizeSm: string
|
1328
|
+
btnPaddingHorizontalBase: string
|
1329
|
+
btnPaddingHorizontalLg: string
|
1330
|
+
btnPaddingHorizontalSm: string
|
1331
|
+
btnHeightBase: string
|
1332
|
+
btnHeightLg: string
|
1333
|
+
btnHeightSm: string
|
1334
|
+
btnLineHeight: string
|
1335
|
+
btnCircleSize: string
|
1336
|
+
btnCircleSizeLg: string
|
1337
|
+
btnCircleSizeSm: string
|
1338
|
+
btnSquareSize: string
|
1339
|
+
btnSquareSizeLg: string
|
1340
|
+
btnSquareSizeSm: string
|
1341
|
+
btnSquareOnlyIconSize: string
|
1342
|
+
btnSquareOnlyIconSizeSm: string
|
1343
|
+
btnSquareOnlyIconSizeLg: string
|
1344
|
+
btnGroupBorder: string
|
1345
|
+
btnLinkHoverBg: string
|
1346
|
+
btnTextHoverBg: string
|
1347
|
+
checkboxSize: string
|
1348
|
+
checkboxColor: string
|
1349
|
+
checkboxCheckColor: string
|
1350
|
+
checkboxCheckBg: string
|
1351
|
+
checkboxBorderWidth: string
|
1352
|
+
checkboxBorderRadius: string
|
1353
|
+
checkboxGroupItemMarginRight: string
|
1354
|
+
descriptionsBg: string
|
1355
|
+
descriptionsTitleMarginBottom: string
|
1356
|
+
descriptionsDefaultPadding: string
|
1357
|
+
descriptionsMiddlePadding: string
|
1358
|
+
descriptionsSmallPadding: string
|
1359
|
+
descriptionsItemPaddingBottom: string
|
1360
|
+
descriptionsItemTrailingColon: string
|
1361
|
+
descriptionsItemLabelColonMarginRight: string
|
1362
|
+
descriptionsItemLabelColonMarginLeft: string
|
1363
|
+
descriptionsExtraColor: string
|
1364
|
+
dividerTextPadding: string
|
1365
|
+
dividerOrientationMargin: string
|
1366
|
+
dividerColor: string
|
1367
|
+
dividerVerticalGutter: string
|
1368
|
+
dropdownSelectedColor: string
|
1369
|
+
dropdownMenuSubmenuDisabledBg: string
|
1370
|
+
dropdownSelectedBg: string
|
1371
|
+
emptyFontSize: string
|
1372
|
+
radioSize: string
|
1373
|
+
radioTop: string
|
1374
|
+
radioBorderWidth: string
|
1375
|
+
radioDotSize: string
|
1376
|
+
radioDotColor: string
|
1377
|
+
radioDotDisabledColor: string
|
1378
|
+
radioSolidCheckedColor: string
|
1379
|
+
radioButtonBg: string
|
1380
|
+
radioButtonCheckedBg: string
|
1381
|
+
radioButtonColor: string
|
1382
|
+
radioButtonHoverColor: string
|
1383
|
+
radioButtonActiveColor: string
|
1384
|
+
radioButtonPaddingHorizontal: string
|
1385
|
+
radioDisabledButtonCheckedBg: string
|
1386
|
+
radioDisabledButtonCheckedColor: string
|
1387
|
+
radioWrapperMarginRight: string
|
1388
|
+
screenXs: string
|
1389
|
+
screenXsMin: string
|
1390
|
+
screenSm: string
|
1391
|
+
screenSmMin: string
|
1392
|
+
screenMd: string
|
1393
|
+
screenMdMin: string
|
1394
|
+
screenLg: string
|
1395
|
+
screenLgMin: string
|
1396
|
+
screenXl: string
|
1397
|
+
screenXlMin: string
|
1398
|
+
screenXxl: string
|
1399
|
+
screenXxlMin: string
|
1400
|
+
screenXsMax: string
|
1401
|
+
screenSmMax: string
|
1402
|
+
screenMdMax: string
|
1403
|
+
screenLgMax: string
|
1404
|
+
screenXlMax: string
|
1405
|
+
gridColumns: string
|
1406
|
+
layoutBodyBackground: string
|
1407
|
+
layoutHeaderBackground: string
|
1408
|
+
layoutHeaderHeight: string
|
1409
|
+
layoutHeaderPadding: string
|
1410
|
+
layoutHeaderColor: string
|
1411
|
+
layoutFooterPadding: string
|
1412
|
+
layoutFooterBackground: string
|
1413
|
+
layoutSiderBackground: string
|
1414
|
+
layoutTriggerHeight: string
|
1415
|
+
layoutTriggerBackground: string
|
1416
|
+
layoutTriggerColor: string
|
1417
|
+
layoutZeroTriggerWidth: string
|
1418
|
+
layoutZeroTriggerHeight: string
|
1419
|
+
layoutSiderBackgroundLight: string
|
1420
|
+
layoutTriggerBackgroundLight: string
|
1421
|
+
layoutTriggerColorLight: string
|
1422
|
+
zindexBadge: string
|
1423
|
+
zindexTableFixed: string
|
1424
|
+
zindexAffix: string
|
1425
|
+
zindexBackTop: string
|
1426
|
+
zindexPickerPanel: string
|
1427
|
+
zindexPopupClose: string
|
1428
|
+
zindexModal: string
|
1429
|
+
zindexModalMask: string
|
1430
|
+
zindexMessage: string
|
1431
|
+
zindexNotification: string
|
1432
|
+
zindexPopover: string
|
1433
|
+
zindexDropdown: string
|
1434
|
+
zindexPicker: string
|
1435
|
+
zindexPopoconfirm: string
|
1436
|
+
zindexTooltip: string
|
1437
|
+
zindexImage: string
|
1438
|
+
animationDurationSlow: string
|
1439
|
+
animationDurationBase: string
|
1440
|
+
animationDurationFast: string
|
1441
|
+
collapsePanelBorderRadius: string
|
1442
|
+
dropdownMenuBg: string
|
1443
|
+
dropdownVerticalPadding: string
|
1444
|
+
dropdownEdgeChildVerticalPadding: string
|
1445
|
+
dropdownFontSize: string
|
1446
|
+
dropdownLineHeight: string
|
1447
|
+
labelRequiredColor: string
|
1448
|
+
labelColor: string
|
1449
|
+
formWarningInputBg: string
|
1450
|
+
formItemMarginBottom: string
|
1451
|
+
formItemTrailingColon: string
|
1452
|
+
formVerticalLabelPadding: string
|
1453
|
+
formVerticalLabelMargin: string
|
1454
|
+
formItemLabelFontSize: string
|
1455
|
+
formItemLabelHeight: string
|
1456
|
+
formItemLabelColonMarginRight: string
|
1457
|
+
formItemLabelColonMarginLeft: string
|
1458
|
+
formErrorInputBg: string
|
1459
|
+
inputHeightBase: string
|
1460
|
+
inputHeightLg: string
|
1461
|
+
inputHeightSm: string
|
1462
|
+
inputPaddingHorizontal: string
|
1463
|
+
inputPaddingHorizontalBase: string
|
1464
|
+
inputPaddingHorizontalSm: string
|
1465
|
+
inputPaddingHorizontalLg: string
|
1466
|
+
inputPaddingVerticalBase: string
|
1467
|
+
inputPaddingVerticalSm: string
|
1468
|
+
inputPaddingVerticalLg: string
|
1469
|
+
inputPlaceholderColor: string
|
1470
|
+
inputColor: string
|
1471
|
+
inputIconColor: string
|
1472
|
+
inputBorderColor: string
|
1473
|
+
inputBg: string
|
1474
|
+
inputNumberHoverBorderColor: string
|
1475
|
+
inputNumberHandlerActiveBg: string
|
1476
|
+
inputNumberHandlerHoverBg: string
|
1477
|
+
inputNumberHandlerBg: string
|
1478
|
+
inputNumberHandlerBorderColor: string
|
1479
|
+
inputAddonBg: string
|
1480
|
+
inputHoverBorderColor: string
|
1481
|
+
inputDisabledBg: string
|
1482
|
+
inputOutlineOffset: string
|
1483
|
+
inputIconHoverColor: string
|
1484
|
+
inputDisabledColor: string
|
1485
|
+
mentionsDropdownBg: string
|
1486
|
+
mentionsDropdownMenuItemHoverBg: string
|
1487
|
+
selectBorderColor: string
|
1488
|
+
selectItemSelectedColor: string
|
1489
|
+
selectItemSelectedFontWeight: string
|
1490
|
+
selectDropdownBg: string
|
1491
|
+
selectItemSelectedBg: string
|
1492
|
+
selectItemActiveBg: string
|
1493
|
+
selectDropdownVerticalPadding: string
|
1494
|
+
selectDropdownFontSize: string
|
1495
|
+
selectDropdownLineHeight: string
|
1496
|
+
selectDropdownHeight: string
|
1497
|
+
selectBackground: string
|
1498
|
+
selectClearBackground: string
|
1499
|
+
selectSelectionItemBg: string
|
1500
|
+
selectSelectionItemBorderColor: string
|
1501
|
+
selectSingleItemHeightLg: string
|
1502
|
+
selectMultipleItemHeight: string
|
1503
|
+
selectMultipleItemHeightLg: string
|
1504
|
+
selectMultipleItemSpacingHalf: string
|
1505
|
+
selectMultipleDisabledBackground: string
|
1506
|
+
selectMultipleItemDisabledColor: string
|
1507
|
+
selectMultipleItemDisabledBorderColor: string
|
1508
|
+
cascaderBg: string
|
1509
|
+
cascaderItemSelectedBg: string
|
1510
|
+
cascaderMenuBg: string
|
1511
|
+
cascaderMenuBorderColorSplit: string
|
1512
|
+
cascaderDropdownVerticalPadding: string
|
1513
|
+
cascaderDropdownEdgeChildVerticalPadding: string
|
1514
|
+
cascaderDropdownFontSize: string
|
1515
|
+
cascaderDropdownLineHeight: string
|
1516
|
+
anchorBg: string
|
1517
|
+
anchorBorderColor: string
|
1518
|
+
anchorLinkTop: string
|
1519
|
+
anchorLinkLeft: string
|
1520
|
+
anchorLinkPadding: string
|
1521
|
+
tooltipMaxWidth: string
|
1522
|
+
tooltipColor: string
|
1523
|
+
tooltipBg: string
|
1524
|
+
tooltipArrowWidth: string
|
1525
|
+
tooltipDistance: string
|
1526
|
+
tooltipArrowColor: string
|
1527
|
+
popoverBg: string
|
1528
|
+
popoverColor: string
|
1529
|
+
popoverMinWidth: string
|
1530
|
+
popoverMinHeight: string
|
1531
|
+
popoverArrowWidth: string
|
1532
|
+
popoverArrowColor: string
|
1533
|
+
popoverArrowOuterColor: string
|
1534
|
+
popoverDistance: string
|
1535
|
+
popoverPaddingHorizontal: string
|
1536
|
+
modalHeaderPaddingVertical: string
|
1537
|
+
modalHeaderPaddingHorizontal: string
|
1538
|
+
modalBodyPadding: string
|
1539
|
+
modalHeaderBg: string
|
1540
|
+
modalHeaderPadding: string
|
1541
|
+
modalHeaderBorderWidth: string
|
1542
|
+
modalHeaderBorderStyle: string
|
1543
|
+
modalHeaderTitleLineHeight: string
|
1544
|
+
modalHeaderTitleFontSize: string
|
1545
|
+
modalHeaderBorderColorSplit: string
|
1546
|
+
modalHeaderCloseSize: string
|
1547
|
+
modalContentBg: string
|
1548
|
+
modalHeadingColor: string
|
1549
|
+
modalCloseColor: string
|
1550
|
+
modalFooterBg: string
|
1551
|
+
modalFooterBorderColorSplit: string
|
1552
|
+
modalFooterBorderStyle: string
|
1553
|
+
modalFooterPaddingVertical: string
|
1554
|
+
modalFooterPaddingHorizontal: string
|
1555
|
+
modalFooterBorderWidth: string
|
1556
|
+
modalMaskBg: string
|
1557
|
+
modalConfirmBodyPadding: string
|
1558
|
+
modalConfirmTitleFontSize: string
|
1559
|
+
progressDefaultColor: string
|
1560
|
+
progressRemainingColor: string
|
1561
|
+
progressInfoTextColor: string
|
1562
|
+
progressRadius: string
|
1563
|
+
progressStepsItemBg: string
|
1564
|
+
progressTextFontSize: string
|
1565
|
+
progressTextColor: string
|
1566
|
+
progressCircleTextFontSize: string
|
1567
|
+
menuInlineToplevelItemHeight: string
|
1568
|
+
menuItemHeight: string
|
1569
|
+
menuItemGroupHeight: string
|
1570
|
+
menuCollapsedWidth: string
|
1571
|
+
menuBg: string
|
1572
|
+
menuPopupBg: string
|
1573
|
+
menuItemColor: string
|
1574
|
+
menuInlineSubmenuBg: string
|
1575
|
+
menuHighlightColor: string
|
1576
|
+
menuHighlightDangerColor: string
|
1577
|
+
menuItemActiveBg: string
|
1578
|
+
menuItemActiveDangerBg: string
|
1579
|
+
menuItemActiveBorderWidth: string
|
1580
|
+
menuItemGroupTitleColor: string
|
1581
|
+
menuItemVerticalMargin: string
|
1582
|
+
menuItemFontSize: string
|
1583
|
+
menuItemBoundaryMargin: string
|
1584
|
+
menuItemPaddingHorizontal: string
|
1585
|
+
menuItemPadding: string
|
1586
|
+
menuHorizontalLineHeight: string
|
1587
|
+
menuIconMarginRight: string
|
1588
|
+
menuIconSize: string
|
1589
|
+
menuIconSizeLg: string
|
1590
|
+
menuItemGroupTitleFontSize: string
|
1591
|
+
menuDarkColor: string
|
1592
|
+
menuDarkDangerColor: string
|
1593
|
+
menuDarkBg: string
|
1594
|
+
menuDarkArrowColor: string
|
1595
|
+
menuDarkInlineSubmenuBg: string
|
1596
|
+
menuDarkHighlightColor: string
|
1597
|
+
menuDarkItemActiveBg: string
|
1598
|
+
menuDarkItemActiveDangerBg: string
|
1599
|
+
menuDarkSelectedItemIconColor: string
|
1600
|
+
menuDarkSelectedItemTextColor: string
|
1601
|
+
menuDarkItemHoverBg: string
|
1602
|
+
spinDotSizeSm: string
|
1603
|
+
spinDotSize: string
|
1604
|
+
spinDotSizeLg: string
|
1605
|
+
tableBg: string
|
1606
|
+
tableHeaderBg: string
|
1607
|
+
tableHeaderColor: string
|
1608
|
+
tableHeaderSortBg: string
|
1609
|
+
tableBodySortBg: string
|
1610
|
+
tableRowHoverBg: string
|
1611
|
+
tableSelectedRowColor: string
|
1612
|
+
tableSelectedRowBg: string
|
1613
|
+
tableBodySelectedSortBg: string
|
1614
|
+
tableSelectedRowHoverBg: string
|
1615
|
+
tableExpandedRowBg: string
|
1616
|
+
tablePaddingVertical: string
|
1617
|
+
tablePaddingHorizontal: string
|
1618
|
+
tablePaddingVerticalMd: string
|
1619
|
+
tablePaddingHorizontalMd: string
|
1620
|
+
tablePaddingVerticalSm: string
|
1621
|
+
tablePaddingHorizontalSm: string
|
1622
|
+
tableBorderColor: string
|
1623
|
+
tableBorderRadiusBase: string
|
1624
|
+
tableFooterBg: string
|
1625
|
+
tableFooterColor: string
|
1626
|
+
tableHeaderBgSm: string
|
1627
|
+
tableFontSize: string
|
1628
|
+
tableFontSizeMd: string
|
1629
|
+
tableFontSizeSm: string
|
1630
|
+
tableHeaderCellSplitColor: string
|
1631
|
+
tableHeaderSortActiveBg: string
|
1632
|
+
tableFixedHeaderSortActiveBg: string
|
1633
|
+
tableHeaderFilterActiveBg: string
|
1634
|
+
tableFilterBtnsBg: string
|
1635
|
+
tableFilterDropdownBg: string
|
1636
|
+
tableExpandIconBg: string
|
1637
|
+
tableSelectionColumnWidth: string
|
1638
|
+
tableStickyScrollBarBg: string
|
1639
|
+
tableStickyScrollBarRadius: string
|
1640
|
+
tagDefaultBg: string
|
1641
|
+
tagDefaultColor: string
|
1642
|
+
tagFontSize: string
|
1643
|
+
tagLineHeight: string
|
1644
|
+
pickerBg: string
|
1645
|
+
pickerBasicCellHoverColor: string
|
1646
|
+
pickerBasicCellActiveWithRangeColor: string
|
1647
|
+
pickerBasicCellHoverWithRangeColor: string
|
1648
|
+
pickerBasicCellDisabledBg: string
|
1649
|
+
pickerBorderColor: string
|
1650
|
+
pickerDateHoverRangeBorderColor: string
|
1651
|
+
pickerDateHoverRangeColor: string
|
1652
|
+
pickerTimePanelColumnWidth: string
|
1653
|
+
pickerTimePanelColumnHeight: string
|
1654
|
+
pickerTimePanelCellHeight: string
|
1655
|
+
pickerPanelCellHeight: string
|
1656
|
+
pickerPanelCellWidth: string
|
1657
|
+
pickerTextHeight: string
|
1658
|
+
pickerPanelWithoutTimeCellHeight: string
|
1659
|
+
calendarBg: string
|
1660
|
+
calendarInputBg: string
|
1661
|
+
calendarBorderColor: string
|
1662
|
+
calendarItemActiveBg: string
|
1663
|
+
calendarColumnActiveBg: string
|
1664
|
+
calendarFullBg: string
|
1665
|
+
calendarFullPanelBg: string
|
1666
|
+
carouselDotWidth: string
|
1667
|
+
carouselDotHeight: string
|
1668
|
+
carouselDotActiveWidth: string
|
1669
|
+
badgeHeight: string
|
1670
|
+
badgeHeightSm: string
|
1671
|
+
badgeDotSize: string
|
1672
|
+
badgeFontSize: string
|
1673
|
+
badgeFontSizeSm: string
|
1674
|
+
badgeFontWeight: string
|
1675
|
+
badgeStatusSize: string
|
1676
|
+
badgeTextColor: string
|
1677
|
+
badgeColor: string
|
1678
|
+
rateStarColor: string
|
1679
|
+
rateStarBg: string
|
1680
|
+
rateStarSize: string
|
1681
|
+
rateStarHoverScale: string
|
1682
|
+
cardHeadColor: string
|
1683
|
+
cardHeadBackground: string
|
1684
|
+
cardHeadFontSize: string
|
1685
|
+
cardHeadFontSizeSm: string
|
1686
|
+
cardHeadPadding: string
|
1687
|
+
cardHeadPaddingSm: string
|
1688
|
+
cardHeadHeight: string
|
1689
|
+
cardHeadHeightSm: string
|
1690
|
+
cardInnerHeadPadding: string
|
1691
|
+
cardPaddingBase: string
|
1692
|
+
cardPaddingBaseSm: string
|
1693
|
+
cardActionsBackground: string
|
1694
|
+
cardActionsLiMargin: string
|
1695
|
+
cardSkeletonBg: string
|
1696
|
+
cardBackground: string
|
1697
|
+
cardShadow: string
|
1698
|
+
cardRadius: string
|
1699
|
+
cardHeadTabsMarginBottom: string
|
1700
|
+
cardHeadExtraColor: string
|
1701
|
+
commentBg: string
|
1702
|
+
commentPaddingBase: string
|
1703
|
+
commentNestIndent: string
|
1704
|
+
commentFontSizeBase: string
|
1705
|
+
commentFontSizeSm: string
|
1706
|
+
commentAuthorNameColor: string
|
1707
|
+
commentAuthorTimeColor: string
|
1708
|
+
commentActionColor: string
|
1709
|
+
commentActionHoverColor: string
|
1710
|
+
commentActionsMarginBottom: string
|
1711
|
+
commentActionsMarginTop: string
|
1712
|
+
commentContentDetailPMarginBottom: string
|
1713
|
+
tabsCardHeadBackground: string
|
1714
|
+
tabsCardHeight: string
|
1715
|
+
tabsCardActiveColor: string
|
1716
|
+
tabsCardHorizontalPadding: string
|
1717
|
+
tabsCardHorizontalPaddingSm: string
|
1718
|
+
tabsCardHorizontalPaddingLg: string
|
1719
|
+
tabsTitleFontSize: string
|
1720
|
+
tabsTitleFontSizeLg: string
|
1721
|
+
tabsTitleFontSizeSm: string
|
1722
|
+
tabsInkBarColor: string
|
1723
|
+
tabsBarMargin: string
|
1724
|
+
tabsHorizontalGutter: string
|
1725
|
+
tabsHorizontalMargin: string
|
1726
|
+
tabsHorizontalMarginRtl: string
|
1727
|
+
tabsHorizontalPadding: string
|
1728
|
+
tabsHorizontalPaddingLg: string
|
1729
|
+
tabsHorizontalPaddingSm: string
|
1730
|
+
tabsVerticalPadding: string
|
1731
|
+
tabsVerticalMargin: string
|
1732
|
+
tabsScrollingSize: string
|
1733
|
+
tabsHighlightColor: string
|
1734
|
+
tabsHoverColor: string
|
1735
|
+
tabsActiveColor: string
|
1736
|
+
tabsCardGutter: string
|
1737
|
+
tabsCardTabActiveBorderTop: string
|
1738
|
+
backTopColor: string
|
1739
|
+
backTopBg: string
|
1740
|
+
backTopHoverBg: string
|
1741
|
+
avatarSizeBase: string
|
1742
|
+
avatarSizeLg: string
|
1743
|
+
avatarSizeSm: string
|
1744
|
+
avatarFontSizeBase: string
|
1745
|
+
avatarFontSizeLg: string
|
1746
|
+
avatarFontSizeSm: string
|
1747
|
+
avatarBg: string
|
1748
|
+
avatarColor: string
|
1749
|
+
avatarBorderRadius: string
|
1750
|
+
avatarGroupOverlapping: string
|
1751
|
+
avatarGroupSpace: string
|
1752
|
+
avatarGroupBorderColor: string
|
1753
|
+
switchHeight: string
|
1754
|
+
switchSmHeight: string
|
1755
|
+
switchMinWidth: string
|
1756
|
+
switchSmMinWidth: string
|
1757
|
+
switchDisabledOpacity: string
|
1758
|
+
switchColor: string
|
1759
|
+
switchBg: string
|
1760
|
+
switchShadowColor: string
|
1761
|
+
switchPadding: string
|
1762
|
+
switchInnerMarginMin: string
|
1763
|
+
switchInnerMarginMax: string
|
1764
|
+
switchSmInnerMarginMin: string
|
1765
|
+
switchSmInnerMarginMax: string
|
1766
|
+
paginationItemBg: string
|
1767
|
+
paginationItemSize: string
|
1768
|
+
paginationItemSizeSm: string
|
1769
|
+
paginationFontFamily: string
|
1770
|
+
paginationFontWeightActive: string
|
1771
|
+
paginationItemBgActive: string
|
1772
|
+
paginationItemLinkBg: string
|
1773
|
+
paginationItemDisabledColorActive: string
|
1774
|
+
paginationItemDisabledBgActive: string
|
1775
|
+
paginationItemInputBg: string
|
1776
|
+
paginationMiniOptionsSizeChangerTop: string
|
1777
|
+
pageHeaderPadding: string
|
1778
|
+
pageHeaderPaddingVertical: string
|
1779
|
+
pageHeaderPaddingBreadcrumb: string
|
1780
|
+
pageHeaderContentPaddingVertical: string
|
1781
|
+
pageHeaderBackColor: string
|
1782
|
+
pageHeaderGhostBg: string
|
1783
|
+
pageHeaderHeadingTitle: string
|
1784
|
+
pageHeaderHeadingSubTitle: string
|
1785
|
+
pageHeaderTabsTabFontSize: string
|
1786
|
+
breadcrumbBaseColor: string
|
1787
|
+
breadcrumbLastItemColor: string
|
1788
|
+
breadcrumbFontSize: string
|
1789
|
+
breadcrumbIconFontSize: string
|
1790
|
+
breadcrumbLinkColor: string
|
1791
|
+
breadcrumbLinkColorHover: string
|
1792
|
+
breadcrumbSeparatorColor: string
|
1793
|
+
breadcrumbSeparatorMargin: string
|
1794
|
+
sliderMargin: string
|
1795
|
+
sliderRailBackgroundColor: string
|
1796
|
+
sliderRailBackgroundColorHover: string
|
1797
|
+
sliderTrackBackgroundColor: string
|
1798
|
+
sliderTrackBackgroundColorHover: string
|
1799
|
+
sliderHandleBorderWidth: string
|
1800
|
+
sliderHandleBackgroundColor: string
|
1801
|
+
sliderHandleColor: string
|
1802
|
+
sliderHandleColorHover: string
|
1803
|
+
sliderHandleColorFocus: string
|
1804
|
+
sliderHandleColorFocusShadow: string
|
1805
|
+
sliderHandleColorTooltipOpen: string
|
1806
|
+
sliderHandleSize: string
|
1807
|
+
sliderHandleMarginTop: string
|
1808
|
+
sliderHandleShadow: string
|
1809
|
+
sliderDotBorderColor: string
|
1810
|
+
sliderDotBorderColorActive: string
|
1811
|
+
sliderDisabledColor: string
|
1812
|
+
sliderDisabledBackgroundColor: string
|
1813
|
+
treeBg: string
|
1814
|
+
treeTitleHeight: string
|
1815
|
+
treeChildPadding: string
|
1816
|
+
treeDirectorySelectedColor: string
|
1817
|
+
treeDirectorySelectedBg: string
|
1818
|
+
treeNodeHoverBg: string
|
1819
|
+
treeNodeSelectedBg: string
|
1820
|
+
collapseHeaderPadding: string
|
1821
|
+
collapseHeaderPaddingExtra: string
|
1822
|
+
collapseHeaderBg: string
|
1823
|
+
collapseContentPadding: string
|
1824
|
+
collapseContentBg: string
|
1825
|
+
collapseHeaderArrowLeft: string
|
1826
|
+
skeletonColor: string
|
1827
|
+
skeletonToColor: string
|
1828
|
+
skeletonParagraphMarginTop: string
|
1829
|
+
skeletonParagraphLiMarginTop: string
|
1830
|
+
skeletonParagraphLiHeight: string
|
1831
|
+
skeletonTitleHeight: string
|
1832
|
+
skeletonTitleParagraphMarginTop: string
|
1833
|
+
transferHeaderHeight: string
|
1834
|
+
transferItemHeight: string
|
1835
|
+
transferDisabledBg: string
|
1836
|
+
transferListHeight: string
|
1837
|
+
transferItemHoverBg: string
|
1838
|
+
transferItemSelectedHoverBg: string
|
1839
|
+
transferItemPaddingVertical: string
|
1840
|
+
transferListSearchIconTop: string
|
1841
|
+
messageNoticeContentPadding: string
|
1842
|
+
messageNoticeContentBg: string
|
1843
|
+
waveAnimationWidth: string
|
1844
|
+
alertSuccessBorderColor: string
|
1845
|
+
alertSuccessBgColor: string
|
1846
|
+
alertSuccessIconColor: string
|
1847
|
+
alertInfoBorderColor: string
|
1848
|
+
alertInfoBgColor: string
|
1849
|
+
alertInfoIconColor: string
|
1850
|
+
alertWarningBorderColor: string
|
1851
|
+
alertWarningBgColor: string
|
1852
|
+
alertWarningIconColor: string
|
1853
|
+
alertErrorBorderColor: string
|
1854
|
+
alertErrorBgColor: string
|
1855
|
+
alertErrorIconColor: string
|
1856
|
+
alertMessageColor: string
|
1857
|
+
alertTextColor: string
|
1858
|
+
alertCloseColor: string
|
1859
|
+
alertCloseHoverColor: string
|
1860
|
+
alertNoIconPaddingVertical: string
|
1861
|
+
alertWithDescriptionNoIconPaddingVertical: string
|
1862
|
+
alertWithDescriptionPaddingVertical: string
|
1863
|
+
alertWithDescriptionPadding: string
|
1864
|
+
alertIconTop: string
|
1865
|
+
alertWithDescriptionIconSize: string
|
1866
|
+
listHeaderBackground: string
|
1867
|
+
listFooterBackground: string
|
1868
|
+
listEmptyTextPadding: string
|
1869
|
+
listItemPadding: string
|
1870
|
+
listItemPaddingSm: string
|
1871
|
+
listItemPaddingLg: string
|
1872
|
+
listItemMetaMarginBottom: string
|
1873
|
+
listItemMetaAvatarMarginRight: string
|
1874
|
+
listItemMetaTitleMarginBottom: string
|
1875
|
+
listCustomizeCardBg: string
|
1876
|
+
listItemMetaDescriptionFontSize: string
|
1877
|
+
statisticTitleFontSize: string
|
1878
|
+
statisticContentFontSize: string
|
1879
|
+
statisticUnitFontSize: string
|
1880
|
+
statisticFontFamily: string
|
1881
|
+
drawerHeaderPadding: string
|
1882
|
+
drawerBodyPadding: string
|
1883
|
+
drawerBg: string
|
1884
|
+
drawerFooterPaddingVertical: string
|
1885
|
+
drawerFooterPaddingHorizontal: string
|
1886
|
+
drawerHeaderCloseSize: string
|
1887
|
+
drawerTitleFontSize: string
|
1888
|
+
drawerTitleLineHeight: string
|
1889
|
+
timelineWidth: string
|
1890
|
+
timelineColor: string
|
1891
|
+
timelineDotBorderWidth: string
|
1892
|
+
timelineDotColor: string
|
1893
|
+
timelineDotBg: string
|
1894
|
+
timelineItemPaddingBottom: string
|
1895
|
+
typographyTitleFontWeight: string
|
1896
|
+
typographyTitleMarginTop: string
|
1897
|
+
typographyTitleMarginBottom: string
|
1898
|
+
uploadActionsColor: string
|
1899
|
+
processTailColor: string
|
1900
|
+
stepsNavArrowColor: string
|
1901
|
+
stepsBackground: string
|
1902
|
+
stepsIconSize: string
|
1903
|
+
stepsIconCustomSize: string
|
1904
|
+
stepsIconCustomTop: string
|
1905
|
+
stepsIconCustomFontSize: string
|
1906
|
+
stepsIconTop: string
|
1907
|
+
stepsIconFontSize: string
|
1908
|
+
stepsIconMargin: string
|
1909
|
+
stepsTitleLineHeight: string
|
1910
|
+
stepsSmallIconSize: string
|
1911
|
+
stepsSmallIconMargin: string
|
1912
|
+
stepsDotSize: string
|
1913
|
+
stepsDotTop: string
|
1914
|
+
stepsCurrentDotSize: string
|
1915
|
+
stepsDescriptionMaxWidth: string
|
1916
|
+
stepsNavContentMaxWidth: string
|
1917
|
+
stepsVerticalIconWidth: string
|
1918
|
+
stepsVerticalTailWidth: string
|
1919
|
+
stepsVerticalTailWidthSm: string
|
1920
|
+
notificationBg: string
|
1921
|
+
notificationPaddingVertical: string
|
1922
|
+
notificationPaddingHorizontal: string
|
1923
|
+
resultTitleFontSize: string
|
1924
|
+
resultSubtitleFontSize: string
|
1925
|
+
resultIconFontSize: string
|
1926
|
+
resultExtraMargin: string
|
1927
|
+
imageSizeBase: string
|
1928
|
+
imageFontSizeBase: string
|
1929
|
+
imageBg: string
|
1930
|
+
imageColor: string
|
1931
|
+
imageMaskFontSize: string
|
1932
|
+
imagePreviewOperationSize: string
|
1933
|
+
imagePreviewOperationColor: string
|
1934
|
+
imagePreviewOperationDisabledColor: string
|
1935
|
+
}
|
1936
|
+
toggleTheme: (_nextValue: typeof defaultTheme) => void
|
1937
|
+
}
|
1938
|
+
|
1939
|
+
export {
|
1940
|
+
Button,
|
1941
|
+
ButtonProps,
|
1942
|
+
Card,
|
1943
|
+
CardProps,
|
1944
|
+
CombinedTypographyProps,
|
1945
|
+
Content,
|
1946
|
+
ContentProps,
|
1947
|
+
Footer,
|
1948
|
+
FooterProps,
|
1949
|
+
Form,
|
1950
|
+
FormInterface,
|
1951
|
+
FormProps,
|
1952
|
+
Header,
|
1953
|
+
HeaderProps,
|
1954
|
+
Input,
|
1955
|
+
InputProps,
|
1956
|
+
Layout,
|
1957
|
+
LayoutProps,
|
1958
|
+
OTPInput,
|
1959
|
+
OTPInputProps,
|
1960
|
+
Page,
|
1961
|
+
PageProps,
|
1962
|
+
Sider,
|
1963
|
+
SiderProps,
|
1964
|
+
ThemeProvider,
|
1965
|
+
Typography,
|
1966
|
+
TypographyElement,
|
1967
|
+
TypographyProps,
|
1968
|
+
TypographyVariantType,
|
1969
|
+
defaultTheme,
|
1970
|
+
useTheme
|
1971
|
+
}
|