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
33 lines
855 B
Plaintext
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 |