Skip to content

Commit

Permalink
update vue libs
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Sep 30, 2024
1 parent b4a5a20 commit 7f368e5
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 18 deletions.
12 changes: 6 additions & 6 deletions CreatorKit/wwwroot/lib/mjs/vue.min.mjs

Large diffs are not rendered by default.

30 changes: 18 additions & 12 deletions CreatorKit/wwwroot/lib/mjs/vue.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* vue v3.5.9
* vue v3.5.10
* (c) 2018-present Yuxi (Evan) You and Vue contributors
* @license MIT
**/
Expand Down Expand Up @@ -647,12 +647,17 @@ function endBatch() {
let e = batchedSub;
let next;
while (e) {
e.flags &= ~8;
if (!(e.flags & 1)) {
e.flags &= ~8;
}
e = e.next;
}
e = batchedSub;
batchedSub = void 0;
while (e) {
next = e.next;
e.next = void 0;
e.flags &= ~8;
if (e.flags & 1) {
try {
;
Expand All @@ -661,8 +666,6 @@ function endBatch() {
if (!error) error = err;
}
}
next = e.next;
e.next = void 0;
e = next;
}
}
Expand Down Expand Up @@ -1996,6 +1999,10 @@ class ComputedRefImpl {
* @internal
*/
this.globalVersion = globalVersion - 1;
/**
* @internal
*/
this.next = void 0;
// for backwards compat
this.effect = this;
this["__v_isReadonly"] = !setter;
Expand Down Expand Up @@ -10518,7 +10525,7 @@ function isMemoSame(cached, memo) {
return true;
}

const version = "3.5.9";
const version = "3.5.10";
const warn = warn$1 ;
const ErrorTypeStrings = ErrorTypeStrings$1 ;
const devtools = devtools$1 ;
Expand Down Expand Up @@ -11305,6 +11312,11 @@ const patchProp = (el, key, prevValue, nextValue, namespace, parentComponent) =>
if (!el.tagName.includes("-") && (key === "value" || key === "checked" || key === "selected")) {
patchAttr(el, key, nextValue, isSVG, parentComponent, key !== "value");
}
} else if (
// #11081 force set props for possible async custom element
el._isVueCE && (/[A-Z]/.test(key) || !isString(nextValue))
) {
patchDOMProp(el, camelize(key), nextValue);
} else {
if (key === "true-value") {
el._trueValue = nextValue;
Expand Down Expand Up @@ -11345,13 +11357,7 @@ function shouldSetAsProp(el, key, value, isSVG) {
if (isNativeOn(key) && isString(value)) {
return false;
}
if (key in el) {
return true;
}
if (el._isVueCE && (/[A-Z]/.test(key) || !isString(value))) {
return true;
}
return false;
return key in el;
}

const REMOVAL = {};
Expand Down

0 comments on commit 7f368e5

Please sign in to comment.