Skip to content

Commit 7f368e5

Browse files
committed
update vue libs
1 parent b4a5a20 commit 7f368e5

File tree

2 files changed

+24
-18
lines changed

2 files changed

+24
-18
lines changed

CreatorKit/wwwroot/lib/mjs/vue.min.mjs

Lines changed: 6 additions & 6 deletions
Large diffs are not rendered by default.

CreatorKit/wwwroot/lib/mjs/vue.mjs

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* vue v3.5.9
2+
* vue v3.5.10
33
* (c) 2018-present Yuxi (Evan) You and Vue contributors
44
* @license MIT
55
**/
@@ -647,12 +647,17 @@ function endBatch() {
647647
let e = batchedSub;
648648
let next;
649649
while (e) {
650-
e.flags &= ~8;
650+
if (!(e.flags & 1)) {
651+
e.flags &= ~8;
652+
}
651653
e = e.next;
652654
}
653655
e = batchedSub;
654656
batchedSub = void 0;
655657
while (e) {
658+
next = e.next;
659+
e.next = void 0;
660+
e.flags &= ~8;
656661
if (e.flags & 1) {
657662
try {
658663
;
@@ -661,8 +666,6 @@ function endBatch() {
661666
if (!error) error = err;
662667
}
663668
}
664-
next = e.next;
665-
e.next = void 0;
666669
e = next;
667670
}
668671
}
@@ -1996,6 +1999,10 @@ class ComputedRefImpl {
19961999
* @internal
19972000
*/
19982001
this.globalVersion = globalVersion - 1;
2002+
/**
2003+
* @internal
2004+
*/
2005+
this.next = void 0;
19992006
// for backwards compat
20002007
this.effect = this;
20012008
this["__v_isReadonly"] = !setter;
@@ -10518,7 +10525,7 @@ function isMemoSame(cached, memo) {
1051810525
return true;
1051910526
}
1052010527

10521-
const version = "3.5.9";
10528+
const version = "3.5.10";
1052210529
const warn = warn$1 ;
1052310530
const ErrorTypeStrings = ErrorTypeStrings$1 ;
1052410531
const devtools = devtools$1 ;
@@ -11305,6 +11312,11 @@ const patchProp = (el, key, prevValue, nextValue, namespace, parentComponent) =>
1130511312
if (!el.tagName.includes("-") && (key === "value" || key === "checked" || key === "selected")) {
1130611313
patchAttr(el, key, nextValue, isSVG, parentComponent, key !== "value");
1130711314
}
11315+
} else if (
11316+
// #11081 force set props for possible async custom element
11317+
el._isVueCE && (/[A-Z]/.test(key) || !isString(nextValue))
11318+
) {
11319+
patchDOMProp(el, camelize(key), nextValue);
1130811320
} else {
1130911321
if (key === "true-value") {
1131011322
el._trueValue = nextValue;
@@ -11345,13 +11357,7 @@ function shouldSetAsProp(el, key, value, isSVG) {
1134511357
if (isNativeOn(key) && isString(value)) {
1134611358
return false;
1134711359
}
11348-
if (key in el) {
11349-
return true;
11350-
}
11351-
if (el._isVueCE && (/[A-Z]/.test(key) || !isString(value))) {
11352-
return true;
11353-
}
11354-
return false;
11360+
return key in el;
1135511361
}
1135611362

1135711363
const REMOVAL = {};

0 commit comments

Comments
 (0)