Releases: tremorlabs/tremor
Releases · tremorlabs/tremor
v1.6.0-beta-1.6.0.1
v1.5.0
v1.5.0-beta-1.5.0.3
v1.5.0-beta-1.5.0.2
1.5.0-beta-1.5.0.2 (2023-01-15)
Bug Fixes
v1.5.0-beta-1.5.0.1
1.5.0-beta-1.5.0.1 (2023-01-15)
Features
v1.4.0
Controlled input components are here 🎉
Dropdown, SelectBox, MultiSelectBox, TabList, and Toggle
- Added a new
value
and property to enable controllable state. - Added new
onValueChange
property to replacehandleSelect
(handleSelect
is be deprecated) - Enabled KeyListeners, e.g.
ESC
key to dismiss an opened Dropdown and Arrow Up/Down to skim through options.
- Added
defaultValue
for uncontrolled mode - Added
id
property
- Added a new
DateRangePicker
component which will replace the currentDatepicker
(Datepicker
is deprecated) - It supports controlled and uncontrolled state, through the
value
and thedefaultValue
properties. The input format is a tuple in the following format:[startDate, endDate, dropdownOption (optional)]
- The default dropdown options can be replaced through the
options
property
v1.3.1
v1.3.0
1.3.0 (2022-12-16)
Features
-
Text Input: Create interactive applications by getting textual data from the user. #179
Fixes and Improvements -
Dropdown, MultiSelectBox, and SelectBox: Added optional icon property to insert an icon within the input box
-
AreaChart, LineChart, and BarChart: Added optional minValue and maxValue properties to control the minimun and maximum values on a chart's axis. PR#240
-
Buttons: Now support three types button, submit, reset, and three new corresponding event handlers, onClick, onSubmit, onReset. Warning: The handleClick property will be deprecated in the next major release. Please use onClick from now on. #205, PR#188