Closed bmingles closed 4 months ago
Attention: Patch coverage is 68.33333%
with 19 lines
in your changes missing coverage. Please review.
Project coverage is 46.61%. Comparing base (
c804b15
) to head (ea02fa9
). Report is 2 commits behind head on main.:exclamation: Current head ea02fa9 differs from pull request most recent head a19c4a7
Please upload reports for the commit a19c4a7 to get more accurate results.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
ComboBox
component in @deephaven/componentsPicker
sinceComboBox
is basically a subclassComboBox
component and replaced usage (condition column + row formatting. Also tested to make sure it still works as before)resolves #2065
BREAKING CHANGE: ComboBox component has been replaced. To migrate to new version:
options
prop to define dropdown items. For cases where option value and display are the same, passing an array of values aschildren
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.spellcheck=false
prop is no longer supported or neededsearchPlaceholder
andinputPlaceholder
props are no longer supported and should be omitted. There is an optionaldescription
prop for cases where a descriptive label is desired. There is also alabel
prop for the primary component label.