@opentiny/vue-dynamic-scroller 3.19.0 → 3.20.0
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/lib/index.js +1 -1
- package/lib/pc.js +1 -1
- package/package.json +4 -4
- package/src/pc.vue.d.ts +3 -3
package/lib/index.js
CHANGED
|
@@ -55,7 +55,7 @@ var DynamicScroller = defineComponent({
|
|
|
55
55
|
});
|
|
56
56
|
}
|
|
57
57
|
});
|
|
58
|
-
var version = "3.
|
|
58
|
+
var version = "3.20.0";
|
|
59
59
|
DynamicScroller.IdState = RecycleScroller.IdState;
|
|
60
60
|
DynamicScroller.install = function(Vue) {
|
|
61
61
|
Vue.component(DynamicScroller.name, DynamicScroller);
|
package/lib/pc.js
CHANGED
|
@@ -33,7 +33,7 @@ function _arrayLikeToArray(r, a) {
|
|
|
33
33
|
var _export_sfc = function _export_sfc2(sfc, props) {
|
|
34
34
|
var target = sfc.__vccOpts || sfc;
|
|
35
35
|
for (var _iterator = _createForOfIteratorHelperLoose(props), _step; !(_step = _iterator()).done; ) {
|
|
36
|
-
var _step$
|
|
36
|
+
var _step$value = _step.value, key = _step$value[0], val = _step$value[1];
|
|
37
37
|
target[key] = val;
|
|
38
38
|
}
|
|
39
39
|
return target;
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentiny/vue-dynamic-scroller",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.20.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "./lib/index.js",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"type": "module",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@opentiny/vue-common": "~3.
|
|
11
|
-
"@opentiny/vue-renderless": "~3.
|
|
12
|
-
"@opentiny/vue-recycle-scroller": "~3.
|
|
10
|
+
"@opentiny/vue-common": "~3.20.0",
|
|
11
|
+
"@opentiny/vue-renderless": "~3.20.0",
|
|
12
|
+
"@opentiny/vue-recycle-scroller": "~3.20.0"
|
|
13
13
|
},
|
|
14
14
|
"license": "MIT",
|
|
15
15
|
"types": "index.d.ts"
|
package/src/pc.vue.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
2
|
+
items?: any;
|
|
2
3
|
tiny_mode?: any;
|
|
3
4
|
tiny_mode_root?: any;
|
|
4
5
|
tiny_template?: any;
|
|
@@ -7,12 +8,12 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
7
8
|
tiny_theme?: any;
|
|
8
9
|
tiny_chart_theme?: any;
|
|
9
10
|
direction?: any;
|
|
10
|
-
items?: any;
|
|
11
11
|
keyField?: any;
|
|
12
12
|
listTag?: any;
|
|
13
13
|
itemTag?: any;
|
|
14
14
|
minItemSize?: any;
|
|
15
15
|
}>, any, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("resize" | "visible")[], "resize" | "visible", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
|
|
16
|
+
items?: any;
|
|
16
17
|
tiny_mode?: any;
|
|
17
18
|
tiny_mode_root?: any;
|
|
18
19
|
tiny_template?: any;
|
|
@@ -21,7 +22,6 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
21
22
|
tiny_theme?: any;
|
|
22
23
|
tiny_chart_theme?: any;
|
|
23
24
|
direction?: any;
|
|
24
|
-
items?: any;
|
|
25
25
|
keyField?: any;
|
|
26
26
|
listTag?: any;
|
|
27
27
|
itemTag?: any;
|
|
@@ -30,6 +30,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
30
30
|
onResize?: ((...args: any[]) => any) | undefined;
|
|
31
31
|
onVisible?: ((...args: any[]) => any) | undefined;
|
|
32
32
|
}, {
|
|
33
|
+
readonly items?: any;
|
|
33
34
|
readonly tiny_mode?: any;
|
|
34
35
|
readonly tiny_mode_root?: any;
|
|
35
36
|
readonly tiny_template?: any;
|
|
@@ -38,7 +39,6 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
38
39
|
readonly tiny_theme?: any;
|
|
39
40
|
readonly tiny_chart_theme?: any;
|
|
40
41
|
readonly direction?: any;
|
|
41
|
-
readonly items?: any;
|
|
42
42
|
readonly keyField?: any;
|
|
43
43
|
readonly listTag?: any;
|
|
44
44
|
readonly itemTag?: any;
|