@dao-style/core 1.13.1-beta.4 → 1.13.1-beta.5
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/dao-style.js +7 -7
- package/dist/dao-style.mjs +3669 -3656
- 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>;
|