UNPKG

@kubit-ui-web/react-components

Version:

Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience

13 lines (12 loc) 546 B
import { DataTableTableConfigType } from '../types/dataTable'; type ApplyZIndexToWrapperParams = { tableConfig?: DataTableTableConfigType; zIndex?: number; }; export declare const applyZIndexToWrapper: ({ tableConfig, zIndex, }: ApplyZIndexToWrapperParams) => DataTableTableConfigType; type ApplyPositionToWrapperParams = { tableConfig?: DataTableTableConfigType; position?: string; }; export declare const applyPositionToWrapper: ({ tableConfig, position, }: ApplyPositionToWrapperParams) => DataTableTableConfigType; export {};