- 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
10 lines
1.2 KiB
TypeScript
10 lines
1.2 KiB
TypeScript
import SuperDebug from './client/SuperDebug.svelte';
|
|
export default SuperDebug;
|
|
export { SuperFormError, SchemaError } from './errors.js';
|
|
export type { InputConstraints, InputConstraint } from './jsonSchema/constraints.js';
|
|
export type { JSONSchema } from './jsonSchema/index.js';
|
|
export { superForm, intProxy, numberProxy, booleanProxy, dateProxy, fieldProxy, formFieldProxy, stringProxy, arrayProxy, fileProxy, fileFieldProxy, filesProxy, filesFieldProxy, defaults, defaultValues, schemaShape, actionResult, superValidate, message, setMessage, setError, withFiles, removeFiles, fail, type SuperValidated, type SuperValidateOptions, type TaintedFields, type ValidationErrors, type Infer, type InferIn, type Schema, type FormResult, type FormOptions, type SuperForm, type SuperFormEventList, type SuperFormEvents, type SuperFormSnapshot, type ValidateOptions, type TaintOption, type FormPath, type FormPathLeaves, type FormPathLeavesWithErrors, type FormPathArrays, type FormPathType, type ChangeEvent, type FieldProxy, type ArrayProxy, type FormFieldProxy } from './client/index.js';
|
|
export { splitPath } from './stringPath.js';
|
|
export type { ErrorStatus, MergeUnion, MergeFormUnion } from './utils.js';
|
|
export { mergeFormUnion } from './utils.js';
|