Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@devexpress/dx-react-grid-bootstrap4

Package Overview
Dependencies
Maintainers
14
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@devexpress/dx-react-grid-bootstrap4 - npm Package Compare versions

Comparing version 1.9.0 to 1.9.1

29

dist/dx-react-grid-bootstrap4.d.ts

@@ -114,3 +114,3 @@ import * as React from 'react';

columns: Array<Column>;
/** Specifies the function used to get a unique row identifier. */
/** Specifies the function used to get a unique row identifier. Define this function if the identifier is different than the row index. */
getRowId?: (row: any) => number | string;

@@ -582,2 +582,12 @@ /** Specifies the function used to get a cell's value. */

export namespace TableGroupRow {
/** Describes properties passed to a component that renders a group cell content. */
export type ContentProps = TableGroupRowBase.ContentProps;
}
export namespace TableGroupRow {
/** Describes properties passed to a component that renders a group expand icon. */
export type IconProps = TableGroupRowBase.IconProps;
}
export namespace TableGroupRow {
/** Describes properties passed to a component that renders a group indent cell. */

@@ -596,2 +606,6 @@ export type IndentCellProps = TableGroupRowBase.IndentCellProps;

rowComponent?: React.ComponentType<TableGroupRowBase.RowProps>;
/** A component that renders a group cell content. */
contentComponent?: React.ComponentType<TableGroupRowBase.ContentProps>;
/** A component that renders a group expand icon. */
iconComponent?: React.ComponentType<TableGroupRowBase.IconProps>;
/** A component that renders a group indent cell. */

@@ -614,2 +628,6 @@ indentCellComponent?: React.ComponentType<TableGroupRowBase.IndentCellProps>;

Cell: React.ComponentType<TableGroupRowBase.CellProps & { className?: string; style?: React.CSSProperties; [x: string]: any }>;
/** A component that renders a group cell content. */
Content: React.ComponentType<TableGroupRowBase.ContentProps & { className?: string; style?: React.CSSProperties; [x: string]: any }>;
/** A component that renders a group expand icon. */
Icon: React.ComponentType<TableGroupRowBase.IconProps & { className?: string; style?: React.CSSProperties; [x: string]: any }>;
};

@@ -816,2 +834,7 @@

export namespace TableSummaryRow {
/** Describes properties passed to a component that renders a summary item. */
export type ItemProps = TableSummaryRowBase.ItemProps;
}
export interface TableSummaryRowProps {

@@ -839,3 +862,3 @@ /** An array of summary types that the `DataTypeProvider` plugin should not format. */

/** A component that renders a summary item. */
itemComponent?: React.ComponentType<object>;
itemComponent?: React.ComponentType<TableSummaryRowBase.ItemProps>;
/** An object that specifies localization messages. */

@@ -857,3 +880,3 @@ messages?: TableSummaryRowBase.LocalizationMessages;

/** A component that renders the total summary row. */
totalRowComponent: React.ComponentType<TableBase.RowProps & { className?: string; style?: React.CSSProperties; [x: string]: any }>;
TotalRow: React.ComponentType<React.ComponentType<TableBase.RowProps> & { className?: string; style?: React.CSSProperties; [x: string]: any }>;
/** A component that renders a group summary row. */

@@ -860,0 +883,0 @@ GroupRow: React.ComponentType<React.ComponentType<TableBase.RowProps> & { className?: string; style?: React.CSSProperties; [x: string]: any }>;

54

package.json
{
"name": "@devexpress/dx-react-grid-bootstrap4",
"version": "1.9.0",
"version": "1.9.1",
"description": "Bootstrap 4 templates for DevExtreme React Grid component",

@@ -47,18 +47,17 @@ "author": {

"devDependencies": {
"@devexpress/dx-grid-core": "^1.9.0",
"@devexpress/dx-react-core": "^1.9.0",
"@devexpress/dx-react-grid": "^1.9.0",
"@devexpress/dx-testing": "^1.9.0",
"babel-core": "^6.26.3",
"@babel/core": "^7.1.6",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@devexpress/dx-grid-core": "^1.9.1",
"@devexpress/dx-react-core": "^1.9.1",
"@devexpress/dx-react-grid": "^1.9.1",
"@devexpress/dx-testing": "^1.9.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.19",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.20",
"core-js": "^2.5.7",
"enzyme": "3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.8.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",

@@ -68,12 +67,11 @@ "eslint-config-airbnb-base": "^13.1.0",

"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.26.2",
"eslint-plugin-jest": "^22.0.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-test-renderer": "^16.5.2",
"reactstrap": "6.5.0",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^3.0.4",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-test-renderer": "^16.6.3",
"rollup": "^0.67.3",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-css-only": "^0.4.0",

@@ -85,12 +83,12 @@ "rollup-plugin-license": "^0.7.0",

"classnames": "^2.2.6",
"prop-types": "^15.6.2"
"prop-types": "^15.6.2",
"react-popper": "^1.3.0"
},
"peerDependencies": {
"@devexpress/dx-grid-core": "1.9.0",
"@devexpress/dx-react-core": "1.9.0",
"@devexpress/dx-react-grid": "1.9.0",
"react": ">=16.3.0",
"reactstrap": ">=6.3.0"
"@devexpress/dx-grid-core": "1.9.1",
"@devexpress/dx-react-core": "1.9.1",
"@devexpress/dx-react-grid": "1.9.1",
"react": ">=16.6.0"
},
"gitHead": "227293d65d3fc8972ff36981be7ec6789876dbe7"
"gitHead": "29cb22ed32aac31a3fa3d985b9160300af79b12f"
}

Sorry, the diff of this file is not supported yet

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 too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc