@vue/runtime-core 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-core.cjs.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/runtime-core v3.6.0-beta.
|
|
2
|
+
* @vue/runtime-core v3.6.0-beta.17
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -273,8 +273,8 @@ function findInsertionIndex(order, queue, start, end) {
|
|
|
273
273
|
/**
|
|
274
274
|
* @internal for runtime-vapor only
|
|
275
275
|
*/
|
|
276
|
-
function queueJob(job, id, isPre = false) {
|
|
277
|
-
if (queueJobWorker(job, id === void 0 ? isPre ? -2 : Infinity : isPre ? id * 2 : id * 2 + 1, jobs, jobsLength, flushIndex)) {
|
|
276
|
+
function queueJob(job, id, isPre = false, order = 0) {
|
|
277
|
+
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)) {
|
|
278
278
|
jobsLength++;
|
|
279
279
|
queueFlush();
|
|
280
280
|
}
|
|
@@ -6246,7 +6246,7 @@ function isMemoSame(cached, memo) {
|
|
|
6246
6246
|
}
|
|
6247
6247
|
//#endregion
|
|
6248
6248
|
//#region packages/runtime-core/src/index.ts
|
|
6249
|
-
const version = "3.6.0-beta.
|
|
6249
|
+
const version = "3.6.0-beta.17";
|
|
6250
6250
|
const warn = warn$1;
|
|
6251
6251
|
/**
|
|
6252
6252
|
* Runtime error messages. Only exposed in dev or esm builds.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/runtime-core v3.6.0-beta.
|
|
2
|
+
* @vue/runtime-core v3.6.0-beta.17
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -169,8 +169,8 @@ function findInsertionIndex(order, queue, start, end) {
|
|
|
169
169
|
/**
|
|
170
170
|
* @internal for runtime-vapor only
|
|
171
171
|
*/
|
|
172
|
-
function queueJob(job, id, isPre = false) {
|
|
173
|
-
if (queueJobWorker(job, id === void 0 ? isPre ? -2 : Infinity : isPre ? id * 2 : id * 2 + 1, jobs, jobsLength, flushIndex)) {
|
|
172
|
+
function queueJob(job, id, isPre = false, order = 0) {
|
|
173
|
+
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)) {
|
|
174
174
|
jobsLength++;
|
|
175
175
|
queueFlush();
|
|
176
176
|
}
|
|
@@ -4907,7 +4907,7 @@ function isMemoSame(cached, memo) {
|
|
|
4907
4907
|
}
|
|
4908
4908
|
//#endregion
|
|
4909
4909
|
//#region packages/runtime-core/src/index.ts
|
|
4910
|
-
const version = "3.6.0-beta.
|
|
4910
|
+
const version = "3.6.0-beta.17";
|
|
4911
4911
|
const warn = _vue_shared.NOOP;
|
|
4912
4912
|
/**
|
|
4913
4913
|
* Runtime error messages. Only exposed in dev or esm builds.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/runtime-core v3.6.0-beta.
|
|
2
|
+
* @vue/runtime-core v3.6.0-beta.17
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -279,8 +279,8 @@ function findInsertionIndex(order, queue, start, end) {
|
|
|
279
279
|
/**
|
|
280
280
|
* @internal for runtime-vapor only
|
|
281
281
|
*/
|
|
282
|
-
function queueJob(job, id, isPre = false) {
|
|
283
|
-
if (queueJobWorker(job, id === void 0 ? isPre ? -2 : Infinity : isPre ? id * 2 : id * 2 + 1, jobs, jobsLength, flushIndex)) {
|
|
282
|
+
function queueJob(job, id, isPre = false, order = 0) {
|
|
283
|
+
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)) {
|
|
284
284
|
jobsLength++;
|
|
285
285
|
queueFlush();
|
|
286
286
|
}
|
|
@@ -6354,7 +6354,7 @@ function isMemoSame(cached, memo) {
|
|
|
6354
6354
|
}
|
|
6355
6355
|
//#endregion
|
|
6356
6356
|
//#region packages/runtime-core/src/index.ts
|
|
6357
|
-
const version = "3.6.0-beta.
|
|
6357
|
+
const version = "3.6.0-beta.17";
|
|
6358
6358
|
const warn = !!(process.env.NODE_ENV !== "production") ? warn$1 : NOOP;
|
|
6359
6359
|
/**
|
|
6360
6360
|
* Runtime error messages. Only exposed in dev or esm builds.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue/runtime-core",
|
|
3
|
-
"version": "3.6.0-beta.
|
|
3
|
+
"version": "3.6.0-beta.17",
|
|
4
4
|
"description": "@vue/runtime-core",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "dist/runtime-core.esm-bundler.js",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
},
|
|
47
47
|
"homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-core#readme",
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@vue/shared": "3.6.0-beta.
|
|
50
|
-
"@vue/reactivity": "3.6.0-beta.
|
|
49
|
+
"@vue/shared": "3.6.0-beta.17",
|
|
50
|
+
"@vue/reactivity": "3.6.0-beta.17"
|
|
51
51
|
}
|
|
52
52
|
}
|