UNPKG

@platform/ui.datagrid

Version:

Isolated tabular DataGrid.

27 lines (26 loc) 958 B
import * as util from '@platform/ui.datagrid.util'; export { util }; import { events, containsFocus, Keyboard } from '@platform/react'; export { events, containsFocus, Keyboard }; import { css, style, color, CssValue } from '@platform/css'; export { css, style, color, CssValue }; import { value, time, defaultValue } from '@platform/util.value'; export { value, time, defaultValue }; import { log } from '@platform/log/lib/client'; export { log }; import { MemoryCache } from '@platform/cache'; export { MemoryCache }; import * as cell from './libs.cell'; import { coord, Schema, func } from './libs.cell'; export { cell, coord, Schema, func }; import { clamp, clone, equals, flatten, pipe, prop, uniq, uniqBy } from 'ramda'; export declare const R: { clamp: typeof clamp; clone: typeof clone; equals: typeof equals; flatten: typeof flatten; prop: typeof prop; uniq: typeof uniq; uniqBy: typeof uniqBy; pipe: typeof pipe; };