@ecan-bi/datav 1.3.86 → 1.3.87
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 +4219 -4144
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +21 -21
- 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 +20 -0
- package/types/table/table/index.d.ts +20 -0
- package/types/table/table/props.d.ts +10 -0
package/package.json
CHANGED
|
@@ -223,6 +223,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
223
223
|
type?: import("vue").PropType<string>;
|
|
224
224
|
default?: string;
|
|
225
225
|
};
|
|
226
|
+
isAutoScroll: {
|
|
227
|
+
type?: import("vue").PropType<boolean>;
|
|
228
|
+
default?: boolean;
|
|
229
|
+
};
|
|
230
|
+
scrollSpeed: {
|
|
231
|
+
type?: import("vue").PropType<number>;
|
|
232
|
+
default?: number;
|
|
233
|
+
};
|
|
226
234
|
id: {
|
|
227
235
|
type?: import("vue").PropType<string>;
|
|
228
236
|
default?: string;
|
|
@@ -397,6 +405,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
397
405
|
height: string;
|
|
398
406
|
};
|
|
399
407
|
getCellText: (text: string | number, column: any) => any;
|
|
408
|
+
autoScrollHeight: import("vue").Ref<number>;
|
|
409
|
+
autoScrollTop: import("vue").Ref<number>;
|
|
410
|
+
isScroll: import("vue").ComputedRef<boolean>;
|
|
411
|
+
scrollWrapStyle: import("vue").Ref<{}>;
|
|
400
412
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
401
413
|
columns: {
|
|
402
414
|
type?: import("vue").PropType<{
|
|
@@ -622,6 +634,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
622
634
|
type?: import("vue").PropType<string>;
|
|
623
635
|
default?: string;
|
|
624
636
|
};
|
|
637
|
+
isAutoScroll: {
|
|
638
|
+
type?: import("vue").PropType<boolean>;
|
|
639
|
+
default?: boolean;
|
|
640
|
+
};
|
|
641
|
+
scrollSpeed: {
|
|
642
|
+
type?: import("vue").PropType<number>;
|
|
643
|
+
default?: number;
|
|
644
|
+
};
|
|
625
645
|
id: {
|
|
626
646
|
type?: import("vue").PropType<string>;
|
|
627
647
|
default?: string;
|
|
@@ -223,6 +223,14 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
223
223
|
type?: import("vue").PropType<string>;
|
|
224
224
|
default?: string;
|
|
225
225
|
};
|
|
226
|
+
isAutoScroll: {
|
|
227
|
+
type?: import("vue").PropType<boolean>;
|
|
228
|
+
default?: boolean;
|
|
229
|
+
};
|
|
230
|
+
scrollSpeed: {
|
|
231
|
+
type?: import("vue").PropType<number>;
|
|
232
|
+
default?: number;
|
|
233
|
+
};
|
|
226
234
|
id: {
|
|
227
235
|
type?: import("vue").PropType<string>;
|
|
228
236
|
default?: string;
|
|
@@ -397,6 +405,10 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
397
405
|
height: string;
|
|
398
406
|
};
|
|
399
407
|
getCellText: (text: string | number, column: any) => any;
|
|
408
|
+
autoScrollHeight: import("vue").Ref<number>;
|
|
409
|
+
autoScrollTop: import("vue").Ref<number>;
|
|
410
|
+
isScroll: import("vue").ComputedRef<boolean>;
|
|
411
|
+
scrollWrapStyle: import("vue").Ref<{}>;
|
|
400
412
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
401
413
|
columns: {
|
|
402
414
|
type?: import("vue").PropType<{
|
|
@@ -622,6 +634,14 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
622
634
|
type?: import("vue").PropType<string>;
|
|
623
635
|
default?: string;
|
|
624
636
|
};
|
|
637
|
+
isAutoScroll: {
|
|
638
|
+
type?: import("vue").PropType<boolean>;
|
|
639
|
+
default?: boolean;
|
|
640
|
+
};
|
|
641
|
+
scrollSpeed: {
|
|
642
|
+
type?: import("vue").PropType<number>;
|
|
643
|
+
default?: number;
|
|
644
|
+
};
|
|
625
645
|
id: {
|
|
626
646
|
type?: import("vue").PropType<string>;
|
|
627
647
|
default?: string;
|
|
@@ -61,6 +61,8 @@ export interface TableProps extends Props {
|
|
|
61
61
|
target: 'self' | 'blank' | 'event';
|
|
62
62
|
linkPage: string;
|
|
63
63
|
href: string;
|
|
64
|
+
isAutoScroll: boolean;
|
|
65
|
+
scrollSpeed: number;
|
|
64
66
|
}
|
|
65
67
|
export declare const tableProps: TableProps;
|
|
66
68
|
export declare const tableComponentProps: {
|
|
@@ -288,6 +290,14 @@ export declare const tableComponentProps: {
|
|
|
288
290
|
type?: import("vue").PropType<string>;
|
|
289
291
|
default?: string;
|
|
290
292
|
};
|
|
293
|
+
isAutoScroll: {
|
|
294
|
+
type?: import("vue").PropType<boolean>;
|
|
295
|
+
default?: boolean;
|
|
296
|
+
};
|
|
297
|
+
scrollSpeed: {
|
|
298
|
+
type?: import("vue").PropType<number>;
|
|
299
|
+
default?: number;
|
|
300
|
+
};
|
|
291
301
|
id: {
|
|
292
302
|
type?: import("vue").PropType<string>;
|
|
293
303
|
default?: string;
|