@deot/vc 1.0.40 → 1.0.41

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.
@@ -11534,7 +11534,8 @@ var Vc = (function (exports, vue) {
11534
11534
  leaf = Portal.leafs.get(name);
11535
11535
  leaf.target = target;
11536
11536
  leaf.propsData.value = propsData$;
11537
- leaf.wrapper?.[aliveUpdateKey]?.(options);
11537
+ const next = leaf.wrapper?.[aliveUpdateKey];
11538
+ next && vue.nextTick(() => next(options));
11538
11539
  } else {
11539
11540
  const wrapper = this.wrapper;
11540
11541
  const app = vue.createApp({
@@ -11537,7 +11537,8 @@
11537
11537
  leaf = Portal.leafs.get(name);
11538
11538
  leaf.target = target;
11539
11539
  leaf.propsData.value = propsData$;
11540
- leaf.wrapper?.[aliveUpdateKey]?.(options);
11540
+ const next = leaf.wrapper?.[aliveUpdateKey];
11541
+ next && vue.nextTick(() => next(options));
11541
11542
  } else {
11542
11543
  const wrapper = this.wrapper;
11543
11544
  const app = vue.createApp({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deot/vc",
3
- "version": "1.0.40",
3
+ "version": "1.0.41",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -19,9 +19,9 @@
19
19
  "access": "public"
20
20
  },
21
21
  "dependencies": {
22
- "@deot/vc-components": "^1.0.40",
23
- "@deot/vc-hooks": "^1.0.40",
24
- "@deot/vc-shared": "^1.0.40"
22
+ "@deot/vc-components": "^1.0.41",
23
+ "@deot/vc-hooks": "^1.0.41",
24
+ "@deot/vc-shared": "^1.0.41"
25
25
  },
26
26
  "peerDependencies": {
27
27
  "vue": "*"