@devexpress/dx-react-grid-bootstrap4
Advanced tools
Comparing version 1.9.0 to 1.9.1
@@ -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 }>; |
{ | ||
"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
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
622568
31
6809
144
1
+ Addedreact-popper@^1.3.0
+ Added@devexpress/dx-core@1.9.1(transitive)
+ Added@devexpress/dx-grid-core@1.9.1(transitive)
+ Added@devexpress/dx-react-core@1.9.1(transitive)
+ Added@devexpress/dx-react-grid@1.9.1(transitive)
+ Added@hypnosphi/create-react-context@0.3.1(transitive)
+ Addedcall-bind@1.0.7(transitive)
+ Addeddeep-equal@1.1.2(transitive)
+ Addeddefine-data-property@1.1.4(transitive)
+ Addeddefine-properties@1.2.1(transitive)
+ Addedes-define-property@1.0.0(transitive)
+ Addedes-errors@1.3.0(transitive)
+ Addedfunction-bind@1.1.2(transitive)
+ Addedfunctions-have-names@1.2.3(transitive)
+ Addedget-intrinsic@1.2.4(transitive)
+ Addedgopd@1.0.1(transitive)
+ Addedgud@1.0.0(transitive)
+ Addedhas-property-descriptors@1.0.2(transitive)
+ Addedhas-proto@1.0.3(transitive)
+ Addedhas-symbols@1.0.3(transitive)
+ Addedhas-tostringtag@1.0.2(transitive)
+ Addedhasown@2.0.2(transitive)
+ Addedis-arguments@1.1.1(transitive)
+ Addedis-date-object@1.0.5(transitive)
+ Addedis-regex@1.1.4(transitive)
+ Addedobject-is@1.1.6(transitive)
+ Addedobject-keys@1.1.1(transitive)
+ Addedpopper.js@1.16.1(transitive)
+ Addedreact@17.0.2(transitive)
+ Addedreact-popper@1.3.11(transitive)
+ Addedregexp.prototype.flags@1.5.3(transitive)
+ Addedset-function-length@1.2.2(transitive)
+ Addedset-function-name@2.0.2(transitive)
+ Addedtyped-styles@0.0.7(transitive)
- Removed@devexpress/dx-core@1.9.0(transitive)
- Removed@devexpress/dx-grid-core@1.9.0(transitive)
- Removed@devexpress/dx-react-core@1.9.0(transitive)
- Removed@devexpress/dx-react-grid@1.9.0(transitive)
- Removed@popperjs/core@2.11.8(transitive)
- Removedcsstype@3.1.3(transitive)
- Removeddom-helpers@5.2.1(transitive)
- Removedreact-fast-compare@3.2.2(transitive)
- Removedreact-popper@2.3.0(transitive)
- Removedreact-transition-group@4.4.5(transitive)
- Removedreactstrap@9.2.3(transitive)