Files
klz-cables.com/.pnpm-store/v10/files/10/40c7ce2df6787f50681524a29debf8c222ad5d382d90b4b75d448a1aa54db73dcb852a1d829bb114896df3532ef444e9b13f4e105f79aedd3a45ae276230d9
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
697 B
Plaintext

import React from 'react';
import './index.scss';
import type { Data, FileSizes, SanitizedCollectionConfig } from 'payload';
export type DraggableFileDetailsProps = {
collectionSlug: string;
customUploadActions?: React.ReactNode[];
doc: {
sizes?: FileSizes;
} & Data;
enableAdjustments?: boolean;
hasImageSizes?: boolean;
hasMany: boolean;
hideRemoveFile?: boolean;
imageCacheTag?: string;
isSortable?: boolean;
removeItem?: (index: number) => void;
rowIndex: number;
uploadConfig: SanitizedCollectionConfig['upload'];
};
export declare const DraggableFileDetails: React.FC<DraggableFileDetailsProps>;
//# sourceMappingURL=index.d.ts.map