Skip to content

Commit

Permalink
chore: publish 2.2.0 (#2494)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximKudriavtsev authored Oct 25, 2019
1 parent 41b8f28 commit 37b764d
Show file tree
Hide file tree
Showing 26 changed files with 207 additions and 130 deletions.
77 changes: 77 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,80 @@
# [2.2.0](https://github.com/DevExpress/devextreme-reactive/compare/v2.1.2...v2.2.0) (2019-10-25)


### Bug Fixes

* **react-grid:** handle column count decrease in virtual table ([#2464](https://github.com/DevExpress/devextreme-reactive/issues/2464)) ([2c21e30](https://github.com/DevExpress/devextreme-reactive/commit/2c21e30381d03ab21ec65b3b21e2e53b3074c3a7))
* **react-grid:** incorrect 'row' property type in the documentation ([#2424](https://github.com/DevExpress/devextreme-reactive/issues/2424)) ([23ba6c5](https://github.com/DevExpress/devextreme-reactive/commit/23ba6c54c7929af811ceae0ac87260f2bd45c25b))
* **react-grid-demos:** fix object assign on Safari ([#2489](https://github.com/DevExpress/devextreme-reactive/issues/2489)) ([64b330f](https://github.com/DevExpress/devextreme-reactive/commit/64b330f7b60373a2402e1ba21d04034dbaef044d)), closes [#2488](https://github.com/DevExpress/devextreme-reactive/issues/2488)
* **react-grid-material-ui:** correct default properties for Virtual Table ([#2484](https://github.com/DevExpress/devextreme-reactive/issues/2484)) ([973f928](https://github.com/DevExpress/devextreme-reactive/commit/973f928071a831b86f8a05e022e8005a1c9e43e1))
* **react-scheduler:** make it impossible to edit radio groups in read-only mode and set default interval to 1 ([#2439](https://github.com/DevExpress/devextreme-reactive/issues/2439)) ([dbb414c](https://github.com/DevExpress/devextreme-reactive/commit/dbb414cff6ae465fe20d6aedac68e4377721a86d))
* **react-scheduler:** render TimeScale of the same size as TimeTable ([#2409](https://github.com/DevExpress/devextreme-reactive/issues/2409)) ([d753090](https://github.com/DevExpress/devextreme-reactive/commit/d75309073a7c9b595b7ae6c56370aa59793ad313))
* **react-scheduler-material-ui:** display dates in the AppointmentFrom correctly ([#2441](https://github.com/DevExpress/devextreme-reactive/issues/2441)) ([4af2688](https://github.com/DevExpress/devextreme-reactive/commit/4af26886d177323004475a2b4a0b1f12cd5f63e1))


### Features

* **react-grid-bootstrap3:** add previous and next buttons for pagination ([#2428](https://github.com/DevExpress/devextreme-reactive/issues/2428)) ([8740f83](https://github.com/DevExpress/devextreme-reactive/commit/8740f83e783752134e45f96b392a66296b393f32))
* **react-scheduler:** add capability to render zero time appointments ([#2406](https://github.com/DevExpress/devextreme-reactive/issues/2406)) ([731b4b8](https://github.com/DevExpress/devextreme-reactive/commit/731b4b8bf2e16f5914adb151f7aab8e50e030963))
* **react-scheduler:** add ConfirmationDialog plugin ([#2393](https://github.com/DevExpress/devextreme-reactive/issues/2393)) ([9041bd5](https://github.com/DevExpress/devextreme-reactive/commit/9041bd53312e941b1a7789eeff42f5ebd4f7190c))
* **react-scheduler:** do not show AppointmentForm's Delete Button if a new appointment is being edited ([#2462](https://github.com/DevExpress/devextreme-reactive/issues/2462)) ([4eb83bc](https://github.com/DevExpress/devextreme-reactive/commit/4eb83bc0989974be5efd4a0e46c9391b8bd1241d))
* **react-scheduler:** redesign AppointmentTooltip ([#2474](https://github.com/DevExpress/devextreme-reactive/issues/2474)) ([41b8f28](https://github.com/DevExpress/devextreme-reactive/commit/41b8f2878f5e9838663826d54977d2b078ff90a2))


### BREAKING CHANGES

* **react-scheduler:** The `DayView` and `WeekView` plugins now do not have the `timeScaleRowComponent` and `timeScaleCellComponent` properties. Instead, they have a new, `timeScaleLabelComponent`, property.

```diff
...
<WeekView
- timeScaleRowComponent
- timeScaleCellComponent
+ timeScaleLabelComponent
/>
<DayView
- timeScaleRowComponent
- timeScaleCellComponent
+ timeScaleLabelComponent
/>
...
```

* **react-scheduler:** We have extended the `headerComponent` and `contentComponent` in the `AppointmentTooltip` plugin with new properties. If you use these components, add the following properties in your code:

```diff
...
<AppointmentTooltip
headerComponent={({
+ commandButtonComponent
+ showOpenButton
+ showCloseButton
+ showDeleteButton
+ commandBottonIds
...restProps
}) => (
<AppointmentTooltip.Header
+ commandButtonComponent={commandButtonComponent}
+ showOpenButton={showOpenButton}
+ showCloseButton={showCloseButton}
+ showDeleteButton={showDeleteButton}
+ commandBottonIds={commandBottonIds}
{...restProps}
/>
)}
contentComponent={({
+ formatDate
...restProps
}) => (
<AppointmentTooltip.Content
+ formatDate={formatDate}
{...restProps}
/>
)}
/>
...
```

# [2.1.2](https://github.com/DevExpress/devextreme-reactive/compare/v2.1.1...v2.1.2) (2019-10-11)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"lerna": "2.1.2",
"npmClient": "yarn",
"useWorkspaces": true,
"version": "2.1.2"
"version": "2.2.0"
}
2 changes: 1 addition & 1 deletion packages/dx-chart-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devexpress/dx-chart-core",
"version": "2.1.2",
"version": "2.2.0",
"description": "Core library for the DevExtreme Reactive Chart component",
"author": {
"name": "Developer Express Inc.",
Expand Down
2 changes: 1 addition & 1 deletion packages/dx-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devexpress/dx-core",
"version": "2.1.2",
"version": "2.2.0",
"description": "Core library for DevExtreme Reactive Components",
"author": {
"name": "Developer Express Inc.",
Expand Down
2 changes: 1 addition & 1 deletion packages/dx-demo-shell/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@devexpress/dx-demo-shell",
"version": "2.1.2",
"version": "2.2.0",
"description": "DevExtreme Reactive Components Demo Shell",
"author": {
"name": "Developer Express Inc.",
Expand Down
6 changes: 3 additions & 3 deletions packages/dx-grid-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devexpress/dx-grid-core",
"version": "2.1.2",
"version": "2.2.0",
"description": "Core library for the DevExtreme Reactive Grid component",
"author": {
"name": "Developer Express Inc.",
Expand Down Expand Up @@ -40,7 +40,7 @@
"lint:fix": "yarn lint -- --fix"
},
"devDependencies": {
"@devexpress/dx-core": "2.1.2",
"@devexpress/dx-core": "2.2.0",
"core-js": "^3.3.3",
"jest": "^24.9.0",
"rollup": "^1.25.2",
Expand All @@ -53,6 +53,6 @@
"typescript-tslint-plugin": "^0.5.4"
},
"peerDependencies": {
"@devexpress/dx-core": "2.1.2"
"@devexpress/dx-core": "2.2.0"
}
}
16 changes: 8 additions & 8 deletions packages/dx-react-chart-bootstrap4/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devexpress/dx-react-chart-bootstrap4",
"version": "2.1.2",
"version": "2.2.0",
"description": "Bootstrap 4 templates for DevExtreme React Chart component",
"author": {
"name": "Developer Express Inc.",
Expand Down Expand Up @@ -50,10 +50,10 @@
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@devexpress/dx-chart-core": "2.1.2",
"@devexpress/dx-react-chart": "2.1.2",
"@devexpress/dx-react-core": "2.1.2",
"@devexpress/dx-testing": "2.1.2",
"@devexpress/dx-chart-core": "2.2.0",
"@devexpress/dx-react-chart": "2.2.0",
"@devexpress/dx-react-core": "2.2.0",
"@devexpress/dx-testing": "2.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
Expand Down Expand Up @@ -85,9 +85,9 @@
"react-popper": "^1.3.4"
},
"peerDependencies": {
"@devexpress/dx-chart-core": "2.1.2",
"@devexpress/dx-react-chart": "2.1.2",
"@devexpress/dx-react-core": "2.1.2",
"@devexpress/dx-chart-core": "2.2.0",
"@devexpress/dx-react-chart": "2.2.0",
"@devexpress/dx-react-core": "2.2.0",
"react": ">=16.10.2"
}
}
16 changes: 8 additions & 8 deletions packages/dx-react-chart-demos/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@devexpress/dx-react-chart-demos",
"version": "2.1.2",
"version": "2.2.0",
"description": "DevExtreme React Components Demos",
"author": {
"name": "Developer Express Inc.",
Expand All @@ -26,12 +26,12 @@
"lint:fix": "yarn escheck -- --fix && yarn tscheck -- --fix"
},
"dependencies": {
"@devexpress/dx-chart-core": "2.1.2",
"@devexpress/dx-demo-shell": "2.1.2",
"@devexpress/dx-react-chart": "2.1.2",
"@devexpress/dx-react-chart-bootstrap4": "2.1.2",
"@devexpress/dx-react-chart-material-ui": "2.1.2",
"@devexpress/dx-react-core": "2.1.2",
"@devexpress/dx-chart-core": "2.2.0",
"@devexpress/dx-demo-shell": "2.2.0",
"@devexpress/dx-react-chart": "2.2.0",
"@devexpress/dx-react-chart-bootstrap4": "2.2.0",
"@devexpress/dx-react-chart-material-ui": "2.2.0",
"@devexpress/dx-react-core": "2.2.0",
"@material-ui/core": "^4.5.1",
"@material-ui/icons": "^4.5.1",
"@types/react": "16.9.5",
Expand Down Expand Up @@ -67,7 +67,7 @@
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@devexpress/dx-testing": "2.1.2",
"@devexpress/dx-testing": "2.2.0",
"@types/jest": "^24.0.18",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^7.0.0-bridge.0",
Expand Down
12 changes: 6 additions & 6 deletions packages/dx-react-chart-material-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devexpress/dx-react-chart-material-ui",
"version": "2.1.2",
"version": "2.2.0",
"description": "Material-UI templates for DevExtreme React Chart component",
"author": {
"name": "Developer Express Inc.",
Expand Down Expand Up @@ -49,8 +49,8 @@
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@devexpress/dx-react-core": "2.1.2",
"@devexpress/dx-testing": "2.1.2",
"@devexpress/dx-react-core": "2.2.0",
"@devexpress/dx-testing": "2.2.0",
"@material-ui/core": "^4.5.1",
"@material-ui/icons": "^4.5.1",
"babel-core": "^7.0.0-bridge.0",
Expand Down Expand Up @@ -83,9 +83,9 @@
"prop-types": "^15.7.2"
},
"peerDependencies": {
"@devexpress/dx-chart-core": "2.1.2",
"@devexpress/dx-react-chart": "2.1.2",
"@devexpress/dx-react-core": "2.1.2",
"@devexpress/dx-chart-core": "2.2.0",
"@devexpress/dx-react-chart": "2.2.0",
"@devexpress/dx-react-core": "2.2.0",
"@material-ui/core": ">=4.5.0",
"@material-ui/icons": ">=4.4.3",
"react": ">=16.10.2"
Expand Down
8 changes: 4 additions & 4 deletions packages/dx-react-chart/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devexpress/dx-react-chart",
"version": "2.1.2",
"version": "2.2.0",
"description": "Composable plugin-based chart component for React",
"author": {
"name": "Developer Express Inc.",
Expand Down Expand Up @@ -44,7 +44,7 @@
"lint:fix": "yarn lint -- --fix"
},
"devDependencies": {
"@devexpress/dx-testing": "2.1.2",
"@devexpress/dx-testing": "2.2.0",
"core-js": "^3.3.3",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
Expand All @@ -64,12 +64,12 @@
"typescript": "3.6.4"
},
"dependencies": {
"@devexpress/dx-chart-core": "2.1.2",
"@devexpress/dx-chart-core": "2.2.0",
"d3-scale": "^3.1.0",
"d3-shape": "^1.3.5"
},
"peerDependencies": {
"@devexpress/dx-react-core": "2.1.2",
"@devexpress/dx-react-core": "2.2.0",
"react": ">=16.10.2",
"react-dom": ">=16.10.2"
}
Expand Down
12 changes: 6 additions & 6 deletions packages/dx-react-common/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@devexpress/dx-react-common",
"version": "2.1.2",
"version": "2.2.0",
"description": "DevExtreme React Components",
"author": {
"name": "Developer Express Inc.",
Expand All @@ -15,10 +15,10 @@
"build:watch": "webpack-dev-server --env"
},
"dependencies": {
"@devexpress/dx-demo-shell": "2.1.2",
"@devexpress/dx-react-chart-demos": "2.1.2",
"@devexpress/dx-react-grid-demos": "2.1.2",
"@devexpress/dx-react-scheduler-demos": "2.1.2",
"@devexpress/dx-demo-shell": "2.2.0",
"@devexpress/dx-react-chart-demos": "2.2.0",
"@devexpress/dx-react-grid-demos": "2.2.0",
"@devexpress/dx-react-scheduler-demos": "2.2.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"whatwg-fetch": "^3.0.0"
Expand All @@ -29,7 +29,7 @@
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@devexpress/dx-testing": "2.1.2",
"@devexpress/dx-testing": "2.2.0",
"@types/jest": "^24.0.18",
"babel-loader": "^8.0.6",
"concurrently": "^5.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/dx-react-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devexpress/dx-react-core",
"version": "2.1.2",
"version": "2.2.0",
"description": "Core library for DevExtreme React Components",
"author": {
"name": "Developer Express Inc.",
Expand Down Expand Up @@ -62,7 +62,7 @@
"typescript": "3.6.4"
},
"dependencies": {
"@devexpress/dx-core": "2.1.2",
"@devexpress/dx-core": "2.2.0",
"prop-types": "^15.7.2"
},
"peerDependencies": {
Expand Down
16 changes: 8 additions & 8 deletions packages/dx-react-grid-bootstrap3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devexpress/dx-react-grid-bootstrap3",
"version": "2.1.2",
"version": "2.2.0",
"description": "Bootstrap 3 templates for DevExtreme React Grid component",
"author": {
"name": "Developer Express Inc.",
Expand Down Expand Up @@ -48,10 +48,10 @@
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@devexpress/dx-grid-core": "2.1.2",
"@devexpress/dx-react-core": "2.1.2",
"@devexpress/dx-react-grid": "2.1.2",
"@devexpress/dx-testing": "2.1.2",
"@devexpress/dx-grid-core": "2.2.0",
"@devexpress/dx-react-core": "2.2.0",
"@devexpress/dx-react-grid": "2.2.0",
"@devexpress/dx-testing": "2.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
Expand Down Expand Up @@ -82,9 +82,9 @@
"prop-types": "^15.7.2"
},
"peerDependencies": {
"@devexpress/dx-grid-core": "2.1.2",
"@devexpress/dx-react-core": "2.1.2",
"@devexpress/dx-react-grid": "2.1.2",
"@devexpress/dx-grid-core": "2.2.0",
"@devexpress/dx-react-core": "2.2.0",
"@devexpress/dx-react-grid": "2.2.0",
"react": "^16.10.2",
"react-bootstrap": "=0.32.4",
"react-dom": "^16.10.2"
Expand Down
16 changes: 8 additions & 8 deletions packages/dx-react-grid-bootstrap4/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devexpress/dx-react-grid-bootstrap4",
"version": "2.1.2",
"version": "2.2.0",
"description": "Bootstrap 4 templates for DevExtreme React Grid component",
"author": {
"name": "Developer Express Inc.",
Expand Down Expand Up @@ -49,10 +49,10 @@
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@devexpress/dx-grid-core": "2.1.2",
"@devexpress/dx-react-core": "2.1.2",
"@devexpress/dx-react-grid": "2.1.2",
"@devexpress/dx-testing": "2.1.2",
"@devexpress/dx-grid-core": "2.2.0",
"@devexpress/dx-react-core": "2.2.0",
"@devexpress/dx-react-grid": "2.2.0",
"@devexpress/dx-testing": "2.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
Expand Down Expand Up @@ -84,9 +84,9 @@
"react-popper": "^1.3.4"
},
"peerDependencies": {
"@devexpress/dx-grid-core": "2.1.2",
"@devexpress/dx-react-core": "2.1.2",
"@devexpress/dx-react-grid": "2.1.2",
"@devexpress/dx-grid-core": "2.2.0",
"@devexpress/dx-react-core": "2.2.0",
"@devexpress/dx-react-grid": "2.2.0",
"react": ">=16.10.2"
}
}
Loading

0 comments on commit 37b764d

Please sign in to comment.