UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

25 lines (24 loc) 983 B
import React from 'react'; import type { FlexContainerAllProps as FlexContainerProps } from '../../../../components/flex/Container'; import type { ArrayItemAreaProps } from '../Array/ArrayItemArea'; export type IterateViewContainerProps = { /** * The title of the ViewContainer. */ title?: React.ReactNode; /** * An alternative toolbar to be shown in the ViewContainer. */ toolbar?: React.ReactNode; /** * The variant of the toolbar. */ toolbarVariant?: ArrayItemAreaProps['toolbarVariant']; }; export type IterateViewContainerAllProps = IterateViewContainerProps & Omit<FlexContainerProps, 'onAnimationEnd'> & ArrayItemAreaProps; declare function ViewContainer(props: IterateViewContainerAllProps): import("react/jsx-runtime").JSX.Element; declare namespace ViewContainer { var EditButton: typeof import("./EditButton").default; var RemoveButton: typeof import("./RemoveButton").default; } export default ViewContainer;