cnhis-design-vue 3.1.14-beta.11.2 → 3.1.14-beta.12

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,2607 @@
1
+ import { PropType } from 'vue';
2
+ declare type Ifields = {
3
+ id: string;
4
+ name: string;
5
+ show: boolean;
6
+ sort: boolean;
7
+ alias: string;
8
+ fixedShow: boolean;
9
+ fixedWay: 'NONE' | 'LEFT' | 'RIGHT';
10
+ columnWidth: number;
11
+ [key: string]: any;
12
+ };
13
+ declare type Istate = {
14
+ spinning: boolean;
15
+ isCustomSearch: boolean;
16
+ clickItem: {
17
+ [key: string]: any;
18
+ };
19
+ fields: Ifields[];
20
+ };
21
+ declare const _default: import("vue").DefineComponent<{
22
+ fields: {
23
+ type: PropType<any[]>;
24
+ default: () => never[];
25
+ };
26
+ menuSource: {
27
+ type: StringConstructor;
28
+ default: string;
29
+ };
30
+ drawerDirection: {
31
+ type: StringConstructor;
32
+ default: string;
33
+ };
34
+ footerFlag: {
35
+ type: BooleanConstructor;
36
+ default: boolean;
37
+ };
38
+ }, {
39
+ emit: (event: "onSave" | "onClose", ...args: any[]) => void;
40
+ settingView: any;
41
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
42
+ fields: {
43
+ type: PropType<any[]>;
44
+ default: () => never[];
45
+ };
46
+ menuSource: {
47
+ type: StringConstructor;
48
+ default: string;
49
+ };
50
+ drawerDirection: {
51
+ type: StringConstructor;
52
+ default: string;
53
+ };
54
+ footerFlag: {
55
+ type: BooleanConstructor;
56
+ default: boolean;
57
+ };
58
+ }>> & {
59
+ onOnSave?: ((...args: any[]) => any) | undefined;
60
+ onOnClose?: ((...args: any[]) => any) | undefined;
61
+ }>>;
62
+ state: Istate;
63
+ leftStyle: (ele: Ifields) => {
64
+ background: string | undefined;
65
+ };
66
+ isMiddleAndAdmin: import("vue").ComputedRef<boolean>;
67
+ showCheckBox: (key: string) => boolean;
68
+ hideTab: () => void;
69
+ handleFieldSave: () => void;
70
+ onCancle: () => void;
71
+ calculateCheck: (key: string) => boolean;
72
+ handleAllCheck: (e: boolean, key: string) => void;
73
+ handleFieldClick: (item: Ifields) => void;
74
+ NButton: import("vue").DefineComponent<{
75
+ readonly color: StringConstructor;
76
+ readonly textColor: StringConstructor;
77
+ readonly text: BooleanConstructor;
78
+ readonly block: BooleanConstructor;
79
+ readonly loading: BooleanConstructor;
80
+ readonly disabled: BooleanConstructor;
81
+ readonly circle: BooleanConstructor;
82
+ readonly size: PropType<import("naive-ui/es/button/src/interface").Size>;
83
+ readonly ghost: BooleanConstructor;
84
+ readonly round: BooleanConstructor;
85
+ readonly secondary: BooleanConstructor;
86
+ readonly tertiary: BooleanConstructor;
87
+ readonly quaternary: BooleanConstructor;
88
+ readonly strong: BooleanConstructor;
89
+ readonly focusable: {
90
+ readonly type: BooleanConstructor;
91
+ readonly default: true;
92
+ };
93
+ readonly keyboard: {
94
+ readonly type: BooleanConstructor;
95
+ readonly default: true;
96
+ };
97
+ readonly tag: {
98
+ readonly type: PropType<keyof HTMLElementTagNameMap>;
99
+ readonly default: "button";
100
+ };
101
+ readonly type: {
102
+ readonly type: PropType<import("naive-ui/es/button/src/interface").Type>;
103
+ readonly default: "default";
104
+ };
105
+ readonly dashed: BooleanConstructor;
106
+ readonly iconPlacement: {
107
+ readonly type: PropType<"left" | "right">;
108
+ readonly default: "left";
109
+ };
110
+ readonly attrType: {
111
+ readonly type: PropType<"button" | "reset" | "submit">;
112
+ readonly default: "button";
113
+ };
114
+ readonly bordered: {
115
+ readonly type: BooleanConstructor;
116
+ readonly default: true;
117
+ };
118
+ readonly onClick: PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
119
+ readonly nativeFocusBehavior: {
120
+ readonly type: BooleanConstructor;
121
+ readonly default: boolean;
122
+ };
123
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Button", {
124
+ heightTiny: string;
125
+ heightSmall: string;
126
+ heightMedium: string;
127
+ heightLarge: string;
128
+ borderRadiusTiny: string;
129
+ borderRadiusSmall: string;
130
+ borderRadiusMedium: string;
131
+ borderRadiusLarge: string;
132
+ fontSizeTiny: string;
133
+ fontSizeSmall: string;
134
+ fontSizeMedium: string;
135
+ fontSizeLarge: string;
136
+ opacityDisabled: string;
137
+ colorOpacitySecondary: string;
138
+ colorOpacitySecondaryHover: string;
139
+ colorOpacitySecondaryPressed: string;
140
+ colorSecondary: string;
141
+ colorSecondaryHover: string;
142
+ colorSecondaryPressed: string;
143
+ colorTertiary: string;
144
+ colorTertiaryHover: string;
145
+ colorTertiaryPressed: string;
146
+ colorQuaternary: string;
147
+ colorQuaternaryHover: string;
148
+ colorQuaternaryPressed: string;
149
+ color: string;
150
+ colorHover: string;
151
+ colorPressed: string;
152
+ colorFocus: string;
153
+ colorDisabled: string;
154
+ textColor: string;
155
+ textColorTertiary: string;
156
+ textColorHover: string;
157
+ textColorPressed: string;
158
+ textColorFocus: string;
159
+ textColorDisabled: string;
160
+ textColorText: string;
161
+ textColorTextHover: string;
162
+ textColorTextPressed: string;
163
+ textColorTextFocus: string;
164
+ textColorTextDisabled: string;
165
+ textColorGhost: string;
166
+ textColorGhostHover: string;
167
+ textColorGhostPressed: string;
168
+ textColorGhostFocus: string;
169
+ textColorGhostDisabled: string;
170
+ border: string;
171
+ borderHover: string;
172
+ borderPressed: string;
173
+ borderFocus: string;
174
+ borderDisabled: string;
175
+ rippleColor: string;
176
+ colorPrimary: string;
177
+ colorHoverPrimary: string;
178
+ colorPressedPrimary: string;
179
+ colorFocusPrimary: string;
180
+ colorDisabledPrimary: string;
181
+ textColorPrimary: string;
182
+ textColorHoverPrimary: string;
183
+ textColorPressedPrimary: string;
184
+ textColorFocusPrimary: string;
185
+ textColorDisabledPrimary: string;
186
+ textColorTextPrimary: string;
187
+ textColorTextHoverPrimary: string;
188
+ textColorTextPressedPrimary: string;
189
+ textColorTextFocusPrimary: string;
190
+ textColorTextDisabledPrimary: string;
191
+ textColorGhostPrimary: string;
192
+ textColorGhostHoverPrimary: string;
193
+ textColorGhostPressedPrimary: string;
194
+ textColorGhostFocusPrimary: string;
195
+ textColorGhostDisabledPrimary: string;
196
+ borderPrimary: string;
197
+ borderHoverPrimary: string;
198
+ borderPressedPrimary: string;
199
+ borderFocusPrimary: string;
200
+ borderDisabledPrimary: string;
201
+ rippleColorPrimary: string;
202
+ colorInfo: string;
203
+ colorHoverInfo: string;
204
+ colorPressedInfo: string;
205
+ colorFocusInfo: string;
206
+ colorDisabledInfo: string;
207
+ textColorInfo: string;
208
+ textColorHoverInfo: string;
209
+ textColorPressedInfo: string;
210
+ textColorFocusInfo: string;
211
+ textColorDisabledInfo: string;
212
+ textColorTextInfo: string;
213
+ textColorTextHoverInfo: string;
214
+ textColorTextPressedInfo: string;
215
+ textColorTextFocusInfo: string;
216
+ textColorTextDisabledInfo: string;
217
+ textColorGhostInfo: string;
218
+ textColorGhostHoverInfo: string;
219
+ textColorGhostPressedInfo: string;
220
+ textColorGhostFocusInfo: string;
221
+ textColorGhostDisabledInfo: string;
222
+ borderInfo: string;
223
+ borderHoverInfo: string;
224
+ borderPressedInfo: string;
225
+ borderFocusInfo: string;
226
+ borderDisabledInfo: string;
227
+ rippleColorInfo: string;
228
+ colorSuccess: string;
229
+ colorHoverSuccess: string;
230
+ colorPressedSuccess: string;
231
+ colorFocusSuccess: string;
232
+ colorDisabledSuccess: string;
233
+ textColorSuccess: string;
234
+ textColorHoverSuccess: string;
235
+ textColorPressedSuccess: string;
236
+ textColorFocusSuccess: string;
237
+ textColorDisabledSuccess: string;
238
+ textColorTextSuccess: string;
239
+ textColorTextHoverSuccess: string;
240
+ textColorTextPressedSuccess: string;
241
+ textColorTextFocusSuccess: string;
242
+ textColorTextDisabledSuccess: string;
243
+ textColorGhostSuccess: string;
244
+ textColorGhostHoverSuccess: string;
245
+ textColorGhostPressedSuccess: string;
246
+ textColorGhostFocusSuccess: string;
247
+ textColorGhostDisabledSuccess: string;
248
+ borderSuccess: string;
249
+ borderHoverSuccess: string;
250
+ borderPressedSuccess: string;
251
+ borderFocusSuccess: string;
252
+ borderDisabledSuccess: string;
253
+ rippleColorSuccess: string;
254
+ colorWarning: string;
255
+ colorHoverWarning: string;
256
+ colorPressedWarning: string;
257
+ colorFocusWarning: string;
258
+ colorDisabledWarning: string;
259
+ textColorWarning: string;
260
+ textColorHoverWarning: string;
261
+ textColorPressedWarning: string;
262
+ textColorFocusWarning: string;
263
+ textColorDisabledWarning: string;
264
+ textColorTextWarning: string;
265
+ textColorTextHoverWarning: string;
266
+ textColorTextPressedWarning: string;
267
+ textColorTextFocusWarning: string;
268
+ textColorTextDisabledWarning: string;
269
+ textColorGhostWarning: string;
270
+ textColorGhostHoverWarning: string;
271
+ textColorGhostPressedWarning: string;
272
+ textColorGhostFocusWarning: string;
273
+ textColorGhostDisabledWarning: string;
274
+ borderWarning: string;
275
+ borderHoverWarning: string;
276
+ borderPressedWarning: string;
277
+ borderFocusWarning: string;
278
+ borderDisabledWarning: string;
279
+ rippleColorWarning: string;
280
+ colorError: string;
281
+ colorHoverError: string;
282
+ colorPressedError: string;
283
+ colorFocusError: string;
284
+ colorDisabledError: string;
285
+ textColorError: string;
286
+ textColorHoverError: string;
287
+ textColorPressedError: string;
288
+ textColorFocusError: string;
289
+ textColorDisabledError: string;
290
+ textColorTextError: string;
291
+ textColorTextHoverError: string;
292
+ textColorTextPressedError: string;
293
+ textColorTextFocusError: string;
294
+ textColorTextDisabledError: string;
295
+ textColorGhostError: string;
296
+ textColorGhostHoverError: string;
297
+ textColorGhostPressedError: string;
298
+ textColorGhostFocusError: string;
299
+ textColorGhostDisabledError: string;
300
+ borderError: string;
301
+ borderHoverError: string;
302
+ borderPressedError: string;
303
+ borderFocusError: string;
304
+ borderDisabledError: string;
305
+ rippleColorError: string;
306
+ waveOpacity: string;
307
+ fontWeight: string;
308
+ fontWeightStrong: string;
309
+ paddingTiny: string;
310
+ paddingSmall: string;
311
+ paddingMedium: string;
312
+ paddingLarge: string;
313
+ paddingRoundTiny: string;
314
+ paddingRoundSmall: string;
315
+ paddingRoundMedium: string;
316
+ paddingRoundLarge: string;
317
+ iconMarginTiny: string;
318
+ iconMarginSmall: string;
319
+ iconMarginMedium: string;
320
+ iconMarginLarge: string;
321
+ iconSizeTiny: string;
322
+ iconSizeSmall: string;
323
+ iconSizeMedium: string;
324
+ iconSizeLarge: string;
325
+ rippleDuration: string;
326
+ }, any>>;
327
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
328
+ heightTiny: string;
329
+ heightSmall: string;
330
+ heightMedium: string;
331
+ heightLarge: string;
332
+ borderRadiusTiny: string;
333
+ borderRadiusSmall: string;
334
+ borderRadiusMedium: string;
335
+ borderRadiusLarge: string;
336
+ fontSizeTiny: string;
337
+ fontSizeSmall: string;
338
+ fontSizeMedium: string;
339
+ fontSizeLarge: string;
340
+ opacityDisabled: string;
341
+ colorOpacitySecondary: string;
342
+ colorOpacitySecondaryHover: string;
343
+ colorOpacitySecondaryPressed: string;
344
+ colorSecondary: string;
345
+ colorSecondaryHover: string;
346
+ colorSecondaryPressed: string;
347
+ colorTertiary: string;
348
+ colorTertiaryHover: string;
349
+ colorTertiaryPressed: string;
350
+ colorQuaternary: string;
351
+ colorQuaternaryHover: string;
352
+ colorQuaternaryPressed: string;
353
+ color: string;
354
+ colorHover: string;
355
+ colorPressed: string;
356
+ colorFocus: string;
357
+ colorDisabled: string;
358
+ textColor: string;
359
+ textColorTertiary: string;
360
+ textColorHover: string;
361
+ textColorPressed: string;
362
+ textColorFocus: string;
363
+ textColorDisabled: string;
364
+ textColorText: string;
365
+ textColorTextHover: string;
366
+ textColorTextPressed: string;
367
+ textColorTextFocus: string;
368
+ textColorTextDisabled: string;
369
+ textColorGhost: string;
370
+ textColorGhostHover: string;
371
+ textColorGhostPressed: string;
372
+ textColorGhostFocus: string;
373
+ textColorGhostDisabled: string;
374
+ border: string;
375
+ borderHover: string;
376
+ borderPressed: string;
377
+ borderFocus: string;
378
+ borderDisabled: string;
379
+ rippleColor: string;
380
+ colorPrimary: string;
381
+ colorHoverPrimary: string;
382
+ colorPressedPrimary: string;
383
+ colorFocusPrimary: string;
384
+ colorDisabledPrimary: string;
385
+ textColorPrimary: string;
386
+ textColorHoverPrimary: string;
387
+ textColorPressedPrimary: string;
388
+ textColorFocusPrimary: string;
389
+ textColorDisabledPrimary: string;
390
+ textColorTextPrimary: string;
391
+ textColorTextHoverPrimary: string;
392
+ textColorTextPressedPrimary: string;
393
+ textColorTextFocusPrimary: string;
394
+ textColorTextDisabledPrimary: string;
395
+ textColorGhostPrimary: string;
396
+ textColorGhostHoverPrimary: string;
397
+ textColorGhostPressedPrimary: string;
398
+ textColorGhostFocusPrimary: string;
399
+ textColorGhostDisabledPrimary: string;
400
+ borderPrimary: string;
401
+ borderHoverPrimary: string;
402
+ borderPressedPrimary: string;
403
+ borderFocusPrimary: string;
404
+ borderDisabledPrimary: string;
405
+ rippleColorPrimary: string;
406
+ colorInfo: string;
407
+ colorHoverInfo: string;
408
+ colorPressedInfo: string;
409
+ colorFocusInfo: string;
410
+ colorDisabledInfo: string;
411
+ textColorInfo: string;
412
+ textColorHoverInfo: string;
413
+ textColorPressedInfo: string;
414
+ textColorFocusInfo: string;
415
+ textColorDisabledInfo: string;
416
+ textColorTextInfo: string;
417
+ textColorTextHoverInfo: string;
418
+ textColorTextPressedInfo: string;
419
+ textColorTextFocusInfo: string;
420
+ textColorTextDisabledInfo: string;
421
+ textColorGhostInfo: string;
422
+ textColorGhostHoverInfo: string;
423
+ textColorGhostPressedInfo: string;
424
+ textColorGhostFocusInfo: string;
425
+ textColorGhostDisabledInfo: string;
426
+ borderInfo: string;
427
+ borderHoverInfo: string;
428
+ borderPressedInfo: string;
429
+ borderFocusInfo: string;
430
+ borderDisabledInfo: string;
431
+ rippleColorInfo: string;
432
+ colorSuccess: string;
433
+ colorHoverSuccess: string;
434
+ colorPressedSuccess: string;
435
+ colorFocusSuccess: string;
436
+ colorDisabledSuccess: string;
437
+ textColorSuccess: string;
438
+ textColorHoverSuccess: string;
439
+ textColorPressedSuccess: string;
440
+ textColorFocusSuccess: string;
441
+ textColorDisabledSuccess: string;
442
+ textColorTextSuccess: string;
443
+ textColorTextHoverSuccess: string;
444
+ textColorTextPressedSuccess: string;
445
+ textColorTextFocusSuccess: string;
446
+ textColorTextDisabledSuccess: string;
447
+ textColorGhostSuccess: string;
448
+ textColorGhostHoverSuccess: string;
449
+ textColorGhostPressedSuccess: string;
450
+ textColorGhostFocusSuccess: string;
451
+ textColorGhostDisabledSuccess: string;
452
+ borderSuccess: string;
453
+ borderHoverSuccess: string;
454
+ borderPressedSuccess: string;
455
+ borderFocusSuccess: string;
456
+ borderDisabledSuccess: string;
457
+ rippleColorSuccess: string;
458
+ colorWarning: string;
459
+ colorHoverWarning: string;
460
+ colorPressedWarning: string;
461
+ colorFocusWarning: string;
462
+ colorDisabledWarning: string;
463
+ textColorWarning: string;
464
+ textColorHoverWarning: string;
465
+ textColorPressedWarning: string;
466
+ textColorFocusWarning: string;
467
+ textColorDisabledWarning: string;
468
+ textColorTextWarning: string;
469
+ textColorTextHoverWarning: string;
470
+ textColorTextPressedWarning: string;
471
+ textColorTextFocusWarning: string;
472
+ textColorTextDisabledWarning: string;
473
+ textColorGhostWarning: string;
474
+ textColorGhostHoverWarning: string;
475
+ textColorGhostPressedWarning: string;
476
+ textColorGhostFocusWarning: string;
477
+ textColorGhostDisabledWarning: string;
478
+ borderWarning: string;
479
+ borderHoverWarning: string;
480
+ borderPressedWarning: string;
481
+ borderFocusWarning: string;
482
+ borderDisabledWarning: string;
483
+ rippleColorWarning: string;
484
+ colorError: string;
485
+ colorHoverError: string;
486
+ colorPressedError: string;
487
+ colorFocusError: string;
488
+ colorDisabledError: string;
489
+ textColorError: string;
490
+ textColorHoverError: string;
491
+ textColorPressedError: string;
492
+ textColorFocusError: string;
493
+ textColorDisabledError: string;
494
+ textColorTextError: string;
495
+ textColorTextHoverError: string;
496
+ textColorTextPressedError: string;
497
+ textColorTextFocusError: string;
498
+ textColorTextDisabledError: string;
499
+ textColorGhostError: string;
500
+ textColorGhostHoverError: string;
501
+ textColorGhostPressedError: string;
502
+ textColorGhostFocusError: string;
503
+ textColorGhostDisabledError: string;
504
+ borderError: string;
505
+ borderHoverError: string;
506
+ borderPressedError: string;
507
+ borderFocusError: string;
508
+ borderDisabledError: string;
509
+ rippleColorError: string;
510
+ waveOpacity: string;
511
+ fontWeight: string;
512
+ fontWeightStrong: string;
513
+ paddingTiny: string;
514
+ paddingSmall: string;
515
+ paddingMedium: string;
516
+ paddingLarge: string;
517
+ paddingRoundTiny: string;
518
+ paddingRoundSmall: string;
519
+ paddingRoundMedium: string;
520
+ paddingRoundLarge: string;
521
+ iconMarginTiny: string;
522
+ iconMarginSmall: string;
523
+ iconMarginMedium: string;
524
+ iconMarginLarge: string;
525
+ iconSizeTiny: string;
526
+ iconSizeSmall: string;
527
+ iconSizeMedium: string;
528
+ iconSizeLarge: string;
529
+ rippleDuration: string;
530
+ }, any>>>;
531
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
532
+ heightTiny: string;
533
+ heightSmall: string;
534
+ heightMedium: string;
535
+ heightLarge: string;
536
+ borderRadiusTiny: string;
537
+ borderRadiusSmall: string;
538
+ borderRadiusMedium: string;
539
+ borderRadiusLarge: string;
540
+ fontSizeTiny: string;
541
+ fontSizeSmall: string;
542
+ fontSizeMedium: string;
543
+ fontSizeLarge: string;
544
+ opacityDisabled: string;
545
+ colorOpacitySecondary: string;
546
+ colorOpacitySecondaryHover: string;
547
+ colorOpacitySecondaryPressed: string;
548
+ colorSecondary: string;
549
+ colorSecondaryHover: string;
550
+ colorSecondaryPressed: string;
551
+ colorTertiary: string;
552
+ colorTertiaryHover: string;
553
+ colorTertiaryPressed: string;
554
+ colorQuaternary: string;
555
+ colorQuaternaryHover: string;
556
+ colorQuaternaryPressed: string;
557
+ color: string;
558
+ colorHover: string;
559
+ colorPressed: string;
560
+ colorFocus: string;
561
+ colorDisabled: string;
562
+ textColor: string;
563
+ textColorTertiary: string;
564
+ textColorHover: string;
565
+ textColorPressed: string;
566
+ textColorFocus: string;
567
+ textColorDisabled: string;
568
+ textColorText: string;
569
+ textColorTextHover: string;
570
+ textColorTextPressed: string;
571
+ textColorTextFocus: string;
572
+ textColorTextDisabled: string;
573
+ textColorGhost: string;
574
+ textColorGhostHover: string;
575
+ textColorGhostPressed: string;
576
+ textColorGhostFocus: string;
577
+ textColorGhostDisabled: string;
578
+ border: string;
579
+ borderHover: string;
580
+ borderPressed: string;
581
+ borderFocus: string;
582
+ borderDisabled: string;
583
+ rippleColor: string;
584
+ colorPrimary: string;
585
+ colorHoverPrimary: string;
586
+ colorPressedPrimary: string;
587
+ colorFocusPrimary: string;
588
+ colorDisabledPrimary: string;
589
+ textColorPrimary: string;
590
+ textColorHoverPrimary: string;
591
+ textColorPressedPrimary: string;
592
+ textColorFocusPrimary: string;
593
+ textColorDisabledPrimary: string;
594
+ textColorTextPrimary: string;
595
+ textColorTextHoverPrimary: string;
596
+ textColorTextPressedPrimary: string;
597
+ textColorTextFocusPrimary: string;
598
+ textColorTextDisabledPrimary: string;
599
+ textColorGhostPrimary: string;
600
+ textColorGhostHoverPrimary: string;
601
+ textColorGhostPressedPrimary: string;
602
+ textColorGhostFocusPrimary: string;
603
+ textColorGhostDisabledPrimary: string;
604
+ borderPrimary: string;
605
+ borderHoverPrimary: string;
606
+ borderPressedPrimary: string;
607
+ borderFocusPrimary: string;
608
+ borderDisabledPrimary: string;
609
+ rippleColorPrimary: string;
610
+ colorInfo: string;
611
+ colorHoverInfo: string;
612
+ colorPressedInfo: string;
613
+ colorFocusInfo: string;
614
+ colorDisabledInfo: string;
615
+ textColorInfo: string;
616
+ textColorHoverInfo: string;
617
+ textColorPressedInfo: string;
618
+ textColorFocusInfo: string;
619
+ textColorDisabledInfo: string;
620
+ textColorTextInfo: string;
621
+ textColorTextHoverInfo: string;
622
+ textColorTextPressedInfo: string;
623
+ textColorTextFocusInfo: string;
624
+ textColorTextDisabledInfo: string;
625
+ textColorGhostInfo: string;
626
+ textColorGhostHoverInfo: string;
627
+ textColorGhostPressedInfo: string;
628
+ textColorGhostFocusInfo: string;
629
+ textColorGhostDisabledInfo: string;
630
+ borderInfo: string;
631
+ borderHoverInfo: string;
632
+ borderPressedInfo: string;
633
+ borderFocusInfo: string;
634
+ borderDisabledInfo: string;
635
+ rippleColorInfo: string;
636
+ colorSuccess: string;
637
+ colorHoverSuccess: string;
638
+ colorPressedSuccess: string;
639
+ colorFocusSuccess: string;
640
+ colorDisabledSuccess: string;
641
+ textColorSuccess: string;
642
+ textColorHoverSuccess: string;
643
+ textColorPressedSuccess: string;
644
+ textColorFocusSuccess: string;
645
+ textColorDisabledSuccess: string;
646
+ textColorTextSuccess: string;
647
+ textColorTextHoverSuccess: string;
648
+ textColorTextPressedSuccess: string;
649
+ textColorTextFocusSuccess: string;
650
+ textColorTextDisabledSuccess: string;
651
+ textColorGhostSuccess: string;
652
+ textColorGhostHoverSuccess: string;
653
+ textColorGhostPressedSuccess: string;
654
+ textColorGhostFocusSuccess: string;
655
+ textColorGhostDisabledSuccess: string;
656
+ borderSuccess: string;
657
+ borderHoverSuccess: string;
658
+ borderPressedSuccess: string;
659
+ borderFocusSuccess: string;
660
+ borderDisabledSuccess: string;
661
+ rippleColorSuccess: string;
662
+ colorWarning: string;
663
+ colorHoverWarning: string;
664
+ colorPressedWarning: string;
665
+ colorFocusWarning: string;
666
+ colorDisabledWarning: string;
667
+ textColorWarning: string;
668
+ textColorHoverWarning: string;
669
+ textColorPressedWarning: string;
670
+ textColorFocusWarning: string;
671
+ textColorDisabledWarning: string;
672
+ textColorTextWarning: string;
673
+ textColorTextHoverWarning: string;
674
+ textColorTextPressedWarning: string;
675
+ textColorTextFocusWarning: string;
676
+ textColorTextDisabledWarning: string;
677
+ textColorGhostWarning: string;
678
+ textColorGhostHoverWarning: string;
679
+ textColorGhostPressedWarning: string;
680
+ textColorGhostFocusWarning: string;
681
+ textColorGhostDisabledWarning: string;
682
+ borderWarning: string;
683
+ borderHoverWarning: string;
684
+ borderPressedWarning: string;
685
+ borderFocusWarning: string;
686
+ borderDisabledWarning: string;
687
+ rippleColorWarning: string;
688
+ colorError: string;
689
+ colorHoverError: string;
690
+ colorPressedError: string;
691
+ colorFocusError: string;
692
+ colorDisabledError: string;
693
+ textColorError: string;
694
+ textColorHoverError: string;
695
+ textColorPressedError: string;
696
+ textColorFocusError: string;
697
+ textColorDisabledError: string;
698
+ textColorTextError: string;
699
+ textColorTextHoverError: string;
700
+ textColorTextPressedError: string;
701
+ textColorTextFocusError: string;
702
+ textColorTextDisabledError: string;
703
+ textColorGhostError: string;
704
+ textColorGhostHoverError: string;
705
+ textColorGhostPressedError: string;
706
+ textColorGhostFocusError: string;
707
+ textColorGhostDisabledError: string;
708
+ borderError: string;
709
+ borderHoverError: string;
710
+ borderPressedError: string;
711
+ borderFocusError: string;
712
+ borderDisabledError: string;
713
+ rippleColorError: string;
714
+ waveOpacity: string;
715
+ fontWeight: string;
716
+ fontWeightStrong: string;
717
+ paddingTiny: string;
718
+ paddingSmall: string;
719
+ paddingMedium: string;
720
+ paddingLarge: string;
721
+ paddingRoundTiny: string;
722
+ paddingRoundSmall: string;
723
+ paddingRoundMedium: string;
724
+ paddingRoundLarge: string;
725
+ iconMarginTiny: string;
726
+ iconMarginSmall: string;
727
+ iconMarginMedium: string;
728
+ iconMarginLarge: string;
729
+ iconSizeTiny: string;
730
+ iconSizeSmall: string;
731
+ iconSizeMedium: string;
732
+ iconSizeLarge: string;
733
+ rippleDuration: string;
734
+ }, any>>>;
735
+ }, {
736
+ selfElRef: import("vue").Ref<HTMLElement | null>;
737
+ waveElRef: import("vue").Ref<{
738
+ play: () => void;
739
+ } | null>;
740
+ mergedClsPrefix: import("vue").ComputedRef<string>;
741
+ mergedFocusable: import("vue").ComputedRef<boolean>;
742
+ mergedSize: import("vue").ComputedRef<"small" | "medium" | "tiny" | "large">;
743
+ showBorder: import("vue").ComputedRef<boolean>;
744
+ enterPressed: import("vue").Ref<boolean>;
745
+ rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
746
+ handleMousedown: (e: MouseEvent) => void;
747
+ handleKeydown: (e: KeyboardEvent) => void;
748
+ handleBlur: () => void;
749
+ handleKeyup: (e: KeyboardEvent) => void;
750
+ handleClick: (e: MouseEvent) => void;
751
+ customColorCssVars: import("vue").ComputedRef<{
752
+ '--n-border-color': string;
753
+ '--n-border-color-hover': string;
754
+ '--n-border-color-pressed': string;
755
+ '--n-border-color-focus': string;
756
+ '--n-border-color-disabled': string;
757
+ } | null>;
758
+ cssVars: import("vue").ComputedRef<{
759
+ '--n-width': string;
760
+ '--n-height': string;
761
+ '--n-font-size': string;
762
+ '--n-padding': string;
763
+ '--n-icon-size': string;
764
+ '--n-icon-margin': string;
765
+ '--n-border-radius': string;
766
+ '--n-border': string;
767
+ '--n-border-hover': string;
768
+ '--n-border-pressed': string;
769
+ '--n-border-focus': string;
770
+ '--n-border-disabled': string;
771
+ '--n-color': string;
772
+ '--n-color-hover': string;
773
+ '--n-color-pressed': string;
774
+ '--n-color-focus': string;
775
+ '--n-color-disabled': string;
776
+ '--n-ripple-color': string;
777
+ '--n-text-color': string;
778
+ '--n-text-color-hover': string;
779
+ '--n-text-color-pressed': string;
780
+ '--n-text-color-focus': string;
781
+ '--n-text-color-disabled': string;
782
+ 'font-weight': string;
783
+ '--n-bezier': string;
784
+ '--n-bezier-ease-out': string;
785
+ '--n-ripple-duration': string;
786
+ '--n-opacity-disabled': string;
787
+ '--n-wave-opacity': string;
788
+ }> | undefined;
789
+ themeClass: import("vue").Ref<string> | undefined;
790
+ onRender: (() => void) | undefined;
791
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
792
+ readonly color: StringConstructor;
793
+ readonly textColor: StringConstructor;
794
+ readonly text: BooleanConstructor;
795
+ readonly block: BooleanConstructor;
796
+ readonly loading: BooleanConstructor;
797
+ readonly disabled: BooleanConstructor;
798
+ readonly circle: BooleanConstructor;
799
+ readonly size: PropType<import("naive-ui/es/button/src/interface").Size>;
800
+ readonly ghost: BooleanConstructor;
801
+ readonly round: BooleanConstructor;
802
+ readonly secondary: BooleanConstructor;
803
+ readonly tertiary: BooleanConstructor;
804
+ readonly quaternary: BooleanConstructor;
805
+ readonly strong: BooleanConstructor;
806
+ readonly focusable: {
807
+ readonly type: BooleanConstructor;
808
+ readonly default: true;
809
+ };
810
+ readonly keyboard: {
811
+ readonly type: BooleanConstructor;
812
+ readonly default: true;
813
+ };
814
+ readonly tag: {
815
+ readonly type: PropType<keyof HTMLElementTagNameMap>;
816
+ readonly default: "button";
817
+ };
818
+ readonly type: {
819
+ readonly type: PropType<import("naive-ui/es/button/src/interface").Type>;
820
+ readonly default: "default";
821
+ };
822
+ readonly dashed: BooleanConstructor;
823
+ readonly iconPlacement: {
824
+ readonly type: PropType<"left" | "right">;
825
+ readonly default: "left";
826
+ };
827
+ readonly attrType: {
828
+ readonly type: PropType<"button" | "reset" | "submit">;
829
+ readonly default: "button";
830
+ };
831
+ readonly bordered: {
832
+ readonly type: BooleanConstructor;
833
+ readonly default: true;
834
+ };
835
+ readonly onClick: PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
836
+ readonly nativeFocusBehavior: {
837
+ readonly type: BooleanConstructor;
838
+ readonly default: boolean;
839
+ };
840
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Button", {
841
+ heightTiny: string;
842
+ heightSmall: string;
843
+ heightMedium: string;
844
+ heightLarge: string;
845
+ borderRadiusTiny: string;
846
+ borderRadiusSmall: string;
847
+ borderRadiusMedium: string;
848
+ borderRadiusLarge: string;
849
+ fontSizeTiny: string;
850
+ fontSizeSmall: string;
851
+ fontSizeMedium: string;
852
+ fontSizeLarge: string;
853
+ opacityDisabled: string;
854
+ colorOpacitySecondary: string;
855
+ colorOpacitySecondaryHover: string;
856
+ colorOpacitySecondaryPressed: string;
857
+ colorSecondary: string;
858
+ colorSecondaryHover: string;
859
+ colorSecondaryPressed: string;
860
+ colorTertiary: string;
861
+ colorTertiaryHover: string;
862
+ colorTertiaryPressed: string;
863
+ colorQuaternary: string;
864
+ colorQuaternaryHover: string;
865
+ colorQuaternaryPressed: string;
866
+ color: string;
867
+ colorHover: string;
868
+ colorPressed: string;
869
+ colorFocus: string;
870
+ colorDisabled: string;
871
+ textColor: string;
872
+ textColorTertiary: string;
873
+ textColorHover: string;
874
+ textColorPressed: string;
875
+ textColorFocus: string;
876
+ textColorDisabled: string;
877
+ textColorText: string;
878
+ textColorTextHover: string;
879
+ textColorTextPressed: string;
880
+ textColorTextFocus: string;
881
+ textColorTextDisabled: string;
882
+ textColorGhost: string;
883
+ textColorGhostHover: string;
884
+ textColorGhostPressed: string;
885
+ textColorGhostFocus: string;
886
+ textColorGhostDisabled: string;
887
+ border: string;
888
+ borderHover: string;
889
+ borderPressed: string;
890
+ borderFocus: string;
891
+ borderDisabled: string;
892
+ rippleColor: string;
893
+ colorPrimary: string;
894
+ colorHoverPrimary: string;
895
+ colorPressedPrimary: string;
896
+ colorFocusPrimary: string;
897
+ colorDisabledPrimary: string;
898
+ textColorPrimary: string;
899
+ textColorHoverPrimary: string;
900
+ textColorPressedPrimary: string;
901
+ textColorFocusPrimary: string;
902
+ textColorDisabledPrimary: string;
903
+ textColorTextPrimary: string;
904
+ textColorTextHoverPrimary: string;
905
+ textColorTextPressedPrimary: string;
906
+ textColorTextFocusPrimary: string;
907
+ textColorTextDisabledPrimary: string;
908
+ textColorGhostPrimary: string;
909
+ textColorGhostHoverPrimary: string;
910
+ textColorGhostPressedPrimary: string;
911
+ textColorGhostFocusPrimary: string;
912
+ textColorGhostDisabledPrimary: string;
913
+ borderPrimary: string;
914
+ borderHoverPrimary: string;
915
+ borderPressedPrimary: string;
916
+ borderFocusPrimary: string;
917
+ borderDisabledPrimary: string;
918
+ rippleColorPrimary: string;
919
+ colorInfo: string;
920
+ colorHoverInfo: string;
921
+ colorPressedInfo: string;
922
+ colorFocusInfo: string;
923
+ colorDisabledInfo: string;
924
+ textColorInfo: string;
925
+ textColorHoverInfo: string;
926
+ textColorPressedInfo: string;
927
+ textColorFocusInfo: string;
928
+ textColorDisabledInfo: string;
929
+ textColorTextInfo: string;
930
+ textColorTextHoverInfo: string;
931
+ textColorTextPressedInfo: string;
932
+ textColorTextFocusInfo: string;
933
+ textColorTextDisabledInfo: string;
934
+ textColorGhostInfo: string;
935
+ textColorGhostHoverInfo: string;
936
+ textColorGhostPressedInfo: string;
937
+ textColorGhostFocusInfo: string;
938
+ textColorGhostDisabledInfo: string;
939
+ borderInfo: string;
940
+ borderHoverInfo: string;
941
+ borderPressedInfo: string;
942
+ borderFocusInfo: string;
943
+ borderDisabledInfo: string;
944
+ rippleColorInfo: string;
945
+ colorSuccess: string;
946
+ colorHoverSuccess: string;
947
+ colorPressedSuccess: string;
948
+ colorFocusSuccess: string;
949
+ colorDisabledSuccess: string;
950
+ textColorSuccess: string;
951
+ textColorHoverSuccess: string;
952
+ textColorPressedSuccess: string;
953
+ textColorFocusSuccess: string;
954
+ textColorDisabledSuccess: string;
955
+ textColorTextSuccess: string;
956
+ textColorTextHoverSuccess: string;
957
+ textColorTextPressedSuccess: string;
958
+ textColorTextFocusSuccess: string;
959
+ textColorTextDisabledSuccess: string;
960
+ textColorGhostSuccess: string;
961
+ textColorGhostHoverSuccess: string;
962
+ textColorGhostPressedSuccess: string;
963
+ textColorGhostFocusSuccess: string;
964
+ textColorGhostDisabledSuccess: string;
965
+ borderSuccess: string;
966
+ borderHoverSuccess: string;
967
+ borderPressedSuccess: string;
968
+ borderFocusSuccess: string;
969
+ borderDisabledSuccess: string;
970
+ rippleColorSuccess: string;
971
+ colorWarning: string;
972
+ colorHoverWarning: string;
973
+ colorPressedWarning: string;
974
+ colorFocusWarning: string;
975
+ colorDisabledWarning: string;
976
+ textColorWarning: string;
977
+ textColorHoverWarning: string;
978
+ textColorPressedWarning: string;
979
+ textColorFocusWarning: string;
980
+ textColorDisabledWarning: string;
981
+ textColorTextWarning: string;
982
+ textColorTextHoverWarning: string;
983
+ textColorTextPressedWarning: string;
984
+ textColorTextFocusWarning: string;
985
+ textColorTextDisabledWarning: string;
986
+ textColorGhostWarning: string;
987
+ textColorGhostHoverWarning: string;
988
+ textColorGhostPressedWarning: string;
989
+ textColorGhostFocusWarning: string;
990
+ textColorGhostDisabledWarning: string;
991
+ borderWarning: string;
992
+ borderHoverWarning: string;
993
+ borderPressedWarning: string;
994
+ borderFocusWarning: string;
995
+ borderDisabledWarning: string;
996
+ rippleColorWarning: string;
997
+ colorError: string;
998
+ colorHoverError: string;
999
+ colorPressedError: string;
1000
+ colorFocusError: string;
1001
+ colorDisabledError: string;
1002
+ textColorError: string;
1003
+ textColorHoverError: string;
1004
+ textColorPressedError: string;
1005
+ textColorFocusError: string;
1006
+ textColorDisabledError: string;
1007
+ textColorTextError: string;
1008
+ textColorTextHoverError: string;
1009
+ textColorTextPressedError: string;
1010
+ textColorTextFocusError: string;
1011
+ textColorTextDisabledError: string;
1012
+ textColorGhostError: string;
1013
+ textColorGhostHoverError: string;
1014
+ textColorGhostPressedError: string;
1015
+ textColorGhostFocusError: string;
1016
+ textColorGhostDisabledError: string;
1017
+ borderError: string;
1018
+ borderHoverError: string;
1019
+ borderPressedError: string;
1020
+ borderFocusError: string;
1021
+ borderDisabledError: string;
1022
+ rippleColorError: string;
1023
+ waveOpacity: string;
1024
+ fontWeight: string;
1025
+ fontWeightStrong: string;
1026
+ paddingTiny: string;
1027
+ paddingSmall: string;
1028
+ paddingMedium: string;
1029
+ paddingLarge: string;
1030
+ paddingRoundTiny: string;
1031
+ paddingRoundSmall: string;
1032
+ paddingRoundMedium: string;
1033
+ paddingRoundLarge: string;
1034
+ iconMarginTiny: string;
1035
+ iconMarginSmall: string;
1036
+ iconMarginMedium: string;
1037
+ iconMarginLarge: string;
1038
+ iconSizeTiny: string;
1039
+ iconSizeSmall: string;
1040
+ iconSizeMedium: string;
1041
+ iconSizeLarge: string;
1042
+ rippleDuration: string;
1043
+ }, any>>;
1044
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
1045
+ heightTiny: string;
1046
+ heightSmall: string;
1047
+ heightMedium: string;
1048
+ heightLarge: string;
1049
+ borderRadiusTiny: string;
1050
+ borderRadiusSmall: string;
1051
+ borderRadiusMedium: string;
1052
+ borderRadiusLarge: string;
1053
+ fontSizeTiny: string;
1054
+ fontSizeSmall: string;
1055
+ fontSizeMedium: string;
1056
+ fontSizeLarge: string;
1057
+ opacityDisabled: string;
1058
+ colorOpacitySecondary: string;
1059
+ colorOpacitySecondaryHover: string;
1060
+ colorOpacitySecondaryPressed: string;
1061
+ colorSecondary: string;
1062
+ colorSecondaryHover: string;
1063
+ colorSecondaryPressed: string;
1064
+ colorTertiary: string;
1065
+ colorTertiaryHover: string;
1066
+ colorTertiaryPressed: string;
1067
+ colorQuaternary: string;
1068
+ colorQuaternaryHover: string;
1069
+ colorQuaternaryPressed: string;
1070
+ color: string;
1071
+ colorHover: string;
1072
+ colorPressed: string;
1073
+ colorFocus: string;
1074
+ colorDisabled: string;
1075
+ textColor: string;
1076
+ textColorTertiary: string;
1077
+ textColorHover: string;
1078
+ textColorPressed: string;
1079
+ textColorFocus: string;
1080
+ textColorDisabled: string;
1081
+ textColorText: string;
1082
+ textColorTextHover: string;
1083
+ textColorTextPressed: string;
1084
+ textColorTextFocus: string;
1085
+ textColorTextDisabled: string;
1086
+ textColorGhost: string;
1087
+ textColorGhostHover: string;
1088
+ textColorGhostPressed: string;
1089
+ textColorGhostFocus: string;
1090
+ textColorGhostDisabled: string;
1091
+ border: string;
1092
+ borderHover: string;
1093
+ borderPressed: string;
1094
+ borderFocus: string;
1095
+ borderDisabled: string;
1096
+ rippleColor: string;
1097
+ colorPrimary: string;
1098
+ colorHoverPrimary: string;
1099
+ colorPressedPrimary: string;
1100
+ colorFocusPrimary: string;
1101
+ colorDisabledPrimary: string;
1102
+ textColorPrimary: string;
1103
+ textColorHoverPrimary: string;
1104
+ textColorPressedPrimary: string;
1105
+ textColorFocusPrimary: string;
1106
+ textColorDisabledPrimary: string;
1107
+ textColorTextPrimary: string;
1108
+ textColorTextHoverPrimary: string;
1109
+ textColorTextPressedPrimary: string;
1110
+ textColorTextFocusPrimary: string;
1111
+ textColorTextDisabledPrimary: string;
1112
+ textColorGhostPrimary: string;
1113
+ textColorGhostHoverPrimary: string;
1114
+ textColorGhostPressedPrimary: string;
1115
+ textColorGhostFocusPrimary: string;
1116
+ textColorGhostDisabledPrimary: string;
1117
+ borderPrimary: string;
1118
+ borderHoverPrimary: string;
1119
+ borderPressedPrimary: string;
1120
+ borderFocusPrimary: string;
1121
+ borderDisabledPrimary: string;
1122
+ rippleColorPrimary: string;
1123
+ colorInfo: string;
1124
+ colorHoverInfo: string;
1125
+ colorPressedInfo: string;
1126
+ colorFocusInfo: string;
1127
+ colorDisabledInfo: string;
1128
+ textColorInfo: string;
1129
+ textColorHoverInfo: string;
1130
+ textColorPressedInfo: string;
1131
+ textColorFocusInfo: string;
1132
+ textColorDisabledInfo: string;
1133
+ textColorTextInfo: string;
1134
+ textColorTextHoverInfo: string;
1135
+ textColorTextPressedInfo: string;
1136
+ textColorTextFocusInfo: string;
1137
+ textColorTextDisabledInfo: string;
1138
+ textColorGhostInfo: string;
1139
+ textColorGhostHoverInfo: string;
1140
+ textColorGhostPressedInfo: string;
1141
+ textColorGhostFocusInfo: string;
1142
+ textColorGhostDisabledInfo: string;
1143
+ borderInfo: string;
1144
+ borderHoverInfo: string;
1145
+ borderPressedInfo: string;
1146
+ borderFocusInfo: string;
1147
+ borderDisabledInfo: string;
1148
+ rippleColorInfo: string;
1149
+ colorSuccess: string;
1150
+ colorHoverSuccess: string;
1151
+ colorPressedSuccess: string;
1152
+ colorFocusSuccess: string;
1153
+ colorDisabledSuccess: string;
1154
+ textColorSuccess: string;
1155
+ textColorHoverSuccess: string;
1156
+ textColorPressedSuccess: string;
1157
+ textColorFocusSuccess: string;
1158
+ textColorDisabledSuccess: string;
1159
+ textColorTextSuccess: string;
1160
+ textColorTextHoverSuccess: string;
1161
+ textColorTextPressedSuccess: string;
1162
+ textColorTextFocusSuccess: string;
1163
+ textColorTextDisabledSuccess: string;
1164
+ textColorGhostSuccess: string;
1165
+ textColorGhostHoverSuccess: string;
1166
+ textColorGhostPressedSuccess: string;
1167
+ textColorGhostFocusSuccess: string;
1168
+ textColorGhostDisabledSuccess: string;
1169
+ borderSuccess: string;
1170
+ borderHoverSuccess: string;
1171
+ borderPressedSuccess: string;
1172
+ borderFocusSuccess: string;
1173
+ borderDisabledSuccess: string;
1174
+ rippleColorSuccess: string;
1175
+ colorWarning: string;
1176
+ colorHoverWarning: string;
1177
+ colorPressedWarning: string;
1178
+ colorFocusWarning: string;
1179
+ colorDisabledWarning: string;
1180
+ textColorWarning: string;
1181
+ textColorHoverWarning: string;
1182
+ textColorPressedWarning: string;
1183
+ textColorFocusWarning: string;
1184
+ textColorDisabledWarning: string;
1185
+ textColorTextWarning: string;
1186
+ textColorTextHoverWarning: string;
1187
+ textColorTextPressedWarning: string;
1188
+ textColorTextFocusWarning: string;
1189
+ textColorTextDisabledWarning: string;
1190
+ textColorGhostWarning: string;
1191
+ textColorGhostHoverWarning: string;
1192
+ textColorGhostPressedWarning: string;
1193
+ textColorGhostFocusWarning: string;
1194
+ textColorGhostDisabledWarning: string;
1195
+ borderWarning: string;
1196
+ borderHoverWarning: string;
1197
+ borderPressedWarning: string;
1198
+ borderFocusWarning: string;
1199
+ borderDisabledWarning: string;
1200
+ rippleColorWarning: string;
1201
+ colorError: string;
1202
+ colorHoverError: string;
1203
+ colorPressedError: string;
1204
+ colorFocusError: string;
1205
+ colorDisabledError: string;
1206
+ textColorError: string;
1207
+ textColorHoverError: string;
1208
+ textColorPressedError: string;
1209
+ textColorFocusError: string;
1210
+ textColorDisabledError: string;
1211
+ textColorTextError: string;
1212
+ textColorTextHoverError: string;
1213
+ textColorTextPressedError: string;
1214
+ textColorTextFocusError: string;
1215
+ textColorTextDisabledError: string;
1216
+ textColorGhostError: string;
1217
+ textColorGhostHoverError: string;
1218
+ textColorGhostPressedError: string;
1219
+ textColorGhostFocusError: string;
1220
+ textColorGhostDisabledError: string;
1221
+ borderError: string;
1222
+ borderHoverError: string;
1223
+ borderPressedError: string;
1224
+ borderFocusError: string;
1225
+ borderDisabledError: string;
1226
+ rippleColorError: string;
1227
+ waveOpacity: string;
1228
+ fontWeight: string;
1229
+ fontWeightStrong: string;
1230
+ paddingTiny: string;
1231
+ paddingSmall: string;
1232
+ paddingMedium: string;
1233
+ paddingLarge: string;
1234
+ paddingRoundTiny: string;
1235
+ paddingRoundSmall: string;
1236
+ paddingRoundMedium: string;
1237
+ paddingRoundLarge: string;
1238
+ iconMarginTiny: string;
1239
+ iconMarginSmall: string;
1240
+ iconMarginMedium: string;
1241
+ iconMarginLarge: string;
1242
+ iconSizeTiny: string;
1243
+ iconSizeSmall: string;
1244
+ iconSizeMedium: string;
1245
+ iconSizeLarge: string;
1246
+ rippleDuration: string;
1247
+ }, any>>>;
1248
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
1249
+ heightTiny: string;
1250
+ heightSmall: string;
1251
+ heightMedium: string;
1252
+ heightLarge: string;
1253
+ borderRadiusTiny: string;
1254
+ borderRadiusSmall: string;
1255
+ borderRadiusMedium: string;
1256
+ borderRadiusLarge: string;
1257
+ fontSizeTiny: string;
1258
+ fontSizeSmall: string;
1259
+ fontSizeMedium: string;
1260
+ fontSizeLarge: string;
1261
+ opacityDisabled: string;
1262
+ colorOpacitySecondary: string;
1263
+ colorOpacitySecondaryHover: string;
1264
+ colorOpacitySecondaryPressed: string;
1265
+ colorSecondary: string;
1266
+ colorSecondaryHover: string;
1267
+ colorSecondaryPressed: string;
1268
+ colorTertiary: string;
1269
+ colorTertiaryHover: string;
1270
+ colorTertiaryPressed: string;
1271
+ colorQuaternary: string;
1272
+ colorQuaternaryHover: string;
1273
+ colorQuaternaryPressed: string;
1274
+ color: string;
1275
+ colorHover: string;
1276
+ colorPressed: string;
1277
+ colorFocus: string;
1278
+ colorDisabled: string;
1279
+ textColor: string;
1280
+ textColorTertiary: string;
1281
+ textColorHover: string;
1282
+ textColorPressed: string;
1283
+ textColorFocus: string;
1284
+ textColorDisabled: string;
1285
+ textColorText: string;
1286
+ textColorTextHover: string;
1287
+ textColorTextPressed: string;
1288
+ textColorTextFocus: string;
1289
+ textColorTextDisabled: string;
1290
+ textColorGhost: string;
1291
+ textColorGhostHover: string;
1292
+ textColorGhostPressed: string;
1293
+ textColorGhostFocus: string;
1294
+ textColorGhostDisabled: string;
1295
+ border: string;
1296
+ borderHover: string;
1297
+ borderPressed: string;
1298
+ borderFocus: string;
1299
+ borderDisabled: string;
1300
+ rippleColor: string;
1301
+ colorPrimary: string;
1302
+ colorHoverPrimary: string;
1303
+ colorPressedPrimary: string;
1304
+ colorFocusPrimary: string;
1305
+ colorDisabledPrimary: string;
1306
+ textColorPrimary: string;
1307
+ textColorHoverPrimary: string;
1308
+ textColorPressedPrimary: string;
1309
+ textColorFocusPrimary: string;
1310
+ textColorDisabledPrimary: string;
1311
+ textColorTextPrimary: string;
1312
+ textColorTextHoverPrimary: string;
1313
+ textColorTextPressedPrimary: string;
1314
+ textColorTextFocusPrimary: string;
1315
+ textColorTextDisabledPrimary: string;
1316
+ textColorGhostPrimary: string;
1317
+ textColorGhostHoverPrimary: string;
1318
+ textColorGhostPressedPrimary: string;
1319
+ textColorGhostFocusPrimary: string;
1320
+ textColorGhostDisabledPrimary: string;
1321
+ borderPrimary: string;
1322
+ borderHoverPrimary: string;
1323
+ borderPressedPrimary: string;
1324
+ borderFocusPrimary: string;
1325
+ borderDisabledPrimary: string;
1326
+ rippleColorPrimary: string;
1327
+ colorInfo: string;
1328
+ colorHoverInfo: string;
1329
+ colorPressedInfo: string;
1330
+ colorFocusInfo: string;
1331
+ colorDisabledInfo: string;
1332
+ textColorInfo: string;
1333
+ textColorHoverInfo: string;
1334
+ textColorPressedInfo: string;
1335
+ textColorFocusInfo: string;
1336
+ textColorDisabledInfo: string;
1337
+ textColorTextInfo: string;
1338
+ textColorTextHoverInfo: string;
1339
+ textColorTextPressedInfo: string;
1340
+ textColorTextFocusInfo: string;
1341
+ textColorTextDisabledInfo: string;
1342
+ textColorGhostInfo: string;
1343
+ textColorGhostHoverInfo: string;
1344
+ textColorGhostPressedInfo: string;
1345
+ textColorGhostFocusInfo: string;
1346
+ textColorGhostDisabledInfo: string;
1347
+ borderInfo: string;
1348
+ borderHoverInfo: string;
1349
+ borderPressedInfo: string;
1350
+ borderFocusInfo: string;
1351
+ borderDisabledInfo: string;
1352
+ rippleColorInfo: string;
1353
+ colorSuccess: string;
1354
+ colorHoverSuccess: string;
1355
+ colorPressedSuccess: string;
1356
+ colorFocusSuccess: string;
1357
+ colorDisabledSuccess: string;
1358
+ textColorSuccess: string;
1359
+ textColorHoverSuccess: string;
1360
+ textColorPressedSuccess: string;
1361
+ textColorFocusSuccess: string;
1362
+ textColorDisabledSuccess: string;
1363
+ textColorTextSuccess: string;
1364
+ textColorTextHoverSuccess: string;
1365
+ textColorTextPressedSuccess: string;
1366
+ textColorTextFocusSuccess: string;
1367
+ textColorTextDisabledSuccess: string;
1368
+ textColorGhostSuccess: string;
1369
+ textColorGhostHoverSuccess: string;
1370
+ textColorGhostPressedSuccess: string;
1371
+ textColorGhostFocusSuccess: string;
1372
+ textColorGhostDisabledSuccess: string;
1373
+ borderSuccess: string;
1374
+ borderHoverSuccess: string;
1375
+ borderPressedSuccess: string;
1376
+ borderFocusSuccess: string;
1377
+ borderDisabledSuccess: string;
1378
+ rippleColorSuccess: string;
1379
+ colorWarning: string;
1380
+ colorHoverWarning: string;
1381
+ colorPressedWarning: string;
1382
+ colorFocusWarning: string;
1383
+ colorDisabledWarning: string;
1384
+ textColorWarning: string;
1385
+ textColorHoverWarning: string;
1386
+ textColorPressedWarning: string;
1387
+ textColorFocusWarning: string;
1388
+ textColorDisabledWarning: string;
1389
+ textColorTextWarning: string;
1390
+ textColorTextHoverWarning: string;
1391
+ textColorTextPressedWarning: string;
1392
+ textColorTextFocusWarning: string;
1393
+ textColorTextDisabledWarning: string;
1394
+ textColorGhostWarning: string;
1395
+ textColorGhostHoverWarning: string;
1396
+ textColorGhostPressedWarning: string;
1397
+ textColorGhostFocusWarning: string;
1398
+ textColorGhostDisabledWarning: string;
1399
+ borderWarning: string;
1400
+ borderHoverWarning: string;
1401
+ borderPressedWarning: string;
1402
+ borderFocusWarning: string;
1403
+ borderDisabledWarning: string;
1404
+ rippleColorWarning: string;
1405
+ colorError: string;
1406
+ colorHoverError: string;
1407
+ colorPressedError: string;
1408
+ colorFocusError: string;
1409
+ colorDisabledError: string;
1410
+ textColorError: string;
1411
+ textColorHoverError: string;
1412
+ textColorPressedError: string;
1413
+ textColorFocusError: string;
1414
+ textColorDisabledError: string;
1415
+ textColorTextError: string;
1416
+ textColorTextHoverError: string;
1417
+ textColorTextPressedError: string;
1418
+ textColorTextFocusError: string;
1419
+ textColorTextDisabledError: string;
1420
+ textColorGhostError: string;
1421
+ textColorGhostHoverError: string;
1422
+ textColorGhostPressedError: string;
1423
+ textColorGhostFocusError: string;
1424
+ textColorGhostDisabledError: string;
1425
+ borderError: string;
1426
+ borderHoverError: string;
1427
+ borderPressedError: string;
1428
+ borderFocusError: string;
1429
+ borderDisabledError: string;
1430
+ rippleColorError: string;
1431
+ waveOpacity: string;
1432
+ fontWeight: string;
1433
+ fontWeightStrong: string;
1434
+ paddingTiny: string;
1435
+ paddingSmall: string;
1436
+ paddingMedium: string;
1437
+ paddingLarge: string;
1438
+ paddingRoundTiny: string;
1439
+ paddingRoundSmall: string;
1440
+ paddingRoundMedium: string;
1441
+ paddingRoundLarge: string;
1442
+ iconMarginTiny: string;
1443
+ iconMarginSmall: string;
1444
+ iconMarginMedium: string;
1445
+ iconMarginLarge: string;
1446
+ iconSizeTiny: string;
1447
+ iconSizeSmall: string;
1448
+ iconSizeMedium: string;
1449
+ iconSizeLarge: string;
1450
+ rippleDuration: string;
1451
+ }, any>>>;
1452
+ }>>, {
1453
+ readonly type: import("naive-ui/es/button/src/interface").Type;
1454
+ readonly tag: keyof HTMLElementTagNameMap;
1455
+ readonly block: boolean;
1456
+ readonly round: boolean;
1457
+ readonly dashed: boolean;
1458
+ readonly text: boolean;
1459
+ readonly circle: boolean;
1460
+ readonly disabled: boolean;
1461
+ readonly focusable: boolean;
1462
+ readonly strong: boolean;
1463
+ readonly loading: boolean;
1464
+ readonly bordered: boolean;
1465
+ readonly tertiary: boolean;
1466
+ readonly ghost: boolean;
1467
+ readonly keyboard: boolean;
1468
+ readonly secondary: boolean;
1469
+ readonly quaternary: boolean;
1470
+ readonly iconPlacement: "left" | "right";
1471
+ readonly attrType: "button" | "reset" | "submit";
1472
+ readonly nativeFocusBehavior: boolean;
1473
+ }>;
1474
+ NCheckbox: import("vue").DefineComponent<{
1475
+ size: PropType<"small" | "medium" | "large">;
1476
+ checked: {
1477
+ type: PropType<string | number | boolean | undefined>;
1478
+ default: undefined;
1479
+ };
1480
+ defaultChecked: {
1481
+ type: PropType<string | number | boolean>;
1482
+ default: boolean;
1483
+ };
1484
+ value: PropType<string | number>;
1485
+ disabled: {
1486
+ type: PropType<boolean | undefined>;
1487
+ default: undefined;
1488
+ };
1489
+ indeterminate: BooleanConstructor;
1490
+ label: StringConstructor;
1491
+ focusable: {
1492
+ type: BooleanConstructor;
1493
+ default: boolean;
1494
+ };
1495
+ checkedValue: {
1496
+ type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
1497
+ default: boolean;
1498
+ };
1499
+ uncheckedValue: {
1500
+ type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
1501
+ default: boolean;
1502
+ };
1503
+ 'onUpdate:checked': PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
1504
+ onUpdateChecked: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
1505
+ privateInsideTable: BooleanConstructor;
1506
+ onChange: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
1507
+ theme: PropType<import("naive-ui/es/_mixins").Theme<"Checkbox", {
1508
+ labelLineHeight: string;
1509
+ fontSizeSmall: string;
1510
+ fontSizeMedium: string;
1511
+ fontSizeLarge: string;
1512
+ borderRadius: string;
1513
+ color: string;
1514
+ colorChecked: string;
1515
+ colorDisabled: string;
1516
+ colorDisabledChecked: string;
1517
+ colorTableHeader: string;
1518
+ colorTableHeaderModal: string;
1519
+ colorTableHeaderPopover: string;
1520
+ checkMarkColor: string;
1521
+ checkMarkColorDisabled: string;
1522
+ checkMarkColorDisabledChecked: string;
1523
+ border: string;
1524
+ borderDisabled: string;
1525
+ borderDisabledChecked: string;
1526
+ borderChecked: string;
1527
+ borderFocus: string;
1528
+ boxShadowFocus: string;
1529
+ textColor: string;
1530
+ textColorDisabled: string;
1531
+ sizeSmall: string;
1532
+ sizeMedium: string;
1533
+ sizeLarge: string;
1534
+ labelPadding: string;
1535
+ }, any>>;
1536
+ themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Checkbox", {
1537
+ labelLineHeight: string;
1538
+ fontSizeSmall: string;
1539
+ fontSizeMedium: string;
1540
+ fontSizeLarge: string;
1541
+ borderRadius: string;
1542
+ color: string;
1543
+ colorChecked: string;
1544
+ colorDisabled: string;
1545
+ colorDisabledChecked: string;
1546
+ colorTableHeader: string;
1547
+ colorTableHeaderModal: string;
1548
+ colorTableHeaderPopover: string;
1549
+ checkMarkColor: string;
1550
+ checkMarkColorDisabled: string;
1551
+ checkMarkColorDisabledChecked: string;
1552
+ border: string;
1553
+ borderDisabled: string;
1554
+ borderDisabledChecked: string;
1555
+ borderChecked: string;
1556
+ borderFocus: string;
1557
+ boxShadowFocus: string;
1558
+ textColor: string;
1559
+ textColorDisabled: string;
1560
+ sizeSmall: string;
1561
+ sizeMedium: string;
1562
+ sizeLarge: string;
1563
+ labelPadding: string;
1564
+ }, any>>>;
1565
+ builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Checkbox", {
1566
+ labelLineHeight: string;
1567
+ fontSizeSmall: string;
1568
+ fontSizeMedium: string;
1569
+ fontSizeLarge: string;
1570
+ borderRadius: string;
1571
+ color: string;
1572
+ colorChecked: string;
1573
+ colorDisabled: string;
1574
+ colorDisabledChecked: string;
1575
+ colorTableHeader: string;
1576
+ colorTableHeaderModal: string;
1577
+ colorTableHeaderPopover: string;
1578
+ checkMarkColor: string;
1579
+ checkMarkColorDisabled: string;
1580
+ checkMarkColorDisabledChecked: string;
1581
+ border: string;
1582
+ borderDisabled: string;
1583
+ borderDisabledChecked: string;
1584
+ borderChecked: string;
1585
+ borderFocus: string;
1586
+ boxShadowFocus: string;
1587
+ textColor: string;
1588
+ textColorDisabled: string;
1589
+ sizeSmall: string;
1590
+ sizeMedium: string;
1591
+ sizeLarge: string;
1592
+ labelPadding: string;
1593
+ }, any>>>;
1594
+ }, import("naive-ui/es/_mixins/use-form-item").UseFormItem<"small" | "medium" | "large"> & import("naive-ui").CheckboxInst & {
1595
+ rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
1596
+ selfRef: import("vue").Ref<HTMLDivElement | null>;
1597
+ mergedClsPrefix: import("vue").ComputedRef<string>;
1598
+ mergedDisabled: import("vue").ComputedRef<boolean>;
1599
+ renderedChecked: import("vue").ComputedRef<boolean>;
1600
+ mergedTheme: import("vue").ComputedRef<{
1601
+ common: {
1602
+ baseColor: string;
1603
+ primaryColor: string;
1604
+ primaryColorHover: string;
1605
+ primaryColorPressed: string;
1606
+ primaryColorSuppl: string;
1607
+ infoColor: string;
1608
+ infoColorHover: string;
1609
+ infoColorPressed: string;
1610
+ infoColorSuppl: string;
1611
+ successColor: string;
1612
+ successColorHover: string;
1613
+ successColorPressed: string;
1614
+ successColorSuppl: string;
1615
+ warningColor: string;
1616
+ warningColorHover: string;
1617
+ warningColorPressed: string;
1618
+ warningColorSuppl: string;
1619
+ errorColor: string;
1620
+ errorColorHover: string;
1621
+ errorColorPressed: string;
1622
+ errorColorSuppl: string;
1623
+ textColorBase: string;
1624
+ textColor1: string;
1625
+ textColor2: string;
1626
+ textColor3: string;
1627
+ textColorDisabled: string;
1628
+ placeholderColor: string;
1629
+ placeholderColorDisabled: string;
1630
+ iconColor: string;
1631
+ iconColorHover: string;
1632
+ iconColorPressed: string;
1633
+ iconColorDisabled: string;
1634
+ opacity1: string;
1635
+ opacity2: string;
1636
+ opacity3: string;
1637
+ opacity4: string;
1638
+ opacity5: string;
1639
+ dividerColor: string;
1640
+ borderColor: string;
1641
+ closeIconColor: string;
1642
+ closeIconColorHover: string;
1643
+ closeIconColorPressed: string;
1644
+ closeColorHover: string;
1645
+ closeColorPressed: string;
1646
+ clearColor: string;
1647
+ clearColorHover: string;
1648
+ clearColorPressed: string;
1649
+ scrollbarColor: string;
1650
+ scrollbarColorHover: string;
1651
+ scrollbarWidth: string;
1652
+ scrollbarHeight: string;
1653
+ scrollbarBorderRadius: string;
1654
+ progressRailColor: string;
1655
+ railColor: string;
1656
+ popoverColor: string;
1657
+ tableColor: string;
1658
+ cardColor: string;
1659
+ modalColor: string;
1660
+ bodyColor: string;
1661
+ tagColor: string;
1662
+ avatarColor: string;
1663
+ invertedColor: string;
1664
+ inputColor: string;
1665
+ codeColor: string;
1666
+ tabColor: string;
1667
+ actionColor: string;
1668
+ tableHeaderColor: string;
1669
+ hoverColor: string;
1670
+ tableColorHover: string;
1671
+ tableColorStriped: string;
1672
+ pressedColor: string;
1673
+ opacityDisabled: string;
1674
+ inputColorDisabled: string;
1675
+ buttonColor2: string;
1676
+ buttonColor2Hover: string;
1677
+ buttonColor2Pressed: string;
1678
+ boxShadow1: string;
1679
+ boxShadow2: string;
1680
+ boxShadow3: string;
1681
+ fontFamily: string;
1682
+ fontFamilyMono: string;
1683
+ fontWeight: string;
1684
+ fontWeightStrong: string;
1685
+ cubicBezierEaseInOut: string;
1686
+ cubicBezierEaseOut: string;
1687
+ cubicBezierEaseIn: string;
1688
+ borderRadius: string;
1689
+ borderRadiusSmall: string;
1690
+ fontSize: string;
1691
+ fontSizeMini: string;
1692
+ fontSizeTiny: string;
1693
+ fontSizeSmall: string;
1694
+ fontSizeMedium: string;
1695
+ fontSizeLarge: string;
1696
+ fontSizeHuge: string;
1697
+ lineHeight: string;
1698
+ heightMini: string;
1699
+ heightTiny: string;
1700
+ heightSmall: string;
1701
+ heightMedium: string;
1702
+ heightLarge: string;
1703
+ heightHuge: string;
1704
+ name: "common";
1705
+ };
1706
+ self: {
1707
+ labelLineHeight: string;
1708
+ fontSizeSmall: string;
1709
+ fontSizeMedium: string;
1710
+ fontSizeLarge: string;
1711
+ borderRadius: string;
1712
+ color: string;
1713
+ colorChecked: string;
1714
+ colorDisabled: string;
1715
+ colorDisabledChecked: string;
1716
+ colorTableHeader: string;
1717
+ colorTableHeaderModal: string;
1718
+ colorTableHeaderPopover: string;
1719
+ checkMarkColor: string;
1720
+ checkMarkColorDisabled: string;
1721
+ checkMarkColorDisabledChecked: string;
1722
+ border: string;
1723
+ borderDisabled: string;
1724
+ borderDisabledChecked: string;
1725
+ borderChecked: string;
1726
+ borderFocus: string;
1727
+ boxShadowFocus: string;
1728
+ textColor: string;
1729
+ textColorDisabled: string;
1730
+ sizeSmall: string;
1731
+ sizeMedium: string;
1732
+ sizeLarge: string;
1733
+ labelPadding: string;
1734
+ };
1735
+ peers: any;
1736
+ peerOverrides: {
1737
+ [x: string]: any;
1738
+ };
1739
+ }>;
1740
+ labelId: string;
1741
+ handleClick: (e: MouseEvent) => void;
1742
+ handleKeyUp: (e: KeyboardEvent) => void;
1743
+ handleKeyDown: (e: KeyboardEvent) => void;
1744
+ cssVars: import("vue").ComputedRef<{
1745
+ '--n-label-line-height': string;
1746
+ '--n-size': string;
1747
+ '--n-bezier': string;
1748
+ '--n-border-radius': string;
1749
+ '--n-border': string;
1750
+ '--n-border-checked': string;
1751
+ '--n-border-focus': string;
1752
+ '--n-border-disabled': string;
1753
+ '--n-border-disabled-checked': string;
1754
+ '--n-box-shadow-focus': string;
1755
+ '--n-color': string;
1756
+ '--n-color-checked': string;
1757
+ '--n-color-table': string;
1758
+ '--n-color-table-modal': string;
1759
+ '--n-color-table-popover': string;
1760
+ '--n-color-disabled': string;
1761
+ '--n-color-disabled-checked': string;
1762
+ '--n-text-color': string;
1763
+ '--n-text-color-disabled': string;
1764
+ '--n-check-mark-color': string;
1765
+ '--n-check-mark-color-disabled': string;
1766
+ '--n-check-mark-color-disabled-checked': string;
1767
+ '--n-font-size': string;
1768
+ '--n-label-padding': string;
1769
+ }> | undefined;
1770
+ themeClass: import("vue").Ref<string> | undefined;
1771
+ onRender: (() => void) | undefined;
1772
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1773
+ size: PropType<"small" | "medium" | "large">;
1774
+ checked: {
1775
+ type: PropType<string | number | boolean | undefined>;
1776
+ default: undefined;
1777
+ };
1778
+ defaultChecked: {
1779
+ type: PropType<string | number | boolean>;
1780
+ default: boolean;
1781
+ };
1782
+ value: PropType<string | number>;
1783
+ disabled: {
1784
+ type: PropType<boolean | undefined>;
1785
+ default: undefined;
1786
+ };
1787
+ indeterminate: BooleanConstructor;
1788
+ label: StringConstructor;
1789
+ focusable: {
1790
+ type: BooleanConstructor;
1791
+ default: boolean;
1792
+ };
1793
+ checkedValue: {
1794
+ type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
1795
+ default: boolean;
1796
+ };
1797
+ uncheckedValue: {
1798
+ type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
1799
+ default: boolean;
1800
+ };
1801
+ 'onUpdate:checked': PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
1802
+ onUpdateChecked: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
1803
+ privateInsideTable: BooleanConstructor;
1804
+ onChange: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
1805
+ theme: PropType<import("naive-ui/es/_mixins").Theme<"Checkbox", {
1806
+ labelLineHeight: string;
1807
+ fontSizeSmall: string;
1808
+ fontSizeMedium: string;
1809
+ fontSizeLarge: string;
1810
+ borderRadius: string;
1811
+ color: string;
1812
+ colorChecked: string;
1813
+ colorDisabled: string;
1814
+ colorDisabledChecked: string;
1815
+ colorTableHeader: string;
1816
+ colorTableHeaderModal: string;
1817
+ colorTableHeaderPopover: string;
1818
+ checkMarkColor: string;
1819
+ checkMarkColorDisabled: string;
1820
+ checkMarkColorDisabledChecked: string;
1821
+ border: string;
1822
+ borderDisabled: string;
1823
+ borderDisabledChecked: string;
1824
+ borderChecked: string;
1825
+ borderFocus: string;
1826
+ boxShadowFocus: string;
1827
+ textColor: string;
1828
+ textColorDisabled: string;
1829
+ sizeSmall: string;
1830
+ sizeMedium: string;
1831
+ sizeLarge: string;
1832
+ labelPadding: string;
1833
+ }, any>>;
1834
+ themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Checkbox", {
1835
+ labelLineHeight: string;
1836
+ fontSizeSmall: string;
1837
+ fontSizeMedium: string;
1838
+ fontSizeLarge: string;
1839
+ borderRadius: string;
1840
+ color: string;
1841
+ colorChecked: string;
1842
+ colorDisabled: string;
1843
+ colorDisabledChecked: string;
1844
+ colorTableHeader: string;
1845
+ colorTableHeaderModal: string;
1846
+ colorTableHeaderPopover: string;
1847
+ checkMarkColor: string;
1848
+ checkMarkColorDisabled: string;
1849
+ checkMarkColorDisabledChecked: string;
1850
+ border: string;
1851
+ borderDisabled: string;
1852
+ borderDisabledChecked: string;
1853
+ borderChecked: string;
1854
+ borderFocus: string;
1855
+ boxShadowFocus: string;
1856
+ textColor: string;
1857
+ textColorDisabled: string;
1858
+ sizeSmall: string;
1859
+ sizeMedium: string;
1860
+ sizeLarge: string;
1861
+ labelPadding: string;
1862
+ }, any>>>;
1863
+ builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Checkbox", {
1864
+ labelLineHeight: string;
1865
+ fontSizeSmall: string;
1866
+ fontSizeMedium: string;
1867
+ fontSizeLarge: string;
1868
+ borderRadius: string;
1869
+ color: string;
1870
+ colorChecked: string;
1871
+ colorDisabled: string;
1872
+ colorDisabledChecked: string;
1873
+ colorTableHeader: string;
1874
+ colorTableHeaderModal: string;
1875
+ colorTableHeaderPopover: string;
1876
+ checkMarkColor: string;
1877
+ checkMarkColorDisabled: string;
1878
+ checkMarkColorDisabledChecked: string;
1879
+ border: string;
1880
+ borderDisabled: string;
1881
+ borderDisabledChecked: string;
1882
+ borderChecked: string;
1883
+ borderFocus: string;
1884
+ boxShadowFocus: string;
1885
+ textColor: string;
1886
+ textColorDisabled: string;
1887
+ sizeSmall: string;
1888
+ sizeMedium: string;
1889
+ sizeLarge: string;
1890
+ labelPadding: string;
1891
+ }, any>>>;
1892
+ }>>, {
1893
+ disabled: boolean | undefined;
1894
+ checked: string | number | boolean | undefined;
1895
+ indeterminate: boolean;
1896
+ focusable: boolean;
1897
+ defaultChecked: string | number | boolean;
1898
+ checkedValue: string | number | boolean;
1899
+ uncheckedValue: string | number | boolean;
1900
+ privateInsideTable: boolean;
1901
+ }>;
1902
+ NSpin: import("vue").DefineComponent<{
1903
+ description: StringConstructor;
1904
+ stroke: StringConstructor;
1905
+ size: {
1906
+ type: PropType<number | "small" | "medium" | "large">;
1907
+ default: string;
1908
+ };
1909
+ show: {
1910
+ type: BooleanConstructor;
1911
+ default: boolean;
1912
+ };
1913
+ strokeWidth: NumberConstructor;
1914
+ rotate: {
1915
+ type: BooleanConstructor;
1916
+ default: boolean;
1917
+ };
1918
+ spinning: {
1919
+ type: BooleanConstructor;
1920
+ validator: () => boolean;
1921
+ default: undefined;
1922
+ };
1923
+ theme: PropType<import("naive-ui/es/_mixins").Theme<"Spin", {
1924
+ fontSize: string;
1925
+ textColor: string;
1926
+ sizeTiny: string;
1927
+ sizeSmall: string;
1928
+ sizeMedium: string;
1929
+ sizeLarge: string;
1930
+ sizeHuge: string;
1931
+ color: string;
1932
+ opacitySpinning: string;
1933
+ }, any>>;
1934
+ themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Spin", {
1935
+ fontSize: string;
1936
+ textColor: string;
1937
+ sizeTiny: string;
1938
+ sizeSmall: string;
1939
+ sizeMedium: string;
1940
+ sizeLarge: string;
1941
+ sizeHuge: string;
1942
+ color: string;
1943
+ opacitySpinning: string;
1944
+ }, any>>>;
1945
+ builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Spin", {
1946
+ fontSize: string;
1947
+ textColor: string;
1948
+ sizeTiny: string;
1949
+ sizeSmall: string;
1950
+ sizeMedium: string;
1951
+ sizeLarge: string;
1952
+ sizeHuge: string;
1953
+ color: string;
1954
+ opacitySpinning: string;
1955
+ }, any>>>;
1956
+ }, {
1957
+ mergedClsPrefix: import("vue").ComputedRef<string>;
1958
+ compitableShow: import("vue").ComputedRef<boolean>;
1959
+ mergedStrokeWidth: import("vue").ComputedRef<number>;
1960
+ cssVars: import("vue").ComputedRef<{
1961
+ '--n-bezier': string;
1962
+ '--n-opacity-spinning': string;
1963
+ '--n-size': string;
1964
+ '--n-color': string;
1965
+ '--n-text-color': string;
1966
+ }> | undefined;
1967
+ themeClass: import("vue").Ref<string> | undefined;
1968
+ onRender: (() => void) | undefined;
1969
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1970
+ description: StringConstructor;
1971
+ stroke: StringConstructor;
1972
+ size: {
1973
+ type: PropType<number | "small" | "medium" | "large">;
1974
+ default: string;
1975
+ };
1976
+ show: {
1977
+ type: BooleanConstructor;
1978
+ default: boolean;
1979
+ };
1980
+ strokeWidth: NumberConstructor;
1981
+ rotate: {
1982
+ type: BooleanConstructor;
1983
+ default: boolean;
1984
+ };
1985
+ spinning: {
1986
+ type: BooleanConstructor;
1987
+ validator: () => boolean;
1988
+ default: undefined;
1989
+ };
1990
+ theme: PropType<import("naive-ui/es/_mixins").Theme<"Spin", {
1991
+ fontSize: string;
1992
+ textColor: string;
1993
+ sizeTiny: string;
1994
+ sizeSmall: string;
1995
+ sizeMedium: string;
1996
+ sizeLarge: string;
1997
+ sizeHuge: string;
1998
+ color: string;
1999
+ opacitySpinning: string;
2000
+ }, any>>;
2001
+ themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Spin", {
2002
+ fontSize: string;
2003
+ textColor: string;
2004
+ sizeTiny: string;
2005
+ sizeSmall: string;
2006
+ sizeMedium: string;
2007
+ sizeLarge: string;
2008
+ sizeHuge: string;
2009
+ color: string;
2010
+ opacitySpinning: string;
2011
+ }, any>>>;
2012
+ builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Spin", {
2013
+ fontSize: string;
2014
+ textColor: string;
2015
+ sizeTiny: string;
2016
+ sizeSmall: string;
2017
+ sizeMedium: string;
2018
+ sizeLarge: string;
2019
+ sizeHuge: string;
2020
+ color: string;
2021
+ opacitySpinning: string;
2022
+ }, any>>>;
2023
+ }>>, {
2024
+ size: number | "small" | "medium" | "large";
2025
+ show: boolean;
2026
+ rotate: boolean;
2027
+ spinning: boolean;
2028
+ }>;
2029
+ NTooltip: import("vue").DefineComponent<{
2030
+ theme: PropType<import("naive-ui/es/_mixins").Theme<"Tooltip", {
2031
+ borderRadius: string;
2032
+ boxShadow: string;
2033
+ color: string;
2034
+ textColor: string;
2035
+ padding: string;
2036
+ }, {
2037
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2038
+ fontSize: string;
2039
+ borderRadius: string;
2040
+ color: string;
2041
+ dividerColor: string;
2042
+ textColor: string;
2043
+ boxShadow: string;
2044
+ space: string;
2045
+ spaceArrow: string;
2046
+ arrowOffset: string;
2047
+ arrowOffsetVertical: string;
2048
+ arrowHeight: string;
2049
+ padding: string;
2050
+ }, any>;
2051
+ }>>;
2052
+ themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
2053
+ borderRadius: string;
2054
+ boxShadow: string;
2055
+ color: string;
2056
+ textColor: string;
2057
+ padding: string;
2058
+ }, {
2059
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2060
+ fontSize: string;
2061
+ borderRadius: string;
2062
+ color: string;
2063
+ dividerColor: string;
2064
+ textColor: string;
2065
+ boxShadow: string;
2066
+ space: string;
2067
+ spaceArrow: string;
2068
+ arrowOffset: string;
2069
+ arrowOffsetVertical: string;
2070
+ arrowHeight: string;
2071
+ padding: string;
2072
+ }, any>;
2073
+ }>>>;
2074
+ builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
2075
+ borderRadius: string;
2076
+ boxShadow: string;
2077
+ color: string;
2078
+ textColor: string;
2079
+ padding: string;
2080
+ }, {
2081
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2082
+ fontSize: string;
2083
+ borderRadius: string;
2084
+ color: string;
2085
+ dividerColor: string;
2086
+ textColor: string;
2087
+ boxShadow: string;
2088
+ space: string;
2089
+ spaceArrow: string;
2090
+ arrowOffset: string;
2091
+ arrowOffsetVertical: string;
2092
+ arrowHeight: string;
2093
+ padding: string;
2094
+ }, any>;
2095
+ }>>>;
2096
+ show: {
2097
+ type: PropType<boolean | undefined>;
2098
+ default: undefined;
2099
+ };
2100
+ defaultShow: BooleanConstructor;
2101
+ showArrow: {
2102
+ type: BooleanConstructor;
2103
+ default: boolean;
2104
+ };
2105
+ trigger: {
2106
+ type: PropType<import("naive-ui").PopoverTrigger>;
2107
+ default: string;
2108
+ };
2109
+ delay: {
2110
+ type: NumberConstructor;
2111
+ default: number;
2112
+ };
2113
+ duration: {
2114
+ type: NumberConstructor;
2115
+ default: number;
2116
+ };
2117
+ raw: BooleanConstructor;
2118
+ placement: {
2119
+ type: PropType<import("naive-ui").PopoverPlacement>;
2120
+ default: string;
2121
+ };
2122
+ x: NumberConstructor;
2123
+ y: NumberConstructor;
2124
+ arrowPointToCenter: BooleanConstructor;
2125
+ disabled: BooleanConstructor;
2126
+ getDisabled: PropType<() => boolean>;
2127
+ displayDirective: {
2128
+ type: PropType<"show" | "if">;
2129
+ default: string;
2130
+ };
2131
+ arrowStyle: PropType<string | import("vue").CSSProperties>;
2132
+ flip: {
2133
+ type: BooleanConstructor;
2134
+ default: boolean;
2135
+ };
2136
+ animated: {
2137
+ type: BooleanConstructor;
2138
+ default: boolean;
2139
+ };
2140
+ width: {
2141
+ type: PropType<number | "trigger">;
2142
+ default: undefined;
2143
+ };
2144
+ overlap: BooleanConstructor;
2145
+ keepAliveOnHover: {
2146
+ type: BooleanConstructor;
2147
+ default: boolean;
2148
+ };
2149
+ zIndex: NumberConstructor;
2150
+ to: {
2151
+ type: PropType<string | boolean | HTMLElement>;
2152
+ default: undefined;
2153
+ };
2154
+ scrollable: BooleanConstructor;
2155
+ contentStyle: PropType<string | import("vue").CSSProperties>;
2156
+ headerStyle: PropType<string | import("vue").CSSProperties>;
2157
+ footerStyle: PropType<string | import("vue").CSSProperties>;
2158
+ onClickoutside: PropType<(e: MouseEvent) => void>;
2159
+ 'onUpdate:show': PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
2160
+ onUpdateShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
2161
+ internalDeactivateImmediately: BooleanConstructor;
2162
+ internalSyncTargetWithParent: BooleanConstructor;
2163
+ internalInheritedEventHandlers: {
2164
+ type: PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
2165
+ default: () => never[];
2166
+ };
2167
+ internalTrapFocus: BooleanConstructor;
2168
+ internalExtraClass: {
2169
+ type: PropType<string[]>;
2170
+ default: () => never[];
2171
+ };
2172
+ onShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
2173
+ onHide: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
2174
+ arrow: {
2175
+ type: PropType<boolean | undefined>;
2176
+ default: undefined;
2177
+ };
2178
+ minWidth: NumberConstructor;
2179
+ maxWidth: NumberConstructor;
2180
+ }, {
2181
+ popoverRef: import("vue").Ref<{
2182
+ syncPosition: () => void;
2183
+ setShow: (value: boolean) => void;
2184
+ } | null>;
2185
+ mergedTheme: import("vue").ComputedRef<{
2186
+ common: {
2187
+ baseColor: string;
2188
+ primaryColor: string;
2189
+ primaryColorHover: string;
2190
+ primaryColorPressed: string;
2191
+ primaryColorSuppl: string;
2192
+ infoColor: string;
2193
+ infoColorHover: string;
2194
+ infoColorPressed: string;
2195
+ infoColorSuppl: string;
2196
+ successColor: string;
2197
+ successColorHover: string;
2198
+ successColorPressed: string;
2199
+ successColorSuppl: string;
2200
+ warningColor: string;
2201
+ warningColorHover: string;
2202
+ warningColorPressed: string;
2203
+ warningColorSuppl: string;
2204
+ errorColor: string;
2205
+ errorColorHover: string;
2206
+ errorColorPressed: string;
2207
+ errorColorSuppl: string;
2208
+ textColorBase: string;
2209
+ textColor1: string;
2210
+ textColor2: string;
2211
+ textColor3: string;
2212
+ textColorDisabled: string;
2213
+ placeholderColor: string;
2214
+ placeholderColorDisabled: string;
2215
+ iconColor: string;
2216
+ iconColorHover: string;
2217
+ iconColorPressed: string;
2218
+ iconColorDisabled: string;
2219
+ opacity1: string;
2220
+ opacity2: string;
2221
+ opacity3: string;
2222
+ opacity4: string;
2223
+ opacity5: string;
2224
+ dividerColor: string;
2225
+ borderColor: string;
2226
+ closeIconColor: string;
2227
+ closeIconColorHover: string;
2228
+ closeIconColorPressed: string;
2229
+ closeColorHover: string;
2230
+ closeColorPressed: string;
2231
+ clearColor: string;
2232
+ clearColorHover: string;
2233
+ clearColorPressed: string;
2234
+ scrollbarColor: string;
2235
+ scrollbarColorHover: string;
2236
+ scrollbarWidth: string;
2237
+ scrollbarHeight: string;
2238
+ scrollbarBorderRadius: string;
2239
+ progressRailColor: string;
2240
+ railColor: string;
2241
+ popoverColor: string;
2242
+ tableColor: string;
2243
+ cardColor: string;
2244
+ modalColor: string;
2245
+ bodyColor: string;
2246
+ tagColor: string;
2247
+ avatarColor: string;
2248
+ invertedColor: string;
2249
+ inputColor: string;
2250
+ codeColor: string;
2251
+ tabColor: string;
2252
+ actionColor: string;
2253
+ tableHeaderColor: string;
2254
+ hoverColor: string;
2255
+ tableColorHover: string;
2256
+ tableColorStriped: string;
2257
+ pressedColor: string;
2258
+ opacityDisabled: string;
2259
+ inputColorDisabled: string;
2260
+ buttonColor2: string;
2261
+ buttonColor2Hover: string;
2262
+ buttonColor2Pressed: string;
2263
+ boxShadow1: string;
2264
+ boxShadow2: string;
2265
+ boxShadow3: string;
2266
+ fontFamily: string;
2267
+ fontFamilyMono: string;
2268
+ fontWeight: string;
2269
+ fontWeightStrong: string;
2270
+ cubicBezierEaseInOut: string;
2271
+ cubicBezierEaseOut: string;
2272
+ cubicBezierEaseIn: string;
2273
+ borderRadius: string;
2274
+ borderRadiusSmall: string;
2275
+ fontSize: string;
2276
+ fontSizeMini: string;
2277
+ fontSizeTiny: string;
2278
+ fontSizeSmall: string;
2279
+ fontSizeMedium: string;
2280
+ fontSizeLarge: string;
2281
+ fontSizeHuge: string;
2282
+ lineHeight: string;
2283
+ heightMini: string;
2284
+ heightTiny: string;
2285
+ heightSmall: string;
2286
+ heightMedium: string;
2287
+ heightLarge: string;
2288
+ heightHuge: string;
2289
+ name: "common";
2290
+ };
2291
+ self: {
2292
+ borderRadius: string;
2293
+ boxShadow: string;
2294
+ color: string;
2295
+ textColor: string;
2296
+ padding: string;
2297
+ };
2298
+ peers: {
2299
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2300
+ fontSize: string;
2301
+ borderRadius: string;
2302
+ color: string;
2303
+ dividerColor: string;
2304
+ textColor: string;
2305
+ boxShadow: string;
2306
+ space: string;
2307
+ spaceArrow: string;
2308
+ arrowOffset: string;
2309
+ arrowOffsetVertical: string;
2310
+ arrowHeight: string;
2311
+ padding: string;
2312
+ }, any>;
2313
+ };
2314
+ peerOverrides: {
2315
+ Popover?: {
2316
+ peers?: {
2317
+ [x: string]: any;
2318
+ } | undefined;
2319
+ } | undefined;
2320
+ };
2321
+ }>;
2322
+ popoverThemeOverrides: import("vue").ComputedRef<{
2323
+ borderRadius: string;
2324
+ boxShadow: string;
2325
+ color: string;
2326
+ textColor: string;
2327
+ padding: string;
2328
+ }>;
2329
+ syncPosition: () => void;
2330
+ setShow: (value: boolean) => void;
2331
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2332
+ theme: PropType<import("naive-ui/es/_mixins").Theme<"Tooltip", {
2333
+ borderRadius: string;
2334
+ boxShadow: string;
2335
+ color: string;
2336
+ textColor: string;
2337
+ padding: string;
2338
+ }, {
2339
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2340
+ fontSize: string;
2341
+ borderRadius: string;
2342
+ color: string;
2343
+ dividerColor: string;
2344
+ textColor: string;
2345
+ boxShadow: string;
2346
+ space: string;
2347
+ spaceArrow: string;
2348
+ arrowOffset: string;
2349
+ arrowOffsetVertical: string;
2350
+ arrowHeight: string;
2351
+ padding: string;
2352
+ }, any>;
2353
+ }>>;
2354
+ themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
2355
+ borderRadius: string;
2356
+ boxShadow: string;
2357
+ color: string;
2358
+ textColor: string;
2359
+ padding: string;
2360
+ }, {
2361
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2362
+ fontSize: string;
2363
+ borderRadius: string;
2364
+ color: string;
2365
+ dividerColor: string;
2366
+ textColor: string;
2367
+ boxShadow: string;
2368
+ space: string;
2369
+ spaceArrow: string;
2370
+ arrowOffset: string;
2371
+ arrowOffsetVertical: string;
2372
+ arrowHeight: string;
2373
+ padding: string;
2374
+ }, any>;
2375
+ }>>>;
2376
+ builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
2377
+ borderRadius: string;
2378
+ boxShadow: string;
2379
+ color: string;
2380
+ textColor: string;
2381
+ padding: string;
2382
+ }, {
2383
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2384
+ fontSize: string;
2385
+ borderRadius: string;
2386
+ color: string;
2387
+ dividerColor: string;
2388
+ textColor: string;
2389
+ boxShadow: string;
2390
+ space: string;
2391
+ spaceArrow: string;
2392
+ arrowOffset: string;
2393
+ arrowOffsetVertical: string;
2394
+ arrowHeight: string;
2395
+ padding: string;
2396
+ }, any>;
2397
+ }>>>;
2398
+ show: {
2399
+ type: PropType<boolean | undefined>;
2400
+ default: undefined;
2401
+ };
2402
+ defaultShow: BooleanConstructor;
2403
+ showArrow: {
2404
+ type: BooleanConstructor;
2405
+ default: boolean;
2406
+ };
2407
+ trigger: {
2408
+ type: PropType<import("naive-ui").PopoverTrigger>;
2409
+ default: string;
2410
+ };
2411
+ delay: {
2412
+ type: NumberConstructor;
2413
+ default: number;
2414
+ };
2415
+ duration: {
2416
+ type: NumberConstructor;
2417
+ default: number;
2418
+ };
2419
+ raw: BooleanConstructor;
2420
+ placement: {
2421
+ type: PropType<import("naive-ui").PopoverPlacement>;
2422
+ default: string;
2423
+ };
2424
+ x: NumberConstructor;
2425
+ y: NumberConstructor;
2426
+ arrowPointToCenter: BooleanConstructor;
2427
+ disabled: BooleanConstructor;
2428
+ getDisabled: PropType<() => boolean>;
2429
+ displayDirective: {
2430
+ type: PropType<"show" | "if">;
2431
+ default: string;
2432
+ };
2433
+ arrowStyle: PropType<string | import("vue").CSSProperties>;
2434
+ flip: {
2435
+ type: BooleanConstructor;
2436
+ default: boolean;
2437
+ };
2438
+ animated: {
2439
+ type: BooleanConstructor;
2440
+ default: boolean;
2441
+ };
2442
+ width: {
2443
+ type: PropType<number | "trigger">;
2444
+ default: undefined;
2445
+ };
2446
+ overlap: BooleanConstructor;
2447
+ keepAliveOnHover: {
2448
+ type: BooleanConstructor;
2449
+ default: boolean;
2450
+ };
2451
+ zIndex: NumberConstructor;
2452
+ to: {
2453
+ type: PropType<string | boolean | HTMLElement>;
2454
+ default: undefined;
2455
+ };
2456
+ scrollable: BooleanConstructor;
2457
+ contentStyle: PropType<string | import("vue").CSSProperties>;
2458
+ headerStyle: PropType<string | import("vue").CSSProperties>;
2459
+ footerStyle: PropType<string | import("vue").CSSProperties>;
2460
+ onClickoutside: PropType<(e: MouseEvent) => void>;
2461
+ 'onUpdate:show': PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
2462
+ onUpdateShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
2463
+ internalDeactivateImmediately: BooleanConstructor;
2464
+ internalSyncTargetWithParent: BooleanConstructor;
2465
+ internalInheritedEventHandlers: {
2466
+ type: PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
2467
+ default: () => never[];
2468
+ };
2469
+ internalTrapFocus: BooleanConstructor;
2470
+ internalExtraClass: {
2471
+ type: PropType<string[]>;
2472
+ default: () => never[];
2473
+ };
2474
+ onShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
2475
+ onHide: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
2476
+ arrow: {
2477
+ type: PropType<boolean | undefined>;
2478
+ default: undefined;
2479
+ };
2480
+ minWidth: NumberConstructor;
2481
+ maxWidth: NumberConstructor;
2482
+ }>>, {
2483
+ show: boolean | undefined;
2484
+ flip: boolean;
2485
+ width: number | "trigger";
2486
+ disabled: boolean;
2487
+ duration: number;
2488
+ to: string | boolean | HTMLElement;
2489
+ raw: boolean;
2490
+ placement: import("naive-ui").PopoverPlacement;
2491
+ overlap: boolean;
2492
+ scrollable: boolean;
2493
+ trigger: import("naive-ui").PopoverTrigger;
2494
+ showArrow: boolean;
2495
+ delay: number;
2496
+ arrowPointToCenter: boolean;
2497
+ displayDirective: "show" | "if";
2498
+ keepAliveOnHover: boolean;
2499
+ internalDeactivateImmediately: boolean;
2500
+ animated: boolean;
2501
+ internalTrapFocus: boolean;
2502
+ defaultShow: boolean;
2503
+ internalSyncTargetWithParent: boolean;
2504
+ internalInheritedEventHandlers: import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[];
2505
+ internalExtraClass: string[];
2506
+ arrow: boolean | undefined;
2507
+ }>;
2508
+ draggable: import("vue").DefineComponent<{
2509
+ list: {
2510
+ type: ArrayConstructor;
2511
+ required: boolean;
2512
+ default: any;
2513
+ };
2514
+ modelValue: {
2515
+ type: ArrayConstructor;
2516
+ required: boolean;
2517
+ default: any;
2518
+ };
2519
+ itemKey: {
2520
+ type: (StringConstructor | FunctionConstructor)[];
2521
+ required: boolean;
2522
+ };
2523
+ clone: {
2524
+ type: FunctionConstructor;
2525
+ default: (original: any) => any;
2526
+ };
2527
+ tag: {
2528
+ type: StringConstructor;
2529
+ default: string;
2530
+ };
2531
+ move: {
2532
+ type: FunctionConstructor;
2533
+ default: any;
2534
+ };
2535
+ componentData: {
2536
+ type: ObjectConstructor;
2537
+ required: boolean;
2538
+ default: any;
2539
+ };
2540
+ }, unknown, {
2541
+ error: boolean;
2542
+ }, {
2543
+ realList(): any;
2544
+ getKey(): any;
2545
+ }, {
2546
+ getUnderlyingVm(domElement: any): any;
2547
+ getUnderlyingPotencialDraggableComponent(htmElement: any): any;
2548
+ emitChanges(evt: any): void;
2549
+ alterList(onList: any): void;
2550
+ spliceList(): void;
2551
+ updatePosition(oldIndex: any, newIndex: any): void;
2552
+ getRelatedContextFromMoveEvent({ to, related }: {
2553
+ to: any;
2554
+ related: any;
2555
+ }): any;
2556
+ getVmIndexFromDomIndex(domIndex: any): any;
2557
+ onDragStart(evt: any): void;
2558
+ onDragAdd(evt: any): void;
2559
+ onDragRemove(evt: any): void;
2560
+ onDragUpdate(evt: any): void;
2561
+ computeFutureIndex(relatedContext: any, evt: any): any;
2562
+ onDragMove(evt: any, originalEvent: any): any;
2563
+ onDragEnd(): void;
2564
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any[], any, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
2565
+ move: Function;
2566
+ tag: string;
2567
+ clone: Function;
2568
+ list: unknown[];
2569
+ modelValue: unknown[];
2570
+ componentData: Record<string, any>;
2571
+ } & {
2572
+ itemKey?: string | Function | undefined;
2573
+ }>, {
2574
+ move: Function;
2575
+ tag: string;
2576
+ clone: Function;
2577
+ list: unknown[];
2578
+ modelValue: unknown[];
2579
+ componentData: Record<string, any>;
2580
+ }>;
2581
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSave" | "onClose")[], "onSave" | "onClose", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2582
+ fields: {
2583
+ type: PropType<any[]>;
2584
+ default: () => never[];
2585
+ };
2586
+ menuSource: {
2587
+ type: StringConstructor;
2588
+ default: string;
2589
+ };
2590
+ drawerDirection: {
2591
+ type: StringConstructor;
2592
+ default: string;
2593
+ };
2594
+ footerFlag: {
2595
+ type: BooleanConstructor;
2596
+ default: boolean;
2597
+ };
2598
+ }>> & {
2599
+ onOnSave?: ((...args: any[]) => any) | undefined;
2600
+ onOnClose?: ((...args: any[]) => any) | undefined;
2601
+ }, {
2602
+ fields: any[];
2603
+ menuSource: string;
2604
+ drawerDirection: string;
2605
+ footerFlag: boolean;
2606
+ }>;
2607
+ export default _default;