@opentinyvue/vue-dialog-box 3.25.0 → 3.26.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 -0
- package/package.json +6 -6
- package/src/index.d.ts +10 -0
package/lib/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-dialog-box",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.26.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.
|
|
11
|
-
"@opentinyvue/vue-icon": "~3.
|
|
12
|
-
"@opentinyvue/vue-action-sheet": "~3.
|
|
13
|
-
"@opentinyvue/vue-renderless": "~3.
|
|
14
|
-
"@opentinyvue/vue-theme": "~3.
|
|
10
|
+
"@opentinyvue/vue-common": "~3.26.0",
|
|
11
|
+
"@opentinyvue/vue-icon": "~3.26.0",
|
|
12
|
+
"@opentinyvue/vue-action-sheet": "~3.26.0",
|
|
13
|
+
"@opentinyvue/vue-renderless": "~3.26.0",
|
|
14
|
+
"@opentinyvue/vue-theme": "~3.26.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)[];
|