UNPKG

@platform/ui.datagrid

Version:

Isolated tabular DataGrid.

75 lines (74 loc) 1.64 kB
import * as constants from './constants'; import * as t from './types'; export { constants, t }; export * from './util'; export * from './libs'; export * from '../types'; export declare const COLORS: { WHITE: string; DARK: string; BLUE: string; CLI: { BLUE: string; YELLOW: string; MAGENTA: string; CYAN: string; LIME: string; DARK_RED: string; PURPLE: string; PINK: string; }; }; export declare const CSS: { CLASS: { GRID: { BASE: string; EDITOR: string; FIRST: { ROW: string; COLUMN: string; }; }; CELL: { MARKDOWN: string; BASE: string; DEFAULT: string; EDITOR: string; BOLD: string; ITALIC: string; UNDERLINE: string; FORMULA: string; ERROR: string; }; EDITOR: { BASE: string; DEFAULT: string; }; SCREEN: { BASE: string; DEFAULT: string; }; }; }; export declare const DEFAULT: { NS: t.INs; KEY_BINDINGS: t.KeyBindings<t.GridCommand>; TOTAL_COLUMNS: number; TOTAL_ROWS: number; ROW: { HEIGHT: number; HEIGHT_MIN: number; }; COLUMN: { WIDTH: number; WIDTH_MIN: number; }; CELL: { RENDERER: string; PROPS: { style: t.IGridCellPropsStyleAll; merge: t.IGridCellPropsMergeAll; view: t.IGridCellPropsViewAll; }; }; };