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

33 lines
1.2 KiB
Plaintext

import type { I18nClient, TFunction } from '@payloadcms/translations';
import type { ClientCollectionConfig, ViewTypes } from 'payload';
import React from 'react';
import './index.scss';
export type ListHeaderProps = {
Actions?: React.ReactNode[];
className?: string;
collectionConfig: ClientCollectionConfig;
Description?: React.ReactNode;
disableBulkDelete?: boolean;
disableBulkEdit?: boolean;
hasCreatePermission: boolean;
hasDeletePermission?: boolean;
i18n: I18nClient;
isBulkUploadEnabled: boolean;
isTrashEnabled?: boolean;
newDocumentURL: string;
onBulkUploadSuccess?: () => void;
/** @deprecated This prop will be removed in the next major version.
*
* Opening of the bulk upload modal is handled internally.
*
* Prefer `onBulkUploadSuccess` usage to handle the success of the bulk upload.
*/
openBulkUpload: () => void;
smallBreak: boolean;
/** @deprecated This prop will be removed in the next major version. */
t?: TFunction;
TitleActions?: React.ReactNode[];
viewType?: ViewTypes;
};
export declare const CollectionListHeader: React.FC<ListHeaderProps>;
//# sourceMappingURL=index.d.ts.map