- 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
18 lines
506 B
TypeScript
18 lines
506 B
TypeScript
/**
|
|
* Attribute utility
|
|
*/
|
|
export declare class AttributeUtility {
|
|
/**
|
|
*
|
|
* @param name the attribute name
|
|
* @param contentType the attribute has to be valid in
|
|
* @param context the context in which the error occurred in
|
|
* @param context.method
|
|
* @param context.instance
|
|
*/
|
|
static validateAttributeName(name: unknown, contentType: string, context: {
|
|
method: string;
|
|
instance: string;
|
|
}): void;
|
|
}
|
|
//# sourceMappingURL=AttributeUtility.d.ts.map
|