@vue/runtime-core 3.6.0-beta.1 → 3.6.0-beta.3
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 +21 -13
- package/dist/runtime-core.cjs.prod.js +21 -12
- package/dist/runtime-core.d.ts +2 -2
- package/dist/runtime-core.esm-bundler.js +21 -14
- package/package.json +3 -3
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.3
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -32,7 +32,6 @@ function warn$1(msg, ...args) {
|
|
|
32
32
|
instance,
|
|
33
33
|
11,
|
|
34
34
|
[
|
|
35
|
-
// eslint-disable-next-line no-restricted-syntax
|
|
36
35
|
msg + args.map((a) => {
|
|
37
36
|
var _a, _b;
|
|
38
37
|
return (_b = (_a = a.toString) == null ? void 0 : _a.call(a)) != null ? _b : JSON.stringify(a);
|
|
@@ -657,7 +656,6 @@ function setDevtoolsHook$1(hook, target) {
|
|
|
657
656
|
// (#4815)
|
|
658
657
|
typeof window !== "undefined" && // some envs mock window but not fully
|
|
659
658
|
window.HTMLElement && // also exclude jsdom
|
|
660
|
-
// eslint-disable-next-line no-restricted-syntax
|
|
661
659
|
!((_b = (_a = window.navigator) == null ? void 0 : _a.userAgent) == null ? void 0 : _b.includes("jsdom"))
|
|
662
660
|
) {
|
|
663
661
|
const replay = target.__VUE_DEVTOOLS_HOOK_REPLAY__ = target.__VUE_DEVTOOLS_HOOK_REPLAY__ || [];
|
|
@@ -2652,9 +2650,17 @@ function isMismatchAllowed(el, allowedType) {
|
|
|
2652
2650
|
}
|
|
2653
2651
|
}
|
|
2654
2652
|
|
|
2655
|
-
|
|
2656
|
-
|
|
2653
|
+
let requestIdleCallback;
|
|
2654
|
+
let cancelIdleCallback;
|
|
2655
|
+
function ensureIdleCallbacks() {
|
|
2656
|
+
if (!requestIdleCallback) {
|
|
2657
|
+
const g = shared.getGlobalThis();
|
|
2658
|
+
requestIdleCallback = g.requestIdleCallback || ((cb) => setTimeout(cb, 1));
|
|
2659
|
+
cancelIdleCallback = g.cancelIdleCallback || ((id) => clearTimeout(id));
|
|
2660
|
+
}
|
|
2661
|
+
}
|
|
2657
2662
|
const hydrateOnIdle = (timeout = 1e4) => (hydrate) => {
|
|
2663
|
+
ensureIdleCallbacks();
|
|
2658
2664
|
const id = requestIdleCallback(hydrate, { timeout });
|
|
2659
2665
|
return () => cancelIdleCallback(id);
|
|
2660
2666
|
};
|
|
@@ -3439,9 +3445,10 @@ function createSlots(slots, dynamicSlots) {
|
|
|
3439
3445
|
|
|
3440
3446
|
function renderSlot(slots, name, props = {}, fallback, noSlotted) {
|
|
3441
3447
|
let slot = slots[name];
|
|
3442
|
-
|
|
3448
|
+
const vaporSlot = slot && (slot.__vs || (slot.__vapor ? slot : null));
|
|
3449
|
+
if (vaporSlot) {
|
|
3443
3450
|
const ret = (openBlock(), createBlock(VaporSlot, props));
|
|
3444
|
-
ret.vs = { slot, fallback };
|
|
3451
|
+
ret.vs = { slot: vaporSlot, fallback };
|
|
3445
3452
|
return ret;
|
|
3446
3453
|
}
|
|
3447
3454
|
if (currentRenderingInstance && (currentRenderingInstance.ce || currentRenderingInstance.parent && isAsyncWrapper(currentRenderingInstance.parent) && currentRenderingInstance.parent.ce)) {
|
|
@@ -3504,14 +3511,14 @@ function ensureVaporSlotFallback(vnodes, fallback) {
|
|
|
3504
3511
|
}
|
|
3505
3512
|
}
|
|
3506
3513
|
|
|
3507
|
-
function toHandlers(obj, preserveCaseIfNecessary
|
|
3514
|
+
function toHandlers(obj, preserveCaseIfNecessary) {
|
|
3508
3515
|
const ret = {};
|
|
3509
3516
|
if (!shared.isObject(obj)) {
|
|
3510
3517
|
warn$1(`v-on with no argument expects an object value.`);
|
|
3511
3518
|
return ret;
|
|
3512
3519
|
}
|
|
3513
3520
|
for (const key in obj) {
|
|
3514
|
-
ret[preserveCaseIfNecessary && /[A-Z]/.test(key) ? `on:${key}` : shared.toHandlerKey(key)] =
|
|
3521
|
+
ret[preserveCaseIfNecessary && /[A-Z]/.test(key) ? `on:${key}` : shared.toHandlerKey(key)] = obj[key];
|
|
3515
3522
|
}
|
|
3516
3523
|
return ret;
|
|
3517
3524
|
}
|
|
@@ -7838,7 +7845,7 @@ function hydrateSuspense(node, vnode, parentComponent, parentSuspense, namespace
|
|
|
7838
7845
|
parentSuspense,
|
|
7839
7846
|
parentComponent,
|
|
7840
7847
|
node.parentNode,
|
|
7841
|
-
//
|
|
7848
|
+
// oxlint-disable-next-line no-restricted-globals
|
|
7842
7849
|
document.createElement("div"),
|
|
7843
7850
|
null,
|
|
7844
7851
|
namespace,
|
|
@@ -8334,7 +8341,7 @@ const setCurrentInstance = (instance, scope = instance !== null ? instance.scope
|
|
|
8334
8341
|
simpleSetCurrentInstance(instance);
|
|
8335
8342
|
}
|
|
8336
8343
|
};
|
|
8337
|
-
const internalOptions = ["ce", "type"];
|
|
8344
|
+
const internalOptions = ["ce", "type", "uid"];
|
|
8338
8345
|
const useInstanceOption = (key, silent = false) => {
|
|
8339
8346
|
const instance = getCurrentGenericInstance();
|
|
8340
8347
|
if (!instance) {
|
|
@@ -8354,7 +8361,7 @@ const useInstanceOption = (key, silent = false) => {
|
|
|
8354
8361
|
return { hasInstance: true, value: instance[key] };
|
|
8355
8362
|
};
|
|
8356
8363
|
|
|
8357
|
-
const emptyAppContext = createAppContext();
|
|
8364
|
+
const emptyAppContext = /* @__PURE__ */ createAppContext();
|
|
8358
8365
|
let uid = 0;
|
|
8359
8366
|
function createComponentInstance(vnode, parent, suspense) {
|
|
8360
8367
|
const type = vnode.type;
|
|
@@ -8986,7 +8993,7 @@ function isMemoSame(cached, memo) {
|
|
|
8986
8993
|
return true;
|
|
8987
8994
|
}
|
|
8988
8995
|
|
|
8989
|
-
const version = "3.6.0-beta.
|
|
8996
|
+
const version = "3.6.0-beta.3";
|
|
8990
8997
|
const warn = warn$1 ;
|
|
8991
8998
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
8992
8999
|
const devtools = devtools$1 ;
|
|
@@ -9055,6 +9062,7 @@ exports.ErrorTypeStrings = ErrorTypeStrings;
|
|
|
9055
9062
|
exports.Fragment = Fragment;
|
|
9056
9063
|
exports.KeepAlive = KeepAlive;
|
|
9057
9064
|
exports.MoveType = MoveType;
|
|
9065
|
+
exports.NULL_DYNAMIC_COMPONENT = NULL_DYNAMIC_COMPONENT;
|
|
9058
9066
|
exports.Static = Static;
|
|
9059
9067
|
exports.Suspense = Suspense;
|
|
9060
9068
|
exports.Teleport = Teleport;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/runtime-core v3.6.0-beta.
|
|
2
|
+
* @vue/runtime-core v3.6.0-beta.3
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -32,7 +32,6 @@ function warn$2(msg, ...args) {
|
|
|
32
32
|
instance,
|
|
33
33
|
11,
|
|
34
34
|
[
|
|
35
|
-
// eslint-disable-next-line no-restricted-syntax
|
|
36
35
|
msg + args.map((a) => {
|
|
37
36
|
var _a, _b;
|
|
38
37
|
return (_b = (_a = a.toString) == null ? void 0 : _a.call(a)) != null ? _b : JSON.stringify(a);
|
|
@@ -2041,9 +2040,17 @@ function isMismatchAllowed(el, allowedType) {
|
|
|
2041
2040
|
}
|
|
2042
2041
|
}
|
|
2043
2042
|
|
|
2044
|
-
|
|
2045
|
-
|
|
2043
|
+
let requestIdleCallback;
|
|
2044
|
+
let cancelIdleCallback;
|
|
2045
|
+
function ensureIdleCallbacks() {
|
|
2046
|
+
if (!requestIdleCallback) {
|
|
2047
|
+
const g = shared.getGlobalThis();
|
|
2048
|
+
requestIdleCallback = g.requestIdleCallback || ((cb) => setTimeout(cb, 1));
|
|
2049
|
+
cancelIdleCallback = g.cancelIdleCallback || ((id) => clearTimeout(id));
|
|
2050
|
+
}
|
|
2051
|
+
}
|
|
2046
2052
|
const hydrateOnIdle = (timeout = 1e4) => (hydrate) => {
|
|
2053
|
+
ensureIdleCallbacks();
|
|
2047
2054
|
const id = requestIdleCallback(hydrate, { timeout });
|
|
2048
2055
|
return () => cancelIdleCallback(id);
|
|
2049
2056
|
};
|
|
@@ -2785,9 +2792,10 @@ function createSlots(slots, dynamicSlots) {
|
|
|
2785
2792
|
|
|
2786
2793
|
function renderSlot(slots, name, props = {}, fallback, noSlotted) {
|
|
2787
2794
|
let slot = slots[name];
|
|
2788
|
-
|
|
2795
|
+
const vaporSlot = slot && (slot.__vs || (slot.__vapor ? slot : null));
|
|
2796
|
+
if (vaporSlot) {
|
|
2789
2797
|
const ret = (openBlock(), createBlock(VaporSlot, props));
|
|
2790
|
-
ret.vs = { slot, fallback };
|
|
2798
|
+
ret.vs = { slot: vaporSlot, fallback };
|
|
2791
2799
|
return ret;
|
|
2792
2800
|
}
|
|
2793
2801
|
if (currentRenderingInstance && (currentRenderingInstance.ce || currentRenderingInstance.parent && isAsyncWrapper(currentRenderingInstance.parent) && currentRenderingInstance.parent.ce)) {
|
|
@@ -2844,10 +2852,10 @@ function ensureVaporSlotFallback(vnodes, fallback) {
|
|
|
2844
2852
|
}
|
|
2845
2853
|
}
|
|
2846
2854
|
|
|
2847
|
-
function toHandlers(obj, preserveCaseIfNecessary
|
|
2855
|
+
function toHandlers(obj, preserveCaseIfNecessary) {
|
|
2848
2856
|
const ret = {};
|
|
2849
2857
|
for (const key in obj) {
|
|
2850
|
-
ret[preserveCaseIfNecessary && /[A-Z]/.test(key) ? `on:${key}` : shared.toHandlerKey(key)] =
|
|
2858
|
+
ret[preserveCaseIfNecessary && /[A-Z]/.test(key) ? `on:${key}` : shared.toHandlerKey(key)] = obj[key];
|
|
2851
2859
|
}
|
|
2852
2860
|
return ret;
|
|
2853
2861
|
}
|
|
@@ -6381,7 +6389,7 @@ function hydrateSuspense(node, vnode, parentComponent, parentSuspense, namespace
|
|
|
6381
6389
|
parentSuspense,
|
|
6382
6390
|
parentComponent,
|
|
6383
6391
|
node.parentNode,
|
|
6384
|
-
//
|
|
6392
|
+
// oxlint-disable-next-line no-restricted-globals
|
|
6385
6393
|
document.createElement("div"),
|
|
6386
6394
|
null,
|
|
6387
6395
|
namespace,
|
|
@@ -6837,7 +6845,7 @@ const setCurrentInstance = (instance, scope = instance !== null ? instance.scope
|
|
|
6837
6845
|
simpleSetCurrentInstance(instance);
|
|
6838
6846
|
}
|
|
6839
6847
|
};
|
|
6840
|
-
const internalOptions = ["ce", "type"];
|
|
6848
|
+
const internalOptions = ["ce", "type", "uid"];
|
|
6841
6849
|
const useInstanceOption = (key, silent = false) => {
|
|
6842
6850
|
const instance = getCurrentGenericInstance();
|
|
6843
6851
|
if (!instance) {
|
|
@@ -6849,7 +6857,7 @@ const useInstanceOption = (key, silent = false) => {
|
|
|
6849
6857
|
return { hasInstance: true, value: instance[key] };
|
|
6850
6858
|
};
|
|
6851
6859
|
|
|
6852
|
-
const emptyAppContext = createAppContext();
|
|
6860
|
+
const emptyAppContext = /* @__PURE__ */ createAppContext();
|
|
6853
6861
|
let uid = 0;
|
|
6854
6862
|
function createComponentInstance(vnode, parent, suspense) {
|
|
6855
6863
|
const type = vnode.type;
|
|
@@ -7194,7 +7202,7 @@ function isMemoSame(cached, memo) {
|
|
|
7194
7202
|
return true;
|
|
7195
7203
|
}
|
|
7196
7204
|
|
|
7197
|
-
const version = "3.6.0-beta.
|
|
7205
|
+
const version = "3.6.0-beta.3";
|
|
7198
7206
|
const warn$1 = shared.NOOP;
|
|
7199
7207
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
7200
7208
|
const devtools = void 0;
|
|
@@ -7263,6 +7271,7 @@ exports.ErrorTypeStrings = ErrorTypeStrings;
|
|
|
7263
7271
|
exports.Fragment = Fragment;
|
|
7264
7272
|
exports.KeepAlive = KeepAlive;
|
|
7265
7273
|
exports.MoveType = MoveType;
|
|
7274
|
+
exports.NULL_DYNAMIC_COMPONENT = NULL_DYNAMIC_COMPONENT;
|
|
7266
7275
|
exports.Static = Static;
|
|
7267
7276
|
exports.Suspense = Suspense;
|
|
7268
7277
|
exports.Teleport = Teleport;
|
package/dist/runtime-core.d.ts
CHANGED
|
@@ -1199,7 +1199,7 @@ export declare const Teleport: {
|
|
|
1199
1199
|
* @private
|
|
1200
1200
|
*/
|
|
1201
1201
|
export declare function resolveComponent(name: string, maybeSelfReference?: boolean): ConcreteComponent | string;
|
|
1202
|
-
declare const NULL_DYNAMIC_COMPONENT: unique symbol;
|
|
1202
|
+
export declare const NULL_DYNAMIC_COMPONENT: unique symbol;
|
|
1203
1203
|
/**
|
|
1204
1204
|
* @private
|
|
1205
1205
|
*/
|
|
@@ -1782,7 +1782,7 @@ export declare function renderList<T>(source: T, renderItem: <K extends keyof T>
|
|
|
1782
1782
|
* For prefixing keys in v-on="obj" with "on"
|
|
1783
1783
|
* @private
|
|
1784
1784
|
*/
|
|
1785
|
-
export declare function toHandlers(obj: Record<string, any>, preserveCaseIfNecessary?: boolean
|
|
1785
|
+
export declare function toHandlers(obj: Record<string, any>, preserveCaseIfNecessary?: boolean): Record<string, any>;
|
|
1786
1786
|
|
|
1787
1787
|
/**
|
|
1788
1788
|
* Compiler runtime helper for rendering `<slot/>`
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/runtime-core v3.6.0-beta.
|
|
2
|
+
* @vue/runtime-core v3.6.0-beta.3
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -30,7 +30,6 @@ function warn$1(msg, ...args) {
|
|
|
30
30
|
instance,
|
|
31
31
|
11,
|
|
32
32
|
[
|
|
33
|
-
// eslint-disable-next-line no-restricted-syntax
|
|
34
33
|
msg + args.map((a) => {
|
|
35
34
|
var _a, _b;
|
|
36
35
|
return (_b = (_a = a.toString) == null ? void 0 : _a.call(a)) != null ? _b : JSON.stringify(a);
|
|
@@ -660,7 +659,6 @@ function setDevtoolsHook$1(hook, target) {
|
|
|
660
659
|
// (#4815)
|
|
661
660
|
typeof window !== "undefined" && // some envs mock window but not fully
|
|
662
661
|
window.HTMLElement && // also exclude jsdom
|
|
663
|
-
// eslint-disable-next-line no-restricted-syntax
|
|
664
662
|
!((_b = (_a = window.navigator) == null ? void 0 : _a.userAgent) == null ? void 0 : _b.includes("jsdom"))
|
|
665
663
|
) {
|
|
666
664
|
const replay = target.__VUE_DEVTOOLS_HOOK_REPLAY__ = target.__VUE_DEVTOOLS_HOOK_REPLAY__ || [];
|
|
@@ -2679,9 +2677,17 @@ function isMismatchAllowed(el, allowedType) {
|
|
|
2679
2677
|
}
|
|
2680
2678
|
}
|
|
2681
2679
|
|
|
2682
|
-
|
|
2683
|
-
|
|
2680
|
+
let requestIdleCallback;
|
|
2681
|
+
let cancelIdleCallback;
|
|
2682
|
+
function ensureIdleCallbacks() {
|
|
2683
|
+
if (!requestIdleCallback) {
|
|
2684
|
+
const g = getGlobalThis();
|
|
2685
|
+
requestIdleCallback = g.requestIdleCallback || ((cb) => setTimeout(cb, 1));
|
|
2686
|
+
cancelIdleCallback = g.cancelIdleCallback || ((id) => clearTimeout(id));
|
|
2687
|
+
}
|
|
2688
|
+
}
|
|
2684
2689
|
const hydrateOnIdle = (timeout = 1e4) => (hydrate) => {
|
|
2690
|
+
ensureIdleCallbacks();
|
|
2685
2691
|
const id = requestIdleCallback(hydrate, { timeout });
|
|
2686
2692
|
return () => cancelIdleCallback(id);
|
|
2687
2693
|
};
|
|
@@ -3469,9 +3475,10 @@ function createSlots(slots, dynamicSlots) {
|
|
|
3469
3475
|
|
|
3470
3476
|
function renderSlot(slots, name, props = {}, fallback, noSlotted) {
|
|
3471
3477
|
let slot = slots[name];
|
|
3472
|
-
|
|
3478
|
+
const vaporSlot = slot && (slot.__vs || (slot.__vapor ? slot : null));
|
|
3479
|
+
if (vaporSlot) {
|
|
3473
3480
|
const ret = (openBlock(), createBlock(VaporSlot, props));
|
|
3474
|
-
ret.vs = { slot, fallback };
|
|
3481
|
+
ret.vs = { slot: vaporSlot, fallback };
|
|
3475
3482
|
return ret;
|
|
3476
3483
|
}
|
|
3477
3484
|
if (currentRenderingInstance && (currentRenderingInstance.ce || currentRenderingInstance.parent && isAsyncWrapper(currentRenderingInstance.parent) && currentRenderingInstance.parent.ce)) {
|
|
@@ -3534,14 +3541,14 @@ function ensureVaporSlotFallback(vnodes, fallback) {
|
|
|
3534
3541
|
}
|
|
3535
3542
|
}
|
|
3536
3543
|
|
|
3537
|
-
function toHandlers(obj, preserveCaseIfNecessary
|
|
3544
|
+
function toHandlers(obj, preserveCaseIfNecessary) {
|
|
3538
3545
|
const ret = {};
|
|
3539
3546
|
if (!!(process.env.NODE_ENV !== "production") && !isObject(obj)) {
|
|
3540
3547
|
warn$1(`v-on with no argument expects an object value.`);
|
|
3541
3548
|
return ret;
|
|
3542
3549
|
}
|
|
3543
3550
|
for (const key in obj) {
|
|
3544
|
-
ret[preserveCaseIfNecessary && /[A-Z]/.test(key) ? `on:${key}` : toHandlerKey(key)] =
|
|
3551
|
+
ret[preserveCaseIfNecessary && /[A-Z]/.test(key) ? `on:${key}` : toHandlerKey(key)] = obj[key];
|
|
3545
3552
|
}
|
|
3546
3553
|
return ret;
|
|
3547
3554
|
}
|
|
@@ -7913,7 +7920,7 @@ function hydrateSuspense(node, vnode, parentComponent, parentSuspense, namespace
|
|
|
7913
7920
|
parentSuspense,
|
|
7914
7921
|
parentComponent,
|
|
7915
7922
|
node.parentNode,
|
|
7916
|
-
//
|
|
7923
|
+
// oxlint-disable-next-line no-restricted-globals
|
|
7917
7924
|
document.createElement("div"),
|
|
7918
7925
|
null,
|
|
7919
7926
|
namespace,
|
|
@@ -8409,7 +8416,7 @@ const setCurrentInstance = (instance, scope = instance !== null ? instance.scope
|
|
|
8409
8416
|
simpleSetCurrentInstance(instance);
|
|
8410
8417
|
}
|
|
8411
8418
|
};
|
|
8412
|
-
const internalOptions = ["ce", "type"];
|
|
8419
|
+
const internalOptions = ["ce", "type", "uid"];
|
|
8413
8420
|
const useInstanceOption = (key, silent = false) => {
|
|
8414
8421
|
const instance = getCurrentGenericInstance();
|
|
8415
8422
|
if (!instance) {
|
|
@@ -8429,7 +8436,7 @@ const useInstanceOption = (key, silent = false) => {
|
|
|
8429
8436
|
return { hasInstance: true, value: instance[key] };
|
|
8430
8437
|
};
|
|
8431
8438
|
|
|
8432
|
-
const emptyAppContext = createAppContext();
|
|
8439
|
+
const emptyAppContext = /* @__PURE__ */ createAppContext();
|
|
8433
8440
|
let uid = 0;
|
|
8434
8441
|
function nextUid() {
|
|
8435
8442
|
return uid++;
|
|
@@ -9078,7 +9085,7 @@ function isMemoSame(cached, memo) {
|
|
|
9078
9085
|
return true;
|
|
9079
9086
|
}
|
|
9080
9087
|
|
|
9081
|
-
const version = "3.6.0-beta.
|
|
9088
|
+
const version = "3.6.0-beta.3";
|
|
9082
9089
|
const warn = !!(process.env.NODE_ENV !== "production") ? warn$1 : NOOP;
|
|
9083
9090
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
9084
9091
|
const devtools = !!(process.env.NODE_ENV !== "production") || true ? devtools$1 : void 0;
|
|
@@ -9100,4 +9107,4 @@ const resolveFilter = null;
|
|
|
9100
9107
|
const compatUtils = null;
|
|
9101
9108
|
const DeprecationTypes = null;
|
|
9102
9109
|
|
|
9103
|
-
export { BaseTransition, BaseTransitionPropsValidators, Comment, DeprecationTypes, ErrorCodes, ErrorTypeStrings, Fragment, KeepAlive, MismatchTypes, MoveType, Static, Suspense, Teleport, Text, activate, assertNumber, baseEmit, baseNormalizePropsOptions, baseResolveTransitionHooks, callWithAsyncErrorHandling, callWithErrorHandling, checkTransitionMode, cloneVNode, compatUtils, computed, createAppAPI, createAsyncComponentContext, createBlock, createCanSetSetupRefChecker, createCommentVNode, createElementBlock, createBaseVNode as createElementVNode, createHydrationRenderer, createInternalObject, createPropsRestProxy, createRenderer, createSlots, createStaticVNode, createTextVNode, createVNode, currentInstance, deactivate, defineAsyncComponent, defineComponent, defineEmits, defineExpose, defineModel, defineOptions, defineProps, defineSlots, devtools, devtoolsComponentAdded, endMeasure, ensureVaporSlotFallback, expose, flushOnAppMount, getAttributeMismatch, getComponentName, getCurrentInstance, getFunctionalFallthrough, getInheritedScopeIds, getTransitionRawChildren, guardReactiveProps, h, handleError, hasInjectionContext, hydrateOnIdle, hydrateOnInteraction, hydrateOnMediaQuery, hydrateOnVisible, initCustomFormatter, initFeatureFlags, inject, isAsyncWrapper, isEmitListener, isKeepAlive, isMapEqual, isMemoSame, isMismatchAllowed, isRuntimeOnly, isSetEqual, isTeleportDeferred, isTeleportDisabled, isTemplateNode, isVNode, isValidHtmlOrSvgAttribute, leaveCbKey, markAsyncBoundary, matches, mergeDefaults, mergeModels, mergeProps, nextTick, nextUid, normalizeRef, onActivated, onBeforeMount, onBeforeUnmount, onBeforeUpdate, onDeactivated, onErrorCaptured, onMounted, onRenderTracked, onRenderTriggered, onServerPrefetch, onUnmounted, onUpdated, openBlock, performAsyncHydrate, performTransitionEnter, performTransitionLeave, popScopeId, popWarningContext, provide, pushScopeId, pushWarningContext, queueJob, queuePostFlushCb, registerHMR, registerRuntimeCompiler, renderList, renderSlot, resetShapeFlag, resolveComponent, resolveDirective, resolveDynamicComponent, resolveFilter, resolvePropValue, resolveTarget as resolveTeleportTarget, resolveTransitionHooks, setBlockTracking, setCurrentInstance, setDevtoolsHook, setRef, setTransitionHooks, simpleSetCurrentInstance, ssrContextKey, ssrUtils, startMeasure, toClassSet, toHandlers, toStyleMap, transformVNodeArgs, unregisterHMR, useAsyncComponentState, useAttrs, useId, useInstanceOption, useModel, useSSRContext, useSlots, useTemplateRef, useTransitionState, validateComponentName, validateProps, version, warn, warnExtraneousAttributes, warnPropMismatch, watch, watchEffect, watchPostEffect, watchSyncEffect, withAsyncContext, withCtx, withDefaults, withDirectives, withMemo, withScopeId };
|
|
9110
|
+
export { BaseTransition, BaseTransitionPropsValidators, Comment, DeprecationTypes, ErrorCodes, ErrorTypeStrings, Fragment, KeepAlive, MismatchTypes, MoveType, NULL_DYNAMIC_COMPONENT, Static, Suspense, Teleport, Text, activate, assertNumber, baseEmit, baseNormalizePropsOptions, baseResolveTransitionHooks, callWithAsyncErrorHandling, callWithErrorHandling, checkTransitionMode, cloneVNode, compatUtils, computed, createAppAPI, createAsyncComponentContext, createBlock, createCanSetSetupRefChecker, createCommentVNode, createElementBlock, createBaseVNode as createElementVNode, createHydrationRenderer, createInternalObject, createPropsRestProxy, createRenderer, createSlots, createStaticVNode, createTextVNode, createVNode, currentInstance, deactivate, defineAsyncComponent, defineComponent, defineEmits, defineExpose, defineModel, defineOptions, defineProps, defineSlots, devtools, devtoolsComponentAdded, endMeasure, ensureVaporSlotFallback, expose, flushOnAppMount, getAttributeMismatch, getComponentName, getCurrentInstance, getFunctionalFallthrough, getInheritedScopeIds, getTransitionRawChildren, guardReactiveProps, h, handleError, hasInjectionContext, hydrateOnIdle, hydrateOnInteraction, hydrateOnMediaQuery, hydrateOnVisible, initCustomFormatter, initFeatureFlags, inject, isAsyncWrapper, isEmitListener, isKeepAlive, isMapEqual, isMemoSame, isMismatchAllowed, isRuntimeOnly, isSetEqual, isTeleportDeferred, isTeleportDisabled, isTemplateNode, isVNode, isValidHtmlOrSvgAttribute, leaveCbKey, markAsyncBoundary, matches, mergeDefaults, mergeModels, mergeProps, nextTick, nextUid, normalizeRef, onActivated, onBeforeMount, onBeforeUnmount, onBeforeUpdate, onDeactivated, onErrorCaptured, onMounted, onRenderTracked, onRenderTriggered, onServerPrefetch, onUnmounted, onUpdated, openBlock, performAsyncHydrate, performTransitionEnter, performTransitionLeave, popScopeId, popWarningContext, provide, pushScopeId, pushWarningContext, queueJob, queuePostFlushCb, registerHMR, registerRuntimeCompiler, renderList, renderSlot, resetShapeFlag, resolveComponent, resolveDirective, resolveDynamicComponent, resolveFilter, resolvePropValue, resolveTarget as resolveTeleportTarget, resolveTransitionHooks, setBlockTracking, setCurrentInstance, setDevtoolsHook, setRef, setTransitionHooks, simpleSetCurrentInstance, ssrContextKey, ssrUtils, startMeasure, toClassSet, toHandlers, toStyleMap, transformVNodeArgs, unregisterHMR, useAsyncComponentState, useAttrs, useId, useInstanceOption, useModel, useSSRContext, useSlots, useTemplateRef, useTransitionState, validateComponentName, validateProps, version, warn, warnExtraneousAttributes, warnPropMismatch, watch, watchEffect, watchPostEffect, watchSyncEffect, withAsyncContext, withCtx, withDefaults, withDirectives, withMemo, withScopeId };
|
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.3",
|
|
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.3",
|
|
50
|
+
"@vue/reactivity": "3.6.0-beta.3"
|
|
51
51
|
}
|
|
52
52
|
}
|