zhytech-ui-mobile 1.0.18 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/dist/static/iconfont/iconfont.css +7 -3
- package/dist/static/iconfont/iconfont.ttf +0 -0
- package/dist/static/iconfont/iconfont.woff +0 -0
- package/dist/static/iconfont/iconfont.woff2 +0 -0
- package/dist/style.css +1 -1
- package/dist/types/components/filePreview/types/filePreviewType.d.ts +216 -0
- package/dist/types/components/verificationCode/index.d.ts +5 -0
- package/dist/types/components/verificationCode/types/configOptionView.d.ts +57 -0
- package/dist/types/hooks/useUtils.d.ts +6 -0
- package/dist/types/index.d.ts +2 -2
- package/dist/types/src/components/dynamicForm/components/advanced/index.d.ts +4 -0
- package/dist/types/src/components/dynamicForm/components/application/index.d.ts +5 -0
- package/dist/types/src/components/dynamicForm/components/base/index.d.ts +9 -0
- package/dist/types/src/components/dynamicForm/components/componentType.d.ts +5 -0
- package/dist/types/src/components/dynamicForm/components/layout/index.d.ts +4 -0
- package/dist/types/src/components/dynamicForm/index.d.ts +7 -0
- package/dist/types/src/components/dynamicForm/types/abnormalCheckView.d.ts +19 -0
- package/dist/types/src/components/dynamicForm/types/componentAttribute/advanced/uploadAttribute.d.ts +25 -0
- package/dist/types/src/components/dynamicForm/types/componentAttribute/application/employeeAttribute.d.ts +33 -0
- package/dist/types/src/components/dynamicForm/types/componentAttribute/application/gradeAttribute.d.ts +45 -0
- package/dist/types/src/components/dynamicForm/types/componentAttribute/application/postAttribute.d.ts +33 -0
- package/dist/types/src/components/dynamicForm/types/componentAttribute/base/checkboxAttribute.d.ts +29 -0
- package/dist/types/src/components/dynamicForm/types/componentAttribute/base/datetimeAttribute.d.ts +54 -0
- package/dist/types/src/components/dynamicForm/types/componentAttribute/base/inputAttribute.d.ts +21 -0
- package/dist/types/src/components/dynamicForm/types/componentAttribute/base/inputNumberAttribute.d.ts +28 -0
- package/dist/types/src/components/dynamicForm/types/componentAttribute/base/radioAttribute.d.ts +21 -0
- package/dist/types/src/components/dynamicForm/types/componentAttribute/baseAttribute.d.ts +101 -0
- package/dist/types/src/components/dynamicForm/types/componentAttribute/editAttribute.d.ts +61 -0
- package/dist/types/src/components/dynamicForm/types/componentAttribute/index.d.ts +15 -0
- package/dist/types/src/components/dynamicForm/types/componentAttribute/layout/groupLayoutAttribute.d.ts +29 -0
- package/dist/types/src/components/dynamicForm/types/componentAttribute/layout/tabsLayoutAttribute.d.ts +21 -0
- package/dist/types/src/components/dynamicForm/types/documentView.d.ts +101 -0
- package/dist/types/src/components/dynamicForm/types/enum.d.ts +135 -0
- package/dist/types/src/components/dynamicForm/types/formAttribute.d.ts +84 -0
- package/dist/types/src/components/dynamicForm/types/relevanceConditionView.d.ts +22 -0
- package/dist/types/src/components/dynamicForm/types/uploadOption.d.ts +23 -0
- package/dist/types/src/components/filePreview/index.d.ts +5 -0
- package/dist/types/src/components/filePreview/types/filePreviewType.d.ts +18 -0
- package/dist/types/src/components/puzzleVCode/index.d.ts +5 -0
- package/dist/types/src/components/puzzleVCode/types/configOptionView.d.ts +53 -0
- package/dist/types/src/hooks/useDate.d.ts +132 -0
- package/dist/types/src/hooks/useMessage.d.ts +16 -0
- package/dist/types/src/hooks/useToast.d.ts +10 -0
- package/dist/types/src/hooks/useUtils.d.ts +58 -0
- package/dist/types/src/index.d.ts +790 -0
- package/dist/zhytech-ui-mobile.es.js +16856 -309
- package/dist/zhytech-ui-mobile.umd.js +2 -2
- package/package.json +3 -2
|
@@ -0,0 +1,790 @@
|
|
|
1
|
+
import { ConfigProviderThemeVars } from 'wot-design-uni';
|
|
2
|
+
import { dynamicFormData, formAttribute, dictionaryData, dictionaryItem, uploadOption, documentView, formRenderer as zhyFormRenderer } from './components/dynamicForm/index';
|
|
3
|
+
import { puzzleVcode as zhyPuzzleVcode, vcodeConfigOption } from './components/puzzleVCode/index';
|
|
4
|
+
import { filePreview as zhyFilePreview, filePreviewOption } from './components/filePreview/index';
|
|
5
|
+
|
|
6
|
+
interface ZhyConfigOptions {
|
|
7
|
+
/**
|
|
8
|
+
* 主题色
|
|
9
|
+
*/
|
|
10
|
+
theme: ConfigProviderThemeVars;
|
|
11
|
+
}
|
|
12
|
+
export type { ZhyConfigOptions, ConfigProviderThemeVars, dynamicFormData, formAttribute, dictionaryData, dictionaryItem, uploadOption, documentView, vcodeConfigOption, filePreviewOption };
|
|
13
|
+
declare const setTheme: (options: ConfigProviderThemeVars) => {
|
|
14
|
+
colorTheme?: string;
|
|
15
|
+
colorWhite?: string;
|
|
16
|
+
colorBlack?: string;
|
|
17
|
+
colorSuccess?: string;
|
|
18
|
+
colorWarning?: string;
|
|
19
|
+
colorDanger?: string;
|
|
20
|
+
colorPurple?: string;
|
|
21
|
+
colorYellow?: string;
|
|
22
|
+
colorBlue?: string;
|
|
23
|
+
colorInfo?: string;
|
|
24
|
+
colorGray1?: string;
|
|
25
|
+
colorGray2?: string;
|
|
26
|
+
colorGray3?: string;
|
|
27
|
+
colorGray4?: string;
|
|
28
|
+
colorGray5?: string;
|
|
29
|
+
colorGray6?: string;
|
|
30
|
+
colorGray7?: string;
|
|
31
|
+
colorGray8?: string;
|
|
32
|
+
fontGray1?: string;
|
|
33
|
+
fontGray2?: string;
|
|
34
|
+
fontGray3?: string;
|
|
35
|
+
fontGray4?: string;
|
|
36
|
+
fontWhite1?: string;
|
|
37
|
+
fontWhite2?: string;
|
|
38
|
+
fontWhite3?: string;
|
|
39
|
+
fontWhite4?: string;
|
|
40
|
+
colorTitle?: string;
|
|
41
|
+
colorContent?: string;
|
|
42
|
+
colorSecondary?: string;
|
|
43
|
+
colorAid?: string;
|
|
44
|
+
colorTip?: string;
|
|
45
|
+
colorBorder?: string;
|
|
46
|
+
colorBorderLight?: string;
|
|
47
|
+
colorBg?: string;
|
|
48
|
+
darkBackground?: string;
|
|
49
|
+
darkBackground2?: string;
|
|
50
|
+
darkBackground3?: string;
|
|
51
|
+
darkBackground4?: string;
|
|
52
|
+
darkBackground5?: string;
|
|
53
|
+
darkBackground6?: string;
|
|
54
|
+
darkBackground7?: string;
|
|
55
|
+
darkColor?: string;
|
|
56
|
+
darkColor2?: string;
|
|
57
|
+
darkColor3?: string;
|
|
58
|
+
darkColorGray?: string;
|
|
59
|
+
darkBorderColor?: string;
|
|
60
|
+
colorIcon?: string;
|
|
61
|
+
colorIconActive?: string;
|
|
62
|
+
colorIconDisabled?: string;
|
|
63
|
+
fsBig?: string;
|
|
64
|
+
fsImportant?: string;
|
|
65
|
+
fsTitle?: string;
|
|
66
|
+
fsContent?: string;
|
|
67
|
+
fsSecondary?: string;
|
|
68
|
+
fsAid?: string;
|
|
69
|
+
fwMedium?: string;
|
|
70
|
+
fwSemibold?: string;
|
|
71
|
+
sizeSidePadding?: string;
|
|
72
|
+
actionSheetWeight?: string;
|
|
73
|
+
actionSheetRadius?: string;
|
|
74
|
+
actionSheetLoadingSize?: string;
|
|
75
|
+
actionSheetActionHeight?: string;
|
|
76
|
+
actionSheetColor?: string;
|
|
77
|
+
actionSheetFs?: string;
|
|
78
|
+
actionSheetActiveColor?: string;
|
|
79
|
+
actionSheetSubnameFs?: string;
|
|
80
|
+
actionSheetSubnameColor?: string;
|
|
81
|
+
actionSheetDisabledColor?: string;
|
|
82
|
+
actionSheetBg?: string;
|
|
83
|
+
actionSheetTitleHeight?: string;
|
|
84
|
+
actionSheetTitleFs?: string;
|
|
85
|
+
actionSheetCloseFs?: string;
|
|
86
|
+
actionSheetCloseColor?: string;
|
|
87
|
+
actionSheetCloseTop?: string;
|
|
88
|
+
actionSheetCloseRight?: string;
|
|
89
|
+
actionSheetCancelColor?: string;
|
|
90
|
+
actionSheetCancelHeight?: string;
|
|
91
|
+
actionSheetCancelBg?: string;
|
|
92
|
+
actionSheetCancelRadius?: string;
|
|
93
|
+
actionSheetPanelPadding?: string;
|
|
94
|
+
actionSheetPanelImgFs?: string;
|
|
95
|
+
actionSheetPanelImgRadius?: string;
|
|
96
|
+
badgeBg?: string;
|
|
97
|
+
badgeColor?: string;
|
|
98
|
+
badgeFs?: string;
|
|
99
|
+
badgePadding?: string;
|
|
100
|
+
badgeHeight?: string;
|
|
101
|
+
badgePrimary?: string;
|
|
102
|
+
badgeSuccess?: string;
|
|
103
|
+
badgeWarning?: string;
|
|
104
|
+
badgeDanger?: string;
|
|
105
|
+
badgeInfo?: string;
|
|
106
|
+
badgeDotSize?: string;
|
|
107
|
+
badgeBorder?: string;
|
|
108
|
+
buttonDisabledOpacity?: string;
|
|
109
|
+
buttonSmallHeight?: string;
|
|
110
|
+
buttonSmallPadding?: string;
|
|
111
|
+
buttonSmallFs?: string;
|
|
112
|
+
buttonSmallRadius?: string;
|
|
113
|
+
buttonSmallLoading?: string;
|
|
114
|
+
buttonMediumHeight?: string;
|
|
115
|
+
buttonMediumPadding?: string;
|
|
116
|
+
buttonMediumFs?: string;
|
|
117
|
+
buttonMediumRadius?: string;
|
|
118
|
+
buttonMediumLoading?: string;
|
|
119
|
+
buttonMediumBoxShadowSize?: string;
|
|
120
|
+
buttonLargeHeight?: string;
|
|
121
|
+
buttonLargePadding?: string;
|
|
122
|
+
buttonLargeFs?: string;
|
|
123
|
+
buttonLargeRadius?: string;
|
|
124
|
+
buttonLargeLoading?: string;
|
|
125
|
+
buttonLargeBoxShadowSize?: string;
|
|
126
|
+
buttonIconFs?: string;
|
|
127
|
+
buttonIconSize?: string;
|
|
128
|
+
buttonIconColor?: string;
|
|
129
|
+
buttonIconDisabledColor?: string;
|
|
130
|
+
buttonNormalColor?: string;
|
|
131
|
+
buttonNormalDisabledColor?: string;
|
|
132
|
+
buttonPlainBgColor?: string;
|
|
133
|
+
buttonPrimaryColor?: string;
|
|
134
|
+
buttonPrimaryBgColor?: string;
|
|
135
|
+
buttonSuccessColor?: string;
|
|
136
|
+
buttonSuccessBgColor?: string;
|
|
137
|
+
buttonInfoColor?: string;
|
|
138
|
+
buttonInfoBgColor?: string;
|
|
139
|
+
buttonInfoPlainBorderColor?: string;
|
|
140
|
+
buttonInfoPlainNormalColor?: string;
|
|
141
|
+
buttonWarningColor?: string;
|
|
142
|
+
buttonWarningBgColor?: string;
|
|
143
|
+
buttonErrorColor?: string;
|
|
144
|
+
buttonErrorBgColor?: string;
|
|
145
|
+
buttonTextHoverOpacity?: string;
|
|
146
|
+
cellPadding?: string;
|
|
147
|
+
cellLineHeight?: string;
|
|
148
|
+
cellGroupTitleFs?: string;
|
|
149
|
+
cellGroupPadding?: string;
|
|
150
|
+
cellGroupTitleColor?: string;
|
|
151
|
+
cellGroupValueFs?: string;
|
|
152
|
+
cellGroupValueColor?: string;
|
|
153
|
+
cellWrapperPadding?: string;
|
|
154
|
+
cellWrapperPaddingLarge?: string;
|
|
155
|
+
cellWrapperPaddingWithLabel?: string;
|
|
156
|
+
cellIconRight?: string;
|
|
157
|
+
cellIconSize?: string;
|
|
158
|
+
cellTitleFs?: string;
|
|
159
|
+
cellTitleColor?: string;
|
|
160
|
+
cellLabelFs?: string;
|
|
161
|
+
cellLabelColor?: string;
|
|
162
|
+
cellValueFs?: string;
|
|
163
|
+
cellValueFsLarge?: string;
|
|
164
|
+
cellValueColor?: string;
|
|
165
|
+
cellArrowSize?: string;
|
|
166
|
+
cellArrowColor?: string;
|
|
167
|
+
cellClearColor?: string;
|
|
168
|
+
cellTapBg?: string;
|
|
169
|
+
cellTitleFsLarge?: string;
|
|
170
|
+
cellLabelFsLarge?: string;
|
|
171
|
+
cellIconSizeLarge?: string;
|
|
172
|
+
cellRequiredColor?: string;
|
|
173
|
+
cellRequiredSize?: string;
|
|
174
|
+
cellRequiredMargin?: string;
|
|
175
|
+
cellVerticalTop?: string;
|
|
176
|
+
calendarFs?: string;
|
|
177
|
+
calendarPanelPadding?: string;
|
|
178
|
+
calendarPanelTitleFs?: string;
|
|
179
|
+
calendarPanelTitleColor?: string;
|
|
180
|
+
calendarWeekColor?: string;
|
|
181
|
+
calendarWeekHeight?: string;
|
|
182
|
+
calendarWeekFs?: string;
|
|
183
|
+
calendarDayFs?: string;
|
|
184
|
+
calendarDayColor?: string;
|
|
185
|
+
calendarDayFw?: string;
|
|
186
|
+
calendarDayHeight?: string;
|
|
187
|
+
calendarMonthWidth?: string;
|
|
188
|
+
calendarActiveColor?: string;
|
|
189
|
+
calendarSelectedColor?: string;
|
|
190
|
+
calendarDisabledColor?: string;
|
|
191
|
+
calendarRangeColor?: string;
|
|
192
|
+
calendarActiveBorder?: string;
|
|
193
|
+
calendarInfoFs?: string;
|
|
194
|
+
calendarItemMarginBottom?: string;
|
|
195
|
+
checkboxMargin?: string;
|
|
196
|
+
checkboxBg?: string;
|
|
197
|
+
checkboxLabelMargin?: string;
|
|
198
|
+
checkboxSize?: string;
|
|
199
|
+
checkboxIconSize?: string;
|
|
200
|
+
checkboxBorderColor?: string;
|
|
201
|
+
checkboxCheckColor?: string;
|
|
202
|
+
checkboxLabelFs?: string;
|
|
203
|
+
checkboxLabelColor?: string;
|
|
204
|
+
checkboxCheckedColor?: string;
|
|
205
|
+
checkboxDisabledColor?: string;
|
|
206
|
+
checkboxDisabledLabelColor?: string;
|
|
207
|
+
checkboxDisabledCheckColor?: string;
|
|
208
|
+
checkboxDisabledCheckBg?: string;
|
|
209
|
+
checkboxSquareRadius?: string;
|
|
210
|
+
checkboxLargeSize?: string;
|
|
211
|
+
checkboxLargeLabelFs?: string;
|
|
212
|
+
checkboxButtonHeight?: string;
|
|
213
|
+
checkboxButtonMinWidth?: string;
|
|
214
|
+
checkboxButtonRadius?: string;
|
|
215
|
+
checkboxButtonBg?: string;
|
|
216
|
+
checkboxButtonFontSize?: string;
|
|
217
|
+
checkboxButtonBorder?: string;
|
|
218
|
+
checkboxButtonDisabledBorder?: string;
|
|
219
|
+
collapseSidePadding?: string;
|
|
220
|
+
collapseBodyPadding?: string;
|
|
221
|
+
collapseHeaderPadding?: string;
|
|
222
|
+
collapseTitleColor?: string;
|
|
223
|
+
collapseTitleFs?: string;
|
|
224
|
+
collapseArrowSize?: string;
|
|
225
|
+
collapseArrowColor?: string;
|
|
226
|
+
collapseBodyFs?: string;
|
|
227
|
+
collapseBodyColor?: string;
|
|
228
|
+
collapseDisabledColor?: string;
|
|
229
|
+
collapseRetractFs?: string;
|
|
230
|
+
collapseMoreColor?: string;
|
|
231
|
+
dividerPadding?: string;
|
|
232
|
+
dividerMargin?: string;
|
|
233
|
+
dividerColor?: string;
|
|
234
|
+
dividerLineColor?: string;
|
|
235
|
+
dividerLineHeight?: string;
|
|
236
|
+
dividerFs?: string;
|
|
237
|
+
dividerContentLeftWidth?: string;
|
|
238
|
+
dividerContentLeftMargin?: string;
|
|
239
|
+
dividerContentRightMargin?: string;
|
|
240
|
+
dividerContentRightWidth?: string;
|
|
241
|
+
dividerVerticalHeight?: string;
|
|
242
|
+
dividerVerticalContentMargin?: string;
|
|
243
|
+
dividerVerticalLineWidth?: string;
|
|
244
|
+
dropMenuHeight?: string;
|
|
245
|
+
dropMenuColor?: string;
|
|
246
|
+
dropMenuFs?: string;
|
|
247
|
+
dropMenuArrowFs?: string;
|
|
248
|
+
dropMenuSidePadding?: string;
|
|
249
|
+
dropMenuDisabledColor?: string;
|
|
250
|
+
dropMenuItemHeight?: string;
|
|
251
|
+
dropMenuItemColor?: string;
|
|
252
|
+
dropMenuItemFs?: string;
|
|
253
|
+
dropMenuItemColorActive?: string;
|
|
254
|
+
dropMenuItemColorTip?: string;
|
|
255
|
+
dropMenuItemFsTip?: string;
|
|
256
|
+
dropMenuOptionCheckSize?: string;
|
|
257
|
+
dropMenuLineColor?: string;
|
|
258
|
+
dropMenuLineHeight?: string;
|
|
259
|
+
inputNumberColor?: string;
|
|
260
|
+
inputNumberBorderColor?: string;
|
|
261
|
+
inputNumberDisabledColor?: string;
|
|
262
|
+
inputNumberHeight?: string;
|
|
263
|
+
inputNumberBtnWidth?: string;
|
|
264
|
+
inputNumberInputWidth?: string;
|
|
265
|
+
inputNumberRadius?: string;
|
|
266
|
+
inputNumberFs?: string;
|
|
267
|
+
inputNumberIconSize?: string;
|
|
268
|
+
inputNumberIconColor?: string;
|
|
269
|
+
inputPadding?: string;
|
|
270
|
+
inputBorderColor?: string;
|
|
271
|
+
inputNotEmptyBorderColor?: string;
|
|
272
|
+
inputFs?: string;
|
|
273
|
+
inputFsLarge?: string;
|
|
274
|
+
inputIconMargin?: string;
|
|
275
|
+
inputColor?: string;
|
|
276
|
+
inputPlaceholderColor?: string;
|
|
277
|
+
inputDisabledColor?: string;
|
|
278
|
+
inputErrorColor?: string;
|
|
279
|
+
inputIconColor?: string;
|
|
280
|
+
inputClearColor?: string;
|
|
281
|
+
inputCountColor?: string;
|
|
282
|
+
inputCountCurrentColor?: string;
|
|
283
|
+
inputBg?: string;
|
|
284
|
+
inputCellBg?: string;
|
|
285
|
+
inputCellBorderColor?: string;
|
|
286
|
+
inputCellPadding?: string;
|
|
287
|
+
inputCellPaddingLarge?: string;
|
|
288
|
+
inputCellHeight?: string;
|
|
289
|
+
inputCellLabelWidth?: string;
|
|
290
|
+
inputInnerHeight?: string;
|
|
291
|
+
inputInnerHeightNoBorder?: string;
|
|
292
|
+
inputCountFs?: string;
|
|
293
|
+
inputCountFsLarge?: string;
|
|
294
|
+
inputIconSize?: string;
|
|
295
|
+
inputIconSizeLarge?: string;
|
|
296
|
+
textareaPadding?: string;
|
|
297
|
+
textareaBorderColor?: string;
|
|
298
|
+
textareaNotEmptyBorderColor?: string;
|
|
299
|
+
textareaFs?: string;
|
|
300
|
+
textareaFsLarge?: string;
|
|
301
|
+
textareaIconMargin?: string;
|
|
302
|
+
textareaColor?: string;
|
|
303
|
+
textareaIconColor?: string;
|
|
304
|
+
textareaClearColor?: string;
|
|
305
|
+
textareaCountColor?: string;
|
|
306
|
+
textareaCountCurrentColor?: string;
|
|
307
|
+
textareaBg?: string;
|
|
308
|
+
textareaCellBorderColor?: string;
|
|
309
|
+
textareaCellPadding?: string;
|
|
310
|
+
textareaCellPaddingLarge?: string;
|
|
311
|
+
textareaCellHeight?: string;
|
|
312
|
+
textareaCountFs?: string;
|
|
313
|
+
textareaCountFsLarge?: string;
|
|
314
|
+
textareaIconSize?: string;
|
|
315
|
+
textareaIconSizeLarge?: string;
|
|
316
|
+
loadmoreHeight?: string;
|
|
317
|
+
loadmoreColor?: string;
|
|
318
|
+
loadmoreFs?: string;
|
|
319
|
+
loadmoreErrorColor?: string;
|
|
320
|
+
loadmoreRefreshFs?: string;
|
|
321
|
+
loadmoreLoadingSize?: string;
|
|
322
|
+
messageBoxWidth?: string;
|
|
323
|
+
messageBoxBg?: string;
|
|
324
|
+
messageBoxRadius?: string;
|
|
325
|
+
messageBoxPadding?: string;
|
|
326
|
+
messageBoxTitleFs?: string;
|
|
327
|
+
messageBoxTitleColor?: string;
|
|
328
|
+
messageBoxContentFs?: string;
|
|
329
|
+
messageBoxContentColor?: string;
|
|
330
|
+
messageBoxContentMaxHeight?: string;
|
|
331
|
+
messageBoxContentScrollbarWidth?: string;
|
|
332
|
+
messageBoxContentScrollbarColor?: string;
|
|
333
|
+
messageBoxInputErrorColor?: string;
|
|
334
|
+
noticeBarFs?: string;
|
|
335
|
+
noticeBarLineHeight?: string;
|
|
336
|
+
noticeBarBorderRadius?: string;
|
|
337
|
+
noticeBarPadding?: string;
|
|
338
|
+
noticeBarWarningBg?: string;
|
|
339
|
+
noticeBarInfoBg?: string;
|
|
340
|
+
noticeBarDangerBg?: string;
|
|
341
|
+
noticeBarWarningColor?: string;
|
|
342
|
+
noticeBarInfoColor?: string;
|
|
343
|
+
noticeBarDangerColor?: string;
|
|
344
|
+
noticeBarPrefixSize?: string;
|
|
345
|
+
noticeBarCloseBg?: string;
|
|
346
|
+
noticeBarCloseSize?: string;
|
|
347
|
+
noticeBarCloseColor?: string;
|
|
348
|
+
noticeBarWrapPadding?: string;
|
|
349
|
+
paginationContentPadding?: string;
|
|
350
|
+
paginationMessagePadding?: string;
|
|
351
|
+
paginationMessageFs?: string;
|
|
352
|
+
paginationMessageColor?: string;
|
|
353
|
+
paginationNavBorder?: string;
|
|
354
|
+
paginationNavBorderRadius?: string;
|
|
355
|
+
paginationNavFs?: string;
|
|
356
|
+
paginationNavWidth?: string;
|
|
357
|
+
paginationNavColor?: string;
|
|
358
|
+
paginationNavContentFs?: string;
|
|
359
|
+
paginationNavSepatatorPadding?: string;
|
|
360
|
+
paginationNavCurrentColor?: string;
|
|
361
|
+
paginationIconSize?: string;
|
|
362
|
+
pickerToolbarHeight?: string;
|
|
363
|
+
pickerActionHeight?: string;
|
|
364
|
+
pickerToolbarFinishColor?: string;
|
|
365
|
+
pickerToolbarCancelColor?: string;
|
|
366
|
+
pickerToolbarFs?: string;
|
|
367
|
+
pickerToolbarTitleColor?: string;
|
|
368
|
+
pickerColumnFs?: string;
|
|
369
|
+
pickerBg?: string;
|
|
370
|
+
pickerColumnActiveFs?: string;
|
|
371
|
+
pickerColumnColor?: string;
|
|
372
|
+
pickerColumnHeight?: string;
|
|
373
|
+
pickerColumnItemHeight?: string;
|
|
374
|
+
pickerColumnSelectBg?: string;
|
|
375
|
+
pickerLoadingButtonColor?: string;
|
|
376
|
+
pickerColumnPadding?: string;
|
|
377
|
+
pickerColumnDisabledColor?: string;
|
|
378
|
+
pickerMask?: string;
|
|
379
|
+
pickerLoadingBg?: string;
|
|
380
|
+
pickerRegionSeparatorColor?: string;
|
|
381
|
+
pickerCellArrowSizeLarge?: string;
|
|
382
|
+
pickerRegionColor?: string;
|
|
383
|
+
pickerRegionBgActiveColor?: string;
|
|
384
|
+
pickerRegionFs?: string;
|
|
385
|
+
colPickerSelectedHeight?: string;
|
|
386
|
+
colPickerSelectedPadding?: string;
|
|
387
|
+
colPickerSelectedFs?: string;
|
|
388
|
+
colPickerSelectedColor?: string;
|
|
389
|
+
colPickerSelectedFw?: string;
|
|
390
|
+
colPickerLineWidth?: string;
|
|
391
|
+
colPickerLineHeight?: string;
|
|
392
|
+
colPickerLineColor?: string;
|
|
393
|
+
colPickerLineBoxShadow?: string;
|
|
394
|
+
colPickerListHeight?: string;
|
|
395
|
+
colPickerListPaddingBottom?: string;
|
|
396
|
+
colPickerListColor?: string;
|
|
397
|
+
colPickerListColorDisabled?: string;
|
|
398
|
+
colPickerListColorTip?: string;
|
|
399
|
+
colPickerListFs?: string;
|
|
400
|
+
colPickerListFsTip?: string;
|
|
401
|
+
colPickerListItemPadding?: string;
|
|
402
|
+
colPickerListCheckedIconSize?: string;
|
|
403
|
+
colPickerListColorChecked?: string;
|
|
404
|
+
overlayBg?: string;
|
|
405
|
+
overlayBgDark?: string;
|
|
406
|
+
popupCloseSize?: string;
|
|
407
|
+
popupCloseColor?: string;
|
|
408
|
+
progressPadding?: string;
|
|
409
|
+
progressBg?: string;
|
|
410
|
+
progressDangerColor?: string;
|
|
411
|
+
progressSuccessColor?: string;
|
|
412
|
+
progressWarningColor?: string;
|
|
413
|
+
progressColor?: string;
|
|
414
|
+
progressHeight?: string;
|
|
415
|
+
progressLabelColor?: string;
|
|
416
|
+
progressLabelFs?: string;
|
|
417
|
+
progressIconFs?: string;
|
|
418
|
+
radioMargin?: string;
|
|
419
|
+
radioLabelMargin?: string;
|
|
420
|
+
radioSize?: string;
|
|
421
|
+
radioBg?: string;
|
|
422
|
+
radioLabelFs?: string;
|
|
423
|
+
radioLabelColor?: string;
|
|
424
|
+
radioCheckedColor?: string;
|
|
425
|
+
radioDisabledColor?: string;
|
|
426
|
+
radioDisabledLabelColor?: string;
|
|
427
|
+
radioLargeSize?: string;
|
|
428
|
+
radioLargeLabelFs?: string;
|
|
429
|
+
radioButtonHeight?: string;
|
|
430
|
+
radioButtonMinWidth?: string;
|
|
431
|
+
radioButtonMaxWidth?: string;
|
|
432
|
+
radioButtonRadius?: string;
|
|
433
|
+
radioButtonBg?: string;
|
|
434
|
+
radioButtonFs?: string;
|
|
435
|
+
radioButtonBorder?: string;
|
|
436
|
+
radioButtonDisabledBorder?: string;
|
|
437
|
+
radioDotSize?: string;
|
|
438
|
+
radioDotLargeSize?: string;
|
|
439
|
+
radioDotCheckedBg?: string;
|
|
440
|
+
radioDotCheckedBorderColor?: string;
|
|
441
|
+
radioDotBorderColor?: string;
|
|
442
|
+
radioDotDisabledBorder?: string;
|
|
443
|
+
radioDotDisabledBg?: string;
|
|
444
|
+
searchSidePadding?: string;
|
|
445
|
+
searchPadding?: string;
|
|
446
|
+
searchInputRadius?: string;
|
|
447
|
+
searchInputBg?: string;
|
|
448
|
+
searchInputHeight?: string;
|
|
449
|
+
searchInputPadding?: string;
|
|
450
|
+
searchInputFs?: string;
|
|
451
|
+
searchInputColor?: string;
|
|
452
|
+
searchIconColor?: string;
|
|
453
|
+
searchIconSize?: string;
|
|
454
|
+
searchClearIconSize?: string;
|
|
455
|
+
searchPlaceholderColor?: string;
|
|
456
|
+
searchCancelPadding?: string;
|
|
457
|
+
searchCancelFs?: string;
|
|
458
|
+
searchCancelColor?: string;
|
|
459
|
+
searchLightBg?: string;
|
|
460
|
+
sliderFs?: string;
|
|
461
|
+
sliderHandleRadius?: string;
|
|
462
|
+
sliderHandleBg?: string;
|
|
463
|
+
sliderAxieHeight?: string;
|
|
464
|
+
sliderColor?: string;
|
|
465
|
+
sliderAxieBg?: string;
|
|
466
|
+
sliderLineColor?: string;
|
|
467
|
+
sliderDisabledColor?: string;
|
|
468
|
+
sortButtonFs?: string;
|
|
469
|
+
sortButtonColor?: string;
|
|
470
|
+
sortButtonHeight?: string;
|
|
471
|
+
sortButtonLineHeight?: string;
|
|
472
|
+
sortButtonLineColor?: string;
|
|
473
|
+
stepsIconSize?: string;
|
|
474
|
+
stepsInactiveColor?: string;
|
|
475
|
+
stepsFinishedColor?: string;
|
|
476
|
+
stepsIconTextFs?: string;
|
|
477
|
+
stepsErrorColor?: string;
|
|
478
|
+
stepsTitleFs?: string;
|
|
479
|
+
stepsTitleFw?: string;
|
|
480
|
+
stepsLabelFs?: string;
|
|
481
|
+
stepsDescriptionColor?: string;
|
|
482
|
+
stepsIsIconWidth?: string;
|
|
483
|
+
stepsLineColor?: string;
|
|
484
|
+
stepsDotSize?: string;
|
|
485
|
+
stepsDotActiveSize?: string;
|
|
486
|
+
switchSize?: string;
|
|
487
|
+
switchWidth?: string;
|
|
488
|
+
switchHeight?: string;
|
|
489
|
+
switchCircleSize?: string;
|
|
490
|
+
switchBorderColor?: string;
|
|
491
|
+
switchActiveColor?: string;
|
|
492
|
+
switchActiveShadowColor?: string;
|
|
493
|
+
switchInactiveColor?: string;
|
|
494
|
+
switchInactiveShadowColor?: string;
|
|
495
|
+
tabsNavArrowFs?: string;
|
|
496
|
+
tabsNavArrowOpenFs?: string;
|
|
497
|
+
tabsNavWidth?: string;
|
|
498
|
+
tabsNavHeight?: string;
|
|
499
|
+
tabsNavFs?: string;
|
|
500
|
+
tabsNavColor?: string;
|
|
501
|
+
tabsNavBg?: string;
|
|
502
|
+
tabsNavActiveColor?: string;
|
|
503
|
+
tabsNavDisabledColor?: string;
|
|
504
|
+
tabsNavLineHeight?: string;
|
|
505
|
+
tabsNavLineWidth?: string;
|
|
506
|
+
tabsNavLineBgColor?: string;
|
|
507
|
+
tabsNavMapFs?: string;
|
|
508
|
+
tabsNavMapColor?: string;
|
|
509
|
+
tabsNavMapArrowColor?: string;
|
|
510
|
+
tabsNavMapBtnBeforeBg?: string;
|
|
511
|
+
tabsNavMapButtonBackColor?: string;
|
|
512
|
+
tabsNavMapButtonRadius?: string;
|
|
513
|
+
tabsNavMapModalBg?: string;
|
|
514
|
+
tagFs?: string;
|
|
515
|
+
tagColor?: string;
|
|
516
|
+
tagSmallFs?: string;
|
|
517
|
+
tagInfoColor?: string;
|
|
518
|
+
tagPrimaryColor?: string;
|
|
519
|
+
tagDangerColor?: string;
|
|
520
|
+
tagWarningColor?: string;
|
|
521
|
+
tagSuccessColor?: string;
|
|
522
|
+
tagInfoBg?: string;
|
|
523
|
+
tagPrimaryBg?: string;
|
|
524
|
+
tagDangerBg?: string;
|
|
525
|
+
tagWarningBg?: string;
|
|
526
|
+
tagSuccessBg?: string;
|
|
527
|
+
tagRoundColor?: string;
|
|
528
|
+
tagRoundBorderColor?: string;
|
|
529
|
+
tagRoundRadius?: string;
|
|
530
|
+
tagMarkRadius?: string;
|
|
531
|
+
tagCloseSize?: string;
|
|
532
|
+
tagCloseColor?: string;
|
|
533
|
+
tagCloseActiveColor?: string;
|
|
534
|
+
toastColor?: string;
|
|
535
|
+
toastPadding?: string;
|
|
536
|
+
toastMaxWidth?: string;
|
|
537
|
+
toastRadius?: string;
|
|
538
|
+
toastBg?: string;
|
|
539
|
+
toastFs?: string;
|
|
540
|
+
toastLineHeight?: string;
|
|
541
|
+
toastWithIconMinWidth?: string;
|
|
542
|
+
toastIconSize?: string;
|
|
543
|
+
toastIconMarginRight?: string;
|
|
544
|
+
toastIconMarginBottom?: string;
|
|
545
|
+
toastLoadingPadding?: string;
|
|
546
|
+
toastLoadingMarginBottom?: string;
|
|
547
|
+
toastBoxShadow?: string;
|
|
548
|
+
loadingSize?: string;
|
|
549
|
+
tooltipBg?: string;
|
|
550
|
+
tooltipColor?: string;
|
|
551
|
+
tooltipRadius?: string;
|
|
552
|
+
tooltipArrowSize?: string;
|
|
553
|
+
tooltipFs?: string;
|
|
554
|
+
tooltipBlur?: string;
|
|
555
|
+
tooltipPadding?: string;
|
|
556
|
+
tooltipCloseSize?: string;
|
|
557
|
+
tooltipZIndex?: string;
|
|
558
|
+
tooltipLineHeight?: string;
|
|
559
|
+
popoverBg?: string;
|
|
560
|
+
popoverColor?: string;
|
|
561
|
+
popoverBoxShadow?: string;
|
|
562
|
+
popoverArrowBoxShadow?: string;
|
|
563
|
+
popoverBorderColor?: string;
|
|
564
|
+
popoverRadius?: string;
|
|
565
|
+
popoverArrowSize?: string;
|
|
566
|
+
popoverFs?: string;
|
|
567
|
+
popoverPadding?: string;
|
|
568
|
+
popoverLineHeight?: string;
|
|
569
|
+
popoverZIndex?: string;
|
|
570
|
+
gridItemFs?: string;
|
|
571
|
+
gridItemBg?: string;
|
|
572
|
+
gridItemPadding?: string;
|
|
573
|
+
gridItemBorderColor?: string;
|
|
574
|
+
gridItemHoverBg?: string;
|
|
575
|
+
gridItemHoverBgDark?: string;
|
|
576
|
+
statustipFs?: string;
|
|
577
|
+
statustipColor?: string;
|
|
578
|
+
statustipLineHeight?: string;
|
|
579
|
+
statustipPadding?: string;
|
|
580
|
+
cardBg?: string;
|
|
581
|
+
cardFs?: string;
|
|
582
|
+
cardPadding?: string;
|
|
583
|
+
cardFooterPadding?: string;
|
|
584
|
+
cardShadowColor?: string;
|
|
585
|
+
cardRadius?: string;
|
|
586
|
+
cardLineHeight?: string;
|
|
587
|
+
cardMargin?: string;
|
|
588
|
+
cardTitleColor?: string;
|
|
589
|
+
cardTitleFs?: string;
|
|
590
|
+
cardContentBorderColor?: string;
|
|
591
|
+
cardRectangleTitlePadding?: string;
|
|
592
|
+
cardRectangleContentPadding?: string;
|
|
593
|
+
cardRectangleFooterPadding?: string;
|
|
594
|
+
cardContentColor?: string;
|
|
595
|
+
cardContentLineHeight?: string;
|
|
596
|
+
cardContentMargin?: string;
|
|
597
|
+
cardContentRectangleMargin?: string;
|
|
598
|
+
uploadSize?: string;
|
|
599
|
+
uploadEvokeIconSize?: string;
|
|
600
|
+
uploadEvokeBg?: string;
|
|
601
|
+
uploadEvokeColor?: string;
|
|
602
|
+
uploadEvokeDisabledColor?: string;
|
|
603
|
+
uploadCloseIconSize?: string;
|
|
604
|
+
uploadCloseIconColor?: string;
|
|
605
|
+
uploadProgressFs?: string;
|
|
606
|
+
uploadFileFs?: string;
|
|
607
|
+
uploadFileColor?: string;
|
|
608
|
+
uploadPreviewNameFs?: string;
|
|
609
|
+
uploadPreviewIconSize?: string;
|
|
610
|
+
uploadPreviewNameBg?: string;
|
|
611
|
+
uploadPreviewNameHeight?: string;
|
|
612
|
+
uploadCoverIconSize?: string;
|
|
613
|
+
curtainContentRadius?: string;
|
|
614
|
+
curtainContentCloseColor?: string;
|
|
615
|
+
curtainContentCloseFs?: string;
|
|
616
|
+
notifyTextColor?: string;
|
|
617
|
+
notifyPadding?: string;
|
|
618
|
+
notifyFontSize?: string;
|
|
619
|
+
notifyLineHeight?: string;
|
|
620
|
+
notifyPrimaryBackground?: string;
|
|
621
|
+
notifySuccessBackground?: string;
|
|
622
|
+
notifyDangerBackground?: string;
|
|
623
|
+
notifyWarningBackground?: string;
|
|
624
|
+
skeletonBackgroundColor?: string;
|
|
625
|
+
skeletonAnimationGradient?: string;
|
|
626
|
+
skeletonAnimationFlashed?: string;
|
|
627
|
+
skeletonTextHeightDefault?: string;
|
|
628
|
+
skeletonRectHeightDefault?: string;
|
|
629
|
+
skeletonCircleHeightDefault?: string;
|
|
630
|
+
skeletonRowMarginBottom?: string;
|
|
631
|
+
skeletonBorderRadiusText?: string;
|
|
632
|
+
skeletonBorderRadiusRect?: string;
|
|
633
|
+
skeletonBorderRadiusCircle?: string;
|
|
634
|
+
circleTextColor?: string;
|
|
635
|
+
swiperRadius?: string;
|
|
636
|
+
swiperItemPadding?: string;
|
|
637
|
+
swiperItemTextColor?: string;
|
|
638
|
+
swiperItemTextFs?: string;
|
|
639
|
+
swiperNavDotColor?: string;
|
|
640
|
+
swiperNavDotActiveColor?: string;
|
|
641
|
+
swiperNavDotSize?: string;
|
|
642
|
+
swiperNavDotsBarActiveWidth?: string;
|
|
643
|
+
swiperNavFractionColor?: string;
|
|
644
|
+
swiperNavFractionBgColor?: string;
|
|
645
|
+
swiperNavFractionHeight?: string;
|
|
646
|
+
swiperNavFractionFontSize?: string;
|
|
647
|
+
swiperNavBtnColor?: string;
|
|
648
|
+
swiperNavBtnBgColor?: string;
|
|
649
|
+
swiperNavBtnSize?: string;
|
|
650
|
+
segmentedPadding?: string;
|
|
651
|
+
segmentedItemBgColor?: string;
|
|
652
|
+
segmentedItemColor?: string;
|
|
653
|
+
segmentedItemAcitveBg?: string;
|
|
654
|
+
segmentedItemDisabledColor?: string;
|
|
655
|
+
tabbarHeight?: string;
|
|
656
|
+
tabbarBoxShadow?: string;
|
|
657
|
+
tabbarItemTitleFontSize?: string;
|
|
658
|
+
tabbarItemTitleLineHeight?: string;
|
|
659
|
+
tabbarInactiveColor?: string;
|
|
660
|
+
tabbarActiveColor?: string;
|
|
661
|
+
tabbarItemIconSize?: string;
|
|
662
|
+
navbarHeight?: string;
|
|
663
|
+
navbarColor?: string;
|
|
664
|
+
navbarBackground?: string;
|
|
665
|
+
navbarArrowSize?: string;
|
|
666
|
+
navbarDescFontSize?: string;
|
|
667
|
+
navbarDescFontColor?: string;
|
|
668
|
+
navbarTitleFontSize?: string;
|
|
669
|
+
navbarTitleFontWeight?: string;
|
|
670
|
+
navbarDisabledOpacity?: string;
|
|
671
|
+
navbarHoverColor?: string;
|
|
672
|
+
navbarCapsuleBorderColor?: string;
|
|
673
|
+
navbarCapsuleBorderRadius?: string;
|
|
674
|
+
navbarCapsuleWidth?: string;
|
|
675
|
+
navbarCapsuleHeight?: string;
|
|
676
|
+
navbarCapsuleIconSize?: string;
|
|
677
|
+
tableColor?: string;
|
|
678
|
+
tableBg?: string;
|
|
679
|
+
tableStripeBg?: string;
|
|
680
|
+
tableBorderColor?: string;
|
|
681
|
+
tableFontSize?: string;
|
|
682
|
+
sidebarBg?: string;
|
|
683
|
+
sidebarWidth?: string;
|
|
684
|
+
sidebarHeight?: string;
|
|
685
|
+
sidebarColor?: string;
|
|
686
|
+
sidebarItemHeight?: string;
|
|
687
|
+
sidebarItemLineHeight?: string;
|
|
688
|
+
sidebarDisabledColor?: string;
|
|
689
|
+
sidebarActiveColor?: string;
|
|
690
|
+
sidebarActiveBg?: string;
|
|
691
|
+
sidebarHoverBg?: string;
|
|
692
|
+
sidebarBorderRadius?: string;
|
|
693
|
+
sidebarFontSize?: string;
|
|
694
|
+
sidebarIconSize?: string;
|
|
695
|
+
sidebarActiveBorderWidth?: string;
|
|
696
|
+
sidebarActiveBorderHeight?: string;
|
|
697
|
+
fabTriggerHeight?: string;
|
|
698
|
+
fabTriggerWidth?: string;
|
|
699
|
+
fabActionsPadding?: string;
|
|
700
|
+
fabIconFs?: string;
|
|
701
|
+
countDownTextColor?: string;
|
|
702
|
+
countDownFontSize?: string;
|
|
703
|
+
countDownLineHeight?: string;
|
|
704
|
+
keyboardKeyHeight?: string;
|
|
705
|
+
keyboardKeyFontSize?: string;
|
|
706
|
+
keyboardKeyBackground?: string;
|
|
707
|
+
keyboardKeyBorderRadius?: string;
|
|
708
|
+
keyboardDeleteFontSize?: string;
|
|
709
|
+
keyboardKeyActiveColor?: string;
|
|
710
|
+
keyboardButtonTextColor?: string;
|
|
711
|
+
keyboardButtonBackground?: string;
|
|
712
|
+
keyboardButtonActiveOpacity?: string;
|
|
713
|
+
keyboardBackground?: string;
|
|
714
|
+
keyboardTitleHeight?: string;
|
|
715
|
+
keyboardTitleColor?: string;
|
|
716
|
+
keyboardTitleFontSize?: string;
|
|
717
|
+
keyboardClosePadding?: string;
|
|
718
|
+
keyboardCloseColor?: string;
|
|
719
|
+
keyboardCloseFontSize?: string;
|
|
720
|
+
keyboardIconSize?: string;
|
|
721
|
+
numberKeyboardKeyHeight?: string;
|
|
722
|
+
numberKeyboardKeyFontSize?: string;
|
|
723
|
+
numberKeyboardKeyBackground?: string;
|
|
724
|
+
numberKeyboardKeyBorderRadius?: string;
|
|
725
|
+
numberKeyboardDeleteFontSize?: string;
|
|
726
|
+
numberKeyboardKeyActiveColor?: string;
|
|
727
|
+
numberKeyboardButtonTextColor?: string;
|
|
728
|
+
numberKeyboardButtonBackground?: string;
|
|
729
|
+
numberKeyboardButtonActiveOpacity?: string;
|
|
730
|
+
numberKeyboardBackground?: string;
|
|
731
|
+
numberKeyboardTitleHeight?: string;
|
|
732
|
+
numberKeyboardTitleColor?: string;
|
|
733
|
+
numberKeyboardTitleFontSize?: string;
|
|
734
|
+
numberKeyboardClosePadding?: string;
|
|
735
|
+
numberKeyboardCloseColor?: string;
|
|
736
|
+
numberKeyboardCloseFontSize?: string;
|
|
737
|
+
numberKeyboardIconSize?: string;
|
|
738
|
+
passwordInputHeight?: string;
|
|
739
|
+
passwordInputMargin?: string;
|
|
740
|
+
passwordInputFontSize?: string;
|
|
741
|
+
passwordInputRadius?: string;
|
|
742
|
+
passwordInputBackground?: string;
|
|
743
|
+
passwordInputInfoColor?: string;
|
|
744
|
+
passwordInputInfoFontSize?: string;
|
|
745
|
+
passwordInputBorderColor?: string;
|
|
746
|
+
passwordInputErrorInfoColor?: string;
|
|
747
|
+
passwordInputDotSize?: string;
|
|
748
|
+
passwordInputDotColor?: string;
|
|
749
|
+
passwordInputTextColor?: string;
|
|
750
|
+
passwordInputCursorColor?: string;
|
|
751
|
+
passwordInputCursorWidth?: string;
|
|
752
|
+
passwordInputCursorHeight?: string;
|
|
753
|
+
passwordInputCursorDuration?: string;
|
|
754
|
+
formItemErrorMessageColor?: string;
|
|
755
|
+
formItemErrorMessageFontSize?: string;
|
|
756
|
+
formItemErrorMessageLineHeight?: string;
|
|
757
|
+
backtopBg?: string;
|
|
758
|
+
backtopIconSize?: string;
|
|
759
|
+
indexBarIndexFontSize?: string;
|
|
760
|
+
textInfoColor?: string;
|
|
761
|
+
textPrimaryColor?: string;
|
|
762
|
+
textErrorColor?: string;
|
|
763
|
+
textWarningColor?: string;
|
|
764
|
+
textSuccessColor?: string;
|
|
765
|
+
videoPreviewBg?: string;
|
|
766
|
+
videoPreviewCloseColor?: string;
|
|
767
|
+
videoPreviewCloseFontSize?: string;
|
|
768
|
+
imgCropperIconSize?: string;
|
|
769
|
+
imgCropperIconColor?: string;
|
|
770
|
+
floatingPanelBg?: string;
|
|
771
|
+
floatingPanelRadius?: string;
|
|
772
|
+
floatingPanelZIndex?: string;
|
|
773
|
+
floatingPanelHeaderHeight?: string;
|
|
774
|
+
floatingPanelBarWidth?: string;
|
|
775
|
+
floatingPanelBarHeight?: string;
|
|
776
|
+
floatingPanelBarBg?: string;
|
|
777
|
+
floatingPanelBarRadius?: string;
|
|
778
|
+
floatingPanelContentBg?: string;
|
|
779
|
+
signatureBg?: string;
|
|
780
|
+
signatureRadius?: string;
|
|
781
|
+
signatureBorder?: string;
|
|
782
|
+
signatureFooterMarginTop?: string;
|
|
783
|
+
signatureButtonMarginLeft?: string;
|
|
784
|
+
};
|
|
785
|
+
export { setTheme };
|
|
786
|
+
export { zhyFormRenderer, zhyPuzzleVcode, zhyFilePreview };
|
|
787
|
+
declare const _default: {
|
|
788
|
+
install: (app: any, options?: ZhyConfigOptions) => void;
|
|
789
|
+
};
|
|
790
|
+
export default _default;
|