base6-ui 1.1.8 → 1.1.10

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 (57) hide show
  1. package/dist/components/BaseDataTable/index.vue.d.ts +918 -7
  2. package/dist/components/BaseInputNumber/index.vue.d.ts +3 -8
  3. package/dist/components/BaseSelect/index.vue.d.ts +5 -0
  4. package/dist/config/themes/common.d.ts +2 -1
  5. package/dist/index.css +1 -1
  6. package/dist/index.umd.js +1 -1
  7. package/es/components/BaseDataTable/index.vue.d.ts +918 -7
  8. package/es/components/BaseDataTable/index.vue.mjs +1 -1
  9. package/es/components/BaseDataTable/index.vue2.mjs +62 -54
  10. package/es/components/BaseInputNumber/index.vue.d.ts +3 -8
  11. package/es/components/BaseInputNumber/index.vue.mjs +1 -1
  12. package/es/components/BaseInputNumber/index.vue2.mjs +44 -55
  13. package/es/components/BaseProductIntroduction/cssVar.mjs +13 -13
  14. package/es/components/BaseSelect/index.vue.d.ts +5 -0
  15. package/es/components/BaseSelect/index.vue.mjs +6 -57
  16. package/es/components/BaseSelect/index.vue2.mjs +65 -0
  17. package/es/config/themes/common.d.ts +2 -1
  18. package/es/config/themes/common.mjs +3 -2
  19. package/es/config/themes/components/button/dark.mjs +2 -1
  20. package/es/config/themes/components/dataTable/dark.mjs +1 -1
  21. package/es/config/themes/components/dataTable/light.mjs +1 -1
  22. package/es/config/themes/components/input/dark.mjs +5 -4
  23. package/es/config/themes/components/menu/dark.mjs +1 -0
  24. package/es/config/themes/components/menu/light.mjs +1 -0
  25. package/es/config/themes/components/select/dark.mjs +1 -1
  26. package/es/config/themes/components/tag/dark.mjs +1 -0
  27. package/es/config/themes/components/tag/light.mjs +3 -2
  28. package/es/hooks/useMenu.mjs +6 -6
  29. package/es/index.css +1 -1
  30. package/es/index.mjs +54 -55
  31. package/lib/components/BaseDataTable/index.vue.d.ts +918 -7
  32. package/lib/components/BaseDataTable/index.vue.js +1 -1
  33. package/lib/components/BaseDataTable/index.vue2.js +1 -1
  34. package/lib/components/BaseInputNumber/index.vue.d.ts +3 -8
  35. package/lib/components/BaseInputNumber/index.vue.js +1 -1
  36. package/lib/components/BaseInputNumber/index.vue2.js +1 -1
  37. package/lib/components/BaseProductIntroduction/cssVar.js +1 -1
  38. package/lib/components/BaseSelect/index.vue.d.ts +5 -0
  39. package/lib/components/BaseSelect/index.vue.js +1 -1
  40. package/lib/components/BaseSelect/index.vue2.js +1 -0
  41. package/lib/config/themes/common.d.ts +2 -1
  42. package/lib/config/themes/common.js +1 -1
  43. package/lib/config/themes/components/button/dark.js +1 -1
  44. package/lib/config/themes/components/dataTable/dark.js +1 -1
  45. package/lib/config/themes/components/dataTable/light.js +1 -1
  46. package/lib/config/themes/components/input/dark.js +1 -1
  47. package/lib/config/themes/components/menu/dark.js +1 -1
  48. package/lib/config/themes/components/menu/light.js +1 -1
  49. package/lib/config/themes/components/select/dark.js +1 -1
  50. package/lib/config/themes/components/tag/dark.js +1 -1
  51. package/lib/config/themes/components/tag/light.js +1 -1
  52. package/lib/hooks/useMenu.js +1 -1
  53. package/lib/index.css +1 -1
  54. package/lib/index.js +1 -1
  55. package/package.json +1 -1
  56. package/es/components/BaseSelect/index.vue3.mjs +0 -5
  57. package/lib/components/BaseSelect/index.vue3.js +0 -1
@@ -1,22 +1,933 @@
1
+ import { CSSProperties } from 'vue';
1
2
  import { DataTableProps } from 'naive-ui';
2
3
  type PropsType = {
3
4
  columns: DataTableProps['columns'];
4
5
  data: DataTableProps['data'];
5
6
  tableScroll?: boolean;
6
7
  pagination: DataTableProps['pagination'];
7
- bordered: DataTableProps['bordered'];
8
- singleColumn: DataTableProps['singleColumn'];
9
- striped: DataTableProps['striped'];
8
+ bordered?: DataTableProps['bordered'];
9
+ singleColumn?: DataTableProps['singleColumn'];
10
+ striped?: DataTableProps['striped'];
11
+ transparent?: boolean;
12
+ themeOverrides?: DataTableProps['themeOverrides'];
13
+ tableStyle?: CSSProperties | string;
14
+ tableClass?: string;
10
15
  };
