@unizhen/ui 0.0.26 → 0.0.28
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.
- package/lib/components/back/index.vue.d.ts +1 -1
- package/lib/components/camera/index.vue.d.ts +23 -11
- package/lib/components/circle/index.vue.d.ts +91 -13
- package/lib/components/components.d.ts +0 -1
- package/lib/components/fetch.d.ts +1 -1
- package/lib/components/form/draggable.vue.d.ts +1153 -152
- package/lib/components/form/image.vue.d.ts +311 -46
- package/lib/components/form/index.vue.d.ts +1153 -152
- package/lib/components/form/interface.d.ts +1 -0
- package/lib/components/form/item.vue.d.ts +1145 -152
- package/lib/components/form/upload.vue.d.ts +304 -46
- package/lib/components/searchBar/components/timePickRange.vue.d.ts +114 -12
- package/lib/components/searchBar/index.vue.d.ts +1459 -213
- package/lib/components/searchBar/mobile.vue.d.ts +1241 -177
- package/lib/components/spin/index.vue.d.ts +113 -9
- package/lib/components/table/child.vue.d.ts +677 -56
- package/lib/components/table/child_quest.vue.d.ts +675 -54
- package/lib/components/table/drawer.vue.d.ts +7 -6
- package/lib/components/table/index.vue.d.ts +892 -88
- package/lib/components/table/mobile.vue.d.ts +334 -24
- package/lib/components/table/ocr.vue.d.ts +2 -1
- package/lib/components/thumbnail/index.vue.d.ts +126 -25
- package/lib/components/wrap/index.vue.d.ts +7 -1
- package/lib/ui.css +1 -1
- package/lib/ui.js +2526 -2581
- package/package.json +14 -13
- package/volar.d.ts +0 -1
- package/lib/components/numberRoll/index.d.ts +0 -1
- package/lib/components/numberRoll/index.vue.d.ts +0 -47
|
@@ -2,8 +2,7 @@ import { PropType, DefineComponent, ExtractPropTypes, Ref, ComponentOptionsMixin
|
|
|
2
2
|
import { ObjectKey } from '../interface';
|
|
3
3
|
import { IUzFormItemSubTable } from '../form';
|
|
4
4
|
import { TableBaseColumn, ColumnKey, TableColumns, RowData, DataTableHeightForRow, RenderExpandIcon, DataTableOnLoad, OnUpdateSorter, OnUpdateFilters, OnUpdateCheckedRowKeys, OnUpdateExpandedRowKeys, FilterState, SortOrder, CsvOptionsType, MainTableRef, TmNode } from 'naive-ui/es/data-table/src/interface';
|
|
5
|
-
import { PaginationProps } from 'naive-ui
|
|
6
|
-
import { CreateRowClassName, CreateRowProps, CreateRowKey, CreateSummary, DataTableRowKey, PopoverProps, ScrollbarProps, DataTableGetCsvCell, DataTableGetCsvHeader, PaginationProps, ThemeCommonVars, TableColumns, RowData, DataTableSlots } from 'naive-ui';
|
|
5
|
+
import { PaginationProps, CreateRowClassName, CreateRowProps, CreateRowKey, CreateSummary, DataTableRowKey, PopoverProps, ScrollbarProps, DataTableGetCsvCell, DataTableGetCsvHeader, ThemeCommonVars, TableColumns, RowData, DataTableSlots } from 'naive-ui';
|
|
7
6
|
import { BaseLoadingExposedProps } from 'naive-ui/es/_internal';
|
|
8
7
|
import { MaybeArray } from 'naive-ui/es/_utils';
|
|
9
8
|
import { Theme } from 'naive-ui/es/_mixins';
|
|
@@ -642,7 +641,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
642
641
|
arrowOffsetVertical: string;
|
|
643
642
|
arrowHeight: string;
|
|
644
643
|
padding: string;
|
|
645
|
-
},
|
|
644
|
+
}, {
|
|
645
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
646
|
+
height: string;
|
|
647
|
+
width: string;
|
|
648
|
+
borderRadius: string;
|
|
649
|
+
color: string;
|
|
650
|
+
colorHover: string;
|
|
651
|
+
railInsetHorizontalBottom: string;
|
|
652
|
+
railInsetHorizontalTop: string;
|
|
653
|
+
railInsetVerticalRight: string;
|
|
654
|
+
railInsetVerticalLeft: string;
|
|
655
|
+
railColor: string;
|
|
656
|
+
}, any>;
|
|
657
|
+
}>;
|
|
646
658
|
}>;
|
|
647
659
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
648
660
|
optionFontSizeTiny: string;
|
|
@@ -773,7 +785,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
773
785
|
paddingMedium: string;
|
|
774
786
|
paddingLarge: string;
|
|
775
787
|
clearSize: string;
|
|
776
|
-
},
|
|
788
|
+
}, {
|
|
789
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
790
|
+
height: string;
|
|
791
|
+
width: string;
|
|
792
|
+
borderRadius: string;
|
|
793
|
+
color: string;
|
|
794
|
+
colorHover: string;
|
|
795
|
+
railInsetHorizontalBottom: string;
|
|
796
|
+
railInsetHorizontalTop: string;
|
|
797
|
+
railInsetVerticalRight: string;
|
|
798
|
+
railInsetVerticalLeft: string;
|
|
799
|
+
railColor: string;
|
|
800
|
+
}, any>;
|
|
801
|
+
}>;
|
|
777
802
|
Popselect: Theme<"Popselect", {
|
|
778
803
|
menuBoxShadow: string;
|
|
779
804
|
}, {
|
|
@@ -790,7 +815,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
790
815
|
arrowOffsetVertical: string;
|
|
791
816
|
arrowHeight: string;
|
|
792
817
|
padding: string;
|
|
793
|
-
},
|
|
818
|
+
}, {
|
|
819
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
820
|
+
height: string;
|
|
821
|
+
width: string;
|
|
822
|
+
borderRadius: string;
|
|
823
|
+
color: string;
|
|
824
|
+
colorHover: string;
|
|
825
|
+
railInsetHorizontalBottom: string;
|
|
826
|
+
railInsetHorizontalTop: string;
|
|
827
|
+
railInsetVerticalRight: string;
|
|
828
|
+
railInsetVerticalLeft: string;
|
|
829
|
+
railColor: string;
|
|
830
|
+
}, any>;
|
|
831
|
+
}>;
|
|
794
832
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
795
833
|
optionFontSizeTiny: string;
|
|
796
834
|
optionFontSizeSmall: string;
|
|
@@ -900,7 +938,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
900
938
|
arrowOffsetVertical: string;
|
|
901
939
|
arrowHeight: string;
|
|
902
940
|
padding: string;
|
|
903
|
-
},
|
|
941
|
+
}, {
|
|
942
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
943
|
+
height: string;
|
|
944
|
+
width: string;
|
|
945
|
+
borderRadius: string;
|
|
946
|
+
color: string;
|
|
947
|
+
colorHover: string;
|
|
948
|
+
railInsetHorizontalBottom: string;
|
|
949
|
+
railInsetHorizontalTop: string;
|
|
950
|
+
railInsetVerticalRight: string;
|
|
951
|
+
railInsetVerticalLeft: string;
|
|
952
|
+
railColor: string;
|
|
953
|
+
}, any>;
|
|
954
|
+
}>;
|
|
904
955
|
Ellipsis: Theme<"Ellipsis", unknown, {
|
|
905
956
|
Tooltip: Theme<"Tooltip", {
|
|
906
957
|
borderRadius: string;
|
|
@@ -922,7 +973,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
922
973
|
arrowOffsetVertical: string;
|
|
923
974
|
arrowHeight: string;
|
|
924
975
|
padding: string;
|
|
925
|
-
},
|
|
976
|
+
}, {
|
|
977
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
978
|
+
height: string;
|
|
979
|
+
width: string;
|
|
980
|
+
borderRadius: string;
|
|
981
|
+
color: string;
|
|
982
|
+
colorHover: string;
|
|
983
|
+
railInsetHorizontalBottom: string;
|
|
984
|
+
railInsetHorizontalTop: string;
|
|
985
|
+
railInsetVerticalRight: string;
|
|
986
|
+
railInsetVerticalLeft: string;
|
|
987
|
+
railColor: string;
|
|
988
|
+
}, any>;
|
|
989
|
+
}>;
|
|
926
990
|
}>;
|
|
927
991
|
}>;
|
|
928
992
|
Dropdown: Theme<"Dropdown", {
|
|
@@ -993,7 +1057,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
993
1057
|
arrowOffsetVertical: string;
|
|
994
1058
|
arrowHeight: string;
|
|
995
1059
|
padding: string;
|
|
996
|
-
},
|
|
1060
|
+
}, {
|
|
1061
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
1062
|
+
height: string;
|
|
1063
|
+
width: string;
|
|
1064
|
+
borderRadius: string;
|
|
1065
|
+
color: string;
|
|
1066
|
+
colorHover: string;
|
|
1067
|
+
railInsetHorizontalBottom: string;
|
|
1068
|
+
railInsetHorizontalTop: string;
|
|
1069
|
+
railInsetVerticalRight: string;
|
|
1070
|
+
railInsetVerticalLeft: string;
|
|
1071
|
+
railColor: string;
|
|
1072
|
+
}, any>;
|
|
1073
|
+
}>;
|
|
997
1074
|
}>;
|
|
998
1075
|
}>>;
|
|
999
1076
|
readonly themeOverrides: PropType<ExtractThemeOverrides<Theme<"DataTable", {
|
|
@@ -1469,7 +1546,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1469
1546
|
arrowOffsetVertical: string;
|
|
1470
1547
|
arrowHeight: string;
|
|
1471
1548
|
padding: string;
|
|
1472
|
-
},
|
|
1549
|
+
}, {
|
|
1550
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
1551
|
+
height: string;
|
|
1552
|
+
width: string;
|
|
1553
|
+
borderRadius: string;
|
|
1554
|
+
color: string;
|
|
1555
|
+
colorHover: string;
|
|
1556
|
+
railInsetHorizontalBottom: string;
|
|
1557
|
+
railInsetHorizontalTop: string;
|
|
1558
|
+
railInsetVerticalRight: string;
|
|
1559
|
+
railInsetVerticalLeft: string;
|
|
1560
|
+
railColor: string;
|
|
1561
|
+
}, any>;
|
|
1562
|
+
}>;
|
|
1473
1563
|
}>;
|
|
1474
1564
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
1475
1565
|
optionFontSizeTiny: string;
|
|
@@ -1600,7 +1690,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1600
1690
|
paddingMedium: string;
|
|
1601
1691
|
paddingLarge: string;
|
|
1602
1692
|
clearSize: string;
|
|
1603
|
-
},
|
|
1693
|
+
}, {
|
|
1694
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
1695
|
+
height: string;
|
|
1696
|
+
width: string;
|
|
1697
|
+
borderRadius: string;
|
|
1698
|
+
color: string;
|
|
1699
|
+
colorHover: string;
|
|
1700
|
+
railInsetHorizontalBottom: string;
|
|
1701
|
+
railInsetHorizontalTop: string;
|
|
1702
|
+
railInsetVerticalRight: string;
|
|
1703
|
+
railInsetVerticalLeft: string;
|
|
1704
|
+
railColor: string;
|
|
1705
|
+
}, any>;
|
|
1706
|
+
}>;
|
|
1604
1707
|
Popselect: Theme<"Popselect", {
|
|
1605
1708
|
menuBoxShadow: string;
|
|
1606
1709
|
}, {
|
|
@@ -1617,7 +1720,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1617
1720
|
arrowOffsetVertical: string;
|
|
1618
1721
|
arrowHeight: string;
|
|
1619
1722
|
padding: string;
|
|
1620
|
-
},
|
|
1723
|
+
}, {
|
|
1724
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
1725
|
+
height: string;
|
|
1726
|
+
width: string;
|
|
1727
|
+
borderRadius: string;
|
|
1728
|
+
color: string;
|
|
1729
|
+
colorHover: string;
|
|
1730
|
+
railInsetHorizontalBottom: string;
|
|
1731
|
+
railInsetHorizontalTop: string;
|
|
1732
|
+
railInsetVerticalRight: string;
|
|
1733
|
+
railInsetVerticalLeft: string;
|
|
1734
|
+
railColor: string;
|
|
1735
|
+
}, any>;
|
|
1736
|
+
}>;
|
|
1621
1737
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
1622
1738
|
optionFontSizeTiny: string;
|
|
1623
1739
|
optionFontSizeSmall: string;
|
|
@@ -1727,7 +1843,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1727
1843
|
arrowOffsetVertical: string;
|
|
1728
1844
|
arrowHeight: string;
|
|
1729
1845
|
padding: string;
|
|
1730
|
-
},
|
|
1846
|
+
}, {
|
|
1847
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
1848
|
+
height: string;
|
|
1849
|
+
width: string;
|
|
1850
|
+
borderRadius: string;
|
|
1851
|
+
color: string;
|
|
1852
|
+
colorHover: string;
|
|
1853
|
+
railInsetHorizontalBottom: string;
|
|
1854
|
+
railInsetHorizontalTop: string;
|
|
1855
|
+
railInsetVerticalRight: string;
|
|
1856
|
+
railInsetVerticalLeft: string;
|
|
1857
|
+
railColor: string;
|
|
1858
|
+
}, any>;
|
|
1859
|
+
}>;
|
|
1731
1860
|
Ellipsis: Theme<"Ellipsis", unknown, {
|
|
1732
1861
|
Tooltip: Theme<"Tooltip", {
|
|
1733
1862
|
borderRadius: string;
|
|
@@ -1749,7 +1878,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1749
1878
|
arrowOffsetVertical: string;
|
|
1750
1879
|
arrowHeight: string;
|
|
1751
1880
|
padding: string;
|
|
1752
|
-
},
|
|
1881
|
+
}, {
|
|
1882
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
1883
|
+
height: string;
|
|
1884
|
+
width: string;
|
|
1885
|
+
borderRadius: string;
|
|
1886
|
+
color: string;
|
|
1887
|
+
colorHover: string;
|
|
1888
|
+
railInsetHorizontalBottom: string;
|
|
1889
|
+
railInsetHorizontalTop: string;
|
|
1890
|
+
railInsetVerticalRight: string;
|
|
1891
|
+
railInsetVerticalLeft: string;
|
|
1892
|
+
railColor: string;
|
|
1893
|
+
}, any>;
|
|
1894
|
+
}>;
|
|
1753
1895
|
}>;
|
|
1754
1896
|
}>;
|
|
1755
1897
|
Dropdown: Theme<"Dropdown", {
|
|
@@ -1820,7 +1962,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1820
1962
|
arrowOffsetVertical: string;
|
|
1821
1963
|
arrowHeight: string;
|
|
1822
1964
|
padding: string;
|
|
1823
|
-
},
|
|
1965
|
+
}, {
|
|
1966
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
1967
|
+
height: string;
|
|
1968
|
+
width: string;
|
|
1969
|
+
borderRadius: string;
|
|
1970
|
+
color: string;
|
|
1971
|
+
colorHover: string;
|
|
1972
|
+
railInsetHorizontalBottom: string;
|
|
1973
|
+
railInsetHorizontalTop: string;
|
|
1974
|
+
railInsetVerticalRight: string;
|
|
1975
|
+
railInsetVerticalLeft: string;
|
|
1976
|
+
railColor: string;
|
|
1977
|
+
}, any>;
|
|
1978
|
+
}>;
|
|
1824
1979
|
}>;
|
|
1825
1980
|
}>>>;
|
|
1826
1981
|
readonly builtinThemeOverrides: PropType<ExtractThemeOverrides<Theme<"DataTable", {
|
|
@@ -2296,7 +2451,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2296
2451
|
arrowOffsetVertical: string;
|
|
2297
2452
|
arrowHeight: string;
|
|
2298
2453
|
padding: string;
|
|
2299
|
-
},
|
|
2454
|
+
}, {
|
|
2455
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
2456
|
+
height: string;
|
|
2457
|
+
width: string;
|
|
2458
|
+
borderRadius: string;
|
|
2459
|
+
color: string;
|
|
2460
|
+
colorHover: string;
|
|
2461
|
+
railInsetHorizontalBottom: string;
|
|
2462
|
+
railInsetHorizontalTop: string;
|
|
2463
|
+
railInsetVerticalRight: string;
|
|
2464
|
+
railInsetVerticalLeft: string;
|
|
2465
|
+
railColor: string;
|
|
2466
|
+
}, any>;
|
|
2467
|
+
}>;
|
|
2300
2468
|
}>;
|
|
2301
2469
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
2302
2470
|
optionFontSizeTiny: string;
|
|
@@ -2427,7 +2595,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2427
2595
|
paddingMedium: string;
|
|
2428
2596
|
paddingLarge: string;
|
|
2429
2597
|
clearSize: string;
|
|
2430
|
-
},
|
|
2598
|
+
}, {
|
|
2599
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
2600
|
+
height: string;
|
|
2601
|
+
width: string;
|
|
2602
|
+
borderRadius: string;
|
|
2603
|
+
color: string;
|
|
2604
|
+
colorHover: string;
|
|
2605
|
+
railInsetHorizontalBottom: string;
|
|
2606
|
+
railInsetHorizontalTop: string;
|
|
2607
|
+
railInsetVerticalRight: string;
|
|
2608
|
+
railInsetVerticalLeft: string;
|
|
2609
|
+
railColor: string;
|
|
2610
|
+
}, any>;
|
|
2611
|
+
}>;
|
|
2431
2612
|
Popselect: Theme<"Popselect", {
|
|
2432
2613
|
menuBoxShadow: string;
|
|
2433
2614
|
}, {
|
|
@@ -2444,7 +2625,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2444
2625
|
arrowOffsetVertical: string;
|
|
2445
2626
|
arrowHeight: string;
|
|
2446
2627
|
padding: string;
|
|
2447
|
-
},
|
|
2628
|
+
}, {
|
|
2629
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
2630
|
+
height: string;
|
|
2631
|
+
width: string;
|
|
2632
|
+
borderRadius: string;
|
|
2633
|
+
color: string;
|
|
2634
|
+
colorHover: string;
|
|
2635
|
+
railInsetHorizontalBottom: string;
|
|
2636
|
+
railInsetHorizontalTop: string;
|
|
2637
|
+
railInsetVerticalRight: string;
|
|
2638
|
+
railInsetVerticalLeft: string;
|
|
2639
|
+
railColor: string;
|
|
2640
|
+
}, any>;
|
|
2641
|
+
}>;
|
|
2448
2642
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
2449
2643
|
optionFontSizeTiny: string;
|
|
2450
2644
|
optionFontSizeSmall: string;
|
|
@@ -2554,7 +2748,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2554
2748
|
arrowOffsetVertical: string;
|
|
2555
2749
|
arrowHeight: string;
|
|
2556
2750
|
padding: string;
|
|
2557
|
-
},
|
|
2751
|
+
}, {
|
|
2752
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
2753
|
+
height: string;
|
|
2754
|
+
width: string;
|
|
2755
|
+
borderRadius: string;
|
|
2756
|
+
color: string;
|
|
2757
|
+
colorHover: string;
|
|
2758
|
+
railInsetHorizontalBottom: string;
|
|
2759
|
+
railInsetHorizontalTop: string;
|
|
2760
|
+
railInsetVerticalRight: string;
|
|
2761
|
+
railInsetVerticalLeft: string;
|
|
2762
|
+
railColor: string;
|
|
2763
|
+
}, any>;
|
|
2764
|
+
}>;
|
|
2558
2765
|
Ellipsis: Theme<"Ellipsis", unknown, {
|
|
2559
2766
|
Tooltip: Theme<"Tooltip", {
|
|
2560
2767
|
borderRadius: string;
|
|
@@ -2576,7 +2783,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2576
2783
|
arrowOffsetVertical: string;
|
|
2577
2784
|
arrowHeight: string;
|
|
2578
2785
|
padding: string;
|
|
2579
|
-
},
|
|
2786
|
+
}, {
|
|
2787
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
2788
|
+
height: string;
|
|
2789
|
+
width: string;
|
|
2790
|
+
borderRadius: string;
|
|
2791
|
+
color: string;
|
|
2792
|
+
colorHover: string;
|
|
2793
|
+
railInsetHorizontalBottom: string;
|
|
2794
|
+
railInsetHorizontalTop: string;
|
|
2795
|
+
railInsetVerticalRight: string;
|
|
2796
|
+
railInsetVerticalLeft: string;
|
|
2797
|
+
railColor: string;
|
|
2798
|
+
}, any>;
|
|
2799
|
+
}>;
|
|
2580
2800
|
}>;
|
|
2581
2801
|
}>;
|
|
2582
2802
|
Dropdown: Theme<"Dropdown", {
|
|
@@ -2647,7 +2867,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2647
2867
|
arrowOffsetVertical: string;
|
|
2648
2868
|
arrowHeight: string;
|
|
2649
2869
|
padding: string;
|
|
2650
|
-
},
|
|
2870
|
+
}, {
|
|
2871
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
2872
|
+
height: string;
|
|
2873
|
+
width: string;
|
|
2874
|
+
borderRadius: string;
|
|
2875
|
+
color: string;
|
|
2876
|
+
colorHover: string;
|
|
2877
|
+
railInsetHorizontalBottom: string;
|
|
2878
|
+
railInsetHorizontalTop: string;
|
|
2879
|
+
railInsetVerticalRight: string;
|
|
2880
|
+
railInsetVerticalLeft: string;
|
|
2881
|
+
railColor: string;
|
|
2882
|
+
}, any>;
|
|
2883
|
+
}>;
|
|
2651
2884
|
}>;
|
|
2652
2885
|
}>>>;
|
|
2653
2886
|
}>, {
|
|
@@ -3147,7 +3380,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3147
3380
|
arrowOffsetVertical: string;
|
|
3148
3381
|
arrowHeight: string;
|
|
3149
3382
|
padding: string;
|
|
3150
|
-
},
|
|
3383
|
+
}, {
|
|
3384
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3385
|
+
height: string;
|
|
3386
|
+
width: string;
|
|
3387
|
+
borderRadius: string;
|
|
3388
|
+
color: string;
|
|
3389
|
+
colorHover: string;
|
|
3390
|
+
railInsetHorizontalBottom: string;
|
|
3391
|
+
railInsetHorizontalTop: string;
|
|
3392
|
+
railInsetVerticalRight: string;
|
|
3393
|
+
railInsetVerticalLeft: string;
|
|
3394
|
+
railColor: string;
|
|
3395
|
+
}, any>;
|
|
3396
|
+
}>;
|
|
3151
3397
|
}>;
|
|
3152
3398
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
3153
3399
|
optionFontSizeTiny: string;
|
|
@@ -3278,7 +3524,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3278
3524
|
paddingMedium: string;
|
|
3279
3525
|
paddingLarge: string;
|
|
3280
3526
|
clearSize: string;
|
|
3281
|
-
},
|
|
3527
|
+
}, {
|
|
3528
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3529
|
+
height: string;
|
|
3530
|
+
width: string;
|
|
3531
|
+
borderRadius: string;
|
|
3532
|
+
color: string;
|
|
3533
|
+
colorHover: string;
|
|
3534
|
+
railInsetHorizontalBottom: string;
|
|
3535
|
+
railInsetHorizontalTop: string;
|
|
3536
|
+
railInsetVerticalRight: string;
|
|
3537
|
+
railInsetVerticalLeft: string;
|
|
3538
|
+
railColor: string;
|
|
3539
|
+
}, any>;
|
|
3540
|
+
}>;
|
|
3282
3541
|
Popselect: Theme<"Popselect", {
|
|
3283
3542
|
menuBoxShadow: string;
|
|
3284
3543
|
}, {
|
|
@@ -3295,7 +3554,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3295
3554
|
arrowOffsetVertical: string;
|
|
3296
3555
|
arrowHeight: string;
|
|
3297
3556
|
padding: string;
|
|
3298
|
-
},
|
|
3557
|
+
}, {
|
|
3558
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3559
|
+
height: string;
|
|
3560
|
+
width: string;
|
|
3561
|
+
borderRadius: string;
|
|
3562
|
+
color: string;
|
|
3563
|
+
colorHover: string;
|
|
3564
|
+
railInsetHorizontalBottom: string;
|
|
3565
|
+
railInsetHorizontalTop: string;
|
|
3566
|
+
railInsetVerticalRight: string;
|
|
3567
|
+
railInsetVerticalLeft: string;
|
|
3568
|
+
railColor: string;
|
|
3569
|
+
}, any>;
|
|
3570
|
+
}>;
|
|
3299
3571
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
3300
3572
|
optionFontSizeTiny: string;
|
|
3301
3573
|
optionFontSizeSmall: string;
|
|
@@ -3405,7 +3677,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3405
3677
|
arrowOffsetVertical: string;
|
|
3406
3678
|
arrowHeight: string;
|
|
3407
3679
|
padding: string;
|
|
3408
|
-
},
|
|
3680
|
+
}, {
|
|
3681
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3682
|
+
height: string;
|
|
3683
|
+
width: string;
|
|
3684
|
+
borderRadius: string;
|
|
3685
|
+
color: string;
|
|
3686
|
+
colorHover: string;
|
|
3687
|
+
railInsetHorizontalBottom: string;
|
|
3688
|
+
railInsetHorizontalTop: string;
|
|
3689
|
+
railInsetVerticalRight: string;
|
|
3690
|
+
railInsetVerticalLeft: string;
|
|
3691
|
+
railColor: string;
|
|
3692
|
+
}, any>;
|
|
3693
|
+
}>;
|
|
3409
3694
|
Ellipsis: Theme<"Ellipsis", unknown, {
|
|
3410
3695
|
Tooltip: Theme<"Tooltip", {
|
|
3411
3696
|
borderRadius: string;
|
|
@@ -3427,7 +3712,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3427
3712
|
arrowOffsetVertical: string;
|
|
3428
3713
|
arrowHeight: string;
|
|
3429
3714
|
padding: string;
|
|
3430
|
-
},
|
|
3715
|
+
}, {
|
|
3716
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3717
|
+
height: string;
|
|
3718
|
+
width: string;
|
|
3719
|
+
borderRadius: string;
|
|
3720
|
+
color: string;
|
|
3721
|
+
colorHover: string;
|
|
3722
|
+
railInsetHorizontalBottom: string;
|
|
3723
|
+
railInsetHorizontalTop: string;
|
|
3724
|
+
railInsetVerticalRight: string;
|
|
3725
|
+
railInsetVerticalLeft: string;
|
|
3726
|
+
railColor: string;
|
|
3727
|
+
}, any>;
|
|
3728
|
+
}>;
|
|
3431
3729
|
}>;
|
|
3432
3730
|
}>;
|
|
3433
3731
|
Dropdown: Theme<"Dropdown", {
|
|
@@ -3498,7 +3796,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3498
3796
|
arrowOffsetVertical: string;
|
|
3499
3797
|
arrowHeight: string;
|
|
3500
3798
|
padding: string;
|
|
3501
|
-
},
|
|
3799
|
+
}, {
|
|
3800
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3801
|
+
height: string;
|
|
3802
|
+
width: string;
|
|
3803
|
+
borderRadius: string;
|
|
3804
|
+
color: string;
|
|
3805
|
+
colorHover: string;
|
|
3806
|
+
railInsetHorizontalBottom: string;
|
|
3807
|
+
railInsetHorizontalTop: string;
|
|
3808
|
+
railInsetVerticalRight: string;
|
|
3809
|
+
railInsetVerticalLeft: string;
|
|
3810
|
+
railColor: string;
|
|
3811
|
+
}, any>;
|
|
3812
|
+
}>;
|
|
3502
3813
|
}>;
|
|
3503
3814
|
};
|
|
3504
3815
|
peerOverrides: {
|
|
@@ -3590,7 +3901,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3590
3901
|
arrowOffsetVertical: string;
|
|
3591
3902
|
arrowHeight: string;
|
|
3592
3903
|
padding: string;
|
|
3593
|
-
},
|
|
3904
|
+
}, {
|
|
3905
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3906
|
+
height: string;
|
|
3907
|
+
width: string;
|
|
3908
|
+
borderRadius: string;
|
|
3909
|
+
color: string;
|
|
3910
|
+
colorHover: string;
|
|
3911
|
+
railInsetHorizontalBottom: string;
|
|
3912
|
+
railInsetHorizontalTop: string;
|
|
3913
|
+
railInsetVerticalRight: string;
|
|
3914
|
+
railInsetVerticalLeft: string;
|
|
3915
|
+
railColor: string;
|
|
3916
|
+
}, any>;
|
|
3917
|
+
}>;
|
|
3594
3918
|
}>;
|
|
3595
3919
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
3596
3920
|
optionFontSizeTiny: string;
|
|
@@ -3721,7 +4045,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3721
4045
|
paddingMedium: string;
|
|
3722
4046
|
paddingLarge: string;
|
|
3723
4047
|
clearSize: string;
|
|
3724
|
-
},
|
|
4048
|
+
}, {
|
|
4049
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4050
|
+
height: string;
|
|
4051
|
+
width: string;
|
|
4052
|
+
borderRadius: string;
|
|
4053
|
+
color: string;
|
|
4054
|
+
colorHover: string;
|
|
4055
|
+
railInsetHorizontalBottom: string;
|
|
4056
|
+
railInsetHorizontalTop: string;
|
|
4057
|
+
railInsetVerticalRight: string;
|
|
4058
|
+
railInsetVerticalLeft: string;
|
|
4059
|
+
railColor: string;
|
|
4060
|
+
}, any>;
|
|
4061
|
+
}>> | undefined;
|
|
3725
4062
|
Popselect?: ExtractThemeOverrides<Theme<"Popselect", {
|
|
3726
4063
|
menuBoxShadow: string;
|
|
3727
4064
|
}, {
|
|
@@ -3738,7 +4075,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3738
4075
|
arrowOffsetVertical: string;
|
|
3739
4076
|
arrowHeight: string;
|
|
3740
4077
|
padding: string;
|
|
3741
|
-
},
|
|
4078
|
+
}, {
|
|
4079
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4080
|
+
height: string;
|
|
4081
|
+
width: string;
|
|
4082
|
+
borderRadius: string;
|
|
4083
|
+
color: string;
|
|
4084
|
+
colorHover: string;
|
|
4085
|
+
railInsetHorizontalBottom: string;
|
|
4086
|
+
railInsetHorizontalTop: string;
|
|
4087
|
+
railInsetVerticalRight: string;
|
|
4088
|
+
railInsetVerticalLeft: string;
|
|
4089
|
+
railColor: string;
|
|
4090
|
+
}, any>;
|
|
4091
|
+
}>;
|
|
3742
4092
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
3743
4093
|
optionFontSizeTiny: string;
|
|
3744
4094
|
optionFontSizeSmall: string;
|
|
@@ -3821,7 +4171,18 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3821
4171
|
} | undefined;
|
|
3822
4172
|
Popover?: {
|
|
3823
4173
|
peers?: {
|
|
3824
|
-
|
|
4174
|
+
Scrollbar?: ExtractThemeOverrides<Theme<"Scrollbar", {
|
|
4175
|
+
height: string;
|
|
4176
|
+
width: string;
|
|
4177
|
+
borderRadius: string;
|
|
4178
|
+
color: string;
|
|
4179
|
+
colorHover: string;
|
|
4180
|
+
railInsetHorizontalBottom: string;
|
|
4181
|
+
railInsetHorizontalTop: string;
|
|
4182
|
+
railInsetVerticalRight: string;
|
|
4183
|
+
railInsetVerticalLeft: string;
|
|
4184
|
+
railColor: string;
|
|
4185
|
+
}, any>> | undefined;
|
|
3825
4186
|
} | undefined;
|
|
3826
4187
|
} | undefined;
|
|
3827
4188
|
Ellipsis?: {
|
|
@@ -3846,7 +4207,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3846
4207
|
arrowOffsetVertical: string;
|
|
3847
4208
|
arrowHeight: string;
|
|
3848
4209
|
padding: string;
|
|
3849
|
-
},
|
|
4210
|
+
}, {
|
|
4211
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4212
|
+
height: string;
|
|
4213
|
+
width: string;
|
|
4214
|
+
borderRadius: string;
|
|
4215
|
+
color: string;
|
|
4216
|
+
colorHover: string;
|
|
4217
|
+
railInsetHorizontalBottom: string;
|
|
4218
|
+
railInsetHorizontalTop: string;
|
|
4219
|
+
railInsetVerticalRight: string;
|
|
4220
|
+
railInsetVerticalLeft: string;
|
|
4221
|
+
railColor: string;
|
|
4222
|
+
}, any>;
|
|
4223
|
+
}>;
|
|
3850
4224
|
}>> | undefined;
|
|
3851
4225
|
} | undefined;
|
|
3852
4226
|
} | undefined;
|
|
@@ -3865,7 +4239,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3865
4239
|
arrowOffsetVertical: string;
|
|
3866
4240
|
arrowHeight: string;
|
|
3867
4241
|
padding: string;
|
|
3868
|
-
},
|
|
4242
|
+
}, {
|
|
4243
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4244
|
+
height: string;
|
|
4245
|
+
width: string;
|
|
4246
|
+
borderRadius: string;
|
|
4247
|
+
color: string;
|
|
4248
|
+
colorHover: string;
|
|
4249
|
+
railInsetHorizontalBottom: string;
|
|
4250
|
+
railInsetHorizontalTop: string;
|
|
4251
|
+
railInsetVerticalRight: string;
|
|
4252
|
+
railInsetVerticalLeft: string;
|
|
4253
|
+
railColor: string;
|
|
4254
|
+
}, any>;
|
|
4255
|
+
}>> | undefined;
|
|
3869
4256
|
} | undefined;
|
|
3870
4257
|
} | undefined;
|
|
3871
4258
|
};
|
|
@@ -4523,7 +4910,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4523
4910
|
arrowOffsetVertical: string;
|
|
4524
4911
|
arrowHeight: string;
|
|
4525
4912
|
padding: string;
|
|
4526
|
-
},
|
|
4913
|
+
}, {
|
|
4914
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4915
|
+
height: string;
|
|
4916
|
+
width: string;
|
|
4917
|
+
borderRadius: string;
|
|
4918
|
+
color: string;
|
|
4919
|
+
colorHover: string;
|
|
4920
|
+
railInsetHorizontalBottom: string;
|
|
4921
|
+
railInsetHorizontalTop: string;
|
|
4922
|
+
railInsetVerticalRight: string;
|
|
4923
|
+
railInsetVerticalLeft: string;
|
|
4924
|
+
railColor: string;
|
|
4925
|
+
}, any>;
|
|
4926
|
+
}>;
|
|
4527
4927
|
}>;
|
|
4528
4928
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
4529
4929
|
optionFontSizeTiny: string;
|
|
@@ -4654,7 +5054,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4654
5054
|
paddingMedium: string;
|
|
4655
5055
|
paddingLarge: string;
|
|
4656
5056
|
clearSize: string;
|
|
4657
|
-
},
|
|
5057
|
+
}, {
|
|
5058
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5059
|
+
height: string;
|
|
5060
|
+
width: string;
|
|
5061
|
+
borderRadius: string;
|
|
5062
|
+
color: string;
|
|
5063
|
+
colorHover: string;
|
|
5064
|
+
railInsetHorizontalBottom: string;
|
|
5065
|
+
railInsetHorizontalTop: string;
|
|
5066
|
+
railInsetVerticalRight: string;
|
|
5067
|
+
railInsetVerticalLeft: string;
|
|
5068
|
+
railColor: string;
|
|
5069
|
+
}, any>;
|
|
5070
|
+
}>;
|
|
4658
5071
|
Popselect: Theme<"Popselect", {
|
|
4659
5072
|
menuBoxShadow: string;
|
|
4660
5073
|
}, {
|
|
@@ -4671,7 +5084,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4671
5084
|
arrowOffsetVertical: string;
|
|
4672
5085
|
arrowHeight: string;
|
|
4673
5086
|
padding: string;
|
|
4674
|
-
},
|
|
5087
|
+
}, {
|
|
5088
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5089
|
+
height: string;
|
|
5090
|
+
width: string;
|
|
5091
|
+
borderRadius: string;
|
|
5092
|
+
color: string;
|
|
5093
|
+
colorHover: string;
|
|
5094
|
+
railInsetHorizontalBottom: string;
|
|
5095
|
+
railInsetHorizontalTop: string;
|
|
5096
|
+
railInsetVerticalRight: string;
|
|
5097
|
+
railInsetVerticalLeft: string;
|
|
5098
|
+
railColor: string;
|
|
5099
|
+
}, any>;
|
|
5100
|
+
}>;
|
|
4675
5101
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
4676
5102
|
optionFontSizeTiny: string;
|
|
4677
5103
|
optionFontSizeSmall: string;
|
|
@@ -4781,7 +5207,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4781
5207
|
arrowOffsetVertical: string;
|
|
4782
5208
|
arrowHeight: string;
|
|
4783
5209
|
padding: string;
|
|
4784
|
-
},
|
|
5210
|
+
}, {
|
|
5211
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5212
|
+
height: string;
|
|
5213
|
+
width: string;
|
|
5214
|
+
borderRadius: string;
|
|
5215
|
+
color: string;
|
|
5216
|
+
colorHover: string;
|
|
5217
|
+
railInsetHorizontalBottom: string;
|
|
5218
|
+
railInsetHorizontalTop: string;
|
|
5219
|
+
railInsetVerticalRight: string;
|
|
5220
|
+
railInsetVerticalLeft: string;
|
|
5221
|
+
railColor: string;
|
|
5222
|
+
}, any>;
|
|
5223
|
+
}>;
|
|
4785
5224
|
Ellipsis: Theme<"Ellipsis", unknown, {
|
|
4786
5225
|
Tooltip: Theme<"Tooltip", {
|
|
4787
5226
|
borderRadius: string;
|
|
@@ -4803,7 +5242,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4803
5242
|
arrowOffsetVertical: string;
|
|
4804
5243
|
arrowHeight: string;
|
|
4805
5244
|
padding: string;
|
|
4806
|
-
},
|
|
5245
|
+
}, {
|
|
5246
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5247
|
+
height: string;
|
|
5248
|
+
width: string;
|
|
5249
|
+
borderRadius: string;
|
|
5250
|
+
color: string;
|
|
5251
|
+
colorHover: string;
|
|
5252
|
+
railInsetHorizontalBottom: string;
|
|
5253
|
+
railInsetHorizontalTop: string;
|
|
5254
|
+
railInsetVerticalRight: string;
|
|
5255
|
+
railInsetVerticalLeft: string;
|
|
5256
|
+
railColor: string;
|
|
5257
|
+
}, any>;
|
|
5258
|
+
}>;
|
|
4807
5259
|
}>;
|
|
4808
5260
|
}>;
|
|
4809
5261
|
Dropdown: Theme<"Dropdown", {
|
|
@@ -4874,7 +5326,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4874
5326
|
arrowOffsetVertical: string;
|
|
4875
5327
|
arrowHeight: string;
|
|
4876
5328
|
padding: string;
|
|
4877
|
-
},
|
|
5329
|
+
}, {
|
|
5330
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5331
|
+
height: string;
|
|
5332
|
+
width: string;
|
|
5333
|
+
borderRadius: string;
|
|
5334
|
+
color: string;
|
|
5335
|
+
colorHover: string;
|
|
5336
|
+
railInsetHorizontalBottom: string;
|
|
5337
|
+
railInsetHorizontalTop: string;
|
|
5338
|
+
railInsetVerticalRight: string;
|
|
5339
|
+
railInsetVerticalLeft: string;
|
|
5340
|
+
railColor: string;
|
|
5341
|
+
}, any>;
|
|
5342
|
+
}>;
|
|
4878
5343
|
}>;
|
|
4879
5344
|
}>>;
|
|
4880
5345
|
readonly themeOverrides: PropType<ExtractThemeOverrides<Theme<"DataTable", {
|
|
@@ -5350,7 +5815,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5350
5815
|
arrowOffsetVertical: string;
|
|
5351
5816
|
arrowHeight: string;
|
|
5352
5817
|
padding: string;
|
|
5353
|
-
},
|
|
5818
|
+
}, {
|
|
5819
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5820
|
+
height: string;
|
|
5821
|
+
width: string;
|
|
5822
|
+
borderRadius: string;
|
|
5823
|
+
color: string;
|
|
5824
|
+
colorHover: string;
|
|
5825
|
+
railInsetHorizontalBottom: string;
|
|
5826
|
+
railInsetHorizontalTop: string;
|
|
5827
|
+
railInsetVerticalRight: string;
|
|
5828
|
+
railInsetVerticalLeft: string;
|
|
5829
|
+
railColor: string;
|
|
5830
|
+
}, any>;
|
|
5831
|
+
}>;
|
|
5354
5832
|
}>;
|
|
5355
5833
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
5356
5834
|
optionFontSizeTiny: string;
|
|
@@ -5481,7 +5959,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5481
5959
|
paddingMedium: string;
|
|
5482
5960
|
paddingLarge: string;
|
|
5483
5961
|
clearSize: string;
|
|
5484
|
-
},
|
|
5962
|
+
}, {
|
|
5963
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5964
|
+
height: string;
|
|
5965
|
+
width: string;
|
|
5966
|
+
borderRadius: string;
|
|
5967
|
+
color: string;
|
|
5968
|
+
colorHover: string;
|
|
5969
|
+
railInsetHorizontalBottom: string;
|
|
5970
|
+
railInsetHorizontalTop: string;
|
|
5971
|
+
railInsetVerticalRight: string;
|
|
5972
|
+
railInsetVerticalLeft: string;
|
|
5973
|
+
railColor: string;
|
|
5974
|
+
}, any>;
|
|
5975
|
+
}>;
|
|
5485
5976
|
Popselect: Theme<"Popselect", {
|
|
5486
5977
|
menuBoxShadow: string;
|
|
5487
5978
|
}, {
|
|
@@ -5498,7 +5989,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5498
5989
|
arrowOffsetVertical: string;
|
|
5499
5990
|
arrowHeight: string;
|
|
5500
5991
|
padding: string;
|
|
5501
|
-
},
|
|
5992
|
+
}, {
|
|
5993
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5994
|
+
height: string;
|
|
5995
|
+
width: string;
|
|
5996
|
+
borderRadius: string;
|
|
5997
|
+
color: string;
|
|
5998
|
+
colorHover: string;
|
|
5999
|
+
railInsetHorizontalBottom: string;
|
|
6000
|
+
railInsetHorizontalTop: string;
|
|
6001
|
+
railInsetVerticalRight: string;
|
|
6002
|
+
railInsetVerticalLeft: string;
|
|
6003
|
+
railColor: string;
|
|
6004
|
+
}, any>;
|
|
6005
|
+
}>;
|
|
5502
6006
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
5503
6007
|
optionFontSizeTiny: string;
|
|
5504
6008
|
optionFontSizeSmall: string;
|
|
@@ -5608,7 +6112,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5608
6112
|
arrowOffsetVertical: string;
|
|
5609
6113
|
arrowHeight: string;
|
|
5610
6114
|
padding: string;
|
|
5611
|
-
},
|
|
6115
|
+
}, {
|
|
6116
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
6117
|
+
height: string;
|
|
6118
|
+
width: string;
|
|
6119
|
+
borderRadius: string;
|
|
6120
|
+
color: string;
|
|
6121
|
+
colorHover: string;
|
|
6122
|
+
railInsetHorizontalBottom: string;
|
|
6123
|
+
railInsetHorizontalTop: string;
|
|
6124
|
+
railInsetVerticalRight: string;
|
|
6125
|
+
railInsetVerticalLeft: string;
|
|
6126
|
+
railColor: string;
|
|
6127
|
+
}, any>;
|
|
6128
|
+
}>;
|
|
5612
6129
|
Ellipsis: Theme<"Ellipsis", unknown, {
|
|
5613
6130
|
Tooltip: Theme<"Tooltip", {
|
|
5614
6131
|
borderRadius: string;
|
|
@@ -5630,7 +6147,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5630
6147
|
arrowOffsetVertical: string;
|
|
5631
6148
|
arrowHeight: string;
|
|
5632
6149
|
padding: string;
|
|
5633
|
-
},
|
|
6150
|
+
}, {
|
|
6151
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
6152
|
+
height: string;
|
|
6153
|
+
width: string;
|
|
6154
|
+
borderRadius: string;
|
|
6155
|
+
color: string;
|
|
6156
|
+
colorHover: string;
|
|
6157
|
+
railInsetHorizontalBottom: string;
|
|
6158
|
+
railInsetHorizontalTop: string;
|
|
6159
|
+
railInsetVerticalRight: string;
|
|
6160
|
+
railInsetVerticalLeft: string;
|
|
6161
|
+
railColor: string;
|
|
6162
|
+
}, any>;
|
|
6163
|
+
}>;
|
|
5634
6164
|
}>;
|
|
5635
6165
|
}>;
|
|
5636
6166
|
Dropdown: Theme<"Dropdown", {
|
|
@@ -5701,7 +6231,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5701
6231
|
arrowOffsetVertical: string;
|
|
5702
6232
|
arrowHeight: string;
|
|
5703
6233
|
padding: string;
|
|
5704
|
-
},
|
|
6234
|
+
}, {
|
|
6235
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
6236
|
+
height: string;
|
|
6237
|
+
width: string;
|
|
6238
|
+
borderRadius: string;
|
|
6239
|
+
color: string;
|
|
6240
|
+
colorHover: string;
|
|
6241
|
+
railInsetHorizontalBottom: string;
|
|
6242
|
+
railInsetHorizontalTop: string;
|
|
6243
|
+
railInsetVerticalRight: string;
|
|
6244
|
+
railInsetVerticalLeft: string;
|
|
6245
|
+
railColor: string;
|
|
6246
|
+
}, any>;
|
|
6247
|
+
}>;
|
|
5705
6248
|
}>;
|
|
5706
6249
|
}>>>;
|
|
5707
6250
|
readonly builtinThemeOverrides: PropType<ExtractThemeOverrides<Theme<"DataTable", {
|
|
@@ -6177,7 +6720,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6177
6720
|
arrowOffsetVertical: string;
|
|
6178
6721
|
arrowHeight: string;
|
|
6179
6722
|
padding: string;
|
|
6180
|
-
},
|
|
6723
|
+
}, {
|
|
6724
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
6725
|
+
height: string;
|
|
6726
|
+
width: string;
|
|
6727
|
+
borderRadius: string;
|
|
6728
|
+
color: string;
|
|
6729
|
+
colorHover: string;
|
|
6730
|
+
railInsetHorizontalBottom: string;
|
|
6731
|
+
railInsetHorizontalTop: string;
|
|
6732
|
+
railInsetVerticalRight: string;
|
|
6733
|
+
railInsetVerticalLeft: string;
|
|
6734
|
+
railColor: string;
|
|
6735
|
+
}, any>;
|
|
6736
|
+
}>;
|
|
6181
6737
|
}>;
|
|
6182
6738
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
6183
6739
|
optionFontSizeTiny: string;
|
|
@@ -6308,7 +6864,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6308
6864
|
paddingMedium: string;
|
|
6309
6865
|
paddingLarge: string;
|
|
6310
6866
|
clearSize: string;
|
|
6311
|
-
},
|
|
6867
|
+
}, {
|
|
6868
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
6869
|
+
height: string;
|
|
6870
|
+
width: string;
|
|
6871
|
+
borderRadius: string;
|
|
6872
|
+
color: string;
|
|
6873
|
+
colorHover: string;
|
|
6874
|
+
railInsetHorizontalBottom: string;
|
|
6875
|
+
railInsetHorizontalTop: string;
|
|
6876
|
+
railInsetVerticalRight: string;
|
|
6877
|
+
railInsetVerticalLeft: string;
|
|
6878
|
+
railColor: string;
|
|
6879
|
+
}, any>;
|
|
6880
|
+
}>;
|
|
6312
6881
|
Popselect: Theme<"Popselect", {
|
|
6313
6882
|
menuBoxShadow: string;
|
|
6314
6883
|
}, {
|
|
@@ -6325,7 +6894,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6325
6894
|
arrowOffsetVertical: string;
|
|
6326
6895
|
arrowHeight: string;
|
|
6327
6896
|
padding: string;
|
|
6328
|
-
},
|
|
6897
|
+
}, {
|
|
6898
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
6899
|
+
height: string;
|
|
6900
|
+
width: string;
|
|
6901
|
+
borderRadius: string;
|
|
6902
|
+
color: string;
|
|
6903
|
+
colorHover: string;
|
|
6904
|
+
railInsetHorizontalBottom: string;
|
|
6905
|
+
railInsetHorizontalTop: string;
|
|
6906
|
+
railInsetVerticalRight: string;
|
|
6907
|
+
railInsetVerticalLeft: string;
|
|
6908
|
+
railColor: string;
|
|
6909
|
+
}, any>;
|
|
6910
|
+
}>;
|
|
6329
6911
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
6330
6912
|
optionFontSizeTiny: string;
|
|
6331
6913
|
optionFontSizeSmall: string;
|
|
@@ -6435,7 +7017,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6435
7017
|
arrowOffsetVertical: string;
|
|
6436
7018
|
arrowHeight: string;
|
|
6437
7019
|
padding: string;
|
|
6438
|
-
},
|
|
7020
|
+
}, {
|
|
7021
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
7022
|
+
height: string;
|
|
7023
|
+
width: string;
|
|
7024
|
+
borderRadius: string;
|
|
7025
|
+
color: string;
|
|
7026
|
+
colorHover: string;
|
|
7027
|
+
railInsetHorizontalBottom: string;
|
|
7028
|
+
railInsetHorizontalTop: string;
|
|
7029
|
+
railInsetVerticalRight: string;
|
|
7030
|
+
railInsetVerticalLeft: string;
|
|
7031
|
+
railColor: string;
|
|
7032
|
+
}, any>;
|
|
7033
|
+
}>;
|
|
6439
7034
|
Ellipsis: Theme<"Ellipsis", unknown, {
|
|
6440
7035
|
Tooltip: Theme<"Tooltip", {
|
|
6441
7036
|
borderRadius: string;
|
|
@@ -6457,7 +7052,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6457
7052
|
arrowOffsetVertical: string;
|
|
6458
7053
|
arrowHeight: string;
|
|
6459
7054
|
padding: string;
|
|
6460
|
-
},
|
|
7055
|
+
}, {
|
|
7056
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
7057
|
+
height: string;
|
|
7058
|
+
width: string;
|
|
7059
|
+
borderRadius: string;
|
|
7060
|
+
color: string;
|
|
7061
|
+
colorHover: string;
|
|
7062
|
+
railInsetHorizontalBottom: string;
|
|
7063
|
+
railInsetHorizontalTop: string;
|
|
7064
|
+
railInsetVerticalRight: string;
|
|
7065
|
+
railInsetVerticalLeft: string;
|
|
7066
|
+
railColor: string;
|
|
7067
|
+
}, any>;
|
|
7068
|
+
}>;
|
|
6461
7069
|
}>;
|
|
6462
7070
|
}>;
|
|
6463
7071
|
Dropdown: Theme<"Dropdown", {
|
|
@@ -6528,7 +7136,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6528
7136
|
arrowOffsetVertical: string;
|
|
6529
7137
|
arrowHeight: string;
|
|
6530
7138
|
padding: string;
|
|
6531
|
-
},
|
|
7139
|
+
}, {
|
|
7140
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
7141
|
+
height: string;
|
|
7142
|
+
width: string;
|
|
7143
|
+
borderRadius: string;
|
|
7144
|
+
color: string;
|
|
7145
|
+
colorHover: string;
|
|
7146
|
+
railInsetHorizontalBottom: string;
|
|
7147
|
+
railInsetHorizontalTop: string;
|
|
7148
|
+
railInsetVerticalRight: string;
|
|
7149
|
+
railInsetVerticalLeft: string;
|
|
7150
|
+
railColor: string;
|
|
7151
|
+
}, any>;
|
|
7152
|
+
}>;
|
|
6532
7153
|
}>;
|
|
6533
7154
|
}>>>;
|
|
6534
7155
|
}>> & Readonly<{}>, {
|
|
@@ -6537,9 +7158,12 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6537
7158
|
readonly tableLayout: "fixed" | "auto";
|
|
6538
7159
|
readonly columns: TableColumns<any>;
|
|
6539
7160
|
readonly loading: boolean;
|
|
7161
|
+
readonly spinProps: BaseLoadingExposedProps;
|
|
6540
7162
|
readonly bordered: boolean | undefined;
|
|
6541
|
-
readonly
|
|
7163
|
+
readonly allowCheckingNotLoaded: boolean;
|
|
6542
7164
|
readonly remote: boolean;
|
|
7165
|
+
readonly cascade: boolean;
|
|
7166
|
+
readonly virtualScroll: boolean;
|
|
6543
7167
|
readonly pagination: false | PaginationProps;
|
|
6544
7168
|
readonly paginateSinglePage: boolean;
|
|
6545
7169
|
readonly bottomBordered: boolean | undefined;
|
|
@@ -6554,14 +7178,11 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6554
7178
|
readonly virtualScrollHeader: boolean;
|
|
6555
7179
|
readonly headerHeight: number;
|
|
6556
7180
|
readonly minRowHeight: number;
|
|
6557
|
-
readonly allowCheckingNotLoaded: boolean;
|
|
6558
|
-
readonly cascade: boolean;
|
|
6559
7181
|
readonly childrenKey: string;
|
|
6560
7182
|
readonly indent: number;
|
|
6561
7183
|
readonly flexHeight: boolean;
|
|
6562
7184
|
readonly summaryPlacement: "top" | "bottom";
|
|
6563
7185
|
readonly paginationBehaviorOnFilter: "first" | "current";
|
|
6564
|
-
readonly spinProps: BaseLoadingExposedProps;
|
|
6565
7186
|
}, SlotsType<DataTableSlots>, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
6566
7187
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
6567
7188
|
export default _default;
|