- Delete old Vite+Svelte frontend - Initialize new SvelteKit project with TypeScript - Configure Tailwind CSS v4 + DaisyUI - Implement JWT authentication with auto-refresh - Create login page with form validation (Zod) - Add protected route guards - Update Docker configuration for single-stage build - Add E2E tests with Playwright (6/11 passing) - Fix Svelte 5 reactivity with $state() runes Known issues: - 5 E2E tests failing (timing/async issues) - Token refresh implementation needs debugging - Validation error display timing
60 lines
1.8 KiB
TypeScript
60 lines
1.8 KiB
TypeScript
import SVGElement from '../svg-element/SVGElement.cjs';
|
|
import DOMRect from '../../dom/DOMRect.cjs';
|
|
import DOMMatrix from '../../dom/dom-matrix/DOMMatrix.cjs';
|
|
import SVGStringList from '../../svg/SVGStringList.cjs';
|
|
import * as PropertySymbol from '../../PropertySymbol.cjs';
|
|
import SVGAnimatedTransformList from '../../svg/SVGAnimatedTransformList.cjs';
|
|
import Event from '../../event/Event.cjs';
|
|
/**
|
|
* SVG Graphics Element.
|
|
*
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/SVGGraphicsElement
|
|
*/
|
|
export default class SVGGraphicsElement extends SVGElement {
|
|
[PropertySymbol.requiredExtensions]: SVGStringList | null;
|
|
[PropertySymbol.systemLanguage]: SVGStringList | null;
|
|
[PropertySymbol.transform]: SVGAnimatedTransformList | null;
|
|
get oncopy(): ((event: Event) => void) | null;
|
|
set oncopy(value: ((event: Event) => void) | null);
|
|
get oncut(): ((event: Event) => void) | null;
|
|
set oncut(value: ((event: Event) => void) | null);
|
|
get onpaste(): ((event: Event) => void) | null;
|
|
set onpaste(value: ((event: Event) => void) | null);
|
|
/**
|
|
* Returns required extensions.
|
|
*
|
|
* @returns Required extensions.
|
|
*/
|
|
get requiredExtensions(): SVGStringList;
|
|
/**
|
|
* Returns system language.
|
|
*
|
|
* @returns System language.
|
|
*/
|
|
get systemLanguage(): SVGStringList;
|
|
/**
|
|
* Returns transform.
|
|
*
|
|
* @returns Transform.
|
|
*/
|
|
get transform(): SVGAnimatedTransformList;
|
|
/**
|
|
* Returns DOM rect.
|
|
*
|
|
* @returns DOM rect.
|
|
*/
|
|
getBBox(): DOMRect;
|
|
/**
|
|
* Returns CTM.
|
|
*
|
|
* @returns CTM.
|
|
*/
|
|
getCTM(): DOMMatrix;
|
|
/**
|
|
* Returns screen CTM.
|
|
*
|
|
* @returns Screen CTM.
|
|
*/
|
|
getScreenCTM(): DOMMatrix;
|
|
}
|
|
//# sourceMappingURL=SVGGraphicsElement.d.ts.map
|