Files
klz-cables.com/.pnpm-store/v10/files/42/50e5ebd1ea50605b306b8a30ad56b2e11a94c979dfe6994b73d0eddf1539ff48954116d07f84ae00e8fb25edf02008a9fc068cdf2c45f928eff60c7e88bbf2
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

20 lines
649 B
Plaintext

import { CSSParsedDeclaration } from '../css/index';
import { TextContainer } from './text-container';
import { Bounds } from '../css/layout/bounds';
import { Context } from '../core/context';
export declare const enum FLAGS {
CREATES_STACKING_CONTEXT = 2,
CREATES_REAL_STACKING_CONTEXT = 4,
IS_LIST_OWNER = 8,
DEBUG_RENDER = 16
}
export declare class ElementContainer {
protected readonly context: Context;
readonly styles: CSSParsedDeclaration;
readonly textNodes: TextContainer[];
readonly elements: ElementContainer[];
bounds: Bounds;
flags: number;
constructor(context: Context, element: Element);
}