@vue/compat 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/vue.cjs.js +23 -16
- package/dist/vue.cjs.prod.js +23 -15
- package/dist/vue.esm-browser.js +23 -15
- package/dist/vue.esm-browser.prod.js +5 -5
- package/dist/vue.esm-bundler.js +23 -15
- package/dist/vue.global.js +22 -14
- package/dist/vue.global.prod.js +5 -5
- package/dist/vue.runtime.esm-browser.js +23 -15
- package/dist/vue.runtime.esm-browser.prod.js +5 -5
- package/dist/vue.runtime.esm-bundler.js +23 -15
- package/dist/vue.runtime.global.js +22 -14
- package/dist/vue.runtime.global.prod.js +5 -5
- package/package.json +2 -2
package/dist/vue.cjs.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compat v3.6.0-beta.
|
|
2
|
+
* @vue/compat v3.6.0-beta.3
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -2504,7 +2504,6 @@ function warn$1(msg, ...args) {
|
|
|
2504
2504
|
instance,
|
|
2505
2505
|
11,
|
|
2506
2506
|
[
|
|
2507
|
-
// eslint-disable-next-line no-restricted-syntax
|
|
2508
2507
|
msg + args.map((a) => {
|
|
2509
2508
|
var _a, _b;
|
|
2510
2509
|
return (_b = (_a = a.toString) == null ? void 0 : _a.call(a)) != null ? _b : JSON.stringify(a);
|
|
@@ -3129,7 +3128,6 @@ function setDevtoolsHook$1(hook, target) {
|
|
|
3129
3128
|
// (#4815)
|
|
3130
3129
|
typeof window !== "undefined" && // some envs mock window but not fully
|
|
3131
3130
|
window.HTMLElement && // also exclude jsdom
|
|
3132
|
-
// eslint-disable-next-line no-restricted-syntax
|
|
3133
3131
|
!((_b = (_a = window.navigator) == null ? void 0 : _a.userAgent) == null ? void 0 : _b.includes("jsdom"))
|
|
3134
3132
|
) {
|
|
3135
3133
|
const replay = target.__VUE_DEVTOOLS_HOOK_REPLAY__ = target.__VUE_DEVTOOLS_HOOK_REPLAY__ || [];
|
|
@@ -5596,9 +5594,17 @@ function isMismatchAllowed(el, allowedType) {
|
|
|
5596
5594
|
}
|
|
5597
5595
|
}
|
|
5598
5596
|
|
|
5599
|
-
|
|
5600
|
-
|
|
5597
|
+
let requestIdleCallback;
|
|
5598
|
+
let cancelIdleCallback;
|
|
5599
|
+
function ensureIdleCallbacks() {
|
|
5600
|
+
if (!requestIdleCallback) {
|
|
5601
|
+
const g = getGlobalThis();
|
|
5602
|
+
requestIdleCallback = g.requestIdleCallback || ((cb) => setTimeout(cb, 1));
|
|
5603
|
+
cancelIdleCallback = g.cancelIdleCallback || ((id) => clearTimeout(id));
|
|
5604
|
+
}
|
|
5605
|
+
}
|
|
5601
5606
|
const hydrateOnIdle = (timeout = 1e4) => (hydrate) => {
|
|
5607
|
+
ensureIdleCallbacks();
|
|
5602
5608
|
const id = requestIdleCallback(hydrate, { timeout });
|
|
5603
5609
|
return () => cancelIdleCallback(id);
|
|
5604
5610
|
};
|
|
@@ -6674,9 +6680,10 @@ function createSlots(slots, dynamicSlots) {
|
|
|
6674
6680
|
|
|
6675
6681
|
function renderSlot(slots, name, props = {}, fallback, noSlotted) {
|
|
6676
6682
|
let slot = slots[name];
|
|
6677
|
-
|
|
6683
|
+
const vaporSlot = slot && (slot.__vs || (slot.__vapor ? slot : null));
|
|
6684
|
+
if (vaporSlot) {
|
|
6678
6685
|
const ret = (openBlock(), createBlock(VaporSlot, props));
|
|
6679
|
-
ret.vs = { slot, fallback };
|
|
6686
|
+
ret.vs = { slot: vaporSlot, fallback };
|
|
6680
6687
|
return ret;
|
|
6681
6688
|
}
|
|
6682
6689
|
if (currentRenderingInstance && (currentRenderingInstance.ce || currentRenderingInstance.parent && isAsyncWrapper(currentRenderingInstance.parent) && currentRenderingInstance.parent.ce)) {
|
|
@@ -6739,14 +6746,14 @@ function ensureVaporSlotFallback(vnodes, fallback) {
|
|
|
6739
6746
|
}
|
|
6740
6747
|
}
|
|
6741
6748
|
|
|
6742
|
-
function toHandlers(obj, preserveCaseIfNecessary
|
|
6749
|
+
function toHandlers(obj, preserveCaseIfNecessary) {
|
|
6743
6750
|
const ret = {};
|
|
6744
6751
|
if (!isObject(obj)) {
|
|
6745
6752
|
warn$1(`v-on with no argument expects an object value.`);
|
|
6746
6753
|
return ret;
|
|
6747
6754
|
}
|
|
6748
6755
|
for (const key in obj) {
|
|
6749
|
-
ret[preserveCaseIfNecessary && /[A-Z]/.test(key) ? `on:${key}` : toHandlerKey(key)] =
|
|
6756
|
+
ret[preserveCaseIfNecessary && /[A-Z]/.test(key) ? `on:${key}` : toHandlerKey(key)] = obj[key];
|
|
6750
6757
|
}
|
|
6751
6758
|
return ret;
|
|
6752
6759
|
}
|
|
@@ -7887,7 +7894,7 @@ function createCompatVue$1(createApp, createSingletonApp) {
|
|
|
7887
7894
|
return vm;
|
|
7888
7895
|
}
|
|
7889
7896
|
}
|
|
7890
|
-
Vue.version = `2.6.14-compat:${"3.6.0-beta.
|
|
7897
|
+
Vue.version = `2.6.14-compat:${"3.6.0-beta.3"}`;
|
|
7891
7898
|
Vue.config = singletonApp.config;
|
|
7892
7899
|
Vue.use = (plugin, ...options) => {
|
|
7893
7900
|
if (plugin && isFunction(plugin.install)) {
|
|
@@ -12017,7 +12024,7 @@ function hydrateSuspense(node, vnode, parentComponent, parentSuspense, namespace
|
|
|
12017
12024
|
parentSuspense,
|
|
12018
12025
|
parentComponent,
|
|
12019
12026
|
node.parentNode,
|
|
12020
|
-
//
|
|
12027
|
+
// oxlint-disable-next-line no-restricted-globals
|
|
12021
12028
|
document.createElement("div"),
|
|
12022
12029
|
null,
|
|
12023
12030
|
namespace,
|
|
@@ -12580,7 +12587,7 @@ const setCurrentInstance = (instance, scope = instance !== null ? instance.scope
|
|
|
12580
12587
|
simpleSetCurrentInstance(instance);
|
|
12581
12588
|
}
|
|
12582
12589
|
};
|
|
12583
|
-
const internalOptions = ["ce", "type"];
|
|
12590
|
+
const internalOptions = ["ce", "type", "uid"];
|
|
12584
12591
|
const useInstanceOption = (key, silent = false) => {
|
|
12585
12592
|
const instance = getCurrentGenericInstance();
|
|
12586
12593
|
if (!instance) {
|
|
@@ -12600,7 +12607,7 @@ const useInstanceOption = (key, silent = false) => {
|
|
|
12600
12607
|
return { hasInstance: true, value: instance[key] };
|
|
12601
12608
|
};
|
|
12602
12609
|
|
|
12603
|
-
const emptyAppContext = createAppContext();
|
|
12610
|
+
const emptyAppContext = /* @__PURE__ */ createAppContext();
|
|
12604
12611
|
let uid = 0;
|
|
12605
12612
|
function createComponentInstance(vnode, parent, suspense) {
|
|
12606
12613
|
const type = vnode.type;
|
|
@@ -13244,7 +13251,7 @@ function isMemoSame(cached, memo) {
|
|
|
13244
13251
|
return true;
|
|
13245
13252
|
}
|
|
13246
13253
|
|
|
13247
|
-
const version = "3.6.0-beta.
|
|
13254
|
+
const version = "3.6.0-beta.3";
|
|
13248
13255
|
const warn = warn$1 ;
|
|
13249
13256
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
13250
13257
|
const devtools = devtools$1 ;
|
|
@@ -15333,6 +15340,7 @@ var runtimeDom = /*#__PURE__*/Object.freeze({
|
|
|
15333
15340
|
Fragment: Fragment,
|
|
15334
15341
|
KeepAlive: KeepAlive,
|
|
15335
15342
|
MoveType: MoveType,
|
|
15343
|
+
NULL_DYNAMIC_COMPONENT: NULL_DYNAMIC_COMPONENT,
|
|
15336
15344
|
ReactiveEffect: ReactiveEffect,
|
|
15337
15345
|
Static: Static,
|
|
15338
15346
|
Suspense: Suspense,
|
|
@@ -16821,8 +16829,7 @@ function walkIdentifiers(root, onIdentifier, includeAll = false, parentStack = [
|
|
|
16821
16829
|
if (includeAll || isRefed && !isLocal) {
|
|
16822
16830
|
onIdentifier(node, parent, parentStack, isRefed, isLocal);
|
|
16823
16831
|
}
|
|
16824
|
-
} else if (node.type === "ObjectProperty" &&
|
|
16825
|
-
(parent == null ? void 0 : parent.type) === "ObjectPattern") {
|
|
16832
|
+
} else if (node.type === "ObjectProperty" && (parent == null ? void 0 : parent.type) === "ObjectPattern") {
|
|
16826
16833
|
node.inPattern = true;
|
|
16827
16834
|
} else if (isFunctionType(node)) {
|
|
16828
16835
|
if (node.scopeIds) {
|
package/dist/vue.cjs.prod.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compat v3.6.0-beta.
|
|
2
|
+
* @vue/compat v3.6.0-beta.3
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -2217,7 +2217,6 @@ function warn$2(msg, ...args) {
|
|
|
2217
2217
|
instance,
|
|
2218
2218
|
11,
|
|
2219
2219
|
[
|
|
2220
|
-
// eslint-disable-next-line no-restricted-syntax
|
|
2221
2220
|
msg + args.map((a) => {
|
|
2222
2221
|
var _a, _b;
|
|
2223
2222
|
return (_b = (_a = a.toString) == null ? void 0 : _a.call(a)) != null ? _b : JSON.stringify(a);
|
|
@@ -4435,9 +4434,17 @@ function isMismatchAllowed(el, allowedType) {
|
|
|
4435
4434
|
}
|
|
4436
4435
|
}
|
|
4437
4436
|
|
|
4438
|
-
|
|
4439
|
-
|
|
4437
|
+
let requestIdleCallback;
|
|
4438
|
+
let cancelIdleCallback;
|
|
4439
|
+
function ensureIdleCallbacks() {
|
|
4440
|
+
if (!requestIdleCallback) {
|
|
4441
|
+
const g = getGlobalThis();
|
|
4442
|
+
requestIdleCallback = g.requestIdleCallback || ((cb) => setTimeout(cb, 1));
|
|
4443
|
+
cancelIdleCallback = g.cancelIdleCallback || ((id) => clearTimeout(id));
|
|
4444
|
+
}
|
|
4445
|
+
}
|
|
4440
4446
|
const hydrateOnIdle = (timeout = 1e4) => (hydrate) => {
|
|
4447
|
+
ensureIdleCallbacks();
|
|
4441
4448
|
const id = requestIdleCallback(hydrate, { timeout });
|
|
4442
4449
|
return () => cancelIdleCallback(id);
|
|
4443
4450
|
};
|
|
@@ -5470,9 +5477,10 @@ function createSlots(slots, dynamicSlots) {
|
|
|
5470
5477
|
|
|
5471
5478
|
function renderSlot(slots, name, props = {}, fallback, noSlotted) {
|
|
5472
5479
|
let slot = slots[name];
|
|
5473
|
-
|
|
5480
|
+
const vaporSlot = slot && (slot.__vs || (slot.__vapor ? slot : null));
|
|
5481
|
+
if (vaporSlot) {
|
|
5474
5482
|
const ret = (openBlock(), createBlock(VaporSlot, props));
|
|
5475
|
-
ret.vs = { slot, fallback };
|
|
5483
|
+
ret.vs = { slot: vaporSlot, fallback };
|
|
5476
5484
|
return ret;
|
|
5477
5485
|
}
|
|
5478
5486
|
if (currentRenderingInstance && (currentRenderingInstance.ce || currentRenderingInstance.parent && isAsyncWrapper(currentRenderingInstance.parent) && currentRenderingInstance.parent.ce)) {
|
|
@@ -5529,10 +5537,10 @@ function ensureVaporSlotFallback(vnodes, fallback) {
|
|
|
5529
5537
|
}
|
|
5530
5538
|
}
|
|
5531
5539
|
|
|
5532
|
-
function toHandlers(obj, preserveCaseIfNecessary
|
|
5540
|
+
function toHandlers(obj, preserveCaseIfNecessary) {
|
|
5533
5541
|
const ret = {};
|
|
5534
5542
|
for (const key in obj) {
|
|
5535
|
-
ret[preserveCaseIfNecessary && /[A-Z]/.test(key) ? `on:${key}` : toHandlerKey(key)] =
|
|
5543
|
+
ret[preserveCaseIfNecessary && /[A-Z]/.test(key) ? `on:${key}` : toHandlerKey(key)] = obj[key];
|
|
5536
5544
|
}
|
|
5537
5545
|
return ret;
|
|
5538
5546
|
}
|
|
@@ -6424,7 +6432,7 @@ function createCompatVue$1(createApp, createSingletonApp) {
|
|
|
6424
6432
|
return vm;
|
|
6425
6433
|
}
|
|
6426
6434
|
}
|
|
6427
|
-
Vue.version = `2.6.14-compat:${"3.6.0-beta.
|
|
6435
|
+
Vue.version = `2.6.14-compat:${"3.6.0-beta.3"}`;
|
|
6428
6436
|
Vue.config = singletonApp.config;
|
|
6429
6437
|
Vue.use = (plugin, ...options) => {
|
|
6430
6438
|
if (plugin && isFunction(plugin.install)) {
|
|
@@ -9918,7 +9926,7 @@ function hydrateSuspense(node, vnode, parentComponent, parentSuspense, namespace
|
|
|
9918
9926
|
parentSuspense,
|
|
9919
9927
|
parentComponent,
|
|
9920
9928
|
node.parentNode,
|
|
9921
|
-
//
|
|
9929
|
+
// oxlint-disable-next-line no-restricted-globals
|
|
9922
9930
|
document.createElement("div"),
|
|
9923
9931
|
null,
|
|
9924
9932
|
namespace,
|
|
@@ -10441,7 +10449,7 @@ const setCurrentInstance = (instance, scope = instance !== null ? instance.scope
|
|
|
10441
10449
|
simpleSetCurrentInstance(instance);
|
|
10442
10450
|
}
|
|
10443
10451
|
};
|
|
10444
|
-
const internalOptions = ["ce", "type"];
|
|
10452
|
+
const internalOptions = ["ce", "type", "uid"];
|
|
10445
10453
|
const useInstanceOption = (key, silent = false) => {
|
|
10446
10454
|
const instance = getCurrentGenericInstance();
|
|
10447
10455
|
if (!instance) {
|
|
@@ -10453,7 +10461,7 @@ const useInstanceOption = (key, silent = false) => {
|
|
|
10453
10461
|
return { hasInstance: true, value: instance[key] };
|
|
10454
10462
|
};
|
|
10455
10463
|
|
|
10456
|
-
const emptyAppContext = createAppContext();
|
|
10464
|
+
const emptyAppContext = /* @__PURE__ */ createAppContext();
|
|
10457
10465
|
let uid = 0;
|
|
10458
10466
|
function createComponentInstance(vnode, parent, suspense) {
|
|
10459
10467
|
const type = vnode.type;
|
|
@@ -10807,7 +10815,7 @@ function isMemoSame(cached, memo) {
|
|
|
10807
10815
|
return true;
|
|
10808
10816
|
}
|
|
10809
10817
|
|
|
10810
|
-
const version = "3.6.0-beta.
|
|
10818
|
+
const version = "3.6.0-beta.3";
|
|
10811
10819
|
const warn$1 = NOOP;
|
|
10812
10820
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
10813
10821
|
const devtools = void 0;
|
|
@@ -12722,6 +12730,7 @@ var runtimeDom = /*#__PURE__*/Object.freeze({
|
|
|
12722
12730
|
Fragment: Fragment,
|
|
12723
12731
|
KeepAlive: KeepAlive,
|
|
12724
12732
|
MoveType: MoveType,
|
|
12733
|
+
NULL_DYNAMIC_COMPONENT: NULL_DYNAMIC_COMPONENT,
|
|
12725
12734
|
ReactiveEffect: ReactiveEffect,
|
|
12726
12735
|
Static: Static,
|
|
12727
12736
|
Suspense: Suspense,
|
|
@@ -14160,8 +14169,7 @@ function walkIdentifiers(root, onIdentifier, includeAll = false, parentStack = [
|
|
|
14160
14169
|
if (includeAll || isRefed && !isLocal) {
|
|
14161
14170
|
onIdentifier(node, parent, parentStack, isRefed, isLocal);
|
|
14162
14171
|
}
|
|
14163
|
-
} else if (node.type === "ObjectProperty" &&
|
|
14164
|
-
(parent == null ? void 0 : parent.type) === "ObjectPattern") {
|
|
14172
|
+
} else if (node.type === "ObjectProperty" && (parent == null ? void 0 : parent.type) === "ObjectPattern") {
|
|
14165
14173
|
node.inPattern = true;
|
|
14166
14174
|
} else if (isFunctionType(node)) {
|
|
14167
14175
|
if (node.scopeIds) {
|
package/dist/vue.esm-browser.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compat v3.6.0-beta.
|
|
2
|
+
* @vue/compat v3.6.0-beta.3
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -2451,7 +2451,6 @@ function warn$1(msg, ...args) {
|
|
|
2451
2451
|
instance,
|
|
2452
2452
|
11,
|
|
2453
2453
|
[
|
|
2454
|
-
// eslint-disable-next-line no-restricted-syntax
|
|
2455
2454
|
msg + args.map((a) => {
|
|
2456
2455
|
var _a, _b;
|
|
2457
2456
|
return (_b = (_a = a.toString) == null ? void 0 : _a.call(a)) != null ? _b : JSON.stringify(a);
|
|
@@ -3076,7 +3075,6 @@ function setDevtoolsHook$1(hook, target) {
|
|
|
3076
3075
|
// (#4815)
|
|
3077
3076
|
typeof window !== "undefined" && // some envs mock window but not fully
|
|
3078
3077
|
window.HTMLElement && // also exclude jsdom
|
|
3079
|
-
// eslint-disable-next-line no-restricted-syntax
|
|
3080
3078
|
!((_b = (_a = window.navigator) == null ? void 0 : _a.userAgent) == null ? void 0 : _b.includes("jsdom"))
|
|
3081
3079
|
) {
|
|
3082
3080
|
const replay = target.__VUE_DEVTOOLS_HOOK_REPLAY__ = target.__VUE_DEVTOOLS_HOOK_REPLAY__ || [];
|
|
@@ -5543,9 +5541,17 @@ function isMismatchAllowed(el, allowedType) {
|
|
|
5543
5541
|
}
|
|
5544
5542
|
}
|
|
5545
5543
|
|
|
5546
|
-
|
|
5547
|
-
|
|
5544
|
+
let requestIdleCallback;
|
|
5545
|
+
let cancelIdleCallback;
|
|
5546
|
+
function ensureIdleCallbacks() {
|
|
5547
|
+
if (!requestIdleCallback) {
|
|
5548
|
+
const g = getGlobalThis();
|
|
5549
|
+
requestIdleCallback = g.requestIdleCallback || ((cb) => setTimeout(cb, 1));
|
|
5550
|
+
cancelIdleCallback = g.cancelIdleCallback || ((id) => clearTimeout(id));
|
|
5551
|
+
}
|
|
5552
|
+
}
|
|
5548
5553
|
const hydrateOnIdle = (timeout = 1e4) => (hydrate) => {
|
|
5554
|
+
ensureIdleCallbacks();
|
|
5549
5555
|
const id = requestIdleCallback(hydrate, { timeout });
|
|
5550
5556
|
return () => cancelIdleCallback(id);
|
|
5551
5557
|
};
|
|
@@ -6624,9 +6630,10 @@ function createSlots(slots, dynamicSlots) {
|
|
|
6624
6630
|
|
|
6625
6631
|
function renderSlot(slots, name, props = {}, fallback, noSlotted) {
|
|
6626
6632
|
let slot = slots[name];
|
|
6627
|
-
|
|
6633
|
+
const vaporSlot = slot && (slot.__vs || (slot.__vapor ? slot : null));
|
|
6634
|
+
if (vaporSlot) {
|
|
6628
6635
|
const ret = (openBlock(), createBlock(VaporSlot, props));
|
|
6629
|
-
ret.vs = { slot, fallback };
|
|
6636
|
+
ret.vs = { slot: vaporSlot, fallback };
|
|
6630
6637
|
return ret;
|
|
6631
6638
|
}
|
|
6632
6639
|
if (currentRenderingInstance && (currentRenderingInstance.ce || currentRenderingInstance.parent && isAsyncWrapper(currentRenderingInstance.parent) && currentRenderingInstance.parent.ce)) {
|
|
@@ -6689,14 +6696,14 @@ function ensureVaporSlotFallback(vnodes, fallback) {
|
|
|
6689
6696
|
}
|
|
6690
6697
|
}
|
|
6691
6698
|
|
|
6692
|
-
function toHandlers(obj, preserveCaseIfNecessary
|
|
6699
|
+
function toHandlers(obj, preserveCaseIfNecessary) {
|
|
6693
6700
|
const ret = {};
|
|
6694
6701
|
if (!isObject(obj)) {
|
|
6695
6702
|
warn$1(`v-on with no argument expects an object value.`);
|
|
6696
6703
|
return ret;
|
|
6697
6704
|
}
|
|
6698
6705
|
for (const key in obj) {
|
|
6699
|
-
ret[preserveCaseIfNecessary && /[A-Z]/.test(key) ? `on:${key}` : toHandlerKey(key)] =
|
|
6706
|
+
ret[preserveCaseIfNecessary && /[A-Z]/.test(key) ? `on:${key}` : toHandlerKey(key)] = obj[key];
|
|
6700
6707
|
}
|
|
6701
6708
|
return ret;
|
|
6702
6709
|
}
|
|
@@ -7837,7 +7844,7 @@ function createCompatVue$1(createApp, createSingletonApp) {
|
|
|
7837
7844
|
return vm;
|
|
7838
7845
|
}
|
|
7839
7846
|
}
|
|
7840
|
-
Vue.version = `2.6.14-compat:${"3.6.0-beta.
|
|
7847
|
+
Vue.version = `2.6.14-compat:${"3.6.0-beta.3"}`;
|
|
7841
7848
|
Vue.config = singletonApp.config;
|
|
7842
7849
|
Vue.use = (plugin, ...options) => {
|
|
7843
7850
|
if (plugin && isFunction(plugin.install)) {
|
|
@@ -11967,7 +11974,7 @@ function hydrateSuspense(node, vnode, parentComponent, parentSuspense, namespace
|
|
|
11967
11974
|
parentSuspense,
|
|
11968
11975
|
parentComponent,
|
|
11969
11976
|
node.parentNode,
|
|
11970
|
-
//
|
|
11977
|
+
// oxlint-disable-next-line no-restricted-globals
|
|
11971
11978
|
document.createElement("div"),
|
|
11972
11979
|
null,
|
|
11973
11980
|
namespace,
|
|
@@ -12530,7 +12537,7 @@ const setCurrentInstance = (instance, scope = instance !== null ? instance.scope
|
|
|
12530
12537
|
simpleSetCurrentInstance(instance);
|
|
12531
12538
|
}
|
|
12532
12539
|
};
|
|
12533
|
-
const internalOptions = ["ce", "type"];
|
|
12540
|
+
const internalOptions = ["ce", "type", "uid"];
|
|
12534
12541
|
const useInstanceOption = (key, silent = false) => {
|
|
12535
12542
|
const instance = getCurrentGenericInstance();
|
|
12536
12543
|
if (!instance) {
|
|
@@ -12550,7 +12557,7 @@ const useInstanceOption = (key, silent = false) => {
|
|
|
12550
12557
|
return { hasInstance: true, value: instance[key] };
|
|
12551
12558
|
};
|
|
12552
12559
|
|
|
12553
|
-
const emptyAppContext = createAppContext();
|
|
12560
|
+
const emptyAppContext = /* @__PURE__ */ createAppContext();
|
|
12554
12561
|
let uid = 0;
|
|
12555
12562
|
function createComponentInstance(vnode, parent, suspense) {
|
|
12556
12563
|
const type = vnode.type;
|
|
@@ -13194,7 +13201,7 @@ function isMemoSame(cached, memo) {
|
|
|
13194
13201
|
return true;
|
|
13195
13202
|
}
|
|
13196
13203
|
|
|
13197
|
-
const version = "3.6.0-beta.
|
|
13204
|
+
const version = "3.6.0-beta.3";
|
|
13198
13205
|
const warn = warn$1 ;
|
|
13199
13206
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
13200
13207
|
const devtools = devtools$1 ;
|
|
@@ -15363,6 +15370,7 @@ var runtimeDom = /*#__PURE__*/Object.freeze({
|
|
|
15363
15370
|
Fragment: Fragment,
|
|
15364
15371
|
KeepAlive: KeepAlive,
|
|
15365
15372
|
MoveType: MoveType,
|
|
15373
|
+
NULL_DYNAMIC_COMPONENT: NULL_DYNAMIC_COMPONENT,
|
|
15366
15374
|
ReactiveEffect: ReactiveEffect,
|
|
15367
15375
|
Static: Static,
|
|
15368
15376
|
Suspense: Suspense,
|
|
@@ -21590,4 +21598,4 @@ Vue.compile = compileToFunction;
|
|
|
21590
21598
|
|
|
21591
21599
|
const configureCompat = Vue.configureCompat;
|
|
21592
21600
|
|
|
21593
|
-
export { BaseTransition, BaseTransitionPropsValidators, Comment, DeprecationTypes, EffectScope, ErrorCodes, ErrorTypeStrings, Fragment, KeepAlive, MoveType, ReactiveEffect, Static, Suspense, Teleport, Text, TrackOpTypes, Transition, TransitionGroup, TriggerOpTypes, VueElement, VueElementBase, assertNumber, callWithAsyncErrorHandling, callWithErrorHandling, camelize, capitalize, cloneVNode, compatUtils, computed, configureCompat, createApp, createBlock, createCommentVNode, createElementBlock, createBaseVNode as createElementVNode, createHydrationRenderer, createPropsRestProxy, createRenderer, createSSRApp, createSlots, createStaticVNode, createTextVNode, createVNode, customRef, Vue as default, defineAsyncComponent, defineComponent, defineCustomElement, defineEmits, defineExpose, defineModel, defineOptions, defineProps, defineSSRCustomElement, defineSlots, devtools, effect, effectScope, getCurrentInstance, getCurrentScope, getCurrentWatcher, getTransitionRawChildren, guardReactiveProps, h, handleError, hasInjectionContext, hydrate, hydrateOnIdle, hydrateOnInteraction, hydrateOnMediaQuery, hydrateOnVisible, initCustomFormatter, initDirectivesForSSR, inject, isMemoSame, isProxy, isReactive, isReadonly, isRef, isRuntimeOnly, isShallow, isVNode, markRaw, mergeDefaults, mergeModels, mergeProps, nextTick, nodeOps, normalizeClass, normalizeProps, normalizeStyle, onActivated, onBeforeMount, onBeforeUnmount, onBeforeUpdate, onDeactivated, onErrorCaptured, onMounted, onRenderTracked, onRenderTriggered, onScopeDispose, onServerPrefetch, onUnmounted, onUpdated, onWatcherCleanup, openBlock, patchProp, popScopeId, provide, proxyRefs, pushScopeId, queuePostFlushCb, reactive, readonly, ref, registerRuntimeCompiler, render, renderList, renderSlot, resolveComponent, resolveDirective, resolveDynamicComponent, resolveFilter, resolveTransitionHooks, setBlockTracking, setDevtoolsHook, setTransitionHooks, shallowReactive, shallowReadonly, shallowRef, ssrContextKey, ssrUtils, stop, toDisplayString, toHandlerKey, toHandlers, toRaw, toRef, toRefs, toValue, transformVNodeArgs, triggerRef, unref, useAttrs, useCssModule, useCssVars, useHost, useId, useInstanceOption, useModel, useSSRContext, useShadowRoot, useSlots, useTemplateRef, useTransitionState, vModelCheckbox, vModelDynamic, vModelRadio, vModelSelect, vModelText, vShow, version, warn, watch, watchEffect, watchPostEffect, watchSyncEffect, withAsyncContext, withCtx, withDefaults, withDirectives, withKeys, withMemo, withModifiers, withScopeId };
|
|
21601
|
+
export { BaseTransition, BaseTransitionPropsValidators, Comment, DeprecationTypes, EffectScope, ErrorCodes, ErrorTypeStrings, Fragment, KeepAlive, MoveType, NULL_DYNAMIC_COMPONENT, ReactiveEffect, Static, Suspense, Teleport, Text, TrackOpTypes, Transition, TransitionGroup, TriggerOpTypes, VueElement, VueElementBase, assertNumber, callWithAsyncErrorHandling, callWithErrorHandling, camelize, capitalize, cloneVNode, compatUtils, computed, configureCompat, createApp, createBlock, createCommentVNode, createElementBlock, createBaseVNode as createElementVNode, createHydrationRenderer, createPropsRestProxy, createRenderer, createSSRApp, createSlots, createStaticVNode, createTextVNode, createVNode, customRef, Vue as default, defineAsyncComponent, defineComponent, defineCustomElement, defineEmits, defineExpose, defineModel, defineOptions, defineProps, defineSSRCustomElement, defineSlots, devtools, effect, effectScope, getCurrentInstance, getCurrentScope, getCurrentWatcher, getTransitionRawChildren, guardReactiveProps, h, handleError, hasInjectionContext, hydrate, hydrateOnIdle, hydrateOnInteraction, hydrateOnMediaQuery, hydrateOnVisible, initCustomFormatter, initDirectivesForSSR, inject, isMemoSame, isProxy, isReactive, isReadonly, isRef, isRuntimeOnly, isShallow, isVNode, markRaw, mergeDefaults, mergeModels, mergeProps, nextTick, nodeOps, normalizeClass, normalizeProps, normalizeStyle, onActivated, onBeforeMount, onBeforeUnmount, onBeforeUpdate, onDeactivated, onErrorCaptured, onMounted, onRenderTracked, onRenderTriggered, onScopeDispose, onServerPrefetch, onUnmounted, onUpdated, onWatcherCleanup, openBlock, patchProp, popScopeId, provide, proxyRefs, pushScopeId, queuePostFlushCb, reactive, readonly, ref, registerRuntimeCompiler, render, renderList, renderSlot, resolveComponent, resolveDirective, resolveDynamicComponent, resolveFilter, resolveTransitionHooks, setBlockTracking, setDevtoolsHook, setTransitionHooks, shallowReactive, shallowReadonly, shallowRef, ssrContextKey, ssrUtils, stop, toDisplayString, toHandlerKey, toHandlers, toRaw, toRef, toRefs, toValue, transformVNodeArgs, triggerRef, unref, useAttrs, useCssModule, useCssVars, useHost, useId, useInstanceOption, useModel, useSSRContext, useShadowRoot, useSlots, useTemplateRef, useTransitionState, vModelCheckbox, vModelDynamic, vModelRadio, vModelSelect, vModelText, vShow, version, warn, watch, watchEffect, watchPostEffect, watchSyncEffect, withAsyncContext, withCtx, withDefaults, withDirectives, withKeys, withMemo, withModifiers, withScopeId };
|