Update environment type definitions and improve safe redirect logic in login proxy page. Refactor SvelteKit generated files for better performance and maintainability, including updates to version hashes and removal of unused dependencies.
CI / build (push) Has been skipped
CI / deploy (push) Has been cancelled

This commit is contained in:
eewing
2026-02-19 09:25:37 -06:00
parent 07836ce6bb
commit a3d6b2b083
56 changed files with 10376 additions and 522 deletions
+57
View File
@@ -0,0 +1,57 @@
import {
cubicOut
} from "./chunk-YERFD2CZ.js";
import "./chunk-UGBVNEQM.js";
// node_modules/svelte/src/animate/index.js
function flip(node, { from, to }, params = {}) {
var { delay = 0, duration = (d) => Math.sqrt(d) * 120, easing = cubicOut } = params;
var style = getComputedStyle(node);
var transform = style.transform === "none" ? "" : style.transform;
var [ox, oy] = style.transformOrigin.split(" ").map(parseFloat);
ox /= node.clientWidth;
oy /= node.clientHeight;
var zoom = get_zoom(node);
var sx = node.clientWidth / to.width / zoom;
var sy = node.clientHeight / to.height / zoom;
var fx = from.left + from.width * ox;
var fy = from.top + from.height * oy;
var tx = to.left + to.width * ox;
var ty = to.top + to.height * oy;
var dx = (fx - tx) * sx;
var dy = (fy - ty) * sy;
var dsx = from.width / to.width;
var dsy = from.height / to.height;
return {
delay,
duration: typeof duration === "function" ? duration(Math.sqrt(dx * dx + dy * dy)) : duration,
easing,
css: (t, u) => {
var x = u * dx;
var y = u * dy;
var sx2 = t + u * dsx;
var sy2 = t + u * dsy;
return `transform: ${transform} translate(${x}px, ${y}px) scale(${sx2}, ${sy2});`;
}
};
}
function get_zoom(element) {
if ("currentCSSZoom" in element) {
return (
/** @type {number} */
element.currentCSSZoom
);
}
var current = element;
var zoom = 1;
while (current !== null) {
zoom *= +getComputedStyle(current).zoom;
current = /** @type {Element | null} */
current.parentElement;
}
return zoom;
}
export {
flip
};
//# sourceMappingURL=svelte_animate.js.map