Releases: weng-lab/psychscreen-ui-components
v0.8.4
Add external value control for slider
Full Changelog: v0.8.3...v0.8.4
v0.8.3
changed brain ccres short name in app bar
v0.8.2
Full Changelog: v0.8.1...v0.8.2
Make manage columns button lowercase
v0.8.1
What's Changed
- Misc updates by @jpfisher72 in #29
Slider:
- Removes prop spread causing errors
- Slightly thins slider rail
Datatable:
- Removes right padding on items (except last columns) to allow columns to be closer together when table constrained
- Removes table title/search/download button from scrollable section of table
- Adds scroll indicators when table overflows
Full Changelog: v0.8.0...v0.8.1
v0.8.0
Breaking change - change prop headerRender to HeaderRender and constrain it further to stricly be a React Function Component. Prop name needs to be capitalized if it's a Function Component
Breaking change - In slider component, use onSliderChange and onSliderChangeCommitted to properly extract values out.
v0.8.0-a.3 - Proper cursor behavior when onRowClick is set
Full Changelog: v0.8.0-a.2...v0.8.0-a.3
v0.8.0-a.2: Add unsortable column prop, capitalize FunctionalRender
Full Changelog: v0.8.0-a.1...v0.8.8-a.2
v0.8.0 alpha v1 - DataTable: Change headerRender to HeaderRender
Breaking change - change prop headerRender to HeaderRender and constrain it further to stricly be a React Function Component. Prop name needs to be capitalized if it's a Function Component
v0.7.9 - Redo
Update to version in package to allow publish on npm
v0.7.9: DataTable update - Change headerRender Prop
DataTable update - Allow React.FC in headerRender, disallow () => string:
Old: headerRender?: () => string | JSX.Element
New: headerRender?: React.FC | (() => JSX.Element)
Changed to allow use of state in the column header. Removed ability to return a string as it's not useful and complicates component. Use a template string in header prop if you want to use logic to render a string.