- 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
93 lines
1.6 KiB
TypeScript
93 lines
1.6 KiB
TypeScript
import HTMLElement from '../html-element/HTMLElement.cjs';
|
|
/**
|
|
* HTMLSourceElement
|
|
*
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLSourceElement
|
|
*/
|
|
export default class HTMLSourceElement extends HTMLElement {
|
|
/**
|
|
* Returns height.
|
|
*
|
|
* @returns Height.
|
|
*/
|
|
get height(): number;
|
|
/**
|
|
* Sets height.
|
|
*
|
|
* @param value Height.
|
|
*/
|
|
set height(value: number);
|
|
/**
|
|
* Returns width.
|
|
*
|
|
* @returns Width.
|
|
*/
|
|
get width(): number;
|
|
/**
|
|
* Sets width.
|
|
*
|
|
* @param value Width.
|
|
*/
|
|
set width(value: number);
|
|
/**
|
|
* Returns media.
|
|
*
|
|
* @returns Media.
|
|
*/
|
|
get media(): string;
|
|
/**
|
|
* Sets media.
|
|
*
|
|
* @param value Media.
|
|
*/
|
|
set media(value: string);
|
|
/**
|
|
* Returns sizes.
|
|
*
|
|
* @returns Sizes.
|
|
*/
|
|
get sizes(): string;
|
|
/**
|
|
* Sets sizes.
|
|
*
|
|
* @param value Sizes.
|
|
*/
|
|
set sizes(value: string);
|
|
/**
|
|
* Returns source.
|
|
*
|
|
* @returns Source.
|
|
*/
|
|
get src(): string;
|
|
/**
|
|
* Sets source.
|
|
*
|
|
* @param src Source.
|
|
*/
|
|
set src(src: string);
|
|
/**
|
|
* Returns source set.
|
|
*
|
|
* @returns Source set.
|
|
*/
|
|
get srcset(): string;
|
|
/**
|
|
* Sets source set.
|
|
*
|
|
* @param value Source set.
|
|
*/
|
|
set srcset(value: string);
|
|
/**
|
|
* Returns type.
|
|
*
|
|
* @returns Type.
|
|
*/
|
|
get type(): string;
|
|
/**
|
|
* Sets type.
|
|
*
|
|
* @param type Type.
|
|
*/
|
|
set type(type: string);
|
|
}
|
|
//# sourceMappingURL=HTMLSourceElement.d.ts.map
|