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
19 lines
877 B
Plaintext
19 lines
877 B
Plaintext
import type { ClientFieldBase, FieldTypes, GenericDescriptionProps, GenericErrorProps, GenericLabelProps, HiddenFieldProps } from 'payload';
|
|
import type React from 'react';
|
|
import type { ConfirmPasswordFieldProps } from './ConfirmPassword/index.js';
|
|
export * from './shared/index.js';
|
|
export type FieldTypesComponents = {
|
|
[K in 'password' | FieldTypes]: React.FC<ClientFieldBase>;
|
|
} & {
|
|
confirmPassword: React.FC<ConfirmPasswordFieldProps>;
|
|
hidden: React.FC<HiddenFieldProps>;
|
|
};
|
|
export declare const fieldComponents: FieldTypesComponents;
|
|
export type FieldComponentsWithSlots = {
|
|
Description: React.FC<GenericDescriptionProps>;
|
|
Error: React.FC<GenericErrorProps>;
|
|
Label: React.FC<GenericLabelProps>;
|
|
RowLabel: React.FC;
|
|
} & FieldTypesComponents;
|
|
export declare const allFieldComponents: FieldComponentsWithSlots;
|
|
//# sourceMappingURL=index.d.ts.map |