cnhis-design-vue 3.1.15-beta.9 → 3.1.16-beta.1

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 (39) hide show
  1. package/es/packages/big-table/src/hooks/useAnnotation.js +1 -2
  2. package/es/packages/big-table/src/hooks/useColumnConfigAdaptor.js +7 -2
  3. package/es/packages/big-table/src/hooks/useEdit.js +16 -8
  4. package/es/packages/fabric-chart/src/hooks/useDraw.js +1 -0
  5. package/es/packages/fabric-chart/src/hooks/useLeft.js +1 -2
  6. package/es/packages/form-config/index.d.ts +1749 -0
  7. package/es/packages/form-config/src/FormConfig.vue.d.ts +1749 -0
  8. package/es/packages/form-config/src/components/FormConfigEdit.js +3 -3
  9. package/es/packages/form-config/src/components/FormConfigEdit.vue.d.ts +1747 -0
  10. package/es/packages/form-config/style/index.css +1 -1
  11. package/es/packages/form-render/src/components/renderer/combination/index.js +3 -3
  12. package/es/packages/form-render/src/components/renderer/formItem.js +1 -2
  13. package/es/packages/form-render/src/hooks/useFieldListAdaptor.js +2 -2
  14. package/es/packages/form-render/src/types/fieldItem.d.ts +8 -0
  15. package/es/packages/form-render/src/utils/index.d.ts +1 -0
  16. package/es/packages/form-render/src/utils/index.js +9 -2
  17. package/es/packages/form-table/src/hooks/useNuiThemeOverrides.js +1 -1
  18. package/es/packages/index.css +1 -1
  19. package/es/packages/index.d.ts +1 -0
  20. package/es/packages/index.js +1 -1
  21. package/es/packages/scale-view/src/hooks/scaleview-init.js +35 -35
  22. package/es/packages/shortcut-provider/index.d.ts +17 -2
  23. package/es/packages/shortcut-provider/index.js +1 -1
  24. package/es/packages/shortcut-provider/src/ShortcutProvider.js +5 -1
  25. package/es/packages/shortcut-provider/src/ShortcutProvider.vue.d.ts +17 -2
  26. package/es/packages/shortcut-provider/src/hooks/index.js +1 -1
  27. package/es/packages/shortcut-provider/src/hooks/useShortcuts.d.ts +10 -10
  28. package/es/packages/shortcut-provider/src/hooks/useShortcuts.js +45 -38
  29. package/es/packages/shortcut-provider/src/types/index.d.ts +2 -19
  30. package/es/packages/shortcut-setter/index.d.ts +1698 -4283
  31. package/es/packages/shortcut-setter/src/ShortcutSetter.js +63 -10
  32. package/es/packages/shortcut-setter/src/ShortcutSetter.vue.d.ts +1723 -4306
  33. package/es/packages/shortcut-setter/src/ShortcutSetterItem.js +26 -95
  34. package/es/packages/shortcut-setter/src/ShortcutSetterItem.vue.d.ts +30 -3363
  35. package/es/packages/shortcut-setter/src/types/index.d.ts +6 -0
  36. package/es/packages/shortcut-setter/src/types/index.js +1 -0
  37. package/package.json +1 -1
  38. package/es/packages/shortcut-setter/constant/index.d.ts +0 -4
  39. package/es/packages/shortcut-setter/constant/index.js +0 -7
@@ -1,25 +1,27 @@
1
- /// <reference types="lodash" />
2
1
  import { AnyObject } from '../../../../es/src/types';
