zhytech-ui-mobile 1.0.7 → 1.0.9

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