Files
klz-cables.com/.pnpm-store/v10/files/56/352197ac4020479496bec548b18a7e59d364eaecde6e9bc22d23b79991ff42989dfc3482aef4b7b2dcdc36444fc5ca807b0a40c713515a45e2ff8e957d4124
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

39 lines
1.5 KiB
Plaintext

import type { StaticDescription, StaticLabel } from 'payload';
import type { ChangeEvent, JSX } from 'react';
import type React from 'react';
import type { Option, ReactSelectAdapterProps } from '../../elements/ReactSelect/types.js';
export type SharedTextFieldProps = {
readonly hasMany?: false;
readonly onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
} | {
readonly hasMany?: true;
readonly onChange?: ReactSelectAdapterProps['onChange'];
};
export type TextInputProps = {
readonly AfterInput?: React.ReactNode;
readonly BeforeInput?: React.ReactNode;
readonly className?: string;
readonly Description?: React.ReactNode;
readonly description?: StaticDescription;
readonly Error?: React.ReactNode;
readonly htmlAttributes?: {
autoComplete?: JSX.IntrinsicElements['input']['autoComplete'];
};
readonly inputRef?: React.RefObject<HTMLInputElement>;
readonly Label?: React.ReactNode;
readonly label?: StaticLabel;
readonly localized?: boolean;
readonly maxRows?: number;
readonly minRows?: number;
readonly onKeyDown?: React.KeyboardEventHandler<HTMLInputElement>;
readonly path: string;
readonly placeholder?: Record<string, string> | string;
readonly readOnly?: boolean;
readonly required?: boolean;
readonly rtl?: boolean;
readonly showError?: boolean;
readonly style?: React.CSSProperties;
readonly value?: string;
readonly valueToRender?: Option[];
} & SharedTextFieldProps;
//# sourceMappingURL=types.d.ts.map