- 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
77 lines
2.2 KiB
TypeScript
77 lines
2.2 KiB
TypeScript
import SVGElement from '../svg-element/SVGElement.cjs';
|
|
import * as PropertySymbol from '../../PropertySymbol.cjs';
|
|
import SVGAnimatedLength from '../../svg/SVGAnimatedLength.cjs';
|
|
import SVGAnimatedEnumeration from '../../svg/SVGAnimatedEnumeration.cjs';
|
|
import SVGAnimatedString from '../../svg/SVGAnimatedString.cjs';
|
|
import SVGAnimatedNumberList from '../../svg/SVGAnimatedNumberList.cjs';
|
|
/**
|
|
* SVGFECompositeElement.
|
|
*
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/SVGFECompositeElement
|
|
*/
|
|
export default class SVGFECompositeElement extends SVGElement {
|
|
static SVG_FECOMPOSITE_OPERATOR_UNKNOWN: number;
|
|
static SVG_FECOMPOSITE_OPERATOR_OVER: number;
|
|
static SVG_FECOMPOSITE_OPERATOR_IN: number;
|
|
static SVG_FECOMPOSITE_OPERATOR_OUT: number;
|
|
static SVG_FECOMPOSITE_OPERATOR_ATOP: number;
|
|
static SVG_FECOMPOSITE_OPERATOR_XOR: number;
|
|
static SVG_FECOMPOSITE_OPERATOR_ARITHMETIC: number;
|
|
[PropertySymbol.height]: SVGAnimatedLength | null;
|
|
[PropertySymbol.in1]: SVGAnimatedString | null;
|
|
[PropertySymbol.result]: SVGAnimatedString | null;
|
|
[PropertySymbol.type]: SVGAnimatedEnumeration | null;
|
|
[PropertySymbol.values]: SVGAnimatedNumberList | null;
|
|
[PropertySymbol.x]: SVGAnimatedLength | null;
|
|
[PropertySymbol.y]: SVGAnimatedLength | null;
|
|
[PropertySymbol.width]: SVGAnimatedLength | null;
|
|
/**
|
|
* Returns height.
|
|
*
|
|
* @returns Height.
|
|
*/
|
|
get height(): SVGAnimatedLength;
|
|
/**
|
|
* Returns in1.
|
|
*
|
|
* @returns In1.
|
|
*/
|
|
get in1(): SVGAnimatedString;
|
|
/**
|
|
* Returns result.
|
|
*
|
|
* @returns Result.
|
|
*/
|
|
get result(): SVGAnimatedString;
|
|
/**
|
|
* Returns type.
|
|
*
|
|
* @returns Type.
|
|
*/
|
|
get type(): SVGAnimatedEnumeration;
|
|
/**
|
|
* Returns values.
|
|
*
|
|
* @returns Values.
|
|
*/
|
|
get values(): SVGAnimatedNumberList;
|
|
/**
|
|
* Returns width.
|
|
*
|
|
* @returns Width.
|
|
*/
|
|
get width(): SVGAnimatedLength;
|
|
/**
|
|
* Returns x position.
|
|
*
|
|
* @returns X position.
|
|
*/
|
|
get x(): SVGAnimatedLength;
|
|
/**
|
|
* Returns y position.
|
|
*
|
|
* @returns Y position.
|
|
*/
|
|
get y(): SVGAnimatedLength;
|
|
}
|
|
//# sourceMappingURL=SVGFECompositeElement.d.ts.map
|