@vue/compat 3.2.34 → 3.2.35

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.
@@ -7179,7 +7179,7 @@ function createCompatVue(createApp, createSingletonApp) {
7179
7179
  return vm;
7180
7180
  }
7181
7181
  }
7182
- Vue.version = `2.6.14-compat:${"3.2.34"}`;
7182
+ Vue.version = `2.6.14-compat:${"3.2.35"}`;
7183
7183
  Vue.config = singletonApp.config;
7184
7184
  Vue.use = (p, ...options) => {
7185
7185
  if (p && isFunction(p.install)) {
@@ -7905,7 +7905,7 @@ function createHydrationFunctions(rendererInternals) {
7905
7905
  // #5728 empty text node inside a slot can cause hydration failure
7906
7906
  // because the server rendered HTML won't contain a text node
7907
7907
  if (vnode.children === '') {
7908
- insert((vnode.el = createText('')), node.parentElement, node);
7908
+ insert((vnode.el = createText('')), parentNode(node), node);
7909
7909
  nextNode = node;
7910
7910
  }
7911
7911
  else {
@@ -11250,7 +11250,7 @@ function isMemoSame(cached, memo) {
11250
11250
  }
11251
11251
 
11252
11252
  // Core API ------------------------------------------------------------------
11253
- const version = "3.2.34";
11253
+ const version = "3.2.35";
11254
11254
  const _ssrUtils = {
11255
11255
  createComponentInstance,
11256
11256
  setupComponent,
@@ -7111,7 +7111,7 @@ var Vue = (function () {
7111
7111
  return vm;
7112
7112
  }
7113
7113
  }
7114
- Vue.version = `2.6.14-compat:${"3.2.34"}`;
7114
+ Vue.version = `2.6.14-compat:${"3.2.35"}`;
7115
7115
  Vue.config = singletonApp.config;
7116
7116
  Vue.use = (p, ...options) => {
7117
7117
  if (p && isFunction(p.install)) {
@@ -7831,7 +7831,7 @@ var Vue = (function () {
7831
7831
  // #5728 empty text node inside a slot can cause hydration failure
7832
7832
  // because the server rendered HTML won't contain a text node
7833
7833
  if (vnode.children === '') {
7834
- insert((vnode.el = createText('')), node.parentElement, node);
7834
+ insert((vnode.el = createText('')), parentNode(node), node);
7835
7835
  nextNode = node;
7836
7836
  }
7837
7837
  else {
@@ -11095,7 +11095,7 @@ var Vue = (function () {
11095
11095
  }
11096
11096
 
11097
11097
  // Core API ------------------------------------------------------------------
11098
- const version = "3.2.34";
11098
+ const version = "3.2.35";
11099
11099
  /**
11100
11100
  * SSR utils for \@vue/server-renderer. Only exposed in cjs builds.
11101
11101
  * @internal