Files
klz-cables.com/.pnpm-store/v10/files/a1/2a82f2c471839e98a96a2e6873e99c2722cf0f509e1cfe11f31d8ae1a2fc175849c9e5c0a7adaf943dd8ce172ee11f66f5821199cba667d2504df81ef1437c
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
993 B
Plaintext

import type { I18nClient } from '@payloadcms/translations';
import type { ClientField, DefaultCellComponentProps, Document, Field, Payload, PayloadRequest, ViewTypes } from 'payload';
type RenderCellArgs = {
readonly clientField: ClientField;
readonly collectionSlug: string;
readonly columnIndex: number;
readonly customCellProps: DefaultCellComponentProps['customCellProps'];
readonly doc: Document;
readonly enableRowSelections: boolean;
readonly i18n: I18nClient;
readonly isLinkedColumn: boolean;
readonly payload: Payload;
readonly req?: PayloadRequest;
readonly rowIndex: number;
readonly serverField: Field;
readonly viewType?: ViewTypes;
};
export declare function renderCell({ clientField, collectionSlug, columnIndex, customCellProps, doc, enableRowSelections, i18n, isLinkedColumn, payload, req, rowIndex, serverField, viewType, }: RenderCellArgs): import("react").JSX.Element;
export {};
//# sourceMappingURL=renderCell.d.ts.map