@splunk/react-ui 5.0.0-rc.1 → 5.0.0-rc.2

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.
@@ -1,13 +1,32 @@
1
1
  Change Log
2
2
  ============
3
3
 
4
+ 5.0.0-rc.2 - May 28, 2025
5
+ ----------
6
+ New Features:
7
+ * `Code` now supports `language="sql"` (SUI-7614).
8
+ * `Table.HeadCell` now supports the `tooltip` prop (SUI-7734).
9
+
10
+ API Changes:
11
+ * All components now use `KeyboardEvent`'s `key` property instead of the deprecated `keyCode` property (SUI-7352).
12
+ * `Dropdown` now exports type `DropdownPossibleOpenReason` and provides an array of `Dropdown.possibleOpenReasons` (SUI-2422).
13
+ * `Popover` now provides an array of `Popover.possibleCloseReasons` (SUI-2422).
14
+ * `Tooltip` now exports types `TooltipPossibleOpenReason` and `TooltipPossibleCloseReason`, and provides an array `Tooltip.possibleOpenReasons` and `Tooltip.possibleCloseReasons` (SUI-2422).
15
+
16
+ Bug Fixes:
17
+ * `Modal` close button now has correct `subtle` appearance.
18
+ * `Multiselect` no longer incorrectly throws a "defaultValue prop change" error in some scenarios (SUI-7777).
19
+ * `Table.HeadCell` and `Table.HeadDropdownCell` now aligns the topline of icons with multiline content (SUI-7758).
20
+ * `Table`'s cell single and multiline content now are vertically aligned (SUI-7613).
21
+ * `Markdown` now correctly renders code blocks where the language name is hyphenated (SUI-7829).
22
+
4
23
  5.0.0-rc.1 - May 14, 2025
5
24
  ----------
6
25
  New Features:
7
26
  * `Card` now defaults to a borderless appearance for non-clickable cards (SUI-7651).
8
- * `Dropdown`, `Search`, and `TabBar` now uses `KeyboardEvent`'s `key` property instead of deprecated `keycode` property (SUI-7352).
9
- * `Table` now uses `KeyboardEvent`'s `key` property instead of deprecated `keycode` property (SUI-7352).
10
- * `FormRows`, `JSONTree`, `Number`, and `RadioBar` now use `KeyboardEvent`'s `key` property instead of deprecated `keycode` property (SUI-7352).
27
+ * `Dropdown`, `Search`, and `TabBar` now uses `KeyboardEvent`'s `key` property instead of deprecated `keyCode` property (SUI-7352).
28
+ * `Table` now uses `KeyboardEvent`'s `key` property instead of deprecated `keyCode` property (SUI-7352).
29
+ * `FormRows`, `JSONTree`, `Number`, and `RadioBar` now use `KeyboardEvent`'s `key` property instead of deprecated `keyCode` property (SUI-7352).
11
30
 
12
31
  Bug Fixes:
13
32
  * `Table`'s `rowExpansion` button now correctly displays hover styles (SUI-7772).