@splunk/react-ui 4.44.0 → 4.45.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,19 @@
1
1
  Change Log
2
2
  ============
3
3
 
4
+ 4.45.0 - May 6, 2025
5
+ ----------
6
+ Bug Fixes:
7
+ * `Table` now displays `cursor: default` when a row is not clickable and is an empty action cell (SUI-7232).
8
+ * `Table` now maintains consistent IDs for expansion rows through renders (SUI-7698).
9
+ * `Layer` will now render at the correct `z-index` when `separateStackingContexts` is set in `LayerStackGlobalProvider` (SUI-7241).
10
+ * `Concertina`, `File`, `Layer`, `Slider`, `Resize`, and `TextArea` will no longer cause issues with server-side rendering (SUI-7737)
11
+
12
+ 4.44.1 - April 10, 2025
13
+ ----------
14
+ Bug Fixes:
15
+ * `Combobox` and `Multiselect` no longer call `onOpen` after selecting a value (SUI-7624).
16
+
4
17
  4.44.0 - April 1, 2025
5
18
  ----------
6
19
  New Features:
@@ -8,11 +21,11 @@ New Features:
8
21
  * `Date` does not render 'Invalid value' for empty strings when controlled (SUI-5993).
9
22
  * `Date` does not revert value for empty strings when uncontrolled (SUI-5993).
10
23
 
11
- Bug Fixes:
24
+ Bug Fixes:
12
25
  * `StaticContent` supports new prop `labelledBy` (SUI-5326).
13
26
  * `Clickable` now displays the `not-allowed` cursor when disabled (SUI-7297).
14
27
  * `Table` now renders dynamically added expansionRows (SUI-7403).
15
- * `ButtonGroup`'s `role` has changed from `menubar` to `group`. Child `Button`'s `role`s have changed from `menuitem` to `button`. See the migration guide for details (SUI-6551).
28
+ * `ButtonGroup`'s `role` has changed from `menubar` to `group`. Child `Button`'s `role`s have changed from `menuitem` to `button`. See the migration guide for details (SUI-6551).
16
29
  * `Table`'s resize handler no longer triggers sorting or opening dropdown when `enter` key is pressed (SUI-7320).
17
30
  * `Slider`'s disabled state now prevents the appearance of thumb focus when active and displays `not-allowed` cursor on the entire input (SUI-7498).
18
31
  * `Table`'s stripe rows now extend all the way across the table for rows without actions (SUI-7232).
package/ComboBox.js CHANGED
@@ -654,7 +654,7 @@
654
654
  }));
655
655
  pe(ue(i), "handleInputClick", (function(e) {
656
656
  e.stopPropagation();
657
- if (!i.state.open && !i.props.disabled) {
657
+ if (!i.props.disabled) {
658
658
  i.open();
659
659
  }
660
660
  }));
@@ -807,13 +807,15 @@
807
807
  key: "open",
808
808
  value: function e() {
809
809
  var t = this;
810
- this.setState({
811
- open: true,
812
- activeIndex: 0
813
- }, (function() {
814
- var e, n;
815
- (e = (n = t.props).onOpen) === null || e === void 0 ? void 0 : e.call(n);
816
- }));
810
+ if (!this.state.open) {
811
+ this.setState({
812
+ open: true,
813
+ activeIndex: 0
814
+ }, (function() {
815
+ var e, n;
816
+ (e = (n = t.props).onOpen) === null || e === void 0 ? void 0 : e.call(n);
817
+ }));
818
+ }
817
819
  }
818
820
  }, {
819
821
  key: "close",