@karmaniverous/hook-form-semantic
    Preparing search index...

    Interface HookFormMenuProps<T>

    interface HookFormMenuProps<T extends FieldValues> {
        hookControl?: Control<T, any, T>;
        hookDefaultValue?: PathValueImpl<T, Path<T>>;
        hookDisabled?: boolean;
        hookName: Path<T>;
        hookRules?: Omit<
            RegisterOptions<T, Path<T>>,
            "disabled" | "valueAsNumber" | "valueAsDate" | "setValueAs",
        >;
        hookShouldUnregister?: boolean;
        menuAs?: any;
        menuAttached?: boolean | "bottom" | "top";
        menuBorderless?: boolean;
        menuClassName?: string;
        menuColor?: SemanticCOLORS;
        menuCompact?: boolean;
        menuDefaultActiveIndex?: string | number;
        menuFixed?: "left" | "right" | "bottom" | "top";
        menuFloated?: boolean | "right";
        menuFluid?: boolean;
        menuIcon?: boolean | "labeled";
        menuInverted?: boolean;
        menuItems?: SemanticShorthandCollection<MenuItemProps>;
        menuPagination?: boolean;
        menuPointing?: boolean;
        menuSecondary?: boolean;
        menuSize?: "small" | "large" | "mini" | "tiny" | "huge" | "massive";
        menuStackable?: boolean;
        menuTabular?: boolean | "right";
        menuText?: boolean;
        menuVertical?: boolean;
        menuWidths?: SemanticWIDTHS;
        [key: string]: any;
        [key: number]: any;
    }

    Type Parameters

    • T extends FieldValues

    Hierarchy

    • Omit<
          FormFieldProps,
          | "children"
          | "checked"
          | "disabled"
          | "error"
          | "name"
          | "onBlur"
          | "onChange"
          | "ref"
          | "value",
      >
    • PrefixedPartial<
          Omit<StrictMenuProps, "activeIndex" | "children" | "onItemClick">,
          "menu",
      >
    • PrefixedPartial<Omit<ControllerProps<T>, "render">, "hook">
      • HookFormMenuProps

    Indexable

    • [key: string]: any
    • [key: number]: any
    Index

    Properties

    hookControl?: Control<T, any, T>
    hookDefaultValue?: PathValueImpl<T, Path<T>>
    hookDisabled?: boolean
    hookName: Path<T>
    hookRules?: Omit<
        RegisterOptions<T, Path<T>>,
        "disabled" | "valueAsNumber" | "valueAsDate" | "setValueAs",
    >
    hookShouldUnregister?: boolean
    menuAs?: any
    menuAttached?: boolean | "bottom" | "top"
    menuBorderless?: boolean
    menuClassName?: string
    menuColor?: SemanticCOLORS
    menuCompact?: boolean
    menuDefaultActiveIndex?: string | number
    menuFixed?: "left" | "right" | "bottom" | "top"
    menuFloated?: boolean | "right"
    menuFluid?: boolean
    menuIcon?: boolean | "labeled"
    menuInverted?: boolean
    menuItems?: SemanticShorthandCollection<MenuItemProps>
    menuPagination?: boolean
    menuPointing?: boolean
    menuSecondary?: boolean
    menuSize?: "small" | "large" | "mini" | "tiny" | "huge" | "massive"
    menuStackable?: boolean
    menuTabular?: boolean | "right"
    menuText?: boolean
    menuVertical?: boolean
    menuWidths?: SemanticWIDTHS