react-virtualized
Advanced tools
Comparing version 6.1.0 to 6.1.1
Changelog | ||
------------ | ||
#### 6.1.0 | ||
##### 6.1.1 | ||
Updated React dependency ranges now that 15.0 has been released. | ||
### 6.1.0 | ||
`Grid` supports a new `renderCellRanges` property for customizing the rendering of a window of cells. | ||
@@ -19,17 +22,17 @@ This function should implement the following signature: | ||
#### 6.0.8 | ||
##### 6.0.8 | ||
Fixed dependency ranges for `react-addons-shallow-compare` and `react-dom`. | ||
#### 6.0.7 | ||
##### 6.0.7 | ||
Added key handling to sortable `FlexTable` headers so that ENTER and SPACE keys can be used to toggle sort direction. | ||
#### 6.0.6 | ||
##### 6.0.6 | ||
Added conditional checks to when `aria-label`, `role`, and `tabIndex` get attached to `FlexTable` headers and rows. | ||
These a11y properties are only added when on-click or sort handlers are present. | ||
#### 6.0.5 | ||
##### 6.0.5 | ||
Added `aria-label` and `role` attributes to `FlexTable`, `Grid`, and `VirtualScroll` components to fix a11y issues reported by [reactjs/react-a11y](https://github.com/reactjs/react-a11y). | ||
Thanks to @globexdesigns for the contributions! | ||
#### 6.0.4 | ||
##### 6.0.4 | ||
Separated horiontal and vertical `Grid` metadata calculation to avoid unnecessarily recomputing row metadata for `FlexTable`s and `VirtualScroll`s when a browser's window is resized, for example. | ||
@@ -36,0 +39,0 @@ Also replaced `columnWidth` and `rowHeight` getter uses in `Grid.render` in favor of cached cell metadata instead. |
@@ -6,3 +6,3 @@ { | ||
"user": "bvaughn", | ||
"version": "6.1.0", | ||
"version": "6.1.1", | ||
"homepage": "https://github.com/bvaughn/react-virtualized", | ||
@@ -139,8 +139,8 @@ "main": "dist/commonjs/index.js", | ||
"raf": "^3.1.0", | ||
"react-addons-shallow-compare": "^0.14.0 || ^15.0.0-rc.1" | ||
"react-addons-shallow-compare": "^0.14.0 || ^15.0.0" | ||
}, | ||
"peerDependencies": { | ||
"react": "^0.14.0 || ^15.0.0-rc.1", | ||
"react-dom": "^0.14.0 || ^15.0.0-rc.1" | ||
"react": "^0.14.0 || ^15.0.0", | ||
"react-dom": "^0.14.0 || ^15.0.0" | ||
} | ||
} |
659749