@ecan-bi/datav 1.3.1 → 1.3.3
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 +4462 -4391
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +30 -30
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/container/modal/Modal.vue.d.ts +8 -0
- package/types/container/modal/index.d.ts +8 -0
- package/types/container/modal/props.d.ts +6 -0
- package/types/control/date-picker/DatePicker.vue.d.ts +7 -7
- package/types/control/date-picker/index.d.ts +7 -7
- package/types/control/date-picker/props.d.ts +2 -2
- package/types/control/range-picker/RangePicker.vue.d.ts +10 -10
- package/types/control/range-picker/index.d.ts +10 -10
- package/types/control/range-picker/props.d.ts +2 -2
- package/types/graph/radar/Radar.vue.d.ts +1 -4
- package/types/graph/radar/index.d.ts +1 -4
- package/types/table/table/Table.vue.d.ts +25 -0
- package/types/table/table/index.d.ts +25 -0
- package/types/table/table/props.d.ts +15 -0
|
@@ -191,6 +191,18 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
191
191
|
type?: import("vue").PropType<string>;
|
|
192
192
|
default?: string;
|
|
193
193
|
};
|
|
194
|
+
subTotalColumn: {
|
|
195
|
+
type?: import("vue").PropType<string>;
|
|
196
|
+
default?: string;
|
|
197
|
+
};
|
|
198
|
+
subTotalName: {
|
|
199
|
+
type?: import("vue").PropType<string>;
|
|
200
|
+
default?: string;
|
|
201
|
+
};
|
|
202
|
+
isSortByFront: {
|
|
203
|
+
type?: import("vue").PropType<boolean>;
|
|
204
|
+
default?: boolean;
|
|
205
|
+
};
|
|
194
206
|
id: {
|
|
195
207
|
type?: import("vue").PropType<string>;
|
|
196
208
|
default?: string;
|
|
@@ -336,6 +348,7 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
336
348
|
seqIcon2: any;
|
|
337
349
|
seqIcon3: any;
|
|
338
350
|
iconSize: import("vue").ComputedRef<number>;
|
|
351
|
+
containerClass: import("vue").ComputedRef<string>;
|
|
339
352
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
340
353
|
columns: {
|
|
341
354
|
type?: import("vue").PropType<{
|
|
@@ -529,6 +542,18 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
529
542
|
type?: import("vue").PropType<string>;
|
|
530
543
|
default?: string;
|
|
531
544
|
};
|
|
545
|
+
subTotalColumn: {
|
|
546
|
+
type?: import("vue").PropType<string>;
|
|
547
|
+
default?: string;
|
|
548
|
+
};
|
|
549
|
+
subTotalName: {
|
|
550
|
+
type?: import("vue").PropType<string>;
|
|
551
|
+
default?: string;
|
|
552
|
+
};
|
|
553
|
+
isSortByFront: {
|
|
554
|
+
type?: import("vue").PropType<boolean>;
|
|
555
|
+
default?: boolean;
|
|
556
|
+
};
|
|
532
557
|
id: {
|
|
533
558
|
type?: import("vue").PropType<string>;
|
|
534
559
|
default?: string;
|
|
@@ -52,6 +52,9 @@ export interface TableProps extends Props {
|
|
|
52
52
|
activePaginationColor: string;
|
|
53
53
|
activePaginationBgColor: string;
|
|
54
54
|
hoverBackgroundColor: string;
|
|
55
|
+
subTotalColumn: string;
|
|
56
|
+
subTotalName: string;
|
|
57
|
+
isSortByFront: boolean;
|
|
55
58
|
}
|
|
56
59
|
export declare const tableProps: TableProps;
|
|
57
60
|
export declare const tableComponentProps: {
|
|
@@ -247,6 +250,18 @@ export declare const tableComponentProps: {
|
|
|
247
250
|
type?: import("vue").PropType<string>;
|
|
248
251
|
default?: string;
|
|
249
252
|
};
|
|
253
|
+
subTotalColumn: {
|
|
254
|
+
type?: import("vue").PropType<string>;
|
|
255
|
+
default?: string;
|
|
256
|
+
};
|
|
257
|
+
subTotalName: {
|
|
258
|
+
type?: import("vue").PropType<string>;
|
|
259
|
+
default?: string;
|
|
260
|
+
};
|
|
261
|
+
isSortByFront: {
|
|
262
|
+
type?: import("vue").PropType<boolean>;
|
|
263
|
+
default?: boolean;
|
|
264
|
+
};
|
|
250
265
|
id: {
|
|
251
266
|
type?: import("vue").PropType<string>;
|
|
252
267
|
default?: string;
|