vue 3.6.0-beta.15 → 3.6.0-beta.17
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.
- package/dist/vue.cjs.js +1 -1
- package/dist/vue.cjs.prod.js +1 -1
- package/dist/vue.esm-browser.js +6 -6
- package/dist/vue.esm-browser.prod.js +3 -3
- package/dist/vue.esm-bundler.js +1 -1
- package/dist/vue.global.js +6 -6
- package/dist/vue.global.prod.js +3 -3
- package/dist/vue.runtime-with-vapor.esm-browser.js +922 -703
- package/dist/vue.runtime-with-vapor.esm-browser.prod.js +4 -4
- package/dist/vue.runtime.esm-browser.js +6 -6
- package/dist/vue.runtime.esm-browser.prod.js +3 -3
- package/dist/vue.runtime.esm-bundler.js +1 -1
- package/dist/vue.runtime.global.js +6 -6
- package/dist/vue.runtime.global.prod.js +3 -3
- package/package.json +7 -7
package/dist/vue.cjs.js
CHANGED
package/dist/vue.cjs.prod.js
CHANGED
package/dist/vue.esm-browser.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* vue v3.6.0-beta.
|
|
2
|
+
* vue v3.6.0-beta.17
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -2569,8 +2569,8 @@ function findInsertionIndex(order, queue, start, end) {
|
|
|
2569
2569
|
/**
|
|
2570
2570
|
* @internal for runtime-vapor only
|
|
2571
2571
|
*/
|
|
2572
|
-
function queueJob(job, id, isPre = false) {
|
|
2573
|
-
if (queueJobWorker(job, id === void 0 ? isPre ? -2 : Infinity : isPre ? id * 2 : id * 2 + 1, jobs, jobsLength, flushIndex)) {
|
|
2572
|
+
function queueJob(job, id, isPre = false, order = 0) {
|
|
2573
|
+
if (queueJobWorker(job, id === void 0 ? isPre ? -2 : Infinity : isPre ? id * 2 : order ? id * 2 + 1 + order / (order + 1) : id * 2 + 1, jobs, jobsLength, flushIndex)) {
|
|
2574
2574
|
jobsLength++;
|
|
2575
2575
|
queueFlush();
|
|
2576
2576
|
}
|
|
@@ -8509,7 +8509,7 @@ function isMemoSame(cached, memo) {
|
|
|
8509
8509
|
}
|
|
8510
8510
|
//#endregion
|
|
8511
8511
|
//#region packages/runtime-core/src/index.ts
|
|
8512
|
-
const version = "3.6.0-beta.
|
|
8512
|
+
const version = "3.6.0-beta.17";
|
|
8513
8513
|
const warn = warn$1;
|
|
8514
8514
|
/**
|
|
8515
8515
|
* Runtime error messages. Only exposed in dev or esm builds.
|
|
@@ -9089,7 +9089,7 @@ function patchEvent(el, rawName, prevValue, nextValue, instance = null) {
|
|
|
9089
9089
|
const existingInvoker = invokers[rawName];
|
|
9090
9090
|
if (nextValue && existingInvoker) existingInvoker.value = sanitizeEventValue(nextValue, rawName);
|
|
9091
9091
|
else {
|
|
9092
|
-
const [name, options] =
|
|
9092
|
+
const [name, options] = parseEventName(rawName);
|
|
9093
9093
|
if (nextValue) addEventListener(el, name, invokers[rawName] = createInvoker(sanitizeEventValue(nextValue, rawName), instance), options);
|
|
9094
9094
|
else if (existingInvoker) {
|
|
9095
9095
|
removeEventListener(el, name, existingInvoker, options);
|
|
@@ -9098,7 +9098,7 @@ function patchEvent(el, rawName, prevValue, nextValue, instance = null) {
|
|
|
9098
9098
|
}
|
|
9099
9099
|
}
|
|
9100
9100
|
const optionsModifierRE = /(?:Once|Passive|Capture)$/;
|
|
9101
|
-
function
|
|
9101
|
+
function parseEventName(name) {
|
|
9102
9102
|
let options;
|
|
9103
9103
|
if (optionsModifierRE.test(name)) {
|
|
9104
9104
|
options = {};
|