- 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
68 lines
2.1 KiB
TypeScript
68 lines
2.1 KiB
TypeScript
import SVGElement from '../svg-element/SVGElement.cjs';
|
|
import * as PropertySymbol from '../../PropertySymbol.cjs';
|
|
import SVGAnimatedNumber from '../../svg/SVGAnimatedNumber.cjs';
|
|
import SVGAnimatedEnumeration from '../../svg/SVGAnimatedEnumeration.cjs';
|
|
import SVGAnimatedNumberList from '../../svg/SVGAnimatedNumberList.cjs';
|
|
/**
|
|
* SVGComponentTransferFunctionElement.
|
|
*
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/SVGComponentTransferFunctionElement
|
|
*/
|
|
export default class SVGComponentTransferFunctionElement extends SVGElement {
|
|
static SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN: number;
|
|
static SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY: number;
|
|
static SVG_FECOMPONENTTRANSFER_TYPE_TABLE: number;
|
|
static SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE: number;
|
|
static SVG_FECOMPONENTTRANSFER_TYPE_LINEAR: number;
|
|
static SVG_FECOMPONENTTRANSFER_TYPE_GAMMA: number;
|
|
[PropertySymbol.type]: SVGAnimatedEnumeration | null;
|
|
[PropertySymbol.tableValues]: SVGAnimatedNumberList | null;
|
|
[PropertySymbol.slope]: SVGAnimatedNumber | null;
|
|
[PropertySymbol.intercept]: SVGAnimatedNumber | null;
|
|
[PropertySymbol.amplitude]: SVGAnimatedNumber | null;
|
|
[PropertySymbol.exponent]: SVGAnimatedNumber | null;
|
|
[PropertySymbol.offset]: SVGAnimatedNumber | null;
|
|
/**
|
|
* Returns type.
|
|
*
|
|
* @returns Type.
|
|
*/
|
|
get type(): SVGAnimatedEnumeration;
|
|
/**
|
|
* Returns table values.
|
|
*
|
|
* @returns Table values.
|
|
*/
|
|
get tableValues(): SVGAnimatedNumberList;
|
|
/**
|
|
* Returns slope.
|
|
*
|
|
* @returns Slope.
|
|
*/
|
|
get slope(): SVGAnimatedNumber;
|
|
/**
|
|
* Returns intercept.
|
|
*
|
|
* @returns Intercept.
|
|
*/
|
|
get intercept(): SVGAnimatedNumber;
|
|
/**
|
|
* Returns amplitude.
|
|
*
|
|
* @returns Amplitude.
|
|
*/
|
|
get amplitude(): SVGAnimatedNumber;
|
|
/**
|
|
* Returns exponent.
|
|
*
|
|
* @returns Exponent.
|
|
*/
|
|
get exponent(): SVGAnimatedNumber;
|
|
/**
|
|
* Returns offset.
|
|
*
|
|
* @returns Offset.
|
|
*/
|
|
get offset(): SVGAnimatedNumber;
|
|
}
|
|
//# sourceMappingURL=SVGComponentTransferFunctionElement.d.ts.map
|