- 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
98 lines
2.8 KiB
TypeScript
98 lines
2.8 KiB
TypeScript
import SVGElement from '../svg-element/SVGElement.cjs';
|
|
import * as PropertySymbol from '../../PropertySymbol.cjs';
|
|
import SVGAnimatedLength from '../../svg/SVGAnimatedLength.cjs';
|
|
import SVGAnimatedString from '../../svg/SVGAnimatedString.cjs';
|
|
import SVGAnimatedNumber from '../../svg/SVGAnimatedNumber.cjs';
|
|
import SVGAnimatedInteger from '../../svg/SVGAnimatedInteger.cjs';
|
|
import SVGAnimatedEnumeration from '../../svg/SVGAnimatedEnumeration.cjs';
|
|
/**
|
|
* SVGFETurbulenceElement.
|
|
*
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/SVGFETurbulenceElement
|
|
*/
|
|
export default class SVGFETurbulenceElement extends SVGElement {
|
|
static readonly SVG_TURBULENCE_TYPE_UNKNOWN = 0;
|
|
static readonly SVG_TURBULENCE_TYPE_FRACTALNOISE = 1;
|
|
static readonly SVG_TURBULENCE_TYPE_TURBULENCE = 2;
|
|
static readonly SVG_STITCHTYPE_UNKNOWN = 0;
|
|
static readonly SVG_STITCHTYPE_STITCH = 1;
|
|
static readonly SVG_STITCHTYPE_NOSTITCH = 2;
|
|
[PropertySymbol.baseFrequencyX]: SVGAnimatedNumber | null;
|
|
[PropertySymbol.baseFrequencyY]: SVGAnimatedNumber | null;
|
|
[PropertySymbol.height]: SVGAnimatedLength | null;
|
|
[PropertySymbol.numOctaves]: SVGAnimatedInteger | null;
|
|
[PropertySymbol.result]: SVGAnimatedString | null;
|
|
[PropertySymbol.seed]: SVGAnimatedNumber | null;
|
|
[PropertySymbol.stitchTiles]: SVGAnimatedEnumeration | null;
|
|
[PropertySymbol.type]: SVGAnimatedEnumeration | null;
|
|
[PropertySymbol.width]: SVGAnimatedLength | null;
|
|
[PropertySymbol.x]: SVGAnimatedLength | null;
|
|
[PropertySymbol.y]: SVGAnimatedLength | null;
|
|
/**
|
|
* Returns baseFrequencyX.
|
|
*
|
|
* @returns Base frequency x.
|
|
*/
|
|
get baseFrequencyX(): SVGAnimatedNumber;
|
|
/**
|
|
* Returns baseFrequencyY.
|
|
*
|
|
* @returns Base frequency y.
|
|
*/
|
|
get baseFrequencyY(): SVGAnimatedNumber;
|
|
/**
|
|
* Returns height.
|
|
*
|
|
* @returns Height.
|
|
*/
|
|
get height(): SVGAnimatedLength;
|
|
/**
|
|
* Returns numOctaves.
|
|
*
|
|
* @returns Num octaves.
|
|
*/
|
|
get numOctaves(): SVGAnimatedInteger;
|
|
/**
|
|
* Returns result.
|
|
*
|
|
* @returns Result.
|
|
*/
|
|
get result(): SVGAnimatedString;
|
|
/**
|
|
* Returns seed.
|
|
*
|
|
* @returns Seed.
|
|
*/
|
|
get seed(): SVGAnimatedNumber;
|
|
/**
|
|
* Returns stitchTiles.
|
|
*
|
|
* @returns Stitch tiles.
|
|
*/
|
|
get stitchTiles(): SVGAnimatedEnumeration;
|
|
/**
|
|
* Returns type.
|
|
*
|
|
* @returns Type.
|
|
*/
|
|
get type(): SVGAnimatedEnumeration;
|
|
/**
|
|
* Returns width.
|
|
*
|
|
* @returns Width.
|
|
*/
|
|
get width(): SVGAnimatedLength;
|
|
/**
|
|
* Returns x.
|
|
*
|
|
* @returns X.
|
|
*/
|
|
get x(): SVGAnimatedLength;
|
|
/**
|
|
* Returns y.
|
|
*
|
|
* @returns Y.
|
|
*/
|
|
get y(): SVGAnimatedLength;
|
|
}
|
|
//# sourceMappingURL=SVGFETurbulenceElement.d.ts.map
|