- ✅ 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
29 lines
1.1 KiB
TypeScript
29 lines
1.1 KiB
TypeScript
/**
|
|
* interface for an options-bag where `window.getComputedStyle` can be mocked
|
|
*/
|
|
export interface ComputeTextAlternativeOptions {
|
|
compute?: "description" | "name";
|
|
/**
|
|
* Set to true if window.computedStyle supports the second argument.
|
|
* This should be false in JSDOM. Otherwise JSDOM will log console errors.
|
|
*/
|
|
computedStyleSupportsPseudoElements?: boolean;
|
|
/**
|
|
* mock window.getComputedStyle. Needs `content`, `display` and `visibility`
|
|
*/
|
|
getComputedStyle?: typeof window.getComputedStyle;
|
|
/**
|
|
* Set to `true` if you want to include hidden elements in the accessible name and description computation.
|
|
* Skips 2A in https://w3c.github.io/accname/#computation-steps.
|
|
* @default false
|
|
*/
|
|
hidden?: boolean;
|
|
}
|
|
/**
|
|
* implements https://w3c.github.io/accname/#mapping_additional_nd_te
|
|
* @param root
|
|
* @param options
|
|
* @returns
|
|
*/
|
|
export declare function computeTextAlternative(root: Element, options?: ComputeTextAlternativeOptions): string;
|
|
//# sourceMappingURL=accessible-name-and-description.d.ts.map
|