Socket
Socket
Sign inDemoInstall

@deephaven/babel-preset

Package Overview
Dependencies
181
Maintainers
0
Versions
682
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @deephaven/babel-preset

Deephaven Babel preset


Version published
Maintainers
0
Created

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)

Readme

Source

@deephaven/babel-preset

The babel configuration settings used by Deephaven Data Labs.

Usage

Install dependencies:

npm install --save-dev @deephaven/babel-preset

Also install all peer dependencies.

FAQs

Last updated on 25 Jun 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc