@opentiny/vue-drawer 2.8.0 → 2.8.2

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 CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@opentiny/vue-drawer",
3
- "version": "2.8.0",
3
+ "version": "2.8.2",
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": "~2.8.0",
10
- "@opentiny/vue-common": "~2.8.0",
11
- "@opentiny/vue-renderless": "~3.8.0"
9
+ "@opentiny/vue-button": "~2.8.2",
10
+ "@opentiny/vue-common": "~2.8.2",
11
+ "@opentiny/vue-renderless": "~3.8.2"
12
12
  },
13
13
  "license": "MIT",
14
14
  "types": "index.d.ts"
package/src/index.d.ts CHANGED
@@ -1,44 +1,6 @@
1
1
  declare const _default: {
2
2
  name: string;
3
- props: {
4
- visible: {
5
- type: BooleanConstructor;
6
- default: boolean;
7
- };
8
- customClass: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
9
- placement: {
10
- type: StringConstructor;
11
- default: string;
12
- };
13
- width: {
14
- type: StringConstructor;
15
- default: string;
16
- };
17
- title: StringConstructor;
18
- showHeader: {
19
- type: BooleanConstructor;
20
- default: boolean;
21
- };
22
- showFooter: {
23
- type: BooleanConstructor;
24
- default: boolean;
25
- };
26
- mask: {
27
- type: BooleanConstructor;
28
- default: boolean;
29
- };
30
- maskClosable: {
31
- type: BooleanConstructor;
32
- default: boolean;
33
- };
34
- dragable: BooleanConstructor;
35
- tiny_mode: StringConstructor;
36
- tiny_mode_root: BooleanConstructor;
37
- tiny_template: (FunctionConstructor | ObjectConstructor)[];
38
- tiny_renderless: FunctionConstructor;
39
- tiny_theme: StringConstructor;
40
- tiny_chart_theme: ObjectConstructor;
41
- };
42
- setup(props: any, context: any): () => import("vue").VNode;
3
+ props: any;
4
+ setup(props: any, context: any): any;
43
5
  };
44
6
  export default _default;
@@ -1,139 +1,9 @@
1
1
  declare const _sfc_main: {
2
2
  components: {
3
- TinyButton: import("vue").ComponentOptions<import("vue").default, import("@vue/composition-api").ShallowUnwrapRef<() => import("vue").VNode> & import("@vue/composition-api").Data, {}, {}, {
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
- }, {
50
- type: string;
51
- size: string;
52
- disabled: boolean;
53
- tabindex: string;
54
- round: boolean;
55
- tiny_mode_root: boolean;
56
- icon: string;
57
- text: string;
58
- plain: boolean;
59
- circle: boolean;
60
- loading: boolean;
61
- autofocus: boolean;
62
- resetTime: number;
63
- nativeType: string;
64
- buttonClass: string;
65
- } & {
66
- tiny_mode?: string | undefined;
67
- tiny_template?: unknown;
68
- tiny_renderless?: Function | undefined;
69
- tiny_theme?: string | undefined;
70
- tiny_chart_theme?: Record<string, any> | undefined;
71
- }> & import("vue").VueConstructor<import("vue").default> & (new (...args: any[]) => import("@vue/composition-api").ComponentRenderProxy<{
72
- type: string;
73
- size: string;
74
- disabled: boolean;
75
- tabindex: string;
76
- round: boolean;
77
- tiny_mode_root: boolean;
78
- icon: string;
79
- text: string;
80
- plain: boolean;
81
- circle: boolean;
82
- loading: boolean;
83
- autofocus: boolean;
84
- resetTime: number;
85
- nativeType: string;
86
- buttonClass: string;
87
- } & {
88
- tiny_mode?: string | undefined;
89
- tiny_template?: unknown;
90
- tiny_renderless?: Function | undefined;
91
- tiny_theme?: string | undefined;
92
- tiny_chart_theme?: Record<string, any> | undefined;
93
- }, import("@vue/composition-api").ShallowUnwrapRef<() => import("vue").VNode>, import("@vue/composition-api").Data, {}, {}, {
94
- type: string;
95
- size: string;
96
- disabled: boolean;
97
- tabindex: string;
98
- round: boolean;
99
- tiny_mode_root: boolean;
100
- icon: string;
101
- text: string;
102
- plain: boolean;
103
- circle: boolean;
104
- loading: boolean;
105
- autofocus: boolean;
106
- resetTime: number;
107
- nativeType: string;
108
- buttonClass: string;
109
- } & {
110
- tiny_mode?: string | undefined;
111
- tiny_template?: unknown;
112
- tiny_renderless?: Function | undefined;
113
- tiny_theme?: string | undefined;
114
- tiny_chart_theme?: Record<string, any> | undefined;
115
- }, {
116
- type: string;
117
- size: string;
118
- tabindex: string;
119
- icon: string;
120
- text: string;
121
- resetTime: number;
122
- nativeType: string;
123
- buttonClass: string;
124
- }, true>);
3
+ TinyButton: any;
125
4
  IconClose: any;
126
5
  };
127
- props: string[];
128
- setup(props: any, context: any): {
129
- t: (this: any, path: any, options?: any) => any;
130
- vm: any;
131
- f: (props: any, attrs?: {}) => {};
132
- a: (attrs: any, filters: any, include: any) => {};
133
- d: (props: any) => void;
134
- dp: (props: any) => void;
135
- gcls: (key: any) => any;
136
- m: (...cssClasses: any[]) => string;
137
- };
6
+ props: any[];
7
+ setup(props: any, context: any): any;
138
8
  };
139
9
  export default _sfc_main;