@opentinyvue/vue-drawer 3.27.0 → 3.28.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/pc.js +1 -1
- package/package.json +7 -7
- package/src/pc.vue.d.ts +3 -0
package/lib/pc.js
CHANGED
|
@@ -58,7 +58,7 @@ var _sfc_main = defineComponent({
|
|
|
58
58
|
}
|
|
59
59
|
}
|
|
60
60
|
},
|
|
61
|
-
props: [].concat(props, ["visible", "title", "showHeader", "showFooter", "customClass", "placement", "width", "height", "mask", "dragable", "maskClosable", "lockScroll", "flex", "showClose", "zIndex", "beforeClose", "tipsProps", "customSlots"]),
|
|
61
|
+
props: [].concat(props, ["visible", "title", "showHeader", "showFooter", "customClass", "placement", "width", "height", "mask", "dragable", "maskClosable", "lockScroll", "flex", "showClose", "zIndex", "beforeClose", "tipsProps", "customSlots", "closeOnPressEscape"]),
|
|
62
62
|
emits: ["update:visible", "open", "close", "confirm", "drag"],
|
|
63
63
|
setup: function setup$1(props2, context) {
|
|
64
64
|
return setup({
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-drawer",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.28.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
|
-
"@opentinyvue/vue-button": "~3.
|
|
11
|
-
"@opentinyvue/vue-tooltip": "~3.
|
|
12
|
-
"@opentinyvue/vue-common": "~3.
|
|
13
|
-
"@opentinyvue/vue-renderless": "~3.
|
|
14
|
-
"@opentinyvue/vue-icon": "~3.
|
|
15
|
-
"@opentinyvue/vue-theme": "~3.
|
|
10
|
+
"@opentinyvue/vue-button": "~3.28.0",
|
|
11
|
+
"@opentinyvue/vue-tooltip": "~3.28.0",
|
|
12
|
+
"@opentinyvue/vue-common": "~3.28.0",
|
|
13
|
+
"@opentinyvue/vue-renderless": "~3.28.0",
|
|
14
|
+
"@opentinyvue/vue-icon": "~3.28.0",
|
|
15
|
+
"@opentinyvue/vue-theme": "~3.28.0"
|
|
16
16
|
},
|
|
17
17
|
"license": "MIT",
|
|
18
18
|
"types": "index.d.ts"
|
package/src/pc.vue.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
25
25
|
beforeClose?: any;
|
|
26
26
|
tipsProps?: any;
|
|
27
27
|
customSlots?: any;
|
|
28
|
+
closeOnPressEscape?: any;
|
|
28
29
|
}>, {
|
|
29
30
|
t: (this: any, path: any, options?: any) => any;
|
|
30
31
|
vm: any;
|
|
@@ -61,6 +62,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
61
62
|
beforeClose?: any;
|
|
62
63
|
tipsProps?: any;
|
|
63
64
|
customSlots?: any;
|
|
65
|
+
closeOnPressEscape?: any;
|
|
64
66
|
}>>> & {
|
|
65
67
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
66
68
|
onDrag?: ((...args: any[]) => any) | undefined;
|
|
@@ -94,5 +96,6 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
94
96
|
readonly beforeClose?: any;
|
|
95
97
|
readonly tipsProps?: any;
|
|
96
98
|
readonly customSlots?: any;
|
|
99
|
+
readonly closeOnPressEscape?: any;
|
|
97
100
|
}, {}>;
|
|
98
101
|
export default _default;
|