Files
klz-cables.com/.pnpm-store/v10/files/43/baf707a07ee00c51b93b73c2f1037758eaa2c7336bd980154b7acfd7021424b106647d4cc30d4580710cea66d3dbf5ccfc4e05261f4592c63d6ca26b1f0fdb
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

14 lines
691 B
Plaintext

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