cnhis-design-vue 3.1.17-beta.0 → 3.1.17-beta.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.
Files changed (79) hide show
  1. package/es/packages/big-table/src/components/separate.js +1 -1
  2. package/es/packages/big-table/src/hooks/useSeparateRow.js +2 -2
  3. package/es/packages/fabric-chart/index.d.ts +2 -0
  4. package/es/packages/fabric-chart/src/FabricChart.js +20 -5
  5. package/es/packages/fabric-chart/src/FabricChart.vue.d.ts +2 -0
  6. package/es/packages/fabric-chart/src/hooks/useCenter.js +19 -18
  7. package/es/packages/fabric-chart/src/hooks/useLeft.d.ts +3 -1
  8. package/es/packages/fabric-chart/src/hooks/useLeft.js +30 -12
  9. package/es/packages/fabric-chart/src/hooks/useRight.d.ts +1 -1
  10. package/es/packages/fabric-chart/src/hooks/useRight.js +11 -69
  11. package/es/packages/fabric-chart/src/interface.d.ts +3 -0
  12. package/es/packages/form-config/index.d.ts +115 -1
  13. package/es/packages/form-config/src/FormConfig.js +11 -17
  14. package/es/packages/form-config/src/FormConfig.vue.d.ts +115 -1
  15. package/es/packages/form-config/src/components/CloseButton.js +45 -0
  16. package/es/packages/form-config/src/components/CloseButton.vue.d.ts +1499 -0
  17. package/es/packages/form-config/src/components/ComplexNode.js +45 -0
  18. package/es/packages/form-config/src/components/ComplexNode.vue.d.ts +1661 -0
  19. package/es/packages/form-config/src/components/DefaultNode.js +54 -0
  20. package/es/packages/form-config/src/components/DefaultNode.vue.d.ts +1543 -0
  21. package/es/packages/form-config/src/components/FormConfigCreator.js +3 -1
  22. package/es/packages/form-config/src/components/FormConfigDragDisplay.js +43 -0
  23. package/es/packages/form-config/src/components/FormConfigDragDisplay.vue.d.ts +114 -0
  24. package/es/packages/form-config/src/components/FormConfigEdit.js +1 -0
  25. package/es/packages/form-config/src/components/FormConfigEdit.vue.d.ts +2 -0
  26. package/es/packages/form-config/src/constants/index.d.ts +2 -0
  27. package/es/packages/form-config/src/constants/index.js +5 -2
  28. package/es/packages/form-config/src/hooks/useConfigurationField.js +9 -9
  29. package/es/packages/form-config/src/hooks/usePresetRenderer.d.ts +2 -2
  30. package/es/packages/form-config/src/hooks/usePresetRenderer.js +6 -84
  31. package/es/packages/form-config/src/hooks/useSortable.js +3 -7
  32. package/es/packages/form-config/src/types/index.d.ts +2 -1
  33. package/es/packages/form-config/src/utils/index.d.ts +8 -1
  34. package/es/packages/form-config/src/utils/index.js +23 -9
  35. package/es/packages/form-config/style/index.css +26 -5
  36. package/es/packages/form-render/index.js +1 -1
  37. package/es/packages/form-render/src/hooks/index.d.ts +1 -1
  38. package/es/packages/form-render/src/hooks/index.js +1 -1
  39. package/es/packages/form-render/src/hooks/useBusinessBinding.d.ts +5 -6
  40. package/es/packages/form-render/src/hooks/useBusinessBinding.js +22 -20
  41. package/es/packages/form-render/src/hooks/useFieldListAdaptor.js +4 -4
  42. package/es/packages/form-render/src/hooks/useFieldNormalize.d.ts +5 -0
  43. package/es/packages/form-render/src/hooks/useFieldNormalize.js +58 -0
  44. package/es/packages/form-render/src/hooks/useFieldVisitor.js +1 -5
  45. package/es/packages/index.css +26 -5
  46. package/es/packages/index.js +1 -1
  47. package/es/src/utils/tapable/AsyncParallelBailHook.d.ts +3 -0
  48. package/es/src/utils/tapable/AsyncParallelBailHook.js +78 -0
  49. package/es/src/utils/tapable/AsyncParallelHook.d.ts +3 -0
  50. package/es/src/utils/tapable/AsyncParallelHook.js +27 -0
  51. package/es/src/utils/tapable/AsyncSeriesBailHook.d.ts +3 -0
  52. package/es/src/utils/tapable/AsyncSeriesBailHook.js +33 -0
  53. package/es/src/utils/tapable/AsyncSeriesHook.d.ts +3 -0
  54. package/es/src/utils/tapable/AsyncSeriesHook.js +27 -0
  55. package/es/src/utils/tapable/AsyncSeriesLoopHook.d.ts +3 -0
  56. package/es/src/utils/tapable/AsyncSeriesLoopHook.js +27 -0
  57. package/es/src/utils/tapable/AsyncSeriesWaterfallHook.d.ts +3 -0
  58. package/es/src/utils/tapable/AsyncSeriesWaterfallHook.js +40 -0
  59. package/es/src/utils/tapable/Hook.d.ts +50 -0
  60. package/es/src/utils/tapable/Hook.js +140 -0
  61. package/es/src/utils/tapable/HookCodeFactory.d.ts +58 -0
  62. package/es/src/utils/tapable/HookCodeFactory.js +444 -0
  63. package/es/src/utils/tapable/HookMap.d.ts +11 -0
  64. package/es/src/utils/tapable/HookMap.js +32 -0
  65. package/es/src/utils/tapable/MultiHook.d.ts +12 -0
  66. package/es/src/utils/tapable/MultiHook.js +38 -0
  67. package/es/src/utils/tapable/SyncBailHook.d.ts +3 -0
  68. package/es/src/utils/tapable/SyncBailHook.js +40 -0
  69. package/es/src/utils/tapable/SyncHook.d.ts +3 -0
  70. package/es/src/utils/tapable/SyncHook.js +34 -0
  71. package/es/src/utils/tapable/SyncLoopHook.d.ts +3 -0
  72. package/es/src/utils/tapable/SyncLoopHook.js +34 -0
  73. package/es/src/utils/tapable/SyncWaterfallHook.d.ts +3 -0
  74. package/es/src/utils/tapable/SyncWaterfallHook.js +48 -0
  75. package/es/src/utils/tapable/index.d.ts +139 -0
  76. package/es/src/utils/tapable/index.js +12 -0
  77. package/package.json +1 -1
  78. package/es/packages/form-render/src/hooks/useTypeNormalize.d.ts +0 -4
  79. package/es/packages/form-render/src/hooks/useTypeNormalize.js +0 -46
