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

28 lines
861 B
Plaintext

'use client';
import { ArrayCell } from './Array/index.js';
import { BlocksCell } from './Blocks/index.js';
import { CheckboxCell } from './Checkbox/index.js';
import { CodeCell } from './Code/index.js';
import { DateCell } from './Date/index.js';
import { FileCell } from './File/index.js';
import { JSONCell } from './JSON/index.js';
import { RelationshipCell } from './Relationship/index.js';
import { SelectCell } from './Select/index.js';
import { TextareaCell } from './Textarea/index.js';
export const cellComponents = {
array: ArrayCell,
blocks: BlocksCell,
checkbox: CheckboxCell,
code: CodeCell,
date: DateCell,
File: FileCell,
join: RelationshipCell,
json: JSONCell,
radio: SelectCell,
relationship: RelationshipCell,
select: SelectCell,
textarea: TextareaCell,
upload: RelationshipCell
};
//# sourceMappingURL=index.js.map