xobuilder-extractor
Version:
> **A sophisticated web application that converts HTML and CSS to JSON layout through an intelligent multi-step flow process with AI validation.**
13 lines (12 loc) • 958 B
TypeScript
/**
* ================ ANALYTIC SECTION PROPERTIES ================
* Handle properties:
* 1. Với styles, lấy những style có trong styles field, ngoại trừ 1 số trường hợp conflix với section properties bên dưới
* 2. Với containerWidth, boxed nếu có max-width và max-width != 100%, fullWidth là default
* 3. Với maxWidth, nếu containerWidth là boxed, lấy max-width (available cho 3 devices)
* 4. Với containerGapSelector, custom nếu có padding-left và padding-right bằng nhau, global nếu không
* 5. Với containerGap, nếu containerGapSelector là custom, lấy padding-left/right (available cho 3 devices)
* 6. Với heightSelector, custom nếu có min-height, auto là default
* 7. Với minHeight, nếu heightSelector là custom, lấy min-height (available cho 3 devices)
*/
export declare const sectionAEP: (cssText: string) => import('../../../domains/entities/style.entity').ResultStyles;