@vue/runtime-dom 3.6.0-beta.16 → 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/runtime-dom.cjs.js +1 -1
- package/dist/runtime-dom.cjs.prod.js +1 -1
- package/dist/runtime-dom.esm-browser.js +4 -4
- package/dist/runtime-dom.esm-browser.prod.js +3 -3
- package/dist/runtime-dom.esm-bundler.js +1 -1
- package/dist/runtime-dom.global.js +4 -4
- package/dist/runtime-dom.global.prod.js +3 -3
- package/package.json +4 -4
package/dist/runtime-dom.cjs.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/runtime-dom v3.6.0-beta.
|
|
2
|
+
* @vue/runtime-dom v3.6.0-beta.17
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -2479,8 +2479,8 @@ function findInsertionIndex(order, queue, start, end) {
|
|
|
2479
2479
|
/**
|
|
2480
2480
|
* @internal for runtime-vapor only
|
|
2481
2481
|
*/
|
|
2482
|
-
function queueJob(job, id, isPre = false) {
|
|
2483
|
-
if (queueJobWorker(job, id === void 0 ? isPre ? -2 : Infinity : isPre ? id * 2 : id * 2 + 1, jobs, jobsLength, flushIndex)) {
|
|
2482
|
+
function queueJob(job, id, isPre = false, order = 0) {
|
|
2483
|
+
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)) {
|
|
2484
2484
|
jobsLength++;
|
|
2485
2485
|
queueFlush();
|
|
2486
2486
|
}
|
|
@@ -8419,7 +8419,7 @@ function isMemoSame(cached, memo) {
|
|
|
8419
8419
|
}
|
|
8420
8420
|
//#endregion
|
|
8421
8421
|
//#region packages/runtime-core/src/index.ts
|
|
8422
|
-
const version = "3.6.0-beta.
|
|
8422
|
+
const version = "3.6.0-beta.17";
|
|
8423
8423
|
const warn = warn$1;
|
|
8424
8424
|
/**
|
|
8425
8425
|
* Runtime error messages. Only exposed in dev or esm builds.
|