Files
klz-cables.com/.pnpm-store/v10/files/45/575474dcbec9e347c4abc587fd600d2e6ac08d86c7d410f8334762c16c3344e2c372eee9978076890e0f75e79c8e32e8f0d91e8c08160c881148750474e877
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

28 lines
1.1 KiB
Plaintext

import type { StaticDescription, StaticLabel } from 'payload';
import type React from 'react';
import { type ChangeEvent } from 'react';
export type TextAreaInputProps = {
readonly AfterInput?: React.ReactNode;
readonly BeforeInput?: React.ReactNode;
readonly className?: string;
readonly Description?: React.ReactNode;
readonly description?: StaticDescription;
readonly Error?: React.ReactNode;
readonly inputRef?: React.RefObject<HTMLInputElement>;
readonly Label?: React.ReactNode;
readonly label?: StaticLabel;
readonly localized?: boolean;
readonly onChange?: (e: ChangeEvent<HTMLTextAreaElement>) => void;
readonly onKeyDown?: React.KeyboardEventHandler<HTMLInputElement>;
readonly path: string;
readonly placeholder?: string;
readonly readOnly?: boolean;
readonly required?: boolean;
readonly rows?: number;
readonly rtl?: boolean;
readonly showError?: boolean;
readonly style?: React.CSSProperties;
readonly value?: string;
readonly valueToRender?: string;
};
//# sourceMappingURL=types.d.ts.map