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