Files
klz-cables.com/.pnpm-store/v10/files/7c/604f5fba7ab5ee69ad46650f8a9c5bb8e7118fd98d4a7d2b1b8798e819d186e300447a293f615e35ad44aa055301131d54f3ca8bb0b8ebb0578fe0ac4a81fb
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.4 KiB
Plaintext

import type { ArrayField, ClientComponentProps, ClientField, Row, SanitizedFieldPermissions } from 'payload';
import React from 'react';
import type { UseDraggableSortableReturn } from '../../elements/DraggableSortable/useDraggableSortable/types.js';
import './index.scss';
type ArrayRowProps = {
readonly addRow: (rowIndex: number) => Promise<void> | void;
readonly copyRow: (rowIndex: number) => void;
readonly CustomRowLabel?: React.ReactNode;
readonly duplicateRow: (rowIndex: number) => void;
readonly errorCount: number;
readonly fields: ClientField[];
readonly hasMaxRows?: boolean;
readonly isLoading?: boolean;
readonly isSortable?: boolean;
readonly labels: Partial<ArrayField['labels']>;
readonly moveRow: (fromIndex: number, toIndex: number) => void;
readonly parentPath: string;
readonly pasteRow: (rowIndex: number) => void;
readonly path: string;
readonly permissions: SanitizedFieldPermissions;
readonly readOnly?: boolean;
readonly removeRow: (rowIndex: number) => void;
readonly row: Row;
readonly rowCount: number;
readonly rowIndex: number;
readonly schemaPath: string;
readonly scrollIdPrefix: string;
readonly setCollapse: (rowID: string, collapsed: boolean) => void;
} & Pick<ClientComponentProps, 'forceRender'> & UseDraggableSortableReturn;
export declare const ArrayRow: React.FC<ArrayRowProps>;
export {};
//# sourceMappingURL=ArrayRow.d.ts.map