All Versions
96
Latest Version
Avg Release Cycle
42 days
Latest Release
1331 days ago
Changelog History
Page 10
Changelog History
Page 10
-
v1.0.0-alpha.14 Changes
October 25, 2017 -
v1.0.0-alpha.13 Changes
October 19, 2017 -
v1.0.0-alpha.12 Changes
October 19, 2017๐ Bug Fixes
- react-grid: add 'overflow: hidden' for MUI TableCell (#406) (69fd88c), closes #403
- react-grid: allow to use Grid with react@16 (#389) (9f292fe)
- react-grid: correlate sorting order with grouping order (#414) (db3377c), closes #398
- react-grid: optimize table selection rendering (#412) (b0dfae1), closes #397
- react-grid-bootstrap3: fix server side rendering issue with VirtualTable (#420) (207e81b), closes #415
๐ Features
๐ Performance Improvements
๐ฅ BREAKING CHANGES
- react-grid: The
scopeparameter of thesetColumnSortingaction has been removed.
The
GroupingStateplugin now has an optional dependency on theSortingStateplugin. So,GroupingStateshould be placed afterSortingState.Before:
<GroupingState /* ... */ /> <SortingState /* ... */ />After:
<SortingState /* ... */ /> <GroupingState /* ... */ /> -
v1.0.0-alpha.11 Changes
October 04, 2017๐ Bug Fixes
- react-core: update TemplatePlacholder on placeholder func change (#370) (69659c8)
- react-grid: add 'pointer' cursor on group icon in the HeaderCell (#369) (8d1de4a)
๐จ Code Refactoring
- react-grid: change custom filtering function signature (#354) (67cfdc9)
- react-grid: rename getCellData to getCellValue (#349) (8f8e41d)
๐ Features
- react-grid: add custom grouping functions to LocalGrouping (#376) (2c31af1)
- react-grid: add the functionality to define a custom sorting algorithm (#371) (4ac8ab8)
- react-grid: support column data types (#336) (1528800)
๐ Performance Improvements
- react-grid: optimize internal state calculation (#356) (be890b4)
- react-grid: suppress redundant render (#355) (695aacd)
๐ฅ BREAKING CHANGES
- react-grid: The
filterFnproperty of theLocalFilteringhas been renamed togetColumnPredicate. The argument list has been changed fromfilterFn(row: Row, filter: Filter) => booleantogetColumnPredicate(columnName: string) => Function. The returning function has the following signature(value: any, filter, row: Row) => boolean. - react-grid: The
getCellDataproperty of the TableView plugin and thegetCellDatafield of the Column interface have been renamed togetCellValue.
-
v1.0.0-alpha.10 Changes
September 18, 2017๐ Bug Fixes
๐จ Code Refactoring
- react-core: remove embedded Template connection (#331) (f90955d)
- react-grid: rename tableTemplate to tableLayoutTemplate (#310) (def4a97)
๐ Features
- react-core: implement TemplateConnector (#314) (1e9bcfc)
- react-grid: add tableRowTemplate to the TableView plugin (#317) (24d9446)
- react-grid: implement row templates (#333) (bc960d4)
- react-grid: implement table column resizing (#297) (a377d3c)
- react-grid: make grouped and ungrouped column sorting independent (#292) (c812fa3)
๐ฅ BREAKING CHANGES
- react-grid: The
tableExtraPropsgetter was removed from theTableViewandTableSelectionplugins. - react-core:
connectGettersandconnectActionsproperties have been removed from the Template component. From now on, you can connect Getters and Actions using the TemplateConnector component.
Before:
<Template name="templateName" connectGetters={getter => ({ value: getter('value') })} connectActions={action => ({ changeValue: action('changeValue') })} > {({ value, changeValue }) => /* ... */} </Template>After:
<Template name="templateName"> <TemplateConnector> {({ value }, { changeValue }) => /* ... */} </TemplateConnector> </Template>- react-grid: The
tableTemplateproperty has been renamed totableLayoutTemplateto make theTableViewplugin API more eloquent.
-
v1.0.0-alpha.1 Changes
May 15, 2017- ๐ Initial public release