@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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @vue/runtime-dom v3.6.0-beta.16
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
  **/
@@ -2481,8 +2481,8 @@ var VueRuntimeDOM = (function(exports) {
2481
2481
  /**
2482
2482
  * @internal for runtime-vapor only
2483
2483
  */
2484
- function queueJob(job, id, isPre = false) {
2485
- if (queueJobWorker(job, id === void 0 ? isPre ? -2 : Infinity : isPre ? id * 2 : id * 2 + 1, jobs, jobsLength, flushIndex)) {
2484
+ function queueJob(job, id, isPre = false, order = 0) {
2485
+ 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)) {
2486
2486
  jobsLength++;
2487
2487
  queueFlush();
2488
2488
  }
@@ -8417,7 +8417,7 @@ var VueRuntimeDOM = (function(exports) {
8417
8417
  }
8418
8418
  //#endregion
8419
8419
  //#region packages/runtime-core/src/index.ts
8420
- const version = "3.6.0-beta.16";
8420
+ const version = "3.6.0-beta.17";
8421
8421
  const warn = warn$1;
8422
8422
  /**
8423
8423
  * Runtime error messages. Only exposed in dev or esm builds.