Files
klz-cables.com/.pnpm-store/v10/files/fa/8b7ac1708ce1835da6279a3d660945897c52b6b42a4e5b7a3c62cdd7ac67b3bcbabd11023658ae1216c9d71a8a1c18f561a7d8de43df3e79f7b1dc2dd6ece2
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

21 lines
747 B
Plaintext

import type { FormStateWithoutComponents } from 'payload';
import { type FC } from 'react';
import type { ClipboardCopyData, OnPasteFn } from './types.js';
type Props = {
allowCopy?: boolean;
allowPaste?: boolean;
className?: string;
copyClassName?: string;
disabled?: boolean;
getDataToCopy: () => FormStateWithoutComponents;
isRow?: boolean;
onPaste: OnPasteFn;
pasteClassName?: string;
} & ClipboardCopyData;
/**
* Menu actions for copying and pasting fields. Currently, this is only used in Arrays and Blocks.
* @note This component doesn't use the Clipboard API, but localStorage. See rationale in #11513
*/
export declare const ClipboardAction: FC<Props>;
export {};
//# sourceMappingURL=index.d.ts.map