3
- import { FieldItem } from '../../../../es/packages/form-render';
4
- import { ShortcutInputState } from '../../../../es/packages/shortcut-setter/constant';
2
+ import { ShortcutSignatureInfo } from '../../../../es/packages/shortcut-provider';
3
+ declare enum ShortcutInputState {
4
+ STATIC = 0,
5
+ EDIT = 1
6
+ }
5
7
  declare const _default: import("vue").DefineComponent<{
6
- glob: {
7
- type: BooleanConstructor;
8
- required: false;
8
+ shortcutKey: {
9
+ type: StringConstructor;
10
+ required: true;
9
11
  };
10
- value: {
12
+ shortcutSignature: {
11
13
  type: null;
12
14
  required: true;
13
15
  };
14
- onChange: {
16
+ value: {
15
17
  type: null;
16
18
  required: true;
17
19
  };
18
- onFocus: {
20
+ onChange: {
19
21
  type: null;
20
22
  required: true;
21
23
  };
22
- fieldItem: {
24
+ onFocus: {
23
25
  type: null;
24
26
  required: true;
25
27
  };
@@ -33,1445 +35,29 @@ declare const _default: import("vue").DefineComponent<{
33
35
  required: false;
34
36
  default: string;
35
37
  };
36
- operation: {
37
- type: ArrayConstructor;
38
- required: false;
39
- default: () => never[];
40
- };
41
38
  }, {
42
39
  props: {
43
- glob?: boolean | undefined;
40
+ shortcutKey: string;
41
+ shortcutSignature: ShortcutSignatureInfo;
44
42
  value: unknown;
45
43
  onChange: unknown;
46
44
  onFocus: unknown;
47
- fieldItem: FieldItem;
48
45
  placeholder: string;
49
46
  editPlaceholder: string;
50
- operation: Array<'state' | 'reset'>;
51
47
  };
52
- query: (key: string) => Omit<import("../../../../es/packages/shortcut-provider").ShortcutItem, "callback">;
53
- update: (key: string, info: KeyboardEvent | Partial<import("../../../../es/packages/shortcut-provider").ShortcutSignatureInfo>) => void;
54
- updateDisabled: (key: string, state?: boolean | undefined) => void;
55
- onReset: (key: string) => void;
56
- updateManagerDisabled: (disabled?: boolean | undefined) => void;
57
- shortcutItem: import("vue").ComputedRef<Omit<import("../../../../es/packages/shortcut-provider").ShortcutItem, "callback">>;
58
- disabledState: import("vue").ComputedRef<boolean>;
59
- currentSetShortcut: import("vue").ComputedRef<string>;
48
+ ShortcutInputState: typeof ShortcutInputState;
49
+ currentSetShortcut: import("vue").Ref<string>;
60
50
  state: import("vue").Ref<ShortcutInputState>;
61
51
  isEditState: import("vue").ComputedRef<boolean>;
62
- hasOperation: (operation: 'state' | 'reset') => boolean;
63
52
  currentEditShortcut: import("vue").Ref<string>;
64
53
  showContent: import("vue").ComputedRef<string>;
65
54
  placeholder: import("vue").ComputedRef<string>;
66
55
  onInputFocus: () => void;
67
56
  inputRef: import("vue").Ref<AnyObject | undefined>;
68
57
  onInputBlur: () => void;
69
- onInputKeyDown: import("lodash").DebouncedFuncLeading<(event: KeyboardEvent) => void>;
70
- $message: import("naive-ui").MessageApi;
71
- updateDecorator: (fn: () => unknown, afterUpdate?: () => void) => void;
72
- onInputKeyUp: import("lodash").DebouncedFuncLeading<(event: KeyboardEvent) => void>;
73
- onStop: () => void;
74
- onSignatureReset: () => void;
75
- NButton: import("vue").DefineComponent<{
76
- readonly color: StringConstructor;
77
- readonly textColor: StringConstructor;
78
- readonly text: BooleanConstructor;
79
- readonly block: BooleanConstructor;
80
- readonly loading: BooleanConstructor;
81
- readonly disabled: BooleanConstructor;
82
- readonly circle: BooleanConstructor;
83
- readonly size: import("vue").PropType<import("naive-ui/es/button/src/interface").Size>;
84
- readonly ghost: BooleanConstructor;
85
- readonly round: BooleanConstructor;
86
- readonly secondary: BooleanConstructor;
87
- readonly tertiary: BooleanConstructor;
88
- readonly quaternary: BooleanConstructor;
89
- readonly strong: BooleanConstructor;
90
- readonly focusable: {
91
- readonly type: BooleanConstructor;
92
- readonly default: true;
93
- };
94
- readonly keyboard: {
95
- readonly type: BooleanConstructor;
96
- readonly default: true;
97
- };
98
- readonly tag: {
99
- readonly type: import("vue").PropType<keyof HTMLElementTagNameMap>;
100
- readonly default: "button";
101
- };
102
- readonly type: {
103
- readonly type: import("vue").PropType<import("naive-ui/es/button/src/interface").Type>;
104
- readonly default: "default";
105
- };
106
- readonly dashed: BooleanConstructor;
107
- readonly iconPlacement: {
108
- readonly type: import("vue").PropType<"left" | "right">;
109
- readonly default: "left";
110
- };
111
- readonly attrType: {
112
- readonly type: import("vue").PropType<"button" | "reset" | "submit">;
113
- readonly default: "button";
114
- };
115
- readonly bordered: {
116
- readonly type: BooleanConstructor;
117
- readonly default: true;
118
- };
119
- readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
120
- readonly nativeFocusBehavior: {
121
- readonly type: BooleanConstructor;
122
- readonly default: boolean;
123
- };
124
- readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
125
- heightTiny: string;
126
- heightSmall: string;
127
- heightMedium: string;
128
- heightLarge: string;
129
- borderRadiusTiny: string;
130
- borderRadiusSmall: string;
131
- borderRadiusMedium: string;
132
- borderRadiusLarge: string;
133
- fontSizeTiny: string;
134
- fontSizeSmall: string;
135
- fontSizeMedium: string;
136
- fontSizeLarge: string;
137
- opacityDisabled: string;
138
- colorOpacitySecondary: string;
139
- colorOpacitySecondaryHover: string;
140
- colorOpacitySecondaryPressed: string;
141
- colorSecondary: string;
142
- colorSecondaryHover: string;
143
- colorSecondaryPressed: string;
144
- colorTertiary: string;
145
- colorTertiaryHover: string;
146
- colorTertiaryPressed: string;
147
- colorQuaternary: string;
148
- colorQuaternaryHover: string;
149
- colorQuaternaryPressed: string;
150
- color: string;
151
- colorHover: string;
152
- colorPressed: string;
153
- colorFocus: string;
154
- colorDisabled: string;
155
- textColor: string;
156
- textColorTertiary: string;
157
- textColorHover: string;
158
- textColorPressed: string;
159
- textColorFocus: string;
160
- textColorDisabled: string;
161
- textColorText: string;
162
- textColorTextHover: string;
163
- textColorTextPressed: string;
164
- textColorTextFocus: string;
165
- textColorTextDisabled: string;
166
- textColorGhost: string;
167
- textColorGhostHover: string;
168
- textColorGhostPressed: string;
169
- textColorGhostFocus: string;
170
- textColorGhostDisabled: string;
171
- border: string;
172
- borderHover: string;
173
- borderPressed: string;
174
- borderFocus: string;
175
- borderDisabled: string;
176
- rippleColor: string;
177
- colorPrimary: string;
178
- colorHoverPrimary: string;
179
- colorPressedPrimary: string;
180
- colorFocusPrimary: string;
181
- colorDisabledPrimary: string;
182
- textColorPrimary: string;
183
- textColorHoverPrimary: string;
184
- textColorPressedPrimary: string;
185
- textColorFocusPrimary: string;
186
- textColorDisabledPrimary: string;
187
- textColorTextPrimary: string;
188
- textColorTextHoverPrimary: string;
189
- textColorTextPressedPrimary: string;
190
- textColorTextFocusPrimary: string;
191
- textColorTextDisabledPrimary: string;
192
- textColorGhostPrimary: string;
193
- textColorGhostHoverPrimary: string;
194
- textColorGhostPressedPrimary: string;
195
- textColorGhostFocusPrimary: string;
196
- textColorGhostDisabledPrimary: string;
197
- borderPrimary: string;
198
- borderHoverPrimary: string;
199
- borderPressedPrimary: string;
200
- borderFocusPrimary: string;
201
- borderDisabledPrimary: string;
202
- rippleColorPrimary: string;
203
- colorInfo: string;
204
- colorHoverInfo: string;
205
- colorPressedInfo: string;
206
- colorFocusInfo: string;
207
- colorDisabledInfo: string;
208
- textColorInfo: string;
209
- textColorHoverInfo: string;
210
- textColorPressedInfo: string;
211
- textColorFocusInfo: string;
212
- textColorDisabledInfo: string;
213
- textColorTextInfo: string;
214
- textColorTextHoverInfo: string;
215
- textColorTextPressedInfo: string;
216
- textColorTextFocusInfo: string;
217
- textColorTextDisabledInfo: string;
218
- textColorGhostInfo: string;
219
- textColorGhostHoverInfo: string;
220
- textColorGhostPressedInfo: string;
221
- textColorGhostFocusInfo: string;
222
- textColorGhostDisabledInfo: string;
223
- borderInfo: string;
224
- borderHoverInfo: string;
225
- borderPressedInfo: string;
226
- borderFocusInfo: string;
227
- borderDisabledInfo: string;
228
- rippleColorInfo: string;
229
- colorSuccess: string;
230
- colorHoverSuccess: string;
231
- colorPressedSuccess: string;
232
- colorFocusSuccess: string;
233
- colorDisabledSuccess: string;
234
- textColorSuccess: string;
235
- textColorHoverSuccess: string;
236
- textColorPressedSuccess: string;
237
- textColorFocusSuccess: string;
238
- textColorDisabledSuccess: string;
239
- textColorTextSuccess: string;
240
- textColorTextHoverSuccess: string;
241
- textColorTextPressedSuccess: string;
242
- textColorTextFocusSuccess: string;
243
- textColorTextDisabledSuccess: string;
244
- textColorGhostSuccess: string;
245
- textColorGhostHoverSuccess: string;
246
- textColorGhostPressedSuccess: string;
247
- textColorGhostFocusSuccess: string;
248
- textColorGhostDisabledSuccess: string;
249
- borderSuccess: string;
250
- borderHoverSuccess: string;
251
- borderPressedSuccess: string;
252
- borderFocusSuccess: string;
253
- borderDisabledSuccess: string;
254
- rippleColorSuccess: string;
255
- colorWarning: string;
256
- colorHoverWarning: string;
257
- colorPressedWarning: string;
258
- colorFocusWarning: string;
259
- colorDisabledWarning: string;
260
- textColorWarning: string;
261
- textColorHoverWarning: string;
262
- textColorPressedWarning: string;
263
- textColorFocusWarning: string;
264
- textColorDisabledWarning: string;
265
- textColorTextWarning: string;
266
- textColorTextHoverWarning: string;
267
- textColorTextPressedWarning: string;
268
- textColorTextFocusWarning: string;
269
- textColorTextDisabledWarning: string;
270
- textColorGhostWarning: string;
271
- textColorGhostHoverWarning: string;
272
- textColorGhostPressedWarning: string;
273
- textColorGhostFocusWarning: string;
274
- textColorGhostDisabledWarning: string;
275
- borderWarning: string;
276
- borderHoverWarning: string;
277
- borderPressedWarning: string;
278
- borderFocusWarning: string;
279
- borderDisabledWarning: string;
280
- rippleColorWarning: string;
281
- colorError: string;
282
- colorHoverError: string;
283
- colorPressedError: string;
284
- colorFocusError: string;
285
- colorDisabledError: string;
286
- textColorError: string;
287
- textColorHoverError: string;
288
- textColorPressedError: string;
289
- textColorFocusError: string;
290
- textColorDisabledError: string;
291
- textColorTextError: string;
292
- textColorTextHoverError: string;
293
- textColorTextPressedError: string;
294
- textColorTextFocusError: string;
295
- textColorTextDisabledError: string;
296
- textColorGhostError: string;
297
- textColorGhostHoverError: string;
298
- textColorGhostPressedError: string;
299
- textColorGhostFocusError: string;
300
- textColorGhostDisabledError: string;
301
- borderError: string;
302
- borderHoverError: string;
303
- borderPressedError: string;
304
- borderFocusError: string;
305
- borderDisabledError: string;
306
- rippleColorError: string;
307
- waveOpacity: string;
308
- fontWeight: string;
309
- fontWeightStrong: string;
310
- paddingTiny: string;
311
- paddingSmall: string;
312
- paddingMedium: string;
313
- paddingLarge: string;
314
- paddingRoundTiny: string;
315
- paddingRoundSmall: string;
316
- paddingRoundMedium: string;
317
- paddingRoundLarge: string;
318
- iconMarginTiny: string;
319
- iconMarginSmall: string;
320
- iconMarginMedium: string;
321
- iconMarginLarge: string;
322
- iconSizeTiny: string;
323
- iconSizeSmall: string;
324
- iconSizeMedium: string;
325
- iconSizeLarge: string;
326
- rippleDuration: string;
327
- }, any>>;
328
- readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
329
- heightTiny: string;
330
- heightSmall: string;
331
- heightMedium: string;
332
- heightLarge: string;
333
- borderRadiusTiny: string;
334
- borderRadiusSmall: string;
335
- borderRadiusMedium: string;
336
- borderRadiusLarge: string;
337
- fontSizeTiny: string;
338
- fontSizeSmall: string;
339
- fontSizeMedium: string;
340
- fontSizeLarge: string;
341
- opacityDisabled: string;
342
- colorOpacitySecondary: string;
343
- colorOpacitySecondaryHover: string;
344
- colorOpacitySecondaryPressed: string;
345
- colorSecondary: string;
346
- colorSecondaryHover: string;
347
- colorSecondaryPressed: string;
348
- colorTertiary: string;
349
- colorTertiaryHover: string;
350
- colorTertiaryPressed: string;
351
- colorQuaternary: string;
352
- colorQuaternaryHover: string;
353
- colorQuaternaryPressed: string;
354
- color: string;
355
- colorHover: string;
356
- colorPressed: string;
357
- colorFocus: string;
358
- colorDisabled: string;
359
- textColor: string;
360
- textColorTertiary: string;
361
- textColorHover: string;
362
- textColorPressed: string;
363
- textColorFocus: string;
364
- textColorDisabled: string;
365
- textColorText: string;
366
- textColorTextHover: string;
367
- textColorTextPressed: string;
368
- textColorTextFocus: string;
369
- textColorTextDisabled: string;
370
- textColorGhost: string;
371
- textColorGhostHover: string;
372
- textColorGhostPressed: string;
373
- textColorGhostFocus: string;
374
- textColorGhostDisabled: string;
375
- border: string;
376
- borderHover: string;
377
- borderPressed: string;
378
- borderFocus: string;
379
- borderDisabled: string;
380
- rippleColor: string;
381
- colorPrimary: string;
382
- colorHoverPrimary: string;
383
- colorPressedPrimary: string;
384
- colorFocusPrimary: string;
385
- colorDisabledPrimary: string;
386
- textColorPrimary: string;
387
- textColorHoverPrimary: string;
388
- textColorPressedPrimary: string;
389
- textColorFocusPrimary: string;
390
- textColorDisabledPrimary: string;
391
- textColorTextPrimary: string;
392
- textColorTextHoverPrimary: string;
393
- textColorTextPressedPrimary: string;
394
- textColorTextFocusPrimary: string;
395
- textColorTextDisabledPrimary: string;
396
- textColorGhostPrimary: string;
397
- textColorGhostHoverPrimary: string;
398
- textColorGhostPressedPrimary: string;
399
- textColorGhostFocusPrimary: string;
400
- textColorGhostDisabledPrimary: string;
401
- borderPrimary: string;
402
- borderHoverPrimary: string;
403
- borderPressedPrimary: string;
404
- borderFocusPrimary: string;
405
- borderDisabledPrimary: string;
406
- rippleColorPrimary: string;
407
- colorInfo: string;
408
- colorHoverInfo: string;
409
- colorPressedInfo: string;
410
- colorFocusInfo: string;
411
- colorDisabledInfo: string;
412
- textColorInfo: string;
413
- textColorHoverInfo: string;
414
- textColorPressedInfo: string;
415
- textColorFocusInfo: string;
416
- textColorDisabledInfo: string;
417
- textColorTextInfo: string;
418
- textColorTextHoverInfo: string;
419
- textColorTextPressedInfo: string;
420
- textColorTextFocusInfo: string;
421
- textColorTextDisabledInfo: string;
422
- textColorGhostInfo: string;
423
- textColorGhostHoverInfo: string;
424
- textColorGhostPressedInfo: string;
425
- textColorGhostFocusInfo: string;
426
- textColorGhostDisabledInfo: string;
427
- borderInfo: string;
428
- borderHoverInfo: string;
429
- borderPressedInfo: string;
430
- borderFocusInfo: string;
431
- borderDisabledInfo: string;
432
- rippleColorInfo: string;
433
- colorSuccess: string;
434
- colorHoverSuccess: string;
435
- colorPressedSuccess: string;
436
- colorFocusSuccess: string;
437
- colorDisabledSuccess: string;
438
- textColorSuccess: string;
439
- textColorHoverSuccess: string;
440
- textColorPressedSuccess: string;
441
- textColorFocusSuccess: string;
442
- textColorDisabledSuccess: string;
443
- textColorTextSuccess: string;
444
- textColorTextHoverSuccess: string;
445
- textColorTextPressedSuccess: string;
446
- textColorTextFocusSuccess: string;
447
- textColorTextDisabledSuccess: string;
448
- textColorGhostSuccess: string;
449
- textColorGhostHoverSuccess: string;
450
- textColorGhostPressedSuccess: string;
451
- textColorGhostFocusSuccess: string;
452
- textColorGhostDisabledSuccess: string;
453
- borderSuccess: string;
454
- borderHoverSuccess: string;
455
- borderPressedSuccess: string;
456
- borderFocusSuccess: string;
457
- borderDisabledSuccess: string;
458
- rippleColorSuccess: string;
459
- colorWarning: string;
460
- colorHoverWarning: string;
461
- colorPressedWarning: string;
462
- colorFocusWarning: string;
463
- colorDisabledWarning: string;
464
- textColorWarning: string;
465
- textColorHoverWarning: string;
466
- textColorPressedWarning: string;
467
- textColorFocusWarning: string;
468
- textColorDisabledWarning: string;
469
- textColorTextWarning: string;
470
- textColorTextHoverWarning: string;
471
- textColorTextPressedWarning: string;
472
- textColorTextFocusWarning: string;
473
- textColorTextDisabledWarning: string;
474
- textColorGhostWarning: string;
475
- textColorGhostHoverWarning: string;
476
- textColorGhostPressedWarning: string;
477
- textColorGhostFocusWarning: string;
478
- textColorGhostDisabledWarning: string;
479
- borderWarning: string;
480
- borderHoverWarning: string;
481
- borderPressedWarning: string;
482
- borderFocusWarning: string;
483
- borderDisabledWarning: string;
484
- rippleColorWarning: string;
485
- colorError: string;
486
- colorHoverError: string;
487
- colorPressedError: string;
488
- colorFocusError: string;
489
- colorDisabledError: string;
490
- textColorError: string;
491
- textColorHoverError: string;
492
- textColorPressedError: string;
493
- textColorFocusError: string;
494
- textColorDisabledError: string;
495
- textColorTextError: string;
496
- textColorTextHoverError: string;
497
- textColorTextPressedError: string;
498
- textColorTextFocusError: string;
499
- textColorTextDisabledError: string;
500
- textColorGhostError: string;
501
- textColorGhostHoverError: string;
502
- textColorGhostPressedError: string;
503
- textColorGhostFocusError: string;
504
- textColorGhostDisabledError: string;
505
- borderError: string;
506
- borderHoverError: string;
507
- borderPressedError: string;
508
- borderFocusError: string;
509
- borderDisabledError: string;
510
- rippleColorError: string;
511
- waveOpacity: string;
512
- fontWeight: string;
513
- fontWeightStrong: string;
514
- paddingTiny: string;
515
- paddingSmall: string;
516
- paddingMedium: string;
517
- paddingLarge: string;
518
- paddingRoundTiny: string;
519
- paddingRoundSmall: string;
520
- paddingRoundMedium: string;
521
- paddingRoundLarge: string;
522
- iconMarginTiny: string;
523
- iconMarginSmall: string;
524
- iconMarginMedium: string;
525
- iconMarginLarge: string;
526
- iconSizeTiny: string;
527
- iconSizeSmall: string;
528
- iconSizeMedium: string;
529
- iconSizeLarge: string;
530
- rippleDuration: string;
531
- }, any>>>;
532
- readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
533
- heightTiny: string;
534
- heightSmall: string;
535
- heightMedium: string;
536
- heightLarge: string;
537
- borderRadiusTiny: string;
538
- borderRadiusSmall: string;
539
- borderRadiusMedium: string;
540
- borderRadiusLarge: string;
541
- fontSizeTiny: string;
542
- fontSizeSmall: string;
543
- fontSizeMedium: string;
544
- fontSizeLarge: string;
545
- opacityDisabled: string;
546
- colorOpacitySecondary: string;
547
- colorOpacitySecondaryHover: string;
548
- colorOpacitySecondaryPressed: string;
549
- colorSecondary: string;
550
- colorSecondaryHover: string;
551
- colorSecondaryPressed: string;
552
- colorTertiary: string;
553
- colorTertiaryHover: string;
554
- colorTertiaryPressed: string;
555
- colorQuaternary: string;
556
- colorQuaternaryHover: string;
557
- colorQuaternaryPressed: string;
558
- color: string;
559
- colorHover: string;
560
- colorPressed: string;
561
- colorFocus: string;
562
- colorDisabled: string;
563
- textColor: string;
564
- textColorTertiary: string;
565
- textColorHover: string;
566
- textColorPressed: string;
567
- textColorFocus: string;
568
- textColorDisabled: string;
569
- textColorText: string;
570
- textColorTextHover: string;
571
- textColorTextPressed: string;
572
- textColorTextFocus: string;
573
- textColorTextDisabled: string;
574
- textColorGhost: string;
575
- textColorGhostHover: string;
576
- textColorGhostPressed: string;
577
- textColorGhostFocus: string;
578
- textColorGhostDisabled: string;
579
- border: string;
580
- borderHover: string;
581
- borderPressed: string;
582
- borderFocus: string;
583
- borderDisabled: string;
584
- rippleColor: string;
585
- colorPrimary: string;
586
- colorHoverPrimary: string;
587
- colorPressedPrimary: string;
588
- colorFocusPrimary: string;
589
- colorDisabledPrimary: string;
590
- textColorPrimary: string;
591
- textColorHoverPrimary: string;
592
- textColorPressedPrimary: string;
593
- textColorFocusPrimary: string;
594
- textColorDisabledPrimary: string;
595
- textColorTextPrimary: string;
596
- textColorTextHoverPrimary: string;
597
- textColorTextPressedPrimary: string;
598
- textColorTextFocusPrimary: string;
599
- textColorTextDisabledPrimary: string;
600
- textColorGhostPrimary: string;
601
- textColorGhostHoverPrimary: string;
602
- textColorGhostPressedPrimary: string;
603
- textColorGhostFocusPrimary: string;
604
- textColorGhostDisabledPrimary: string;
605
- borderPrimary: string;
606
- borderHoverPrimary: string;
607
- borderPressedPrimary: string;
608
- borderFocusPrimary: string;
609
- borderDisabledPrimary: string;
610
- rippleColorPrimary: string;
611
- colorInfo: string;
612
- colorHoverInfo: string;
613
- colorPressedInfo: string;
614
- colorFocusInfo: string;
615
- colorDisabledInfo: string;
616
- textColorInfo: string;
617
- textColorHoverInfo: string;
618
- textColorPressedInfo: string;
619
- textColorFocusInfo: string;
620
- textColorDisabledInfo: string;
621
- textColorTextInfo: string;
622
- textColorTextHoverInfo: string;
623
- textColorTextPressedInfo: string;
624
- textColorTextFocusInfo: string;
625
- textColorTextDisabledInfo: string;
626
- textColorGhostInfo: string;
627
- textColorGhostHoverInfo: string;
628
- textColorGhostPressedInfo: string;
629
- textColorGhostFocusInfo: string;
630
- textColorGhostDisabledInfo: string;
631
- borderInfo: string;
632
- borderHoverInfo: string;
633
- borderPressedInfo: string;
634
- borderFocusInfo: string;
635
- borderDisabledInfo: string;
636
- rippleColorInfo: string;
637
- colorSuccess: string;
638
- colorHoverSuccess: string;
639
- colorPressedSuccess: string;
640
- colorFocusSuccess: string;
641
- colorDisabledSuccess: string;
642
- textColorSuccess: string;
643
- textColorHoverSuccess: string;
644
- textColorPressedSuccess: string;
645
- textColorFocusSuccess: string;
646
- textColorDisabledSuccess: string;
647
- textColorTextSuccess: string;
648
- textColorTextHoverSuccess: string;
649
- textColorTextPressedSuccess: string;
650
- textColorTextFocusSuccess: string;
651
- textColorTextDisabledSuccess: string;
652
- textColorGhostSuccess: string;
653
- textColorGhostHoverSuccess: string;
654
- textColorGhostPressedSuccess: string;
655
- textColorGhostFocusSuccess: string;
656
- textColorGhostDisabledSuccess: string;
657
- borderSuccess: string;
658
- borderHoverSuccess: string;
659
- borderPressedSuccess: string;
660
- borderFocusSuccess: string;
661
- borderDisabledSuccess: string;
662
- rippleColorSuccess: string;
663
- colorWarning: string;
664
- colorHoverWarning: string;
665
- colorPressedWarning: string;
666
- colorFocusWarning: string;
667
- colorDisabledWarning: string;
668
- textColorWarning: string;
669
- textColorHoverWarning: string;
670
- textColorPressedWarning: string;
671
- textColorFocusWarning: string;
672
- textColorDisabledWarning: string;
673
- textColorTextWarning: string;
674
- textColorTextHoverWarning: string;
675
- textColorTextPressedWarning: string;
676
- textColorTextFocusWarning: string;
677
- textColorTextDisabledWarning: string;
678
- textColorGhostWarning: string;
679
- textColorGhostHoverWarning: string;
680
- textColorGhostPressedWarning: string;
681
- textColorGhostFocusWarning: string;
682
- textColorGhostDisabledWarning: string;
683
- borderWarning: string;
684
- borderHoverWarning: string;
685
- borderPressedWarning: string;
686
- borderFocusWarning: string;
687
- borderDisabledWarning: string;
688
- rippleColorWarning: string;
689
- colorError: string;
690
- colorHoverError: string;
691
- colorPressedError: string;
692
- colorFocusError: string;
693
- colorDisabledError: string;
694
- textColorError: string;
695
- textColorHoverError: string;
696
- textColorPressedError: string;
697
- textColorFocusError: string;
698
- textColorDisabledError: string;
699
- textColorTextError: string;
700
- textColorTextHoverError: string;
701
- textColorTextPressedError: string;
702
- textColorTextFocusError: string;
703
- textColorTextDisabledError: string;
704
- textColorGhostError: string;
705
- textColorGhostHoverError: string;
706
- textColorGhostPressedError: string;
707
- textColorGhostFocusError: string;
708
- textColorGhostDisabledError: string;
709
- borderError: string;
710
- borderHoverError: string;
711
- borderPressedError: string;
712
- borderFocusError: string;
713
- borderDisabledError: string;
714
- rippleColorError: string;
715
- waveOpacity: string;
716
- fontWeight: string;
717
- fontWeightStrong: string;
718
- paddingTiny: string;
719
- paddingSmall: string;
720
- paddingMedium: string;
721
- paddingLarge: string;
722
- paddingRoundTiny: string;
723
- paddingRoundSmall: string;
724
- paddingRoundMedium: string;
725
- paddingRoundLarge: string;
726
- iconMarginTiny: string;
727
- iconMarginSmall: string;
728
- iconMarginMedium: string;
729
- iconMarginLarge: string;
730
- iconSizeTiny: string;
731
- iconSizeSmall: string;
732
- iconSizeMedium: string;
733
- iconSizeLarge: string;
734
- rippleDuration: string;
735
- }, any>>>;
736
- }, {
737
- selfElRef: import("vue").Ref<HTMLElement | null>;
738
- waveElRef: import("vue").Ref<{
739
- play: () => void;
740
- } | null>;
741
- mergedClsPrefix: import("vue").ComputedRef<string>;
742
- mergedFocusable: import("vue").ComputedRef<boolean>;
743
- mergedSize: import("vue").ComputedRef<"small" | "medium" | "tiny" | "large">;
744
- showBorder: import("vue").ComputedRef<boolean>;
745
- enterPressed: import("vue").Ref<boolean>;
746
- rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
747
- handleMousedown: (e: MouseEvent) => void;
748
- handleKeydown: (e: KeyboardEvent) => void;
749
- handleBlur: () => void;
750
- handleKeyup: (e: KeyboardEvent) => void;
751
- handleClick: (e: MouseEvent) => void;
752
- customColorCssVars: import("vue").ComputedRef<{
753
- '--n-border-color': string;
754
- '--n-border-color-hover': string;
755
- '--n-border-color-pressed': string;
756
- '--n-border-color-focus': string;
757
- '--n-border-color-disabled': string;
758
- } | null>;
759
- cssVars: import("vue").ComputedRef<{
760
- '--n-width': string;
761
- '--n-height': string;
762
- '--n-font-size': string;
763
- '--n-padding': string;
764
- '--n-icon-size': string;
765
- '--n-icon-margin': string;
766
- '--n-border-radius': string;
767
- '--n-border': string;
768
- '--n-border-hover': string;
769
- '--n-border-pressed': string;
770
- '--n-border-focus': string;
771
- '--n-border-disabled': string;
772
- '--n-color': string;
773
- '--n-color-hover': string;
774
- '--n-color-pressed': string;
775
- '--n-color-focus': string;
776
- '--n-color-disabled': string;
777
- '--n-ripple-color': string;
778
- '--n-text-color': string;
779
- '--n-text-color-hover': string;
780
- '--n-text-color-pressed': string;
781
- '--n-text-color-focus': string;
782
- '--n-text-color-disabled': string;
783
- 'font-weight': string;
784
- '--n-bezier': string;
785
- '--n-bezier-ease-out': string;
786
- '--n-ripple-duration': string;
787
- '--n-opacity-disabled': string;
788
- '--n-wave-opacity': string;
789
- }> | undefined;
790
- themeClass: import("vue").Ref<string> | undefined;
791
- onRender: (() => void) | undefined;
792
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
793
- readonly color: StringConstructor;
794
- readonly textColor: StringConstructor;
795
- readonly text: BooleanConstructor;
796
- readonly block: BooleanConstructor;
797
- readonly loading: BooleanConstructor;
798
- readonly disabled: BooleanConstructor;
799
- readonly circle: BooleanConstructor;
800
- readonly size: import("vue").PropType<import("naive-ui/es/button/src/interface").Size>;
801
- readonly ghost: BooleanConstructor;
802
- readonly round: BooleanConstructor;
803
- readonly secondary: BooleanConstructor;
804
- readonly tertiary: BooleanConstructor;
805
- readonly quaternary: BooleanConstructor;
806
- readonly strong: BooleanConstructor;
807
- readonly focusable: {
808
- readonly type: BooleanConstructor;
809
- readonly default: true;
810
- };
811
- readonly keyboard: {
812
- readonly type: BooleanConstructor;
813
- readonly default: true;
814
- };
815
- readonly tag: {
816
- readonly type: import("vue").PropType<keyof HTMLElementTagNameMap>;
817
- readonly default: "button";
818
- };
819
- readonly type: {
820
- readonly type: import("vue").PropType<import("naive-ui/es/button/src/interface").Type>;
821
- readonly default: "default";
822
- };
823
- readonly dashed: BooleanConstructor;
824
- readonly iconPlacement: {
825
- readonly type: import("vue").PropType<"left" | "right">;
826
- readonly default: "left";
827
- };
828
- readonly attrType: {
829
- readonly type: import("vue").PropType<"button" | "reset" | "submit">;
830
- readonly default: "button";
831
- };
832
- readonly bordered: {
833
- readonly type: BooleanConstructor;
834
- readonly default: true;
835
- };
836
- readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
837
- readonly nativeFocusBehavior: {
838
- readonly type: BooleanConstructor;
839
- readonly default: boolean;
840
- };
841
- readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
842
- heightTiny: string;
843
- heightSmall: string;
844
- heightMedium: string;
845
- heightLarge: string;
846
- borderRadiusTiny: string;
847
- borderRadiusSmall: string;
848
- borderRadiusMedium: string;
849
- borderRadiusLarge: string;
850
- fontSizeTiny: string;
851
- fontSizeSmall: string;
852
- fontSizeMedium: string;
853
- fontSizeLarge: string;
854
- opacityDisabled: string;
855
- colorOpacitySecondary: string;
856
- colorOpacitySecondaryHover: string;
857
- colorOpacitySecondaryPressed: string;
858
- colorSecondary: string;
859
- colorSecondaryHover: string;
860
- colorSecondaryPressed: string;
861
- colorTertiary: string;
862
- colorTertiaryHover: string;
863
- colorTertiaryPressed: string;
864
- colorQuaternary: string;
865
- colorQuaternaryHover: string;
866
- colorQuaternaryPressed: string;
867
- color: string;
868
- colorHover: string;
869
- colorPressed: string;
870
- colorFocus: string;
871
- colorDisabled: string;
872
- textColor: string;
873
- textColorTertiary: string;
874
- textColorHover: string;
875
- textColorPressed: string;
876
- textColorFocus: string;
877
- textColorDisabled: string;
878
- textColorText: string;
879
- textColorTextHover: string;
880
- textColorTextPressed: string;
881
- textColorTextFocus: string;
882
- textColorTextDisabled: string;
883
- textColorGhost: string;
884
- textColorGhostHover: string;
885
- textColorGhostPressed: string;
886
- textColorGhostFocus: string;
887
- textColorGhostDisabled: string;
888
- border: string;
889
- borderHover: string;
890
- borderPressed: string;
891
- borderFocus: string;
892
- borderDisabled: string;
893
- rippleColor: string;
894
- colorPrimary: string;
895
- colorHoverPrimary: string;
896
- colorPressedPrimary: string;
897
- colorFocusPrimary: string;
898
- colorDisabledPrimary: string;
899
- textColorPrimary: string;
900
- textColorHoverPrimary: string;
901
- textColorPressedPrimary: string;
902
- textColorFocusPrimary: string;
903
- textColorDisabledPrimary: string;
904
- textColorTextPrimary: string;
905
- textColorTextHoverPrimary: string;
906
- textColorTextPressedPrimary: string;
907
- textColorTextFocusPrimary: string;
908
- textColorTextDisabledPrimary: string;
909
- textColorGhostPrimary: string;
910
- textColorGhostHoverPrimary: string;
911
- textColorGhostPressedPrimary: string;
912
- textColorGhostFocusPrimary: string;
913
- textColorGhostDisabledPrimary: string;
914
- borderPrimary: string;
915
- borderHoverPrimary: string;
916
- borderPressedPrimary: string;
917
- borderFocusPrimary: string;
918
- borderDisabledPrimary: string;
919
- rippleColorPrimary: string;
920
- colorInfo: string;
921
- colorHoverInfo: string;
922
- colorPressedInfo: string;
923
- colorFocusInfo: string;
924
- colorDisabledInfo: string;
925
- textColorInfo: string;
926
- textColorHoverInfo: string;
927
- textColorPressedInfo: string;
928
- textColorFocusInfo: string;
929
- textColorDisabledInfo: string;
930
- textColorTextInfo: string;
931
- textColorTextHoverInfo: string;
932
- textColorTextPressedInfo: string;
933
- textColorTextFocusInfo: string;
934
- textColorTextDisabledInfo: string;
935
- textColorGhostInfo: string;
936
- textColorGhostHoverInfo: string;
937
- textColorGhostPressedInfo: string;
938
- textColorGhostFocusInfo: string;
939
- textColorGhostDisabledInfo: string;
940
- borderInfo: string;
941
- borderHoverInfo: string;
942
- borderPressedInfo: string;
943
- borderFocusInfo: string;
944
- borderDisabledInfo: string;
945
- rippleColorInfo: string;
946
- colorSuccess: string;
947
- colorHoverSuccess: string;
948
- colorPressedSuccess: string;
949
- colorFocusSuccess: string;
950
- colorDisabledSuccess: string;
951
- textColorSuccess: string;
952
- textColorHoverSuccess: string;
953
- textColorPressedSuccess: string;
954
- textColorFocusSuccess: string;
955
- textColorDisabledSuccess: string;
956
- textColorTextSuccess: string;
957
- textColorTextHoverSuccess: string;
958
- textColorTextPressedSuccess: string;
959
- textColorTextFocusSuccess: string;
960
- textColorTextDisabledSuccess: string;
961
- textColorGhostSuccess: string;
962
- textColorGhostHoverSuccess: string;
963
- textColorGhostPressedSuccess: string;
964
- textColorGhostFocusSuccess: string;
965
- textColorGhostDisabledSuccess: string;
966
- borderSuccess: string;
967
- borderHoverSuccess: string;
968
- borderPressedSuccess: string;
969
- borderFocusSuccess: string;
970
- borderDisabledSuccess: string;
971
- rippleColorSuccess: string;
972
- colorWarning: string;
973
- colorHoverWarning: string;
974
- colorPressedWarning: string;
975
- colorFocusWarning: string;
976
- colorDisabledWarning: string;
977
- textColorWarning: string;
978
- textColorHoverWarning: string;
979
- textColorPressedWarning: string;
980
- textColorFocusWarning: string;
981
- textColorDisabledWarning: string;
982
- textColorTextWarning: string;
983
- textColorTextHoverWarning: string;
984
- textColorTextPressedWarning: string;
985
- textColorTextFocusWarning: string;
986
- textColorTextDisabledWarning: string;
987
- textColorGhostWarning: string;
988
- textColorGhostHoverWarning: string;
989
- textColorGhostPressedWarning: string;
990
- textColorGhostFocusWarning: string;
991
- textColorGhostDisabledWarning: string;
992
- borderWarning: string;
993
- borderHoverWarning: string;
994
- borderPressedWarning: string;
995
- borderFocusWarning: string;
996
- borderDisabledWarning: string;
997
- rippleColorWarning: string;
998
- colorError: string;
999
- colorHoverError: string;
1000
- colorPressedError: string;
1001
- colorFocusError: string;
1002
- colorDisabledError: string;
1003
- textColorError: string;
1004
- textColorHoverError: string;
1005
- textColorPressedError: string;
1006
- textColorFocusError: string;
1007
- textColorDisabledError: string;
1008
- textColorTextError: string;
1009
- textColorTextHoverError: string;
1010
- textColorTextPressedError: string;
1011
- textColorTextFocusError: string;
1012
- textColorTextDisabledError: string;
1013
- textColorGhostError: string;
1014
- textColorGhostHoverError: string;
1015
- textColorGhostPressedError: string;
1016
- textColorGhostFocusError: string;
1017
- textColorGhostDisabledError: string;
1018
- borderError: string;
1019
- borderHoverError: string;
1020
- borderPressedError: string;
1021
- borderFocusError: string;
1022
- borderDisabledError: string;
1023
- rippleColorError: string;
1024
- waveOpacity: string;
1025
- fontWeight: string;
1026
- fontWeightStrong: string;
1027
- paddingTiny: string;
1028
- paddingSmall: string;
1029
- paddingMedium: string;
1030
- paddingLarge: string;
1031
- paddingRoundTiny: string;
1032
- paddingRoundSmall: string;
1033
- paddingRoundMedium: string;
1034
- paddingRoundLarge: string;
1035
- iconMarginTiny: string;
1036
- iconMarginSmall: string;
1037
- iconMarginMedium: string;
1038
- iconMarginLarge: string;
1039
- iconSizeTiny: string;
1040
- iconSizeSmall: string;
1041
- iconSizeMedium: string;
1042
- iconSizeLarge: string;
1043
- rippleDuration: string;
1044
- }, any>>;
1045
- readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
1046
- heightTiny: string;
1047
- heightSmall: string;
1048
- heightMedium: string;
1049
- heightLarge: string;
1050
- borderRadiusTiny: string;
1051
- borderRadiusSmall: string;
1052
- borderRadiusMedium: string;
1053
- borderRadiusLarge: string;
1054
- fontSizeTiny: string;
1055
- fontSizeSmall: string;
1056
- fontSizeMedium: string;
1057
- fontSizeLarge: string;
1058
- opacityDisabled: string;
1059
- colorOpacitySecondary: string;
1060
- colorOpacitySecondaryHover: string;
1061
- colorOpacitySecondaryPressed: string;
1062
- colorSecondary: string;
1063
- colorSecondaryHover: string;
1064
- colorSecondaryPressed: string;
1065
- colorTertiary: string;
1066
- colorTertiaryHover: string;
1067
- colorTertiaryPressed: string;
1068
- colorQuaternary: string;
1069
- colorQuaternaryHover: string;
1070
- colorQuaternaryPressed: string;
1071
- color: string;
1072
- colorHover: string;
1073
- colorPressed: string;
1074
- colorFocus: string;
1075
- colorDisabled: string;
1076
- textColor: string;
1077
- textColorTertiary: string;
1078
- textColorHover: string;
1079
- textColorPressed: string;
1080
- textColorFocus: string;
1081
- textColorDisabled: string;
1082
- textColorText: string;
1083
- textColorTextHover: string;
1084
- textColorTextPressed: string;
1085
- textColorTextFocus: string;
1086
- textColorTextDisabled: string;
1087
- textColorGhost: string;
1088
- textColorGhostHover: string;
1089
- textColorGhostPressed: string;
1090
- textColorGhostFocus: string;
1091
- textColorGhostDisabled: string;
1092
- border: string;
1093
- borderHover: string;
1094
- borderPressed: string;
1095
- borderFocus: string;
1096
- borderDisabled: string;
1097
- rippleColor: string;
1098
- colorPrimary: string;
1099
- colorHoverPrimary: string;
1100
- colorPressedPrimary: string;
1101
- colorFocusPrimary: string;
1102
- colorDisabledPrimary: string;
1103
- textColorPrimary: string;
1104
- textColorHoverPrimary: string;
1105
- textColorPressedPrimary: string;
1106
- textColorFocusPrimary: string;
1107
- textColorDisabledPrimary: string;
1108
- textColorTextPrimary: string;
1109
- textColorTextHoverPrimary: string;
1110
- textColorTextPressedPrimary: string;
1111
- textColorTextFocusPrimary: string;
1112
- textColorTextDisabledPrimary: string;
1113
- textColorGhostPrimary: string;
1114
- textColorGhostHoverPrimary: string;
1115
- textColorGhostPressedPrimary: string;
1116
- textColorGhostFocusPrimary: string;
1117
- textColorGhostDisabledPrimary: string;
1118
- borderPrimary: string;
1119
- borderHoverPrimary: string;
1120
- borderPressedPrimary: string;
1121
- borderFocusPrimary: string;
1122
- borderDisabledPrimary: string;
1123
- rippleColorPrimary: string;
1124
- colorInfo: string;
1125
- colorHoverInfo: string;
1126
- colorPressedInfo: string;
1127
- colorFocusInfo: string;
1128
- colorDisabledInfo: string;
1129
- textColorInfo: string;
1130
- textColorHoverInfo: string;
1131
- textColorPressedInfo: string;
1132
- textColorFocusInfo: string;
1133
- textColorDisabledInfo: string;
1134
- textColorTextInfo: string;
1135
- textColorTextHoverInfo: string;
1136
- textColorTextPressedInfo: string;
1137
- textColorTextFocusInfo: string;
1138
- textColorTextDisabledInfo: string;
1139
- textColorGhostInfo: string;
1140
- textColorGhostHoverInfo: string;
1141
- textColorGhostPressedInfo: string;
1142
- textColorGhostFocusInfo: string;
1143
- textColorGhostDisabledInfo: string;
1144
- borderInfo: string;
1145
- borderHoverInfo: string;
1146
- borderPressedInfo: string;
1147
- borderFocusInfo: string;
1148
- borderDisabledInfo: string;
1149
- rippleColorInfo: string;
1150
- colorSuccess: string;
1151
- colorHoverSuccess: string;
1152
- colorPressedSuccess: string;
1153
- colorFocusSuccess: string;
1154
- colorDisabledSuccess: string;
1155
- textColorSuccess: string;
1156
- textColorHoverSuccess: string;
1157
- textColorPressedSuccess: string;
1158
- textColorFocusSuccess: string;
1159
- textColorDisabledSuccess: string;
1160
- textColorTextSuccess: string;
1161
- textColorTextHoverSuccess: string;
1162
- textColorTextPressedSuccess: string;
1163
- textColorTextFocusSuccess: string;
1164
- textColorTextDisabledSuccess: string;
1165
- textColorGhostSuccess: string;
1166
- textColorGhostHoverSuccess: string;
1167
- textColorGhostPressedSuccess: string;
1168
- textColorGhostFocusSuccess: string;
1169
- textColorGhostDisabledSuccess: string;
1170
- borderSuccess: string;
1171
- borderHoverSuccess: string;
1172
- borderPressedSuccess: string;
1173
- borderFocusSuccess: string;
1174
- borderDisabledSuccess: string;
1175
- rippleColorSuccess: string;
1176
- colorWarning: string;
1177
- colorHoverWarning: string;
1178
- colorPressedWarning: string;
1179
- colorFocusWarning: string;
1180
- colorDisabledWarning: string;
1181
- textColorWarning: string;
1182
- textColorHoverWarning: string;
1183
- textColorPressedWarning: string;
1184
- textColorFocusWarning: string;
1185
- textColorDisabledWarning: string;
1186
- textColorTextWarning: string;
1187
- textColorTextHoverWarning: string;
1188
- textColorTextPressedWarning: string;
1189
- textColorTextFocusWarning: string;
1190
- textColorTextDisabledWarning: string;
1191
- textColorGhostWarning: string;
1192
- textColorGhostHoverWarning: string;
1193
- textColorGhostPressedWarning: string;
1194
- textColorGhostFocusWarning: string;
1195
- textColorGhostDisabledWarning: string;
1196
- borderWarning: string;
1197
- borderHoverWarning: string;
1198
- borderPressedWarning: string;
1199
- borderFocusWarning: string;
1200
- borderDisabledWarning: string;
1201
- rippleColorWarning: string;
1202
- colorError: string;
1203
- colorHoverError: string;
1204
- colorPressedError: string;
1205
- colorFocusError: string;
1206
- colorDisabledError: string;
1207
- textColorError: string;
1208
- textColorHoverError: string;
1209
- textColorPressedError: string;
1210
- textColorFocusError: string;
1211
- textColorDisabledError: string;
1212
- textColorTextError: string;
1213
- textColorTextHoverError: string;
1214
- textColorTextPressedError: string;
1215
- textColorTextFocusError: string;
1216
- textColorTextDisabledError: string;
1217
- textColorGhostError: string;
1218
- textColorGhostHoverError: string;
1219
- textColorGhostPressedError: string;
1220
- textColorGhostFocusError: string;
1221
- textColorGhostDisabledError: string;
1222
- borderError: string;
1223
- borderHoverError: string;
1224
- borderPressedError: string;
1225
- borderFocusError: string;
1226
- borderDisabledError: string;
1227
- rippleColorError: string;
1228
- waveOpacity: string;
1229
- fontWeight: string;
1230
- fontWeightStrong: string;
1231
- paddingTiny: string;
1232
- paddingSmall: string;
1233
- paddingMedium: string;
1234
- paddingLarge: string;
1235
- paddingRoundTiny: string;
1236
- paddingRoundSmall: string;
1237
- paddingRoundMedium: string;
1238
- paddingRoundLarge: string;
1239
- iconMarginTiny: string;
1240
- iconMarginSmall: string;
1241
- iconMarginMedium: string;
1242
- iconMarginLarge: string;
1243
- iconSizeTiny: string;
1244
- iconSizeSmall: string;
1245
- iconSizeMedium: string;
1246
- iconSizeLarge: string;
1247
- rippleDuration: string;
1248
- }, any>>>;
1249
- readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
1250
- heightTiny: string;
1251
- heightSmall: string;
1252
- heightMedium: string;
1253
- heightLarge: string;
1254
- borderRadiusTiny: string;
1255
- borderRadiusSmall: string;
1256
- borderRadiusMedium: string;
1257
- borderRadiusLarge: string;
1258
- fontSizeTiny: string;
1259
- fontSizeSmall: string;
1260
- fontSizeMedium: string;
1261
- fontSizeLarge: string;
1262
- opacityDisabled: string;
1263
- colorOpacitySecondary: string;
1264
- colorOpacitySecondaryHover: string;
1265
- colorOpacitySecondaryPressed: string;
1266
- colorSecondary: string;
1267
- colorSecondaryHover: string;
1268
- colorSecondaryPressed: string;
1269
- colorTertiary: string;
1270
- colorTertiaryHover: string;
1271
- colorTertiaryPressed: string;
1272
- colorQuaternary: string;
1273
- colorQuaternaryHover: string;
1274
- colorQuaternaryPressed: string;
1275
- color: string;
1276
- colorHover: string;
1277
- colorPressed: string;
1278
- colorFocus: string;
1279
- colorDisabled: string;
1280
- textColor: string;
1281
- textColorTertiary: string;
1282
- textColorHover: string;
1283
- textColorPressed: string;
1284
- textColorFocus: string;
1285
- textColorDisabled: string;
1286
- textColorText: string;
1287
- textColorTextHover: string;
1288
- textColorTextPressed: string;
1289
- textColorTextFocus: string;
1290
- textColorTextDisabled: string;
1291
- textColorGhost: string;
1292
- textColorGhostHover: string;
1293
- textColorGhostPressed: string;
1294
- textColorGhostFocus: string;
1295
- textColorGhostDisabled: string;
1296
- border: string;
1297
- borderHover: string;
1298
- borderPressed: string;
1299
- borderFocus: string;
1300
- borderDisabled: string;
1301
- rippleColor: string;
1302
- colorPrimary: string;
1303
- colorHoverPrimary: string;
1304
- colorPressedPrimary: string;
1305
- colorFocusPrimary: string;
1306
- colorDisabledPrimary: string;
1307
- textColorPrimary: string;
1308
- textColorHoverPrimary: string;
1309
- textColorPressedPrimary: string;
1310
- textColorFocusPrimary: string;
1311
- textColorDisabledPrimary: string;
1312
- textColorTextPrimary: string;
1313
- textColorTextHoverPrimary: string;
1314
- textColorTextPressedPrimary: string;
1315
- textColorTextFocusPrimary: string;
1316
- textColorTextDisabledPrimary: string;
1317
- textColorGhostPrimary: string;
1318
- textColorGhostHoverPrimary: string;
1319
- textColorGhostPressedPrimary: string;
1320
- textColorGhostFocusPrimary: string;
1321
- textColorGhostDisabledPrimary: string;
1322
- borderPrimary: string;
1323
- borderHoverPrimary: string;
1324
- borderPressedPrimary: string;
1325
- borderFocusPrimary: string;
1326
- borderDisabledPrimary: string;
1327
- rippleColorPrimary: string;
1328
- colorInfo: string;
1329
- colorHoverInfo: string;
1330
- colorPressedInfo: string;
1331
- colorFocusInfo: string;
1332
- colorDisabledInfo: string;
1333
- textColorInfo: string;
1334
- textColorHoverInfo: string;
1335
- textColorPressedInfo: string;
1336
- textColorFocusInfo: string;
1337
- textColorDisabledInfo: string;
1338
- textColorTextInfo: string;
1339
- textColorTextHoverInfo: string;
1340
- textColorTextPressedInfo: string;
1341
- textColorTextFocusInfo: string;
1342
- textColorTextDisabledInfo: string;
1343
- textColorGhostInfo: string;
1344
- textColorGhostHoverInfo: string;
1345
- textColorGhostPressedInfo: string;
1346
- textColorGhostFocusInfo: string;
1347
- textColorGhostDisabledInfo: string;
1348
- borderInfo: string;
1349
- borderHoverInfo: string;
1350
- borderPressedInfo: string;
1351
- borderFocusInfo: string;
1352
- borderDisabledInfo: string;
1353
- rippleColorInfo: string;
1354
- colorSuccess: string;
1355
- colorHoverSuccess: string;
1356
- colorPressedSuccess: string;
1357
- colorFocusSuccess: string;
1358
- colorDisabledSuccess: string;
1359
- textColorSuccess: string;
1360
- textColorHoverSuccess: string;
1361
- textColorPressedSuccess: string;
1362
- textColorFocusSuccess: string;
1363
- textColorDisabledSuccess: string;
1364
- textColorTextSuccess: string;
1365
- textColorTextHoverSuccess: string;
1366
- textColorTextPressedSuccess: string;
1367
- textColorTextFocusSuccess: string;
1368
- textColorTextDisabledSuccess: string;
1369
- textColorGhostSuccess: string;
1370
- textColorGhostHoverSuccess: string;
1371
- textColorGhostPressedSuccess: string;
1372
- textColorGhostFocusSuccess: string;
1373
- textColorGhostDisabledSuccess: string;
1374
- borderSuccess: string;
1375
- borderHoverSuccess: string;
1376
- borderPressedSuccess: string;
1377
- borderFocusSuccess: string;
1378
- borderDisabledSuccess: string;
1379
- rippleColorSuccess: string;
1380
- colorWarning: string;
1381
- colorHoverWarning: string;
1382
- colorPressedWarning: string;
1383
- colorFocusWarning: string;
1384
- colorDisabledWarning: string;
1385
- textColorWarning: string;
1386
- textColorHoverWarning: string;
1387
- textColorPressedWarning: string;
1388
- textColorFocusWarning: string;
1389
- textColorDisabledWarning: string;
1390
- textColorTextWarning: string;
1391
- textColorTextHoverWarning: string;
1392
- textColorTextPressedWarning: string;
1393
- textColorTextFocusWarning: string;
1394
- textColorTextDisabledWarning: string;
1395
- textColorGhostWarning: string;
1396
- textColorGhostHoverWarning: string;
1397
- textColorGhostPressedWarning: string;
1398
- textColorGhostFocusWarning: string;
1399
- textColorGhostDisabledWarning: string;
1400
- borderWarning: string;
1401
- borderHoverWarning: string;
1402
- borderPressedWarning: string;
1403
- borderFocusWarning: string;
1404
- borderDisabledWarning: string;
1405
- rippleColorWarning: string;
1406
- colorError: string;
1407
- colorHoverError: string;
1408
- colorPressedError: string;
1409
- colorFocusError: string;
1410
- colorDisabledError: string;
1411
- textColorError: string;
1412
- textColorHoverError: string;
1413
- textColorPressedError: string;
1414
- textColorFocusError: string;
1415
- textColorDisabledError: string;
1416
- textColorTextError: string;
1417
- textColorTextHoverError: string;
1418
- textColorTextPressedError: string;
1419
- textColorTextFocusError: string;
1420
- textColorTextDisabledError: string;
1421
- textColorGhostError: string;
1422
- textColorGhostHoverError: string;
1423
- textColorGhostPressedError: string;
1424
- textColorGhostFocusError: string;
1425
- textColorGhostDisabledError: string;
1426
- borderError: string;
1427
- borderHoverError: string;
1428
- borderPressedError: string;
1429
- borderFocusError: string;
1430
- borderDisabledError: string;
1431
- rippleColorError: string;
1432
- waveOpacity: string;
1433
- fontWeight: string;
1434
- fontWeightStrong: string;
1435
- paddingTiny: string;
1436
- paddingSmall: string;
1437
- paddingMedium: string;
1438
- paddingLarge: string;
1439
- paddingRoundTiny: string;
1440
- paddingRoundSmall: string;
1441
- paddingRoundMedium: string;
1442
- paddingRoundLarge: string;
1443
- iconMarginTiny: string;
1444
- iconMarginSmall: string;
1445
- iconMarginMedium: string;
1446
- iconMarginLarge: string;
1447
- iconSizeTiny: string;
1448
- iconSizeSmall: string;
1449
- iconSizeMedium: string;
1450
- iconSizeLarge: string;
1451
- rippleDuration: string;
1452
- }, any>>>;
1453
- }>>, {
1454
- readonly type: import("naive-ui/es/button/src/interface").Type;
1455
- readonly tag: keyof HTMLElementTagNameMap;
1456
- readonly block: boolean;
1457
- readonly round: boolean;
1458
- readonly dashed: boolean;
1459
- readonly text: boolean;
1460
- readonly circle: boolean;
1461
- readonly disabled: boolean;
1462
- readonly focusable: boolean;
1463
- readonly strong: boolean;
1464
- readonly loading: boolean;
1465
- readonly bordered: boolean;
1466
- readonly tertiary: boolean;
1467
- readonly ghost: boolean;
1468
- readonly keyboard: boolean;
1469
- readonly secondary: boolean;
1470
- readonly quaternary: boolean;
1471
- readonly iconPlacement: "left" | "right";
1472
- readonly attrType: "button" | "reset" | "submit";
1473
- readonly nativeFocusBehavior: boolean;
1474
- }>;
58
+ onInputKeyDown: (event: KeyboardEvent) => void;
59
+ emit: (event: "shortcutChange", ...args: any[]) => void;
60
+ onInputKeyUp: (event: KeyboardEvent) => Promise<void>;
1475
61
  NInput: import("vue").DefineComponent<{
1476
62
  bordered: {
1477
63
  type: import("vue").PropType<boolean | undefined>;
@@ -2320,1938 +906,24 @@ declare const _default: import("vue").DefineComponent<{
2320
906
  internalLoadingBeforeSuffix: boolean;
2321
907
  showPasswordToggle: boolean;
2322
908
  }>;
2323
- NPopconfirm: import("vue").DefineComponent<{
2324
- positiveText: import("vue").PropType<string | null>;
2325
- negativeText: import("vue").PropType<string | null>;
2326
- showIcon: {
2327
- type: BooleanConstructor;
2328
- default: boolean;
2329
- };
2330
- trigger: {
2331
- type: import("vue").PropType<import("naive-ui").PopoverTrigger>;
2332
- default: string;
2333
- };
2334
- positiveButtonProps: import("vue").PropType<import("naive-ui").ButtonProps>;
2335
- negativeButtonProps: import("vue").PropType<import("naive-ui").ButtonProps>;
2336
- onPositiveClick: import("vue").PropType<(e: MouseEvent) => any>;
2337
- onNegativeClick: import("vue").PropType<(e: MouseEvent) => any>;
2338
- show: {
2339
- type: import("vue").PropType<boolean | undefined>;
2340
- default: undefined;
2341
- };
2342
- defaultShow: BooleanConstructor;
2343
- showArrow: {
2344
- type: BooleanConstructor;
2345
- default: boolean;
2346
- };
2347
- delay: {
2348
- type: NumberConstructor;
2349
- default: number;
2350
- };
2351
- duration: {
2352
- type: NumberConstructor;
2353
- default: number;
2354
- };
2355
- raw: BooleanConstructor;
2356
- placement: {
2357
- type: import("vue").PropType<import("naive-ui").PopoverPlacement>;
2358
- default: string;
2359
- };
2360
- x: NumberConstructor;
2361
- y: NumberConstructor;
2362
- arrowPointToCenter: BooleanConstructor;
2363
- disabled: BooleanConstructor;
2364
- getDisabled: import("vue").PropType<() => boolean>;
2365
- displayDirective: {
2366
- type: import("vue").PropType<"show" | "if">;
2367
- default: string;
2368
- };
2369
- arrowStyle: import("vue").PropType<string | import("vue").CSSProperties>;
2370
- flip: {
2371
- type: BooleanConstructor;
2372
- default: boolean;
2373
- };
2374
- animated: {
2375
- type: BooleanConstructor;
2376
- default: boolean;
2377
- };
2378
- width: {
2379
- type: import("vue").PropType<number | "trigger">;
2380
- default: undefined;
2381
- };
2382
- overlap: BooleanConstructor;
2383
- keepAliveOnHover: {
2384
- type: BooleanConstructor;
2385
- default: boolean;
2386
- };
2387
- zIndex: NumberConstructor;
2388
- to: {
2389
- type: import("vue").PropType<string | boolean | HTMLElement>;
2390
- default: undefined;
2391
- };
2392
- scrollable: BooleanConstructor;
2393
- contentStyle: import("vue").PropType<string | import("vue").CSSProperties>;
2394
- headerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
2395
- footerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
2396
- onClickoutside: import("vue").PropType<(e: MouseEvent) => void>;
2397
- 'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
2398
- onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
2399
- internalDeactivateImmediately: BooleanConstructor;
2400
- internalSyncTargetWithParent: BooleanConstructor;
2401
- internalInheritedEventHandlers: {
2402
- type: import("vue").PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
2403
- default: () => never[];
2404
- };
2405
- internalTrapFocus: BooleanConstructor;
2406
- internalExtraClass: {
2407
- type: import("vue").PropType<string[]>;
2408
- default: () => never[];
2409
- };
2410
- onShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
2411
- onHide: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
2412
- arrow: {
2413
- type: import("vue").PropType<boolean | undefined>;
2414
- default: undefined;
2415
- };
2416
- minWidth: NumberConstructor;
2417
- maxWidth: NumberConstructor;
2418
- theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Popconfirm", {
2419
- fontSize: string;
2420
- iconColor: string;
2421
- iconSize: string;
2422
- }, {
2423
- Button: import("naive-ui/es/_mixins").Theme<"Button", {
2424
- heightTiny: string;
2425
- heightSmall: string;
2426
- heightMedium: string;
2427
- heightLarge: string;
2428
- borderRadiusTiny: string;
2429
- borderRadiusSmall: string;
2430
- borderRadiusMedium: string;
2431
- borderRadiusLarge: string;
2432
- fontSizeTiny: string;
2433
- fontSizeSmall: string;
2434
- fontSizeMedium: string;
2435
- fontSizeLarge: string;
2436
- opacityDisabled: string;
2437
- colorOpacitySecondary: string;
2438
- colorOpacitySecondaryHover: string;
2439
- colorOpacitySecondaryPressed: string;
2440
- colorSecondary: string;
2441
- colorSecondaryHover: string;
2442
- colorSecondaryPressed: string;
2443
- colorTertiary: string;
2444
- colorTertiaryHover: string;
2445
- colorTertiaryPressed: string;
2446
- colorQuaternary: string;
2447
- colorQuaternaryHover: string;
2448
- colorQuaternaryPressed: string;
2449
- color: string;
2450
- colorHover: string;
2451
- colorPressed: string;
2452
- colorFocus: string;
2453
- colorDisabled: string;
2454
- textColor: string;
2455
- textColorTertiary: string;
2456
- textColorHover: string;
2457
- textColorPressed: string;
2458
- textColorFocus: string;
2459
- textColorDisabled: string;
2460
- textColorText: string;
2461
- textColorTextHover: string;
2462
- textColorTextPressed: string;
2463
- textColorTextFocus: string;
2464
- textColorTextDisabled: string;
2465
- textColorGhost: string;
2466
- textColorGhostHover: string;
2467
- textColorGhostPressed: string;
2468
- textColorGhostFocus: string;
2469
- textColorGhostDisabled: string;
2470
- border: string;
2471
- borderHover: string;
2472
- borderPressed: string;
2473
- borderFocus: string;
2474
- borderDisabled: string;
2475
- rippleColor: string;
2476
- colorPrimary: string;
2477
- colorHoverPrimary: string;
2478
- colorPressedPrimary: string;
2479
- colorFocusPrimary: string;
2480
- colorDisabledPrimary: string;
2481
- textColorPrimary: string;
2482
- textColorHoverPrimary: string;
2483
- textColorPressedPrimary: string;
2484
- textColorFocusPrimary: string;
2485
- textColorDisabledPrimary: string;
2486
- textColorTextPrimary: string;
2487
- textColorTextHoverPrimary: string;
2488
- textColorTextPressedPrimary: string;
2489
- textColorTextFocusPrimary: string;
2490
- textColorTextDisabledPrimary: string;
2491
- textColorGhostPrimary: string;
2492
- textColorGhostHoverPrimary: string;
2493
- textColorGhostPressedPrimary: string;
2494
- textColorGhostFocusPrimary: string;
2495
- textColorGhostDisabledPrimary: string;
2496
- borderPrimary: string;
2497
- borderHoverPrimary: string;
2498
- borderPressedPrimary: string;
2499
- borderFocusPrimary: string;
2500
- borderDisabledPrimary: string;
2501
- rippleColorPrimary: string;
2502
- colorInfo: string;
2503
- colorHoverInfo: string;
2504
- colorPressedInfo: string;
2505
- colorFocusInfo: string;
2506
- colorDisabledInfo: string;
2507
- textColorInfo: string;
2508
- textColorHoverInfo: string;
2509
- textColorPressedInfo: string;
2510
- textColorFocusInfo: string;
2511
- textColorDisabledInfo: string;
2512
- textColorTextInfo: string;
2513
- textColorTextHoverInfo: string;
2514
- textColorTextPressedInfo: string;
2515
- textColorTextFocusInfo: string;
2516
- textColorTextDisabledInfo: string;
2517
- textColorGhostInfo: string;
2518
- textColorGhostHoverInfo: string;
2519
- textColorGhostPressedInfo: string;
2520
- textColorGhostFocusInfo: string;
2521
- textColorGhostDisabledInfo: string;
2522
- borderInfo: string;
2523
- borderHoverInfo: string;
2524
- borderPressedInfo: string;
2525
- borderFocusInfo: string;
2526
- borderDisabledInfo: string;
2527
- rippleColorInfo: string;
2528
- colorSuccess: string;
2529
- colorHoverSuccess: string;
2530
- colorPressedSuccess: string;
2531
- colorFocusSuccess: string;
2532
- colorDisabledSuccess: string;
2533
- textColorSuccess: string;
2534
- textColorHoverSuccess: string;
2535
- textColorPressedSuccess: string;
2536
- textColorFocusSuccess: string;
2537
- textColorDisabledSuccess: string;
2538
- textColorTextSuccess: string;
2539
- textColorTextHoverSuccess: string;
2540
- textColorTextPressedSuccess: string;
2541
- textColorTextFocusSuccess: string;
2542
- textColorTextDisabledSuccess: string;
2543
- textColorGhostSuccess: string;
2544
- textColorGhostHoverSuccess: string;
2545
- textColorGhostPressedSuccess: string;
2546
- textColorGhostFocusSuccess: string;
2547
- textColorGhostDisabledSuccess: string;
2548
- borderSuccess: string;
2549
- borderHoverSuccess: string;
2550
- borderPressedSuccess: string;
2551
- borderFocusSuccess: string;
2552
- borderDisabledSuccess: string;
2553
- rippleColorSuccess: string;
2554
- colorWarning: string;
2555
- colorHoverWarning: string;
2556
- colorPressedWarning: string;
2557
- colorFocusWarning: string;
2558
- colorDisabledWarning: string;
2559
- textColorWarning: string;
2560
- textColorHoverWarning: string;
2561
- textColorPressedWarning: string;
2562
- textColorFocusWarning: string;
2563
- textColorDisabledWarning: string;
2564
- textColorTextWarning: string;
2565
- textColorTextHoverWarning: string;
2566
- textColorTextPressedWarning: string;
2567
- textColorTextFocusWarning: string;
2568
- textColorTextDisabledWarning: string;
2569
- textColorGhostWarning: string;
2570
- textColorGhostHoverWarning: string;
2571
- textColorGhostPressedWarning: string;
2572
- textColorGhostFocusWarning: string;
2573
- textColorGhostDisabledWarning: string;
2574
- borderWarning: string;
2575
- borderHoverWarning: string;
2576
- borderPressedWarning: string;
2577
- borderFocusWarning: string;
2578
- borderDisabledWarning: string;
2579
- rippleColorWarning: string;
2580
- colorError: string;
2581
- colorHoverError: string;
2582
- colorPressedError: string;
2583
- colorFocusError: string;
2584
- colorDisabledError: string;
2585
- textColorError: string;
2586
- textColorHoverError: string;
2587
- textColorPressedError: string;
2588
- textColorFocusError: string;
2589
- textColorDisabledError: string;
2590
- textColorTextError: string;
2591
- textColorTextHoverError: string;
2592
- textColorTextPressedError: string;
2593
- textColorTextFocusError: string;
2594
- textColorTextDisabledError: string;
2595
- textColorGhostError: string;
2596
- textColorGhostHoverError: string;
2597
- textColorGhostPressedError: string;
2598
- textColorGhostFocusError: string;
2599
- textColorGhostDisabledError: string;
2600
- borderError: string;
2601
- borderHoverError: string;
2602
- borderPressedError: string;
2603
- borderFocusError: string;
2604
- borderDisabledError: string;
2605
- rippleColorError: string;
2606
- waveOpacity: string;
2607
- fontWeight: string;
2608
- fontWeightStrong: string;
2609
- paddingTiny: string;
2610
- paddingSmall: string;
2611
- paddingMedium: string;
2612
- paddingLarge: string;
2613
- paddingRoundTiny: string;
2614
- paddingRoundSmall: string;
2615
- paddingRoundMedium: string;
2616
- paddingRoundLarge: string;
2617
- iconMarginTiny: string;
2618
- iconMarginSmall: string;
2619
- iconMarginMedium: string;
2620
- iconMarginLarge: string;
2621
- iconSizeTiny: string;
2622
- iconSizeSmall: string;
2623
- iconSizeMedium: string;
2624
- iconSizeLarge: string;
2625
- rippleDuration: string;
2626
- }, any>;
2627
- Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2628
- fontSize: string;
2629
- borderRadius: string;
2630
- color: string;
2631
- dividerColor: string;
2632
- textColor: string;
2633
- boxShadow: string;
2634
- space: string;
2635
- spaceArrow: string;
2636
- arrowOffset: string;
2637
- arrowOffsetVertical: string;
2638
- arrowHeight: string;
2639
- padding: string;
2640
- }, any>;
2641
- }>>;
2642
- themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Popconfirm", {
2643
- fontSize: string;
2644
- iconColor: string;
2645
- iconSize: string;
2646
- }, {
2647
- Button: import("naive-ui/es/_mixins").Theme<"Button", {
2648
- heightTiny: string;
2649
- heightSmall: string;
2650
- heightMedium: string;
2651
- heightLarge: string;
2652
- borderRadiusTiny: string;
2653
- borderRadiusSmall: string;
2654
- borderRadiusMedium: string;
2655
- borderRadiusLarge: string;
2656
- fontSizeTiny: string;
2657
- fontSizeSmall: string;
2658
- fontSizeMedium: string;
2659
- fontSizeLarge: string;
2660
- opacityDisabled: string;
2661
- colorOpacitySecondary: string;
2662
- colorOpacitySecondaryHover: string;
2663
- colorOpacitySecondaryPressed: string;
2664
- colorSecondary: string;
2665
- colorSecondaryHover: string;
2666
- colorSecondaryPressed: string;
2667
- colorTertiary: string;
2668
- colorTertiaryHover: string;
2669
- colorTertiaryPressed: string;
2670
- colorQuaternary: string;
2671
- colorQuaternaryHover: string;
2672
- colorQuaternaryPressed: string;
2673
- color: string;
2674
- colorHover: string;
2675
- colorPressed: string;
2676
- colorFocus: string;
2677
- colorDisabled: string;
2678
- textColor: string;
2679
- textColorTertiary: string;
2680
- textColorHover: string;
2681
- textColorPressed: string;
2682
- textColorFocus: string;
2683
- textColorDisabled: string;
2684
- textColorText: string;
2685
- textColorTextHover: string;
2686
- textColorTextPressed: string;
2687
- textColorTextFocus: string;
2688
- textColorTextDisabled: string;
2689
- textColorGhost: string;
2690
- textColorGhostHover: string;
2691
- textColorGhostPressed: string;
2692
- textColorGhostFocus: string;
2693
- textColorGhostDisabled: string;
2694
- border: string;
2695
- borderHover: string;
2696
- borderPressed: string;
2697
- borderFocus: string;
2698
- borderDisabled: string;
2699
- rippleColor: string;
2700
- colorPrimary: string;
2701
- colorHoverPrimary: string;
2702
- colorPressedPrimary: string;
2703
- colorFocusPrimary: string;
2704
- colorDisabledPrimary: string;
2705
- textColorPrimary: string;
2706
- textColorHoverPrimary: string;
2707
- textColorPressedPrimary: string;
2708
- textColorFocusPrimary: string;
2709
- textColorDisabledPrimary: string;
2710
- textColorTextPrimary: string;
2711
- textColorTextHoverPrimary: string;
2712
- textColorTextPressedPrimary: string;
2713
- textColorTextFocusPrimary: string;
2714
- textColorTextDisabledPrimary: string;
2715
- textColorGhostPrimary: string;
2716
- textColorGhostHoverPrimary: string;
2717
- textColorGhostPressedPrimary: string;
2718
- textColorGhostFocusPrimary: string;
2719
- textColorGhostDisabledPrimary: string;
2720
- borderPrimary: string;
2721
- borderHoverPrimary: string;
2722
- borderPressedPrimary: string;
2723
- borderFocusPrimary: string;
2724
- borderDisabledPrimary: string;
2725
- rippleColorPrimary: string;
2726
- colorInfo: string;
2727
- colorHoverInfo: string;
2728
- colorPressedInfo: string;
2729
- colorFocusInfo: string;
2730
- colorDisabledInfo: string;
2731
- textColorInfo: string;
2732
- textColorHoverInfo: string;
2733
- textColorPressedInfo: string;
2734
- textColorFocusInfo: string;
2735
- textColorDisabledInfo: string;
2736
- textColorTextInfo: string;
2737
- textColorTextHoverInfo: string;
2738
- textColorTextPressedInfo: string;
2739
- textColorTextFocusInfo: string;
2740
- textColorTextDisabledInfo: string;
2741
- textColorGhostInfo: string;
2742
- textColorGhostHoverInfo: string;
2743
- textColorGhostPressedInfo: string;
2744
- textColorGhostFocusInfo: string;
2745
- textColorGhostDisabledInfo: string;
2746
- borderInfo: string;
2747
- borderHoverInfo: string;
2748
- borderPressedInfo: string;
2749
- borderFocusInfo: string;
2750
- borderDisabledInfo: string;
2751
- rippleColorInfo: string;
2752
- colorSuccess: string;
2753
- colorHoverSuccess: string;
2754
- colorPressedSuccess: string;
2755
- colorFocusSuccess: string;
2756
- colorDisabledSuccess: string;
2757
- textColorSuccess: string;
2758
- textColorHoverSuccess: string;
2759
- textColorPressedSuccess: string;
2760
- textColorFocusSuccess: string;
2761
- textColorDisabledSuccess: string;
2762
- textColorTextSuccess: string;
2763
- textColorTextHoverSuccess: string;
2764
- textColorTextPressedSuccess: string;
2765
- textColorTextFocusSuccess: string;
2766
- textColorTextDisabledSuccess: string;
2767
- textColorGhostSuccess: string;
2768
- textColorGhostHoverSuccess: string;
2769
- textColorGhostPressedSuccess: string;
2770
- textColorGhostFocusSuccess: string;
2771
- textColorGhostDisabledSuccess: string;
2772
- borderSuccess: string;
2773
- borderHoverSuccess: string;
2774
- borderPressedSuccess: string;
2775
- borderFocusSuccess: string;
2776
- borderDisabledSuccess: string;
2777
- rippleColorSuccess: string;
2778
- colorWarning: string;
2779
- colorHoverWarning: string;
2780
- colorPressedWarning: string;
2781
- colorFocusWarning: string;
2782
- colorDisabledWarning: string;
2783
- textColorWarning: string;
2784
- textColorHoverWarning: string;
2785
- textColorPressedWarning: string;
2786
- textColorFocusWarning: string;
2787
- textColorDisabledWarning: string;
2788
- textColorTextWarning: string;
2789
- textColorTextHoverWarning: string;
2790
- textColorTextPressedWarning: string;
2791
- textColorTextFocusWarning: string;
2792
- textColorTextDisabledWarning: string;
2793
- textColorGhostWarning: string;
2794
- textColorGhostHoverWarning: string;
2795
- textColorGhostPressedWarning: string;
2796
- textColorGhostFocusWarning: string;
2797
- textColorGhostDisabledWarning: string;
2798
- borderWarning: string;
2799
- borderHoverWarning: string;
2800
- borderPressedWarning: string;
2801
- borderFocusWarning: string;
2802
- borderDisabledWarning: string;
2803
- rippleColorWarning: string;
2804
- colorError: string;
2805
- colorHoverError: string;
2806
- colorPressedError: string;
2807
- colorFocusError: string;
2808
- colorDisabledError: string;
2809
- textColorError: string;
2810
- textColorHoverError: string;
2811
- textColorPressedError: string;
2812
- textColorFocusError: string;
2813
- textColorDisabledError: string;
2814
- textColorTextError: string;
2815
- textColorTextHoverError: string;
2816
- textColorTextPressedError: string;
2817
- textColorTextFocusError: string;
2818
- textColorTextDisabledError: string;
2819
- textColorGhostError: string;
2820
- textColorGhostHoverError: string;
2821
- textColorGhostPressedError: string;
2822
- textColorGhostFocusError: string;
2823
- textColorGhostDisabledError: string;
2824
- borderError: string;
2825
- borderHoverError: string;
2826
- borderPressedError: string;
2827
- borderFocusError: string;
2828
- borderDisabledError: string;
2829
- rippleColorError: string;
2830
- waveOpacity: string;
2831
- fontWeight: string;
2832
- fontWeightStrong: string;
2833
- paddingTiny: string;
2834
- paddingSmall: string;
2835
- paddingMedium: string;
2836
- paddingLarge: string;
2837
- paddingRoundTiny: string;
2838
- paddingRoundSmall: string;
2839
- paddingRoundMedium: string;
2840
- paddingRoundLarge: string;
2841
- iconMarginTiny: string;
2842
- iconMarginSmall: string;
2843
- iconMarginMedium: string;
2844
- iconMarginLarge: string;
2845
- iconSizeTiny: string;
2846
- iconSizeSmall: string;
2847
- iconSizeMedium: string;
2848
- iconSizeLarge: string;
2849
- rippleDuration: string;
2850
- }, any>;
2851
- Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2852
- fontSize: string;
2853
- borderRadius: string;
2854
- color: string;
2855
- dividerColor: string;
2856
- textColor: string;
2857
- boxShadow: string;
2858
- space: string;
2859
- spaceArrow: string;
2860
- arrowOffset: string;
2861
- arrowOffsetVertical: string;
2862
- arrowHeight: string;
2863
- padding: string;
2864
- }, any>;
2865
- }>>>;
2866
- builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Popconfirm", {
2867
- fontSize: string;
2868
- iconColor: string;
2869
- iconSize: string;
2870
- }, {
2871
- Button: import("naive-ui/es/_mixins").Theme<"Button", {
2872
- heightTiny: string;
2873
- heightSmall: string;
2874
- heightMedium: string;
2875
- heightLarge: string;
2876
- borderRadiusTiny: string;
2877
- borderRadiusSmall: string;
2878
- borderRadiusMedium: string;
2879
- borderRadiusLarge: string;
2880
- fontSizeTiny: string;
2881
- fontSizeSmall: string;
2882
- fontSizeMedium: string;
2883
- fontSizeLarge: string;
2884
- opacityDisabled: string;
2885
- colorOpacitySecondary: string;
2886
- colorOpacitySecondaryHover: string;
2887
- colorOpacitySecondaryPressed: string;
2888
- colorSecondary: string;
2889
- colorSecondaryHover: string;
2890
- colorSecondaryPressed: string;
2891
- colorTertiary: string;
2892
- colorTertiaryHover: string;
2893
- colorTertiaryPressed: string;
2894
- colorQuaternary: string;
2895
- colorQuaternaryHover: string;
2896
- colorQuaternaryPressed: string;
2897
- color: string;
2898
- colorHover: string;
2899
- colorPressed: string;
2900
- colorFocus: string;
2901
- colorDisabled: string;
2902
- textColor: string;
2903
- textColorTertiary: string;
2904
- textColorHover: string;
2905
- textColorPressed: string;
2906
- textColorFocus: string;
2907
- textColorDisabled: string;
2908
- textColorText: string;
2909
- textColorTextHover: string;
2910
- textColorTextPressed: string;
2911
- textColorTextFocus: string;
2912
- textColorTextDisabled: string;
2913
- textColorGhost: string;
2914
- textColorGhostHover: string;
2915
- textColorGhostPressed: string;
2916
- textColorGhostFocus: string;
2917
- textColorGhostDisabled: string;
2918
- border: string;
2919
- borderHover: string;
2920
- borderPressed: string;
2921
- borderFocus: string;
2922
- borderDisabled: string;
2923
- rippleColor: string;
2924
- colorPrimary: string;
2925
- colorHoverPrimary: string;
2926
- colorPressedPrimary: string;
2927
- colorFocusPrimary: string;
2928
- colorDisabledPrimary: string;
2929
- textColorPrimary: string;
2930
- textColorHoverPrimary: string;
2931
- textColorPressedPrimary: string;
2932
- textColorFocusPrimary: string;
2933
- textColorDisabledPrimary: string;
2934
- textColorTextPrimary: string;
2935
- textColorTextHoverPrimary: string;
2936
- textColorTextPressedPrimary: string;
2937
- textColorTextFocusPrimary: string;
2938
- textColorTextDisabledPrimary: string;
2939
- textColorGhostPrimary: string;
2940
- textColorGhostHoverPrimary: string;
2941
- textColorGhostPressedPrimary: string;
2942
- textColorGhostFocusPrimary: string;
2943
- textColorGhostDisabledPrimary: string;
2944
- borderPrimary: string;
2945
- borderHoverPrimary: string;
2946
- borderPressedPrimary: string;
2947
- borderFocusPrimary: string;
2948
- borderDisabledPrimary: string;
2949
- rippleColorPrimary: string;
2950
- colorInfo: string;
2951
- colorHoverInfo: string;
2952
- colorPressedInfo: string;
2953
- colorFocusInfo: string;
2954
- colorDisabledInfo: string;
2955
- textColorInfo: string;
2956
- textColorHoverInfo: string;
2957
- textColorPressedInfo: string;
2958
- textColorFocusInfo: string;
2959
- textColorDisabledInfo: string;
2960
- textColorTextInfo: string;
2961
- textColorTextHoverInfo: string;
2962
- textColorTextPressedInfo: string;
2963
- textColorTextFocusInfo: string;
2964
- textColorTextDisabledInfo: string;
2965
- textColorGhostInfo: string;
2966
- textColorGhostHoverInfo: string;
2967
- textColorGhostPressedInfo: string;
2968
- textColorGhostFocusInfo: string;
2969
- textColorGhostDisabledInfo: string;
2970
- borderInfo: string;
2971
- borderHoverInfo: string;
2972
- borderPressedInfo: string;
2973
- borderFocusInfo: string;
2974
- borderDisabledInfo: string;
2975
- rippleColorInfo: string;
2976
- colorSuccess: string;
2977
- colorHoverSuccess: string;
2978
- colorPressedSuccess: string;
2979
- colorFocusSuccess: string;
2980
- colorDisabledSuccess: string;
2981
- textColorSuccess: string;
2982
- textColorHoverSuccess: string;
2983
- textColorPressedSuccess: string;
2984
- textColorFocusSuccess: string;
2985
- textColorDisabledSuccess: string;
2986
- textColorTextSuccess: string;
2987
- textColorTextHoverSuccess: string;
2988
- textColorTextPressedSuccess: string;
2989
- textColorTextFocusSuccess: string;
2990
- textColorTextDisabledSuccess: string;
2991
- textColorGhostSuccess: string;
2992
- textColorGhostHoverSuccess: string;
2993
- textColorGhostPressedSuccess: string;
2994
- textColorGhostFocusSuccess: string;
2995
- textColorGhostDisabledSuccess: string;
2996
- borderSuccess: string;
2997
- borderHoverSuccess: string;
2998
- borderPressedSuccess: string;
2999
- borderFocusSuccess: string;
3000
- borderDisabledSuccess: string;
3001
- rippleColorSuccess: string;
3002
- colorWarning: string;
3003
- colorHoverWarning: string;
3004
- colorPressedWarning: string;
3005
- colorFocusWarning: string;
3006
- colorDisabledWarning: string;
3007
- textColorWarning: string;
3008
- textColorHoverWarning: string;
3009
- textColorPressedWarning: string;
3010
- textColorFocusWarning: string;
3011
- textColorDisabledWarning: string;
3012
- textColorTextWarning: string;
3013
- textColorTextHoverWarning: string;
3014
- textColorTextPressedWarning: string;
3015
- textColorTextFocusWarning: string;
3016
- textColorTextDisabledWarning: string;
3017
- textColorGhostWarning: string;
3018
- textColorGhostHoverWarning: string;
3019
- textColorGhostPressedWarning: string;
3020
- textColorGhostFocusWarning: string;
3021
- textColorGhostDisabledWarning: string;
3022
- borderWarning: string;
3023
- borderHoverWarning: string;
3024
- borderPressedWarning: string;
3025
- borderFocusWarning: string;
3026
- borderDisabledWarning: string;
3027
- rippleColorWarning: string;
3028
- colorError: string;
3029
- colorHoverError: string;
3030
- colorPressedError: string;
3031
- colorFocusError: string;
3032
- colorDisabledError: string;
3033
- textColorError: string;
3034
- textColorHoverError: string;
3035
- textColorPressedError: string;
3036
- textColorFocusError: string;
3037
- textColorDisabledError: string;
3038
- textColorTextError: string;
3039
- textColorTextHoverError: string;
3040
- textColorTextPressedError: string;
3041
- textColorTextFocusError: string;
3042
- textColorTextDisabledError: string;
3043
- textColorGhostError: string;
3044
- textColorGhostHoverError: string;
3045
- textColorGhostPressedError: string;
3046
- textColorGhostFocusError: string;
3047
- textColorGhostDisabledError: string;
3048
- borderError: string;
3049
- borderHoverError: string;
3050
- borderPressedError: string;
3051
- borderFocusError: string;
3052
- borderDisabledError: string;
3053
- rippleColorError: string;
3054
- waveOpacity: string;
3055
- fontWeight: string;
3056
- fontWeightStrong: string;
3057
- paddingTiny: string;
3058
- paddingSmall: string;
3059
- paddingMedium: string;
3060
- paddingLarge: string;
3061
- paddingRoundTiny: string;
3062
- paddingRoundSmall: string;
3063
- paddingRoundMedium: string;
3064
- paddingRoundLarge: string;
3065
- iconMarginTiny: string;
3066
- iconMarginSmall: string;
3067
- iconMarginMedium: string;
3068
- iconMarginLarge: string;
3069
- iconSizeTiny: string;
3070
- iconSizeSmall: string;
3071
- iconSizeMedium: string;
3072
- iconSizeLarge: string;
3073
- rippleDuration: string;
3074
- }, any>;
3075
- Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
3076
- fontSize: string;
3077
- borderRadius: string;
3078
- color: string;
3079
- dividerColor: string;
3080
- textColor: string;
3081
- boxShadow: string;
3082
- space: string;
3083
- spaceArrow: string;
3084
- arrowOffset: string;
3085
- arrowOffsetVertical: string;
3086
- arrowHeight: string;
3087
- padding: string;
3088
- }, any>;
3089
- }>>>;
3090
- }, {
3091
- mergedTheme: import("vue").ComputedRef<{
3092
- common: {
3093
- baseColor: string;
3094
- primaryColor: string;
3095
- primaryColorHover: string;
3096
- primaryColorPressed: string;
3097
- primaryColorSuppl: string;
3098
- infoColor: string;
3099
- infoColorHover: string;
3100
- infoColorPressed: string;
3101
- infoColorSuppl: string;
3102
- successColor: string;
3103
- successColorHover: string;
3104
- successColorPressed: string;
3105
- successColorSuppl: string;
3106
- warningColor: string;
3107
- warningColorHover: string;
3108
- warningColorPressed: string;
3109
- warningColorSuppl: string;
3110
- errorColor: string;
3111
- errorColorHover: string;
3112
- errorColorPressed: string;
3113
- errorColorSuppl: string;
3114
- textColorBase: string;
3115
- textColor1: string;
3116
- textColor2: string;
3117
- textColor3: string;
3118
- textColorDisabled: string;
3119
- placeholderColor: string;
3120
- placeholderColorDisabled: string;
3121
- iconColor: string;
3122
- iconColorHover: string;
3123
- iconColorPressed: string;
3124
- iconColorDisabled: string;
3125
- opacity1: string;
3126
- opacity2: string;
3127
- opacity3: string;
3128
- opacity4: string;
3129
- opacity5: string;
3130
- dividerColor: string;
3131
- borderColor: string;
3132
- closeIconColor: string;
3133
- closeIconColorHover: string;
3134
- closeIconColorPressed: string;
3135
- closeColorHover: string;
3136
- closeColorPressed: string;
3137
- clearColor: string;
3138
- clearColorHover: string;
3139
- clearColorPressed: string;
3140
- scrollbarColor: string;
3141
- scrollbarColorHover: string;
3142
- scrollbarWidth: string;
3143
- scrollbarHeight: string;
3144
- scrollbarBorderRadius: string;
3145
- progressRailColor: string;
3146
- railColor: string;
3147
- popoverColor: string;
3148
- tableColor: string;
3149
- cardColor: string;
3150
- modalColor: string;
3151
- bodyColor: string;
3152
- tagColor: string;
3153
- avatarColor: string;
3154
- invertedColor: string;
3155
- inputColor: string;
3156
- codeColor: string;
3157
- tabColor: string;
3158
- actionColor: string;
3159
- tableHeaderColor: string;
3160
- hoverColor: string;
3161
- tableColorHover: string;
3162
- tableColorStriped: string;
3163
- pressedColor: string;
3164
- opacityDisabled: string;
3165
- inputColorDisabled: string;
3166
- buttonColor2: string;
3167
- buttonColor2Hover: string;
3168
- buttonColor2Pressed: string;
3169
- boxShadow1: string;
3170
- boxShadow2: string;
3171
- boxShadow3: string;
3172
- fontFamily: string;
3173
- fontFamilyMono: string;
3174
- fontWeight: string;
3175
- fontWeightStrong: string;
3176
- cubicBezierEaseInOut: string;
3177
- cubicBezierEaseOut: string;
3178
- cubicBezierEaseIn: string;
3179
- borderRadius: string;
3180
- borderRadiusSmall: string;
3181
- fontSize: string;
3182
- fontSizeMini: string;
3183
- fontSizeTiny: string;
3184
- fontSizeSmall: string;
3185
- fontSizeMedium: string;
3186
- fontSizeLarge: string;
3187
- fontSizeHuge: string;
3188
- lineHeight: string;
3189
- heightMini: string;
3190
- heightTiny: string;
3191
- heightSmall: string;
3192
- heightMedium: string;
3193
- heightLarge: string;
3194
- heightHuge: string;
3195
- name: "common";
3196
- };
3197
- self: {
3198
- fontSize: string;
3199
- iconColor: string;
3200
- iconSize: string;
3201
- };
3202
- peers: {
3203
- Button: import("naive-ui/es/_mixins").Theme<"Button", {
3204
- heightTiny: string;
3205
- heightSmall: string;
3206
- heightMedium: string;
3207
- heightLarge: string;
3208
- borderRadiusTiny: string;
3209
- borderRadiusSmall: string;
3210
- borderRadiusMedium: string;
3211
- borderRadiusLarge: string;
3212
- fontSizeTiny: string;
3213
- fontSizeSmall: string;
3214
- fontSizeMedium: string;
3215
- fontSizeLarge: string;
3216
- opacityDisabled: string;
3217
- colorOpacitySecondary: string;
3218
- colorOpacitySecondaryHover: string;
3219
- colorOpacitySecondaryPressed: string;
3220
- colorSecondary: string;
3221
- colorSecondaryHover: string;
3222
- colorSecondaryPressed: string;
3223
- colorTertiary: string;
3224
- colorTertiaryHover: string;
3225
- colorTertiaryPressed: string;
3226
- colorQuaternary: string;
3227
- colorQuaternaryHover: string;
3228
- colorQuaternaryPressed: string;
3229
- color: string;
3230
- colorHover: string;
3231
- colorPressed: string;
3232
- colorFocus: string;
3233
- colorDisabled: string;
3234
- textColor: string;
3235
- textColorTertiary: string;
3236
- textColorHover: string;
3237
- textColorPressed: string;
3238
- textColorFocus: string;
3239
- textColorDisabled: string;
3240
- textColorText: string;
3241
- textColorTextHover: string;
3242
- textColorTextPressed: string;
3243
- textColorTextFocus: string;
3244
- textColorTextDisabled: string;
3245
- textColorGhost: string;
3246
- textColorGhostHover: string;
3247
- textColorGhostPressed: string;
3248
- textColorGhostFocus: string;
3249
- textColorGhostDisabled: string;
3250
- border: string;
3251
- borderHover: string;
3252
- borderPressed: string;
3253
- borderFocus: string;
3254
- borderDisabled: string;
3255
- rippleColor: string;
3256
- colorPrimary: string;
3257
- colorHoverPrimary: string;
3258
- colorPressedPrimary: string;
3259
- colorFocusPrimary: string;
3260
- colorDisabledPrimary: string;
3261
- textColorPrimary: string;
3262
- textColorHoverPrimary: string;
3263
- textColorPressedPrimary: string;
3264
- textColorFocusPrimary: string;
3265
- textColorDisabledPrimary: string;
3266
- textColorTextPrimary: string;
3267
- textColorTextHoverPrimary: string;
3268
- textColorTextPressedPrimary: string;
3269
- textColorTextFocusPrimary: string;
3270
- textColorTextDisabledPrimary: string;
3271
- textColorGhostPrimary: string;
3272
- textColorGhostHoverPrimary: string;
3273
- textColorGhostPressedPrimary: string;
3274
- textColorGhostFocusPrimary: string;
3275
- textColorGhostDisabledPrimary: string;
3276
- borderPrimary: string;
3277
- borderHoverPrimary: string;
3278
- borderPressedPrimary: string;
3279
- borderFocusPrimary: string;
3280
- borderDisabledPrimary: string;
3281
- rippleColorPrimary: string;
3282
- colorInfo: string;
3283
- colorHoverInfo: string;
3284
- colorPressedInfo: string;
3285
- colorFocusInfo: string;
3286
- colorDisabledInfo: string;
3287
- textColorInfo: string;
3288
- textColorHoverInfo: string;
3289
- textColorPressedInfo: string;
3290
- textColorFocusInfo: string;
3291
- textColorDisabledInfo: string;
3292
- textColorTextInfo: string;
3293
- textColorTextHoverInfo: string;
3294
- textColorTextPressedInfo: string;
3295
- textColorTextFocusInfo: string;
3296
- textColorTextDisabledInfo: string;
3297
- textColorGhostInfo: string;
3298
- textColorGhostHoverInfo: string;
3299
- textColorGhostPressedInfo: string;
3300
- textColorGhostFocusInfo: string;
3301
- textColorGhostDisabledInfo: string;
3302
- borderInfo: string;
3303
- borderHoverInfo: string;
3304
- borderPressedInfo: string;
3305
- borderFocusInfo: string;
3306
- borderDisabledInfo: string;
3307
- rippleColorInfo: string;
3308
- colorSuccess: string;
3309
- colorHoverSuccess: string;
3310
- colorPressedSuccess: string;
3311
- colorFocusSuccess: string;
3312
- colorDisabledSuccess: string;
3313
- textColorSuccess: string;
3314
- textColorHoverSuccess: string;
3315
- textColorPressedSuccess: string;
3316
- textColorFocusSuccess: string;
3317
- textColorDisabledSuccess: string;
3318
- textColorTextSuccess: string;
3319
- textColorTextHoverSuccess: string;
3320
- textColorTextPressedSuccess: string;
3321
- textColorTextFocusSuccess: string;
3322
- textColorTextDisabledSuccess: string;
3323
- textColorGhostSuccess: string;
3324
- textColorGhostHoverSuccess: string;
3325
- textColorGhostPressedSuccess: string;
3326
- textColorGhostFocusSuccess: string;
3327
- textColorGhostDisabledSuccess: string;
3328
- borderSuccess: string;
3329
- borderHoverSuccess: string;
3330
- borderPressedSuccess: string;
3331
- borderFocusSuccess: string;
3332
- borderDisabledSuccess: string;
3333
- rippleColorSuccess: string;
3334
- colorWarning: string;
3335
- colorHoverWarning: string;
3336
- colorPressedWarning: string;
3337
- colorFocusWarning: string;
3338
- colorDisabledWarning: string;
3339
- textColorWarning: string;
3340
- textColorHoverWarning: string;
3341
- textColorPressedWarning: string;
3342
- textColorFocusWarning: string;
3343
- textColorDisabledWarning: string;
3344
- textColorTextWarning: string;
3345
- textColorTextHoverWarning: string;
3346
- textColorTextPressedWarning: string;
3347
- textColorTextFocusWarning: string;
3348
- textColorTextDisabledWarning: string;
3349
- textColorGhostWarning: string;
3350
- textColorGhostHoverWarning: string;
3351
- textColorGhostPressedWarning: string;
3352
- textColorGhostFocusWarning: string;
3353
- textColorGhostDisabledWarning: string;
3354
- borderWarning: string;
3355
- borderHoverWarning: string;
3356
- borderPressedWarning: string;
3357
- borderFocusWarning: string;
3358
- borderDisabledWarning: string;
3359
- rippleColorWarning: string;
3360
- colorError: string;
3361
- colorHoverError: string;
3362
- colorPressedError: string;
3363
- colorFocusError: string;
3364
- colorDisabledError: string;
3365
- textColorError: string;
3366
- textColorHoverError: string;
3367
- textColorPressedError: string;
3368
- textColorFocusError: string;
3369
- textColorDisabledError: string;
3370
- textColorTextError: string;
3371
- textColorTextHoverError: string;
3372
- textColorTextPressedError: string;
3373
- textColorTextFocusError: string;
3374
- textColorTextDisabledError: string;
3375
- textColorGhostError: string;
3376
- textColorGhostHoverError: string;
3377
- textColorGhostPressedError: string;
3378
- textColorGhostFocusError: string;
3379
- textColorGhostDisabledError: string;
3380
- borderError: string;
3381
- borderHoverError: string;
3382
- borderPressedError: string;
3383
- borderFocusError: string;
3384
- borderDisabledError: string;
3385
- rippleColorError: string;
3386
- waveOpacity: string;
3387
- fontWeight: string;
3388
- fontWeightStrong: string;
3389
- paddingTiny: string;
3390
- paddingSmall: string;
3391
- paddingMedium: string;
3392
- paddingLarge: string;
3393
- paddingRoundTiny: string;
3394
- paddingRoundSmall: string;
3395
- paddingRoundMedium: string;
3396
- paddingRoundLarge: string;
3397
- iconMarginTiny: string;
3398
- iconMarginSmall: string;
3399
- iconMarginMedium: string;
3400
- iconMarginLarge: string;
3401
- iconSizeTiny: string;
3402
- iconSizeSmall: string;
3403
- iconSizeMedium: string;
3404
- iconSizeLarge: string;
3405
- rippleDuration: string;
3406
- }, any>;
3407
- Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
3408
- fontSize: string;
3409
- borderRadius: string;
3410
- color: string;
3411
- dividerColor: string;
3412
- textColor: string;
3413
- boxShadow: string;
3414
- space: string;
3415
- spaceArrow: string;
3416
- arrowOffset: string;
3417
- arrowOffsetVertical: string;
3418
- arrowHeight: string;
3419
- padding: string;
3420
- }, any>;
3421
- };
3422
- peerOverrides: {
3423
- Button?: {
3424
- peers?: {
3425
- [x: string]: any;
3426
- } | undefined;
3427
- } | undefined;
3428
- Popover?: {
3429
- peers?: {
3430
- [x: string]: any;
3431
- } | undefined;
3432
- } | undefined;
3433
- };
3434
- }>;
3435
- popoverInstRef: import("vue").Ref<{
3436
- syncPosition: () => void;
3437
- setShow: (value: boolean) => void;
3438
- } | null>;
3439
- handlePositiveClick: (e: MouseEvent) => void;
3440
- handleNegativeClick: (e: MouseEvent) => void;
3441
- syncPosition: () => void;
3442
- setShow: (value: boolean) => void;
3443
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
3444
- positiveText: import("vue").PropType<string | null>;
3445
- negativeText: import("vue").PropType<string | null>;
3446
- showIcon: {
3447
- type: BooleanConstructor;
3448
- default: boolean;
3449
- };
3450
- trigger: {
3451
- type: import("vue").PropType<import("naive-ui").PopoverTrigger>;
3452
- default: string;
3453
- };
3454
- positiveButtonProps: import("vue").PropType<import("naive-ui").ButtonProps>;
3455
- negativeButtonProps: import("vue").PropType<import("naive-ui").ButtonProps>;
3456
- onPositiveClick: import("vue").PropType<(e: MouseEvent) => any>;
3457
- onNegativeClick: import("vue").PropType<(e: MouseEvent) => any>;
3458
- show: {
3459
- type: import("vue").PropType<boolean | undefined>;
3460
- default: undefined;
3461
- };
3462
- defaultShow: BooleanConstructor;
3463
- showArrow: {
3464
- type: BooleanConstructor;
3465
- default: boolean;
3466
- };
3467
- delay: {
3468
- type: NumberConstructor;
3469
- default: number;
3470
- };
3471
- duration: {
3472
- type: NumberConstructor;
3473
- default: number;
3474
- };
3475
- raw: BooleanConstructor;
3476
- placement: {
3477
- type: import("vue").PropType<import("naive-ui").PopoverPlacement>;
3478
- default: string;
3479
- };
3480
- x: NumberConstructor;
3481
- y: NumberConstructor;
3482
- arrowPointToCenter: BooleanConstructor;
3483
- disabled: BooleanConstructor;
3484
- getDisabled: import("vue").PropType<() => boolean>;
3485
- displayDirective: {
3486
- type: import("vue").PropType<"show" | "if">;
3487
- default: string;
3488
- };
3489
- arrowStyle: import("vue").PropType<string | import("vue").CSSProperties>;
3490
- flip: {
3491
- type: BooleanConstructor;
3492
- default: boolean;
3493
- };
3494
- animated: {
3495
- type: BooleanConstructor;
3496
- default: boolean;
3497
- };
3498
- width: {
3499
- type: import("vue").PropType<number | "trigger">;
3500
- default: undefined;
3501
- };
3502
- overlap: BooleanConstructor;
3503
- keepAliveOnHover: {
3504
- type: BooleanConstructor;
3505
- default: boolean;
3506
- };
3507
- zIndex: NumberConstructor;
3508
- to: {
3509
- type: import("vue").PropType<string | boolean | HTMLElement>;
3510
- default: undefined;
3511
- };
3512
- scrollable: BooleanConstructor;
3513
- contentStyle: import("vue").PropType<string | import("vue").CSSProperties>;
3514
- headerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
3515
- footerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
3516
- onClickoutside: import("vue").PropType<(e: MouseEvent) => void>;
3517
- 'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
3518
- onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
3519
- internalDeactivateImmediately: BooleanConstructor;
3520
- internalSyncTargetWithParent: BooleanConstructor;
3521
- internalInheritedEventHandlers: {
3522
- type: import("vue").PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
3523
- default: () => never[];
3524
- };
3525
- internalTrapFocus: BooleanConstructor;
3526
- internalExtraClass: {
3527
- type: import("vue").PropType<string[]>;
3528
- default: () => never[];
3529
- };
3530
- onShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
3531
- onHide: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
3532
- arrow: {
3533
- type: import("vue").PropType<boolean | undefined>;
3534
- default: undefined;
3535
- };
3536
- minWidth: NumberConstructor;
3537
- maxWidth: NumberConstructor;
3538
- theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Popconfirm", {
3539
- fontSize: string;
3540
- iconColor: string;
3541
- iconSize: string;
3542
- }, {
3543
- Button: import("naive-ui/es/_mixins").Theme<"Button", {
3544
- heightTiny: string;
3545
- heightSmall: string;
3546
- heightMedium: string;
3547
- heightLarge: string;
3548
- borderRadiusTiny: string;
3549
- borderRadiusSmall: string;
3550
- borderRadiusMedium: string;
3551
- borderRadiusLarge: string;
3552
- fontSizeTiny: string;
3553
- fontSizeSmall: string;
3554
- fontSizeMedium: string;
3555
- fontSizeLarge: string;
3556
- opacityDisabled: string;
3557
- colorOpacitySecondary: string;
3558
- colorOpacitySecondaryHover: string;
3559
- colorOpacitySecondaryPressed: string;
3560
- colorSecondary: string;
3561
- colorSecondaryHover: string;
3562
- colorSecondaryPressed: string;
3563
- colorTertiary: string;
3564
- colorTertiaryHover: string;
3565
- colorTertiaryPressed: string;
3566
- colorQuaternary: string;
3567
- colorQuaternaryHover: string;
3568
- colorQuaternaryPressed: string;
3569
- color: string;
3570
- colorHover: string;
3571
- colorPressed: string;
3572
- colorFocus: string;
3573
- colorDisabled: string;
3574
- textColor: string;
3575
- textColorTertiary: string;
3576
- textColorHover: string;
3577
- textColorPressed: string;
3578
- textColorFocus: string;
3579
- textColorDisabled: string;
3580
- textColorText: string;
3581
- textColorTextHover: string;
3582
- textColorTextPressed: string;
3583
- textColorTextFocus: string;
3584
- textColorTextDisabled: string;
3585
- textColorGhost: string;
3586
- textColorGhostHover: string;
3587
- textColorGhostPressed: string;
3588
- textColorGhostFocus: string;
3589
- textColorGhostDisabled: string;
3590
- border: string;
3591
- borderHover: string;
3592
- borderPressed: string;
3593
- borderFocus: string;
3594
- borderDisabled: string;
3595
- rippleColor: string;
3596
- colorPrimary: string;
3597
- colorHoverPrimary: string;
3598
- colorPressedPrimary: string;
3599
- colorFocusPrimary: string;
3600
- colorDisabledPrimary: string;
3601
- textColorPrimary: string;
3602
- textColorHoverPrimary: string;
3603
- textColorPressedPrimary: string;
3604
- textColorFocusPrimary: string;
3605
- textColorDisabledPrimary: string;
3606
- textColorTextPrimary: string;
3607
- textColorTextHoverPrimary: string;
3608
- textColorTextPressedPrimary: string;
3609
- textColorTextFocusPrimary: string;
3610
- textColorTextDisabledPrimary: string;
3611
- textColorGhostPrimary: string;
3612
- textColorGhostHoverPrimary: string;
3613
- textColorGhostPressedPrimary: string;
3614
- textColorGhostFocusPrimary: string;
3615
- textColorGhostDisabledPrimary: string;
3616
- borderPrimary: string;
3617
- borderHoverPrimary: string;
3618
- borderPressedPrimary: string;
3619
- borderFocusPrimary: string;
3620
- borderDisabledPrimary: string;
3621
- rippleColorPrimary: string;
3622
- colorInfo: string;
3623
- colorHoverInfo: string;
3624
- colorPressedInfo: string;
3625
- colorFocusInfo: string;
3626
- colorDisabledInfo: string;
3627
- textColorInfo: string;
3628
- textColorHoverInfo: string;
3629
- textColorPressedInfo: string;
3630
- textColorFocusInfo: string;
3631
- textColorDisabledInfo: string;
3632
- textColorTextInfo: string;
3633
- textColorTextHoverInfo: string;
3634
- textColorTextPressedInfo: string;
3635
- textColorTextFocusInfo: string;
3636
- textColorTextDisabledInfo: string;
3637
- textColorGhostInfo: string;
3638
- textColorGhostHoverInfo: string;
3639
- textColorGhostPressedInfo: string;
3640
- textColorGhostFocusInfo: string;
3641
- textColorGhostDisabledInfo: string;
3642
- borderInfo: string;
3643
- borderHoverInfo: string;
3644
- borderPressedInfo: string;
3645
- borderFocusInfo: string;
3646
- borderDisabledInfo: string;
3647
- rippleColorInfo: string;
3648
- colorSuccess: string;
3649
- colorHoverSuccess: string;
3650
- colorPressedSuccess: string;
3651
- colorFocusSuccess: string;
3652
- colorDisabledSuccess: string;
3653
- textColorSuccess: string;
3654
- textColorHoverSuccess: string;
3655
- textColorPressedSuccess: string;
3656
- textColorFocusSuccess: string;
3657
- textColorDisabledSuccess: string;
3658
- textColorTextSuccess: string;
3659
- textColorTextHoverSuccess: string;
3660
- textColorTextPressedSuccess: string;
3661
- textColorTextFocusSuccess: string;
3662
- textColorTextDisabledSuccess: string;
3663
- textColorGhostSuccess: string;
3664
- textColorGhostHoverSuccess: string;
3665
- textColorGhostPressedSuccess: string;
3666
- textColorGhostFocusSuccess: string;
3667
- textColorGhostDisabledSuccess: string;
3668
- borderSuccess: string;
3669
- borderHoverSuccess: string;
3670
- borderPressedSuccess: string;
3671
- borderFocusSuccess: string;
3672
- borderDisabledSuccess: string;
3673
- rippleColorSuccess: string;
3674
- colorWarning: string;
3675
- colorHoverWarning: string;
3676
- colorPressedWarning: string;
3677
- colorFocusWarning: string;
3678
- colorDisabledWarning: string;
3679
- textColorWarning: string;
3680
- textColorHoverWarning: string;
3681
- textColorPressedWarning: string;
3682
- textColorFocusWarning: string;
3683
- textColorDisabledWarning: string;
3684
- textColorTextWarning: string;
3685
- textColorTextHoverWarning: string;
3686
- textColorTextPressedWarning: string;
3687
- textColorTextFocusWarning: string;
3688
- textColorTextDisabledWarning: string;
3689
- textColorGhostWarning: string;
3690
- textColorGhostHoverWarning: string;
3691
- textColorGhostPressedWarning: string;
3692
- textColorGhostFocusWarning: string;
3693
- textColorGhostDisabledWarning: string;
3694
- borderWarning: string;
3695
- borderHoverWarning: string;
3696
- borderPressedWarning: string;
3697
- borderFocusWarning: string;
3698
- borderDisabledWarning: string;
3699
- rippleColorWarning: string;
3700
- colorError: string;
3701
- colorHoverError: string;
3702
- colorPressedError: string;
3703
- colorFocusError: string;
3704
- colorDisabledError: string;
3705
- textColorError: string;
3706
- textColorHoverError: string;
3707
- textColorPressedError: string;
3708
- textColorFocusError: string;
3709
- textColorDisabledError: string;
3710
- textColorTextError: string;
3711
- textColorTextHoverError: string;
3712
- textColorTextPressedError: string;
3713
- textColorTextFocusError: string;
3714
- textColorTextDisabledError: string;
3715
- textColorGhostError: string;
3716
- textColorGhostHoverError: string;
3717
- textColorGhostPressedError: string;
3718
- textColorGhostFocusError: string;
3719
- textColorGhostDisabledError: string;
3720
- borderError: string;
3721
- borderHoverError: string;
3722
- borderPressedError: string;
3723
- borderFocusError: string;
3724
- borderDisabledError: string;
3725
- rippleColorError: string;
3726
- waveOpacity: string;
3727
- fontWeight: string;
3728
- fontWeightStrong: string;
3729
- paddingTiny: string;
3730
- paddingSmall: string;
3731
- paddingMedium: string;
3732
- paddingLarge: string;
3733
- paddingRoundTiny: string;
3734
- paddingRoundSmall: string;
3735
- paddingRoundMedium: string;
3736
- paddingRoundLarge: string;
3737
- iconMarginTiny: string;
3738
- iconMarginSmall: string;
3739
- iconMarginMedium: string;
3740
- iconMarginLarge: string;
3741
- iconSizeTiny: string;
3742
- iconSizeSmall: string;
3743
- iconSizeMedium: string;
3744
- iconSizeLarge: string;
3745
- rippleDuration: string;
3746
- }, any>;
3747
- Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
3748
- fontSize: string;
3749
- borderRadius: string;
3750
- color: string;
3751
- dividerColor: string;
3752
- textColor: string;
3753
- boxShadow: string;
3754
- space: string;
3755
- spaceArrow: string;
3756
- arrowOffset: string;
3757
- arrowOffsetVertical: string;
3758
- arrowHeight: string;
3759
- padding: string;
3760
- }, any>;
3761
- }>>;
3762
- themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Popconfirm", {
3763
- fontSize: string;
3764
- iconColor: string;
3765
- iconSize: string;
3766
- }, {
3767
- Button: import("naive-ui/es/_mixins").Theme<"Button", {
3768
- heightTiny: string;
3769
- heightSmall: string;
3770
- heightMedium: string;
3771
- heightLarge: string;
3772
- borderRadiusTiny: string;
3773
- borderRadiusSmall: string;
3774
- borderRadiusMedium: string;
3775
- borderRadiusLarge: string;
3776
- fontSizeTiny: string;
3777
- fontSizeSmall: string;
3778
- fontSizeMedium: string;
3779
- fontSizeLarge: string;
3780
- opacityDisabled: string;
3781
- colorOpacitySecondary: string;
3782
- colorOpacitySecondaryHover: string;
3783
- colorOpacitySecondaryPressed: string;
3784
- colorSecondary: string;
3785
- colorSecondaryHover: string;
3786
- colorSecondaryPressed: string;
3787
- colorTertiary: string;
3788
- colorTertiaryHover: string;
3789
- colorTertiaryPressed: string;
3790
- colorQuaternary: string;
3791
- colorQuaternaryHover: string;
3792
- colorQuaternaryPressed: string;
3793
- color: string;
3794
- colorHover: string;
3795
- colorPressed: string;
3796
- colorFocus: string;
3797
- colorDisabled: string;
3798
- textColor: string;
3799
- textColorTertiary: string;
3800
- textColorHover: string;
3801
- textColorPressed: string;
3802
- textColorFocus: string;
3803
- textColorDisabled: string;
3804
- textColorText: string;
3805
- textColorTextHover: string;
3806
- textColorTextPressed: string;
3807
- textColorTextFocus: string;
3808
- textColorTextDisabled: string;
3809
- textColorGhost: string;
3810
- textColorGhostHover: string;
3811
- textColorGhostPressed: string;
3812
- textColorGhostFocus: string;
3813
- textColorGhostDisabled: string;
3814
- border: string;
3815
- borderHover: string;
3816
- borderPressed: string;
3817
- borderFocus: string;
3818
- borderDisabled: string;
3819
- rippleColor: string;
3820
- colorPrimary: string;
3821
- colorHoverPrimary: string;
3822
- colorPressedPrimary: string;
3823
- colorFocusPrimary: string;
3824
- colorDisabledPrimary: string;
3825
- textColorPrimary: string;
3826
- textColorHoverPrimary: string;
3827
- textColorPressedPrimary: string;
3828
- textColorFocusPrimary: string;
3829
- textColorDisabledPrimary: string;
3830
- textColorTextPrimary: string;
3831
- textColorTextHoverPrimary: string;
3832
- textColorTextPressedPrimary: string;
3833
- textColorTextFocusPrimary: string;
3834
- textColorTextDisabledPrimary: string;
3835
- textColorGhostPrimary: string;
3836
- textColorGhostHoverPrimary: string;
3837
- textColorGhostPressedPrimary: string;
3838
- textColorGhostFocusPrimary: string;
3839
- textColorGhostDisabledPrimary: string;
3840
- borderPrimary: string;
3841
- borderHoverPrimary: string;
3842
- borderPressedPrimary: string;
3843
- borderFocusPrimary: string;
3844
- borderDisabledPrimary: string;
3845
- rippleColorPrimary: string;
3846
- colorInfo: string;
3847
- colorHoverInfo: string;
3848
- colorPressedInfo: string;
3849
- colorFocusInfo: string;
3850
- colorDisabledInfo: string;
3851
- textColorInfo: string;
3852
- textColorHoverInfo: string;
3853
- textColorPressedInfo: string;
3854
- textColorFocusInfo: string;
3855
- textColorDisabledInfo: string;
3856
- textColorTextInfo: string;
3857
- textColorTextHoverInfo: string;
3858
- textColorTextPressedInfo: string;
3859
- textColorTextFocusInfo: string;
3860
- textColorTextDisabledInfo: string;
3861
- textColorGhostInfo: string;
3862
- textColorGhostHoverInfo: string;
3863
- textColorGhostPressedInfo: string;
3864
- textColorGhostFocusInfo: string;
3865
- textColorGhostDisabledInfo: string;
3866
- borderInfo: string;
3867
- borderHoverInfo: string;
3868
- borderPressedInfo: string;
3869
- borderFocusInfo: string;
3870
- borderDisabledInfo: string;
3871
- rippleColorInfo: string;
3872
- colorSuccess: string;
3873
- colorHoverSuccess: string;
3874
- colorPressedSuccess: string;
3875
- colorFocusSuccess: string;
3876
- colorDisabledSuccess: string;
3877
- textColorSuccess: string;
3878
- textColorHoverSuccess: string;
3879
- textColorPressedSuccess: string;
3880
- textColorFocusSuccess: string;
3881
- textColorDisabledSuccess: string;
3882
- textColorTextSuccess: string;
3883
- textColorTextHoverSuccess: string;
3884
- textColorTextPressedSuccess: string;
3885
- textColorTextFocusSuccess: string;
3886
- textColorTextDisabledSuccess: string;
3887
- textColorGhostSuccess: string;
3888
- textColorGhostHoverSuccess: string;
3889
- textColorGhostPressedSuccess: string;
3890
- textColorGhostFocusSuccess: string;
3891
- textColorGhostDisabledSuccess: string;
3892
- borderSuccess: string;
3893
- borderHoverSuccess: string;
3894
- borderPressedSuccess: string;
3895
- borderFocusSuccess: string;
3896
- borderDisabledSuccess: string;
3897
- rippleColorSuccess: string;
3898
- colorWarning: string;
3899
- colorHoverWarning: string;
3900
- colorPressedWarning: string;
3901
- colorFocusWarning: string;
3902
- colorDisabledWarning: string;
3903
- textColorWarning: string;
3904
- textColorHoverWarning: string;
3905
- textColorPressedWarning: string;
3906
- textColorFocusWarning: string;
3907
- textColorDisabledWarning: string;
3908
- textColorTextWarning: string;
3909
- textColorTextHoverWarning: string;
3910
- textColorTextPressedWarning: string;
3911
- textColorTextFocusWarning: string;
3912
- textColorTextDisabledWarning: string;
3913
- textColorGhostWarning: string;
3914
- textColorGhostHoverWarning: string;
3915
- textColorGhostPressedWarning: string;
3916
- textColorGhostFocusWarning: string;
3917
- textColorGhostDisabledWarning: string;
3918
- borderWarning: string;
3919
- borderHoverWarning: string;
3920
- borderPressedWarning: string;
3921
- borderFocusWarning: string;
3922
- borderDisabledWarning: string;
3923
- rippleColorWarning: string;
3924
- colorError: string;
3925
- colorHoverError: string;
3926
- colorPressedError: string;
3927
- colorFocusError: string;
3928
- colorDisabledError: string;
3929
- textColorError: string;
3930
- textColorHoverError: string;
3931
- textColorPressedError: string;
3932
- textColorFocusError: string;
3933
- textColorDisabledError: string;
3934
- textColorTextError: string;
3935
- textColorTextHoverError: string;
3936
- textColorTextPressedError: string;
3937
- textColorTextFocusError: string;
3938
- textColorTextDisabledError: string;
3939
- textColorGhostError: string;
3940
- textColorGhostHoverError: string;
3941
- textColorGhostPressedError: string;
3942
- textColorGhostFocusError: string;
3943
- textColorGhostDisabledError: string;
3944
- borderError: string;
3945
- borderHoverError: string;
3946
- borderPressedError: string;
3947
- borderFocusError: string;
3948
- borderDisabledError: string;
3949
- rippleColorError: string;
3950
- waveOpacity: string;
3951
- fontWeight: string;
3952
- fontWeightStrong: string;
3953
- paddingTiny: string;
3954
- paddingSmall: string;
3955
- paddingMedium: string;
3956
- paddingLarge: string;
3957
- paddingRoundTiny: string;
3958
- paddingRoundSmall: string;
3959
- paddingRoundMedium: string;
3960
- paddingRoundLarge: string;
3961
- iconMarginTiny: string;
3962
- iconMarginSmall: string;
3963
- iconMarginMedium: string;
3964
- iconMarginLarge: string;
3965
- iconSizeTiny: string;
3966
- iconSizeSmall: string;
3967
- iconSizeMedium: string;
3968
- iconSizeLarge: string;
3969
- rippleDuration: string;
3970
- }, any>;
3971
- Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
3972
- fontSize: string;
3973
- borderRadius: string;
3974
- color: string;
3975
- dividerColor: string;
3976
- textColor: string;
3977
- boxShadow: string;
3978
- space: string;
3979
- spaceArrow: string;
3980
- arrowOffset: string;
3981
- arrowOffsetVertical: string;
3982
- arrowHeight: string;
3983
- padding: string;
3984
- }, any>;
3985
- }>>>;
3986
- builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Popconfirm", {
3987
- fontSize: string;
3988
- iconColor: string;
3989
- iconSize: string;
3990
- }, {
3991
- Button: import("naive-ui/es/_mixins").Theme<"Button", {
3992
- heightTiny: string;
3993
- heightSmall: string;
3994
- heightMedium: string;
3995
- heightLarge: string;
3996
- borderRadiusTiny: string;
3997
- borderRadiusSmall: string;
3998
- borderRadiusMedium: string;
3999
- borderRadiusLarge: string;
4000
- fontSizeTiny: string;
4001
- fontSizeSmall: string;
4002
- fontSizeMedium: string;
4003
- fontSizeLarge: string;
4004
- opacityDisabled: string;
4005
- colorOpacitySecondary: string;
4006
- colorOpacitySecondaryHover: string;
4007
- colorOpacitySecondaryPressed: string;
4008
- colorSecondary: string;
4009
- colorSecondaryHover: string;
4010
- colorSecondaryPressed: string;
4011
- colorTertiary: string;
4012
- colorTertiaryHover: string;
4013
- colorTertiaryPressed: string;
4014
- colorQuaternary: string;
4015
- colorQuaternaryHover: string;
4016
- colorQuaternaryPressed: string;
4017
- color: string;
4018
- colorHover: string;
4019
- colorPressed: string;
4020
- colorFocus: string;
4021
- colorDisabled: string;
4022
- textColor: string;
4023
- textColorTertiary: string;
4024
- textColorHover: string;
4025
- textColorPressed: string;
4026
- textColorFocus: string;
4027
- textColorDisabled: string;
4028
- textColorText: string;
4029
- textColorTextHover: string;
4030
- textColorTextPressed: string;
4031
- textColorTextFocus: string;
4032
- textColorTextDisabled: string;
4033
- textColorGhost: string;
4034
- textColorGhostHover: string;
4035
- textColorGhostPressed: string;
4036
- textColorGhostFocus: string;
4037
- textColorGhostDisabled: string;
4038
- border: string;
4039
- borderHover: string;
4040
- borderPressed: string;
4041
- borderFocus: string;
4042
- borderDisabled: string;
4043
- rippleColor: string;
4044
- colorPrimary: string;
4045
- colorHoverPrimary: string;
4046
- colorPressedPrimary: string;
4047
- colorFocusPrimary: string;
4048
- colorDisabledPrimary: string;
4049
- textColorPrimary: string;
4050
- textColorHoverPrimary: string;
4051
- textColorPressedPrimary: string;
4052
- textColorFocusPrimary: string;
4053
- textColorDisabledPrimary: string;
4054
- textColorTextPrimary: string;
4055
- textColorTextHoverPrimary: string;
4056
- textColorTextPressedPrimary: string;
4057
- textColorTextFocusPrimary: string;
4058
- textColorTextDisabledPrimary: string;
4059
- textColorGhostPrimary: string;
4060
- textColorGhostHoverPrimary: string;
4061
- textColorGhostPressedPrimary: string;
4062
- textColorGhostFocusPrimary: string;
4063
- textColorGhostDisabledPrimary: string;
4064
- borderPrimary: string;
4065
- borderHoverPrimary: string;
4066
- borderPressedPrimary: string;
4067
- borderFocusPrimary: string;
4068
- borderDisabledPrimary: string;
4069
- rippleColorPrimary: string;
4070
- colorInfo: string;
4071
- colorHoverInfo: string;
4072
- colorPressedInfo: string;
4073
- colorFocusInfo: string;
4074
- colorDisabledInfo: string;
4075
- textColorInfo: string;
4076
- textColorHoverInfo: string;
4077
- textColorPressedInfo: string;
4078
- textColorFocusInfo: string;
4079
- textColorDisabledInfo: string;
4080
- textColorTextInfo: string;
4081
- textColorTextHoverInfo: string;
4082
- textColorTextPressedInfo: string;
4083
- textColorTextFocusInfo: string;
4084
- textColorTextDisabledInfo: string;
4085
- textColorGhostInfo: string;
4086
- textColorGhostHoverInfo: string;
4087
- textColorGhostPressedInfo: string;
4088
- textColorGhostFocusInfo: string;
4089
- textColorGhostDisabledInfo: string;
4090
- borderInfo: string;
4091
- borderHoverInfo: string;
4092
- borderPressedInfo: string;
4093
- borderFocusInfo: string;
4094
- borderDisabledInfo: string;
4095
- rippleColorInfo: string;
4096
- colorSuccess: string;
4097
- colorHoverSuccess: string;
4098
- colorPressedSuccess: string;
4099
- colorFocusSuccess: string;
4100
- colorDisabledSuccess: string;
4101
- textColorSuccess: string;
4102
- textColorHoverSuccess: string;
4103
- textColorPressedSuccess: string;
4104
- textColorFocusSuccess: string;
4105
- textColorDisabledSuccess: string;
4106
- textColorTextSuccess: string;
4107
- textColorTextHoverSuccess: string;
4108
- textColorTextPressedSuccess: string;
4109
- textColorTextFocusSuccess: string;
4110
- textColorTextDisabledSuccess: string;
4111
- textColorGhostSuccess: string;
4112
- textColorGhostHoverSuccess: string;
4113
- textColorGhostPressedSuccess: string;
4114
- textColorGhostFocusSuccess: string;
4115
- textColorGhostDisabledSuccess: string;
4116
- borderSuccess: string;
4117
- borderHoverSuccess: string;
4118
- borderPressedSuccess: string;
4119
- borderFocusSuccess: string;
4120
- borderDisabledSuccess: string;
4121
- rippleColorSuccess: string;
4122
- colorWarning: string;
4123
- colorHoverWarning: string;
4124
- colorPressedWarning: string;
4125
- colorFocusWarning: string;
4126
- colorDisabledWarning: string;
4127
- textColorWarning: string;
4128
- textColorHoverWarning: string;
4129
- textColorPressedWarning: string;
4130
- textColorFocusWarning: string;
4131
- textColorDisabledWarning: string;
4132
- textColorTextWarning: string;
4133
- textColorTextHoverWarning: string;
4134
- textColorTextPressedWarning: string;
4135
- textColorTextFocusWarning: string;
4136
- textColorTextDisabledWarning: string;
4137
- textColorGhostWarning: string;
4138
- textColorGhostHoverWarning: string;
4139
- textColorGhostPressedWarning: string;
4140
- textColorGhostFocusWarning: string;
4141
- textColorGhostDisabledWarning: string;
4142
- borderWarning: string;
4143
- borderHoverWarning: string;
4144
- borderPressedWarning: string;
4145
- borderFocusWarning: string;
4146
- borderDisabledWarning: string;
4147
- rippleColorWarning: string;
4148
- colorError: string;
4149
- colorHoverError: string;
4150
- colorPressedError: string;
4151
- colorFocusError: string;
4152
- colorDisabledError: string;
4153
- textColorError: string;
4154
- textColorHoverError: string;
4155
- textColorPressedError: string;
4156
- textColorFocusError: string;
4157
- textColorDisabledError: string;
4158
- textColorTextError: string;
4159
- textColorTextHoverError: string;
4160
- textColorTextPressedError: string;
4161
- textColorTextFocusError: string;
4162
- textColorTextDisabledError: string;
4163
- textColorGhostError: string;
4164
- textColorGhostHoverError: string;
4165
- textColorGhostPressedError: string;
4166
- textColorGhostFocusError: string;
4167
- textColorGhostDisabledError: string;
4168
- borderError: string;
4169
- borderHoverError: string;
4170
- borderPressedError: string;
4171
- borderFocusError: string;
4172
- borderDisabledError: string;
4173
- rippleColorError: string;
4174
- waveOpacity: string;
4175
- fontWeight: string;
4176
- fontWeightStrong: string;
4177
- paddingTiny: string;
4178
- paddingSmall: string;
4179
- paddingMedium: string;
4180
- paddingLarge: string;
4181
- paddingRoundTiny: string;
4182
- paddingRoundSmall: string;
4183
- paddingRoundMedium: string;
4184
- paddingRoundLarge: string;
4185
- iconMarginTiny: string;
4186
- iconMarginSmall: string;
4187
- iconMarginMedium: string;
4188
- iconMarginLarge: string;
4189
- iconSizeTiny: string;
4190
- iconSizeSmall: string;
4191
- iconSizeMedium: string;
4192
- iconSizeLarge: string;
4193
- rippleDuration: string;
4194
- }, any>;
4195
- Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
4196
- fontSize: string;
4197
- borderRadius: string;
4198
- color: string;
4199
- dividerColor: string;
4200
- textColor: string;
4201
- boxShadow: string;
4202
- space: string;
4203
- spaceArrow: string;
4204
- arrowOffset: string;
4205
- arrowOffsetVertical: string;
4206
- arrowHeight: string;
4207
- padding: string;
4208
- }, any>;
4209
- }>>>;
4210
- }>>, {
4211
- show: boolean | undefined;
4212
- flip: boolean;
4213
- width: number | "trigger";
4214
- disabled: boolean;
4215
- duration: number;
4216
- to: string | boolean | HTMLElement;
4217
- raw: boolean;
4218
- showIcon: boolean;
4219
- placement: import("naive-ui").PopoverPlacement;
4220
- overlap: boolean;
4221
- scrollable: boolean;
4222
- trigger: import("naive-ui").PopoverTrigger;
4223
- showArrow: boolean;
4224
- delay: number;
4225
- arrowPointToCenter: boolean;
4226
- displayDirective: "show" | "if";
4227
- keepAliveOnHover: boolean;
4228
- internalDeactivateImmediately: boolean;
4229
- animated: boolean;
4230
- internalTrapFocus: boolean;
4231
- defaultShow: boolean;
4232
- internalSyncTargetWithParent: boolean;
4233
- internalInheritedEventHandlers: import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[];
4234
- internalExtraClass: string[];
4235
- arrow: boolean | undefined;
4236
- }>;
4237
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
4238
- glob: {
4239
- type: BooleanConstructor;
4240
- required: false;
909
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "shortcutChange"[], "shortcutChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
910
+ shortcutKey: {
911
+ type: StringConstructor;
912
+ required: true;
4241
913
  };
4242
- value: {
914
+ shortcutSignature: {
4243
915
  type: null;
4244
916
  required: true;
4245
917
  };
4246
- onChange: {
918
+ value: {
4247
919
  type: null;
4248
920
  required: true;
4249
921
  };
4250
- onFocus: {
922
+ onChange: {
4251
923
  type: null;
4252
924
  required: true;
4253
925
  };
4254
- fieldItem: {
926
+ onFocus: {
4255
927
  type: null;
4256
928
  required: true;
4257
929
  };
@@ -4265,15 +937,10 @@ declare const _default: import("vue").DefineComponent<{
4265
937
  required: false;
4266
938
  default: string;
4267
939
  };
4268
- operation: {
4269
- type: ArrayConstructor;
4270
- required: false;
4271
- default: () => never[];
4272
- };
4273
- }>>, {
940
+ }>> & {
941
+ onShortcutChange?: ((...args: any[]) => any) | undefined;
942
+ }, {
4274
943
  placeholder: string;
4275
- glob: boolean;
4276
944
  editPlaceholder: string;
4277
- operation: unknown[];
4278
945
  }>;
4279
946
  export default _default;