@ecan-bi/datav 1.1.60 → 1.1.62
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 +2365 -2550
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +6 -6
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/control/select/Select.vue.d.ts +8 -0
- package/types/control/select/index.d.ts +8 -0
- package/types/control/select/props.d.ts +5 -0
- package/types/graph/bar/Bar.vue.d.ts +0 -12
- package/types/graph/bar/index.d.ts +0 -12
- package/types/graph/bar/props.d.ts +0 -9
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +14 -6
- package/types/graph/combo-graph/index.d.ts +14 -6
- package/types/graph/combo-graph/props.d.ts +10 -4
- package/types/graph/line/props.d.ts +3 -1
- package/types/graph/pie/Pie.vue.d.ts +14 -6
- package/types/graph/pie/index.d.ts +14 -6
- package/types/graph/pie/props.d.ts +10 -4
- package/types/graph/scatter/Scatter.vue.d.ts +14 -6
- package/types/graph/scatter/index.d.ts +14 -6
- package/types/graph/scatter/props.d.ts +10 -4
- package/types/table/table/Table.vue.d.ts +0 -12
- package/types/table/table/index.d.ts +0 -12
- package/types/table/table/props.d.ts +0 -9
|
@@ -110,15 +110,9 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
110
110
|
graphicConfig: {
|
|
111
111
|
type?: import("vue").PropType<{
|
|
112
112
|
[key: string]: any;
|
|
113
|
-
chartType: "table";
|
|
114
|
-
plugin: "1";
|
|
115
|
-
layer: "1";
|
|
116
113
|
}>;
|
|
117
114
|
default?: {
|
|
118
115
|
[key: string]: any;
|
|
119
|
-
chartType: "table";
|
|
120
|
-
plugin: "1";
|
|
121
|
-
layer: "1";
|
|
122
116
|
};
|
|
123
117
|
};
|
|
124
118
|
id: {
|
|
@@ -366,15 +360,9 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
366
360
|
graphicConfig: {
|
|
367
361
|
type?: import("vue").PropType<{
|
|
368
362
|
[key: string]: any;
|
|
369
|
-
chartType: "table";
|
|
370
|
-
plugin: "1";
|
|
371
|
-
layer: "1";
|
|
372
363
|
}>;
|
|
373
364
|
default?: {
|
|
374
365
|
[key: string]: any;
|
|
375
|
-
chartType: "table";
|
|
376
|
-
plugin: "1";
|
|
377
|
-
layer: "1";
|
|
378
366
|
};
|
|
379
367
|
};
|
|
380
368
|
id: {
|
|
@@ -32,9 +32,6 @@ export interface TableProps extends Props {
|
|
|
32
32
|
filterDropdownHeight: string;
|
|
33
33
|
graphicConfig: {
|
|
34
34
|
[key: string]: any;
|
|
35
|
-
chartType: 'table';
|
|
36
|
-
plugin: '1';
|
|
37
|
-
layer: '1';
|
|
38
35
|
};
|
|
39
36
|
}
|
|
40
37
|
export declare const tableProps: TableProps;
|
|
@@ -150,15 +147,9 @@ export declare const tableComponentProps: {
|
|
|
150
147
|
graphicConfig: {
|
|
151
148
|
type?: import("vue").PropType<{
|
|
152
149
|
[key: string]: any;
|
|
153
|
-
chartType: 'table';
|
|
154
|
-
plugin: '1';
|
|
155
|
-
layer: '1';
|
|
156
150
|
}>;
|
|
157
151
|
default?: {
|
|
158
152
|
[key: string]: any;
|
|
159
|
-
chartType: 'table';
|
|
160
|
-
plugin: '1';
|
|
161
|
-
layer: '1';
|
|
162
153
|
};
|
|
163
154
|
};
|
|
164
155
|
id: {
|