🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

react-data-grid

Package Overview
Dependencies
Maintainers
1
Versions
1055
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-data-grid - npm Package Compare versions

Comparing version

to
7.0.0-beta.55

44

lib/index.d.ts

@@ -1,12 +0,12 @@

import * as react3 from "react";
import * as react13 from "react";
import * as react1 from "react";
import * as react14 from "react";
import * as react9 from "react";
import { Key, ReactElement, ReactNode } from "react";
import * as react_jsx_runtime6 from "react/jsx-runtime";
import * as react_jsx_runtime4 from "react/jsx-runtime";
import * as react_jsx_runtime0 from "react/jsx-runtime";
import * as react_jsx_runtime13 from "react/jsx-runtime";
import * as react_jsx_runtime11 from "react/jsx-runtime";
import * as react_jsx_runtime9 from "react/jsx-runtime";
import * as react_jsx_runtime4 from "react/jsx-runtime";
import * as react_jsx_runtime5 from "react/jsx-runtime";
import * as react_jsx_runtime7 from "react/jsx-runtime";
import * as react_jsx_runtime8 from "react/jsx-runtime";
import * as react_jsx_runtime6 from "react/jsx-runtime";

@@ -154,3 +154,3 @@ //#region src/types.d.ts

rowIdx: number;
selectCell: (position: Position, enableEditor?: Maybe<boolean>) => void;
selectCell: (position: Position, options?: SelectCellOptions) => void;
}

@@ -183,3 +183,3 @@ interface CellRendererProps<TRow, TSummaryRow> extends BaseCellRendererProps<TRow, TSummaryRow> {

rowIdx: number;
selectCell: (position: Position, enableEditor?: Maybe<boolean>) => void;
selectCell: (position: Position, options?: SelectCellOptions) => void;
}

@@ -290,2 +290,6 @@ interface EditCellKeyDownArgs<TRow, TSummaryRow = unknown> {

}
interface SelectCellOptions {
enableEditor?: Maybe<boolean>;
shouldFocusCell?: Maybe<boolean>;
}
interface ColumnWidth {

@@ -311,3 +315,3 @@ readonly type: 'resized' | 'measured';

scrollToCell: (position: PartialPosition) => void;
selectCell: (position: Position, enableEditor?: Maybe<boolean>) => void;
selectCell: (position: Position, options: SelectCellOptions) => void;
}

@@ -424,3 +428,3 @@ type SharedDivProps = Pick<React.ComponentProps<'div'>, 'role' | 'aria-label' | 'aria-labelledby' | 'aria-description' | 'aria-describedby' | 'aria-rowcount' | 'className' | 'style'>;

*/
declare function DataGrid<R, SR = unknown, K extends Key = Key>(props: DataGridProps<R, SR, K>): react_jsx_runtime6.JSX.Element;
declare function DataGrid<R, SR = unknown, K extends Key = Key>(props: DataGridProps<R, SR, K>): react_jsx_runtime4.JSX.Element;

@@ -460,3 +464,3 @@ //#endregion

//#region src/DataGridDefaultRenderersContext.d.ts
declare const DataGridDefaultRenderersContext: react3.Context<Maybe<Renderers<any, any>>>;
declare const DataGridDefaultRenderersContext: react1.Context<Maybe<Renderers<any, any>>>;

@@ -482,7 +486,7 @@ //#endregion

...props
}: RenderCheckboxProps): react_jsx_runtime11.JSX.Element;
}: RenderCheckboxProps): react_jsx_runtime13.JSX.Element;
//#endregion
//#region src/cellRenderers/renderToggleGroup.d.ts
declare function renderToggleGroup<R, SR>(props: RenderGroupCellProps<R, SR>): react_jsx_runtime9.JSX.Element;
declare function renderToggleGroup<R, SR>(props: RenderGroupCellProps<R, SR>): react_jsx_runtime11.JSX.Element;
declare function ToggleGroup<R, SR>({

@@ -493,7 +497,7 @@ groupKey,

toggleGroup
}: RenderGroupCellProps<R, SR>): react_jsx_runtime9.JSX.Element;
}: RenderGroupCellProps<R, SR>): react_jsx_runtime11.JSX.Element;
//#endregion
//#region src/cellRenderers/renderValue.d.ts
declare function renderValue<R, SR>(props: RenderCellProps<R, SR>): react13.ReactNode;
declare function renderValue<R, SR>(props: RenderCellProps<R, SR>): react14.ReactNode;

