Files
klz-cables.com/.pnpm-store/v10/files/c7/3cb825d1126891d64f5d5f3ada23e5dc085c2c0a05bd22a11f41f1cacbd4f4aa0399a1eac942bf5230abd0ba2b682d2f77673350353c56c3533f39a075a58f
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
755 B
Plaintext

import type { TextareaFieldValidation } from 'payload';
import React from 'react';
import type { TextAreaInputProps } from './types.js';
import './index.scss';
import { TextareaInput } from './Input.js';
export { TextareaInput, TextAreaInputProps };
export declare const TextareaField: React.FC<{
readonly inputRef?: React.Ref<HTMLInputElement>;
readonly onKeyDown?: React.KeyboardEventHandler<HTMLInputElement>;
readonly path: string;
readonly validate?: TextareaFieldValidation;
} & {
readonly field: Omit<import("payload").TextareaFieldClient, "type"> & Partial<Pick<import("payload").TextareaFieldClient, "type">>;
} & Omit<import("payload").ClientComponentProps, "customComponents" | "field">>;
//# sourceMappingURL=index.d.ts.map