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

30 lines
837 B
Plaintext

import React from 'react';
import type { PopupProps } from '../Popup/index.js';
import './index.scss';
/**
* @internal
* @experimental
*/
export type ComboboxEntry = {
Component: React.ReactNode;
name: string;
};
/**
* @internal
* @experimental
*/
export type ComboboxProps = {
entries: ComboboxEntry[];
/** Minimum number of entries required to show search */
minEntriesForSearch?: number;
onSelect?: (entry: ComboboxEntry) => void;
searchPlaceholder?: string;
} & Omit<PopupProps, 'children' | 'render'>;
/**
* A wrapper on top of Popup + PopupList.ButtonGroup that adds search functionality.
*
* @internal - this component may be removed or receive breaking changes in minor releases.
* @experimental
*/
export declare const Combobox: React.FC<ComboboxProps>;
//# sourceMappingURL=index.d.ts.map