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
+1 -1
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
**/
+1 -1
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
**/
+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
**/
@@ -427,12 +427,18 @@ class EffectScope {
*/
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() {
@@ -480,7 +486,7 @@ class EffectScope {
} finally {
activeEffectScope = currentEffectScope;
}
} else {
} else if (this._warnOnRun) {
warn$2(`cannot run an inactive effect scope.`);
}
}
@@ -586,8 +592,12 @@ class ReactiveEffect {
*/
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() {
@@ -7515,7 +7525,7 @@ function getInvalidTypeMessage(name, value, expectedTypes) {
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} `;
@@ -7525,7 +7535,9 @@ function getInvalidTypeMessage(name, value, expectedTypes) {
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)}`;
@@ -7537,8 +7549,11 @@ function isExplicable(type) {
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";
@@ -9558,13 +9573,14 @@ function createSuspenseBoundary(vnode, parentSuspense, parentComponent, containe
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);
@@ -9577,6 +9593,7 @@ function createSuspenseBoundary(vnode, parentSuspense, parentComponent, containe
if (activeBranch && !suspense.isFallbackMountPending) {
if (parentNode(activeBranch.el) === container2) {
anchor = next(activeBranch);
hasUpdatedAnchor = true;
}
unmount(activeBranch, parentComponent2, suspense, true);
if (!delayEnter && isInFallback && vnode2.ssFallback) {
@@ -10883,7 +10900,7 @@ function isMemoSame(cached, memo) {
return true;
}
const version = "3.5.33";
const version = "3.5.34";
const warn = warn$1 ;
const ErrorTypeStrings = ErrorTypeStrings$1 ;
const devtools = devtools$1 ;
File diff suppressed because one or more lines are too long
+1 -1
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
**/
+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
**/
@@ -430,12 +430,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() {
@@ -483,7 +489,7 @@ var Vue = (function (exports) {
} finally {
activeEffectScope = currentEffectScope;
}
} else {
} else if (this._warnOnRun) {
warn$2(`cannot run an inactive effect scope.`);
}
}
@@ -589,8 +595,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() {
@@ -7481,7 +7491,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} `;
@@ -7491,7 +7501,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)}`;
@@ -7503,8 +7515,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";
@@ -9524,13 +9539,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);
@@ -9543,6 +9559,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) {
@@ -10835,7 +10852,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 ;
+8 -8
View File
File diff suppressed because one or more lines are too long
+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
**/
@@ -354,12 +354,18 @@ class EffectScope {
*/
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() {
@@ -407,7 +413,7 @@ class EffectScope {
} finally {
activeEffectScope = currentEffectScope;
}
} else {
} else if (this._warnOnRun) {
warn$2(`cannot run an inactive effect scope.`);
}
}
@@ -513,8 +519,12 @@ class ReactiveEffect {
*/
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() {
@@ -7442,7 +7452,7 @@ function getInvalidTypeMessage(name, value, expectedTypes) {
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} `;
@@ -7452,7 +7462,9 @@ function getInvalidTypeMessage(name, value, expectedTypes) {
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)}`;
@@ -7464,8 +7476,11 @@ function isExplicable(type) {
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";
@@ -9485,13 +9500,14 @@ function createSuspenseBoundary(vnode, parentSuspense, parentComponent, containe
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);
@@ -9504,6 +9520,7 @@ function createSuspenseBoundary(vnode, parentSuspense, parentComponent, containe
if (activeBranch && !suspense.isFallbackMountPending) {
if (parentNode(activeBranch.el) === container2) {
anchor = next(activeBranch);
hasUpdatedAnchor = true;
}
unmount(activeBranch, parentComponent2, suspense, true);
if (!delayEnter && isInFallback && vnode2.ssFallback) {
@@ -10810,7 +10827,7 @@ function isMemoSame(cached, memo) {
return true;
}
const version = "3.5.33";
const version = "3.5.34";
const warn = warn$1 ;
const ErrorTypeStrings = ErrorTypeStrings$1 ;
const devtools = devtools$1 ;
File diff suppressed because one or more lines are too long
+1 -1
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
**/
+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 ;
File diff suppressed because one or more lines are too long
+6 -6
View File
@@ -1,6 +1,6 @@
{
"name": "vue",
"version": "3.5.33",
"version": "3.5.34",
"description": "The progressive JavaScript framework for building modern web UI.",
"main": "index.js",
"module": "dist/vue.runtime.esm-bundler.js",
@@ -95,11 +95,11 @@
},
"homepage": "https://vuejs.org/",
"dependencies": {
"@vue/shared": "3.5.33",
"@vue/compiler-dom": "3.5.33",
"@vue/runtime-dom": "3.5.33",
"@vue/compiler-sfc": "3.5.33",
"@vue/server-renderer": "3.5.33"
"@vue/shared": "3.5.34",
"@vue/runtime-dom": "3.5.34",
"@vue/compiler-sfc": "3.5.34",
"@vue/server-renderer": "3.5.34",
"@vue/compiler-dom": "3.5.34"
},
"peerDependencies": {
"typescript": "*"