Files
klz-cables.com/.pnpm-store/v10/files/86/0bae587214101027240d5d577f93231769379b93bfb4dabbcc50e4ca5024ea572c6b038a08b8478925bedf1c08acdbae8b1d689fc7049d213864b4d079267e
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
1.3 KiB
Plaintext

import type { LabelFunction, OptionObject, StaticDescription, StaticLabel } from 'payload';
import React from 'react';
import type { ReactSelectAdapterProps } from '../../elements/ReactSelect/types.js';
import './index.scss';
export type SelectInputProps = {
readonly AfterInput?: React.ReactNode;
readonly BeforeInput?: React.ReactNode;
readonly className?: string;
readonly Description?: React.ReactNode;
readonly description?: StaticDescription;
readonly Error?: React.ReactNode;
readonly filterOption?: ReactSelectAdapterProps['filterOption'];
readonly hasMany?: boolean;
readonly id?: string;
readonly isClearable?: boolean;
readonly isSortable?: boolean;
readonly Label?: React.ReactNode;
readonly label?: StaticLabel;
readonly localized?: boolean;
readonly name: string;
readonly onChange?: ReactSelectAdapterProps['onChange'];
readonly onInputChange?: ReactSelectAdapterProps['onInputChange'];
readonly options?: OptionObject[];
readonly path: string;
readonly placeholder?: LabelFunction | string;
readonly readOnly?: boolean;
readonly required?: boolean;
readonly showError?: boolean;
readonly style?: React.CSSProperties;
readonly value?: string | string[];
};
export declare const SelectInput: React.FC<SelectInputProps>;
//# sourceMappingURL=Input.d.ts.map