Files
klz-cables.com/.pnpm-store/v10/files/a0/5b323814d5c9025925ba2f2d08958d24b20ab3269e6f929d298f2154bd7d4e78a31873e234f23e50afae0ffdf3420c46f1e1546227d060b83d43ff7fad632f
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

36 lines
928 B
Plaintext

import { IPropertyListDescriptor } from '../IPropertyDescriptor';
export declare const enum DISPLAY {
NONE = 0,
BLOCK = 2,
INLINE = 4,
RUN_IN = 8,
FLOW = 16,
FLOW_ROOT = 32,
TABLE = 64,
FLEX = 128,
GRID = 256,
RUBY = 512,
SUBGRID = 1024,
LIST_ITEM = 2048,
TABLE_ROW_GROUP = 4096,
TABLE_HEADER_GROUP = 8192,
TABLE_FOOTER_GROUP = 16384,
TABLE_ROW = 32768,
TABLE_CELL = 65536,
TABLE_COLUMN_GROUP = 131072,
TABLE_COLUMN = 262144,
TABLE_CAPTION = 524288,
RUBY_BASE = 1048576,
RUBY_TEXT = 2097152,
RUBY_BASE_CONTAINER = 4194304,
RUBY_TEXT_CONTAINER = 8388608,
CONTENTS = 16777216,
INLINE_BLOCK = 33554432,
INLINE_LIST_ITEM = 67108864,
INLINE_TABLE = 134217728,
INLINE_FLEX = 268435456,
INLINE_GRID = 536870912
}
export declare type Display = number;
export declare const display: IPropertyListDescriptor<Display>;