@devexpress/dx-react-grid-bootstrap4
Advanced tools
Comparing version 1.1.1 to 1.1.2
@@ -31,9 +31,9 @@ import * as React from 'react'; | ||
/** A component that renders a button that invokes the column chooser. */ | ||
ToggleButton: React.ComponentType<ColumnChooserBase.ToggleButtonProps>; | ||
ToggleButton: React.ComponentType<ColumnChooserBase.ToggleButtonProps & { [x: string]: any }>; | ||
/** A component that renders the column chooser overlay. */ | ||
Overlay: React.ComponentType<ColumnChooserBase.OverlayProps>; | ||
Overlay: React.ComponentType<ColumnChooserBase.OverlayProps & { [x: string]: any }>; | ||
/** A component that renders the column chooser container. */ | ||
Container: React.ComponentType<ColumnChooserBase.ContainerProps>; | ||
Container: React.ComponentType<ColumnChooserBase.ContainerProps & { [x: string]: any }>; | ||
/** A component that renders a column chooser item. */ | ||
Item: React.ComponentType<ColumnChooserBase.ItemProps>; | ||
Item: React.ComponentType<ColumnChooserBase.ItemProps & { [x: string]: any }>; | ||
}; | ||
@@ -59,5 +59,5 @@ | ||
/** A component that renders a container for columns being dragged. */ | ||
Container: React.ComponentType<DragDropProviderBase.ContainerProps>; | ||
Container: React.ComponentType<DragDropProviderBase.ContainerProps & { [x: string]: any }>; | ||
/** A component that renders a column being dragged. */ | ||
Column: React.ComponentType<DragDropProviderBase.ColumnProps>; | ||
Column: React.ComponentType<DragDropProviderBase.ColumnProps & { [x: string]: any }>; | ||
}; | ||
@@ -89,3 +89,3 @@ | ||
/** A component that renders the grid root layout. */ | ||
Root: React.ComponentType<GridBase.RootProps>; | ||
Root: React.ComponentType<GridBase.RootProps & { [x: string]: any }>; | ||
}; | ||
@@ -119,7 +119,7 @@ | ||
/** A component that renders a grouping panel container. */ | ||
Container: React.ComponentType<GroupingPanelBase.ContainerProps>; | ||
Container: React.ComponentType<GroupingPanelBase.ContainerProps & { [x: string]: any }>; | ||
/** A component that renders a grouping panel item. */ | ||
Item: React.ComponentType<GroupingPanelBase.ItemProps>; | ||
Item: React.ComponentType<GroupingPanelBase.ItemProps & { [x: string]: any }>; | ||
/** A component that renders an empty grouping panel message. */ | ||
EmptyMessage: React.ComponentType<GroupingPanelBase.EmptyMessageProps>; | ||
EmptyMessage: React.ComponentType<GroupingPanelBase.EmptyMessageProps & { [x: string]: any }>; | ||
}; | ||
@@ -147,3 +147,3 @@ | ||
/** A component that renders the paging panel. */ | ||
Container: React.ComponentType<PagingPanelBase.ContainerProps>; | ||
Container: React.ComponentType<PagingPanelBase.ContainerProps & { [x: string]: any }>; | ||
}; | ||
@@ -169,3 +169,3 @@ | ||
/** A component that renders the Search Panel input element */ | ||
Input: React.ComponentType<SearchPanelBase.InputProps>; | ||
Input: React.ComponentType<SearchPanelBase.InputProps & { [x: string]: any }>; | ||
}; | ||
@@ -241,3 +241,3 @@ | ||
/** A component that renders a message displayed when all columns are hidden. */ | ||
EmptyMessage: React.ComponentType<TableColumnVisibilityBase.EmptyMessageProps>; | ||
EmptyMessage: React.ComponentType<TableColumnVisibilityBase.EmptyMessageProps & { [x: string]: any }>; | ||
}; | ||
@@ -275,7 +275,7 @@ | ||
/** A component that renders a command control within a command cell. */ | ||
Command: React.ComponentType<TableEditColumnBase.CommandProps>; | ||
Command: React.ComponentType<TableEditColumnBase.CommandProps & { [x: string]: any }>; | ||
/** A component that renders a command cell within a data row. */ | ||
Cell: React.ComponentType<TableEditColumnBase.CellProps>; | ||
Cell: React.ComponentType<TableEditColumnBase.CellProps & { [x: string]: any }>; | ||
/** A component that renders a command cell within the header row. */ | ||
HeaderCell: React.ComponentType<TableEditColumnBase.HeaderCellProps>; | ||
HeaderCell: React.ComponentType<TableEditColumnBase.HeaderCellProps & { [x: string]: any }>; | ||
}; | ||
@@ -303,5 +303,5 @@ | ||
/** A component that renders an editable cell. */ | ||
Cell: React.ComponentType<TableEditRowBase.CellProps>; | ||
Cell: React.ComponentType<TableEditRowBase.CellProps & { [x: string]: any }>; | ||
/** A component that renders an editable row. */ | ||
Row: React.ComponentType<TableEditRowBase.RowProps>; | ||
Row: React.ComponentType<TableEditRowBase.RowProps & { [x: string]: any }>; | ||
}; | ||
@@ -331,5 +331,5 @@ | ||
/** A component that renders a filter row cell. */ | ||
Cell: React.ComponentType<TableFilterRowBase.CellProps>; | ||
Cell: React.ComponentType<TableFilterRowBase.CellProps & { [x: string]: any }>; | ||
/** A component that renders a filter row. */ | ||
Row: React.ComponentType<TableBase.RowProps>; | ||
Row: React.ComponentType<TableBase.RowProps & { [x: string]: any }>; | ||
}; | ||
@@ -363,5 +363,5 @@ | ||
/** A component that renders a group row. */ | ||
Row: React.ComponentType<TableGroupRowBase.RowProps>; | ||
Row: React.ComponentType<TableGroupRowBase.RowProps & { [x: string]: any }>; | ||
/** A component that renders a group cell. */ | ||
Cell: React.ComponentType<TableGroupRowBase.CellProps>; | ||
Cell: React.ComponentType<TableGroupRowBase.CellProps & { [x: string]: any }>; | ||
}; | ||
@@ -393,5 +393,5 @@ | ||
/** A component that renders a header row. */ | ||
Row: React.ComponentType<TableBase.RowProps>; | ||
Row: React.ComponentType<TableBase.RowProps & { [x: string]: any }>; | ||
/** A component that renders a header cell. */ | ||
Cell: React.ComponentType<TableHeaderRowBase.CellProps>; | ||
Cell: React.ComponentType<TableHeaderRowBase.CellProps & { [x: string]: any }>; | ||
}; | ||
@@ -425,7 +425,7 @@ | ||
/** A component that renders a detail cell. */ | ||
Cell: React.ComponentType<TableRowDetailBase.CellProps>; | ||
Cell: React.ComponentType<TableRowDetailBase.CellProps & { [x: string]: any }>; | ||
/** A component that renders a detail row. */ | ||
Row: React.ComponentType<TableRowDetailBase.RowProps>; | ||
Row: React.ComponentType<TableRowDetailBase.RowProps & { [x: string]: any }>; | ||
/** A component that renders a cell containing the expand/collapse control. */ | ||
ToggleCell: React.ComponentType<TableRowDetailBase.ToggleCellProps>; | ||
ToggleCell: React.ComponentType<TableRowDetailBase.ToggleCellProps & { [x: string]: any }>; | ||
}; | ||
@@ -461,5 +461,5 @@ | ||
/** A component that renders a cell with the selection control inside the heading row. */ | ||
HeaderCell: React.ComponentType<TableSelectionBase.HeaderCellProps>; | ||
HeaderCell: React.ComponentType<TableSelectionBase.HeaderCellProps & { [x: string]: any }>; | ||
/** A component that renders a cell with selection control. */ | ||
Cell: React.ComponentType<TableSelectionBase.CellProps>; | ||
Cell: React.ComponentType<TableSelectionBase.CellProps & { [x: string]: any }>; | ||
}; | ||
@@ -505,21 +505,21 @@ | ||
/** A component that renders a table. */ | ||
Table: React.ComponentType<object>; | ||
Table: React.ComponentType<object & { [x: string]: any }>; | ||
/** A component that renders a table head. */ | ||
TableHead: React.ComponentType<object>; | ||
TableHead: React.ComponentType<object & { [x: string]: any }>; | ||
/** A component that renders a table body. */ | ||
TableBody: React.ComponentType<object>; | ||
TableBody: React.ComponentType<object & { [x: string]: any }>; | ||
/** A component that renders a table's container. */ | ||
Container: React.ComponentType<object>; | ||
Container: React.ComponentType<object & { [x: string]: any }>; | ||
/** A component that renders a table data cell. */ | ||
Cell: React.ComponentType<TableBase.DataCellProps>; | ||
Cell: React.ComponentType<TableBase.DataCellProps & { [x: string]: any }>; | ||
/** A component that renders a table data row. */ | ||
Row: React.ComponentType<TableBase.DataRowProps>; | ||
Row: React.ComponentType<TableBase.DataRowProps & { [x: string]: any }>; | ||
/** A component that renders a table cell when the table is empty. */ | ||
NoDataCell: React.ComponentType<TableBase.CellProps>; | ||
NoDataCell: React.ComponentType<TableBase.NoDataCellProps & { [x: string]: any }>; | ||
/** A component that renders a table row when the table is empty. */ | ||
NoDataRow: React.ComponentType<TableBase.RowProps>; | ||
NoDataRow: React.ComponentType<TableBase.RowProps & { [x: string]: any }>; | ||
/** A component that renders a stub table cell. */ | ||
StubCell: React.ComponentType<TableBase.CellProps>; | ||
StubCell: React.ComponentType<TableBase.CellProps & { [x: string]: any }>; | ||
/** A component that renders a stub table header cell. */ | ||
StubHeaderCell: React.ComponentType<TableBase.CellProps>; | ||
StubHeaderCell: React.ComponentType<TableBase.CellProps & { [x: string]: any }>; | ||
}; | ||
@@ -543,3 +543,3 @@ | ||
/** A component that renders the toolbar root element. */ | ||
Root: React.ComponentType<ToolbarBase.RootProps>; | ||
Root: React.ComponentType<ToolbarBase.RootProps & { [x: string]: any }>; | ||
}; | ||
@@ -589,21 +589,21 @@ | ||
/** A component that renders a table. */ | ||
Table: React.ComponentType<object>; | ||
Table: React.ComponentType<object & { [x: string]: any }>; | ||
/** A component that renders a table head. */ | ||
TableHead: React.ComponentType<object>; | ||
TableHead: React.ComponentType<object & { [x: string]: any }>; | ||
/** A component that renders a table body. */ | ||
TableBody: React.ComponentType<object>; | ||
TableBody: React.ComponentType<object & { [x: string]: any }>; | ||
/** A component that renders a table's container. */ | ||
Container: React.ComponentType<object>; | ||
Container: React.ComponentType<object & { [x: string]: any }>; | ||
/** Renders a table data cell. */ | ||
Cell: React.ComponentType<TableBase.DataCellProps>; | ||
Cell: React.ComponentType<TableBase.DataCellProps & { [x: string]: any }>; | ||
/** Renders a table data row. */ | ||
Row: React.ComponentType<TableBase.DataRowProps>; | ||
Row: React.ComponentType<TableBase.DataRowProps & { [x: string]: any }>; | ||
/** Renders a table cell when the table is empty. */ | ||
NoDataCell: React.ComponentType<TableBase.CellProps>; | ||
NoDataCell: React.ComponentType<TableBase.CellProps & { [x: string]: any }>; | ||
/** Renders a table row when the table is empty. */ | ||
NoDataRow: React.ComponentType<TableBase.RowProps>; | ||
NoDataRow: React.ComponentType<TableBase.RowProps & { [x: string]: any }>; | ||
/** Renders a stub table cell. */ | ||
StubCell: React.ComponentType<TableBase.CellProps>; | ||
StubCell: React.ComponentType<TableBase.CellProps & { [x: string]: any }>; | ||
/** Renders a stub table header cell. */ | ||
StubHeaderCell: React.ComponentType<TableBase.CellProps>; | ||
StubHeaderCell: React.ComponentType<TableBase.CellProps & { [x: string]: any }>; | ||
}; |
{ | ||
"name": "@devexpress/dx-react-grid-bootstrap4", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"description": "Bootstrap 4 templates for DevExtreme React Grid component", | ||
@@ -55,6 +55,6 @@ "author": { | ||
"devDependencies": { | ||
"@devexpress/dx-grid-core": "1.1.1", | ||
"@devexpress/dx-react-core": "1.1.1", | ||
"@devexpress/dx-react-grid": "1.1.1", | ||
"@devexpress/dx-testing": "1.1.1", | ||
"@devexpress/dx-grid-core": "1.1.2", | ||
"@devexpress/dx-react-core": "1.1.2", | ||
"@devexpress/dx-react-grid": "1.1.2", | ||
"@devexpress/dx-testing": "1.1.2", | ||
"babel-core": "^6.26.0", | ||
@@ -94,5 +94,5 @@ "babel-jest": "^22.4.1", | ||
"peerDependencies": { | ||
"@devexpress/dx-grid-core": "1.1.1", | ||
"@devexpress/dx-react-core": "1.1.1", | ||
"@devexpress/dx-react-grid": "1.1.1", | ||
"@devexpress/dx-grid-core": "1.1.2", | ||
"@devexpress/dx-react-core": "1.1.2", | ||
"@devexpress/dx-react-grid": "1.1.2", | ||
"react": "^16.2.0", | ||
@@ -99,0 +99,0 @@ "reactstrap": "5.0.0-beta" |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
429131