@opentinyvue/vue-dialog-box 3.25.0 → 3.27.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 CHANGED
@@ -183,6 +183,9 @@ var dialogBoxProps = _extends({}, $props, {
183
183
  default: function _default23() {
184
184
  return {};
185
185
  }
186
+ },
187
+ onClose: {
188
+ type: Function
186
189
  }
187
190
  });
188
191
  var DialogBox = defineComponent({
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@opentinyvue/vue-dialog-box",
3
- "version": "3.25.0",
3
+ "version": "3.27.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-common": "~3.25.0",
11
- "@opentinyvue/vue-icon": "~3.25.0",
12
- "@opentinyvue/vue-action-sheet": "~3.25.0",
13
- "@opentinyvue/vue-renderless": "~3.25.0",
14
- "@opentinyvue/vue-theme": "~3.25.0"
10
+ "@opentinyvue/vue-common": "~3.27.0",
11
+ "@opentinyvue/vue-icon": "~3.27.0",
12
+ "@opentinyvue/vue-action-sheet": "~3.27.0",
13
+ "@opentinyvue/vue-renderless": "~3.27.0",
14
+ "@opentinyvue/vue-theme": "~3.27.0"
15
15
  },
16
16
  "license": "MIT",
17
17
  "types": "index.d.ts",
package/src/index.d.ts CHANGED
@@ -9,6 +9,7 @@
9
9
  * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
10
10
  *
11
11
  */
12
+ import { type PropType } from '@opentinyvue/vue-common';
12
13
  export declare const $constants: {
13
14
  DIALOG_SLIDER_RIGHT: string;
14
15
  DIALOG_FADE: string;
@@ -135,6 +136,9 @@ export declare const dialogBoxProps: {
135
136
  type: ObjectConstructor;
136
137
  default: () => {};
137
138
  };
139
+ onClose: {
140
+ type: PropType<() => void>;
141
+ };
138
142
  tiny_mode: StringConstructor;
139
143
  tiny_mode_root: BooleanConstructor;
140
144
  tiny_template: (ObjectConstructor | FunctionConstructor)[];
@@ -257,6 +261,9 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
257
261
  type: ObjectConstructor;
258
262
  default: () => {};
259
263
  };
264
+ onClose: {
265
+ type: PropType<() => void>;
266
+ };
260
267
  tiny_mode: StringConstructor;
261
268
  tiny_mode_root: BooleanConstructor;
262
269
  tiny_template: (ObjectConstructor | FunctionConstructor)[];
@@ -380,6 +387,9 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
380
387
  type: ObjectConstructor;
381
388
  default: () => {};
382
389
  };
390
+ onClose: {
391
+ type: PropType<() => void>;
392
+ };
383
393
  tiny_mode: StringConstructor;
384
394
  tiny_mode_root: BooleanConstructor;
385
395
  tiny_template: (ObjectConstructor | FunctionConstructor)[];