Releases: equinor/webviz-core-components
Releases · equinor/webviz-core-components
Version 0.5.2-rc.2
Aligned text over multiple lines and improved auto-size. (#173) * Aligned text over multiple lines and improved auto-size. * Improved spacing in menu and changed color of section icon * Better alignment of elements in menu when some have an icon while others do not. * Implemented max and min width for menu.
Version 0.5.2-rc.1
Improved transition of menu when closing. (#167) - Click on logo is no longer refreshing the page.
Version 0.5.2-rc.0
Added `url` prop to `Menu` (#162)
Version 0.5.2-alpha.1
Implemented a new menu component (#154)
Version 0.5.1
Changed
- #140 - Improved styling of the
Select
component. - #145 - Added wrapper components for typically used Dash components (Dropdown, Slider, etc) with additional styling.
- #148 - Changed default value of
numSecondsUntilSuggestionsAreShown
to 0.5 inSmartNodeSelector
component - #150 - Changed color of single remove button in
SmartNodeSelector
to the same as for the remove all button. - #151 -
SmartNodeSelector
: Changes todata
anddelimiter
props are considered now and cause the component to update.
Added
- #148 - Added
lineBreakAfterTag
property toSmartNodeSelector
which defaults to false. If set to true, tags are separated by a line break.
Version 0.5.1-rc.2
`SmartNodeSelector` : Extended property state updates (#151) * Extended property state updates: Changes to `data` and `delimiter` are considered now. * Fixed bugs in `SmartNodeSelectorInteractiveContainer` * Adjusted error variables in constructor
Version 0.5.1-rc.1
Add scrollbar to Frame component (#147)
Version 0.5.1-rc.0
- Improved styling of the
Select
component. - Added wrapper components for typically used Dash components (Dropdown, Slider, etc) with additional styling.
Version 0.5.0
Changed
- #134 - When prereleases are done in GitHub, they will now be published to
npm
using thenext
tag. E.g.npm install @webviz/core-components
will install the latest official release, whilenpm install @webviz/core-components@next
will install the latest prerelease. - #125 - Moved
React
code andNode.js
configuration into./react/
directory.
Adjustedpackage.json
,.gitignore
,.vscode/launch.js
and GitHub workflow file accordingly. - #125 - Tightened
tsconfig
options in order to have a more strict code validation. - #125 - Synchronized ECMA Script version in
tsconfig
andeslint
. - #125 - Added automatic removal of unused autogenerated files (
.Rbuildignore
). - #125 - Removed
plotly-cartesian.js
andpackage.json
(top level) fromMANIFEST.in
. - #125 - Adjusted components according to new
tsconfig
options. - #125 - Moved
flexbox.css
into new component folder. - #125 - Introduced
DefaultPropsHelper.ts
in order to account for coexistence of TypeScript restrictions andReact
'sdefaultProps
. - #125 -
setup.py
is now reading package data frompackage.json
file insidewebviz_core_components
. - #121 - Changed rendering of
SmartNodeSelector
component when only one node can be selected. - #136 - Changes to selected tags in
SmartNodeSelector
are now always sent.
Added
- #125 - Added
Storybook
for demo of components. - #125 - Added
declarations.d.ts
file for ambient declarations for npm modules without type declarations. - #130 - Added feedback button to
WebvizPluginPlaceholder
. Addedhref
andtarget
properties toWebvizToolbarButton
.
Fixed
- #136 - Several bug fixes in
SmartNodeSelector
(exception on entering invalid node name when no metadata given, exception on using several wildcards,
new tag when pressing enter with single node selection and invalid data, node selected several times when its name is partly contained in other nodes, exception on holding backspace pressed). - #125 - Removed
selectedNodes
attribute fromSmartNodeSelector
arguments inusage.py
. - #124 -
SmartNodeSelector
now returns all selected tags (also invalid and duplicate ones) to parent. - #123 - Removed unused variables and added types to
SmartNodeSelector
and its tests.
Version 0.5.0-rc.1
SmartNodeSelector: Several bug fixes (#136) * Several bug fixes - Exception on entering invalid node name when no metadata given - Exception on using wildcards - Bug fix: when pressing enter with single node selection and invalid data - Bug fix: when node name is partly contained in others, the node is selected several times - Bug fix: Crash when holding backspace pressed