Skip to content

Releases: zakodium-oss/react-science

v0.33.0

29 Jan 09:43
722bf65
Compare
Choose a tag to compare

0.33.0 (2024-01-26)

⚠ BREAKING CHANGES

  • remove Modal component in favor of blueprintjs' Dialog component (#626)
  • remove component tabs in favor of blueprintjs Tabs component (#624)
  • Table's font size changed from 12px to 14px. Table border prop rename to hasBorder
  • You should use ValueRenderer.Header instead of ValueRenderer.Title inside of Table.Header

Features

  • add a 'disabled' prop to Toolbar.Item (#615) (c5352bc)
  • add noTooltip prop to Toolbar.Item (#629) (82a2be9)
  • improve layout of tabs (#630) (123f72f)
  • remove Modal component in favor of blueprintjs' Dialog component (#626) (64ad1d0)
  • use blueprint html table, adds bordered, compact, interactive and striped props (#611) (fef5ea7)

Bug Fixes

  • disable auto-translate of applications (#637) (c6bef12)

Documentation

  • create controllable tooltip on button stories (#619) (bf1bfde)
  • fix keyboard navigation in most select stories (f917094)

Miscellaneous Chores

  • add missing breaking changes to changelog (#618) (d2d3871)

Code Refactoring

  • remove component tabs in favor of blueprintjs Tabs component (#624) (ebf6eb7)

v0.32.2

14 Dec 13:04
7275134
Compare
Choose a tag to compare

0.32.2 (2023-12-14)

Bug Fixes

v0.32.1

14 Dec 09:55
Compare
Choose a tag to compare

0.32.1 (2023-12-14)

Bug Fixes

  • avoid passing wrong props to toolbar item and underlying button (02c7b1d)

v0.32.0

13 Dec 15:43
3bbfefa
Compare
Choose a tag to compare

0.32.0 (2023-12-13)

⚠ BREAKING CHANGES

Bug Fixes

  • make Modal's onRequestClose mandatory and call it on close (#602) (e3f753f)

v0.31.0

13 Dec 10:22
Compare
Choose a tag to compare

0.31.0 (2023-12-13)

Features

  • fix toolbar item alignement and allow different intents on each item (#592) (b54779b)

Bug Fixes

  • correct toolbar layout when items should fit the width of the container (#599) (6ab507f)

v0.30.1

12 Dec 12:45
Compare
Choose a tag to compare

0.30.1 (2023-12-12)

Bug Fixes

  • use tinycolor to compute rgba (d29b40d)

v0.30.0

12 Dec 09:50
Compare
Choose a tag to compare

0.30.0 (2023-12-12)

⚠ BREAKING CHANGES

  • remove Select component. Use blueprintjs select component instead
  • remove our Input, Textarea, Checkbox and Field components. Use blueprintjs components directly instead.

Features

Bug Fixes

  • do not render button in span in Button component (#595) (88e0b37)

v0.29.0

06 Dec 13:37
4a72f7f
Compare
Choose a tag to compare

0.29.0 (2023-12-06)

⚠ BREAKING CHANGES

  • remove ContextMenu and Dropdown components. We advise using the equivalent components provided by blueprintjs.
  • rewrite buttons to be wrappers around blueprintjs buttons

Features

  • remove ContextMenu and Dropdown components in favour of using blueprintjs (#585) (03d9ce9)
  • rewrite buttons to be wrappers around blueprintjs buttons (c191026)

Bug Fixes

  • render explicit string literals for representing boolean values (#589) (40314a6)
  • update dependencies (#580) (a85d339)

v0.28.1

18 Oct 07:07
Compare
Choose a tag to compare

0.28.1 (2023-10-18)

Bug Fixes

  • remove commonjs build and fix esm build (#568) (c353399)

v0.28.0

17 Oct 09:48
678d5e1
Compare
Choose a tag to compare

0.28.0 (2023-10-17)

⚠ BREAKING CHANGES

  • the api of the Toolbar component has changed. To migrate, remove orientation='horizontal' or replace orientation='vertical' with vertical={true}. The api of the Toolbar.Item has changed. To migrate, set the icon in the icon prop instead of passing it in children. It is recommended to use blueprint icons by passing one of the available string constants to icon.

Features

Bug Fixes

  • confirm modal outline (6e3ba05)
  • display boolean and zero values correctly in value renderers (#566) (10c65fe)
  • replace mouse event with pointer event to support touch devices (#557) (db36620)

Code Refactoring

  • migrate Toolbar to blueprintjs components (#559) (d258b69)