cnhis-design-vue 3.1.17-beta.1 → 3.1.17-beta.4

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