Files
klz-cables.com/.pnpm-store/v10/files/f5/87d822a3f42fbb236eb71cbf786930ba0f77473154821e75891ff450587a23f279a3d6e43cae1379796626ad0dd35ce95e6cb85c68729decdbd217147e3112
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

40 lines
1.1 KiB
Plaintext

import type { Where } from 'payload';
import React from 'react';
import type { FieldOption } from '../FieldSelect/reduceFieldOptions.js';
import './index.scss';
import '../../forms/RenderFields/index.scss';
import { type EditManyProps } from './index.js';
type EditManyDrawerContentProps = {
/**
* The total count of selected items
*/
count?: number;
/**
* The slug of the drawer
*/
drawerSlug: string;
/**
* The IDs of the selected items
*/
ids?: (number | string)[];
/**
* The function to call after a successful action
*/
onSuccess?: () => void;
/**
* Whether all items are selected
*/
selectAll?: boolean;
/**
* The fields that are selected to bulk edit
*/
selectedFields: FieldOption[];
/**
* The function to set the selected fields to bulk edit
*/
setSelectedFields: (fields: FieldOption[]) => void;
where?: Where;
} & EditManyProps;
export declare const EditManyDrawerContent: React.FC<EditManyDrawerContentProps>;
export {};
//# sourceMappingURL=DrawerContent.d.ts.map