Files
klz-cables.com/.pnpm-store/v10/files/dc/f6893388a87af1991a1c3175c231fdb96e99f54f6407dd90a2bd77ba0cca797baa28d5adf92d08c0d079a7b83763c838450837e14712bea0dfd7df50220d1b
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
783 B
Plaintext

import type { Option, OptionObject } from 'payload';
import React from 'react';
import type { SelectInputProps } from './Input.js';
import { SelectInput } from './Input.js';
export declare const formatOptions: (options: Option[]) => OptionObject[];
export declare const SelectField: React.FC<{
readonly onChange?: (e: string | string[]) => void;
readonly path: string;
readonly validate?: import("payload").SelectFieldValidation;
readonly value?: string | string[];
} & {
readonly field: Omit<import("payload").SelectFieldClient, "type"> & Partial<Pick<import("payload").SelectFieldClient, "type">>;
} & Omit<import("payload").ClientComponentProps, "customComponents" | "field">>;
export { SelectInput, type SelectInputProps };
//# sourceMappingURL=index.d.ts.map