@opentinyvue/vue-guide 3.25.0 → 3.27.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 CHANGED
@@ -62,6 +62,10 @@ var Guide = defineComponent({
62
62
  height: {
63
63
  type: String,
64
64
  default: ""
65
+ },
66
+ mask: {
67
+ type: Boolean,
68
+ default: false
65
69
  }
66
70
  }),
67
71
  setup: function setup(props, context) {
package/lib/pc.js CHANGED
@@ -42,7 +42,7 @@ function _regenerator() {
42
42
  var e, t, r = "function" == typeof Symbol ? Symbol : {}, n = r.iterator || "@@iterator", o = r.toStringTag || "@@toStringTag";
43
43
  function i(r2, n2, o2, i2) {
44
44
  var c2 = n2 && n2.prototype instanceof Generator ? n2 : Generator, u2 = Object.create(c2.prototype);
45
- return _regeneratorDefine2(u2, "_invoke", function(r3, n3, o3) {
45
+ return _regeneratorDefine2(u2, "_invoke", (function(r3, n3, o3) {
46
46
  var i3, c3, u3, f2 = 0, p = o3 || [], y = false, G = { p: 0, n: 0, v: e, a: d, f: d.bind(e, 4), d: function d2(t2, r4) {
47
47
  return i3 = t2, c3 = 0, u3 = e, G.n = r4, a;
48
48
  } };
@@ -75,7 +75,7 @@ function _regenerator() {
75
75
  }
76
76
  return { value: t, done: y };
77
77
  };
78
- }(r2, o2, i2), true), u2;
78
+ })(r2, o2, i2), true), u2;
79
79
  }
80
80
  var a = {};
81
81
  function Generator() {
@@ -107,15 +107,12 @@ function _regeneratorDefine2(e, r, n, t) {
107
107
  i = 0;
108
108
  }
109
109
  _regeneratorDefine2 = function _regeneratorDefine(e2, r2, n2, t2) {
110
- if (r2) i ? i(e2, r2, { value: n2, enumerable: !t2, configurable: !t2, writable: !t2 }) : e2[r2] = n2;
111
- else {
112
- var o = function o2(r3, n3) {
113
- _regeneratorDefine2(e2, r3, function(e3) {
114
- return this._invoke(r3, n3, e3);
115
- });
116
- };
117
- o("next", 0), o("throw", 1), o("return", 2);
110
+ function o(r3, n3) {
111
+ _regeneratorDefine2(e2, r3, function(e3) {
112
+ return this._invoke(r3, n3, e3);
113
+ });
118
114
  }
115
+ r2 ? i ? i(e2, r2, { value: n2, enumerable: !t2, configurable: !t2, writable: !t2 }) : e2[r2] = n2 : (o("next", 0), o("throw", 1), o("return", 2));
119
116
  }, _regeneratorDefine2(e, r, n, t);
120
117
  }
121
118
  function _extends() {
@@ -247,7 +244,7 @@ var offset$1 = function offset$12(options) {
247
244
  };
248
245
  var offset = offset$1;
249
246
  var _sfc_main = defineComponent({
250
- props: [].concat(props, ["showStep", "domData", "mainAxis", "crossAxis", "alignmentAxis", "popPosition", "modalOverlayOpeningPadding", "modalOverlayOpeningRadius", "arrow", "lightClass", "width", "height"]),
247
+ props: [].concat(props, ["showStep", "domData", "mainAxis", "crossAxis", "alignmentAxis", "popPosition", "modalOverlayOpeningPadding", "modalOverlayOpeningRadius", "arrow", "lightClass", "width", "mask", "height"]),
251
248
  setup: function setup$1(props2, context) {
252
249
  return setup({
253
250
  props: props2,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@opentinyvue/vue-guide",
3
3
  "type": "module",
4
- "version": "3.25.0",
4
+ "version": "3.27.0",
5
5
  "description": "",
6
6
  "license": "MIT",
7
7
  "sideEffects": false,
@@ -9,10 +9,10 @@
9
9
  "module": "./lib/index.js",
10
10
  "dependencies": {
11
11
  "@floating-ui/dom": "^1.0.10",
12
- "@opentinyvue/utils": "~3.25.0",
13
- "@opentinyvue/vue-common": "~3.25.0",
14
- "@opentinyvue/vue-renderless": "~3.25.0",
15
- "@opentinyvue/vue-theme": "~3.25.0",
12
+ "@opentinyvue/utils": "~3.27.0",
13
+ "@opentinyvue/vue-common": "~3.27.0",
14
+ "@opentinyvue/vue-renderless": "~3.27.0",
15
+ "@opentinyvue/vue-theme": "~3.27.0",
16
16
  "shepherd.js": "11.1.1"
17
17
  },
18
18
  "types": "index.d.ts"
package/src/index.d.ts CHANGED
@@ -44,6 +44,10 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
44
44
  type: StringConstructor;
45
45
  default: string;
46
46
  };
47
+ mask: {
48
+ type: BooleanConstructor;
49
+ default: boolean;
50
+ };
47
51
  tiny_mode: StringConstructor;
48
52
  tiny_mode_root: BooleanConstructor;
49
53
  tiny_template: (ObjectConstructor | FunctionConstructor)[];
@@ -99,6 +103,10 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
99
103
  type: StringConstructor;
100
104
  default: string;
101
105
  };
106
+ mask: {
107
+ type: BooleanConstructor;
108
+ default: boolean;
109
+ };
102
110
  tiny_mode: StringConstructor;
103
111
  tiny_mode_root: BooleanConstructor;
104
112
  tiny_template: (ObjectConstructor | FunctionConstructor)[];
@@ -110,6 +118,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
110
118
  width: string;
111
119
  height: string;
112
120
  arrow: boolean;
121
+ mask: boolean;
113
122
  mainAxis: number;
114
123
  crossAxis: number;
115
124
  tiny_mode_root: boolean;
package/src/pc.vue.d.ts CHANGED
@@ -2,6 +2,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
2
2
  width?: any;
3
3
  height?: any;
4
4
  arrow?: any;
5
+ mask?: any;
5
6
  mainAxis?: any;
6
7
  crossAxis?: any;
7
8
  tiny_mode?: any;
@@ -32,6 +33,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
32
33
  width?: any;
33
34
  height?: any;
34
35
  arrow?: any;
36
+ mask?: any;
35
37
  mainAxis?: any;
36
38
  crossAxis?: any;
37
39
  tiny_mode?: any;
@@ -53,6 +55,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
53
55
  readonly width?: any;
54
56
  readonly height?: any;
55
57
  readonly arrow?: any;
58
+ readonly mask?: any;
56
59
  readonly mainAxis?: any;
57
60
  readonly crossAxis?: any;
58
61
  readonly tiny_mode?: any;