|
3 | 3 | All notable changes to this project will be documented in this file. |
4 | 4 | See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. |
5 | 5 |
|
| 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 | + |
6 | 58 | ## [0.82.0](https://github.com/deephaven/web-client-ui/compare/v0.81.2...v0.82.0) (2024-06-11) |
7 | 59 |
|
8 | 60 | ### ⚠ BREAKING CHANGES |
|
0 commit comments