@opentinyvue/vue-dialog-box 3.24.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 +11 -1
- package/src/mobile-first.vue.d.ts +3 -3
- package/src/pc.vue.d.ts +3 -3
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)[];
|
|
@@ -398,6 +408,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
398
408
|
tiny_mode_root: boolean;
|
|
399
409
|
_constants: Record<string, any>;
|
|
400
410
|
maxHeight: string;
|
|
411
|
+
customStyle: Record<string, any>;
|
|
401
412
|
showClose: boolean;
|
|
402
413
|
showHeader: boolean;
|
|
403
414
|
lockScroll: boolean;
|
|
@@ -413,6 +424,5 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
413
424
|
rightSlide: boolean;
|
|
414
425
|
dialogTransition: string;
|
|
415
426
|
noAnimation: boolean;
|
|
416
|
-
customStyle: Record<string, any>;
|
|
417
427
|
}, {}>;
|
|
418
428
|
export default _default;
|
|
@@ -16,6 +16,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
16
16
|
tiny_chart_theme?: any;
|
|
17
17
|
tiny_mcp_config?: any;
|
|
18
18
|
maxHeight?: any;
|
|
19
|
+
customStyle?: any;
|
|
19
20
|
showClose?: any;
|
|
20
21
|
showHeader?: any;
|
|
21
22
|
lockScroll?: any;
|
|
@@ -30,7 +31,6 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
30
31
|
modalAppendToBody?: any;
|
|
31
32
|
rightSlide?: any;
|
|
32
33
|
noAnimation?: any;
|
|
33
|
-
customStyle?: any;
|
|
34
34
|
}>, {
|
|
35
35
|
t: (this: any, path: any, options?: any) => any;
|
|
36
36
|
vm: any;
|
|
@@ -58,6 +58,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
58
58
|
tiny_chart_theme?: any;
|
|
59
59
|
tiny_mcp_config?: any;
|
|
60
60
|
maxHeight?: any;
|
|
61
|
+
customStyle?: any;
|
|
61
62
|
showClose?: any;
|
|
62
63
|
showHeader?: any;
|
|
63
64
|
lockScroll?: any;
|
|
@@ -72,7 +73,6 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
72
73
|
modalAppendToBody?: any;
|
|
73
74
|
rightSlide?: any;
|
|
74
75
|
noAnimation?: any;
|
|
75
|
-
customStyle?: any;
|
|
76
76
|
}>>> & {
|
|
77
77
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
78
78
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
@@ -104,6 +104,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
104
104
|
readonly tiny_chart_theme?: any;
|
|
105
105
|
readonly tiny_mcp_config?: any;
|
|
106
106
|
readonly maxHeight?: any;
|
|
107
|
+
readonly customStyle?: any;
|
|
107
108
|
readonly showClose?: any;
|
|
108
109
|
readonly showHeader?: any;
|
|
109
110
|
readonly lockScroll?: any;
|
|
@@ -118,6 +119,5 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
118
119
|
readonly modalAppendToBody?: any;
|
|
119
120
|
readonly rightSlide?: any;
|
|
120
121
|
readonly noAnimation?: any;
|
|
121
|
-
readonly customStyle?: any;
|
|
122
122
|
}, {}>;
|
|
123
123
|
export default _default;
|
package/src/pc.vue.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
17
17
|
tiny_chart_theme?: any;
|
|
18
18
|
tiny_mcp_config?: any;
|
|
19
19
|
maxHeight?: any;
|
|
20
|
+
customStyle?: any;
|
|
20
21
|
showClose?: any;
|
|
21
22
|
showHeader?: any;
|
|
22
23
|
lockScroll?: any;
|
|
@@ -33,7 +34,6 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
33
34
|
rightSlide?: any;
|
|
34
35
|
dialogTransition?: any;
|
|
35
36
|
noAnimation?: any;
|
|
36
|
-
customStyle?: any;
|
|
37
37
|
}>, IDialogBoxApi, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("resize" | "change" | "cancel" | "close" | "update:visible" | "confirm" | "open" | "closed" | "opened" | "before-close" | "drag-start" | "drag-move" | "drag-end")[], "resize" | "change" | "cancel" | "close" | "update:visible" | "confirm" | "open" | "closed" | "opened" | "before-close" | "drag-start" | "drag-move" | "drag-end", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
|
|
38
38
|
top?: any;
|
|
39
39
|
width?: any;
|
|
@@ -52,6 +52,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
52
52
|
tiny_chart_theme?: any;
|
|
53
53
|
tiny_mcp_config?: any;
|
|
54
54
|
maxHeight?: any;
|
|
55
|
+
customStyle?: any;
|
|
55
56
|
showClose?: any;
|
|
56
57
|
showHeader?: any;
|
|
57
58
|
lockScroll?: any;
|
|
@@ -68,7 +69,6 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
68
69
|
rightSlide?: any;
|
|
69
70
|
dialogTransition?: any;
|
|
70
71
|
noAnimation?: any;
|
|
71
|
-
customStyle?: any;
|
|
72
72
|
}>>> & {
|
|
73
73
|
onResize?: ((...args: any[]) => any) | undefined;
|
|
74
74
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -101,6 +101,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
101
101
|
readonly tiny_chart_theme?: any;
|
|
102
102
|
readonly tiny_mcp_config?: any;
|
|
103
103
|
readonly maxHeight?: any;
|
|
104
|
+
readonly customStyle?: any;
|
|
104
105
|
readonly showClose?: any;
|
|
105
106
|
readonly showHeader?: any;
|
|
106
107
|
readonly lockScroll?: any;
|
|
@@ -117,6 +118,5 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
117
118
|
readonly rightSlide?: any;
|
|
118
119
|
readonly dialogTransition?: any;
|
|
119
120
|
readonly noAnimation?: any;
|
|
120
|
-
readonly customStyle?: any;
|
|
121
121
|
}, {}>;
|
|
122
122
|
export default _default;
|