vue 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.
@@ -3020,7 +3020,7 @@ function hydrateSuspense(node, vnode, parentComponent, parentSuspense, isSVG, sl
3020
3020
  optimized
3021
3021
  );
3022
3022
  if (suspense.deps === 0) {
3023
- suspense.resolve();
3023
+ suspense.resolve(false, true);
3024
3024
  }
3025
3025
  return result;
3026
3026
  }
@@ -9093,7 +9093,7 @@ function isMemoSame(cached, memo) {
9093
9093
  return true;
9094
9094
  }
9095
9095
 
9096
- const version = "3.3.0";
9096
+ const version = "3.3.2";
9097
9097
  const ssrUtils = null;
9098
9098
  const resolveFilter = null;
9099
9099
  const compatUtils = null;
@@ -15276,7 +15276,10 @@ function hasMultipleChildren(node) {
15276
15276
  const ignoreSideEffectTags = (node, context) => {
15277
15277
  if (node.type === 1 && node.tagType === 0 && (node.tag === "script" || node.tag === "style")) {
15278
15278
  context.onError(
15279
- createDOMCompilerError(63, node.loc)
15279
+ createDOMCompilerError(
15280
+ 63,
15281
+ node.loc
15282
+ )
15280
15283
  );
15281
15284
  context.removeNode();
15282
15285
  }