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
19 lines
835 B
Plaintext
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 |