🌱 🏗️ ⬆️ add expense table 🎨 🔧

This commit is contained in:
2025-05-15 17:45:22 +02:00
parent d17fded423
commit be5225c85d
100 changed files with 6250 additions and 8757 deletions

View File

@@ -1,5 +1,5 @@
/**
* @vue/runtime-dom v3.5.13
* @vue/runtime-dom v3.5.14
* (c) 2018-present Yuxi (Evan) You and Vue contributors
* @license MIT
**/
@@ -739,7 +739,7 @@ function shouldSetAsProp(el, key, value, isSVG) {
}
return false;
}
if (key === "spellcheck" || key === "draggable" || key === "translate") {
if (key === "spellcheck" || key === "draggable" || key === "translate" || key === "autocorrect") {
return false;
}
if (key === "form") {
@@ -1228,6 +1228,7 @@ const TransitionGroupImpl = /* @__PURE__ */ decorate({
instance.vnode.el,
moveClass
)) {
prevChildren = [];
return;
}
prevChildren.forEach(callPendingCbs);
@@ -1251,6 +1252,7 @@ const TransitionGroupImpl = /* @__PURE__ */ decorate({
};
el.addEventListener("transitionend", cb);
});
prevChildren = [];
});
return () => {
const rawProps = runtimeCore.toRaw(props);