@splunk/react-ui 4.22.0 → 4.23.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 +22 -0
- package/Color.js +289 -293
- package/ComboBox.js +3 -3
- package/Date.js +3 -3
- package/DualListbox.js +2 -2
- package/File.js +15 -15
- package/JSONTree.js +204 -219
- package/List.js +17 -12
- package/MIGRATION.mdx +14 -0
- package/Message.js +1 -1
- package/Multiselect.js +168 -168
- package/Number.js +3 -3
- package/Search.js +2 -2
- package/Select.js +390 -390
- package/Text.js +25 -15
- package/TextArea.js +27 -17
- package/package.json +5 -4
- package/types/src/ComboBox/ComboBox.d.ts +13 -3
- package/types/src/Date/Date.d.ts +13 -3
- package/types/src/Dropdown/Dropdown.d.ts +2 -2
- package/types/src/JSONTree/JSONTree.d.ts +22 -13
- package/types/src/JSONTree/TreeNode.d.ts +4 -3
- package/types/src/JSONTree/docs/examples/ExpandChildrenOnShiftKey.d.ts +1 -0
- package/types/src/List/List.d.ts +11 -4
- package/types/src/Multiselect/Compact.d.ts +1 -1
- package/types/src/Multiselect/Multiselect.d.ts +1 -1
- package/types/src/Number/Number.d.ts +13 -3
- package/types/src/Search/Search.d.ts +13 -3
- package/types/src/Select/SelectBase.d.ts +1 -1
- package/types/src/Text/Text.d.ts +13 -3
- package/types/src/TextArea/TextArea.d.ts +13 -3
- package/types/src/JSONTree/docs/examples/WithShiftModifier.d.ts +0 -1
- /package/types/src/Card/docs/examples/{prisma/Actions.d.ts → Actions.d.ts} +0 -0
package/Number.js
CHANGED
|
@@ -481,10 +481,10 @@
|
|
|
481
481
|
n = t.call(this, e);
|
|
482
482
|
Q(H(n), "controlledExternally", void 0);
|
|
483
483
|
Q(H(n), "text", null);
|
|
484
|
-
Q(H(n), "handleInputBlur", (function(e) {
|
|
485
|
-
var
|
|
484
|
+
Q(H(n), "handleInputBlur", (function(e, t) {
|
|
485
|
+
var r, o;
|
|
486
486
|
n.updateString();
|
|
487
|
-
(
|
|
487
|
+
(r = (o = n.props).onBlur) === null || r === void 0 ? void 0 : r.call(o, e, t);
|
|
488
488
|
}));
|
|
489
489
|
Q(H(n), "handleInputChange", (function(e, t) {
|
|
490
490
|
var r = t.value;
|
package/Search.js
CHANGED
|
@@ -582,7 +582,7 @@
|
|
|
582
582
|
var r;
|
|
583
583
|
(r = ye.current) === null || r === void 0 ? void 0 : r.focus();
|
|
584
584
|
};
|
|
585
|
-
var qe = function e(r) {
|
|
585
|
+
var qe = function e(r, t) {
|
|
586
586
|
/* SUI-930 On IE 11 this handler is essentially deferred after calling
|
|
587
587
|
* this.textInput.focus(). this.focusCalledInternally enables the focus event to be ignored
|
|
588
588
|
* when the menu closes. */
|
|
@@ -591,7 +591,7 @@
|
|
|
591
591
|
} else {
|
|
592
592
|
Ee();
|
|
593
593
|
}
|
|
594
|
-
V === null || V === void 0 ? void 0 : V(r);
|
|
594
|
+
V === null || V === void 0 ? void 0 : V(r, t);
|
|
595
595
|
};
|
|
596
596
|
var Ie = function e(r, t) {
|
|
597
597
|
var n = t.value;
|