@ecan-bi/datav 1.5.40 → 1.5.41
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/index.es.js +1630 -1608
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +18 -18
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/table/table/Table.vue.d.ts +9 -0
- package/types/table/table/index.d.ts +9 -0
- package/types/table/table/props.d.ts +5 -0
package/package.json
CHANGED
|
@@ -263,6 +263,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
263
263
|
type?: import("vue").PropType<string>;
|
|
264
264
|
default?: string;
|
|
265
265
|
};
|
|
266
|
+
tableVersion: {
|
|
267
|
+
type?: import("vue").PropType<number>;
|
|
268
|
+
default?: number;
|
|
269
|
+
};
|
|
266
270
|
id: {
|
|
267
271
|
type?: import("vue").PropType<string>;
|
|
268
272
|
default?: string;
|
|
@@ -440,6 +444,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
440
444
|
pageSizeVisible: import("vue").Ref<boolean>;
|
|
441
445
|
pageSize: import("vue").Ref<number>;
|
|
442
446
|
tableRef: import("vue").Ref<any>;
|
|
447
|
+
tableWrapRef: import("vue").Ref<any>;
|
|
443
448
|
rowClassName: (_record: any, index: number) => any;
|
|
444
449
|
tableHeight: import("vue").ComputedRef<string>;
|
|
445
450
|
tableBgColor: import("vue").ComputedRef<string>;
|
|
@@ -741,6 +746,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
741
746
|
type?: import("vue").PropType<string>;
|
|
742
747
|
default?: string;
|
|
743
748
|
};
|
|
749
|
+
tableVersion: {
|
|
750
|
+
type?: import("vue").PropType<number>;
|
|
751
|
+
default?: number;
|
|
752
|
+
};
|
|
744
753
|
id: {
|
|
745
754
|
type?: import("vue").PropType<string>;
|
|
746
755
|
default?: string;
|
|
@@ -263,6 +263,10 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
263
263
|
type?: import("vue").PropType<string>;
|
|
264
264
|
default?: string;
|
|
265
265
|
};
|
|
266
|
+
tableVersion: {
|
|
267
|
+
type?: import("vue").PropType<number>;
|
|
268
|
+
default?: number;
|
|
269
|
+
};
|
|
266
270
|
id: {
|
|
267
271
|
type?: import("vue").PropType<string>;
|
|
268
272
|
default?: string;
|
|
@@ -440,6 +444,7 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
440
444
|
pageSizeVisible: import("vue").Ref<boolean>;
|
|
441
445
|
pageSize: import("vue").Ref<number>;
|
|
442
446
|
tableRef: import("vue").Ref<any>;
|
|
447
|
+
tableWrapRef: import("vue").Ref<any>;
|
|
443
448
|
rowClassName: (_record: any, index: number) => any;
|
|
444
449
|
tableHeight: import("vue").ComputedRef<string>;
|
|
445
450
|
tableBgColor: import("vue").ComputedRef<string>;
|
|
@@ -741,6 +746,10 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
741
746
|
type?: import("vue").PropType<string>;
|
|
742
747
|
default?: string;
|
|
743
748
|
};
|
|
749
|
+
tableVersion: {
|
|
750
|
+
type?: import("vue").PropType<number>;
|
|
751
|
+
default?: number;
|
|
752
|
+
};
|
|
744
753
|
id: {
|
|
745
754
|
type?: import("vue").PropType<string>;
|
|
746
755
|
default?: string;
|
|
@@ -72,6 +72,7 @@ export interface TableProps extends Props {
|
|
|
72
72
|
}[];
|
|
73
73
|
bodyRowHeight: string;
|
|
74
74
|
headRowHeight: string;
|
|
75
|
+
tableVersion: number;
|
|
75
76
|
}
|
|
76
77
|
export declare const tableProps: TableProps;
|
|
77
78
|
export declare const tableComponentProps: {
|
|
@@ -339,6 +340,10 @@ export declare const tableComponentProps: {
|
|
|
339
340
|
type?: import("vue").PropType<string>;
|
|
340
341
|
default?: string;
|
|
341
342
|
};
|
|
343
|
+
tableVersion: {
|
|
344
|
+
type?: import("vue").PropType<number>;
|
|
345
|
+
default?: number;
|
|
346
|
+
};
|
|
342
347
|
id: {
|
|
343
348
|
type?: import("vue").PropType<string>;
|
|
344
349
|
default?: string;
|