@v-c/tour 0.0.3 → 1.0.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/dist/Mask.js +2 -1
- package/dist/TourStep/index.cjs +5 -2
- package/dist/TourStep/index.js +5 -2
- package/package.json +6 -5
package/dist/Mask.js
CHANGED
|
@@ -147,8 +147,9 @@ var Mask_default = /* @__PURE__ */ defineComponent((props, { attrs }) => {
|
|
|
147
147
|
default: void 0
|
|
148
148
|
},
|
|
149
149
|
getPopupContainer: {
|
|
150
|
-
type:
|
|
150
|
+
type: Boolean,
|
|
151
151
|
required: false,
|
|
152
|
+
skipCheck: true,
|
|
152
153
|
default: void 0
|
|
153
154
|
}
|
|
154
155
|
},
|
package/dist/TourStep/index.cjs
CHANGED
|
@@ -2,10 +2,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
2
2
|
const require_rolldown_runtime = require("../_virtual/rolldown_runtime.cjs");
|
|
3
3
|
const require_DefaultPanel = require("./DefaultPanel.cjs");
|
|
4
4
|
let vue = require("vue");
|
|
5
|
-
var TourStep = /* @__PURE__ */ (0, vue.defineComponent)((props) => {
|
|
5
|
+
var TourStep = /* @__PURE__ */ (0, vue.defineComponent)((props, { attrs }) => {
|
|
6
6
|
return () => {
|
|
7
7
|
const { current, renderPanel } = props;
|
|
8
|
-
return (0, vue.createVNode)(vue.Fragment, null, [typeof renderPanel === "function" ? renderPanel(
|
|
8
|
+
return (0, vue.createVNode)(vue.Fragment, null, [typeof renderPanel === "function" ? renderPanel({
|
|
9
|
+
...props,
|
|
10
|
+
...attrs
|
|
11
|
+
}, current) : (0, vue.createVNode)(require_DefaultPanel.default, props, null)]);
|
|
9
12
|
};
|
|
10
13
|
}, {
|
|
11
14
|
props: {
|
package/dist/TourStep/index.js
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import DefaultPanel_default from "./DefaultPanel.js";
|
|
2
2
|
import { Fragment, createVNode, defineComponent } from "vue";
|
|
3
|
-
var TourStep_default = /* @__PURE__ */ defineComponent((props) => {
|
|
3
|
+
var TourStep_default = /* @__PURE__ */ defineComponent((props, { attrs }) => {
|
|
4
4
|
return () => {
|
|
5
5
|
const { current, renderPanel } = props;
|
|
6
|
-
return createVNode(Fragment, null, [typeof renderPanel === "function" ? renderPanel(
|
|
6
|
+
return createVNode(Fragment, null, [typeof renderPanel === "function" ? renderPanel({
|
|
7
|
+
...props,
|
|
8
|
+
...attrs
|
|
9
|
+
}, current) : createVNode(DefaultPanel_default, props, null)]);
|
|
7
10
|
};
|
|
8
11
|
}, {
|
|
9
12
|
props: {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@v-c/tour",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0
|
|
4
|
+
"version": "1.0.0",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -29,14 +29,15 @@
|
|
|
29
29
|
"vue": "^3.0.0"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@v-c/portal": "0.0
|
|
33
|
-
"@v-c/
|
|
34
|
-
"@v-c/
|
|
32
|
+
"@v-c/portal": "^1.0.0",
|
|
33
|
+
"@v-c/trigger": "^1.0.0",
|
|
34
|
+
"@v-c/util": "^1.0.0"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"build": "vite build",
|
|
38
38
|
"test": "vitest",
|
|
39
39
|
"prepublish": "pnpm build",
|
|
40
|
-
"bump": "bumpp --release patch"
|
|
40
|
+
"bump:patch": "bumpp --release patch",
|
|
41
|
+
"bump": "bumpp"
|
|
41
42
|
}
|
|
42
43
|
}
|