Files
klz-cables.com/.pnpm-store/v10/files/91/ca5241f5890b34914e3a5e2bcd0f39fff71123f3ed7884f46c40a81817725e580f454b41e4118e866c4ed32331a94e6339be7353c500c2397993a794614b8b
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

25 lines
1023 B
Plaintext

import { ElementContainer } from '../dom/element-container';
import { BoundCurves } from './bound-curves';
import { EffectTarget, IElementEffect } from './effects';
export declare class StackingContext {
element: ElementPaint;
negativeZIndex: StackingContext[];
zeroOrAutoZIndexOrTransformedOrOpacity: StackingContext[];
positiveZIndex: StackingContext[];
nonPositionedFloats: StackingContext[];
nonPositionedInlineLevel: StackingContext[];
inlineLevel: ElementPaint[];
nonInlineLevel: ElementPaint[];
constructor(container: ElementPaint);
}
export declare class ElementPaint {
readonly container: ElementContainer;
readonly parent: ElementPaint | null;
readonly effects: IElementEffect[];
readonly curves: BoundCurves;
listValue?: string;
constructor(container: ElementContainer, parent: ElementPaint | null);
getEffects(target: EffectTarget): IElementEffect[];
}
export declare const parseStackingContexts: (container: ElementContainer) => StackingContext;