UNPKG

@linzjs/step-ag-grid

Version:

[![semantic-release: angular](https://img.shields.io/badge/semantic--release-angular-e10079?logo=semantic-release)](https://github.com/semantic-release/semantic-release) > Reusable [ag-grid](https://www.ag-grid.com/) component for LINZ / Toitū te whenua.

10 lines (9 loc) 651 B
import { LegacyRef, ReactElement } from 'react'; import { BaseProps } from '../types'; import { withHoveringResultProps } from '../utils/withHovering'; export interface FocusableItemProps extends BaseProps, withHoveringResultProps { disabled?: boolean; children: (ref: LegacyRef<any>) => ReactElement; } export declare const FocusableItemFr: ({ className, disabled, children, isHovering, menuItemRef, externalRef, ...restProps }: FocusableItemProps) => import("react/jsx-runtime").JSX.Element; export declare const FocusableItem: import("react").ForwardRefExoticComponent<Omit<FocusableItemProps, "ref"> & import("react").RefAttributes<any>>;