- 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
41 lines
1.4 KiB
TypeScript
41 lines
1.4 KiB
TypeScript
import CSSStyleSheet from './CSSStyleSheet.js';
|
|
import CSSRuleTypeEnum from './CSSRuleTypeEnum.js';
|
|
import * as PropertySymbol from '../PropertySymbol.js';
|
|
import BrowserWindow from '../window/BrowserWindow.js';
|
|
/**
|
|
* CSSRule interface.
|
|
*/
|
|
export default class CSSRule {
|
|
static CONTAINER_RULE: CSSRuleTypeEnum;
|
|
static STYLE_RULE: CSSRuleTypeEnum;
|
|
static IMPORT_RULE: CSSRuleTypeEnum;
|
|
static MEDIA_RULE: CSSRuleTypeEnum;
|
|
static FONT_FACE_RULE: CSSRuleTypeEnum;
|
|
static PAGE_RULE: CSSRuleTypeEnum;
|
|
static KEYFRAMES_RULE: CSSRuleTypeEnum;
|
|
static KEYFRAME_RULE: CSSRuleTypeEnum;
|
|
static NAMESPACE_RULE: CSSRuleTypeEnum;
|
|
static COUNTER_STYLE_RULE: CSSRuleTypeEnum;
|
|
static SUPPORTS_RULE: CSSRuleTypeEnum;
|
|
static DOCUMENT_RULE: CSSRuleTypeEnum;
|
|
static FONT_FEATURE_VALUES_RULE: CSSRuleTypeEnum;
|
|
static REGION_STYLE_RULE: CSSRuleTypeEnum;
|
|
[PropertySymbol.window]: BrowserWindow;
|
|
parentRule: CSSRule;
|
|
parentStyleSheet: CSSStyleSheet;
|
|
type: CSSRuleTypeEnum | null;
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param illegalConstructorSymbol Illegal constructor symbol.
|
|
* @param window Window.
|
|
*/
|
|
constructor(illegalConstructorSymbol: Symbol, window: BrowserWindow);
|
|
/**
|
|
* Returns selector text.
|
|
*
|
|
* @returns Selector text.
|
|
*/
|
|
get cssText(): string;
|
|
}
|
|
//# sourceMappingURL=CSSRule.d.ts.map
|