@dao-style/core 1.13.1-beta.4 → 1.13.1-beta.6
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/dist/components/table/table.d.ts +6 -0
- package/dist/components/table/table.vue.d.ts +2 -0
- package/dist/components/table/type.d.ts +1 -0
- package/dist/components/virtual-select/props.d.ts +1 -1
- package/dist/components/virtual-select/virtual-select.d.ts +7 -7
- package/dist/components/virtual-select/virtual-select.vue.d.ts +3 -3
- package/dist/dao-style.js +7 -7
- package/dist/dao-style.mjs +4651 -4626
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -413,6 +413,7 @@ declare const DaoTable: {
|
|
|
413
413
|
defaultHide?: boolean | undefined;
|
|
414
414
|
className?: string | undefined;
|
|
415
415
|
ellipsis?: boolean | import("./type").ColumnEllipsisContentFun | undefined;
|
|
416
|
+
tip?: string | undefined;
|
|
416
417
|
}[];
|
|
417
418
|
filterColumns: import("vue").ComputedRef<{
|
|
418
419
|
id: string;
|
|
@@ -426,6 +427,7 @@ declare const DaoTable: {
|
|
|
426
427
|
defaultHide?: boolean | undefined;
|
|
427
428
|
className?: string | undefined;
|
|
428
429
|
ellipsis?: boolean | import("./type").ColumnEllipsisContentFun | undefined;
|
|
430
|
+
tip?: string | undefined;
|
|
429
431
|
}[]>;
|
|
430
432
|
tableWrapperClasses: import("vue").ComputedRef<string[]>;
|
|
431
433
|
tableSetting: Record<string, import("./type").tableSettingItem>;
|
|
@@ -723,6 +725,7 @@ declare const DaoTable: {
|
|
|
723
725
|
defaultHide?: boolean | undefined;
|
|
724
726
|
className?: string | undefined;
|
|
725
727
|
ellipsis?: boolean | import("./type").ColumnEllipsisContentFun | undefined;
|
|
728
|
+
tip?: string | undefined;
|
|
726
729
|
}[];
|
|
727
730
|
filterColumns: import("vue").ComputedRef<{
|
|
728
731
|
id: string;
|
|
@@ -736,6 +739,7 @@ declare const DaoTable: {
|
|
|
736
739
|
defaultHide?: boolean | undefined;
|
|
737
740
|
className?: string | undefined;
|
|
738
741
|
ellipsis?: boolean | import("./type").ColumnEllipsisContentFun | undefined;
|
|
742
|
+
tip?: string | undefined;
|
|
739
743
|
}[]>;
|
|
740
744
|
tableWrapperClasses: import("vue").ComputedRef<string[]>;
|
|
741
745
|
tableSetting: Record<string, import("./type").tableSettingItem>;
|
|
@@ -982,6 +986,7 @@ declare const DaoTable: {
|
|
|
982
986
|
defaultHide?: boolean | undefined;
|
|
983
987
|
className?: string | undefined;
|
|
984
988
|
ellipsis?: boolean | import("./type").ColumnEllipsisContentFun | undefined;
|
|
989
|
+
tip?: string | undefined;
|
|
985
990
|
}[];
|
|
986
991
|
filterColumns: import("vue").ComputedRef<{
|
|
987
992
|
id: string;
|
|
@@ -995,6 +1000,7 @@ declare const DaoTable: {
|
|
|
995
1000
|
defaultHide?: boolean | undefined;
|
|
996
1001
|
className?: string | undefined;
|
|
997
1002
|
ellipsis?: boolean | import("./type").ColumnEllipsisContentFun | undefined;
|
|
1003
|
+
tip?: string | undefined;
|
|
998
1004
|
}[]>;
|
|
999
1005
|
tableWrapperClasses: import("vue").ComputedRef<string[]>;
|
|
1000
1006
|
tableSetting: Record<string, import("./type").tableSettingItem>;
|
|
@@ -165,6 +165,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
165
165
|
defaultHide?: boolean | undefined;
|
|
166
166
|
className?: string | undefined;
|
|
167
167
|
ellipsis?: boolean | ColumnEllipsisContentFun | undefined;
|
|
168
|
+
tip?: string | undefined;
|
|
168
169
|
}[];
|
|
169
170
|
filterColumns: import("vue").ComputedRef<{
|
|
170
171
|
id: string;
|
|
@@ -178,6 +179,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
178
179
|
defaultHide?: boolean | undefined;
|
|
179
180
|
className?: string | undefined;
|
|
180
181
|
ellipsis?: boolean | ColumnEllipsisContentFun | undefined;
|
|
182
|
+
tip?: string | undefined;
|
|
181
183
|
}[]>;
|
|
182
184
|
tableWrapperClasses: import("vue").ComputedRef<string[]>;
|
|
183
185
|
tableSetting: Record<string, tableSettingItem>;
|
|
@@ -13,7 +13,7 @@ declare const DaoVirtualSelect: {
|
|
|
13
13
|
appendTo: string | false | HTMLElement;
|
|
14
14
|
size: string;
|
|
15
15
|
multiple: boolean;
|
|
16
|
-
options: OptionType[];
|
|
16
|
+
options: string[] | OptionType[];
|
|
17
17
|
loading: boolean;
|
|
18
18
|
status: "default" | "error" | "success";
|
|
19
19
|
clearable: boolean;
|
|
@@ -34,7 +34,7 @@ declare const DaoVirtualSelect: {
|
|
|
34
34
|
default: boolean;
|
|
35
35
|
};
|
|
36
36
|
options: {
|
|
37
|
-
type: import("vue").PropType<OptionType[]>;
|
|
37
|
+
type: import("vue").PropType<string[] | OptionType[]>;
|
|
38
38
|
default: () => never[];
|
|
39
39
|
};
|
|
40
40
|
labelKey: {
|
|
@@ -142,7 +142,7 @@ declare const DaoVirtualSelect: {
|
|
|
142
142
|
default: boolean;
|
|
143
143
|
};
|
|
144
144
|
options: {
|
|
145
|
-
type: import("vue").PropType<OptionType[]>;
|
|
145
|
+
type: import("vue").PropType<string[] | OptionType[]>;
|
|
146
146
|
default: () => never[];
|
|
147
147
|
};
|
|
148
148
|
labelKey: {
|
|
@@ -648,7 +648,7 @@ declare const DaoVirtualSelect: {
|
|
|
648
648
|
appendTo: string | false | HTMLElement;
|
|
649
649
|
size: string;
|
|
650
650
|
multiple: boolean;
|
|
651
|
-
options: OptionType[];
|
|
651
|
+
options: string[] | OptionType[];
|
|
652
652
|
loading: boolean;
|
|
653
653
|
status: "default" | "error" | "success";
|
|
654
654
|
clearable: boolean;
|
|
@@ -689,7 +689,7 @@ declare const DaoVirtualSelect: {
|
|
|
689
689
|
default: boolean;
|
|
690
690
|
};
|
|
691
691
|
options: {
|
|
692
|
-
type: import("vue").PropType<OptionType[]>;
|
|
692
|
+
type: import("vue").PropType<string[] | OptionType[]>;
|
|
693
693
|
default: () => never[];
|
|
694
694
|
};
|
|
695
695
|
labelKey: {
|
|
@@ -1198,7 +1198,7 @@ declare const DaoVirtualSelect: {
|
|
|
1198
1198
|
default: boolean;
|
|
1199
1199
|
};
|
|
1200
1200
|
options: {
|
|
1201
|
-
type: import("vue").PropType<OptionType[]>;
|
|
1201
|
+
type: import("vue").PropType<string[] | OptionType[]>;
|
|
1202
1202
|
default: () => never[];
|
|
1203
1203
|
};
|
|
1204
1204
|
labelKey: {
|
|
@@ -1704,7 +1704,7 @@ declare const DaoVirtualSelect: {
|
|
|
1704
1704
|
appendTo: string | false | HTMLElement;
|
|
1705
1705
|
size: string;
|
|
1706
1706
|
multiple: boolean;
|
|
1707
|
-
options: OptionType[];
|
|
1707
|
+
options: string[] | OptionType[];
|
|
1708
1708
|
loading: boolean;
|
|
1709
1709
|
status: "default" | "error" | "success";
|
|
1710
1710
|
clearable: boolean;
|
|
@@ -7,7 +7,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7
7
|
default: boolean;
|
|
8
8
|
};
|
|
9
9
|
options: {
|
|
10
|
-
type: import("vue").PropType<OptionType[]>;
|
|
10
|
+
type: import("vue").PropType<string[] | OptionType[]>;
|
|
11
11
|
default: () => never[];
|
|
12
12
|
};
|
|
13
13
|
labelKey: {
|
|
@@ -505,7 +505,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
505
505
|
default: boolean;
|
|
506
506
|
};
|
|
507
507
|
options: {
|
|
508
|
-
type: import("vue").PropType<OptionType[]>;
|
|
508
|
+
type: import("vue").PropType<string[] | OptionType[]>;
|
|
509
509
|
default: () => never[];
|
|
510
510
|
};
|
|
511
511
|
labelKey: {
|
|
@@ -600,7 +600,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
600
600
|
appendTo: string | false | HTMLElement;
|
|
601
601
|
size: string;
|
|
602
602
|
multiple: boolean;
|
|
603
|
-
options: OptionType[];
|
|
603
|
+
options: string[] | OptionType[];
|
|
604
604
|
loading: boolean;
|
|
605
605
|
status: "default" | "error" | "success";
|
|
606
606
|
clearable: boolean;
|