Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@deephaven/utils
Advanced tools
A library with some utility functions used by Deephaven.
npm install --save @deephaven/utils
0.83.0 (2024-06-25)
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>
spellcheck=false
prop is no longer supported or neededsearchPlaceholder
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.FAQs
Deephaven Utils
The npm package @deephaven/utils receives a total of 2,693 weekly downloads. As such, @deephaven/utils popularity was classified as popular.
We found that @deephaven/utils demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 open source maintainers collaborating on the project.
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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.