@@ -514,3 +518,3 @@ //#endregion

'aria-labelledby': ariaLabelledBy
}: SelectCellFormatterProps): react14.ReactNode;
}: SelectCellFormatterProps): react9.ReactNode;

@@ -524,3 +528,3 @@ //#endregion

onClose
}: RenderEditCellProps<TRow, TSummaryRow>): react_jsx_runtime4.JSX.Element;
}: RenderEditCellProps<TRow, TSummaryRow>): react_jsx_runtime5.JSX.Element;

@@ -533,3 +537,3 @@ //#endregion

priority
}: RenderHeaderCellProps<R, SR>): string | react_jsx_runtime5.JSX.Element;
}: RenderHeaderCellProps<R, SR>): string | react_jsx_runtime8.JSX.Element;

@@ -540,3 +544,3 @@ //#endregion

sortDirection
}: RenderSortIconProps): react_jsx_runtime7.JSX.Element | null;
}: RenderSortIconProps): react_jsx_runtime6.JSX.Element | null;
declare function renderSortPriority({

@@ -560,3 +564,3 @@ priority

//#endregion
export { CalculatedColumn, CalculatedColumnOrColumnGroup, CalculatedColumnParent, CellComponent as Cell, CellCopyArgs, CellKeyDownArgs, CellKeyboardEvent, CellMouseArgs, CellMouseEvent, CellPasteArgs, CellRendererProps, CellSelectArgs, ColSpanArgs, Column, ColumnGroup, ColumnOrColumnGroup, ColumnWidth, ColumnWidths, DataGrid, DataGridDefaultRenderersContext, DataGridHandle, DataGridProps, DefaultColumnOptions, FillEvent, RenderCellProps, RenderCheckboxProps, RenderEditCellProps, RenderGroupCellProps, RenderHeaderCellProps, RenderRowProps, RenderSortIconProps, RenderSortPriorityProps, RenderSortStatusProps, RenderSummaryCellProps, Renderers, RowComponent as Row, RowHeightArgs, RowsChangeData, SELECT_COLUMN_KEY, SelectCellFormatter, SelectColumn, SelectHeaderRowEvent, SelectRowEvent, SortColumn, SortDirection, ToggleGroup, TreeDataGrid, TreeDataGridProps, renderCheckbox, renderHeaderCell, renderSortIcon, renderSortPriority, renderToggleGroup, renderValue, textEditor, useHeaderRowSelection, useRowSelection };
export { CalculatedColumn, CalculatedColumnOrColumnGroup, CalculatedColumnParent, CellComponent as Cell, CellCopyArgs, CellKeyDownArgs, CellKeyboardEvent, CellMouseArgs, CellMouseEvent, CellPasteArgs, CellRendererProps, CellSelectArgs, ColSpanArgs, Column, ColumnGroup, ColumnOrColumnGroup, ColumnWidth, ColumnWidths, DataGrid, DataGridDefaultRenderersContext, DataGridHandle, DataGridProps, DefaultColumnOptions, FillEvent, RenderCellProps, RenderCheckboxProps, RenderEditCellProps, RenderGroupCellProps, RenderHeaderCellProps, RenderRowProps, RenderSortIconProps, RenderSortPriorityProps, RenderSortStatusProps, RenderSummaryCellProps, Renderers, RowComponent as Row, RowHeightArgs, RowsChangeData, SELECT_COLUMN_KEY, SelectCellFormatter, SelectCellOptions, SelectColumn, SelectHeaderRowEvent, SelectRowEvent, SortColumn, SortDirection, ToggleGroup, TreeDataGrid, TreeDataGridProps, renderCheckbox, renderHeaderCell, renderSortIcon, renderSortPriority, renderToggleGroup, renderValue, textEditor, useHeaderRowSelection, useRowSelection };
//# sourceMappingURL=index.d.ts.map
{
"name": "react-data-grid",
"version": "7.0.0-beta.54",
"version": "7.0.0-beta.55",
"license": "MIT",

@@ -5,0 +5,0 @@ "description": "Feature-rich and customizable data grid React component",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet