Skip to content

Releases: weng-lab/psychscreen-ui-components

v0.8.4

29 Dec 20:40
Compare
Choose a tag to compare

Add external value control for slider

Full Changelog: v0.8.3...v0.8.4

v0.8.3

29 Dec 16:26
Compare
Choose a tag to compare
changed brain ccres short name in app bar

v0.8.2

28 Dec 21:27
Compare
Choose a tag to compare

Full Changelog: v0.8.1...v0.8.2

Make manage columns button lowercase

v0.8.1

28 Dec 21:01
55000ea
Compare
Choose a tag to compare

What's Changed

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

02 Dec 20:21
Compare
Choose a tag to compare

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

21 Nov 02:43
Compare
Choose a tag to compare

v0.8.0-a.2: Add unsortable column prop, capitalize FunctionalRender

28 Aug 23:44
Compare
Choose a tag to compare

v0.8.0 alpha v1 - DataTable: Change headerRender to HeaderRender

28 Aug 16:27
Compare
Choose a tag to compare

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

28 Aug 16:03
Compare
Choose a tag to compare

Update to version in package to allow publish on npm

v0.7.9: DataTable update - Change headerRender Prop

28 Aug 15:58
Compare
Choose a tag to compare

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.