Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update web version 0.83.0 #5667

Merged
merged 1 commit into from
Jun 25, 2024
Merged

Update web version 0.83.0 #5667

merged 1 commit into from
Jun 25, 2024

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Jun 25, 2024

Release notes https://github.com/deephaven/web-client-ui/releases/tag/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 as children 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 and inputPlaceholder props are no longer
    supported and should be omitted. There is an optional description prop
    for cases where a descriptive label is desired. There is also a label
    prop for the primary component label.

Features

Bug Fixes

@mofojed mofojed closed this Jun 25, 2024
@mofojed mofojed reopened this Jun 25, 2024
@github-actions github-actions bot locked and limited conversation to collaborators Jun 25, 2024
@mofojed mofojed self-assigned this Jun 25, 2024
@mofojed mofojed added NoDocumentationNeeded NoReleaseNotesNeeded No release notes are needed. labels Jun 25, 2024
@mofojed mofojed enabled auto-merge (squash) June 25, 2024 18:37
@mofojed mofojed merged commit a7d4ea8 into main Jun 25, 2024
17 of 19 checks passed
@mofojed mofojed deleted the deephaven-bot/update-web-0.83.0 branch June 25, 2024 19:02
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants