gitea push

This commit is contained in:
2026-05-09 12:19:29 -06:00
parent 06113c95b8
commit 429461e985
1481 changed files with 74306 additions and 52475 deletions
+31 -14
View File
@@ -1,5 +1,5 @@
/**
* vue v3.5.33
* vue v3.5.34
* (c) 2018-present Yuxi (Evan) You and Vue contributors
* @license MIT
**/
@@ -357,12 +357,18 @@ var Vue = (function (exports) {
*/
this.cleanups = [];
this._isPaused = false;
this._warnOnRun = true;
this.__v_skip = true;
this.parent = activeEffectScope;
if (!detached && activeEffectScope) {
this.index = (activeEffectScope.scopes || (activeEffectScope.scopes = [])).push(
this
) - 1;
if (activeEffectScope.active) {
this.parent = activeEffectScope;
this.index = (activeEffectScope.scopes || (activeEffectScope.scopes = [])).push(
this
) - 1;
} else {
this._active = false;
this._warnOnRun = false;
}
}
}
get active() {
@@ -410,7 +416,7 @@ var Vue = (function (exports) {
} finally {
activeEffectScope = currentEffectScope;
}
} else {
} else if (this._warnOnRun) {
warn$2(`cannot run an inactive effect scope.`);
}
}
@@ -516,8 +522,12 @@ var Vue = (function (exports) {
*/
this.cleanup = void 0;
this.scheduler = void 0;
if (activeEffectScope && activeEffectScope.active) {
activeEffectScope.effects.push(this);
if (activeEffectScope) {
if (activeEffectScope.active) {
activeEffectScope.effects.push(this);
} else {
this.flags &= -2;
}
}
}
pause() {
@@ -7408,7 +7418,7 @@ If you want to remount the same app, move your app creation logic into a factory
const receivedType = toRawType(value);
const expectedValue = styleValue(value, expectedType);
const receivedValue = styleValue(value, receivedType);
if (expectedTypes.length === 1 && isExplicable(expectedType) && !isBoolean(expectedType, receivedType)) {
if (expectedTypes.length === 1 && isExplicable(expectedType) && isCoercible(expectedType, receivedType)) {
message += ` with value ${expectedValue}`;
}
message += `, got ${receivedType} `;
@@ -7418,7 +7428,9 @@ If you want to remount the same app, move your app creation logic into a factory
return message;
}
function styleValue(value, type) {
if (type === "String") {
if (isSymbol(value)) {
return value.toString();
} else if (type === "String") {
return `"${value}"`;
} else if (type === "Number") {
return `${Number(value)}`;
@@ -7430,8 +7442,11 @@ If you want to remount the same app, move your app creation logic into a factory
const explicitTypes = ["string", "number", "boolean"];
return explicitTypes.some((elem) => type.toLowerCase() === elem);
}
function isBoolean(...args) {
return args.some((elem) => elem.toLowerCase() === "boolean");
function isCoercible(...args) {
return args.every((elem) => {
const value = elem.toLowerCase();
return value !== "boolean" && value !== "symbol";
});
}
const isInternalKey = (key) => key === "_" || key === "_ctx" || key === "$stable";
@@ -9451,13 +9466,14 @@ If you want to remount the same app, move your app creation logic into a factory
suspense.isHydrating = false;
} else if (!resume) {
delayEnter = activeBranch && pendingBranch.transition && pendingBranch.transition.mode === "out-in";
let hasUpdatedAnchor = false;
if (delayEnter) {
activeBranch.transition.afterLeave = () => {
if (pendingId === suspense.pendingId) {
move(
pendingBranch,
container2,
anchor === initialAnchor ? next(activeBranch) : anchor,
anchor === initialAnchor && !hasUpdatedAnchor ? next(activeBranch) : anchor,
0
);
queuePostFlushCb(effects);
@@ -9470,6 +9486,7 @@ If you want to remount the same app, move your app creation logic into a factory
if (activeBranch && !suspense.isFallbackMountPending) {
if (parentNode(activeBranch.el) === container2) {
anchor = next(activeBranch);
hasUpdatedAnchor = true;
}
unmount(activeBranch, parentComponent2, suspense, true);
if (!delayEnter && isInFallback && vnode2.ssFallback) {
@@ -10762,7 +10779,7 @@ Component that was made reactive: `,
return true;
}
const version = "3.5.33";
const version = "3.5.34";
const warn = warn$1 ;
const ErrorTypeStrings = ErrorTypeStrings$1 ;
const devtools = devtools$1 ;