11
16
  declare const _default: import('vue').DefineComponent<PropsType, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<PropsType> & Readonly<{}>, {
12
- bordered: DataTableProps["bordered"];
17
+ themeOverrides: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"DataTable", {
18
+ actionDividerColor: string;
19
+ lineHeight: string;
20
+ borderRadius: string;
21
+ fontSizeSmall: string;
22
+ fontSizeMedium: string;
23
+ fontSizeLarge: string;
24
+ borderColor: string;
25
+ tdColorHover: string;
26
+ tdColorSorting: string;
27
+ tdColorStriped: string;
28
+ thColor: string;
29
+ thColorHover: string;
30
+ thColorSorting: string;
31
+ tdColor: string;
32
+ tdTextColor: string;
33
+ thTextColor: string;
34
+ thFontWeight: string;
35
+ thButtonColorHover: string;
36
+ thIconColor: string;
37
+ thIconColorActive: string;
38
+ borderColorModal: string;
39
+ tdColorHoverModal: string;
40
+ tdColorSortingModal: string;
41
+ tdColorStripedModal: string;
42
+ thColorModal: string;
43
+ thColorHoverModal: string;
44
+ thColorSortingModal: string;
45
+ tdColorModal: string;
46
+ borderColorPopover: string;
47
+ tdColorHoverPopover: string;
48
+ tdColorSortingPopover: string;
49
+ tdColorStripedPopover: string;
50
+ thColorPopover: string;
51
+ thColorHoverPopover: string;
52
+ thColorSortingPopover: string;
53
+ tdColorPopover: string;
54
+ boxShadowBefore: string;
55
+ boxShadowAfter: string;
56
+ loadingColor: string;
57
+ loadingSize: string;
58
+ opacityLoading: string;
59
+ thPaddingSmall: string;
60
+ thPaddingMedium: string;
61
+ thPaddingLarge: string;
62
+ tdPaddingSmall: string;
63
+ tdPaddingMedium: string;
64
+ tdPaddingLarge: string;
65
+ sorterSize: string;
66
+ resizableContainerSize: string;
67
+ resizableSize: string;
68
+ filterSize: string;
69
+ paginationMargin: string;
70
+ emptyPadding: string;
71
+ actionPadding: string;
72
+ actionButtonMargin: string;
73
+ }, {
74
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
75
+ heightTiny: string;
76
+ heightSmall: string;
77
+ heightMedium: string;
78
+ heightLarge: string;
79
+ borderRadiusTiny: string;
80
+ borderRadiusSmall: string;
81
+ borderRadiusMedium: string;
82
+ borderRadiusLarge: string;
83
+ fontSizeTiny: string;
84
+ fontSizeSmall: string;
85
+ fontSizeMedium: string;
86
+ fontSizeLarge: string;
87
+ opacityDisabled: string;
88
+ colorOpacitySecondary: string;
89
+ colorOpacitySecondaryHover: string;
90
+ colorOpacitySecondaryPressed: string;
91
+ colorSecondary: string;
92
+ colorSecondaryHover: string;
93
+ colorSecondaryPressed: string;
94
+ colorTertiary: string;
95
+ colorTertiaryHover: string;
96
+ colorTertiaryPressed: string;
97
+ colorQuaternary: string;
98
+ colorQuaternaryHover: string;
99
+ colorQuaternaryPressed: string;
100
+ color: string;
101
+ colorHover: string;
102
+ colorPressed: string;
103
+ colorFocus: string;
104
+ colorDisabled: string;
105
+ textColor: string;
106
+ textColorTertiary: string;
107
+ textColorHover: string;
108
+ textColorPressed: string;
109
+ textColorFocus: string;
110
+ textColorDisabled: string;
111
+ textColorText: string;
112
+ textColorTextHover: string;
113
+ textColorTextPressed: string;
114
+ textColorTextFocus: string;
115
+ textColorTextDisabled: string;
116
+ textColorGhost: string;
117
+ textColorGhostHover: string;
118
+ textColorGhostPressed: string;
119
+ textColorGhostFocus: string;
120
+ textColorGhostDisabled: string;
121
+ border: string;
122
+ borderHover: string;
123
+ borderPressed: string;
124
+ borderFocus: string;
125
+ borderDisabled: string;
126
+ rippleColor: string;
127
+ colorPrimary: string;
128
+ colorHoverPrimary: string;
129
+ colorPressedPrimary: string;
130
+ colorFocusPrimary: string;
131
+ colorDisabledPrimary: string;
132
+ textColorPrimary: string;
133
+ textColorHoverPrimary: string;
134
+ textColorPressedPrimary: string;
135
+ textColorFocusPrimary: string;
136
+ textColorDisabledPrimary: string;
137
+ textColorTextPrimary: string;
138
+ textColorTextHoverPrimary: string;
139
+ textColorTextPressedPrimary: string;
140
+ textColorTextFocusPrimary: string;
141
+ textColorTextDisabledPrimary: string;
142
+ textColorGhostPrimary: string;
143
+ textColorGhostHoverPrimary: string;
144
+ textColorGhostPressedPrimary: string;
145
+ textColorGhostFocusPrimary: string;
146
+ textColorGhostDisabledPrimary: string;
147
+ borderPrimary: string;
148
+ borderHoverPrimary: string;
149
+ borderPressedPrimary: string;
150
+ borderFocusPrimary: string;
151
+ borderDisabledPrimary: string;
152
+ rippleColorPrimary: string;
153
+ colorInfo: string;
154
+ colorHoverInfo: string;
155
+ colorPressedInfo: string;
156
+ colorFocusInfo: string;
157
+ colorDisabledInfo: string;
158
+ textColorInfo: string;
159
+ textColorHoverInfo: string;
160
+ textColorPressedInfo: string;
161
+ textColorFocusInfo: string;
162
+ textColorDisabledInfo: string;
163
+ textColorTextInfo: string;
164
+ textColorTextHoverInfo: string;
165
+ textColorTextPressedInfo: string;
166
+ textColorTextFocusInfo: string;
167
+ textColorTextDisabledInfo: string;
168
+ textColorGhostInfo: string;
169
+ textColorGhostHoverInfo: string;
170
+ textColorGhostPressedInfo: string;
171
+ textColorGhostFocusInfo: string;
172
+ textColorGhostDisabledInfo: string;
173
+ borderInfo: string;
174
+ borderHoverInfo: string;
175
+ borderPressedInfo: string;
176
+ borderFocusInfo: string;
177
+ borderDisabledInfo: string;
178
+ rippleColorInfo: string;
179
+ colorSuccess: string;
180
+ colorHoverSuccess: string;
181
+ colorPressedSuccess: string;
182
+ colorFocusSuccess: string;
183
+ colorDisabledSuccess: string;
184
+ textColorSuccess: string;
185
+ textColorHoverSuccess: string;
186
+ textColorPressedSuccess: string;
187
+ textColorFocusSuccess: string;
188
+ textColorDisabledSuccess: string;
189
+ textColorTextSuccess: string;
190
+ textColorTextHoverSuccess: string;
191
+ textColorTextPressedSuccess: string;
192
+ textColorTextFocusSuccess: string;
193
+ textColorTextDisabledSuccess: string;
194
+ textColorGhostSuccess: string;
195
+ textColorGhostHoverSuccess: string;
196
+ textColorGhostPressedSuccess: string;
197
+ textColorGhostFocusSuccess: string;
198
+ textColorGhostDisabledSuccess: string;
199
+ borderSuccess: string;
200
+ borderHoverSuccess: string;
201
+ borderPressedSuccess: string;
202
+ borderFocusSuccess: string;
203
+ borderDisabledSuccess: string;
204
+ rippleColorSuccess: string;
205
+ colorWarning: string;
206
+ colorHoverWarning: string;
207
+ colorPressedWarning: string;
208
+ colorFocusWarning: string;
209
+ colorDisabledWarning: string;
210
+ textColorWarning: string;
211
+ textColorHoverWarning: string;
212
+ textColorPressedWarning: string;
213
+ textColorFocusWarning: string;
214
+ textColorDisabledWarning: string;
215
+ textColorTextWarning: string;
216
+ textColorTextHoverWarning: string;
217
+ textColorTextPressedWarning: string;
218
+ textColorTextFocusWarning: string;
219
+ textColorTextDisabledWarning: string;
220
+ textColorGhostWarning: string;
221
+ textColorGhostHoverWarning: string;
222
+ textColorGhostPressedWarning: string;
223
+ textColorGhostFocusWarning: string;
224
+ textColorGhostDisabledWarning: string;
225
+ borderWarning: string;
226
+ borderHoverWarning: string;
227
+ borderPressedWarning: string;
228
+ borderFocusWarning: string;
229
+ borderDisabledWarning: string;
230
+ rippleColorWarning: string;
231
+ colorError: string;
232
+ colorHoverError: string;
233
+ colorPressedError: string;
234
+ colorFocusError: string;
235
+ colorDisabledError: string;
236
+ textColorError: string;
237
+ textColorHoverError: string;
238
+ textColorPressedError: string;
239
+ textColorFocusError: string;
240
+ textColorDisabledError: string;
241
+ textColorTextError: string;
242
+ textColorTextHoverError: string;
243
+ textColorTextPressedError: string;
244
+ textColorTextFocusError: string;
245
+ textColorTextDisabledError: string;
246
+ textColorGhostError: string;
247
+ textColorGhostHoverError: string;
248
+ textColorGhostPressedError: string;
249
+ textColorGhostFocusError: string;
250
+ textColorGhostDisabledError: string;
251
+ borderError: string;
252
+ borderHoverError: string;
253
+ borderPressedError: string;
254
+ borderFocusError: string;
255
+ borderDisabledError: string;
256
+ rippleColorError: string;
257
+ waveOpacity: string;
258
+ fontWeight: string;
259
+ fontWeightStrong: string;
260
+ paddingTiny: string;
261
+ paddingSmall: string;
262
+ paddingMedium: string;
263
+ paddingLarge: string;
264
+ paddingRoundTiny: string;
265
+ paddingRoundSmall: string;
266
+ paddingRoundMedium: string;
267
+ paddingRoundLarge: string;
268
+ iconMarginTiny: string;
269
+ iconMarginSmall: string;
270
+ iconMarginMedium: string;
271
+ iconMarginLarge: string;
272
+ iconSizeTiny: string;
273
+ iconSizeSmall: string;
274
+ iconSizeMedium: string;
275
+ iconSizeLarge: string;
276
+ rippleDuration: string;
277
+ }, any>;
278
+ Checkbox: import('naive-ui/es/_mixins').Theme<"Checkbox", {
279
+ labelLineHeight: string;
280
+ fontSizeSmall: string;
281
+ fontSizeMedium: string;
282
+ fontSizeLarge: string;
283
+ borderRadius: string;
284
+ color: string;
285
+ colorChecked: string;
286
+ colorDisabled: string;
287
+ colorDisabledChecked: string;
288
+ colorTableHeader: string;
289
+ colorTableHeaderModal: string;
290
+ colorTableHeaderPopover: string;
291
+ checkMarkColor: string;
292
+ checkMarkColorDisabled: string;
293
+ checkMarkColorDisabledChecked: string;
294
+ border: string;
295
+ borderDisabled: string;
296
+ borderDisabledChecked: string;
297
+ borderChecked: string;
298
+ borderFocus: string;
299
+ boxShadowFocus: string;
300
+ textColor: string;
301
+ textColorDisabled: string;
302
+ sizeSmall: string;
303
+ sizeMedium: string;
304
+ sizeLarge: string;
305
+ labelPadding: string;
306
+ labelFontWeight: string;
307
+ }, any>;
308
+ Radio: import('naive-ui/es/_mixins').Theme<"Radio", {
309
+ labelLineHeight: string;
310
+ buttonHeightSmall: string;
311
+ buttonHeightMedium: string;
312
+ buttonHeightLarge: string;
313
+ fontSizeSmall: string;
314
+ fontSizeMedium: string;
315
+ fontSizeLarge: string;
316
+ boxShadow: string;
317
+ boxShadowActive: string;
318
+ boxShadowFocus: string;
319
+ boxShadowHover: string;
320
+ boxShadowDisabled: string;
321
+ color: string;
322
+ colorDisabled: string;
323
+ colorActive: string;
324
+ textColor: string;
325
+ textColorDisabled: string;
326
+ dotColorActive: string;
327
+ dotColorDisabled: string;
328
+ buttonBorderColor: string;
329
+ buttonBorderColorActive: string;
330
+ buttonBorderColorHover: string;
331
+ buttonColor: string;
332
+ buttonColorActive: string;
333
+ buttonTextColor: string;
334
+ buttonTextColorActive: string;
335
+ buttonTextColorHover: string;
336
+ opacityDisabled: string;
337
+ buttonBoxShadowFocus: string;
338
+ buttonBoxShadowHover: string;
339
+ buttonBoxShadow: string;
340
+ buttonBorderRadius: string;
341
+ radioSizeSmall: string;
342
+ radioSizeMedium: string;
343
+ radioSizeLarge: string;
344
+ labelPadding: string;
345
+ labelFontWeight: string;
346
+ }, any>;
347
+ Pagination: import('naive-ui/es/_mixins').Theme<"Pagination", {
348
+ buttonColor: string;
349
+ buttonColorHover: string;
350
+ buttonColorPressed: string;
351
+ buttonBorder: string;
352
+ buttonBorderHover: string;
353
+ buttonBorderPressed: string;
354
+ buttonIconColor: string;
355
+ buttonIconColorHover: string;
356
+ buttonIconColorPressed: string;
357
+ itemTextColor: string;
358
+ itemTextColorHover: string;
359
+ itemTextColorPressed: string;
360
+ itemTextColorActive: string;
361
+ itemTextColorDisabled: string;
362
+ itemColor: string;
363
+ itemColorHover: string;
364
+ itemColorPressed: string;
365
+ itemColorActive: string;
366
+ itemColorActiveHover: string;
367
+ itemColorDisabled: string;
368
+ itemBorder: string;
369
+ itemBorderHover: string;
370
+ itemBorderPressed: string;
371
+ itemBorderActive: string;
372
+ itemBorderDisabled: string;
373
+ itemBorderRadius: string;
374
+ itemSizeSmall: string;
375
+ itemSizeMedium: string;
376
+ itemSizeLarge: string;
377
+ itemFontSizeSmall: string;
378
+ itemFontSizeMedium: string;
379
+ itemFontSizeLarge: string;
380
+ jumperFontSizeSmall: string;
381
+ jumperFontSizeMedium: string;
382
+ jumperFontSizeLarge: string;
383
+ jumperTextColor: string;
384
+ jumperTextColorDisabled: string;
385
+ itemPaddingSmall: string;
386
+ itemMarginSmall: string;
387
+ itemMarginSmallRtl: string;
388
+ itemPaddingMedium: string;
389
+ itemMarginMedium: string;
390
+ itemMarginMediumRtl: string;
391
+ itemPaddingLarge: string;
392
+ itemMarginLarge: string;
393
+ itemMarginLargeRtl: string;
394
+ buttonIconSizeSmall: string;
395
+ buttonIconSizeMedium: string;
396
+ buttonIconSizeLarge: string;
397
+ inputWidthSmall: string;
398
+ selectWidthSmall: string;
399
+ inputMarginSmall: string;
400
+ inputMarginSmallRtl: string;
401
+ selectMarginSmall: string;
402
+ prefixMarginSmall: string;
403
+ suffixMarginSmall: string;
404
+ inputWidthMedium: string;
405
+ selectWidthMedium: string;
406
+ inputMarginMedium: string;
407
+ inputMarginMediumRtl: string;
408
+ selectMarginMedium: string;
409
+ prefixMarginMedium: string;
410
+ suffixMarginMedium: string;
411
+ inputWidthLarge: string;
412
+ selectWidthLarge: string;
413
+ inputMarginLarge: string;
414
+ inputMarginLargeRtl: string;
415
+ selectMarginLarge: string;
416
+ prefixMarginLarge: string;
417
+ suffixMarginLarge: string;
418
+ }, {
419
+ Select: import('naive-ui/es/_mixins').Theme<"Select", {
420
+ menuBoxShadow: string;
421
+ }, {
422
+ InternalSelection: import('naive-ui/es/_mixins').Theme<"InternalSelection", {
423
+ fontSizeTiny: string;
424
+ fontSizeSmall: string;
425
+ fontSizeMedium: string;
426
+ fontSizeLarge: string;
427
+ heightTiny: string;
428
+ heightSmall: string;
429
+ heightMedium: string;
430
+ heightLarge: string;
431
+ borderRadius: string;
432
+ fontWeight: string;
433
+ textColor: string;
434
+ textColorDisabled: string;
435
+ placeholderColor: string;
436
+ placeholderColorDisabled: string;
437
+ color: string;
438
+ colorDisabled: string;
439
+ colorActive: string;
440
+ border: string;
441
+ borderHover: string;
442
+ borderActive: string;
443
+ borderFocus: string;
444
+ boxShadowHover: string;
445
+ boxShadowActive: string;
446
+ boxShadowFocus: string;
447
+ caretColor: string;
448
+ arrowColor: string;
449
+ arrowColorDisabled: string;
450
+ loadingColor: string;
451
+ borderWarning: string;
452
+ borderHoverWarning: string;
453
+ borderActiveWarning: string;
454
+ borderFocusWarning: string;
455
+ boxShadowHoverWarning: string;
456
+ boxShadowActiveWarning: string;
457
+ boxShadowFocusWarning: string;
458
+ colorActiveWarning: string;
459
+ caretColorWarning: string;
460
+ borderError: string;
461
+ borderHoverError: string;
462
+ borderActiveError: string;
463
+ borderFocusError: string;
464
+ boxShadowHoverError: string;
465
+ boxShadowActiveError: string;
466
+ boxShadowFocusError: string;
467
+ colorActiveError: string;
468
+ caretColorError: string;
469
+ clearColor: string;
470
+ clearColorHover: string;
471
+ clearColorPressed: string;
472
+ paddingSingle: string;
473
+ paddingMultiple: string;
474
+ clearSize: string;
475
+ arrowSize: string;
476
+ }, {
477
+ Popover: import('naive-ui/es/_mixins').Theme<"Popover", {
478
+ fontSize: string;
479
+ borderRadius: string;
480
+ color: string;
481
+ dividerColor: string;
482
+ textColor: string;
483
+ boxShadow: string;
484
+ space: string;
485
+ spaceArrow: string;
486
+ arrowOffset: string;
487
+ arrowOffsetVertical: string;
488
+ arrowHeight: string;
489
+ padding: string;
490
+ }, {
491
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
492
+ height: string;
493
+ width: string;
494
+ borderRadius: string;
495
+ color: string;
496
+ colorHover: string;
497
+ railInsetHorizontalBottom: string;
498
+ railInsetHorizontalTop: string;
499
+ railInsetVerticalRight: string;
500
+ railInsetVerticalLeft: string;
501
+ railColor: string;
502
+ }, any>;
503
+ }>;
504
+ }>;
505
+ InternalSelectMenu: import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
506
+ optionFontSizeTiny: string;
507
+ optionFontSizeSmall: string;
508
+ optionFontSizeMedium: string;
509
+ optionFontSizeLarge: string;
510
+ optionFontSizeHuge: string;
511
+ optionHeightTiny: string;
512
+ optionHeightSmall: string;
513
+ optionHeightMedium: string;
514
+ optionHeightLarge: string;
515
+ optionHeightHuge: string;
516
+ borderRadius: string;
517
+ color: string;
518
+ groupHeaderTextColor: string;
519
+ actionDividerColor: string;
520
+ optionTextColor: string;
521
+ optionTextColorPressed: string;
522
+ optionTextColorDisabled: string;
523
+ optionTextColorActive: string;
524
+ optionOpacityDisabled: string;
525
+ optionCheckColor: string;
526
+ optionColorPending: string;
527
+ optionColorActive: string;
528
+ optionColorActivePending: string;
529
+ actionTextColor: string;
530
+ loadingColor: string;
531
+ height: string;
532
+ paddingTiny: string;
533
+ paddingSmall: string;
534
+ paddingMedium: string;
535
+ paddingLarge: string;
536
+ paddingHuge: string;
537
+ optionPaddingTiny: string;
538
+ optionPaddingSmall: string;
539
+ optionPaddingMedium: string;
540
+ optionPaddingLarge: string;
541
+ optionPaddingHuge: string;
542
+ loadingSize: string;
543
+ }, {
544
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
545
+ height: string;
546
+ width: string;
547
+ borderRadius: string;
548
+ color: string;
549
+ colorHover: string;
550
+ railInsetHorizontalBottom: string;
551
+ railInsetHorizontalTop: string;
552
+ railInsetVerticalRight: string;
553
+ railInsetVerticalLeft: string;
554
+ railColor: string;
555
+ }, any>;
556
+ Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
557
+ fontSizeTiny: string;
558
+ fontSizeSmall: string;
559
+ fontSizeMedium: string;
560
+ fontSizeLarge: string;
561
+ fontSizeHuge: string;
562
+ textColor: string;
563
+ iconColor: string;
564
+ extraTextColor: string;
565
+ iconSizeTiny: string;
566
+ iconSizeSmall: string;
567
+ iconSizeMedium: string;
568
+ iconSizeLarge: string;
569
+ iconSizeHuge: string;
570
+ }, any>;
571
+ }>;
572
+ }>;
573
+ Input: import('naive-ui/es/_mixins').Theme<"Input", {
574
+ fontWeight: string;
575
+ countTextColorDisabled: string;
576
+ countTextColor: string;
577
+ heightTiny: string;
578
+ heightSmall: string;
579
+ heightMedium: string;
580
+ heightLarge: string;
581
+ fontSizeTiny: string;
582
+ fontSizeSmall: string;
583
+ fontSizeMedium: string;
584
+ fontSizeLarge: string;
585
+ lineHeight: string;
586
+ lineHeightTextarea: string;
587
+ borderRadius: string;
588
+ iconSize: string;
589
+ groupLabelColor: string;
590
+ groupLabelTextColor: string;
591
+ textColor: string;
592
+ textColorDisabled: string;
593
+ textDecorationColor: string;
594
+ caretColor: string;
595
+ placeholderColor: string;
596
+ placeholderColorDisabled: string;
597
+ color: string;
598
+ colorDisabled: string;
599
+ colorFocus: string;
600
+ groupLabelBorder: string;
601
+ border: string;
602
+ borderHover: string;
603
+ borderDisabled: string;
604
+ borderFocus: string;
605
+ boxShadowFocus: string;
606
+ loadingColor: string;
607
+ loadingColorWarning: string;
608
+ borderWarning: string;
609
+ borderHoverWarning: string;
610
+ colorFocusWarning: string;
611
+ borderFocusWarning: string;
612
+ boxShadowFocusWarning: string;
613
+ caretColorWarning: string;
614
+ loadingColorError: string;
615
+ borderError: string;
616
+ borderHoverError: string;
617
+ colorFocusError: string;
618
+ borderFocusError: string;
619
+ boxShadowFocusError: string;
620
+ caretColorError: string;
621
+ clearColor: string;
622
+ clearColorHover: string;
623
+ clearColorPressed: string;
624
+ iconColor: string;
625
+ iconColorDisabled: string;
626
+ iconColorHover: string;
627
+ iconColorPressed: string;
628
+ suffixTextColor: string;
629
+ paddingTiny: string;
630
+ paddingSmall: string;
631
+ paddingMedium: string;
632
+ paddingLarge: string;
633
+ clearSize: string;
634
+ }, {
635
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
636
+ height: string;
637
+ width: string;
638
+ borderRadius: string;
639
+ color: string;
640
+ colorHover: string;
641
+ railInsetHorizontalBottom: string;
642
+ railInsetHorizontalTop: string;
643
+ railInsetVerticalRight: string;
644
+ railInsetVerticalLeft: string;
645
+ railColor: string;
646
+ }, any>;
647
+ }>;
648
+ Popselect: import('naive-ui/es/_mixins').Theme<"Popselect", {
649
+ menuBoxShadow: string;
650
+ }, {
651
+ Popover: import('naive-ui/es/_mixins').Theme<"Popover", {
652
+ fontSize: string;
653
+ borderRadius: string;
654
+ color: string;
655
+ dividerColor: string;
656
+ textColor: string;
657
+ boxShadow: string;
658
+ space: string;
659
+ spaceArrow: string;
660
+ arrowOffset: string;
661
+ arrowOffsetVertical: string;
662
+ arrowHeight: string;
663
+ padding: string;
664
+ }, {
665
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
666
+ height: string;
667
+ width: string;
668
+ borderRadius: string;
669
+ color: string;
670
+ colorHover: string;
671
+ railInsetHorizontalBottom: string;
672
+ railInsetHorizontalTop: string;
673
+ railInsetVerticalRight: string;
674
+ railInsetVerticalLeft: string;
675
+ railColor: string;
676
+ }, any>;
677
+ }>;
678
+ InternalSelectMenu: import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
679
+ optionFontSizeTiny: string;
680
+ optionFontSizeSmall: string;
681
+ optionFontSizeMedium: string;
682
+ optionFontSizeLarge: string;
683
+ optionFontSizeHuge: string;
684
+ optionHeightTiny: string;
685
+ optionHeightSmall: string;
686
+ optionHeightMedium: string;
687
+ optionHeightLarge: string;
688
+ optionHeightHuge: string;
689
+ borderRadius: string;
690
+ color: string;
691
+ groupHeaderTextColor: string;
692
+ actionDividerColor: string;
693
+ optionTextColor: string;
694
+ optionTextColorPressed: string;
695
+ optionTextColorDisabled: string;
696
+ optionTextColorActive: string;
697
+ optionOpacityDisabled: string;
698
+ optionCheckColor: string;
699
+ optionColorPending: string;
700
+ optionColorActive: string;
701
+ optionColorActivePending: string;
702
+ actionTextColor: string;
703
+ loadingColor: string;
704
+ height: string;
705
+ paddingTiny: string;
706
+ paddingSmall: string;
707
+ paddingMedium: string;
708
+ paddingLarge: string;
709
+ paddingHuge: string;
710
+ optionPaddingTiny: string;
711
+ optionPaddingSmall: string;
712
+ optionPaddingMedium: string;
713
+ optionPaddingLarge: string;
714
+ optionPaddingHuge: string;
715
+ loadingSize: string;
716
+ }, {
717
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
718
+ height: string;
719
+ width: string;
720
+ borderRadius: string;
721
+ color: string;
722
+ colorHover: string;
723
+ railInsetHorizontalBottom: string;
724
+ railInsetHorizontalTop: string;
725
+ railInsetVerticalRight: string;
726
+ railInsetVerticalLeft: string;
727
+ railColor: string;
728
+ }, any>;
729
+ Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
730
+ fontSizeTiny: string;
731
+ fontSizeSmall: string;
732
+ fontSizeMedium: string;
733
+ fontSizeLarge: string;
734
+ fontSizeHuge: string;
735
+ textColor: string;
736
+ iconColor: string;
737
+ extraTextColor: string;
738
+ iconSizeTiny: string;
739
+ iconSizeSmall: string;
740
+ iconSizeMedium: string;
741
+ iconSizeLarge: string;
742
+ iconSizeHuge: string;
743
+ }, any>;
744
+ }>;
745
+ }>;
746
+ }>;
747
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
748
+ height: string;
749
+ width: string;
750
+ borderRadius: string;
751
+ color: string;
752
+ colorHover: string;
753
+ railInsetHorizontalBottom: string;
754
+ railInsetHorizontalTop: string;
755
+ railInsetVerticalRight: string;
756
+ railInsetVerticalLeft: string;
757
+ railColor: string;
758
+ }, any>;
759
+ Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
760
+ fontSizeTiny: string;
761
+ fontSizeSmall: string;
762
+ fontSizeMedium: string;
763
+ fontSizeLarge: string;
764
+ fontSizeHuge: string;
765
+ textColor: string;
766
+ iconColor: string;
767
+ extraTextColor: string;
768
+ iconSizeTiny: string;
769
+ iconSizeSmall: string;
770
+ iconSizeMedium: string;
771
+ iconSizeLarge: string;
772
+ iconSizeHuge: string;
773
+ }, any>;
774
+ Popover: import('naive-ui/es/_mixins').Theme<"Popover", {
775
+ fontSize: string;
776
+ borderRadius: string;
777
+ color: string;
778
+ dividerColor: string;
779
+ textColor: string;
780
+ boxShadow: string;
781
+ space: string;
782
+ spaceArrow: string;
783
+ arrowOffset: string;
784
+ arrowOffsetVertical: string;
785
+ arrowHeight: string;
786
+ padding: string;
787
+ }, {
788
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
789
+ height: string;
790
+ width: string;
791
+ borderRadius: string;
792
+ color: string;
793
+ colorHover: string;
794
+ railInsetHorizontalBottom: string;
795
+ railInsetHorizontalTop: string;
796
+ railInsetVerticalRight: string;
797
+ railInsetVerticalLeft: string;
798
+ railColor: string;
799
+ }, any>;
800
+ }>;
801
+ Ellipsis: import('naive-ui/es/_mixins').Theme<"Ellipsis", unknown, {
802
+ Tooltip: import('naive-ui/es/_mixins').Theme<"Tooltip", {
803
+ borderRadius: string;
804
+ boxShadow: string;
805
+ color: string;
806
+ textColor: string;
807
+ padding: string;
808
+ }, {
809
+ Popover: import('naive-ui/es/_mixins').Theme<"Popover", {
810
+ fontSize: string;
811
+ borderRadius: string;
812
+ color: string;
813
+ dividerColor: string;
814
+ textColor: string;
815
+ boxShadow: string;
816
+ space: string;
817
+ spaceArrow: string;
818
+ arrowOffset: string;
819
+ arrowOffsetVertical: string;
820
+ arrowHeight: string;
821
+ padding: string;
822
+ }, {
823
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
824
+ height: string;
825
+ width: string;
826
+ borderRadius: string;
827
+ color: string;
828
+ colorHover: string;
829
+ railInsetHorizontalBottom: string;
830
+ railInsetHorizontalTop: string;
831
+ railInsetVerticalRight: string;
832
+ railInsetVerticalLeft: string;
833
+ railColor: string;
834
+ }, any>;
835
+ }>;
836
+ }>;
837
+ }>;
838
+ Dropdown: import('naive-ui/es/_mixins').Theme<"Dropdown", {
839
+ optionHeightSmall: string;
840
+ optionHeightMedium: string;
841
+ optionHeightLarge: string;
842
+ optionHeightHuge: string;
843
+ borderRadius: string;
844
+ fontSizeSmall: string;
845
+ fontSizeMedium: string;
846
+ fontSizeLarge: string;
847
+ fontSizeHuge: string;
848
+ optionTextColor: string;
849
+ optionTextColorHover: string;
850
+ optionTextColorActive: string;
851
+ optionTextColorChildActive: string;
852
+ color: string;
853
+ dividerColor: string;
854
+ suffixColor: string;
855
+ prefixColor: string;
856
+ optionColorHover: string;
857
+ optionColorActive: string;
858
+ groupHeaderTextColor: string;
859
+ optionTextColorInverted: string;
860
+ optionTextColorHoverInverted: string;
861
+ optionTextColorActiveInverted: string;
862
+ optionTextColorChildActiveInverted: string;
863
+ colorInverted: string;
864
+ dividerColorInverted: string;
865
+ suffixColorInverted: string;
866
+ prefixColorInverted: string;
867
+ optionColorHoverInverted: string;
868
+ optionColorActiveInverted: string;
869
+ groupHeaderTextColorInverted: string;
870
+ optionOpacityDisabled: string;
871
+ padding: string;
872
+ optionIconSizeSmall: string;
873
+ optionIconSizeMedium: string;
874
+ optionIconSizeLarge: string;
875
+ optionIconSizeHuge: string;
876
+ optionSuffixWidthSmall: string;
877
+ optionSuffixWidthMedium: string;
878
+ optionSuffixWidthLarge: string;
879
+ optionSuffixWidthHuge: string;
880
+ optionIconSuffixWidthSmall: string;
881
+ optionIconSuffixWidthMedium: string;
882
+ optionIconSuffixWidthLarge: string;
883
+ optionIconSuffixWidthHuge: string;
884
+ optionPrefixWidthSmall: string;
885
+ optionPrefixWidthMedium: string;
886
+ optionPrefixWidthLarge: string;
887
+ optionPrefixWidthHuge: string;
888
+ optionIconPrefixWidthSmall: string;
889
+ optionIconPrefixWidthMedium: string;
890
+ optionIconPrefixWidthLarge: string;
891
+ optionIconPrefixWidthHuge: string;
892
+ }, {
893
+ Popover: import('naive-ui/es/_mixins').Theme<"Popover", {
894
+ fontSize: string;
895
+ borderRadius: string;
896
+ color: string;
897
+ dividerColor: string;
898
+ textColor: string;
899
+ boxShadow: string;
900
+ space: string;
901
+ spaceArrow: string;
902
+ arrowOffset: string;
903
+ arrowOffsetVertical: string;
904
+ arrowHeight: string;
905
+ padding: string;
906
+ }, {
907
+ Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
908
+ height: string;
909
+ width: string;
910
+ borderRadius: string;
911
+ color: string;
912
+ colorHover: string;
913
+ railInsetHorizontalBottom: string;
914
+ railInsetHorizontalTop: string;
915
+ railInsetVerticalRight: string;
916
+ railInsetVerticalLeft: string;
917
+ railColor: string;
918
+ }, any>;
919
+ }>;
920
+ }>;
921
+ }>>;
922
+ bordered: boolean;
13
923
  data: DataTableProps["data"];
14
924
  pagination: DataTableProps["pagination"];
15
925
  columns: DataTableProps["columns"];
16
- striped: DataTableProps["striped"];
17
- singleColumn: DataTableProps["singleColumn"];
926
+ striped: boolean;
927
+ singleColumn: boolean;
18
928
  tableScroll: boolean;
929
+ transparent: boolean;
19
930
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
20
931
  dataTableWrapRef: HTMLDivElement;
21
- }, any>;
932
+ }, HTMLDivElement>;
22
933
  export default _default;