Component that conditionally renders its children based on the visibility criteria.

  • Type Parameters

    • Data extends unknown = any

    Parameters

    • props: IFragmentLayoutProps<Data, any> & IFragmentLayoutPrivate<Data>

      The component props.

      Represents the props for the IFragmentLayout component.

      • Optionalfeatures?: string[]
      • Optionalhidden?: boolean | (payload: Payload) => boolean
      • OptionalisVisible?: (v: Data, payload: Payload) => boolean
      • children

        The children to be rendered.

      • isVisible

        The function used to determine if the component should be visible.

      • ready

        The function to be called when the component is ready.

      • object

        The object used by the isVisible function.

    Returns Element

    • The rendered React node.

Properties

Properties

displayName: string