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

19 lines
835 B
Plaintext

import type { ClientBlock, ClientField, Labels } from 'payload';
import React from 'react';
export declare const RowActions: React.FC<{
readonly addRow: (rowIndex: number, blockType: string) => Promise<void> | void;
readonly blocks: (ClientBlock | string)[];
readonly blockType: string;
readonly copyRow: (rowIndex: number) => void;
readonly duplicateRow: (rowIndex: number, blockType: string) => void;
readonly fields: ClientField[];
readonly hasMaxRows?: boolean;
readonly isSortable?: boolean;
readonly labels: Labels;
readonly moveRow: (fromIndex: number, toIndex: number) => void;
readonly pasteRow: (rowIndex: number) => void;
readonly removeRow: (rowIndex: number) => void;
readonly rowCount: number;
readonly rowIndex: number;
}>;
//# sourceMappingURL=RowActions.d.ts.map