- 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
99 lines
2.8 KiB
TypeScript
99 lines
2.8 KiB
TypeScript
import HTMLElement from '../html-element/HTMLElement.cjs';
|
|
import * as PropertySymbol from '../../PropertySymbol.cjs';
|
|
import HTMLCollection from '../element/HTMLCollection.cjs';
|
|
import HTMLInputElement from '../html-input-element/HTMLInputElement.cjs';
|
|
import HTMLTextAreaElement from '../html-text-area-element/HTMLTextAreaElement.cjs';
|
|
import HTMLSelectElement from '../html-select-element/HTMLSelectElement.cjs';
|
|
import HTMLButtonElement from '../html-button-element/HTMLButtonElement.cjs';
|
|
import HTMLFormElement from '../html-form-element/HTMLFormElement.cjs';
|
|
type THTMLFieldSetElement = HTMLInputElement | HTMLButtonElement | HTMLTextAreaElement | HTMLSelectElement;
|
|
/**
|
|
* HTMLFieldSetElement
|
|
*
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLFieldSetElement
|
|
*/
|
|
export default class HTMLFieldSetElement extends HTMLElement {
|
|
cloneNode: (deep?: boolean) => HTMLFieldSetElement;
|
|
[PropertySymbol.elements]: HTMLCollection<THTMLFieldSetElement> | null;
|
|
[PropertySymbol.formNode]: HTMLFormElement | null;
|
|
/**
|
|
* Returns elements.
|
|
*
|
|
* @returns Elements.
|
|
*/
|
|
get elements(): HTMLCollection<THTMLFieldSetElement>;
|
|
/**
|
|
* Returns the parent form element.
|
|
*
|
|
* @returns Form.
|
|
*/
|
|
get form(): HTMLFormElement;
|
|
/**
|
|
* Returns name.
|
|
*
|
|
* @returns Name.
|
|
*/
|
|
get name(): string;
|
|
/**
|
|
* Sets name.
|
|
*
|
|
* @param name Name.
|
|
*/
|
|
set name(name: string);
|
|
/**
|
|
* Returns type "fieldset".
|
|
*
|
|
* @returns Type.
|
|
*/
|
|
get type(): string;
|
|
/**
|
|
* Returns empty string as fieldset never candidates for constraint validation.
|
|
*/
|
|
get validationMessage(): string;
|
|
/**
|
|
* Returns will validate state.
|
|
*
|
|
* Always returns false as fieldset never candidates for constraint validation.
|
|
*
|
|
* @returns Will validate state.
|
|
*/
|
|
get willValidate(): boolean;
|
|
/**
|
|
* Returns disabled.
|
|
*
|
|
* @returns Disabled.
|
|
*/
|
|
get disabled(): boolean;
|
|
/**
|
|
* Sets disabled.
|
|
*
|
|
* @param disabled Disabled.
|
|
*/
|
|
set disabled(disabled: boolean);
|
|
/**
|
|
* Checks validity.
|
|
*
|
|
* Always returns true as fieldset never candidates for constraint validation.
|
|
*
|
|
* @returns "true" if the field is valid.
|
|
*/
|
|
checkValidity(): boolean;
|
|
/**
|
|
* Reports validity.
|
|
*
|
|
* Always returns true as fieldset never candidates for constraint validation.
|
|
*
|
|
* @returns Validity.
|
|
*/
|
|
reportValidity(): boolean;
|
|
/**
|
|
* Sets validation message.
|
|
*
|
|
* Does nothing as fieldset never candidates for constraint validation.
|
|
*
|
|
* @param _message Message.
|
|
*/
|
|
setCustomValidity(_message: string): void;
|
|
}
|
|
export {};
|
|
//# sourceMappingURL=HTMLFieldSetElement.d.ts.map
|