@vue/compat 3.3.0 → 3.3.2

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.
@@ -3510,7 +3510,7 @@ function hydrateSuspense(node, vnode, parentComponent, parentSuspense, isSVG, sl
3510
3510
  optimized
3511
3511
  );
3512
3512
  if (suspense.deps === 0) {
3513
- suspense.resolve();
3513
+ suspense.resolve(false, true);
3514
3514
  }
3515
3515
  return result;
3516
3516
  }
@@ -6303,7 +6303,7 @@ function createCompatVue$1(createApp, createSingletonApp) {
6303
6303
  return vm;
6304
6304
  }
6305
6305
  }
6306
- Vue.version = `2.6.14-compat:${"3.3.0"}`;
6306
+ Vue.version = `2.6.14-compat:${"3.3.2"}`;
6307
6307
  Vue.config = singletonApp.config;
6308
6308
  Vue.use = (p, ...options) => {
6309
6309
  if (p && isFunction(p.install)) {
@@ -10897,7 +10897,7 @@ function isMemoSame(cached, memo) {
10897
10897
  return true;
10898
10898
  }
10899
10899
 
10900
- const version = "3.3.0";
10900
+ const version = "3.3.2";
10901
10901
  const _ssrUtils = {
10902
10902
  createComponentInstance,
10903
10903
  setupComponent,
@@ -17660,8 +17660,11 @@ function hasMultipleChildren(node) {
17660
17660
 
17661
17661
  const ignoreSideEffectTags = (node, context) => {
17662
17662
  if (node.type === 1 && node.tagType === 0 && (node.tag === "script" || node.tag === "style")) {
17663
- context.onError(
17664
- createDOMCompilerError(63, node.loc)
17663
+ process.env.NODE_ENV !== "production" && context.onError(
17664
+ createDOMCompilerError(
17665
+ 63,
17666
+ node.loc
17667
+ )
17665
17668
  );
17666
17669
  context.removeNode();
17667
17670
  }
@@ -3496,7 +3496,7 @@ Details: https://v3-migration.vuejs.org/breaking-changes/migration-build.html`
3496
3496
  optimized
3497
3497
  );
3498
3498
  if (suspense.deps === 0) {
3499
- suspense.resolve();
3499
+ suspense.resolve(false, true);
3500
3500
  }
3501
3501
  return result;
3502
3502
  }
@@ -6258,7 +6258,7 @@ If this is a native custom element, make sure to exclude it from component resol
6258
6258
  return vm;
6259
6259
  }
6260
6260
  }
6261
- Vue.version = `2.6.14-compat:${"3.3.0"}`;
6261
+ Vue.version = `2.6.14-compat:${"3.3.2"}`;
6262
6262
  Vue.config = singletonApp.config;
6263
6263
  Vue.use = (p, ...options) => {
6264
6264
  if (p && isFunction(p.install)) {
@@ -10781,7 +10781,7 @@ Component that was made reactive: `,
10781
10781
  return true;
10782
10782
  }
10783
10783
 
10784
- const version = "3.3.0";
10784
+ const version = "3.3.2";
10785
10785
  const ssrUtils = null;
10786
10786
  const resolveFilter = resolveFilter$1 ;
10787
10787
  const _compatUtils = {
@@ -17480,7 +17480,10 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
17480
17480
  const ignoreSideEffectTags = (node, context) => {
17481
17481
  if (node.type === 1 && node.tagType === 0 && (node.tag === "script" || node.tag === "style")) {
17482
17482
  context.onError(
17483
- createDOMCompilerError(63, node.loc)
17483
+ createDOMCompilerError(
17484
+ 63,
17485
+ node.loc
17486
+ )
17484
17487
  );
17485
17488
  context.removeNode();
17486
17489
  }