@@ -0,0 +1,1499 @@
1
+ import { PropType } from 'vue';
2
+ import { FormConfigItem } from '../../../../../es/packages/form-config';
3
+ declare const _default: import("vue").DefineComponent<{
4
+ fieldItem: {
5
+ type: PropType<FormConfigItem>;
6
+ required: true;
7
+ };
8
+ }, {
9
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
10
+ fieldItem: {
11
+ type: PropType<FormConfigItem>;
12
+ required: true;
13
+ };
14
+ }>> & {
15
+ [x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
16
+ }>>;
17
+ fieldList: import("vue").Ref<FormConfigItem[]>;
18
+ materialList: import("vue").Ref<FormConfigItem[]>;
19
+ remove: () => void;
20
+ CloseCircle: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
21
+ NButton: import("vue").DefineComponent<{
22
+ readonly color: StringConstructor;
23
+ readonly textColor: StringConstructor;
24
+ readonly text: BooleanConstructor;
25
+ readonly block: BooleanConstructor;
26
+ readonly loading: BooleanConstructor;
27
+ readonly disabled: BooleanConstructor;
28
+ readonly circle: BooleanConstructor;
29
+ readonly size: PropType<import("naive-ui/es/button/src/interface").Size>;
30
+ readonly ghost: BooleanConstructor;
31
+ readonly round: BooleanConstructor;
32
+ readonly secondary: BooleanConstructor;
33
+ readonly tertiary: BooleanConstructor;
34
+ readonly quaternary: BooleanConstructor;
35
+ readonly strong: BooleanConstructor;
36
+ readonly focusable: {
37
+ readonly type: BooleanConstructor;
38
+ readonly default: true;
39
+ };
40
+ readonly keyboard: {
41
+ readonly type: BooleanConstructor;
42
+ readonly default: true;
43
+ };
44
+ readonly tag: {
45
+ readonly type: PropType<keyof HTMLElementTagNameMap>;
46
+ readonly default: "button";
47
+ };
48
+ readonly type: {
49
+ readonly type: PropType<import("naive-ui/es/button/src/interface").Type>;
50
+ readonly default: "default";
51
+ };
52
+ readonly dashed: BooleanConstructor;
53
+ readonly iconPlacement: {
54
+ readonly type: PropType<"left" | "right">;
55
+ readonly default: "left";
56
+ };
57
+ readonly attrType: {
58
+ readonly type: PropType<"button" | "reset" | "submit">;
59
+ readonly default: "button";
60
+ };
61
+ readonly bordered: {
62
+ readonly type: BooleanConstructor;
63
+ readonly default: true;
64
+ };
65
+ readonly onClick: PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
66
+ readonly nativeFocusBehavior: {
67
+ readonly type: BooleanConstructor;
68
+ readonly default: boolean;
69
+ };
70
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Button", {
71
+ heightTiny: string;
72
+ heightSmall: string;
73
+ heightMedium: string;
74
+ heightLarge: string;
75
+ borderRadiusTiny: string;
76
+ borderRadiusSmall: string;
77
+ borderRadiusMedium: string;
78
+ borderRadiusLarge: string;
79
+ fontSizeTiny: string;
80
+ fontSizeSmall: string;
81
+ fontSizeMedium: string;
82
+ fontSizeLarge: string;
83
+ opacityDisabled: string;
84
+ colorOpacitySecondary: string;
85
+ colorOpacitySecondaryHover: string;
86
+ colorOpacitySecondaryPressed: string;
87
+ colorSecondary: string;
88
+ colorSecondaryHover: string;
89
+ colorSecondaryPressed: string;
90
+ colorTertiary: string;
91
+ colorTertiaryHover: string;
92
+ colorTertiaryPressed: string;
93
+ colorQuaternary: string;
94
+ colorQuaternaryHover: string;
95
+ colorQuaternaryPressed: string;
96
+ color: string;
97
+ colorHover: string;
98
+ colorPressed: string;
99
+ colorFocus: string;
100
+ colorDisabled: string;
101
+ textColor: string;
102
+ textColorTertiary: string;
103
+ textColorHover: string;
104
+ textColorPressed: string;
105
+ textColorFocus: string;
106
+ textColorDisabled: string;
107
+ textColorText: string;
108
+ textColorTextHover: string;
109
+ textColorTextPressed: string;
110
+ textColorTextFocus: string;
111
+ textColorTextDisabled: string;
112
+ textColorGhost: string;
113
+ textColorGhostHover: string;
114
+ textColorGhostPressed: string;
115
+ textColorGhostFocus: string;
116
+ textColorGhostDisabled: string;
117
+ border: string;
118
+ borderHover: string;
119
+ borderPressed: string;
120
+ borderFocus: string;
121
+ borderDisabled: string;
122
+ rippleColor: string;
123
+ colorPrimary: string;
124
+ colorHoverPrimary: string;
125
+ colorPressedPrimary: string;
126
+ colorFocusPrimary: string;
127
+ colorDisabledPrimary: string;
128
+ textColorPrimary: string;
129
+ textColorHoverPrimary: string;
130
+ textColorPressedPrimary: string;
131
+ textColorFocusPrimary: string;
132
+ textColorDisabledPrimary: string;
133
+ textColorTextPrimary: string;
134
+ textColorTextHoverPrimary: string;
135
+ textColorTextPressedPrimary: string;
136
+ textColorTextFocusPrimary: string;
137
+ textColorTextDisabledPrimary: string;
138
+ textColorGhostPrimary: string;
139
+ textColorGhostHoverPrimary: string;
140
+ textColorGhostPressedPrimary: string;
141
+ textColorGhostFocusPrimary: string;
142
+ textColorGhostDisabledPrimary: string;
143
+ borderPrimary: string;
144
+ borderHoverPrimary: string;
145
+ borderPressedPrimary: string;
146
+ borderFocusPrimary: string;
147
+ borderDisabledPrimary: string;
148
+ rippleColorPrimary: string;
149
+ colorInfo: string;
150
+ colorHoverInfo: string;
151
+ colorPressedInfo: string;
152
+ colorFocusInfo: string;
153
+ colorDisabledInfo: string;
154
+ textColorInfo: string;
155
+ textColorHoverInfo: string;
156
+ textColorPressedInfo: string;
157
+ textColorFocusInfo: string;
158
+ textColorDisabledInfo: string;
159
+ textColorTextInfo: string;
160
+ textColorTextHoverInfo: string;
161
+ textColorTextPressedInfo: string;
162
+ textColorTextFocusInfo: string;
163
+ textColorTextDisabledInfo: string;
164
+ textColorGhostInfo: string;
165
+ textColorGhostHoverInfo: string;
166
+ textColorGhostPressedInfo: string;
167
+ textColorGhostFocusInfo: string;
168
+ textColorGhostDisabledInfo: string;
169
+ borderInfo: string;
170
+ borderHoverInfo: string;
171
+ borderPressedInfo: string;
172
+ borderFocusInfo: string;
173
+ borderDisabledInfo: string;
174
+ rippleColorInfo: string;
175
+ colorSuccess: string;
176
+ colorHoverSuccess: string;
177
+ colorPressedSuccess: string;
178
+ colorFocusSuccess: string;
179
+ colorDisabledSuccess: string;
180
+ textColorSuccess: string;
181
+ textColorHoverSuccess: string;
182
+ textColorPressedSuccess: string;
183
+ textColorFocusSuccess: string;
184
+ textColorDisabledSuccess: string;
185
+ textColorTextSuccess: string;
186
+ textColorTextHoverSuccess: string;
187
+ textColorTextPressedSuccess: string;
188
+ textColorTextFocusSuccess: string;
189
+ textColorTextDisabledSuccess: string;
190
+ textColorGhostSuccess: string;
191
+ textColorGhostHoverSuccess: string;
192
+ textColorGhostPressedSuccess: string;
193
+ textColorGhostFocusSuccess: string;
194
+ textColorGhostDisabledSuccess: string;
195
+ borderSuccess: string;
196
+ borderHoverSuccess: string;
197
+ borderPressedSuccess: string;
198
+ borderFocusSuccess: string;
199
+ borderDisabledSuccess: string;
200
+ rippleColorSuccess: string;
201
+ colorWarning: string;
202
+ colorHoverWarning: string;
203
+ colorPressedWarning: string;
204
+ colorFocusWarning: string;
205
+ colorDisabledWarning: string;
206
+ textColorWarning: string;
207
+ textColorHoverWarning: string;
208
+ textColorPressedWarning: string;
209
+ textColorFocusWarning: string;
210
+ textColorDisabledWarning: string;
211
+ textColorTextWarning: string;
212
+ textColorTextHoverWarning: string;
213
+ textColorTextPressedWarning: string;
214
+ textColorTextFocusWarning: string;
215
+ textColorTextDisabledWarning: string;
216
+ textColorGhostWarning: string;
217
+ textColorGhostHoverWarning: string;
218
+ textColorGhostPressedWarning: string;
219
+ textColorGhostFocusWarning: string;
220
+ textColorGhostDisabledWarning: string;
221
+ borderWarning: string;
222
+ borderHoverWarning: string;
223
+ borderPressedWarning: string;
224
+ borderFocusWarning: string;
225
+ borderDisabledWarning: string;
226
+ rippleColorWarning: string;
227
+ colorError: string;
228
+ colorHoverError: string;
229
+ colorPressedError: string;
230
+ colorFocusError: string;
231
+ colorDisabledError: string;
232
+ textColorError: string;
233
+ textColorHoverError: string;
234
+ textColorPressedError: string;
235
+ textColorFocusError: string;
236
+ textColorDisabledError: string;
237
+ textColorTextError: string;
238
+ textColorTextHoverError: string;
239
+ textColorTextPressedError: string;
240
+ textColorTextFocusError: string;
241
+ textColorTextDisabledError: string;
242
+ textColorGhostError: string;
243
+ textColorGhostHoverError: string;
244
+ textColorGhostPressedError: string;
245
+ textColorGhostFocusError: string;
246
+ textColorGhostDisabledError: string;
247
+ borderError: string;
248
+ borderHoverError: string;
249
+ borderPressedError: string;
250
+ borderFocusError: string;
251
+ borderDisabledError: string;
252
+ rippleColorError: string;
253
+ waveOpacity: string;
254
+ fontWeight: string;
255
+ fontWeightStrong: string;
256
+ paddingTiny: string;
257
+ paddingSmall: string;
258
+ paddingMedium: string;
259
+ paddingLarge: string;
260
+ paddingRoundTiny: string;
261
+ paddingRoundSmall: string;
262
+ paddingRoundMedium: string;
263
+ paddingRoundLarge: string;
264
+ iconMarginTiny: string;
265
+ iconMarginSmall: string;
266
+ iconMarginMedium: string;
267
+ iconMarginLarge: string;
268
+ iconSizeTiny: string;
269
+ iconSizeSmall: string;
270
+ iconSizeMedium: string;
271
+ iconSizeLarge: string;
272
+ rippleDuration: string;
273
+ }, any>>;
274
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
275
+ heightTiny: string;
276
+ heightSmall: string;
277
+ heightMedium: string;
278
+ heightLarge: string;
279
+ borderRadiusTiny: string;
280
+ borderRadiusSmall: string;
281
+ borderRadiusMedium: string;
282
+ borderRadiusLarge: string;
283
+ fontSizeTiny: string;
284
+ fontSizeSmall: string;
285
+ fontSizeMedium: string;
286
+ fontSizeLarge: string;
287
+ opacityDisabled: string;
288
+ colorOpacitySecondary: string;
289
+ colorOpacitySecondaryHover: string;
290
+ colorOpacitySecondaryPressed: string;
291
+ colorSecondary: string;
292
+ colorSecondaryHover: string;
293
+ colorSecondaryPressed: string;
294
+ colorTertiary: string;
295
+ colorTertiaryHover: string;
296
+ colorTertiaryPressed: string;
297
+ colorQuaternary: string;
298
+ colorQuaternaryHover: string;
299
+ colorQuaternaryPressed: string;
300
+ color: string;
301
+ colorHover: string;
302
+ colorPressed: string;
303
+ colorFocus: string;
304
+ colorDisabled: string;
305
+ textColor: string;
306
+ textColorTertiary: string;
307
+ textColorHover: string;
308
+ textColorPressed: string;
309
+ textColorFocus: string;
310
+ textColorDisabled: string;
311
+ textColorText: string;
312
+ textColorTextHover: string;
313
+ textColorTextPressed: string;
314
+ textColorTextFocus: string;
315
+ textColorTextDisabled: string;
316
+ textColorGhost: string;
317
+ textColorGhostHover: string;
318
+ textColorGhostPressed: string;
319
+ textColorGhostFocus: string;
320
+ textColorGhostDisabled: string;
321
+ border: string;
322
+ borderHover: string;
323
+ borderPressed: string;
324
+ borderFocus: string;
325
+ borderDisabled: string;
326
+ rippleColor: string;
327
+ colorPrimary: string;
328
+ colorHoverPrimary: string;
329
+ colorPressedPrimary: string;
330
+ colorFocusPrimary: string;
331
+ colorDisabledPrimary: string;
332
+ textColorPrimary: string;
333
+ textColorHoverPrimary: string;
334
+ textColorPressedPrimary: string;
335
+ textColorFocusPrimary: string;
336
+ textColorDisabledPrimary: string;
337
+ textColorTextPrimary: string;
338
+ textColorTextHoverPrimary: string;
339
+ textColorTextPressedPrimary: string;
340
+ textColorTextFocusPrimary: string;
341
+ textColorTextDisabledPrimary: string;
342
+ textColorGhostPrimary: string;
343
+ textColorGhostHoverPrimary: string;
344
+ textColorGhostPressedPrimary: string;
345
+ textColorGhostFocusPrimary: string;
346
+ textColorGhostDisabledPrimary: string;
347
+ borderPrimary: string;
348
+ borderHoverPrimary: string;
349
+ borderPressedPrimary: string;
350
+ borderFocusPrimary: string;
351
+ borderDisabledPrimary: string;
352
+ rippleColorPrimary: string;
353
+ colorInfo: string;
354
+ colorHoverInfo: string;
355
+ colorPressedInfo: string;
356
+ colorFocusInfo: string;
357
+ colorDisabledInfo: string;
358
+ textColorInfo: string;
359
+ textColorHoverInfo: string;
360
+ textColorPressedInfo: string;
361
+ textColorFocusInfo: string;
362
+ textColorDisabledInfo: string;
363
+ textColorTextInfo: string;
364
+ textColorTextHoverInfo: string;
365
+ textColorTextPressedInfo: string;
366
+ textColorTextFocusInfo: string;
367
+ textColorTextDisabledInfo: string;
368
+ textColorGhostInfo: string;
369
+ textColorGhostHoverInfo: string;
370
+ textColorGhostPressedInfo: string;
371
+ textColorGhostFocusInfo: string;
372
+ textColorGhostDisabledInfo: string;
373
+ borderInfo: string;
374
+ borderHoverInfo: string;
375
+ borderPressedInfo: string;
376
+ borderFocusInfo: string;
377
+ borderDisabledInfo: string;
378
+ rippleColorInfo: string;
379
+ colorSuccess: string;
380
+ colorHoverSuccess: string;
381
+ colorPressedSuccess: string;
382
+ colorFocusSuccess: string;
383
+ colorDisabledSuccess: string;
384
+ textColorSuccess: string;
385
+ textColorHoverSuccess: string;
386
+ textColorPressedSuccess: string;
387
+ textColorFocusSuccess: string;
388
+ textColorDisabledSuccess: string;
389
+ textColorTextSuccess: string;
390
+ textColorTextHoverSuccess: string;
391
+ textColorTextPressedSuccess: string;
392
+ textColorTextFocusSuccess: string;
393
+ textColorTextDisabledSuccess: string;
394
+ textColorGhostSuccess: string;
395
+ textColorGhostHoverSuccess: string;
396
+ textColorGhostPressedSuccess: string;
397
+ textColorGhostFocusSuccess: string;
398
+ textColorGhostDisabledSuccess: string;
399
+ borderSuccess: string;
400
+ borderHoverSuccess: string;
401
+ borderPressedSuccess: string;
402
+ borderFocusSuccess: string;
403
+ borderDisabledSuccess: string;
404
+ rippleColorSuccess: string;
405
+ colorWarning: string;
406
+ colorHoverWarning: string;
407
+ colorPressedWarning: string;
408
+ colorFocusWarning: string;
409
+ colorDisabledWarning: string;
410
+ textColorWarning: string;
411
+ textColorHoverWarning: string;
412
+ textColorPressedWarning: string;
413
+ textColorFocusWarning: string;
414
+ textColorDisabledWarning: string;
415
+ textColorTextWarning: string;
416
+ textColorTextHoverWarning: string;
417
+ textColorTextPressedWarning: string;
418
+ textColorTextFocusWarning: string;
419
+ textColorTextDisabledWarning: string;
420
+ textColorGhostWarning: string;
421
+ textColorGhostHoverWarning: string;
422
+ textColorGhostPressedWarning: string;
423
+ textColorGhostFocusWarning: string;
424
+ textColorGhostDisabledWarning: string;
425
+ borderWarning: string;
426
+ borderHoverWarning: string;
427
+ borderPressedWarning: string;
428
+ borderFocusWarning: string;
429
+ borderDisabledWarning: string;
430
+ rippleColorWarning: string;
431
+ colorError: string;
432
+ colorHoverError: string;
433
+ colorPressedError: string;
434
+ colorFocusError: string;
435
+ colorDisabledError: string;
436
+ textColorError: string;
437
+ textColorHoverError: string;
438
+ textColorPressedError: string;
439
+ textColorFocusError: string;
440
+ textColorDisabledError: string;
441
+ textColorTextError: string;
442
+ textColorTextHoverError: string;
443
+ textColorTextPressedError: string;
444
+ textColorTextFocusError: string;
445
+ textColorTextDisabledError: string;
446
+ textColorGhostError: string;
447
+ textColorGhostHoverError: string;
448
+ textColorGhostPressedError: string;
449
+ textColorGhostFocusError: string;
450
+ textColorGhostDisabledError: string;
451
+ borderError: string;
452
+ borderHoverError: string;
453
+ borderPressedError: string;
454
+ borderFocusError: string;
455
+ borderDisabledError: string;
456
+ rippleColorError: string;
457
+ waveOpacity: string;
458
+ fontWeight: string;
459
+ fontWeightStrong: string;
460
+ paddingTiny: string;
461
+ paddingSmall: string;
462
+ paddingMedium: string;
463
+ paddingLarge: string;
464
+ paddingRoundTiny: string;
465
+ paddingRoundSmall: string;
466
+ paddingRoundMedium: string;
467
+ paddingRoundLarge: string;
468
+ iconMarginTiny: string;
469
+ iconMarginSmall: string;
470
+ iconMarginMedium: string;
471
+ iconMarginLarge: string;
472
+ iconSizeTiny: string;
473
+ iconSizeSmall: string;
474
+ iconSizeMedium: string;
475
+ iconSizeLarge: string;
476
+ rippleDuration: string;
477
+ }, any>>>;
478
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
479
+ heightTiny: string;
480
+ heightSmall: string;
481
+ heightMedium: string;
482
+ heightLarge: string;
483
+ borderRadiusTiny: string;
484
+ borderRadiusSmall: string;
485
+ borderRadiusMedium: string;
486
+ borderRadiusLarge: string;
487
+ fontSizeTiny: string;
488
+ fontSizeSmall: string;
489
+ fontSizeMedium: string;
490
+ fontSizeLarge: string;
491
+ opacityDisabled: string;
492
+ colorOpacitySecondary: string;
493
+ colorOpacitySecondaryHover: string;
494
+ colorOpacitySecondaryPressed: string;
495
+ colorSecondary: string;
496
+ colorSecondaryHover: string;
497
+ colorSecondaryPressed: string;
498
+ colorTertiary: string;
499
+ colorTertiaryHover: string;
500
+ colorTertiaryPressed: string;
501
+ colorQuaternary: string;
502
+ colorQuaternaryHover: string;
503
+ colorQuaternaryPressed: string;
504
+ color: string;
505
+ colorHover: string;
506
+ colorPressed: string;
507
+ colorFocus: string;
508
+ colorDisabled: string;
509
+ textColor: string;
510
+ textColorTertiary: string;
511
+ textColorHover: string;
512
+ textColorPressed: string;
513
+ textColorFocus: string;
514
+ textColorDisabled: string;
515
+ textColorText: string;
516
+ textColorTextHover: string;
517
+ textColorTextPressed: string;
518
+ textColorTextFocus: string;
519
+ textColorTextDisabled: string;
520
+ textColorGhost: string;
521
+ textColorGhostHover: string;
522
+ textColorGhostPressed: string;
523
+ textColorGhostFocus: string;
524
+ textColorGhostDisabled: string;
525
+ border: string;
526
+ borderHover: string;
527
+ borderPressed: string;
528
+ borderFocus: string;
529
+ borderDisabled: string;
530
+ rippleColor: string;
531
+ colorPrimary: string;
532
+ colorHoverPrimary: string;
533
+ colorPressedPrimary: string;
534
+ colorFocusPrimary: string;
535
+ colorDisabledPrimary: string;
536
+ textColorPrimary: string;
537
+ textColorHoverPrimary: string;
538
+ textColorPressedPrimary: string;
539
+ textColorFocusPrimary: string;
540
+ textColorDisabledPrimary: string;
541
+ textColorTextPrimary: string;
542
+ textColorTextHoverPrimary: string;
543
+ textColorTextPressedPrimary: string;
544
+ textColorTextFocusPrimary: string;
545
+ textColorTextDisabledPrimary: string;
546
+ textColorGhostPrimary: string;
547
+ textColorGhostHoverPrimary: string;
548
+ textColorGhostPressedPrimary: string;
549
+ textColorGhostFocusPrimary: string;
550
+ textColorGhostDisabledPrimary: string;
551
+ borderPrimary: string;
552
+ borderHoverPrimary: string;
553
+ borderPressedPrimary: string;
554
+ borderFocusPrimary: string;
555
+ borderDisabledPrimary: string;
556
+ rippleColorPrimary: string;
557
+ colorInfo: string;
558
+ colorHoverInfo: string;
559
+ colorPressedInfo: string;
560
+ colorFocusInfo: string;
561
+ colorDisabledInfo: string;
562
+ textColorInfo: string;
563
+ textColorHoverInfo: string;
564
+ textColorPressedInfo: string;
565
+ textColorFocusInfo: string;
566
+ textColorDisabledInfo: string;
567
+ textColorTextInfo: string;
568
+ textColorTextHoverInfo: string;
569
+ textColorTextPressedInfo: string;
570
+ textColorTextFocusInfo: string;
571
+ textColorTextDisabledInfo: string;
572
+ textColorGhostInfo: string;
573
+ textColorGhostHoverInfo: string;
574
+ textColorGhostPressedInfo: string;
575
+ textColorGhostFocusInfo: string;
576
+ textColorGhostDisabledInfo: string;
577
+ borderInfo: string;
578
+ borderHoverInfo: string;
579
+ borderPressedInfo: string;
580
+ borderFocusInfo: string;
581
+ borderDisabledInfo: string;
582
+ rippleColorInfo: string;
583
+ colorSuccess: string;
584
+ colorHoverSuccess: string;
585
+ colorPressedSuccess: string;
586
+ colorFocusSuccess: string;
587
+ colorDisabledSuccess: string;
588
+ textColorSuccess: string;
589
+ textColorHoverSuccess: string;
590
+ textColorPressedSuccess: string;
591
+ textColorFocusSuccess: string;
592
+ textColorDisabledSuccess: string;
593
+ textColorTextSuccess: string;
594
+ textColorTextHoverSuccess: string;
595
+ textColorTextPressedSuccess: string;
596
+ textColorTextFocusSuccess: string;
597
+ textColorTextDisabledSuccess: string;
598
+ textColorGhostSuccess: string;
599
+ textColorGhostHoverSuccess: string;
600
+ textColorGhostPressedSuccess: string;
601
+ textColorGhostFocusSuccess: string;
602
+ textColorGhostDisabledSuccess: string;
603
+ borderSuccess: string;
604
+ borderHoverSuccess: string;
605
+ borderPressedSuccess: string;
606
+ borderFocusSuccess: string;
607
+ borderDisabledSuccess: string;
608
+ rippleColorSuccess: string;
609
+ colorWarning: string;
610
+ colorHoverWarning: string;
611
+ colorPressedWarning: string;
612
+ colorFocusWarning: string;
613
+ colorDisabledWarning: string;
614
+ textColorWarning: string;
615
+ textColorHoverWarning: string;
616
+ textColorPressedWarning: string;
617
+ textColorFocusWarning: string;
618
+ textColorDisabledWarning: string;
619
+ textColorTextWarning: string;
620
+ textColorTextHoverWarning: string;
621
+ textColorTextPressedWarning: string;
622
+ textColorTextFocusWarning: string;
623
+ textColorTextDisabledWarning: string;
624
+ textColorGhostWarning: string;
625
+ textColorGhostHoverWarning: string;
626
+ textColorGhostPressedWarning: string;
627
+ textColorGhostFocusWarning: string;
628
+ textColorGhostDisabledWarning: string;
629
+ borderWarning: string;
630
+ borderHoverWarning: string;
631
+ borderPressedWarning: string;
632
+ borderFocusWarning: string;
633
+ borderDisabledWarning: string;
634
+ rippleColorWarning: string;
635
+ colorError: string;
636
+ colorHoverError: string;
637
+ colorPressedError: string;
638
+ colorFocusError: string;
639
+ colorDisabledError: string;
640
+ textColorError: string;
641
+ textColorHoverError: string;
642
+ textColorPressedError: string;
643
+ textColorFocusError: string;
644
+ textColorDisabledError: string;
645
+ textColorTextError: string;
646
+ textColorTextHoverError: string;
647
+ textColorTextPressedError: string;
648
+ textColorTextFocusError: string;
649
+ textColorTextDisabledError: string;
650
+ textColorGhostError: string;
651
+ textColorGhostHoverError: string;
652
+ textColorGhostPressedError: string;
653
+ textColorGhostFocusError: string;
654
+ textColorGhostDisabledError: string;
655
+ borderError: string;
656
+ borderHoverError: string;
657
+ borderPressedError: string;
658
+ borderFocusError: string;
659
+ borderDisabledError: string;
660
+ rippleColorError: string;
661
+ waveOpacity: string;
662
+ fontWeight: string;
663
+ fontWeightStrong: string;
664
+ paddingTiny: string;
665
+ paddingSmall: string;
666
+ paddingMedium: string;
667
+ paddingLarge: string;
668
+ paddingRoundTiny: string;
669
+ paddingRoundSmall: string;
670
+ paddingRoundMedium: string;
671
+ paddingRoundLarge: string;
672
+ iconMarginTiny: string;
673
+ iconMarginSmall: string;
674
+ iconMarginMedium: string;
675
+ iconMarginLarge: string;
676
+ iconSizeTiny: string;
677
+ iconSizeSmall: string;
678
+ iconSizeMedium: string;
679
+ iconSizeLarge: string;
680
+ rippleDuration: string;
681
+ }, any>>>;
682
+ }, {
683
+ selfElRef: import("vue").Ref<HTMLElement | null>;
684
+ waveElRef: import("vue").Ref<{
685
+ play: () => void;
686
+ } | null>;
687
+ mergedClsPrefix: import("vue").ComputedRef<string>;
688
+ mergedFocusable: import("vue").ComputedRef<boolean>;
689
+ mergedSize: import("vue").ComputedRef<"small" | "medium" | "tiny" | "large">;
690
+ showBorder: import("vue").ComputedRef<boolean>;
691
+ enterPressed: import("vue").Ref<boolean>;
692
+ rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
693
+ handleMousedown: (e: MouseEvent) => void;
694
+ handleKeydown: (e: KeyboardEvent) => void;
695
+ handleBlur: () => void;
696
+ handleKeyup: (e: KeyboardEvent) => void;
697
+ handleClick: (e: MouseEvent) => void;
698
+ customColorCssVars: import("vue").ComputedRef<{
699
+ '--n-border-color': string;
700
+ '--n-border-color-hover': string;
701
+ '--n-border-color-pressed': string;
702
+ '--n-border-color-focus': string;
703
+ '--n-border-color-disabled': string;
704
+ } | null>;
705
+ cssVars: import("vue").ComputedRef<{
706
+ '--n-width': string;
707
+ '--n-height': string;
708
+ '--n-font-size': string;
709
+ '--n-padding': string;
710
+ '--n-icon-size': string;
711
+ '--n-icon-margin': string;
712
+ '--n-border-radius': string;
713
+ '--n-border': string;
714
+ '--n-border-hover': string;
715
+ '--n-border-pressed': string;
716
+ '--n-border-focus': string;
717
+ '--n-border-disabled': string;
718
+ '--n-color': string;
719
+ '--n-color-hover': string;
720
+ '--n-color-pressed': string;
721
+ '--n-color-focus': string;
722
+ '--n-color-disabled': string;
723
+ '--n-ripple-color': string;
724
+ '--n-text-color': string;
725
+ '--n-text-color-hover': string;
726
+ '--n-text-color-pressed': string;
727
+ '--n-text-color-focus': string;
728
+ '--n-text-color-disabled': string;
729
+ 'font-weight': string;
730
+ '--n-bezier': string;
731
+ '--n-bezier-ease-out': string;
732
+ '--n-ripple-duration': string;
733
+ '--n-opacity-disabled': string;
734
+ '--n-wave-opacity': string;
735
+ }> | undefined;
736
+ themeClass: import("vue").Ref<string> | undefined;
737
+ onRender: (() => void) | undefined;
738
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
739
+ readonly color: StringConstructor;
740
+ readonly textColor: StringConstructor;
741
+ readonly text: BooleanConstructor;
742
+ readonly block: BooleanConstructor;
743
+ readonly loading: BooleanConstructor;
744
+ readonly disabled: BooleanConstructor;
745
+ readonly circle: BooleanConstructor;
746
+ readonly size: PropType<import("naive-ui/es/button/src/interface").Size>;
747
+ readonly ghost: BooleanConstructor;
748
+ readonly round: BooleanConstructor;
749
+ readonly secondary: BooleanConstructor;
750
+ readonly tertiary: BooleanConstructor;
751
+ readonly quaternary: BooleanConstructor;
752
+ readonly strong: BooleanConstructor;
753
+ readonly focusable: {
754
+ readonly type: BooleanConstructor;
755
+ readonly default: true;
756
+ };
757
+ readonly keyboard: {
758
+ readonly type: BooleanConstructor;
759
+ readonly default: true;
760
+ };
761
+ readonly tag: {
762
+ readonly type: PropType<keyof HTMLElementTagNameMap>;
763
+ readonly default: "button";
764
+ };
765
+ readonly type: {
766
+ readonly type: PropType<import("naive-ui/es/button/src/interface").Type>;
767
+ readonly default: "default";
768
+ };
769
+ readonly dashed: BooleanConstructor;
770
+ readonly iconPlacement: {
771
+ readonly type: PropType<"left" | "right">;
772
+ readonly default: "left";
773
+ };
774
+ readonly attrType: {
775
+ readonly type: PropType<"button" | "reset" | "submit">;
776
+ readonly default: "button";
777
+ };
778
+ readonly bordered: {
779
+ readonly type: BooleanConstructor;
780
+ readonly default: true;
781
+ };
782
+ readonly onClick: PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
783
+ readonly nativeFocusBehavior: {
784
+ readonly type: BooleanConstructor;
785
+ readonly default: boolean;
786
+ };
787
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Button", {
788
+ heightTiny: string;
789
+ heightSmall: string;
790
+ heightMedium: string;
791
+ heightLarge: string;
792
+ borderRadiusTiny: string;
793
+ borderRadiusSmall: string;
794
+ borderRadiusMedium: string;
795
+ borderRadiusLarge: string;
796
+ fontSizeTiny: string;
797
+ fontSizeSmall: string;
798
+ fontSizeMedium: string;
799
+ fontSizeLarge: string;
800
+ opacityDisabled: string;
801
+ colorOpacitySecondary: string;
802
+ colorOpacitySecondaryHover: string;
803
+ colorOpacitySecondaryPressed: string;
804
+ colorSecondary: string;
805
+ colorSecondaryHover: string;
806
+ colorSecondaryPressed: string;
807
+ colorTertiary: string;
808
+ colorTertiaryHover: string;
809
+ colorTertiaryPressed: string;
810
+ colorQuaternary: string;
811
+ colorQuaternaryHover: string;
812
+ colorQuaternaryPressed: string;
813
+ color: string;
814
+ colorHover: string;
815
+ colorPressed: string;
816
+ colorFocus: string;
817
+ colorDisabled: string;
818
+ textColor: string;
819
+ textColorTertiary: string;
820
+ textColorHover: string;
821
+ textColorPressed: string;
822
+ textColorFocus: string;
823
+ textColorDisabled: string;
824
+ textColorText: string;
825
+ textColorTextHover: string;
826
+ textColorTextPressed: string;
827
+ textColorTextFocus: string;
828
+ textColorTextDisabled: string;
829
+ textColorGhost: string;
830
+ textColorGhostHover: string;
831
+ textColorGhostPressed: string;
832
+ textColorGhostFocus: string;
833
+ textColorGhostDisabled: string;
834
+ border: string;
835
+ borderHover: string;
836
+ borderPressed: string;
837
+ borderFocus: string;
838
+ borderDisabled: string;
839
+ rippleColor: string;
840
+ colorPrimary: string;
841
+ colorHoverPrimary: string;
842
+ colorPressedPrimary: string;
843
+ colorFocusPrimary: string;
844
+ colorDisabledPrimary: string;
845
+ textColorPrimary: string;
846
+ textColorHoverPrimary: string;
847
+ textColorPressedPrimary: string;
848
+ textColorFocusPrimary: string;
849
+ textColorDisabledPrimary: string;
850
+ textColorTextPrimary: string;
851
+ textColorTextHoverPrimary: string;
852
+ textColorTextPressedPrimary: string;
853
+ textColorTextFocusPrimary: string;
854
+ textColorTextDisabledPrimary: string;
855
+ textColorGhostPrimary: string;
856
+ textColorGhostHoverPrimary: string;
857
+ textColorGhostPressedPrimary: string;
858
+ textColorGhostFocusPrimary: string;
859
+ textColorGhostDisabledPrimary: string;
860
+ borderPrimary: string;
861
+ borderHoverPrimary: string;
862
+ borderPressedPrimary: string;
863
+ borderFocusPrimary: string;
864
+ borderDisabledPrimary: string;
865
+ rippleColorPrimary: string;
866
+ colorInfo: string;
867
+ colorHoverInfo: string;
868
+ colorPressedInfo: string;
869
+ colorFocusInfo: string;
870
+ colorDisabledInfo: string;
871
+ textColorInfo: string;
872
+ textColorHoverInfo: string;
873
+ textColorPressedInfo: string;
874
+ textColorFocusInfo: string;
875
+ textColorDisabledInfo: string;
876
+ textColorTextInfo: string;
877
+ textColorTextHoverInfo: string;
878
+ textColorTextPressedInfo: string;
879
+ textColorTextFocusInfo: string;
880
+ textColorTextDisabledInfo: string;
881
+ textColorGhostInfo: string;
882
+ textColorGhostHoverInfo: string;
883
+ textColorGhostPressedInfo: string;
884
+ textColorGhostFocusInfo: string;
885
+ textColorGhostDisabledInfo: string;
886
+ borderInfo: string;
887
+ borderHoverInfo: string;
888
+ borderPressedInfo: string;
889
+ borderFocusInfo: string;
890
+ borderDisabledInfo: string;
891
+ rippleColorInfo: string;
892
+ colorSuccess: string;
893
+ colorHoverSuccess: string;
894
+ colorPressedSuccess: string;
895
+ colorFocusSuccess: string;
896
+ colorDisabledSuccess: string;
897
+ textColorSuccess: string;
898
+ textColorHoverSuccess: string;
899
+ textColorPressedSuccess: string;
900
+ textColorFocusSuccess: string;
901
+ textColorDisabledSuccess: string;
902
+ textColorTextSuccess: string;
903
+ textColorTextHoverSuccess: string;
904
+ textColorTextPressedSuccess: string;
905
+ textColorTextFocusSuccess: string;
906
+ textColorTextDisabledSuccess: string;
907
+ textColorGhostSuccess: string;
908
+ textColorGhostHoverSuccess: string;
909
+ textColorGhostPressedSuccess: string;
910
+ textColorGhostFocusSuccess: string;
911
+ textColorGhostDisabledSuccess: string;
912
+ borderSuccess: string;
913
+ borderHoverSuccess: string;
914
+ borderPressedSuccess: string;
915
+ borderFocusSuccess: string;
916
+ borderDisabledSuccess: string;
917
+ rippleColorSuccess: string;
918
+ colorWarning: string;
919
+ colorHoverWarning: string;
920
+ colorPressedWarning: string;
921
+ colorFocusWarning: string;
922
+ colorDisabledWarning: string;
923
+ textColorWarning: string;
924
+ textColorHoverWarning: string;
925
+ textColorPressedWarning: string;
926
+ textColorFocusWarning: string;
927
+ textColorDisabledWarning: string;
928
+ textColorTextWarning: string;
929
+ textColorTextHoverWarning: string;
930
+ textColorTextPressedWarning: string;
931
+ textColorTextFocusWarning: string;
932
+ textColorTextDisabledWarning: string;
933
+ textColorGhostWarning: string;
934
+ textColorGhostHoverWarning: string;
935
+ textColorGhostPressedWarning: string;
936
+ textColorGhostFocusWarning: string;
937
+ textColorGhostDisabledWarning: string;
938
+ borderWarning: string;
939
+ borderHoverWarning: string;
940
+ borderPressedWarning: string;
941
+ borderFocusWarning: string;
942
+ borderDisabledWarning: string;
943
+ rippleColorWarning: string;
944
+ colorError: string;
945
+ colorHoverError: string;
946
+ colorPressedError: string;
947
+ colorFocusError: string;
948
+ colorDisabledError: string;
949
+ textColorError: string;
950
+ textColorHoverError: string;
951
+ textColorPressedError: string;
952
+ textColorFocusError: string;
953
+ textColorDisabledError: string;
954
+ textColorTextError: string;
955
+ textColorTextHoverError: string;
956
+ textColorTextPressedError: string;
957
+ textColorTextFocusError: string;
958
+ textColorTextDisabledError: string;
959
+ textColorGhostError: string;
960
+ textColorGhostHoverError: string;
961
+ textColorGhostPressedError: string;
962
+ textColorGhostFocusError: string;
963
+ textColorGhostDisabledError: string;
964
+ borderError: string;
965
+ borderHoverError: string;
966
+ borderPressedError: string;
967
+ borderFocusError: string;
968
+ borderDisabledError: string;
969
+ rippleColorError: string;
970
+ waveOpacity: string;
971
+ fontWeight: string;
972
+ fontWeightStrong: string;
973
+ paddingTiny: string;
974
+ paddingSmall: string;
975
+ paddingMedium: string;
976
+ paddingLarge: string;
977
+ paddingRoundTiny: string;
978
+ paddingRoundSmall: string;
979
+ paddingRoundMedium: string;
980
+ paddingRoundLarge: string;
981
+ iconMarginTiny: string;
982
+ iconMarginSmall: string;
983
+ iconMarginMedium: string;
984
+ iconMarginLarge: string;
985
+ iconSizeTiny: string;
986
+ iconSizeSmall: string;
987
+ iconSizeMedium: string;
988
+ iconSizeLarge: string;
989
+ rippleDuration: string;
990
+ }, any>>;
991
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
992
+ heightTiny: string;
993
+ heightSmall: string;
994
+ heightMedium: string;
995
+ heightLarge: string;
996
+ borderRadiusTiny: string;
997
+ borderRadiusSmall: string;
998
+ borderRadiusMedium: string;
999
+ borderRadiusLarge: string;
1000
+ fontSizeTiny: string;
1001
+ fontSizeSmall: string;
1002
+ fontSizeMedium: string;
1003
+ fontSizeLarge: string;
1004
+ opacityDisabled: string;
1005
+ colorOpacitySecondary: string;
1006
+ colorOpacitySecondaryHover: string;
1007
+ colorOpacitySecondaryPressed: string;
1008
+ colorSecondary: string;
1009
+ colorSecondaryHover: string;
1010
+ colorSecondaryPressed: string;
1011
+ colorTertiary: string;
1012
+ colorTertiaryHover: string;
1013
+ colorTertiaryPressed: string;
1014
+ colorQuaternary: string;
1015
+ colorQuaternaryHover: string;
1016
+ colorQuaternaryPressed: string;
1017
+ color: string;
1018
+ colorHover: string;
1019
+ colorPressed: string;
1020
+ colorFocus: string;
1021
+ colorDisabled: string;
1022
+ textColor: string;
1023
+ textColorTertiary: string;
1024
+ textColorHover: string;
1025
+ textColorPressed: string;
1026
+ textColorFocus: string;
1027
+ textColorDisabled: string;
1028
+ textColorText: string;
1029
+ textColorTextHover: string;
1030
+ textColorTextPressed: string;
1031
+ textColorTextFocus: string;
1032
+ textColorTextDisabled: string;
1033
+ textColorGhost: string;
1034
+ textColorGhostHover: string;
1035
+ textColorGhostPressed: string;
1036
+ textColorGhostFocus: string;
1037
+ textColorGhostDisabled: string;
1038
+ border: string;
1039
+ borderHover: string;
1040
+ borderPressed: string;
1041
+ borderFocus: string;
1042
+ borderDisabled: string;
1043
+ rippleColor: string;
1044
+ colorPrimary: string;
1045
+ colorHoverPrimary: string;
1046
+ colorPressedPrimary: string;
1047
+ colorFocusPrimary: string;
1048
+ colorDisabledPrimary: string;
1049
+ textColorPrimary: string;
1050
+ textColorHoverPrimary: string;
1051
+ textColorPressedPrimary: string;
1052
+ textColorFocusPrimary: string;
1053
+ textColorDisabledPrimary: string;
1054
+ textColorTextPrimary: string;
1055
+ textColorTextHoverPrimary: string;
1056
+ textColorTextPressedPrimary: string;
1057
+ textColorTextFocusPrimary: string;
1058
+ textColorTextDisabledPrimary: string;
1059
+ textColorGhostPrimary: string;
1060
+ textColorGhostHoverPrimary: string;
1061
+ textColorGhostPressedPrimary: string;
1062
+ textColorGhostFocusPrimary: string;
1063
+ textColorGhostDisabledPrimary: string;
1064
+ borderPrimary: string;
1065
+ borderHoverPrimary: string;
1066
+ borderPressedPrimary: string;
1067
+ borderFocusPrimary: string;
1068
+ borderDisabledPrimary: string;
1069
+ rippleColorPrimary: string;
1070
+ colorInfo: string;
1071
+ colorHoverInfo: string;
1072
+ colorPressedInfo: string;
1073
+ colorFocusInfo: string;
1074
+ colorDisabledInfo: string;
1075
+ textColorInfo: string;
1076
+ textColorHoverInfo: string;
1077
+ textColorPressedInfo: string;
1078
+ textColorFocusInfo: string;
1079
+ textColorDisabledInfo: string;
1080
+ textColorTextInfo: string;
1081
+ textColorTextHoverInfo: string;
1082
+ textColorTextPressedInfo: string;
1083
+ textColorTextFocusInfo: string;
1084
+ textColorTextDisabledInfo: string;
1085
+ textColorGhostInfo: string;
1086
+ textColorGhostHoverInfo: string;
1087
+ textColorGhostPressedInfo: string;
1088
+ textColorGhostFocusInfo: string;
1089
+ textColorGhostDisabledInfo: string;
1090
+ borderInfo: string;
1091
+ borderHoverInfo: string;
1092
+ borderPressedInfo: string;
1093
+ borderFocusInfo: string;
1094
+ borderDisabledInfo: string;
1095
+ rippleColorInfo: string;
1096
+ colorSuccess: string;
1097
+ colorHoverSuccess: string;
1098
+ colorPressedSuccess: string;
1099
+ colorFocusSuccess: string;
1100
+ colorDisabledSuccess: string;
1101
+ textColorSuccess: string;
1102
+ textColorHoverSuccess: string;
1103
+ textColorPressedSuccess: string;
1104
+ textColorFocusSuccess: string;
1105
+ textColorDisabledSuccess: string;
1106
+ textColorTextSuccess: string;
1107
+ textColorTextHoverSuccess: string;
1108
+ textColorTextPressedSuccess: string;
1109
+ textColorTextFocusSuccess: string;
1110
+ textColorTextDisabledSuccess: string;
1111
+ textColorGhostSuccess: string;
1112
+ textColorGhostHoverSuccess: string;
1113
+ textColorGhostPressedSuccess: string;
1114
+ textColorGhostFocusSuccess: string;
1115
+ textColorGhostDisabledSuccess: string;
1116
+ borderSuccess: string;
1117
+ borderHoverSuccess: string;
1118
+ borderPressedSuccess: string;
1119
+ borderFocusSuccess: string;
1120
+ borderDisabledSuccess: string;
1121
+ rippleColorSuccess: string;
1122
+ colorWarning: string;
1123
+ colorHoverWarning: string;
1124
+ colorPressedWarning: string;
1125
+ colorFocusWarning: string;
1126
+ colorDisabledWarning: string;
1127
+ textColorWarning: string;
1128
+ textColorHoverWarning: string;
1129
+ textColorPressedWarning: string;
1130
+ textColorFocusWarning: string;
1131
+ textColorDisabledWarning: string;
1132
+ textColorTextWarning: string;
1133
+ textColorTextHoverWarning: string;
1134
+ textColorTextPressedWarning: string;
1135
+ textColorTextFocusWarning: string;
1136
+ textColorTextDisabledWarning: string;
1137
+ textColorGhostWarning: string;
1138
+ textColorGhostHoverWarning: string;
1139
+ textColorGhostPressedWarning: string;
1140
+ textColorGhostFocusWarning: string;
1141
+ textColorGhostDisabledWarning: string;
1142
+ borderWarning: string;
1143
+ borderHoverWarning: string;
1144
+ borderPressedWarning: string;
1145
+ borderFocusWarning: string;
1146
+ borderDisabledWarning: string;
1147
+ rippleColorWarning: string;
1148
+ colorError: string;
1149
+ colorHoverError: string;
1150
+ colorPressedError: string;
1151
+ colorFocusError: string;
1152
+ colorDisabledError: string;
1153
+ textColorError: string;
1154
+ textColorHoverError: string;
1155
+ textColorPressedError: string;
1156
+ textColorFocusError: string;
1157
+ textColorDisabledError: string;
1158
+ textColorTextError: string;
1159
+ textColorTextHoverError: string;
1160
+ textColorTextPressedError: string;
1161
+ textColorTextFocusError: string;
1162
+ textColorTextDisabledError: string;
1163
+ textColorGhostError: string;
1164
+ textColorGhostHoverError: string;
1165
+ textColorGhostPressedError: string;
1166
+ textColorGhostFocusError: string;
1167
+ textColorGhostDisabledError: string;
1168
+ borderError: string;
1169
+ borderHoverError: string;
1170
+ borderPressedError: string;
1171
+ borderFocusError: string;
1172
+ borderDisabledError: string;
1173
+ rippleColorError: string;
1174
+ waveOpacity: string;
1175
+ fontWeight: string;
1176
+ fontWeightStrong: string;
1177
+ paddingTiny: string;
1178
+ paddingSmall: string;
1179
+ paddingMedium: string;
1180
+ paddingLarge: string;
1181
+ paddingRoundTiny: string;
1182
+ paddingRoundSmall: string;
1183
+ paddingRoundMedium: string;
1184
+ paddingRoundLarge: string;
1185
+ iconMarginTiny: string;
1186
+ iconMarginSmall: string;
1187
+ iconMarginMedium: string;
1188
+ iconMarginLarge: string;
1189
+ iconSizeTiny: string;
1190
+ iconSizeSmall: string;
1191
+ iconSizeMedium: string;
1192
+ iconSizeLarge: string;
1193
+ rippleDuration: string;
1194
+ }, any>>>;
1195
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
1196
+ heightTiny: string;
1197
+ heightSmall: string;
1198
+ heightMedium: string;
1199
+ heightLarge: string;
1200
+ borderRadiusTiny: string;
1201
+ borderRadiusSmall: string;
1202
+ borderRadiusMedium: string;
1203
+ borderRadiusLarge: string;
1204
+ fontSizeTiny: string;
1205
+ fontSizeSmall: string;
1206
+ fontSizeMedium: string;
1207
+ fontSizeLarge: string;
1208
+ opacityDisabled: string;
1209
+ colorOpacitySecondary: string;
1210
+ colorOpacitySecondaryHover: string;
1211
+ colorOpacitySecondaryPressed: string;
1212
+ colorSecondary: string;
1213
+ colorSecondaryHover: string;
1214
+ colorSecondaryPressed: string;
1215
+ colorTertiary: string;
1216
+ colorTertiaryHover: string;
1217
+ colorTertiaryPressed: string;
1218
+ colorQuaternary: string;
1219
+ colorQuaternaryHover: string;
1220
+ colorQuaternaryPressed: string;
1221
+ color: string;
1222
+ colorHover: string;
1223
+ colorPressed: string;
1224
+ colorFocus: string;
1225
+ colorDisabled: string;
1226
+ textColor: string;
1227
+ textColorTertiary: string;
1228
+ textColorHover: string;
1229
+ textColorPressed: string;
1230
+ textColorFocus: string;
1231
+ textColorDisabled: string;
1232
+ textColorText: string;
1233
+ textColorTextHover: string;
1234
+ textColorTextPressed: string;
1235
+ textColorTextFocus: string;
1236
+ textColorTextDisabled: string;
1237
+ textColorGhost: string;
1238
+ textColorGhostHover: string;
1239
+ textColorGhostPressed: string;
1240
+ textColorGhostFocus: string;
1241
+ textColorGhostDisabled: string;
1242
+ border: string;
1243
+ borderHover: string;
1244
+ borderPressed: string;
1245
+ borderFocus: string;
1246
+ borderDisabled: string;
1247
+ rippleColor: string;
1248
+ colorPrimary: string;
1249
+ colorHoverPrimary: string;
1250
+ colorPressedPrimary: string;
1251
+ colorFocusPrimary: string;
1252
+ colorDisabledPrimary: string;
1253
+ textColorPrimary: string;
1254
+ textColorHoverPrimary: string;
1255
+ textColorPressedPrimary: string;
1256
+ textColorFocusPrimary: string;
1257
+ textColorDisabledPrimary: string;
1258
+ textColorTextPrimary: string;
1259
+ textColorTextHoverPrimary: string;
1260
+ textColorTextPressedPrimary: string;
1261
+ textColorTextFocusPrimary: string;
1262
+ textColorTextDisabledPrimary: string;
1263
+ textColorGhostPrimary: string;
1264
+ textColorGhostHoverPrimary: string;
1265
+ textColorGhostPressedPrimary: string;
1266
+ textColorGhostFocusPrimary: string;
1267
+ textColorGhostDisabledPrimary: string;
1268
+ borderPrimary: string;
1269
+ borderHoverPrimary: string;
1270
+ borderPressedPrimary: string;
1271
+ borderFocusPrimary: string;
1272
+ borderDisabledPrimary: string;
1273
+ rippleColorPrimary: string;
1274
+ colorInfo: string;
1275
+ colorHoverInfo: string;
1276
+ colorPressedInfo: string;
1277
+ colorFocusInfo: string;
1278
+ colorDisabledInfo: string;
1279
+ textColorInfo: string;
1280
+ textColorHoverInfo: string;
1281
+ textColorPressedInfo: string;
1282
+ textColorFocusInfo: string;
1283
+ textColorDisabledInfo: string;
1284
+ textColorTextInfo: string;
1285
+ textColorTextHoverInfo: string;
1286
+ textColorTextPressedInfo: string;
1287
+ textColorTextFocusInfo: string;
1288
+ textColorTextDisabledInfo: string;
1289
+ textColorGhostInfo: string;
1290
+ textColorGhostHoverInfo: string;
1291
+ textColorGhostPressedInfo: string;
1292
+ textColorGhostFocusInfo: string;
1293
+ textColorGhostDisabledInfo: string;
1294
+ borderInfo: string;
1295
+ borderHoverInfo: string;
1296
+ borderPressedInfo: string;
1297
+ borderFocusInfo: string;
1298
+ borderDisabledInfo: string;
1299
+ rippleColorInfo: string;
1300
+ colorSuccess: string;
1301
+ colorHoverSuccess: string;
1302
+ colorPressedSuccess: string;
1303
+ colorFocusSuccess: string;
1304
+ colorDisabledSuccess: string;
1305
+ textColorSuccess: string;
1306
+ textColorHoverSuccess: string;
1307
+ textColorPressedSuccess: string;
1308
+ textColorFocusSuccess: string;
1309
+ textColorDisabledSuccess: string;
1310
+ textColorTextSuccess: string;
1311
+ textColorTextHoverSuccess: string;
1312
+ textColorTextPressedSuccess: string;
1313
+ textColorTextFocusSuccess: string;
1314
+ textColorTextDisabledSuccess: string;
1315
+ textColorGhostSuccess: string;
1316
+ textColorGhostHoverSuccess: string;
1317
+ textColorGhostPressedSuccess: string;
1318
+ textColorGhostFocusSuccess: string;
1319
+ textColorGhostDisabledSuccess: string;
1320
+ borderSuccess: string;
1321
+ borderHoverSuccess: string;
1322
+ borderPressedSuccess: string;
1323
+ borderFocusSuccess: string;
1324
+ borderDisabledSuccess: string;
1325
+ rippleColorSuccess: string;
1326
+ colorWarning: string;
1327
+ colorHoverWarning: string;
1328
+ colorPressedWarning: string;
1329
+ colorFocusWarning: string;
1330
+ colorDisabledWarning: string;
1331
+ textColorWarning: string;
1332
+ textColorHoverWarning: string;
1333
+ textColorPressedWarning: string;
1334
+ textColorFocusWarning: string;
1335
+ textColorDisabledWarning: string;
1336
+ textColorTextWarning: string;
1337
+ textColorTextHoverWarning: string;
1338
+ textColorTextPressedWarning: string;
1339
+ textColorTextFocusWarning: string;
1340
+ textColorTextDisabledWarning: string;
1341
+ textColorGhostWarning: string;
1342
+ textColorGhostHoverWarning: string;
1343
+ textColorGhostPressedWarning: string;
1344
+ textColorGhostFocusWarning: string;
1345
+ textColorGhostDisabledWarning: string;
1346
+ borderWarning: string;
1347
+ borderHoverWarning: string;
1348
+ borderPressedWarning: string;
1349
+ borderFocusWarning: string;
1350
+ borderDisabledWarning: string;
1351
+ rippleColorWarning: string;
1352
+ colorError: string;
1353
+ colorHoverError: string;
1354
+ colorPressedError: string;
1355
+ colorFocusError: string;
1356
+ colorDisabledError: string;
1357
+ textColorError: string;
1358
+ textColorHoverError: string;
1359
+ textColorPressedError: string;
1360
+ textColorFocusError: string;
1361
+ textColorDisabledError: string;
1362
+ textColorTextError: string;
1363
+ textColorTextHoverError: string;
1364
+ textColorTextPressedError: string;
1365
+ textColorTextFocusError: string;
1366
+ textColorTextDisabledError: string;
1367
+ textColorGhostError: string;
1368
+ textColorGhostHoverError: string;
1369
+ textColorGhostPressedError: string;
1370
+ textColorGhostFocusError: string;
1371
+ textColorGhostDisabledError: string;
1372
+ borderError: string;
1373
+ borderHoverError: string;
1374
+ borderPressedError: string;
1375
+ borderFocusError: string;
1376
+ borderDisabledError: string;
1377
+ rippleColorError: string;
1378
+ waveOpacity: string;
1379
+ fontWeight: string;
1380
+ fontWeightStrong: string;
1381
+ paddingTiny: string;
1382
+ paddingSmall: string;
1383
+ paddingMedium: string;
1384
+ paddingLarge: string;
1385
+ paddingRoundTiny: string;
1386
+ paddingRoundSmall: string;
1387
+ paddingRoundMedium: string;
1388
+ paddingRoundLarge: string;
1389
+ iconMarginTiny: string;
1390
+ iconMarginSmall: string;
1391
+ iconMarginMedium: string;
1392
+ iconMarginLarge: string;
1393
+ iconSizeTiny: string;
1394
+ iconSizeSmall: string;
1395
+ iconSizeMedium: string;
1396
+ iconSizeLarge: string;
1397
+ rippleDuration: string;
1398
+ }, any>>>;
1399
+ }>>, {
1400
+ readonly type: import("naive-ui/es/button/src/interface").Type;
1401
+ readonly tag: keyof HTMLElementTagNameMap;
1402
+ readonly block: boolean;
1403
+ readonly round: boolean;
1404
+ readonly dashed: boolean;
1405
+ readonly text: boolean;
1406
+ readonly circle: boolean;
1407
+ readonly disabled: boolean;
1408
+ readonly focusable: boolean;
1409
+ readonly strong: boolean;
1410
+ readonly loading: boolean;
1411
+ readonly bordered: boolean;
1412
+ readonly tertiary: boolean;
1413
+ readonly ghost: boolean;
1414
+ readonly keyboard: boolean;
1415
+ readonly secondary: boolean;
1416
+ readonly quaternary: boolean;
1417
+ readonly iconPlacement: "left" | "right";
1418
+ readonly attrType: "button" | "reset" | "submit";
1419
+ readonly nativeFocusBehavior: boolean;
1420
+ }>;
1421
+ NIcon: import("vue").DefineComponent<{
1422
+ readonly depth: PropType<import("naive-ui/es/icon/src/Icon").Depth>;
1423
+ readonly size: PropType<string | number>;
1424
+ readonly color: StringConstructor;
1425
+ readonly component: PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
1426
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Icon", {
1427
+ color: string;
1428
+ opacity1Depth: string;
1429
+ opacity2Depth: string;
1430
+ opacity3Depth: string;
1431
+ opacity4Depth: string;
1432
+ opacity5Depth: string;
1433
+ }, any>>;
1434
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Icon", {
1435
+ color: string;
1436
+ opacity1Depth: string;
1437
+ opacity2Depth: string;
1438
+ opacity3Depth: string;
1439
+ opacity4Depth: string;
1440
+ opacity5Depth: string;
1441
+ }, any>>>;
1442
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Icon", {
1443
+ color: string;
1444
+ opacity1Depth: string;
1445
+ opacity2Depth: string;
1446
+ opacity3Depth: string;
1447
+ opacity4Depth: string;
1448
+ opacity5Depth: string;
1449
+ }, any>>>;
1450
+ }, {
1451
+ mergedClsPrefix: import("vue").ComputedRef<string>;
1452
+ mergedStyle: import("vue").ComputedRef<{
1453
+ fontSize: string | undefined;
1454
+ color: string | undefined;
1455
+ }>;
1456
+ cssVars: import("vue").ComputedRef<{
1457
+ '--n-bezier': string;
1458
+ '--n-color': string;
1459
+ '--n-opacity': string;
1460
+ }> | undefined;
1461
+ themeClass: import("vue").Ref<string> | undefined;
1462
+ onRender: (() => void) | undefined;
1463
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1464
+ readonly depth: PropType<import("naive-ui/es/icon/src/Icon").Depth>;
1465
+ readonly size: PropType<string | number>;
1466
+ readonly color: StringConstructor;
1467
+ readonly component: PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
1468
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Icon", {
1469
+ color: string;
1470
+ opacity1Depth: string;
1471
+ opacity2Depth: string;
1472
+ opacity3Depth: string;
1473
+ opacity4Depth: string;
1474
+ opacity5Depth: string;
1475
+ }, any>>;
1476
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Icon", {
1477
+ color: string;
1478
+ opacity1Depth: string;
1479
+ opacity2Depth: string;
1480
+ opacity3Depth: string;
1481
+ opacity4Depth: string;
1482
+ opacity5Depth: string;
1483
+ }, any>>>;
1484
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Icon", {
1485
+ color: string;
1486
+ opacity1Depth: string;
1487
+ opacity2Depth: string;
1488
+ opacity3Depth: string;
1489
+ opacity4Depth: string;
1490
+ opacity5Depth: string;
1491
+ }, any>>>;
1492
+ }>>, {}>;
1493
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1494
+ fieldItem: {
1495
+ type: PropType<FormConfigItem>;
1496
+ required: true;
1497
+ };
1498
+ }>>, {}>;
1499
+ export default _default;