@opentiny/vue-dynamic-scroller 3.8.2 → 3.8.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/package.json +5 -4
- package/src/index.d.ts +73 -1
- package/src/pc.vue.d.ts +10 -1
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentiny/vue-dynamic-scroller",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.3",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "./lib/index.js",
|
|
7
|
+
"sideEffects": false,
|
|
7
8
|
"dependencies": {
|
|
8
|
-
"@opentiny/vue-common": "~3.8.
|
|
9
|
-
"@opentiny/vue-renderless": "~3.8.
|
|
10
|
-
"@opentiny/vue-recycle-scroller": "~3.8.
|
|
9
|
+
"@opentiny/vue-common": "~3.8.3",
|
|
10
|
+
"@opentiny/vue-renderless": "~3.8.3",
|
|
11
|
+
"@opentiny/vue-recycle-scroller": "~3.8.3"
|
|
11
12
|
},
|
|
12
13
|
"license": "MIT",
|
|
13
14
|
"types": "index.d.ts"
|
package/src/index.d.ts
CHANGED
|
@@ -1,2 +1,74 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
2
|
+
items: {
|
|
3
|
+
type: ArrayConstructor;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
keyField: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
direction: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: string;
|
|
13
|
+
validator: (value: unknown) => boolean;
|
|
14
|
+
};
|
|
15
|
+
listTag: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
19
|
+
itemTag: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
minItemSize: {
|
|
24
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
25
|
+
required: true;
|
|
26
|
+
};
|
|
27
|
+
tiny_mode: StringConstructor;
|
|
28
|
+
tiny_mode_root: BooleanConstructor;
|
|
29
|
+
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
30
|
+
tiny_renderless: FunctionConstructor;
|
|
31
|
+
tiny_theme: StringConstructor;
|
|
32
|
+
tiny_chart_theme: ObjectConstructor;
|
|
33
|
+
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
34
|
+
[key: string]: any;
|
|
35
|
+
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
36
|
+
items: {
|
|
37
|
+
type: ArrayConstructor;
|
|
38
|
+
required: true;
|
|
39
|
+
};
|
|
40
|
+
keyField: {
|
|
41
|
+
type: StringConstructor;
|
|
42
|
+
default: string;
|
|
43
|
+
};
|
|
44
|
+
direction: {
|
|
45
|
+
type: StringConstructor;
|
|
46
|
+
default: string;
|
|
47
|
+
validator: (value: unknown) => boolean;
|
|
48
|
+
};
|
|
49
|
+
listTag: {
|
|
50
|
+
type: StringConstructor;
|
|
51
|
+
default: string;
|
|
52
|
+
};
|
|
53
|
+
itemTag: {
|
|
54
|
+
type: StringConstructor;
|
|
55
|
+
default: string;
|
|
56
|
+
};
|
|
57
|
+
minItemSize: {
|
|
58
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
59
|
+
required: true;
|
|
60
|
+
};
|
|
61
|
+
tiny_mode: StringConstructor;
|
|
62
|
+
tiny_mode_root: BooleanConstructor;
|
|
63
|
+
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
64
|
+
tiny_renderless: FunctionConstructor;
|
|
65
|
+
tiny_theme: StringConstructor;
|
|
66
|
+
tiny_chart_theme: ObjectConstructor;
|
|
67
|
+
}>>, {
|
|
68
|
+
tiny_mode_root: boolean;
|
|
69
|
+
direction: string;
|
|
70
|
+
keyField: string;
|
|
71
|
+
listTag: string;
|
|
72
|
+
itemTag: string;
|
|
73
|
+
}>;
|
|
2
74
|
export default _default;
|
package/src/pc.vue.d.ts
CHANGED
|
@@ -1,2 +1,11 @@
|
|
|
1
|
-
declare const _sfc_main:
|
|
1
|
+
declare const _sfc_main: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
}>, any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("visible" | "resize")[], "visible" | "resize", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
|
|
4
|
+
[x: string]: any;
|
|
5
|
+
}>>> & {
|
|
6
|
+
onVisible?: ((...args: any[]) => any) | undefined;
|
|
7
|
+
onResize?: ((...args: any[]) => any) | undefined;
|
|
8
|
+
}, {
|
|
9
|
+
[x: string]: any;
|
|
10
|
+
}>;
|
|
2
11
|
export default _sfc_main;
|