vue 3.3.1 → 3.3.3

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.
@@ -184,7 +184,7 @@ function normalizeStyle(value) {
184
184
  }
185
185
  const listDelimiterRE = /;(?![^(]*\))/g;
186
186
  const propertyDelimiterRE = /:([^]+)/;
187
- const styleCommentRE = new RegExp("\\/\\*.*?\\*\\/", "gs");
187
+ const styleCommentRE = /\/\*[^]*?\*\//g;
188
188
  function parseStringStyle(cssText) {
189
189
  const ret = {};
190
190
  cssText.replace(styleCommentRE, "").split(listDelimiterRE).forEach((item) => {
@@ -9093,7 +9093,7 @@ function isMemoSame(cached, memo) {
9093
9093
  return true;
9094
9094
  }
9095
9095
 
9096
- const version = "3.3.1";
9096
+ const version = "3.3.3";
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
  }