@opentiny/vue-dynamic-scroller 2.8.2 → 2.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 +80 -1
- package/src/pc.vue.d.ts +11 -1
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentiny/vue-dynamic-scroller",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.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": "~2.8.
|
|
9
|
-
"@opentiny/vue-renderless": "~3.8.
|
|
10
|
-
"@opentiny/vue-recycle-scroller": "~2.8.
|
|
9
|
+
"@opentiny/vue-common": "~2.8.3",
|
|
10
|
+
"@opentiny/vue-renderless": "~3.8.3",
|
|
11
|
+
"@opentiny/vue-recycle-scroller": "~2.8.3"
|
|
11
12
|
},
|
|
12
13
|
"license": "MIT",
|
|
13
14
|
"types": "index.d.ts"
|
package/src/index.d.ts
CHANGED
|
@@ -1,2 +1,81 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: import("vue").ComponentOptions<import("vue").default, import("@vue/composition-api/dist/vue-composition-api.js").ShallowUnwrapRef<() => import("vue").VNode> & import("@vue/composition-api/dist/vue-composition-api.js").Data, {}, {}, {
|
|
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
|
+
}, {
|
|
34
|
+
tiny_mode_root: boolean;
|
|
35
|
+
direction: string;
|
|
36
|
+
items: unknown[];
|
|
37
|
+
keyField: string;
|
|
38
|
+
listTag: string;
|
|
39
|
+
itemTag: string;
|
|
40
|
+
minItemSize: string | number;
|
|
41
|
+
} & {
|
|
42
|
+
tiny_mode?: string | undefined;
|
|
43
|
+
tiny_template?: unknown;
|
|
44
|
+
tiny_renderless?: Function | undefined;
|
|
45
|
+
tiny_theme?: string | undefined;
|
|
46
|
+
tiny_chart_theme?: Record<string, any> | undefined;
|
|
47
|
+
}> & import("vue").VueConstructor<import("vue").default> & (new (...args: any[]) => import("@vue/composition-api/dist/vue-composition-api.js").ComponentRenderProxy<{
|
|
48
|
+
tiny_mode_root: boolean;
|
|
49
|
+
direction: string;
|
|
50
|
+
items: unknown[];
|
|
51
|
+
keyField: string;
|
|
52
|
+
listTag: string;
|
|
53
|
+
itemTag: string;
|
|
54
|
+
minItemSize: string | number;
|
|
55
|
+
} & {
|
|
56
|
+
tiny_mode?: string | undefined;
|
|
57
|
+
tiny_template?: unknown;
|
|
58
|
+
tiny_renderless?: Function | undefined;
|
|
59
|
+
tiny_theme?: string | undefined;
|
|
60
|
+
tiny_chart_theme?: Record<string, any> | undefined;
|
|
61
|
+
}, import("@vue/composition-api/dist/vue-composition-api.js").ShallowUnwrapRef<() => import("vue").VNode>, import("@vue/composition-api/dist/vue-composition-api.js").Data, {}, {}, {
|
|
62
|
+
tiny_mode_root: boolean;
|
|
63
|
+
direction: string;
|
|
64
|
+
items: unknown[];
|
|
65
|
+
keyField: string;
|
|
66
|
+
listTag: string;
|
|
67
|
+
itemTag: string;
|
|
68
|
+
minItemSize: string | number;
|
|
69
|
+
} & {
|
|
70
|
+
tiny_mode?: string | undefined;
|
|
71
|
+
tiny_template?: unknown;
|
|
72
|
+
tiny_renderless?: Function | undefined;
|
|
73
|
+
tiny_theme?: string | undefined;
|
|
74
|
+
tiny_chart_theme?: Record<string, any> | undefined;
|
|
75
|
+
}, {
|
|
76
|
+
direction: string;
|
|
77
|
+
keyField: string;
|
|
78
|
+
listTag: string;
|
|
79
|
+
itemTag: string;
|
|
80
|
+
}, true>);
|
|
2
81
|
export default _default;
|
package/src/pc.vue.d.ts
CHANGED
|
@@ -1,2 +1,12 @@
|
|
|
1
|
-
declare const _sfc_main: any
|
|
1
|
+
declare const _sfc_main: import("vue").ComponentOptions<import("vue").default, import("@vue/composition-api/dist/vue-composition-api.js").ShallowUnwrapRef<any> & import("@vue/composition-api/dist/vue-composition-api.js").Data, {}, {}, Readonly<{
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
}>, {
|
|
4
|
+
[x: string]: any;
|
|
5
|
+
} & {}> & import("vue").VueConstructor<import("vue").default> & (new (...args: any[]) => import("@vue/composition-api/dist/vue-composition-api.js").ComponentRenderProxy<{
|
|
6
|
+
[x: string]: any;
|
|
7
|
+
} & {}, import("@vue/composition-api/dist/vue-composition-api.js").ShallowUnwrapRef<any>, import("@vue/composition-api/dist/vue-composition-api.js").Data, {}, {}, {
|
|
8
|
+
[x: string]: any;
|
|
9
|
+
} & {}, {
|
|
10
|
+
[x: string]: any;
|
|
11
|
+
}, true>);
|
|
2
12
|
export default _sfc_main;
|