@tuya-sat/sdf-main-sdk 2.0.0-alpha.99 → 2.0.1-outdoorSpaceUi
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/dark-variable.less +1 -3
- package/dist/{131.95cff292.chunk.js → 131.40499d1c.chunk.js} +1 -1
- package/dist/{131.95cff292.chunk.js.map → 131.40499d1c.chunk.js.map} +1 -1
- package/dist/api/index.d.ts +7 -7
- package/dist/api/urls.d.ts +17 -0
- package/dist/components/403/index.d.ts +4 -1
- package/dist/components/BLayout/components/Logo.d.ts +4 -1
- package/dist/components/BLayout/components/MenuIcon.d.ts +2 -1
- package/dist/components/BLogin/component/UserName/index.d.ts +6 -3
- package/dist/components/BLogin/component/VerifyCode/VerifyCodeInput.d.ts +6 -0
- package/dist/components/ImageUpload/index.d.ts +4 -0
- package/dist/components/ImageUpload/utils.d.ts +1 -0
- package/dist/components/Layout/antd/Header/index.d.ts +11 -1
- package/dist/components/Layout/antd/Menu/BaseMenu.d.ts +1 -1
- package/dist/components/Layout/antd/Menu/HorizontalMenu/index.d.ts +1 -0
- package/dist/components/Layout/antd/Menu/index.d.ts +3 -0
- package/dist/components/Layout/antd/Sider/index.d.ts +2 -0
- package/dist/components/Layout/antd/components/AppDownload/index.d.ts +2 -6
- package/dist/components/Layout/antd/components/DynamicNavs/index.d.ts +1 -0
- package/dist/components/Layout/antd/components/NavItem/index.d.ts +2 -1
- package/dist/components/Layout/antd/components/ProjectSelect/index.d.ts +4 -0
- package/dist/components/Layout/antd/components/ProjectSelect/useOrgInfo.d.ts +44 -0
- package/dist/components/Layout/antd/components/UserAccount/UserAvatar.d.ts +8 -0
- package/dist/components/Layout/antd/components/UserAccount/index.d.ts +1 -0
- package/dist/components/Layout/antd/index.d.ts +2 -0
- package/dist/components/Layout/interface.d.ts +5 -1
- package/dist/components/MicroComponent/Header/index.d.ts +21 -2
- package/dist/components/PEnterprise/EnterpriseList.d.ts +3 -1
- package/dist/components/PSetting/AccountSetting.d.ts +10 -1
- package/dist/components/Register/components/CountryRegionCascader/RegionCascader.d.ts +19 -0
- package/dist/components/Register/components/CountryRegionCascader/index.d.ts +10 -0
- package/dist/components/Register/components/CountryRegionCascader/services.d.ts +9 -0
- package/dist/components/Register/components/RegisterForm/AccountForm.d.ts +23 -0
- package/dist/components/Register/components/RegisterForm/EnterpriseForm.d.ts +2 -0
- package/dist/components/Register/components/RegisterForm/index.d.ts +7 -0
- package/dist/components/Register/components/RegisterResult/index.d.ts +3 -0
- package/dist/components/Register/index.d.ts +1 -0
- package/dist/en.json +60 -6
- package/dist/hooks/index.d.ts +9 -4
- package/dist/index.d.ts +6 -1
- package/dist/lang/utils.d.ts +1 -1
- package/dist/main.bundle.js +1 -1
- package/dist/main.bundle.js.LICENSE.txt +43 -0
- package/dist/main.bundle.js.map +1 -1
- package/dist/main.css +739 -423
- package/dist/main.css.map +1 -1
- package/dist/manifest.json +7 -2
- package/dist/pages/403.d.ts +4 -1
- package/dist/pages/home/notice/hooks.d.ts +2 -2
- package/dist/qiankun/utils/index.d.ts +7 -5
- package/dist/static/img/5ed883a35968f1f1cd89.png +0 -0
- package/dist/static/img/7d9900e808e2197745be.png +0 -0
- package/dist/static/img/a10132bbdef90aa7baaf.png +0 -0
- package/dist/static/img/a20c372b6039996ba351.png +0 -0
- package/dist/static/img/b765d4caa82d7e5eae80.png +0 -0
- package/dist/utils/common.d.ts +6 -0
- package/dist/utils/index.d.ts +87 -5
- package/dist/utils/theme/antd5/index.d.ts +57 -141
- package/dist/utils/theme/antd5/token.d.ts +65 -138
- package/dist/utils/theme/store.d.ts +114 -282
- package/dist/zh.json +56 -4
- package/package.json +5 -1
|
@@ -14,8 +14,8 @@ export declare const getAntd5ThemeConfig: (themeMode: Theme) => {
|
|
|
14
14
|
itemHeight: number;
|
|
15
15
|
};
|
|
16
16
|
Tooltip: {
|
|
17
|
-
colorTextLightSolid: string;
|
|
18
17
|
colorBgSpotlight: string;
|
|
18
|
+
borderRadius: string;
|
|
19
19
|
};
|
|
20
20
|
Button: {
|
|
21
21
|
defaultBg: string;
|
|
@@ -31,6 +31,7 @@ export declare const getAntd5ThemeConfig: (themeMode: Theme) => {
|
|
|
31
31
|
defaultShadow: string;
|
|
32
32
|
primaryShadow: string;
|
|
33
33
|
dangerShadow: string;
|
|
34
|
+
borderRadius: string;
|
|
34
35
|
};
|
|
35
36
|
Input: {
|
|
36
37
|
colorBorder: string;
|
|
@@ -40,6 +41,14 @@ export declare const getAntd5ThemeConfig: (themeMode: Theme) => {
|
|
|
40
41
|
colorBgContainerDisabled: string;
|
|
41
42
|
colorTextPlaceholder: string;
|
|
42
43
|
activeShadow: string;
|
|
44
|
+
addonBg: string;
|
|
45
|
+
};
|
|
46
|
+
InputNumber: {
|
|
47
|
+
handleBg: string;
|
|
48
|
+
handleActiveBg: string;
|
|
49
|
+
filledHandleBg: string;
|
|
50
|
+
hoverBg: string;
|
|
51
|
+
activeBg: string;
|
|
43
52
|
};
|
|
44
53
|
Select: {
|
|
45
54
|
colorBorder: string;
|
|
@@ -49,9 +58,14 @@ export declare const getAntd5ThemeConfig: (themeMode: Theme) => {
|
|
|
49
58
|
colorBgContainerDisabled: string;
|
|
50
59
|
colorTextPlaceholder: string;
|
|
51
60
|
activeShadow: string;
|
|
61
|
+
multipleItemBg: string;
|
|
52
62
|
};
|
|
53
63
|
Checkbox: {
|
|
54
64
|
controlInteractiveSize: number;
|
|
65
|
+
borderRadiusSM: number;
|
|
66
|
+
colorBgContainerDisabled: string;
|
|
67
|
+
colorBorder: string;
|
|
68
|
+
colorTextDisabled: string;
|
|
55
69
|
};
|
|
56
70
|
Radio: {
|
|
57
71
|
radioSize: number;
|
|
@@ -68,79 +82,31 @@ export declare const getAntd5ThemeConfig: (themeMode: Theme) => {
|
|
|
68
82
|
Table: {
|
|
69
83
|
colorSplit: string;
|
|
70
84
|
headerBg: string;
|
|
85
|
+
headerColor: string;
|
|
86
|
+
headerSplitColor: string;
|
|
71
87
|
borderColor: string;
|
|
88
|
+
cellPaddingInlineMD: number;
|
|
89
|
+
colorText: string;
|
|
72
90
|
};
|
|
73
91
|
Tag: {
|
|
74
92
|
defaultBg: string;
|
|
75
93
|
defaultColor: string;
|
|
94
|
+
fontSizeSM: number;
|
|
95
|
+
lineHeightSM: number;
|
|
76
96
|
};
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
lineType: string;
|
|
80
|
-
};
|
|
81
|
-
Menu: {
|
|
82
|
-
itemHeight: number;
|
|
83
|
-
};
|
|
84
|
-
Tooltip: {
|
|
85
|
-
colorTextLightSolid: string;
|
|
86
|
-
colorBgSpotlight: string;
|
|
87
|
-
};
|
|
88
|
-
Button: {
|
|
89
|
-
defaultBg: string;
|
|
90
|
-
defaultHoverBg: string;
|
|
91
|
-
defaultActiveBg: string;
|
|
92
|
-
colorBgContainerDisabled: string;
|
|
93
|
-
defaultBorderColor: string;
|
|
94
|
-
defaultHoverBorderColor: string;
|
|
95
|
-
defaultActiveBorderColor: string;
|
|
96
|
-
borderColorDisabled: string;
|
|
97
|
-
defaultHoverColor: string;
|
|
98
|
-
boxShadow: string;
|
|
99
|
-
defaultShadow: string;
|
|
100
|
-
primaryShadow: string;
|
|
101
|
-
dangerShadow: string;
|
|
102
|
-
};
|
|
103
|
-
Input: {
|
|
104
|
-
colorBorder: string;
|
|
105
|
-
colorBgContainer: string;
|
|
106
|
-
hoverBg: string;
|
|
107
|
-
activeBg: string;
|
|
108
|
-
colorBgContainerDisabled: string;
|
|
109
|
-
colorTextPlaceholder: string;
|
|
110
|
-
activeShadow: string;
|
|
111
|
-
};
|
|
112
|
-
Select: {
|
|
113
|
-
colorBorder: string;
|
|
114
|
-
colorBgContainer: string;
|
|
115
|
-
hoverBg: string;
|
|
116
|
-
activeBg: string;
|
|
117
|
-
colorBgContainerDisabled: string;
|
|
118
|
-
colorTextPlaceholder: string;
|
|
119
|
-
activeShadow: string;
|
|
120
|
-
};
|
|
121
|
-
Checkbox: {
|
|
122
|
-
controlInteractiveSize: number;
|
|
123
|
-
};
|
|
124
|
-
Radio: {
|
|
125
|
-
radioSize: number;
|
|
97
|
+
Form: {
|
|
98
|
+
labelColor: string;
|
|
126
99
|
};
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
hoverBg: string;
|
|
131
|
-
activeBg: string;
|
|
132
|
-
colorBgContainerDisabled: string;
|
|
133
|
-
colorTextPlaceholder: string;
|
|
134
|
-
activeShadow: string;
|
|
100
|
+
Tree: {
|
|
101
|
+
colorText: string;
|
|
102
|
+
borderRadiusSM: number;
|
|
135
103
|
};
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
headerBg: string;
|
|
139
|
-
borderColor: string;
|
|
104
|
+
Tabs: {
|
|
105
|
+
horizontalItemPadding: number;
|
|
140
106
|
};
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
107
|
+
Descriptions: {
|
|
108
|
+
labelColor: string;
|
|
109
|
+
contentColor: string;
|
|
144
110
|
};
|
|
145
111
|
} | {
|
|
146
112
|
Alert: {
|
|
@@ -193,6 +159,9 @@ export declare const getAntd5ThemeConfig: (themeMode: Theme) => {
|
|
|
193
159
|
};
|
|
194
160
|
Checkbox: {
|
|
195
161
|
controlInteractiveSize: number;
|
|
162
|
+
borderRadiusSM: number;
|
|
163
|
+
lineWidth: number;
|
|
164
|
+
colorBorder: string;
|
|
196
165
|
};
|
|
197
166
|
Radio: {
|
|
198
167
|
radioSize: number;
|
|
@@ -254,9 +223,27 @@ export declare const getAntd5ThemeConfig: (themeMode: Theme) => {
|
|
|
254
223
|
headerColor: string;
|
|
255
224
|
footerColor: string;
|
|
256
225
|
borderColor: string;
|
|
226
|
+
headerSplitColor: string;
|
|
227
|
+
colorText: string;
|
|
257
228
|
};
|
|
258
229
|
Tag: {
|
|
259
230
|
defaultBg: string;
|
|
231
|
+
fontSizeSM: number;
|
|
232
|
+
lineHeightSM: number;
|
|
233
|
+
};
|
|
234
|
+
Form: {
|
|
235
|
+
labelColor: string;
|
|
236
|
+
};
|
|
237
|
+
Tree: {
|
|
238
|
+
colorText: string;
|
|
239
|
+
borderRadiusSM: number;
|
|
240
|
+
};
|
|
241
|
+
Tabs: {
|
|
242
|
+
horizontalItemPadding: number;
|
|
243
|
+
};
|
|
244
|
+
Descriptions: {
|
|
245
|
+
labelColor: string;
|
|
246
|
+
contentColor: string;
|
|
260
247
|
};
|
|
261
248
|
};
|
|
262
249
|
token: {
|
|
@@ -264,8 +251,6 @@ export declare const getAntd5ThemeConfig: (themeMode: Theme) => {
|
|
|
264
251
|
colorPrimary: string;
|
|
265
252
|
colorLink: string;
|
|
266
253
|
colorInfo: string;
|
|
267
|
-
colorLinkActive: string;
|
|
268
|
-
colorLinkHover: string;
|
|
269
254
|
colorBgBase: string;
|
|
270
255
|
colorBgContainer: string;
|
|
271
256
|
colorBgElevated: string;
|
|
@@ -286,8 +271,6 @@ export declare const getAntd5ThemeConfig: (themeMode: Theme) => {
|
|
|
286
271
|
colorTextQuaternary: string;
|
|
287
272
|
colorBorder: string;
|
|
288
273
|
colorBorderSecondary: string;
|
|
289
|
-
boxShadow: string;
|
|
290
|
-
boxShadowSecondary: string;
|
|
291
274
|
colorErrorBg: string;
|
|
292
275
|
colorErrorBgHover: string;
|
|
293
276
|
colorErrorBorder: string;
|
|
@@ -318,73 +301,10 @@ export declare const getAntd5ThemeConfig: (themeMode: Theme) => {
|
|
|
318
301
|
colorWarning: string;
|
|
319
302
|
colorWarningText: string;
|
|
320
303
|
colorWarningTextHover: string;
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
colorPrimaryBorder: string;
|
|
324
|
-
colorPrimaryBorderHover: string;
|
|
325
|
-
} | {
|
|
326
|
-
controlHeight: number;
|
|
327
|
-
colorPrimary: string;
|
|
328
|
-
colorLink: string;
|
|
329
|
-
colorInfo: string;
|
|
330
|
-
colorLinkActive?: undefined;
|
|
331
|
-
colorLinkHover?: undefined;
|
|
332
|
-
colorBgBase: string;
|
|
333
|
-
colorBgContainer: string;
|
|
334
|
-
colorBgElevated: string;
|
|
335
|
-
colorBgLayout: string;
|
|
336
|
-
colorBgSpotlight: string;
|
|
337
|
-
colorBgSmall: string;
|
|
338
|
-
colorBgSpecial: string;
|
|
339
|
-
colorBgMask: string;
|
|
340
|
-
colorFill: string;
|
|
341
|
-
colorFillSecondary: string;
|
|
342
|
-
colorFillTertiary: string;
|
|
343
|
-
colorFillQuaternary: string;
|
|
344
|
-
colorTextBase: string;
|
|
345
|
-
colorText: string;
|
|
346
|
-
colorTextSecondary: string;
|
|
347
|
-
colorTextTertiary: string;
|
|
348
|
-
colorTextTransitional: string;
|
|
349
|
-
colorTextQuaternary: string;
|
|
350
|
-
colorBorder: string;
|
|
351
|
-
colorBorderSecondary: string;
|
|
304
|
+
defaultRadius: number;
|
|
305
|
+
borderRadius: number;
|
|
352
306
|
boxShadow: string;
|
|
353
307
|
boxShadowSecondary: string;
|
|
354
|
-
colorErrorBg: string;
|
|
355
|
-
colorErrorBgHover: string;
|
|
356
|
-
colorErrorBorder: string;
|
|
357
|
-
colorErrorBorderHover: string;
|
|
358
|
-
colorErrorHover: string;
|
|
359
|
-
colorErrorActive: string;
|
|
360
|
-
colorErrorTextActive: string;
|
|
361
|
-
colorError: string;
|
|
362
|
-
colorErrorText: string;
|
|
363
|
-
colorErrorTextHover: string;
|
|
364
|
-
colorSuccessBg: string;
|
|
365
|
-
colorSuccessBgHover: string;
|
|
366
|
-
colorSuccessBorder: string;
|
|
367
|
-
colorSuccessBorderHover: string;
|
|
368
|
-
colorSuccessHover: string;
|
|
369
|
-
colorSuccessActive: string;
|
|
370
|
-
colorSuccessTextActive: string;
|
|
371
|
-
colorSuccess: string;
|
|
372
|
-
colorSuccessText: string;
|
|
373
|
-
colorSuccessTextHover: string;
|
|
374
|
-
colorWarningBg: string;
|
|
375
|
-
colorWarningBgHover: string;
|
|
376
|
-
colorWarningBorder: string;
|
|
377
|
-
colorWarningBorderHover: string;
|
|
378
|
-
colorWarningHover: string;
|
|
379
|
-
colorWarningActive: string;
|
|
380
|
-
colorWarningTextActive: string;
|
|
381
|
-
colorWarning: string;
|
|
382
|
-
colorWarningText: string;
|
|
383
|
-
colorWarningTextHover: string;
|
|
384
|
-
colorPrimaryBg: string;
|
|
385
|
-
colorPrimaryBgHover: string;
|
|
386
|
-
colorPrimaryBorder: string;
|
|
387
|
-
colorPrimaryBorderHover: string;
|
|
388
308
|
} | {
|
|
389
309
|
controlHeight: number;
|
|
390
310
|
colorPrimary: string;
|
|
@@ -410,8 +330,6 @@ export declare const getAntd5ThemeConfig: (themeMode: Theme) => {
|
|
|
410
330
|
colorTextQuaternary: string;
|
|
411
331
|
colorBorder: string;
|
|
412
332
|
colorBorderSecondary: string;
|
|
413
|
-
boxShadow: string;
|
|
414
|
-
boxShadowSecondary: string;
|
|
415
333
|
colorErrorBg: string;
|
|
416
334
|
colorErrorBgHover: string;
|
|
417
335
|
colorErrorBorder: string;
|
|
@@ -442,15 +360,13 @@ export declare const getAntd5ThemeConfig: (themeMode: Theme) => {
|
|
|
442
360
|
colorWarning: string;
|
|
443
361
|
colorWarningText: string;
|
|
444
362
|
colorWarningTextHover: string;
|
|
363
|
+
boxShadow: string;
|
|
364
|
+
boxShadowSecondary: string;
|
|
445
365
|
defaultRadius: number;
|
|
366
|
+
borderRadius: number;
|
|
446
367
|
colorTransparent: string;
|
|
447
368
|
};
|
|
448
369
|
};
|
|
449
|
-
alert: {
|
|
450
|
-
style: {
|
|
451
|
-
boxShadow: string;
|
|
452
|
-
};
|
|
453
|
-
};
|
|
454
370
|
modal: {
|
|
455
371
|
styles: {
|
|
456
372
|
header: {
|
|
@@ -13,6 +13,12 @@ export declare const getDefaultPrimaryDarkToken: (color: string) => {
|
|
|
13
13
|
colorLinkActive: string;
|
|
14
14
|
colorLinkHover: string;
|
|
15
15
|
};
|
|
16
|
+
export declare const getDefaultPrimaryLightToken: (color: string) => {
|
|
17
|
+
colorPrimaryBg: string;
|
|
18
|
+
colorPrimaryBgHover: string;
|
|
19
|
+
colorPrimaryBorder: string;
|
|
20
|
+
colorPrimaryBorderHover: string;
|
|
21
|
+
};
|
|
16
22
|
export declare const makeLightToken: (primaryColor: string) => {
|
|
17
23
|
colorPrimary: string;
|
|
18
24
|
colorLink: string;
|
|
@@ -25,8 +31,8 @@ export declare const makeLightToken: (primaryColor: string) => {
|
|
|
25
31
|
itemHeight: number;
|
|
26
32
|
};
|
|
27
33
|
Tooltip: {
|
|
28
|
-
colorTextLightSolid: string;
|
|
29
34
|
colorBgSpotlight: string;
|
|
35
|
+
borderRadius: string;
|
|
30
36
|
};
|
|
31
37
|
Button: {
|
|
32
38
|
defaultBg: string;
|
|
@@ -42,6 +48,7 @@ export declare const makeLightToken: (primaryColor: string) => {
|
|
|
42
48
|
defaultShadow: string;
|
|
43
49
|
primaryShadow: string;
|
|
44
50
|
dangerShadow: string;
|
|
51
|
+
borderRadius: string;
|
|
45
52
|
};
|
|
46
53
|
Input: {
|
|
47
54
|
colorBorder: string;
|
|
@@ -51,6 +58,14 @@ export declare const makeLightToken: (primaryColor: string) => {
|
|
|
51
58
|
colorBgContainerDisabled: string;
|
|
52
59
|
colorTextPlaceholder: string;
|
|
53
60
|
activeShadow: string;
|
|
61
|
+
addonBg: string;
|
|
62
|
+
};
|
|
63
|
+
InputNumber: {
|
|
64
|
+
handleBg: string;
|
|
65
|
+
handleActiveBg: string;
|
|
66
|
+
filledHandleBg: string;
|
|
67
|
+
hoverBg: string;
|
|
68
|
+
activeBg: string;
|
|
54
69
|
};
|
|
55
70
|
Select: {
|
|
56
71
|
colorBorder: string;
|
|
@@ -60,9 +75,14 @@ export declare const makeLightToken: (primaryColor: string) => {
|
|
|
60
75
|
colorBgContainerDisabled: string;
|
|
61
76
|
colorTextPlaceholder: string;
|
|
62
77
|
activeShadow: string;
|
|
78
|
+
multipleItemBg: string;
|
|
63
79
|
};
|
|
64
80
|
Checkbox: {
|
|
65
81
|
controlInteractiveSize: number;
|
|
82
|
+
borderRadiusSM: number;
|
|
83
|
+
colorBgContainerDisabled: string;
|
|
84
|
+
colorBorder: string;
|
|
85
|
+
colorTextDisabled: string;
|
|
66
86
|
};
|
|
67
87
|
Radio: {
|
|
68
88
|
radioSize: number;
|
|
@@ -79,146 +99,33 @@ export declare const makeLightToken: (primaryColor: string) => {
|
|
|
79
99
|
Table: {
|
|
80
100
|
colorSplit: string;
|
|
81
101
|
headerBg: string;
|
|
102
|
+
headerColor: string;
|
|
103
|
+
headerSplitColor: string;
|
|
82
104
|
borderColor: string;
|
|
105
|
+
cellPaddingInlineMD: number;
|
|
106
|
+
colorText: string;
|
|
83
107
|
};
|
|
84
108
|
Tag: {
|
|
85
109
|
defaultBg: string;
|
|
86
110
|
defaultColor: string;
|
|
111
|
+
fontSizeSM: number;
|
|
112
|
+
lineHeightSM: number;
|
|
87
113
|
};
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
colorLinkHover: string;
|
|
91
|
-
colorBgBase: string;
|
|
92
|
-
colorBgContainer: string;
|
|
93
|
-
colorBgElevated: string;
|
|
94
|
-
colorBgLayout: string;
|
|
95
|
-
colorBgSpotlight: string;
|
|
96
|
-
colorBgSmall: string;
|
|
97
|
-
colorBgSpecial: string;
|
|
98
|
-
colorBgMask: string;
|
|
99
|
-
colorFill: string;
|
|
100
|
-
colorFillSecondary: string;
|
|
101
|
-
colorFillTertiary: string;
|
|
102
|
-
colorFillQuaternary: string;
|
|
103
|
-
colorTextBase: string;
|
|
104
|
-
colorText: string;
|
|
105
|
-
colorTextSecondary: string;
|
|
106
|
-
colorTextTertiary: string;
|
|
107
|
-
colorTextTransitional: string;
|
|
108
|
-
colorTextQuaternary: string;
|
|
109
|
-
colorBorder: string;
|
|
110
|
-
colorBorderSecondary: string;
|
|
111
|
-
boxShadow: string;
|
|
112
|
-
boxShadowSecondary: string;
|
|
113
|
-
colorErrorBg: string;
|
|
114
|
-
colorErrorBgHover: string;
|
|
115
|
-
colorErrorBorder: string;
|
|
116
|
-
colorErrorBorderHover: string;
|
|
117
|
-
colorErrorHover: string;
|
|
118
|
-
colorErrorActive: string;
|
|
119
|
-
colorErrorTextActive: string;
|
|
120
|
-
colorError: string;
|
|
121
|
-
colorErrorText: string;
|
|
122
|
-
colorErrorTextHover: string;
|
|
123
|
-
colorSuccessBg: string;
|
|
124
|
-
colorSuccessBgHover: string;
|
|
125
|
-
colorSuccessBorder: string;
|
|
126
|
-
colorSuccessBorderHover: string;
|
|
127
|
-
colorSuccessHover: string;
|
|
128
|
-
colorSuccessActive: string;
|
|
129
|
-
colorSuccessTextActive: string;
|
|
130
|
-
colorSuccess: string;
|
|
131
|
-
colorSuccessText: string;
|
|
132
|
-
colorSuccessTextHover: string;
|
|
133
|
-
colorWarningBg: string;
|
|
134
|
-
colorWarningBgHover: string;
|
|
135
|
-
colorWarningBorder: string;
|
|
136
|
-
colorWarningBorderHover: string;
|
|
137
|
-
colorWarningHover: string;
|
|
138
|
-
colorWarningActive: string;
|
|
139
|
-
colorWarningTextActive: string;
|
|
140
|
-
colorWarning: string;
|
|
141
|
-
colorWarningText: string;
|
|
142
|
-
colorWarningTextHover: string;
|
|
143
|
-
colorPrimaryBg: string;
|
|
144
|
-
colorPrimaryBgHover: string;
|
|
145
|
-
colorPrimaryBorder: string;
|
|
146
|
-
colorPrimaryBorderHover: string;
|
|
147
|
-
} | {
|
|
148
|
-
colorPrimary: string;
|
|
149
|
-
colorLink: string;
|
|
150
|
-
colorInfo: string;
|
|
151
|
-
components: {
|
|
152
|
-
Alert: {
|
|
153
|
-
lineType: string;
|
|
114
|
+
Form: {
|
|
115
|
+
labelColor: string;
|
|
154
116
|
};
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
Tooltip: {
|
|
159
|
-
colorTextLightSolid: string;
|
|
160
|
-
colorBgSpotlight: string;
|
|
161
|
-
};
|
|
162
|
-
Button: {
|
|
163
|
-
defaultBg: string;
|
|
164
|
-
defaultHoverBg: string;
|
|
165
|
-
defaultActiveBg: string;
|
|
166
|
-
colorBgContainerDisabled: string;
|
|
167
|
-
defaultBorderColor: string;
|
|
168
|
-
defaultHoverBorderColor: string;
|
|
169
|
-
defaultActiveBorderColor: string;
|
|
170
|
-
borderColorDisabled: string;
|
|
171
|
-
defaultHoverColor: string;
|
|
172
|
-
boxShadow: string;
|
|
173
|
-
defaultShadow: string;
|
|
174
|
-
primaryShadow: string;
|
|
175
|
-
dangerShadow: string;
|
|
176
|
-
};
|
|
177
|
-
Input: {
|
|
178
|
-
colorBorder: string;
|
|
179
|
-
colorBgContainer: string;
|
|
180
|
-
hoverBg: string;
|
|
181
|
-
activeBg: string;
|
|
182
|
-
colorBgContainerDisabled: string;
|
|
183
|
-
colorTextPlaceholder: string;
|
|
184
|
-
activeShadow: string;
|
|
185
|
-
};
|
|
186
|
-
Select: {
|
|
187
|
-
colorBorder: string;
|
|
188
|
-
colorBgContainer: string;
|
|
189
|
-
hoverBg: string;
|
|
190
|
-
activeBg: string;
|
|
191
|
-
colorBgContainerDisabled: string;
|
|
192
|
-
colorTextPlaceholder: string;
|
|
193
|
-
activeShadow: string;
|
|
194
|
-
};
|
|
195
|
-
Checkbox: {
|
|
196
|
-
controlInteractiveSize: number;
|
|
197
|
-
};
|
|
198
|
-
Radio: {
|
|
199
|
-
radioSize: number;
|
|
200
|
-
};
|
|
201
|
-
DatePicker: {
|
|
202
|
-
colorBorder: string;
|
|
203
|
-
colorBgContainer: string;
|
|
204
|
-
hoverBg: string;
|
|
205
|
-
activeBg: string;
|
|
206
|
-
colorBgContainerDisabled: string;
|
|
207
|
-
colorTextPlaceholder: string;
|
|
208
|
-
activeShadow: string;
|
|
117
|
+
Tree: {
|
|
118
|
+
colorText: string;
|
|
119
|
+
borderRadiusSM: number;
|
|
209
120
|
};
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
headerBg: string;
|
|
213
|
-
borderColor: string;
|
|
121
|
+
Tabs: {
|
|
122
|
+
horizontalItemPadding: number;
|
|
214
123
|
};
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
124
|
+
Descriptions: {
|
|
125
|
+
labelColor: string;
|
|
126
|
+
contentColor: string;
|
|
218
127
|
};
|
|
219
128
|
};
|
|
220
|
-
colorLinkActive?: undefined;
|
|
221
|
-
colorLinkHover?: undefined;
|
|
222
129
|
colorBgBase: string;
|
|
223
130
|
colorBgContainer: string;
|
|
224
131
|
colorBgElevated: string;
|
|
@@ -239,8 +146,6 @@ export declare const makeLightToken: (primaryColor: string) => {
|
|
|
239
146
|
colorTextQuaternary: string;
|
|
240
147
|
colorBorder: string;
|
|
241
148
|
colorBorderSecondary: string;
|
|
242
|
-
boxShadow: string;
|
|
243
|
-
boxShadowSecondary: string;
|
|
244
149
|
colorErrorBg: string;
|
|
245
150
|
colorErrorBgHover: string;
|
|
246
151
|
colorErrorBorder: string;
|
|
@@ -271,10 +176,10 @@ export declare const makeLightToken: (primaryColor: string) => {
|
|
|
271
176
|
colorWarning: string;
|
|
272
177
|
colorWarningText: string;
|
|
273
178
|
colorWarningTextHover: string;
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
179
|
+
defaultRadius: number;
|
|
180
|
+
borderRadius: number;
|
|
181
|
+
boxShadow: string;
|
|
182
|
+
boxShadowSecondary: string;
|
|
278
183
|
};
|
|
279
184
|
export declare const makeDarkToken: (primaryColor: string) => {
|
|
280
185
|
colorPrimary: string;
|
|
@@ -331,6 +236,9 @@ export declare const makeDarkToken: (primaryColor: string) => {
|
|
|
331
236
|
};
|
|
332
237
|
Checkbox: {
|
|
333
238
|
controlInteractiveSize: number;
|
|
239
|
+
borderRadiusSM: number;
|
|
240
|
+
lineWidth: number;
|
|
241
|
+
colorBorder: string;
|
|
334
242
|
};
|
|
335
243
|
Radio: {
|
|
336
244
|
radioSize: number;
|
|
@@ -392,9 +300,27 @@ export declare const makeDarkToken: (primaryColor: string) => {
|
|
|
392
300
|
headerColor: string;
|
|
393
301
|
footerColor: string;
|
|
394
302
|
borderColor: string;
|
|
303
|
+
headerSplitColor: string;
|
|
304
|
+
colorText: string;
|
|
395
305
|
};
|
|
396
306
|
Tag: {
|
|
397
307
|
defaultBg: string;
|
|
308
|
+
fontSizeSM: number;
|
|
309
|
+
lineHeightSM: number;
|
|
310
|
+
};
|
|
311
|
+
Form: {
|
|
312
|
+
labelColor: string;
|
|
313
|
+
};
|
|
314
|
+
Tree: {
|
|
315
|
+
colorText: string;
|
|
316
|
+
borderRadiusSM: number;
|
|
317
|
+
};
|
|
318
|
+
Tabs: {
|
|
319
|
+
horizontalItemPadding: number;
|
|
320
|
+
};
|
|
321
|
+
Descriptions: {
|
|
322
|
+
labelColor: string;
|
|
323
|
+
contentColor: string;
|
|
398
324
|
};
|
|
399
325
|
};
|
|
400
326
|
colorBgBase: string;
|
|
@@ -417,8 +343,6 @@ export declare const makeDarkToken: (primaryColor: string) => {
|
|
|
417
343
|
colorTextQuaternary: string;
|
|
418
344
|
colorBorder: string;
|
|
419
345
|
colorBorderSecondary: string;
|
|
420
|
-
boxShadow: string;
|
|
421
|
-
boxShadowSecondary: string;
|
|
422
346
|
colorErrorBg: string;
|
|
423
347
|
colorErrorBgHover: string;
|
|
424
348
|
colorErrorBorder: string;
|
|
@@ -449,6 +373,9 @@ export declare const makeDarkToken: (primaryColor: string) => {
|
|
|
449
373
|
colorWarning: string;
|
|
450
374
|
colorWarningText: string;
|
|
451
375
|
colorWarningTextHover: string;
|
|
376
|
+
boxShadow: string;
|
|
377
|
+
boxShadowSecondary: string;
|
|
452
378
|
defaultRadius: number;
|
|
379
|
+
borderRadius: number;
|
|
453
380
|
colorTransparent: string;
|
|
454
381
|
};
|