@opentinyvue/vue-guide 3.21.0 → 3.22.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 +4 -4
- package/package.json +9 -8
- package/src/index.d.ts +2 -2
- package/src/pc.vue.d.ts +15 -15
package/lib/index.js
CHANGED
|
@@ -7,8 +7,8 @@ function _extends() {
|
|
|
7
7
|
return n;
|
|
8
8
|
}, _extends.apply(null, arguments);
|
|
9
9
|
}
|
|
10
|
-
import { defineComponent, $
|
|
11
|
-
import
|
|
10
|
+
import { defineComponent, $props, $setup, $prefix } from "@opentinyvue/vue-common";
|
|
11
|
+
import { browserInfo } from "@opentinyvue/utils";
|
|
12
12
|
import PcTemplate from "./pc.js";
|
|
13
13
|
var template = function template2(mode) {
|
|
14
14
|
var _process$env;
|
|
@@ -57,7 +57,7 @@ var Guide = defineComponent({
|
|
|
57
57
|
},
|
|
58
58
|
width: {
|
|
59
59
|
type: String,
|
|
60
|
-
default:
|
|
60
|
+
default: browserInfo.isMobile ? "350" : "510"
|
|
61
61
|
},
|
|
62
62
|
height: {
|
|
63
63
|
type: String,
|
|
@@ -72,7 +72,7 @@ var Guide = defineComponent({
|
|
|
72
72
|
});
|
|
73
73
|
}
|
|
74
74
|
});
|
|
75
|
-
var version = "3.
|
|
75
|
+
var version = "3.22.0";
|
|
76
76
|
Guide.model = {
|
|
77
77
|
prop: "modelValue",
|
|
78
78
|
event: "update:modelValue"
|
package/package.json
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-guide",
|
|
3
|
-
"
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "3.22.0",
|
|
4
5
|
"description": "",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"sideEffects": false,
|
|
5
8
|
"main": "./lib/index.js",
|
|
6
9
|
"module": "./lib/index.js",
|
|
7
|
-
"sideEffects": false,
|
|
8
|
-
"type": "module",
|
|
9
10
|
"dependencies": {
|
|
10
|
-
"@opentinyvue/vue-renderless": "~3.21.0",
|
|
11
|
-
"@opentinyvue/vue-common": "~3.21.0",
|
|
12
|
-
"shepherd.js": "11.1.1",
|
|
13
11
|
"@floating-ui/dom": "^1.0.10",
|
|
14
|
-
"@opentinyvue/
|
|
12
|
+
"@opentinyvue/utils": "~3.22.0",
|
|
13
|
+
"@opentinyvue/vue-common": "~3.22.0",
|
|
14
|
+
"@opentinyvue/vue-renderless": "~3.22.0",
|
|
15
|
+
"@opentinyvue/vue-theme": "~3.22.0",
|
|
16
|
+
"shepherd.js": "11.1.1"
|
|
15
17
|
},
|
|
16
|
-
"license": "MIT",
|
|
17
18
|
"types": "index.d.ts"
|
|
18
19
|
}
|
package/src/index.d.ts
CHANGED
|
@@ -105,13 +105,13 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
105
105
|
tiny_theme: StringConstructor;
|
|
106
106
|
tiny_chart_theme: ObjectConstructor;
|
|
107
107
|
}>>, {
|
|
108
|
-
tiny_mode_root: boolean;
|
|
109
108
|
width: string;
|
|
110
109
|
height: string;
|
|
111
110
|
arrow: boolean;
|
|
112
|
-
showStep: boolean;
|
|
113
111
|
mainAxis: number;
|
|
114
112
|
crossAxis: number;
|
|
113
|
+
tiny_mode_root: boolean;
|
|
114
|
+
showStep: boolean;
|
|
115
115
|
alignmentAxis: number;
|
|
116
116
|
popPosition: string;
|
|
117
117
|
modalOverlayOpeningPadding: number;
|
package/src/pc.vue.d.ts
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
2
|
+
width?: any;
|
|
3
|
+
height?: any;
|
|
4
|
+
arrow?: any;
|
|
5
|
+
mainAxis?: any;
|
|
6
|
+
crossAxis?: any;
|
|
2
7
|
tiny_mode?: any;
|
|
3
8
|
tiny_mode_root?: any;
|
|
4
9
|
tiny_template?: any;
|
|
@@ -6,13 +11,8 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
6
11
|
_constants?: any;
|
|
7
12
|
tiny_theme?: any;
|
|
8
13
|
tiny_chart_theme?: any;
|
|
9
|
-
width?: any;
|
|
10
|
-
height?: any;
|
|
11
|
-
arrow?: any;
|
|
12
14
|
domData?: any;
|
|
13
15
|
showStep?: any;
|
|
14
|
-
mainAxis?: any;
|
|
15
|
-
crossAxis?: any;
|
|
16
16
|
alignmentAxis?: any;
|
|
17
17
|
popPosition?: any;
|
|
18
18
|
modalOverlayOpeningPadding?: any;
|
|
@@ -28,6 +28,11 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
28
28
|
gcls: (key: any) => any;
|
|
29
29
|
m: (...cssClasses: any[]) => string;
|
|
30
30
|
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
|
|
31
|
+
width?: any;
|
|
32
|
+
height?: any;
|
|
33
|
+
arrow?: any;
|
|
34
|
+
mainAxis?: any;
|
|
35
|
+
crossAxis?: any;
|
|
31
36
|
tiny_mode?: any;
|
|
32
37
|
tiny_mode_root?: any;
|
|
33
38
|
tiny_template?: any;
|
|
@@ -35,19 +40,19 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
35
40
|
_constants?: any;
|
|
36
41
|
tiny_theme?: any;
|
|
37
42
|
tiny_chart_theme?: any;
|
|
38
|
-
width?: any;
|
|
39
|
-
height?: any;
|
|
40
|
-
arrow?: any;
|
|
41
43
|
domData?: any;
|
|
42
44
|
showStep?: any;
|
|
43
|
-
mainAxis?: any;
|
|
44
|
-
crossAxis?: any;
|
|
45
45
|
alignmentAxis?: any;
|
|
46
46
|
popPosition?: any;
|
|
47
47
|
modalOverlayOpeningPadding?: any;
|
|
48
48
|
modalOverlayOpeningRadius?: any;
|
|
49
49
|
lightClass?: any;
|
|
50
50
|
}>>>, {
|
|
51
|
+
readonly width?: any;
|
|
52
|
+
readonly height?: any;
|
|
53
|
+
readonly arrow?: any;
|
|
54
|
+
readonly mainAxis?: any;
|
|
55
|
+
readonly crossAxis?: any;
|
|
51
56
|
readonly tiny_mode?: any;
|
|
52
57
|
readonly tiny_mode_root?: any;
|
|
53
58
|
readonly tiny_template?: any;
|
|
@@ -55,13 +60,8 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
55
60
|
readonly _constants?: any;
|
|
56
61
|
readonly tiny_theme?: any;
|
|
57
62
|
readonly tiny_chart_theme?: any;
|
|
58
|
-
readonly width?: any;
|
|
59
|
-
readonly height?: any;
|
|
60
|
-
readonly arrow?: any;
|
|
61
63
|
readonly domData?: any;
|
|
62
64
|
readonly showStep?: any;
|
|
63
|
-
readonly mainAxis?: any;
|
|
64
|
-
readonly crossAxis?: any;
|
|
65
65
|
readonly alignmentAxis?: any;
|
|
66
66
|
readonly popPosition?: any;
|
|
67
67
|
readonly modalOverlayOpeningPadding?: any;
|