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
14 lines
691 B
Plaintext
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 |