Skip to content

Commit 419ca39

Browse files
committed
v0.83.0
1 parent fcf2cbd commit 419ca39

71 files changed

Lines changed: 472 additions & 69 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,58 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.83.0](https://github.com/deephaven/web-client-ui/compare/v0.82.0...v0.83.0) (2024-06-25)
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
- ComboBox component has been replaced.
11+
To migrate to new version:
12+
13+
* Passing children is used instead of `options` prop to define dropdown
14+
items. For cases where option value and display are the same, passing an
15+
array of values as `children` will work. For cases where value and
16+
display differ, `Item` elements must be passed as children. e.g. `<Item
17+
key={value}>{display}</Item>`
18+
e.g.
19+
20+
```typescript
21+
// values will be used for display + value
22+
const items = useMemo(
23+
() => ['Aaa', 'Bbb', 'Ccc'],
24+
[]
25+
)
26+
<ComboBox>{items}</ComboBox>
27+
```
28+
29+
```typescript
30+
<ComboBox>
31+
<Item key="aaa">Aaa</Item>
32+
<Item key="bbb">Bbb</Item>
33+
<Item key="ccc">Ccc</Item>
34+
</ComboBox>
35+
```
36+
37+
- The `spellcheck=false` prop is no longer supported or needed
38+
- `searchPlaceholder` and `inputPlaceholder` props are no longer
39+
supported and should be omitted. There is an optional `description` prop
40+
for cases where a descriptive label is desired. There is also a `label`
41+
prop for the primary component label.
42+
43+
### Features
44+
45+
- ComboBox - @deephaven/components ([#2067](https://github.com/deephaven/web-client-ui/issues/2067)) ([640e002](https://github.com/deephaven/web-client-ui/commit/640e002f85ea86961a22695c9c7659ca5d1de1ee)), closes [#2065](https://github.com/deephaven/web-client-ui/issues/2065)
46+
- ComboBoxNormalized - windowed data component ([#2072](https://github.com/deephaven/web-client-ui/issues/2072)) ([a30341a](https://github.com/deephaven/web-client-ui/commit/a30341a728625dc7fdc2b0a54b88dfc737977b7a)), closes [#2071](https://github.com/deephaven/web-client-ui/issues/2071)
47+
- Embed widget loading workspace settings ([#2068](https://github.com/deephaven/web-client-ui/issues/2068)) ([b090f20](https://github.com/deephaven/web-client-ui/commit/b090f200b38a7ecab1056b17f445c2af3ae09a41)), closes [#1964](https://github.com/deephaven/web-client-ui/issues/1964)
48+
- Export iris-grid mouse handlers ([#2083](https://github.com/deephaven/web-client-ui/issues/2083)) ([336c078](https://github.com/deephaven/web-client-ui/commit/336c07872af4f750c8b3d38638a8893670e0881a))
49+
50+
### Bug Fixes
51+
52+
- Console scroll bar following dynamic output ([#2076](https://github.com/deephaven/web-client-ui/issues/2076)) ([a91e4f3](https://github.com/deephaven/web-client-ui/commit/a91e4f348fc23618f10ac1d8c3a87bf237eb7bbd))
53+
- Dashboard plugin crashing UI on throw ([#2080](https://github.com/deephaven/web-client-ui/issues/2080)) ([e6b55cf](https://github.com/deephaven/web-client-ui/commit/e6b55cf78561a1508d49109e9003813b9cc27262))
54+
- DH-17199: Filter by value in the tree table context menu always shows null ([#2078](https://github.com/deephaven/web-client-ui/issues/2078)) ([4eb38dd](https://github.com/deephaven/web-client-ui/commit/4eb38dd2c47071516269662f8a975044e6bb0a9a))
55+
- Reconnect Auth Fail Fix - embed-widget ([#2023](https://github.com/deephaven/web-client-ui/issues/2023)) ([3e52242](https://github.com/deephaven/web-client-ui/commit/3e522428b88ed59cb9f8c38612a80236fd219e5d))
56+
- view border styling ([#2063](https://github.com/deephaven/web-client-ui/issues/2063)) ([6f99e6b](https://github.com/deephaven/web-client-ui/commit/6f99e6b764a63e31aec36d435ec62926d109955e))
57+
658
## [0.82.0](https://github.com/deephaven/web-client-ui/compare/v0.81.2...v0.82.0) (2024-06-11)
759

860
### ⚠ BREAKING CHANGES

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"useNx": false,
3-
"version": "0.82.0",
3+
"version": "0.83.0",
44
"command": {
55
"publish": {
66
"distTag": "latest"

package-lock.json

Lines changed: 34 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/app-utils/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.83.0](https://github.com/deephaven/web-client-ui/compare/v0.82.0...v0.83.0) (2024-06-25)
7+
8+
### Features
9+
10+
- Embed widget loading workspace settings ([#2068](https://github.com/deephaven/web-client-ui/issues/2068)) ([b090f20](https://github.com/deephaven/web-client-ui/commit/b090f200b38a7ecab1056b17f445c2af3ae09a41)), closes [#1964](https://github.com/deephaven/web-client-ui/issues/1964)
11+
12+
### Bug Fixes
13+
14+
- Reconnect Auth Fail Fix - embed-widget ([#2023](https://github.com/deephaven/web-client-ui/issues/2023)) ([3e52242](https://github.com/deephaven/web-client-ui/commit/3e522428b88ed59cb9f8c38612a80236fd219e5d))
15+
616
## [0.82.0](https://github.com/deephaven/web-client-ui/compare/v0.81.2...v0.82.0) (2024-06-11)
717

818
**Note:** Version bump only for package @deephaven/app-utils

packages/app-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@deephaven/app-utils",
3-
"version": "0.82.0",
3+
"version": "0.83.0",
44
"description": "Deephaven App Utils",
55
"author": "Deephaven Data Labs LLC",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)