Function _passwordItem

    • Build password item

      Parameters

      • item: {
            default?: string | number | boolean;
            label: string;
            options?: string[];
            props?: any;
            rules?: {
                max?: number;
                message?: string;
                min?: number;
                required?: boolean;
            }[];
            secret?: boolean;
            tooltip?: string;
            type: "password" | "input" | "select" | "textarea";
            value?: string | number | boolean;
        }

        Item

        • Optional default?: string | number | boolean
        • label: string
        • Optional options?: string[]
        • Optional props?: any
        • Optional rules?: {
              max?: number;
              message?: string;
              min?: number;
              required?: boolean;
          }[]
        • Optional secret?: boolean
        • Optional tooltip?: string
        • type: "password" | "input" | "select" | "textarea"
        • Optional value?: string | number | boolean
      • key: string

        Key

      Returns ReactElement<any, string | JSXElementConstructor<any>>

    Generated using TypeDoc and TypeDoc Airthium Plugin