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
18 lines
1.2 KiB
Plaintext
18 lines
1.2 KiB
Plaintext
import type { Field } from '../../fields/config/types.js';
|
|
import type { ClientFieldWithOptionalType, ServerComponentProps } from './Field.js';
|
|
export type GenericErrorProps = {
|
|
readonly alignCaret?: 'center' | 'left' | 'right';
|
|
readonly message?: string;
|
|
readonly path?: string;
|
|
readonly showError?: boolean;
|
|
};
|
|
export type FieldErrorClientProps<TFieldClient extends ClientFieldWithOptionalType = ClientFieldWithOptionalType> = {
|
|
field: TFieldClient;
|
|
} & GenericErrorProps;
|
|
export type FieldErrorServerProps<TFieldServer extends Field, TFieldClient extends ClientFieldWithOptionalType = ClientFieldWithOptionalType> = {
|
|
clientField: TFieldClient;
|
|
readonly field: TFieldServer;
|
|
} & GenericErrorProps & ServerComponentProps;
|
|
export type FieldErrorClientComponent<TFieldClient extends ClientFieldWithOptionalType = ClientFieldWithOptionalType> = React.ComponentType<FieldErrorClientProps<TFieldClient>>;
|
|
export type FieldErrorServerComponent<TFieldServer extends Field = Field, TFieldClient extends ClientFieldWithOptionalType = ClientFieldWithOptionalType> = React.ComponentType<FieldErrorServerProps<TFieldServer, TFieldClient>>;
|
|
//# sourceMappingURL=Error.d.ts.map |