Files
klz-cables.com/.pnpm-store/v10/files/42/15f9be50d62b7bd5c08899c6f69db3e32680f175aea2eac733379fd4bdc80d70731c4afb29330f95a9deee79dbf722e5f0c0989c3846a7b2ea294129f22a4b
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
855 B
Plaintext

import type { ParsedQs } from 'qs-esm';
export type SearchFilterProps = {
/**
* This prop is deprecated and will be removed in the next major version.
*
* @deprecated
*/
fieldName?: string;
handleChange?: (search: string) => void;
/**
* This prop is deprecated and will be removed in the next major version.
*
* Prefer passing in `searchString` instead.
*
* @deprecated
*/
initialParams?: ParsedQs;
label: string;
searchQueryParam?: string;
/**
* This prop is deprecated and will be removed in the next major version.
*
* @deprecated
*/
setValue?: (arg: string) => void;
/**
* This prop is deprecated and will be removed in the next major version.
*
* @deprecated
*/
value?: string;
};
//# sourceMappingURL=types.d.ts.map