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/runtime-dom v3.5.33
* @vue/runtime-dom v3.5.34
* (c) 2018-present Yuxi (Evan) You and Vue contributors
* @license MIT
**/
+1 -1
View File
@@ -1,5 +1,5 @@
/**
* @vue/runtime-dom v3.5.33
* @vue/runtime-dom v3.5.34
* (c) 2018-present Yuxi (Evan) You and Vue contributors
* @license MIT
**/
+31 -14
View File
@@ -1,5 +1,5 @@
/**
* @vue/runtime-dom v3.5.33
* @vue/runtime-dom 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/runtime-dom v3.5.33
* @vue/runtime-dom v3.5.34
* (c) 2018-present Yuxi (Evan) You and Vue contributors
* @license MIT
**/
+31 -14
View File
@@ -1,5 +1,5 @@
/**
* @vue/runtime-dom v3.5.33
* @vue/runtime-dom v3.5.34
* (c) 2018-present Yuxi (Evan) You and Vue contributors
* @license MIT
**/
@@ -357,12 +357,18 @@ var VueRuntimeDOM = (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 VueRuntimeDOM = (function (exports) {
} finally {
activeEffectScope = currentEffectScope;
}
} else {
} else if (this._warnOnRun) {
warn$2(`cannot run an inactive effect scope.`);
}
}
@@ -516,8 +522,12 @@ var VueRuntimeDOM = (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
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@vue/runtime-dom",
"version": "3.5.33",
"version": "3.5.34",
"description": "@vue/runtime-dom",
"main": "index.js",
"module": "dist/runtime-dom.esm-bundler.js",
@@ -50,9 +50,9 @@
"homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-dom#readme",
"dependencies": {
"csstype": "^3.2.3",
"@vue/runtime-core": "3.5.33",
"@vue/shared": "3.5.33",
"@vue/reactivity": "3.5.33"
"@vue/shared": "3.5.34",
"@vue/runtime-core": "3.5.34",
"@vue/reactivity": "3.5.34"
},
"devDependencies": {
"@types/trusted-types": "^2.0.7"