Files
klz-cables.com/.pnpm-store/v10/files/6b/870502ec4f8d47ab22906aa0a655846c7492c4603f0d4464a599340c23b5357a5fc89a3b1aebd1cc9b2a32fe65db28c38ee4454a89681b4de116d9bce250d4
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

15 lines
601 B
Plaintext

import type { ClientBlock, ClientWidget, Labels } from 'payload';
import React from 'react';
import './index.scss';
export type DrawerItem = ClientBlock | ClientWidget;
export type ItemsDrawerProps = {
readonly addRowIndex?: number;
readonly drawerSlug: string;
readonly items: (DrawerItem | string)[];
readonly labels?: Labels;
readonly onItemClick: (item: DrawerItem, index?: number) => Promise<void> | void;
readonly searchPlaceholder?: string;
readonly title?: string;
};
export declare const ItemsDrawer: React.FC<ItemsDrawerProps>;
//# sourceMappingURL=index.d.ts.map