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.**
15 lines (14 loc) • 783 B
TypeScript
/**
* ================ ANALYTIC COLUMN 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 column properties bên dưới
* 2. Với gridArea, có format {row: value trong 3 devices, column: value trong 3 devices}
* + row từ grid-row hoặc grid-area (available cho 3 devices)
* + column từ grid-column hoặc grid-area (available cho 3 devices)
* 3. Với alignSelf, từ align-self, value: auto (default), start, center, end
*/
export declare const extractGridAreaValues: (gridArea: string) => {
row: number;
column: number;
};
export declare const columnAEP: (cssText: string) => import('../../../domains/entities/style.entity').ResultStyles;