- 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
39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
import * as PropertySymbol from '../../PropertySymbol.cjs';
|
|
import SVGAnimatedLength from '../../svg/SVGAnimatedLength.cjs';
|
|
import SVGGradientElement from '../svg-gradient-element/SVGGradientElement.cjs';
|
|
/**
|
|
* SVG LinearGradient Element.
|
|
*
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/SVGLinearGradientElement
|
|
*/
|
|
export default class SVGLinearGradientElement extends SVGGradientElement {
|
|
[PropertySymbol.x1]: SVGAnimatedLength | null;
|
|
[PropertySymbol.y1]: SVGAnimatedLength | null;
|
|
[PropertySymbol.x2]: SVGAnimatedLength | null;
|
|
[PropertySymbol.y2]: SVGAnimatedLength | null;
|
|
/**
|
|
* Returns x1 position.
|
|
*
|
|
* @returns X1 position.
|
|
*/
|
|
get x1(): SVGAnimatedLength;
|
|
/**
|
|
* Returns y1 position.
|
|
*
|
|
* @returns Y1 position.
|
|
*/
|
|
get y1(): SVGAnimatedLength;
|
|
/**
|
|
* Returns x2 position.
|
|
*
|
|
* @returns X2 position.
|
|
*/
|
|
get x2(): SVGAnimatedLength;
|
|
/**
|
|
* Returns y2 position.
|
|
*
|
|
* @returns Y2 position.
|
|
*/
|
|
get y2(): SVGAnimatedLength;
|
|
}
|
|
//# sourceMappingURL=SVGLinearGradientElement.d.ts.map
|