@opentiny/vue-drawer 3.8.0 → 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 +4 -4
- package/src/index.d.ts +2 -2
- package/src/mobile-first.vue.d.ts +1 -114
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentiny/vue-drawer",
|
|
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
7
|
"sideEffects": false,
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@opentiny/vue-button": "~3.8.
|
|
10
|
-
"@opentiny/vue-common": "~3.8.
|
|
11
|
-
"@opentiny/vue-renderless": "~3.8.
|
|
9
|
+
"@opentiny/vue-button": "~3.8.3",
|
|
10
|
+
"@opentiny/vue-common": "~3.8.3",
|
|
11
|
+
"@opentiny/vue-renderless": "~3.8.3"
|
|
12
12
|
},
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"types": "index.d.ts"
|
package/src/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ declare const _default: {
|
|
|
5
5
|
type: BooleanConstructor;
|
|
6
6
|
default: boolean;
|
|
7
7
|
};
|
|
8
|
-
customClass: (
|
|
8
|
+
customClass: (ObjectConstructor | ArrayConstructor | StringConstructor)[];
|
|
9
9
|
placement: {
|
|
10
10
|
type: StringConstructor;
|
|
11
11
|
default: string;
|
|
@@ -34,7 +34,7 @@ declare const _default: {
|
|
|
34
34
|
dragable: BooleanConstructor;
|
|
35
35
|
tiny_mode: StringConstructor;
|
|
36
36
|
tiny_mode_root: BooleanConstructor;
|
|
37
|
-
tiny_template: (
|
|
37
|
+
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
38
38
|
tiny_renderless: FunctionConstructor;
|
|
39
39
|
tiny_theme: StringConstructor;
|
|
40
40
|
tiny_chart_theme: ObjectConstructor;
|
|
@@ -1,118 +1,5 @@
|
|
|
1
1
|
declare const _sfc_main: {
|
|
2
|
-
components:
|
|
3
|
-
TinyButton: import("@vue/runtime-core").DefineComponent<{
|
|
4
|
-
type: {
|
|
5
|
-
type: StringConstructor;
|
|
6
|
-
default: string;
|
|
7
|
-
};
|
|
8
|
-
tabindex: {
|
|
9
|
-
type: StringConstructor;
|
|
10
|
-
default: string;
|
|
11
|
-
};
|
|
12
|
-
icon: {
|
|
13
|
-
type: (StringConstructor | ObjectConstructor)[];
|
|
14
|
-
default: string;
|
|
15
|
-
};
|
|
16
|
-
text: {
|
|
17
|
-
type: StringConstructor;
|
|
18
|
-
default: string;
|
|
19
|
-
};
|
|
20
|
-
resetTime: {
|
|
21
|
-
type: NumberConstructor;
|
|
22
|
-
default: number;
|
|
23
|
-
};
|
|
24
|
-
nativeType: {
|
|
25
|
-
type: StringConstructor;
|
|
26
|
-
default: string;
|
|
27
|
-
};
|
|
28
|
-
size: {
|
|
29
|
-
type: StringConstructor;
|
|
30
|
-
default: string;
|
|
31
|
-
validator(val: string): boolean;
|
|
32
|
-
};
|
|
33
|
-
round: BooleanConstructor;
|
|
34
|
-
plain: BooleanConstructor;
|
|
35
|
-
circle: BooleanConstructor;
|
|
36
|
-
loading: BooleanConstructor;
|
|
37
|
-
disabled: BooleanConstructor;
|
|
38
|
-
autofocus: BooleanConstructor;
|
|
39
|
-
buttonClass: {
|
|
40
|
-
type: StringConstructor;
|
|
41
|
-
default: string;
|
|
42
|
-
};
|
|
43
|
-
tiny_mode: StringConstructor;
|
|
44
|
-
tiny_mode_root: BooleanConstructor;
|
|
45
|
-
tiny_template: (FunctionConstructor | ObjectConstructor)[];
|
|
46
|
-
tiny_renderless: FunctionConstructor;
|
|
47
|
-
tiny_theme: StringConstructor;
|
|
48
|
-
tiny_chart_theme: ObjectConstructor;
|
|
49
|
-
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
50
|
-
[key: string]: any;
|
|
51
|
-
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
52
|
-
type: {
|
|
53
|
-
type: StringConstructor;
|
|
54
|
-
default: string;
|
|
55
|
-
};
|
|
56
|
-
tabindex: {
|
|
57
|
-
type: StringConstructor;
|
|
58
|
-
default: string;
|
|
59
|
-
};
|
|
60
|
-
icon: {
|
|
61
|
-
type: (StringConstructor | ObjectConstructor)[];
|
|
62
|
-
default: string;
|
|
63
|
-
};
|
|
64
|
-
text: {
|
|
65
|
-
type: StringConstructor;
|
|
66
|
-
default: string;
|
|
67
|
-
};
|
|
68
|
-
resetTime: {
|
|
69
|
-
type: NumberConstructor;
|
|
70
|
-
default: number;
|
|
71
|
-
};
|
|
72
|
-
nativeType: {
|
|
73
|
-
type: StringConstructor;
|
|
74
|
-
default: string;
|
|
75
|
-
};
|
|
76
|
-
size: {
|
|
77
|
-
type: StringConstructor;
|
|
78
|
-
default: string;
|
|
79
|
-
validator(val: string): boolean;
|
|
80
|
-
};
|
|
81
|
-
round: BooleanConstructor;
|
|
82
|
-
plain: BooleanConstructor;
|
|
83
|
-
circle: BooleanConstructor;
|
|
84
|
-
loading: BooleanConstructor;
|
|
85
|
-
disabled: BooleanConstructor;
|
|
86
|
-
autofocus: BooleanConstructor;
|
|
87
|
-
buttonClass: {
|
|
88
|
-
type: StringConstructor;
|
|
89
|
-
default: string;
|
|
90
|
-
};
|
|
91
|
-
tiny_mode: StringConstructor;
|
|
92
|
-
tiny_mode_root: BooleanConstructor;
|
|
93
|
-
tiny_template: (FunctionConstructor | ObjectConstructor)[];
|
|
94
|
-
tiny_renderless: FunctionConstructor;
|
|
95
|
-
tiny_theme: StringConstructor;
|
|
96
|
-
tiny_chart_theme: ObjectConstructor;
|
|
97
|
-
}>>, {
|
|
98
|
-
type: string;
|
|
99
|
-
size: string;
|
|
100
|
-
disabled: boolean;
|
|
101
|
-
tabindex: string;
|
|
102
|
-
round: boolean;
|
|
103
|
-
tiny_mode_root: boolean;
|
|
104
|
-
icon: string | Record<string, any>;
|
|
105
|
-
text: string;
|
|
106
|
-
resetTime: number;
|
|
107
|
-
nativeType: string;
|
|
108
|
-
plain: boolean;
|
|
109
|
-
circle: boolean;
|
|
110
|
-
loading: boolean;
|
|
111
|
-
autofocus: boolean;
|
|
112
|
-
buttonClass: string;
|
|
113
|
-
}>;
|
|
114
|
-
IconClose: any;
|
|
115
|
-
};
|
|
2
|
+
components: undefined;
|
|
116
3
|
props: string[];
|
|
117
4
|
setup(props: any, context: any): {
|
|
118
5
|
t: (this: any, path: any, options?: any) => any;
|