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.
@@ -187,7 +187,7 @@ var Vue = (function (exports) {
187
187
  }
188
188
  const listDelimiterRE = /;(?![^(]*\))/g;
189
189
  const propertyDelimiterRE = /:([^]+)/;
190
- const styleCommentRE = new RegExp("\\/\\*.*?\\*\\/", "gs");
190
+ const styleCommentRE = /\/\*[^]*?\*\//g;
191
191
  function parseStringStyle(cssText) {
192
192
  const ret = {};
193
193
  cssText.replace(styleCommentRE, "").split(listDelimiterRE).forEach((item) => {
@@ -9090,7 +9090,7 @@ Component that was made reactive: `,
9090
9090
  return true;
9091
9091
  }
9092
9092
 
9093
- const version = "3.3.1";
9093
+ const version = "3.3.3";
9094
9094
  const ssrUtils = null;
9095
9095
  const resolveFilter = null;
9096
9096
  const compatUtils = null;
@@ -15104,7 +15104,10 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
15104
15104
  const ignoreSideEffectTags = (node, context) => {
15105
15105
  if (node.type === 1 && node.tagType === 0 && (node.tag === "script" || node.tag === "style")) {
15106
15106
  context.onError(
15107
- createDOMCompilerError(63, node.loc)
15107
+ createDOMCompilerError(
15108
+ 63,
15109
+ node.loc
15110
+ )
15108
15111
  );
15109
15112
  context.removeNode();
15110
15113
  }