- ✅ Ticket 1.1: Estructura Clean Architecture en backend - ✅ Ticket 1.2: Schemas Zod compartidos - ✅ Ticket 1.3: Refactorización drugs.ts (1362 → 8 archivos modulares) - ✅ Ticket 1.4: Refactorización procedures.ts (3583 → 6 archivos modulares) - ✅ Ticket 1.5: Eliminación de duplicidades (~50 líneas) Cambios principales: - Creada estructura Clean Architecture en backend/src/ - Schemas Zod compartidos en backend/src/shared/schemas/ - Refactorización modular de drugs y procedures - Utilidades genéricas en src/utils/ (filter, validation) - Eliminados scripts obsoletos y documentación antigua - Corregidos errores: QueryClient, import test-error-handling - Build verificado y funcionando correctamente
59 lines
1.6 KiB
TypeScript
59 lines
1.6 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;
|
|
/**
|
|
* Returns style sheets.
|
|
*
|
|
* @param root Root element.
|
|
* @returns Style sheets.
|
|
*/
|
|
private getStyleSheets;
|
|
/**
|
|
* Applies CSS text to elements.
|
|
*
|
|
* @param options Options.
|
|
* @param options.elements Elements.
|
|
* @param options.cssRules CSS rules.
|
|
* @param [options.hostElement] Host element.
|
|
* @param [options.scopeElement] Scope 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
|