Files
klz-cables.com/.pnpm-store/v10/files/97/86fc86fbc934d02c3b5083e89c1f419332d481fc306df720efe6cfd0fc16ac4661e6868787021c1a1a7b5694a9ed50770e788c88e88c787c67f4e0ea720d11
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

32 lines
1.2 KiB
Plaintext

import type { ClientBlock, ClientField, Labels, Row, SanitizedFieldPermissions } from 'payload';
import React from 'react';
import type { UseDraggableSortableReturn } from '../../elements/DraggableSortable/useDraggableSortable/types.js';
type BlocksFieldProps = {
addRow: (rowIndex: number, blockType: string) => Promise<void> | void;
block: ClientBlock;
blocks: (ClientBlock | string)[] | ClientBlock[];
copyRow: (rowIndex: number) => void;
duplicateRow: (rowIndex: number) => void;
errorCount: number;
fields: ClientField[];
hasMaxRows?: boolean;
isLoading?: boolean;
isSortable?: boolean;
Label?: React.ReactNode;
labels: Labels;
moveRow: (fromIndex: number, toIndex: number) => void;
parentPath: string;
pasteRow: (rowIndex: number) => void;
path: string;
permissions: SanitizedFieldPermissions;
readOnly: boolean;
removeRow: (rowIndex: number) => void;
row: Row;
rowCount: number;
rowIndex: number;
schemaPath: string;
setCollapse: (id: string, collapsed: boolean) => void;
} & UseDraggableSortableReturn;
export declare const BlockRow: React.FC<BlocksFieldProps>;
export {};
//# sourceMappingURL=BlockRow.d.ts.map