@opentiny/vue-dynamic-scroller 3.12.0 → 3.13.0-alpha.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 +3 -1
- package/package.json +4 -4
- package/index.d.ts +0 -2
- package/src/index.d.ts +0 -74
- package/src/pc.vue.d.ts +0 -47
package/lib/index.js
CHANGED
|
@@ -16,6 +16,8 @@ import { defineComponent, $prefix, $props, $setup } from "@opentiny/vue-common";
|
|
|
16
16
|
import PcTemplate from "./pc.js";
|
|
17
17
|
import RecycleScroller from "@opentiny/vue-recycle-scroller";
|
|
18
18
|
var template = function template2(mode) {
|
|
19
|
+
var _process$env;
|
|
20
|
+
typeof process === "object" ? (_process$env = process.env) == null ? void 0 : _process$env.TINY_MODE : null;
|
|
19
21
|
return PcTemplate;
|
|
20
22
|
};
|
|
21
23
|
var DynamicScroller = defineComponent({
|
|
@@ -57,7 +59,7 @@ var DynamicScroller = defineComponent({
|
|
|
57
59
|
});
|
|
58
60
|
}
|
|
59
61
|
});
|
|
60
|
-
var version = "3.
|
|
62
|
+
var version = "3.13.0-alpha.0";
|
|
61
63
|
DynamicScroller.IdState = RecycleScroller.IdState;
|
|
62
64
|
DynamicScroller.install = function(Vue) {
|
|
63
65
|
Vue.component(DynamicScroller.name, DynamicScroller);
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentiny/vue-dynamic-scroller",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.13.0-alpha.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.13.0-alpha.0",
|
|
11
|
+
"@opentiny/vue-renderless": "~3.13.0-alpha.0",
|
|
12
|
+
"@opentiny/vue-recycle-scroller": "~3.13.0-alpha.0"
|
|
13
13
|
},
|
|
14
14
|
"license": "MIT",
|
|
15
15
|
"types": "index.d.ts"
|
package/index.d.ts
DELETED
package/src/index.d.ts
DELETED
|
@@ -1,74 +0,0 @@
|
|
|
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: (StringConstructor | NumberConstructor)[];
|
|
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/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
34
|
-
[key: string]: any;
|
|
35
|
-
}>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").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: (StringConstructor | NumberConstructor)[];
|
|
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
|
-
}, {}>;
|
|
74
|
-
export default _default;
|
package/src/pc.vue.d.ts
DELETED
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
2
|
-
tiny_mode?: any;
|
|
3
|
-
tiny_mode_root?: any;
|
|
4
|
-
tiny_template?: any;
|
|
5
|
-
tiny_renderless?: any;
|
|
6
|
-
_constants?: any;
|
|
7
|
-
tiny_theme?: any;
|
|
8
|
-
tiny_chart_theme?: any;
|
|
9
|
-
direction?: any;
|
|
10
|
-
items?: any;
|
|
11
|
-
keyField?: any;
|
|
12
|
-
listTag?: any;
|
|
13
|
-
itemTag?: any;
|
|
14
|
-
minItemSize?: any;
|
|
15
|
-
}>, any, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("visible" | "resize")[], "visible" | "resize", import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
|
|
16
|
-
tiny_mode?: any;
|
|
17
|
-
tiny_mode_root?: any;
|
|
18
|
-
tiny_template?: any;
|
|
19
|
-
tiny_renderless?: any;
|
|
20
|
-
_constants?: any;
|
|
21
|
-
tiny_theme?: any;
|
|
22
|
-
tiny_chart_theme?: any;
|
|
23
|
-
direction?: any;
|
|
24
|
-
items?: any;
|
|
25
|
-
keyField?: any;
|
|
26
|
-
listTag?: any;
|
|
27
|
-
itemTag?: any;
|
|
28
|
-
minItemSize?: any;
|
|
29
|
-
}>>> & {
|
|
30
|
-
onResize?: ((...args: any[]) => any) | undefined;
|
|
31
|
-
onVisible?: ((...args: any[]) => any) | undefined;
|
|
32
|
-
}, {
|
|
33
|
-
readonly tiny_mode?: any;
|
|
34
|
-
readonly tiny_mode_root?: any;
|
|
35
|
-
readonly tiny_template?: any;
|
|
36
|
-
readonly tiny_renderless?: any;
|
|
37
|
-
readonly _constants?: any;
|
|
38
|
-
readonly tiny_theme?: any;
|
|
39
|
-
readonly tiny_chart_theme?: any;
|
|
40
|
-
readonly direction?: any;
|
|
41
|
-
readonly items?: any;
|
|
42
|
-
readonly keyField?: any;
|
|
43
|
-
readonly listTag?: any;
|
|
44
|
-
readonly itemTag?: any;
|
|
45
|
-
readonly minItemSize?: any;
|
|
46
|
-
}, {}>;
|
|
47
|
-
export default _default;
|