Releases: deephaven/web-client-ui
Releases · deephaven/web-client-ui
v0.86.0
0.86.0 (2024-07-17)
Features
- Add option to disable WebGL rendering (#2134) (011eb33)
- Core plugins refactor, XComponent framework (#2150) (2571fad)
- IrisGridTheme iconSize (#2123) (58ee88d), closes #885
- Partitioned Table UI Enhancements (#2110) (de5ce40), closes #2079 #2066 #2103 #2104 #2105 #2106 #2107 #2108 #2109 #2049 #2120 #1904
Bug Fixes
v0.78.5
v0.78.4
v0.78.3
v0.85.2
v0.85.1
v0.85.0
v0.84.0
0.84.0 (2024-06-28)
⚠ BREAKING CHANGES
-
- @deephaven/jsapi-components - The contract of
useSearchableViewportData
to be more consistent with
useViewportData
.usePickerWithSelectedValues
now requires
timeZone
.
- @deephaven/jsapi-components - The contract of
- @deephaven/jsapi-utils -
createSearchTextFilter
requirestimeZone
Features
Bug Fixes
isElementOfType
Improved type inference (#2099) (e13c9d7), closes #2094- Console does not scroll to bottom when code run from notebook (#2114) (e75e716)
- make textValue default to key for Normalized Item (#2113) (bd3e944)
- Update IrisGridContextMenuHandler getHeaderActions return type to be more permissive (#2117) (4e08b79)
v0.83.0
0.83.0 (2024-06-25)
⚠ BREAKING CHANGES
- ComboBox component has been replaced.
To migrate to new version:
- Passing children is used instead of
options
prop to define dropdown
items. For cases where option value and display are the same, passing an
array of values aschildren
will work. For cases where value and
display differ,Item
elements must be passed as children. e.g.<Item key={value}>{display}</Item>
e.g.
// values will be used for display + value
const items = useMemo(
() => ['Aaa', 'Bbb', 'Ccc'],
[]
)
<ComboBox>{items}</ComboBox>
<ComboBox>
<Item key="aaa">Aaa</Item>
<Item key="bbb">Bbb</Item>
<Item key="ccc">Ccc</Item>
</ComboBox>
- The
spellcheck=false
prop is no longer supported or needed searchPlaceholder
andinputPlaceholder
props are no longer
supported and should be omitted. There is an optionaldescription
prop
for cases where a descriptive label is desired. There is also alabel
prop for the primary component label.
Features
- ComboBox - @deephaven/components (#2067) (640e002), closes #2065
- ComboBoxNormalized - windowed data component (#2072) (a30341a), closes #2071
- Embed widget loading workspace settings (#2068) (b090f20), closes #1964
- Export iris-grid mouse handlers (#2083) (336c078)
Bug Fixes
- Console scroll bar following dynamic output (#2076) (a91e4f3)
- Dashboard plugin crashing UI on throw (#2080) (e6b55cf)
- DH-17199: Filter by value in the tree table context menu always shows null (#2078) (4eb38dd)
- Reconnect Auth Fail Fix - embed-widget (#2023) (3e52242)
- view border styling (#2063) (6f99e6b)
v0.82.0
0.82.0 (2024-06-11)
⚠ BREAKING CHANGES
- Removed
TreeTableViewportUpdater
,TableViewportUpdater
, and
StorageTableViewportUpdater
. If wanting to continue using them, copy
the deleted files from this PR.
Features
Bug Fixes
- A few small cleanups for DateTimeInput (#2062) (ec11736)
- Editing issues when key columns are not first columns (#2053) (1bbcc73)
- Embed-widget with multiple panels not showing panel headers (#2064) (3f45f07)
- Remove TreeTableViewportUpdater, TableViewportUpdater, and StorageTableViewportUpdater (#2057) (0943041)