Skip to content

Commit

Permalink
chore: Publish 1.0.0-alpha.2 (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
kvet committed May 26, 2017
1 parent aa64e3c commit 0ae4660
Show file tree
Hide file tree
Showing 8 changed files with 71 additions and 13 deletions.
56 changes: 55 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,57 @@
## 1.0.0-alpha.1 (2017-05-15)
<a name="1.0.0-alpha.2"></a>
# [1.0.0-alpha.2](https://github.com/DevExpress/devextreme-reactive/compare/v1.0.0-alpha.1...v1.0.0-alpha.2) (2017-05-26)


### Bug Fixes

* **demos:** Change initial page size in remote demo ([#103](https://github.com/DevExpress/devextreme-reactive/issues/103)) ([aa64e3c](https://github.com/DevExpress/devextreme-reactive/commit/aa64e3c))
* **docs:** Don't use relative links in the package root readme.md ([#91](https://github.com/DevExpress/devextreme-reactive/issues/91)) ([6863e73](https://github.com/DevExpress/devextreme-reactive/commit/6863e73))
* **react-grid:** Cancel column grouping in FireFox ([#98](https://github.com/DevExpress/devextreme-reactive/issues/98)) ([8fb9c52](https://github.com/DevExpress/devextreme-reactive/commit/8fb9c52)), closes [#30](https://github.com/DevExpress/devextreme-reactive/issues/30)


### Features

* **react-grid:** Cancel sorting by using the Ctrl key ([#96](https://github.com/DevExpress/devextreme-reactive/issues/96)) ([0d804f4](https://github.com/DevExpress/devextreme-reactive/commit/0d804f4))
* **react-grid:** Implement page size selector ([#95](https://github.com/DevExpress/devextreme-reactive/issues/95)) ([9e21583](https://github.com/DevExpress/devextreme-reactive/commit/9e21583))


### BREAKING CHANGES

* Previously, to enable the 'Detail row' feature a user had to use only the 'TableRowDetail' plugin. But, this plugin mixed up the rendering and state managing functionality. Now, there are two particular plugins. The first one is the 'RowDetailState' plugin. It's responsible for a state managing. The second one is the 'TableRowDetail' plugin. It only renders a detail row.

The following code:

```jsx
<TableRowDetail
expandedRows={expandedRows}
onExpandedRowsChange={onExpandedRowsChange}
template={({ row }) =>
<GridDetailContainer
data={row}
columns={detailColumns}
/>
}
/>
```

should be replaced with:

```jsx
<RowDetailState
expandedRows={expandedRows}
onExpandedRowsChange={onExpandedRowsChange}
/>
<TableRowDetail
template={({ row }) =>
<GridDetailContainer
data={row}
columns={detailColumns}
/>
}
/>
```

<a name="1.0.0-alpha.1"></a>
# 1.0.0-alpha.1 (2017-05-15)

* Initial public release
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"packages": [
"packages/*"
],
"version": "1.0.0-alpha.1"
"version": "1.0.0-alpha.2"
}
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
"name": "Developer Express Inc.",
"url": "https://www.devexpress.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DevExpress/devextreme-reactive.git"
},
"license": "SEE LICENSE IN README.md",
"devDependencies": {
"concurrently": "^3.4.0",
Expand Down
2 changes: 1 addition & 1 deletion 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": "1.0.0-alpha.1",
"version": "1.0.0-alpha.2",
"description": "Core library for the DevExtreme Reactive Grid component",
"author": {
"name": "Developer Express Inc.",
Expand Down
2 changes: 1 addition & 1 deletion 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": "1.0.0-alpha.1",
"version": "1.0.0-alpha.2",
"description": "Core library for DevExtreme React Components",
"author": {
"name": "Developer Express Inc.",
Expand Down
6 changes: 3 additions & 3 deletions packages/dx-react-demos/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@devexpress/dx-react-demos",
"version": "1.0.0-alpha.1",
"version": "1.0.0-alpha.2",
"description": "DevExtreme React Components Demos",
"author": {
"name": "Developer Express Inc.",
Expand All @@ -18,8 +18,8 @@
"lint:ci": "npm run -s lint -- -o ../../shippable/testresults/dx-react-demos-lint.xml -f junit"
},
"dependencies": {
"@devexpress/dx-react-grid": "1.0.0-alpha.1",
"@devexpress/dx-react-grid-bootstrap3": "1.0.0-alpha.1",
"@devexpress/dx-react-grid": "1.0.0-alpha.2",
"@devexpress/dx-react-grid-bootstrap3": "1.0.0-alpha.2",
"core-js": "^2.4.1",
"prop-types": "^15.5.8",
"react": "^15.5.4",
Expand Down
6 changes: 3 additions & 3 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": "1.0.0-alpha.1",
"version": "1.0.0-alpha.2",
"description": "Bootstrap 3 templates for DevExtreme React Grid component",
"author": {
"name": "Developer Express Inc.",
Expand Down Expand Up @@ -83,8 +83,8 @@
"rollup-watch": "^3.2.2"
},
"dependencies": {
"@devexpress/dx-react-core": "1.0.0-alpha.1",
"@devexpress/dx-react-grid": "1.0.0-alpha.1",
"@devexpress/dx-react-core": "1.0.0-alpha.2",
"@devexpress/dx-react-grid": "1.0.0-alpha.2",
"prop-types": "^15.5.8",
"react": "^15.5.4"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/dx-react-grid/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devexpress/dx-react-grid",
"version": "1.0.0-alpha.1",
"version": "1.0.0-alpha.2",
"description": "Composable plugin-based data grid component for React",
"author": {
"name": "Developer Express Inc.",
Expand Down Expand Up @@ -78,8 +78,8 @@
"rollup-watch": "^3.2.2"
},
"dependencies": {
"@devexpress/dx-grid-core": "1.0.0-alpha.1",
"@devexpress/dx-react-core": "1.0.0-alpha.1",
"@devexpress/dx-grid-core": "1.0.0-alpha.2",
"@devexpress/dx-react-core": "1.0.0-alpha.2",
"prop-types": "^15.5.8",
"react": "^15.5.4"
}
Expand Down

0 comments on commit 0ae4660

Please sign in to comment.