@v-c/tour 0.0.4 → 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.
Files changed (2) hide show
  1. package/dist/Mask.js +2 -1
  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: [Function, Boolean],
150
+ type: Boolean,
151
151
  required: false,
152
+ skipCheck: true,
152
153
  default: void 0
153
154
  }
154
155
  },
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",
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.6",
33
- "@v-c/trigger": "0.0.16",
34
- "@v-c/util": "0.0.15"
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
  }