@splunk/react-ui 4.21.1 → 4.22.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 +17 -1
- package/Code.js +0 -1
- package/Color.js +238 -235
- package/ComboBox.js +195 -183
- package/Menu.js +100 -101
- package/Multiselect.js +655 -641
- package/RadioBar.js +91 -67
- package/ResultsMenu.js +107 -122
- package/Search.js +258 -246
- package/Select.js +461 -457
- package/Slider.js +87 -76
- package/TabBar.js +99 -84
- package/Table.js +805 -673
- package/package.json +5 -5
- package/types/src/Color/Color.d.ts +0 -1
- package/types/src/RadioBar/RadioBar.d.ts +1 -0
- package/types/src/ResultsMenu/ResultsMenu.d.ts +0 -2
- package/types/src/Select/docs/examples/Icons.d.ts +1 -9
- package/types/src/Slider/Slider.d.ts +1 -0
- package/types/src/TabBar/Tab.d.ts +10 -1
- package/types/src/TabBar/TabBar.d.ts +4 -2
- package/types/src/Table/Head.d.ts +7 -3
- package/types/src/Table/Table.d.ts +3 -2
- package/types/src/Table/TableContext.d.ts +2 -0
- package/Code.js.LICENSE.txt +0 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,30 @@
|
|
|
1
1
|
Change Log
|
|
2
2
|
============
|
|
3
|
+
4.22.0 - Nov 7, 2023
|
|
4
|
+
----------
|
|
5
|
+
New Features:
|
|
6
|
+
* `Color` Enterprise theme includes toolbar from Prisma theme. (SUI-5803).
|
|
7
|
+
|
|
8
|
+
Bug Fixes:
|
|
9
|
+
* `Menu`'s `hasSubmenu` icon uses `ChevronRight` in prisma theme now (SUI-5791).
|
|
10
|
+
* Disabled `RadioBar.Option`s are no longer selectable with keyboard navigation (SUI-5804).
|
|
11
|
+
* `Slider`s with `step` prop respects `min` and `max` values that are not multiples of the `step` value (SUI-5796).
|
|
12
|
+
* `Select` should no longer throw a "maximum update depth exceeded" error in certain situations (SUI-5834).
|
|
13
|
+
* `TabBar` in vertical mode does not change widths when focused (SUI-5782).
|
|
14
|
+
* Padding between count and label has been adjusted.
|
|
15
|
+
* `Table` column widths are prevented from shrinking below 60px wide when using the `resizableFillLayout` prop (SUI-5484).
|
|
16
|
+
|
|
17
|
+
Docs:
|
|
18
|
+
* `Button` and `Select` examples now have icon size parity (SUI-5757).
|
|
3
19
|
|
|
4
20
|
4.21.1 - October 11, 2023
|
|
5
21
|
----------
|
|
6
22
|
Bug Fixes:
|
|
7
23
|
* This package should now load correctly in Webpack 4 environments (SUI-5802).
|
|
8
24
|
|
|
25
|
+
|
|
9
26
|
4.21.0 - October 4, 2023
|
|
10
27
|
----------
|
|
11
|
-
|
|
12
28
|
New Features:
|
|
13
29
|
* `Link` supports type `string` for `openInNewContext` to customize the default message (SUI-5784).
|
|
14
30
|
|
package/Code.js
CHANGED