- 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
52 lines
1.5 KiB
TypeScript
52 lines
1.5 KiB
TypeScript
import Element from '../../../nodes/element/Element.js';
|
|
import CSSStyleDeclarationPropertyManager from '../property-manager/CSSStyleDeclarationPropertyManager.js';
|
|
/**
|
|
* CSS Style Declaration utility
|
|
*/
|
|
export default class CSSStyleDeclarationComputedStyle {
|
|
private element;
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param element Element.
|
|
* @param [computed] Computed.
|
|
*/
|
|
constructor(element: Element);
|
|
/**
|
|
* Returns style sheets.
|
|
*
|
|
* @param element Element.
|
|
* @returns Style sheets.
|
|
*/
|
|
getComputedStyle(): CSSStyleDeclarationPropertyManager;
|
|
/**
|
|
* Applies CSS text to elements.
|
|
*
|
|
* @param options Options.
|
|
* @param options.elements Elements.
|
|
* @param options.cssRules CSS rules.
|
|
* @param options.rootElement Root element.
|
|
* @param [options.hostElement] Host element.
|
|
*/
|
|
private parseCSSRules;
|
|
/**
|
|
* Parses CSS variables in a value.
|
|
*
|
|
* @param value Value.
|
|
* @param cssVariables CSS variables.
|
|
* @returns CSS value.
|
|
*/
|
|
private parseCSSVariablesInValue;
|
|
/**
|
|
* Parses measurements in a value.
|
|
*
|
|
* @param options Options.
|
|
* @param options.value Value.
|
|
* @param options.rootFontSize Root font size.
|
|
* @param options.parentFontSize Parent font size.
|
|
* @param [options.parentSize] Parent width.
|
|
* @returns CSS value.
|
|
*/
|
|
private parseMeasurementsInValue;
|
|
}
|
|
//# sourceMappingURL=CSSStyleDeclarationComputedStyle.d.ts.map
|