@splunk/react-ui 4.20.0 → 4.21.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/Accordion.js +114 -230
- package/Anchor.js +74 -150
- package/Animation.js +52 -124
- package/AnimationToggle.js +86 -146
- package/Box.js +77 -153
- package/Breadcrumbs.js +105 -197
- package/Button.js +168 -316
- package/ButtonGroup.js +84 -168
- package/ButtonSimple.js +224 -324
- package/CHANGELOG.md +21 -0
- package/Calendar.js +264 -462
- package/Card.js +223 -371
- package/CardLayout.js +87 -163
- package/Chip.js +199 -323
- package/Clickable.js +128 -246
- package/CloseButton.js +92 -200
- package/Code.js +162 -250
- package/CollapsiblePanel.js +214 -370
- package/Color.js +267 -495
- package/ColumnLayout.js +152 -254
- package/ComboBox.js +197 -371
- package/Concertina.js +214 -374
- package/ControlGroup.js +164 -288
- package/Date.js +154 -304
- package/DefinitionList.js +104 -180
- package/Divider.js +80 -156
- package/Dropdown.js +121 -263
- package/DualListbox.js +408 -601
- package/EventListener.js +70 -138
- package/File.js +343 -547
- package/FormRows.js +232 -414
- package/Heading.js +94 -164
- package/Image.js +167 -323
- package/JSONTree.js +166 -314
- package/Layer.js +221 -388
- package/Link.js +133 -239
- package/List.js +85 -161
- package/Markdown.js +230 -354
- package/Menu.js +489 -760
- package/Message.js +248 -437
- package/MessageBar.js +220 -408
- package/Modal.js +201 -365
- package/ModalLayer.js +96 -196
- package/Monogram.js +112 -204
- package/Multiselect.js +1135 -1761
- package/Number.js +178 -334
- package/Paginator.js +170 -336
- package/Paragraph.js +77 -153
- package/Popover.js +370 -620
- package/Progress.js +139 -255
- package/RadioBar.js +156 -280
- package/RadioList.js +182 -282
- package/Resize.js +173 -307
- package/ResultsMenu.js +161 -303
- package/ScreenReaderContent.js +75 -151
- package/Scroll.js +125 -267
- package/ScrollContainerContext.js +129 -201
- package/Search.js +188 -354
- package/Select.js +1028 -1430
- package/SidePanel.js +106 -214
- package/Slider.js +198 -348
- package/SlidingPanels.js +138 -280
- package/SplitButton.js +141 -273
- package/StaticContent.js +84 -168
- package/StepBar.js +138 -246
- package/Switch.js +261 -385
- package/TabBar.js +261 -398
- package/TabLayout.js +122 -238
- package/Table.js +943 -1448
- package/Text.js +335 -549
- package/TextArea.js +315 -537
- package/Tooltip.js +152 -292
- package/TransitionOpen.js +118 -242
- package/Typography.js +81 -157
- package/WaitSpinner.js +117 -209
- package/package.json +14 -15
- package/stubs-splunkui.d.ts +4 -1
- package/types/src/ComboBox/Option.d.ts +1 -1
- package/types/src/Concertina/Concertina.d.ts +4 -0
- package/types/src/Link/Link.d.ts +7 -3
- package/types/src/Link/docs/examples/NewWindow.d.ts +2 -0
- package/types/src/Markdown/Markdown.d.ts +1 -1
- package/types/src/Markdown/renderers/MarkdownHeading.d.ts +1 -1
- package/types/src/Menu/Item.d.ts +1 -1
- package/types/src/Menu/Menu.d.ts +1 -0
- package/types/src/MessageBar/docs/examples/WithActions.d.ts +2 -0
- package/types/src/Multiselect/Option.d.ts +1 -1
- package/types/src/Search/Option.d.ts +1 -1
- package/types/src/Select/Option.d.ts +1 -1
- package/types/src/Select/OptionBase.d.ts +1 -1
- package/types/src/fixtures/FetchOptions.d.ts +2 -8
- package/useForceUpdate.js +46 -110
- package/useKeyPress.js +50 -107
- package/usePrevious.js +47 -111
- package/useRovingFocus.js +53 -133
- package/types/src/Link/docs/examples/NewTab.d.ts +0 -2
- /package/types/src/Table/docs/examples/{DockedHeader.d.ts → DockedHeaderScrollbar.d.ts} +0 -0
- /package/types/src/Table/docs/examples/prisma/{DockedHeader.d.ts → DockedHeaderScrollbar.d.ts} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,24 @@
|
|
|
1
1
|
Change Log
|
|
2
2
|
============
|
|
3
3
|
|
|
4
|
+
4.21.0 - October 4, 2023
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
New Features:
|
|
8
|
+
* `Link` supports type `string` for `openInNewContext` to customize the default message (SUI-5784).
|
|
9
|
+
|
|
10
|
+
Bug Fixes:
|
|
11
|
+
* Swapped the styles of `Heading`'s `level=5` and `level=6` so that font sizes are ordered correctly (SUI-5668).
|
|
12
|
+
* Note: To continue using the original level 5 styles use level 6 instead and vice versa.
|
|
13
|
+
* `Link` now correctly informs users when a link will open in a new window in Prisma themes (SUI-5784).
|
|
14
|
+
* `Link` has updated screen reader text better describing the `openInNewContext` behavior to users (SUI-5784).
|
|
15
|
+
* `Message` now has increased spacing between icon and text in Prisma themes for `appearance="fill"` (SUI-5755).
|
|
16
|
+
* `Message`'s padding, border, and icon alignment have been adjusted to now match the Splunk Design System (SUI-5524).
|
|
17
|
+
* `TabBar`'s `count` prop is now properly announced to screen readers (SUI-5754).
|
|
18
|
+
|
|
19
|
+
Docs:
|
|
20
|
+
* Added missing documentation for `Markdown`'s `elementRef` prop (SUI-5621).
|
|
21
|
+
|
|
4
22
|
4.20.0 - September 5, 2023
|
|
5
23
|
----------
|
|
6
24
|
New Features:
|
|
@@ -13,6 +31,9 @@ Bug Fixes:
|
|
|
13
31
|
* Updated `Multiselect` and `Select` components to reduce rerenders (SCP-65071).
|
|
14
32
|
* `Tooltip` and `Popover` no longer detach from the anchor with pinch-to-zoom in Safari (SUI-5408).
|
|
15
33
|
|
|
34
|
+
Deprecations:
|
|
35
|
+
* `Concertina` has been deprecated and will be removed in a future major version (SUI-5741).
|
|
36
|
+
|
|
16
37
|
4.19.0 - August 1, 2023
|
|
17
38
|
----------
|
|
18
39
|
New Features:
|