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

29 lines
1.2 KiB
Plaintext

import type { ClientCollectionConfig, QueryPreset, ResolvedFilterOptions, SanitizedCollectionPermission, Where } from 'payload';
export type ListControlsProps = {
readonly beforeActions?: React.ReactNode[];
readonly collectionConfig: ClientCollectionConfig;
readonly collectionSlug: string;
/**
* @deprecated
* These are now handled by the `ListSelection` component
*/
readonly disableBulkDelete?: boolean;
/**
* @deprecated
* These are now handled by the `ListSelection` component
*/
readonly disableBulkEdit?: boolean;
readonly disableQueryPresets?: boolean;
readonly enableColumns?: boolean;
readonly enableFilters?: boolean;
readonly enableSort?: boolean;
readonly handleSearchChange?: (search: string) => void;
readonly handleSortChange?: (sort: string) => void;
readonly handleWhereChange?: (where: Where) => void;
readonly listMenuItems?: React.ReactNode[];
readonly queryPreset?: QueryPreset;
readonly queryPresetPermissions?: SanitizedCollectionPermission;
readonly renderedFilters?: Map<string, React.ReactNode>;
readonly resolvedFilterOptions?: Map<string, ResolvedFilterOptions>;
};
//# sourceMappingURL=types.d.ts.map