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