@vue/runtime-dom
Advanced tools
| /** | ||
| * @vue/runtime-dom v3.5.38 | ||
| * @vue/runtime-dom v3.5.39 | ||
| * (c) 2018-present Yuxi (Evan) You and Vue contributors | ||
@@ -656,12 +656,11 @@ * @license MIT | ||
| } | ||
| const optionsModifierRE = /(?:Once|Passive|Capture)$/; | ||
| const optionsModifierRE = /(Once|Passive|Capture)$/; | ||
| const optionsModifierEventRE = /^on:?(?:Once|Passive|Capture)$/; | ||
| function parseName(name) { | ||
| let options; | ||
| if (optionsModifierRE.test(name)) { | ||
| options = {}; | ||
| let m; | ||
| while (m = name.match(optionsModifierRE)) { | ||
| name = name.slice(0, name.length - m[0].length); | ||
| options[m[0].toLowerCase()] = true; | ||
| } | ||
| let m; | ||
| while ((m = name.match(optionsModifierRE)) && !optionsModifierEventRE.test(name)) { | ||
| if (!options) options = {}; | ||
| name = name.slice(0, name.length - m[1].length); | ||
| options[m[1].toLowerCase()] = true; | ||
| } | ||
@@ -668,0 +667,0 @@ const event = name[2] === ":" ? name.slice(3) : shared.hyphenate(name.slice(2)); |
| /** | ||
| * @vue/runtime-dom v3.5.38 | ||
| * @vue/runtime-dom v3.5.39 | ||
| * (c) 2018-present Yuxi (Evan) You and Vue contributors | ||
@@ -638,12 +638,11 @@ * @license MIT | ||
| } | ||
| const optionsModifierRE = /(?:Once|Passive|Capture)$/; | ||
| const optionsModifierRE = /(Once|Passive|Capture)$/; | ||
| const optionsModifierEventRE = /^on:?(?:Once|Passive|Capture)$/; | ||
| function parseName(name) { | ||
| let options; | ||
| if (optionsModifierRE.test(name)) { | ||
| options = {}; | ||
| let m; | ||
| while (m = name.match(optionsModifierRE)) { | ||
| name = name.slice(0, name.length - m[0].length); | ||
| options[m[0].toLowerCase()] = true; | ||
| } | ||
| let m; | ||
| while ((m = name.match(optionsModifierRE)) && !optionsModifierEventRE.test(name)) { | ||
| if (!options) options = {}; | ||
| name = name.slice(0, name.length - m[1].length); | ||
| options[m[1].toLowerCase()] = true; | ||
| } | ||
@@ -650,0 +649,0 @@ const event = name[2] === ":" ? name.slice(3) : shared.hyphenate(name.slice(2)); |
| /** | ||
| * @vue/runtime-dom v3.5.38 | ||
| * @vue/runtime-dom v3.5.39 | ||
| * (c) 2018-present Yuxi (Evan) You and Vue contributors | ||
@@ -721,12 +721,11 @@ * @license MIT | ||
| } | ||
| const optionsModifierRE = /(?:Once|Passive|Capture)$/; | ||
| const optionsModifierRE = /(Once|Passive|Capture)$/; | ||
| const optionsModifierEventRE = /^on:?(?:Once|Passive|Capture)$/; | ||
| function parseName(name) { | ||
| let options; | ||
| if (optionsModifierRE.test(name)) { | ||
| options = {}; | ||
| let m; | ||
| while (m = name.match(optionsModifierRE)) { | ||
| name = name.slice(0, name.length - m[0].length); | ||
| options[m[0].toLowerCase()] = true; | ||
| } | ||
| let m; | ||
| while ((m = name.match(optionsModifierRE)) && !optionsModifierEventRE.test(name)) { | ||
| if (!options) options = {}; | ||
| name = name.slice(0, name.length - m[1].length); | ||
| options[m[1].toLowerCase()] = true; | ||
| } | ||
@@ -733,0 +732,0 @@ const event = name[2] === ":" ? name.slice(3) : hyphenate(name.slice(2)); |
+4
-4
| { | ||
| "name": "@vue/runtime-dom", | ||
| "version": "3.5.38", | ||
| "version": "3.5.39", | ||
| "description": "@vue/runtime-dom", | ||
@@ -53,5 +53,5 @@ "main": "index.js", | ||
| "csstype": "^3.2.3", | ||
| "@vue/shared": "3.5.38", | ||
| "@vue/runtime-core": "3.5.38", | ||
| "@vue/reactivity": "3.5.38" | ||
| "@vue/shared": "3.5.39", | ||
| "@vue/reactivity": "3.5.39", | ||
| "@vue/runtime-core": "3.5.39" | ||
| }, | ||
@@ -58,0 +58,0 @@ "devDependencies": { |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
1248874
0.31%33802
0.23%+ Added
+ Added
+ Added
- Removed
- Removed
- Removed
Updated
Updated
Updated