Hierarchy (View Summary)

Implements

Constructors

  • Parameters

    • model: OmitNodeName<
          {
              component?: "default"
              | "textarea";
              default?: string;
              description?: string;
              hideLabel?: boolean;
              key: string;
              label?: string;
              nodeName: FormNodeNameEnum;
              optional?: boolean;
              placeholder?: string;
              type?:
                  | "number"
                  | "search"
                  | "text"
                  | "date"
                  | "url"
                  | "color"
                  | "datetime-local"
                  | "month"
                  | "password"
                  | "week"
                  | "time";
          },
      >

    Returns Form.InputField

Properties

component?: "default" | "textarea"
default?: any
description?: string
hideLabel?: boolean
key: string
label?: string
nodeName: EnumValues<typeof FormNodeNameEnum> = FormNodeNameEnum.Input
optional?: boolean
placeholder?: string

Methods

  • Returns {
        component?: "default" | "textarea";
        default?: string;
        description?: string;
        hideLabel?: boolean;
        key: string;
        label?: string;
        nodeName: FormNodeNameEnum;
        optional?: boolean;
        placeholder?: string;
        type?:
            | "number"
            | "search"
            | "text"
            | "date"
            | "url"
            | "color"
            | "datetime-local"
            | "month"
            | "password"
            | "week"
            | "time";
    }