@splunk/react-ui 4.46.0 → 4.47.1
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 +11 -0
- package/JSONTree.js +799 -683
- package/Tree.js +431 -331
- package/package.json +1 -1
- package/types/src/JSONTree/JSONTreeItem.d.ts +8 -3
- package/types/src/JSONTree/renderTreeItems.d.ts +2 -1
- package/types/src/Tree/Item.d.ts +36 -17
- package/types/src/Tree/Tree.d.ts +10 -2
- package/types/src/Tree/docs/examples/Basic.d.ts +1 -0
- package/types/src/Tree/docs/examples/ClickableExpansion.d.ts +1 -0
- package/types/src/Tree/docs/examples/ClickableExpansionWithSelection.d.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
Change Log
|
|
2
2
|
============
|
|
3
3
|
|
|
4
|
+
4.47.1 - September 2, 2025
|
|
5
|
+
----------
|
|
6
|
+
Bug Fixes:
|
|
7
|
+
* `JSONTreeItem` now uses unique DOM `id`s by default (SUI-8159).
|
|
8
|
+
|
|
9
|
+
4.47.0 - July 3, 2025
|
|
10
|
+
----------
|
|
11
|
+
New Features:
|
|
12
|
+
* Improved focus indicator for `JSONTreeItem` in some scenarios (SUI-7848).
|
|
13
|
+
* New `Tree` component for implementing tree views (SUI-7848).
|
|
14
|
+
|
|
4
15
|
4.46.0 - June 4, 2025
|
|
5
16
|
----------
|
|
6
17
|
New Features:
|