- 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
39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
import UIEvent from '../UIEvent.js';
|
|
import IKeyboardEventInit from './IKeyboardEventInit.js';
|
|
/**
|
|
*
|
|
*/
|
|
export default class KeyboardEvent extends UIEvent {
|
|
static DOM_KEY_LOCATION_STANDARD: number;
|
|
static DOM_KEY_LOCATION_LEFT: number;
|
|
static DOM_KEY_LOCATION_RIGHT: number;
|
|
static DOM_KEY_LOCATION_NUMPAD: number;
|
|
readonly altKey: boolean;
|
|
readonly code: string;
|
|
readonly ctrlKey: boolean;
|
|
readonly isComposing: boolean;
|
|
readonly key: string;
|
|
readonly location: number;
|
|
readonly metaKey: boolean;
|
|
readonly repeat: boolean;
|
|
readonly shiftKey: boolean;
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
readonly keyCode: number;
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param type Event type.
|
|
* @param [eventInit] Event init.
|
|
*/
|
|
constructor(type: string, eventInit?: IKeyboardEventInit | null);
|
|
/**
|
|
* Returns the state of a modifier key.
|
|
*
|
|
* @param key A modifier key value.
|
|
* @returns True if it's pressed, false otherwise.
|
|
*/
|
|
getModifierState(key: string): boolean;
|
|
}
|
|
//# sourceMappingURL=KeyboardEvent.d.ts.map
|