Props: {
    efx?: Function;
    focusEl?: HTMLElement | string;
    items?: Iterable<Items> | () => Iterable<Items>;
    keyCode?: string;
    menu?: Menu;
    offset?: { x?: number; y?: number };
    styles?: { [key: string]: string };
    transitionOptions?: { duration: number; easing: Function };
}

Props type alias for associated component.

Type declaration

  • Optionalefx?: Function
  • OptionalfocusEl?: HTMLElement | string
  • Optionalitems?: Iterable<Items> | () => Iterable<Items>
  • OptionalkeyCode?: string
  • Optionalmenu?: Menu
  • Optionaloffset?: { x?: number; y?: number }
  • Optionalstyles?: { [key: string]: string }
  • OptionaltransitionOptions?: { duration: number; easing: Function }