Skip to content
This repository was archived by the owner on Feb 26, 2026. It is now read-only.

Commit 0ae4660

Browse files
authored
chore: Publish 1.0.0-alpha.2 (#105)
1 parent aa64e3c commit 0ae4660

File tree

8 files changed

+71
-13
lines changed

8 files changed

+71
-13
lines changed

CHANGELOG.md

Lines changed: 55 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,57 @@
1-
## 1.0.0-alpha.1 (2017-05-15)
1+
<a name="1.0.0-alpha.2"></a>
2+
# [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)
3+
4+
5+
### Bug Fixes
6+
7+
* **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))
8+
* **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))
9+
* **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)
10+
11+
12+
### Features
13+
14+
* **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))
15+
* **react-grid:** Implement page size selector ([#95](https://github.com/DevExpress/devextreme-reactive/issues/95)) ([9e21583](https://github.com/DevExpress/devextreme-reactive/commit/9e21583))
16+
17+
18+
### BREAKING CHANGES
19+
20+
* 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.
21+
22+
The following code:
23+
24+
```jsx
25+
<TableRowDetail
26+
expandedRows={expandedRows}
27+
onExpandedRowsChange={onExpandedRowsChange}
28+
template={({ row }) =>
29+
<GridDetailContainer
30+
data={row}
31+
columns={detailColumns}
32+
/>
33+
}
34+
/>
35+
```
36+
37+
should be replaced with:
38+
39+
```jsx
40+
<RowDetailState
41+
expandedRows={expandedRows}
42+
onExpandedRowsChange={onExpandedRowsChange}
43+
/>
44+
<TableRowDetail
45+
template={({ row }) =>
46+
<GridDetailContainer
47+
data={row}
48+
columns={detailColumns}
49+
/>
50+
}
51+
/>
52+
```
53+
54+
<a name="1.0.0-alpha.1"></a>
55+
# 1.0.0-alpha.1 (2017-05-15)
256

357
* Initial public release

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"packages": [
44
"packages/*"
55
],
6-
"version": "1.0.0-alpha.1"
6+
"version": "1.0.0-alpha.2"
77
}

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
"name": "Developer Express Inc.",
66
"url": "https://www.devexpress.com/"
77
},
8+
"repository": {
9+
"type": "git",
10+
"url": "git+https://github.com/DevExpress/devextreme-reactive.git"
11+
},
812
"license": "SEE LICENSE IN README.md",
913
"devDependencies": {
1014
"concurrently": "^3.4.0",

packages/dx-grid-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devexpress/dx-grid-core",
3-
"version": "1.0.0-alpha.1",
3+
"version": "1.0.0-alpha.2",
44
"description": "Core library for the DevExtreme Reactive Grid component",
55
"author": {
66
"name": "Developer Express Inc.",

packages/dx-react-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devexpress/dx-react-core",
3-
"version": "1.0.0-alpha.1",
3+
"version": "1.0.0-alpha.2",
44
"description": "Core library for DevExtreme React Components",
55
"author": {
66
"name": "Developer Express Inc.",

packages/dx-react-demos/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "@devexpress/dx-react-demos",
4-
"version": "1.0.0-alpha.1",
4+
"version": "1.0.0-alpha.2",
55
"description": "DevExtreme React Components Demos",
66
"author": {
77
"name": "Developer Express Inc.",
@@ -18,8 +18,8 @@
1818
"lint:ci": "npm run -s lint -- -o ../../shippable/testresults/dx-react-demos-lint.xml -f junit"
1919
},
2020
"dependencies": {
21-
"@devexpress/dx-react-grid": "1.0.0-alpha.1",
22-
"@devexpress/dx-react-grid-bootstrap3": "1.0.0-alpha.1",
21+
"@devexpress/dx-react-grid": "1.0.0-alpha.2",
22+
"@devexpress/dx-react-grid-bootstrap3": "1.0.0-alpha.2",
2323
"core-js": "^2.4.1",
2424
"prop-types": "^15.5.8",
2525
"react": "^15.5.4",

packages/dx-react-grid-bootstrap3/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devexpress/dx-react-grid-bootstrap3",
3-
"version": "1.0.0-alpha.1",
3+
"version": "1.0.0-alpha.2",
44
"description": "Bootstrap 3 templates for DevExtreme React Grid component",
55
"author": {
66
"name": "Developer Express Inc.",
@@ -83,8 +83,8 @@
8383
"rollup-watch": "^3.2.2"
8484
},
8585
"dependencies": {
86-
"@devexpress/dx-react-core": "1.0.0-alpha.1",
87-
"@devexpress/dx-react-grid": "1.0.0-alpha.1",
86+
"@devexpress/dx-react-core": "1.0.0-alpha.2",
87+
"@devexpress/dx-react-grid": "1.0.0-alpha.2",
8888
"prop-types": "^15.5.8",
8989
"react": "^15.5.4"
9090
},

packages/dx-react-grid/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devexpress/dx-react-grid",
3-
"version": "1.0.0-alpha.1",
3+
"version": "1.0.0-alpha.2",
44
"description": "Composable plugin-based data grid component for React",
55
"author": {
66
"name": "Developer Express Inc.",
@@ -78,8 +78,8 @@
7878
"rollup-watch": "^3.2.2"
7979
},
8080
"dependencies": {
81-
"@devexpress/dx-grid-core": "1.0.0-alpha.1",
82-
"@devexpress/dx-react-core": "1.0.0-alpha.1",
81+
"@devexpress/dx-grid-core": "1.0.0-alpha.2",
82+
"@devexpress/dx-react-core": "1.0.0-alpha.2",
8383
"prop-types": "^15.5.8",
8484
"react": "^15.5.4"
8585
}

0 commit comments

Comments
 (0)