Join our webinar on Wednesday, June 26, at 1pm EDTHow Chia Mitigates Risk in the Crypto Industry.Register
Socket
Socket
Sign inDemoInstall

@deephaven/babel-preset

Package Overview
Dependencies
181
Maintainers
7
Versions
678
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install
2345
68Next

0.83.1-beta.0

Diff

deephaven-bot
published 0.83.0 •

Changelog

Source

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

  • 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)
deephaven-bot
published 0.82.1-beta.8 •

deephaven-bot
published 0.80.2-ui-table-context-menu.1 •

deephaven-bot
published 0.82.1-alpha-combobox.25 •

deephaven-bot
published 0.82.1-beta.7 •

deephaven-bot
published 0.82.1-alpha-combobox.15 •

deephaven-bot
published 0.82.1-beta.6 •

deephaven-bot
published 0.82.1-beta.5 •

deephaven-bot
published 0.82.1-beta.3 •

2345
68Next
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc