@splunk/react-ui 4.14.0 → 4.15.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.
Files changed (126) hide show
  1. package/.dockerignore +2 -0
  2. package/Accordion.js +41 -16
  3. package/Anchor.js +9 -9
  4. package/Animation.js +6 -6
  5. package/AnimationToggle.js +2 -2
  6. package/Box.js +9 -9
  7. package/Button.js +35 -34
  8. package/ButtonGroup.js +9 -9
  9. package/ButtonSimple.js +14 -14
  10. package/CHANGELOG.md +30 -0
  11. package/Calendar.js +124 -106
  12. package/Card.js +68 -68
  13. package/CardLayout.js +9 -9
  14. package/Chip.js +23 -23
  15. package/Clickable.js +38 -14
  16. package/CloseButton.js +23 -23
  17. package/Code.js +484 -436
  18. package/CollapsiblePanel.js +59 -34
  19. package/Color.js +297 -187
  20. package/ColumnLayout.js +18 -17
  21. package/ComboBox.js +81 -32
  22. package/Concertina.js +88 -27
  23. package/ControlGroup.js +81 -24
  24. package/Date.js +44 -31
  25. package/DefinitionList.js +14 -8
  26. package/Divider.d.ts +2 -0
  27. package/Divider.js +9 -9
  28. package/Dockerfile.enterprise.storybook +7 -0
  29. package/Dockerfile.prisma.storybook +7 -0
  30. package/Dockerfile.visual +10 -0
  31. package/Dropdown.js +78 -18
  32. package/EventListener.js +17 -17
  33. package/File.js +96 -43
  34. package/FormRows.js +38 -37
  35. package/Heading.js +83 -55
  36. package/Image.js +67 -42
  37. package/JSONTree.js +106 -21
  38. package/Layer.js +59 -34
  39. package/Link.js +17 -17
  40. package/List.js +3 -3
  41. package/Markdown.js +71 -65
  42. package/Menu.js +155 -121
  43. package/Message.js +129 -129
  44. package/MessageBar.js +136 -136
  45. package/Modal.js +57 -32
  46. package/ModalLayer.js +15 -15
  47. package/Monogram.js +18 -17
  48. package/Multiselect.js +2793 -2315
  49. package/Number.js +74 -37
  50. package/Paginator.js +99 -86
  51. package/Paragraph.js +10 -10
  52. package/Popover.js +191 -54
  53. package/Progress.js +23 -22
  54. package/RadioBar.js +32 -14
  55. package/RadioList.js +17 -11
  56. package/Resize.js +33 -20
  57. package/ResultsMenu.js +36 -23
  58. package/ScreenReaderContent.js +9 -9
  59. package/Scroll.js +50 -25
  60. package/ScrollContainerContext.js +48 -48
  61. package/Search.js +68 -31
  62. package/Select.js +347 -69
  63. package/SidePanel.js +37 -24
  64. package/Slider.js +54 -24
  65. package/SlidingPanels.js +52 -14
  66. package/SplitButton.js +23 -22
  67. package/StaticContent.js +9 -9
  68. package/StepBar.js +22 -22
  69. package/Switch.js +18 -13
  70. package/TabBar.js +22 -22
  71. package/TabLayout.js +43 -18
  72. package/Table.js +371 -162
  73. package/Text.js +91 -49
  74. package/TextArea.d.ts +2 -0
  75. package/TextArea.js +127 -49
  76. package/Tooltip.js +236 -59
  77. package/TransitionOpen.js +39 -26
  78. package/Typography.d.ts +2 -0
  79. package/Typography.js +17 -16
  80. package/WaitSpinner.js +15 -15
  81. package/docker-compose.yml +42 -0
  82. package/package.json +12 -10
  83. package/test-runner-jest.config.js +11 -6
  84. package/types/src/Accordion/AccordionContext.d.ts +1 -0
  85. package/types/src/Button/docs/examples/Selected.d.ts +2 -2
  86. package/types/src/ButtonGroup/ButtonGroupContext.d.ts +1 -0
  87. package/types/src/Calendar/Calendar.d.ts +2 -0
  88. package/types/src/CardLayout/CardLayoutContext.d.ts +1 -0
  89. package/types/src/Concertina/ConcertinaContext.d.ts +1 -0
  90. package/types/src/ControlGroup/ControlGroup.d.ts +15 -8
  91. package/types/src/ControlGroup/docs/examples/HelpWithErrorText.d.ts +2 -0
  92. package/types/src/ControlGroup/docs/examples/Required.d.ts +2 -0
  93. package/types/src/File/File.d.ts +4 -2
  94. package/types/src/File/FileContext.d.ts +1 -0
  95. package/types/src/FormRows/FormRowsContext.d.ts +1 -0
  96. package/types/src/Markdown/renderers/MarkdownLink.d.ts +1 -1
  97. package/types/src/Menu/MenuContext.d.ts +1 -0
  98. package/types/src/Modal/ModalContext.d.ts +1 -0
  99. package/types/src/Multiselect/Compact.d.ts +10 -1
  100. package/types/src/Multiselect/Multiselect.d.ts +12 -1
  101. package/types/src/Multiselect/Normal.d.ts +2 -0
  102. package/types/src/Popover/Popover.d.ts +25 -5
  103. package/types/src/Popover/PopoverContext.d.ts +1 -0
  104. package/types/src/RadioBar/RadioBar.d.ts +5 -3
  105. package/types/src/RadioBar/RadioBarContext.d.ts +1 -0
  106. package/types/src/RadioList/RadioList.d.ts +5 -1
  107. package/types/src/RadioList/RadioListContext.d.ts +1 -0
  108. package/types/src/Select/SelectBase.d.ts +2 -0
  109. package/types/src/Slider/Slider.d.ts +5 -3
  110. package/types/src/StepBar/StepBarContext.d.ts +1 -0
  111. package/types/src/Switch/Switch.d.ts +2 -0
  112. package/types/src/TabBar/TabBarContext.d.ts +1 -0
  113. package/types/src/Table/Head.d.ts +2 -0
  114. package/types/src/Table/TableContext.d.ts +1 -0
  115. package/types/src/Text/Text.d.ts +5 -3
  116. package/types/src/TextArea/TextArea.d.ts +5 -3
  117. package/types/src/Tooltip/Tooltip.d.ts +16 -4
  118. package/types/src/useForceUpdate/useForceUpdate.d.ts +1 -0
  119. package/useForceUpdate.js +9 -9
  120. package/useKeyPress.js +2 -2
  121. package/usePrevious.js +9 -9
  122. package/.storybook-visual/config/snapshotResolver.js +0 -29
  123. package/.storybook-visual/main.js +0 -22
  124. package/.storybook-visual/preview.jsx +0 -31
  125. package/.storybook-visual/scripts/test.sh +0 -108
  126. package/.storybook-visual/test-runner.js +0 -108
package/Table.js CHANGED
@@ -82,7 +82,7 @@ module.exports =
82
82
  /******/
83
83
  /******/
84
84
  /******/ // Load entry module and return exports
85
- /******/ return __webpack_require__(__webpack_require__.s = 115);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 164);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ([
@@ -113,13 +113,13 @@ module.exports = require("styled-components");
113
113
  /* 4 */
114
114
  /***/ (function(module, exports) {
115
115
 
116
- module.exports = require("lodash");
116
+ module.exports = require("@splunk/ui-utils/i18n");
117
117
 
118
118
  /***/ }),
119
119
  /* 5 */
120
120
  /***/ (function(module, exports) {
121
121
 
122
- module.exports = require("@splunk/ui-utils/i18n");
122
+ module.exports = require("lodash/omit");
123
123
 
124
124
  /***/ }),
125
125
  /* 6 */
@@ -271,6 +271,18 @@ module.exports = require("@splunk/ui-utils/keyboard");
271
271
 
272
272
  /***/ }),
273
273
  /* 10 */
274
+ /***/ (function(module, exports) {
275
+
276
+ module.exports = require("lodash/keys");
277
+
278
+ /***/ }),
279
+ /* 11 */
280
+ /***/ (function(module, exports) {
281
+
282
+ module.exports = require("lodash/has");
283
+
284
+ /***/ }),
285
+ /* 12 */
274
286
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
275
287
 
276
288
  "use strict";
@@ -296,46 +308,45 @@ function updateReactRef(ref, current) {
296
308
 
297
309
 
298
310
  /***/ }),
299
- /* 11 */
311
+ /* 13 */
300
312
  /***/ (function(module, exports) {
301
313
 
302
314
  module.exports = require("@splunk/ui-utils/id");
303
315
 
304
316
  /***/ }),
305
- /* 12 */,
306
- /* 13 */,
307
- /* 14 */
317
+ /* 14 */,
318
+ /* 15 */,
319
+ /* 16 */
308
320
  /***/ (function(module, exports) {
309
321
 
310
322
  module.exports = require("@splunk/react-ui/ScreenReaderContent");
311
323
 
312
324
  /***/ }),
313
- /* 15 */
325
+ /* 17 */
314
326
  /***/ (function(module, exports) {
315
327
 
316
328
  module.exports = require("@splunk/react-ui/EventListener");
317
329
 
318
330
  /***/ }),
319
- /* 16 */
331
+ /* 18 */
320
332
  /***/ (function(module, exports) {
321
333
 
322
- module.exports = require("@splunk/react-ui/Button");
334
+ module.exports = require("lodash/includes");
323
335
 
324
336
  /***/ }),
325
- /* 17 */,
326
- /* 18 */
337
+ /* 19 */
327
338
  /***/ (function(module, exports) {
328
339
 
329
- module.exports = require("@splunk/react-ui/Popover");
340
+ module.exports = require("@splunk/react-ui/Button");
330
341
 
331
342
  /***/ }),
332
- /* 19 */
343
+ /* 20 */
333
344
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
334
345
 
335
346
  "use strict";
336
347
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return getWindow; });
337
348
  /* unused harmony export ssrWindow */
338
- /* harmony import */ var _ssrDocument__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(27);
349
+ /* harmony import */ var _ssrDocument__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(28);
339
350
  /* eslint-disable @typescript-eslint/no-empty-function */
340
351
 
341
352
  var ssrWindow = {
@@ -404,19 +415,34 @@ function getWindow() {
404
415
 
405
416
 
406
417
  /***/ }),
407
- /* 20 */
418
+ /* 21 */
408
419
  /***/ (function(module, exports) {
409
420
 
410
- module.exports = require("@splunk/react-ui/Dropdown");
421
+ module.exports = require("lodash/isFinite");
411
422
 
412
423
  /***/ }),
413
- /* 21 */,
414
424
  /* 22 */,
415
- /* 23 */,
416
- /* 24 */,
417
- /* 25 */,
425
+ /* 23 */
426
+ /***/ (function(module, exports) {
427
+
428
+ module.exports = require("@splunk/react-ui/Popover");
429
+
430
+ /***/ }),
431
+ /* 24 */
432
+ /***/ (function(module, exports) {
433
+
434
+ module.exports = require("@splunk/react-ui/Dropdown");
435
+
436
+ /***/ }),
437
+ /* 25 */
438
+ /***/ (function(module, exports) {
439
+
440
+ module.exports = require("lodash/isString");
441
+
442
+ /***/ }),
418
443
  /* 26 */,
419
- /* 27 */
444
+ /* 27 */,
445
+ /* 28 */
420
446
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
421
447
 
422
448
  "use strict";
@@ -486,15 +512,27 @@ function getDocument() {
486
512
 
487
513
 
488
514
  /***/ }),
489
- /* 28 */,
490
- /* 29 */
515
+ /* 29 */,
516
+ /* 30 */,
517
+ /* 31 */
518
+ /***/ (function(module, exports) {
519
+
520
+ module.exports = require("lodash/throttle");
521
+
522
+ /***/ }),
523
+ /* 32 */,
524
+ /* 33 */,
525
+ /* 34 */,
526
+ /* 35 */,
527
+ /* 36 */,
528
+ /* 37 */
491
529
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
492
530
 
493
531
  "use strict";
494
532
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return ChevronRight; });
495
533
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2);
496
534
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
497
- /* harmony import */ var _splunk_react_icons_ChevronRight__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(35);
535
+ /* harmony import */ var _splunk_react_icons_ChevronRight__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(44);
498
536
  /* harmony import */ var _splunk_react_icons_ChevronRight__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_splunk_react_icons_ChevronRight__WEBPACK_IMPORTED_MODULE_1__);
499
537
  /* harmony import */ var _ThemedIcon__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(7);
500
538
  /* harmony import */ var _SVG__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(6);
@@ -536,34 +574,41 @@ function ChevronRight(props) {
536
574
  }
537
575
 
538
576
  /***/ }),
539
- /* 30 */,
540
- /* 31 */,
541
- /* 32 */,
542
- /* 33 */,
543
- /* 34 */,
544
- /* 35 */
577
+ /* 38 */,
578
+ /* 39 */,
579
+ /* 40 */,
580
+ /* 41 */,
581
+ /* 42 */,
582
+ /* 43 */,
583
+ /* 44 */
545
584
  /***/ (function(module, exports) {
546
585
 
547
586
  module.exports = require("@splunk/react-icons/ChevronRight");
548
587
 
549
588
  /***/ }),
550
- /* 36 */,
551
- /* 37 */,
552
- /* 38 */,
553
- /* 39 */
589
+ /* 45 */,
590
+ /* 46 */,
591
+ /* 47 */,
592
+ /* 48 */
593
+ /***/ (function(module, exports) {
594
+
595
+ module.exports = require("lodash/extend");
596
+
597
+ /***/ }),
598
+ /* 49 */
554
599
  /***/ (function(module, exports) {
555
600
 
556
601
  module.exports = require("@splunk/react-ui/ScrollContainerContext");
557
602
 
558
603
  /***/ }),
559
- /* 40 */
604
+ /* 50 */
560
605
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
561
606
 
562
607
  "use strict";
563
608
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return CaretDown; });
564
609
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2);
565
610
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
566
- /* harmony import */ var _splunk_react_icons_Caret__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(41);
611
+ /* harmony import */ var _splunk_react_icons_Caret__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(51);
567
612
  /* harmony import */ var _splunk_react_icons_Caret__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_splunk_react_icons_Caret__WEBPACK_IMPORTED_MODULE_1__);
568
613
  /* harmony import */ var _ThemedIcon__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(7);
569
614
  /* harmony import */ var _SVG__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(6);
@@ -593,38 +638,62 @@ function CaretDown(props) {
593
638
  }
594
639
 
595
640
  /***/ }),
596
- /* 41 */
641
+ /* 51 */
597
642
  /***/ (function(module, exports) {
598
643
 
599
644
  module.exports = require("@splunk/react-icons/Caret");
600
645
 
601
646
  /***/ }),
602
- /* 42 */,
603
- /* 43 */,
604
- /* 44 */,
605
- /* 45 */,
606
- /* 46 */,
607
- /* 47 */,
608
- /* 48 */,
609
- /* 49 */,
610
- /* 50 */,
611
- /* 51 */
647
+ /* 52 */,
648
+ /* 53 */,
649
+ /* 54 */,
650
+ /* 55 */,
651
+ /* 56 */
652
+ /***/ (function(module, exports) {
653
+
654
+ module.exports = require("lodash/without");
655
+
656
+ /***/ }),
657
+ /* 57 */,
658
+ /* 58 */,
659
+ /* 59 */,
660
+ /* 60 */,
661
+ /* 61 */,
662
+ /* 62 */,
663
+ /* 63 */,
664
+ /* 64 */,
665
+ /* 65 */,
666
+ /* 66 */
612
667
  /***/ (function(module, exports) {
613
668
 
614
669
  module.exports = require("@splunk/react-icons/ChevronDown");
615
670
 
616
671
  /***/ }),
617
- /* 52 */
672
+ /* 67 */
618
673
  /***/ (function(module, exports) {
619
674
 
620
675
  module.exports = require("@splunk/react-ui/Tooltip");
621
676
 
622
677
  /***/ }),
623
- /* 53 */,
624
- /* 54 */,
625
- /* 55 */,
626
- /* 56 */,
627
- /* 57 */
678
+ /* 68 */
679
+ /***/ (function(module, exports) {
680
+
681
+ module.exports = require("lodash/isFunction");
682
+
683
+ /***/ }),
684
+ /* 69 */,
685
+ /* 70 */,
686
+ /* 71 */,
687
+ /* 72 */,
688
+ /* 73 */,
689
+ /* 74 */
690
+ /***/ (function(module, exports) {
691
+
692
+ module.exports = require("lodash/isNumber");
693
+
694
+ /***/ }),
695
+ /* 75 */,
696
+ /* 76 */
628
697
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
629
698
 
630
699
  "use strict";
@@ -647,21 +716,23 @@ function assertDefined(val, msg) {
647
716
 
648
717
 
649
718
  /***/ }),
650
- /* 58 */,
651
- /* 59 */,
652
- /* 60 */,
653
- /* 61 */,
654
- /* 62 */,
655
- /* 63 */,
656
- /* 64 */,
657
- /* 65 */
719
+ /* 77 */,
720
+ /* 78 */,
721
+ /* 79 */,
722
+ /* 80 */,
723
+ /* 81 */,
724
+ /* 82 */,
725
+ /* 83 */,
726
+ /* 84 */,
727
+ /* 85 */,
728
+ /* 86 */
658
729
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
659
730
 
660
731
  "use strict";
661
732
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return MoreVertical; });
662
733
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2);
663
734
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
664
- /* harmony import */ var _splunk_react_icons_MoreVertical__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(66);
735
+ /* harmony import */ var _splunk_react_icons_MoreVertical__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(87);
665
736
  /* harmony import */ var _splunk_react_icons_MoreVertical__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_splunk_react_icons_MoreVertical__WEBPACK_IMPORTED_MODULE_1__);
666
737
  /* harmony import */ var _ThemedIcon__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(7);
667
738
  /* harmony import */ var _SVG__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(6);
@@ -691,20 +762,26 @@ function MoreVertical(props) {
691
762
  }
692
763
 
693
764
  /***/ }),
694
- /* 66 */
765
+ /* 87 */
695
766
  /***/ (function(module, exports) {
696
767
 
697
768
  module.exports = require("@splunk/react-icons/MoreVertical");
698
769
 
699
770
  /***/ }),
700
- /* 67 */
771
+ /* 88 */
772
+ /***/ (function(module, exports) {
773
+
774
+ module.exports = require("lodash/indexOf");
775
+
776
+ /***/ }),
777
+ /* 89 */
701
778
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
702
779
 
703
780
  "use strict";
704
781
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return ChevronDown; });
705
782
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2);
706
783
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
707
- /* harmony import */ var _splunk_react_icons_ChevronDown__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(51);
784
+ /* harmony import */ var _splunk_react_icons_ChevronDown__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(66);
708
785
  /* harmony import */ var _splunk_react_icons_ChevronDown__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_splunk_react_icons_ChevronDown__WEBPACK_IMPORTED_MODULE_1__);
709
786
  /* harmony import */ var _ThemedIcon__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(7);
710
787
  /* harmony import */ var _SVG__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(6);
@@ -746,40 +823,18 @@ function ChevronDown(props) {
746
823
  }
747
824
 
748
825
  /***/ }),
749
- /* 68 */,
750
- /* 69 */,
751
- /* 70 */,
752
- /* 71 */,
753
- /* 72 */
754
- /***/ (function(module, exports) {
755
-
756
- module.exports = require("@splunk/react-ui/Switch");
757
-
758
- /***/ }),
759
- /* 73 */,
760
- /* 74 */,
761
- /* 75 */,
762
- /* 76 */,
763
- /* 77 */,
764
- /* 78 */,
765
- /* 79 */,
766
- /* 80 */,
767
- /* 81 */,
768
- /* 82 */,
769
- /* 83 */,
770
- /* 84 */,
771
- /* 85 */,
772
- /* 86 */,
773
- /* 87 */,
774
- /* 88 */,
775
- /* 89 */,
776
826
  /* 90 */,
777
827
  /* 91 */,
778
828
  /* 92 */,
779
829
  /* 93 */,
780
830
  /* 94 */,
781
831
  /* 95 */,
782
- /* 96 */,
832
+ /* 96 */
833
+ /***/ (function(module, exports) {
834
+
835
+ module.exports = require("@splunk/react-ui/Switch");
836
+
837
+ /***/ }),
783
838
  /* 97 */,
784
839
  /* 98 */,
785
840
  /* 99 */,
@@ -790,40 +845,109 @@ module.exports = require("@splunk/react-ui/Switch");
790
845
  /* 104 */,
791
846
  /* 105 */,
792
847
  /* 106 */,
793
- /* 107 */
848
+ /* 107 */,
849
+ /* 108 */,
850
+ /* 109 */,
851
+ /* 110 */,
852
+ /* 111 */
853
+ /***/ (function(module, exports) {
854
+
855
+ module.exports = require("lodash/findIndex");
856
+
857
+ /***/ }),
858
+ /* 112 */
859
+ /***/ (function(module, exports) {
860
+
861
+ module.exports = require("lodash/merge");
862
+
863
+ /***/ }),
864
+ /* 113 */,
865
+ /* 114 */,
866
+ /* 115 */,
867
+ /* 116 */,
868
+ /* 117 */,
869
+ /* 118 */,
870
+ /* 119 */,
871
+ /* 120 */,
872
+ /* 121 */,
873
+ /* 122 */,
874
+ /* 123 */,
875
+ /* 124 */,
876
+ /* 125 */,
877
+ /* 126 */,
878
+ /* 127 */,
879
+ /* 128 */,
880
+ /* 129 */,
881
+ /* 130 */,
882
+ /* 131 */,
883
+ /* 132 */,
884
+ /* 133 */,
885
+ /* 134 */,
886
+ /* 135 */,
887
+ /* 136 */,
888
+ /* 137 */,
889
+ /* 138 */,
890
+ /* 139 */,
891
+ /* 140 */,
892
+ /* 141 */,
893
+ /* 142 */,
894
+ /* 143 */,
895
+ /* 144 */,
896
+ /* 145 */,
897
+ /* 146 */,
898
+ /* 147 */,
899
+ /* 148 */,
900
+ /* 149 */,
901
+ /* 150 */,
902
+ /* 151 */,
903
+ /* 152 */,
904
+ /* 153 */
905
+ /***/ (function(module, exports) {
906
+
907
+ module.exports = require("lodash/forEach");
908
+
909
+ /***/ }),
910
+ /* 154 */
911
+ /***/ (function(module, exports) {
912
+
913
+ module.exports = require("lodash/isEqual");
914
+
915
+ /***/ }),
916
+ /* 155 */
794
917
  /***/ (function(module, exports) {
795
918
 
796
919
  module.exports = require("react-resize-detector");
797
920
 
798
921
  /***/ }),
799
- /* 108 */
922
+ /* 156 */
800
923
  /***/ (function(module, exports) {
801
924
 
802
925
  module.exports = require("@splunk/react-icons/SortedDown");
803
926
 
804
927
  /***/ }),
805
- /* 109 */
928
+ /* 157 */
806
929
  /***/ (function(module, exports) {
807
930
 
808
931
  module.exports = require("@splunk/react-icons/SortedUp");
809
932
 
810
933
  /***/ }),
811
- /* 110 */
934
+ /* 158 */
812
935
  /***/ (function(module, exports) {
813
936
 
814
937
  module.exports = require("@splunk/react-icons/Sort");
815
938
 
816
939
  /***/ }),
817
- /* 111 */
940
+ /* 159 */
818
941
  /***/ (function(module, exports) {
819
942
 
820
943
  module.exports = require("@splunk/react-icons/Info");
821
944
 
822
945
  /***/ }),
823
- /* 112 */,
824
- /* 113 */,
825
- /* 114 */,
826
- /* 115 */
946
+ /* 160 */,
947
+ /* 161 */,
948
+ /* 162 */,
949
+ /* 163 */,
950
+ /* 164 */
827
951
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
828
952
 
829
953
  "use strict";
@@ -848,22 +972,58 @@ var external_react_default = /*#__PURE__*/__webpack_require__.n(external_react_)
848
972
  var external_prop_types_ = __webpack_require__(1);
849
973
  var external_prop_types_default = /*#__PURE__*/__webpack_require__.n(external_prop_types_);
850
974
 
851
- // EXTERNAL MODULE: external "lodash"
852
- var external_lodash_ = __webpack_require__(4);
975
+ // EXTERNAL MODULE: external "lodash/forEach"
976
+ var forEach_ = __webpack_require__(153);
977
+ var forEach_default = /*#__PURE__*/__webpack_require__.n(forEach_);
978
+
979
+ // EXTERNAL MODULE: external "lodash/has"
980
+ var has_ = __webpack_require__(11);
981
+ var has_default = /*#__PURE__*/__webpack_require__.n(has_);
982
+
983
+ // EXTERNAL MODULE: external "lodash/indexOf"
984
+ var indexOf_ = __webpack_require__(88);
985
+ var indexOf_default = /*#__PURE__*/__webpack_require__.n(indexOf_);
986
+
987
+ // EXTERNAL MODULE: external "lodash/isEqual"
988
+ var isEqual_ = __webpack_require__(154);
989
+ var isEqual_default = /*#__PURE__*/__webpack_require__.n(isEqual_);
990
+
991
+ // EXTERNAL MODULE: external "lodash/isNumber"
992
+ var isNumber_ = __webpack_require__(74);
993
+
994
+ // EXTERNAL MODULE: external "lodash/omit"
995
+ var omit_ = __webpack_require__(5);
996
+ var omit_default = /*#__PURE__*/__webpack_require__.n(omit_);
997
+
998
+ // EXTERNAL MODULE: external "lodash/throttle"
999
+ var throttle_ = __webpack_require__(31);
1000
+ var throttle_default = /*#__PURE__*/__webpack_require__.n(throttle_);
853
1001
 
854
1002
  // EXTERNAL MODULE: external "react-resize-detector"
855
- var external_react_resize_detector_ = __webpack_require__(107);
1003
+ var external_react_resize_detector_ = __webpack_require__(155);
856
1004
  var external_react_resize_detector_default = /*#__PURE__*/__webpack_require__.n(external_react_resize_detector_);
857
1005
 
858
1006
  // EXTERNAL MODULE: external "@splunk/react-ui/EventListener"
859
- var EventListener_ = __webpack_require__(15);
1007
+ var EventListener_ = __webpack_require__(17);
860
1008
  var EventListener_default = /*#__PURE__*/__webpack_require__.n(EventListener_);
861
1009
 
862
1010
  // EXTERNAL MODULE: external "@splunk/ui-utils/keyboard"
863
1011
  var keyboard_ = __webpack_require__(9);
864
1012
 
865
1013
  // EXTERNAL MODULE: external "@splunk/react-ui/ScrollContainerContext"
866
- var ScrollContainerContext_ = __webpack_require__(39);
1014
+ var ScrollContainerContext_ = __webpack_require__(49);
1015
+
1016
+ // EXTERNAL MODULE: external "lodash/findIndex"
1017
+ var findIndex_ = __webpack_require__(111);
1018
+ var findIndex_default = /*#__PURE__*/__webpack_require__.n(findIndex_);
1019
+
1020
+ // EXTERNAL MODULE: external "lodash/includes"
1021
+ var includes_ = __webpack_require__(18);
1022
+ var includes_default = /*#__PURE__*/__webpack_require__.n(includes_);
1023
+
1024
+ // EXTERNAL MODULE: external "lodash/without"
1025
+ var without_ = __webpack_require__(56);
1026
+ var without_default = /*#__PURE__*/__webpack_require__.n(without_);
867
1027
 
868
1028
  // EXTERNAL MODULE: external "styled-components"
869
1029
  var external_styled_components_ = __webpack_require__(3);
@@ -881,10 +1041,10 @@ var Styled = external_styled_components_default.a.tbody.withConfig({
881
1041
  })(["", " z-index:0;"], themes_["mixins"].reset('table-row-group'));
882
1042
 
883
1043
  // EXTERNAL MODULE: ./src/utils/updateReactRef.ts
884
- var updateReactRef = __webpack_require__(10);
1044
+ var updateReactRef = __webpack_require__(12);
885
1045
 
886
1046
  // EXTERNAL MODULE: ./src/utils/ssrWindow.ts
887
- var ssrWindow = __webpack_require__(19);
1047
+ var ssrWindow = __webpack_require__(20);
888
1048
 
889
1049
  // CONCATENATED MODULE: ./src/Table/Body.tsx
890
1050
  function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
@@ -923,6 +1083,10 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
923
1083
 
924
1084
 
925
1085
 
1086
+
1087
+
1088
+
1089
+
926
1090
  var propTypes = {
927
1091
  /** @private. Generally passed by Table rather than added directly. */
928
1092
  actions: external_prop_types_default.a.bool,
@@ -1066,7 +1230,7 @@ var Body_Body = /*#__PURE__*/function (_Component) {
1066
1230
  Object(updateReactRef["a" /* updateReactRef */])(_this.props.elementRef, el);
1067
1231
  });
1068
1232
 
1069
- _defineProperty(_assertThisInitialized(_this), "updateDragPosition", Object(external_lodash_["throttle"])(_this.updateDragPositionImpl, 100, {
1233
+ _defineProperty(_assertThisInitialized(_this), "updateDragPosition", throttle_default()(_this.updateDragPositionImpl, 100, {
1070
1234
  trailing: false
1071
1235
  }));
1072
1236
 
@@ -1089,7 +1253,7 @@ var Body_Body = /*#__PURE__*/function (_Component) {
1089
1253
  var current = this.state.expanded;
1090
1254
 
1091
1255
  if (this.props.rowExpansion === 'single') {
1092
- if (Object(external_lodash_["includes"])(current, key)) {
1256
+ if (includes_default()(current, key)) {
1093
1257
  this.setState({
1094
1258
  expanded: []
1095
1259
  });
@@ -1099,9 +1263,9 @@ var Body_Body = /*#__PURE__*/function (_Component) {
1099
1263
  });
1100
1264
  }
1101
1265
  } else if (this.props.rowExpansion === 'multi') {
1102
- if (Object(external_lodash_["includes"])(current, key)) {
1266
+ if (includes_default()(current, key)) {
1103
1267
  this.setState({
1104
- expanded: Object(external_lodash_["without"])(current, key)
1268
+ expanded: without_default()(current, key)
1105
1269
  });
1106
1270
  } else {
1107
1271
  this.setState({
@@ -1124,7 +1288,7 @@ var Body_Body = /*#__PURE__*/function (_Component) {
1124
1288
  }
1125
1289
 
1126
1290
  this.rows = Array.from(this.el.children);
1127
- var overIndex = Object(external_lodash_["findIndex"])(this.rows, function (row) {
1291
+ var overIndex = findIndex_default()(this.rows, function (row) {
1128
1292
  var rect = row.getBoundingClientRect();
1129
1293
  return dragPosition > rect.top && dragPosition < rect.bottom;
1130
1294
  });
@@ -1205,7 +1369,7 @@ var Body_Body = /*#__PURE__*/function (_Component) {
1205
1369
  var key = child.key;
1206
1370
  var oddOrEven = i % 2 ? 'even' : 'odd';
1207
1371
  var stripe = stripeRows ? oddOrEven : 'none';
1208
- var expanded = rowExpansion === 'controlled' ? child.props.expanded : Object(external_lodash_["includes"])(_this2.state.expanded, key);
1372
+ var expanded = rowExpansion === 'controlled' ? child.props.expanded : includes_default()(_this2.state.expanded, key);
1209
1373
 
1210
1374
  var onExpansion = function onExpansion(e) {
1211
1375
  _this2.handleRowExpansion(e, key, child.props.onExpansion);
@@ -1558,11 +1722,23 @@ Cell_defineProperty(Cell_Cell, "propTypes", Cell_propTypes);
1558
1722
  Cell_defineProperty(Cell_Cell, "defaultProps", Cell_defaultProps);
1559
1723
 
1560
1724
  /* harmony default export */ var Table_Cell = (Cell_Cell);
1725
+ // EXTERNAL MODULE: external "lodash/keys"
1726
+ var keys_ = __webpack_require__(10);
1727
+ var keys_default = /*#__PURE__*/__webpack_require__.n(keys_);
1728
+
1729
+ // EXTERNAL MODULE: external "lodash/isString"
1730
+ var isString_ = __webpack_require__(25);
1731
+ var isString_default = /*#__PURE__*/__webpack_require__.n(isString_);
1732
+
1733
+ // EXTERNAL MODULE: external "lodash/merge"
1734
+ var merge_ = __webpack_require__(112);
1735
+ var merge_default = /*#__PURE__*/__webpack_require__.n(merge_);
1736
+
1561
1737
  // EXTERNAL MODULE: external "@splunk/ui-utils/i18n"
1562
- var i18n_ = __webpack_require__(5);
1738
+ var i18n_ = __webpack_require__(4);
1563
1739
 
1564
1740
  // EXTERNAL MODULE: external "@splunk/react-icons/SortedDown"
1565
- var SortedDown_ = __webpack_require__(108);
1741
+ var SortedDown_ = __webpack_require__(156);
1566
1742
  var SortedDown_default = /*#__PURE__*/__webpack_require__.n(SortedDown_);
1567
1743
 
1568
1744
  // EXTERNAL MODULE: ./src/icons/ThemedIcon.tsx
@@ -1609,7 +1785,7 @@ function SortedDown(props) {
1609
1785
  }, props));
1610
1786
  }
1611
1787
  // EXTERNAL MODULE: external "@splunk/react-icons/SortedUp"
1612
- var SortedUp_ = __webpack_require__(109);
1788
+ var SortedUp_ = __webpack_require__(157);
1613
1789
  var SortedUp_default = /*#__PURE__*/__webpack_require__.n(SortedUp_);
1614
1790
 
1615
1791
  // CONCATENATED MODULE: ./src/icons/SortedUp.tsx
@@ -1650,7 +1826,7 @@ function SortedUp(props) {
1650
1826
  }, props));
1651
1827
  }
1652
1828
  // EXTERNAL MODULE: external "@splunk/react-icons/Sort"
1653
- var Sort_ = __webpack_require__(110);
1829
+ var Sort_ = __webpack_require__(158);
1654
1830
  var Sort_default = /*#__PURE__*/__webpack_require__.n(Sort_);
1655
1831
 
1656
1832
  // CONCATENATED MODULE: ./src/icons/Sort.tsx
@@ -1691,10 +1867,10 @@ function CaretDown(props) {
1691
1867
  }, props));
1692
1868
  }
1693
1869
  // EXTERNAL MODULE: ./src/icons/CaretDown.tsx
1694
- var icons_CaretDown = __webpack_require__(40);
1870
+ var icons_CaretDown = __webpack_require__(50);
1695
1871
 
1696
1872
  // EXTERNAL MODULE: external "@splunk/react-ui/ScreenReaderContent"
1697
- var ScreenReaderContent_ = __webpack_require__(14);
1873
+ var ScreenReaderContent_ = __webpack_require__(16);
1698
1874
  var ScreenReaderContent_default = /*#__PURE__*/__webpack_require__.n(ScreenReaderContent_);
1699
1875
 
1700
1876
  // CONCATENATED MODULE: ./src/Table/HeadInnerStyles.ts
@@ -2020,7 +2196,7 @@ function DragHandle(_ref) {
2020
2196
  DragHandle.propTypes = DragHandle_propTypes;
2021
2197
  /* harmony default export */ var Table_DragHandle = (DragHandle);
2022
2198
  // EXTERNAL MODULE: ./src/utils/ssrDocument.ts
2023
- var ssrDocument = __webpack_require__(27);
2199
+ var ssrDocument = __webpack_require__(28);
2024
2200
 
2025
2201
  // CONCATENATED MODULE: ./src/Table/HeadInner.tsx
2026
2202
  function HeadInner_extends() { HeadInner_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return HeadInner_extends.apply(this, arguments); }
@@ -2293,7 +2469,7 @@ function HeadInner(_ref) {
2293
2469
  $align: align,
2294
2470
  $draggable: draggable,
2295
2471
  $dragging: !!isDragging
2296
- }, Object(external_lodash_["omit"])(otherProps, [].concat(_toConsumableArray(Object.keys(HeadInner.propTypes)), ['id']))), isResizing && /*#__PURE__*/external_react_default.a.createElement(external_react_default.a.Fragment, null, /*#__PURE__*/external_react_default.a.createElement(EventListener_default.a, {
2472
+ }, omit_default()(otherProps, [].concat(_toConsumableArray(Object.keys(HeadInner.propTypes)), ['id']))), isResizing && /*#__PURE__*/external_react_default.a.createElement(external_react_default.a.Fragment, null, /*#__PURE__*/external_react_default.a.createElement(EventListener_default.a, {
2297
2473
  target: window,
2298
2474
  eventType: "mouseup",
2299
2475
  listener: handleEndResize
@@ -2386,6 +2562,8 @@ function HeadCell_defineProperty(obj, key, value) { if (key in obj) { Object.def
2386
2562
 
2387
2563
 
2388
2564
 
2565
+
2566
+
2389
2567
  var HeadCell_propTypes = {
2390
2568
  align: external_prop_types_default.a.oneOf(['left', 'center', 'right']),
2391
2569
  children: external_prop_types_default.a.node,
@@ -2576,7 +2754,7 @@ var HeadCell_HeadCell = /*#__PURE__*/function (_Component) {
2576
2754
  var draggable = !!onDragStart;
2577
2755
  var sortable = !!onSort && !!sortDir;
2578
2756
  var hasOnClick = onClick !== undefined;
2579
- var mergedStyle = Object(external_lodash_["merge"])(style, {
2757
+ var mergedStyle = merge_default()(style, {
2580
2758
  width: width
2581
2759
  });
2582
2760
  var truncate = hasActionsHead ? false : truncateProp;
@@ -2588,7 +2766,7 @@ var HeadCell_HeadCell = /*#__PURE__*/function (_Component) {
2588
2766
  ref: elementRef,
2589
2767
  "aria-sort": onSort && (this.sortDirAriaMapping[sortDir] || 'none'),
2590
2768
  "data-test": "head-cell",
2591
- "data-test-label": Object(external_lodash_["isString"])(children) ? children : undefined,
2769
+ "data-test-label": isString_default()(children) ? children : undefined,
2592
2770
  "data-test-sort-dir": onSort && sortDir,
2593
2771
  id: visible ? id : undefined,
2594
2772
  onClick: onSort || hasOnClick ? this.handleClick : undefined,
@@ -2598,7 +2776,7 @@ var HeadCell_HeadCell = /*#__PURE__*/function (_Component) {
2598
2776
  $variant: variant,
2599
2777
  $zIndex: zIndex,
2600
2778
  $isFixed: headType === 'fixed'
2601
- }, Object(external_lodash_["omit"])(this.props, [].concat(HeadCell_toConsumableArray(Object.keys(HeadCell.propTypes)), ['id', 'style'])), {
2779
+ }, omit_default()(this.props, [].concat(HeadCell_toConsumableArray(Object.keys(HeadCell.propTypes)), ['id', 'style'])), {
2602
2780
  onKeyDown: draggable || onSort || hasOnClick ? this.handleKeyDown : undefined
2603
2781
  }), /*#__PURE__*/external_react_default.a.createElement(Table_HeadInner, {
2604
2782
  label: children,
@@ -2635,11 +2813,11 @@ HeadCell_defineProperty(HeadCell_HeadCell, "contextType", Table_TableContext);
2635
2813
 
2636
2814
  /* harmony default export */ var Table_HeadCell = (HeadCell_HeadCell);
2637
2815
  // EXTERNAL MODULE: external "@splunk/react-icons/Info"
2638
- var Info_ = __webpack_require__(111);
2816
+ var Info_ = __webpack_require__(159);
2639
2817
  var Info_default = /*#__PURE__*/__webpack_require__.n(Info_);
2640
2818
 
2641
2819
  // EXTERNAL MODULE: ./src/icons/ChevronRight.tsx
2642
- var ChevronRight = __webpack_require__(29);
2820
+ var ChevronRight = __webpack_require__(37);
2643
2821
 
2644
2822
  // CONCATENATED MODULE: ./src/Table/HeadExpandRowsIcon.tsx
2645
2823
 
@@ -2663,22 +2841,22 @@ function HeadExpandRowsIcon() {
2663
2841
  });
2664
2842
  }
2665
2843
  // EXTERNAL MODULE: external "@splunk/react-ui/Button"
2666
- var Button_ = __webpack_require__(16);
2844
+ var Button_ = __webpack_require__(19);
2667
2845
  var Button_default = /*#__PURE__*/__webpack_require__.n(Button_);
2668
2846
 
2669
2847
  // EXTERNAL MODULE: external "@splunk/react-ui/Dropdown"
2670
- var Dropdown_ = __webpack_require__(20);
2848
+ var Dropdown_ = __webpack_require__(24);
2671
2849
  var Dropdown_default = /*#__PURE__*/__webpack_require__.n(Dropdown_);
2672
2850
 
2673
2851
  // EXTERNAL MODULE: external "@splunk/react-ui/Tooltip"
2674
- var Tooltip_ = __webpack_require__(52);
2852
+ var Tooltip_ = __webpack_require__(67);
2675
2853
  var Tooltip_default = /*#__PURE__*/__webpack_require__.n(Tooltip_);
2676
2854
 
2677
2855
  // EXTERNAL MODULE: ./src/icons/ChevronDown.tsx
2678
- var ChevronDown = __webpack_require__(67);
2856
+ var ChevronDown = __webpack_require__(89);
2679
2857
 
2680
2858
  // EXTERNAL MODULE: ./src/icons/MoreVertical.tsx
2681
- var MoreVertical = __webpack_require__(65);
2859
+ var MoreVertical = __webpack_require__(86);
2682
2860
 
2683
2861
  // CONCATENATED MODULE: ./src/Table/RowDragCell.tsx
2684
2862
  function RowDragCell_typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { RowDragCell_typeof = function _typeof(obj) { return typeof obj; }; } else { RowDragCell_typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return RowDragCell_typeof(obj); }
@@ -2962,7 +3140,7 @@ var StyledCellExpansionDisabled = external_styled_components_default()(Table_Cel
2962
3140
  }));
2963
3141
 
2964
3142
  // EXTERNAL MODULE: external "@splunk/react-ui/Switch"
2965
- var Switch_ = __webpack_require__(72);
3143
+ var Switch_ = __webpack_require__(96);
2966
3144
  var Switch_default = /*#__PURE__*/__webpack_require__.n(Switch_);
2967
3145
 
2968
3146
  // CONCATENATED MODULE: ./src/Table/ToggleStyles.ts
@@ -3328,7 +3506,7 @@ var Row_Row = /*#__PURE__*/function (_Component) {
3328
3506
  $expandable: !!expandable,
3329
3507
  ref: this.handleMount,
3330
3508
  tabIndex: onClick ? 0 : undefined
3331
- }, Object(external_lodash_["omit"])(otherProps, 'data'), {
3509
+ }, omit_default()(otherProps, 'data'), {
3332
3510
  onClick: onClick ? this.handleClick : undefined,
3333
3511
  onKeyDown: this.handleKeyDown,
3334
3512
  $rowSelected: !!(onRequestToggle && selected)
@@ -3469,6 +3647,9 @@ function Head_defineProperty(obj, key, value) { if (key in obj) { Object.defineP
3469
3647
 
3470
3648
 
3471
3649
 
3650
+
3651
+
3652
+
3472
3653
  var Head_propTypes = {
3473
3654
  /** @private. */
3474
3655
  actions: external_prop_types_default.a.arrayOf(external_prop_types_default.a.node),
@@ -3653,7 +3834,7 @@ var Head_Head = /*#__PURE__*/function (_Component) {
3653
3834
  }
3654
3835
 
3655
3836
  this.cells = Array.from((_this$el$firstElement3 = (_this$el3 = this.el) === null || _this$el3 === void 0 ? void 0 : (_this$el3$firstElemen = _this$el3.firstElementChild) === null || _this$el3$firstElemen === void 0 ? void 0 : _this$el3$firstElemen.children) !== null && _this$el$firstElement3 !== void 0 ? _this$el$firstElement3 : []).slice(hasInfoColumn ? 1 : 0).slice(hasDragColumn ? 1 : 0).slice(onRequestToggleAllRows ? 1 : 0);
3656
- var overIndex = Object(external_lodash_["findIndex"])(this.cells, function (cell) {
3837
+ var overIndex = findIndex_default()(this.cells, function (cell) {
3657
3838
  var rect = cell.getBoundingClientRect();
3658
3839
  return dragPosition !== undefined && dragPosition > rect.left && dragPosition < rect.right;
3659
3840
  });
@@ -3693,6 +3874,7 @@ var Head_Head = /*#__PURE__*/function (_Component) {
3693
3874
  onRequestResizeColumn = _this$props5.onRequestResizeColumn,
3694
3875
  onRequestToggleAllRows = _this$props5.onRequestToggleAllRows,
3695
3876
  rowSelection = _this$props5.rowSelection;
3877
+ var headType = this.context.headType;
3696
3878
  var guidelineIndex = this.calculateGuideIndex();
3697
3879
  var validChildren = external_react_["Children"].toArray(children).filter(external_react_["isValidElement"]);
3698
3880
  var minimumIndex = validChildren.length + (actions.length || actionsColumnWidth ? 1 : 0);
@@ -3724,10 +3906,11 @@ var Head_Head = /*#__PURE__*/function (_Component) {
3724
3906
  var toggleState = rowSelection === undefined ? undefined : toggleStateMap[rowSelection];
3725
3907
  var ariaChecked = toggleState === 'some' ? 'mixed' : toggleState;
3726
3908
  var defaultActionsColumnWidth = actionsColumnWidth || 48;
3909
+ var testHookValue = headType === 'fixed' ? 'fixed-head' : 'head';
3727
3910
  return /*#__PURE__*/external_react_default.a.createElement(HeadStyles_Styled, Head_extends({
3728
3911
  ref: this.handleMount,
3729
- "data-test": "head"
3730
- }, Object(external_lodash_["omit"])(this.props, Object(external_lodash_["keys"])(Head.propTypes))), /*#__PURE__*/external_react_default.a.createElement(Table_Row, null, hasDragColumn && /*#__PURE__*/external_react_default.a.createElement(StyledDragRow, {
3912
+ "data-test": testHookValue
3913
+ }, omit_default()(this.props, keys_default()(Head.propTypes))), /*#__PURE__*/external_react_default.a.createElement(Table_Row, null, hasDragColumn && /*#__PURE__*/external_react_default.a.createElement(StyledDragRow, {
3731
3914
  key: "drag_rows_head_cell",
3732
3915
  "data-test": "drag-rows-head-cell",
3733
3916
  align: "center",
@@ -3789,6 +3972,8 @@ var Head_Head = /*#__PURE__*/function (_Component) {
3789
3972
  return Head;
3790
3973
  }(external_react_["Component"]);
3791
3974
 
3975
+ Head_defineProperty(Head_Head, "contextType", Table_TableContext);
3976
+
3792
3977
  Head_defineProperty(Head_Head, "splunkUiType", 'Table.Head');
3793
3978
 
3794
3979
  Head_defineProperty(Head_Head, "propTypes", Head_propTypes);
@@ -3796,11 +3981,19 @@ Head_defineProperty(Head_Head, "propTypes", Head_propTypes);
3796
3981
  Head_defineProperty(Head_Head, "defaultProps", Head_defaultProps);
3797
3982
 
3798
3983
  /* harmony default export */ var Table_Head = (Head_Head);
3984
+ // EXTERNAL MODULE: external "lodash/isFinite"
3985
+ var isFinite_ = __webpack_require__(21);
3986
+ var isFinite_default = /*#__PURE__*/__webpack_require__.n(isFinite_);
3987
+
3988
+ // EXTERNAL MODULE: external "lodash/isFunction"
3989
+ var isFunction_ = __webpack_require__(68);
3990
+ var isFunction_default = /*#__PURE__*/__webpack_require__.n(isFunction_);
3991
+
3799
3992
  // EXTERNAL MODULE: external "@splunk/ui-utils/id"
3800
- var id_ = __webpack_require__(11);
3993
+ var id_ = __webpack_require__(13);
3801
3994
 
3802
3995
  // EXTERNAL MODULE: external "@splunk/react-ui/Popover"
3803
- var Popover_ = __webpack_require__(18);
3996
+ var Popover_ = __webpack_require__(23);
3804
3997
  var Popover_default = /*#__PURE__*/__webpack_require__.n(Popover_);
3805
3998
 
3806
3999
  // CONCATENATED MODULE: ./src/Table/HeadDropdownCell.tsx
@@ -3852,6 +4045,11 @@ function HeadDropdownCell_defineProperty(obj, key, value) { if (key in obj) { Ob
3852
4045
 
3853
4046
 
3854
4047
 
4048
+
4049
+
4050
+
4051
+
4052
+
3855
4053
  /** @public */
3856
4054
 
3857
4055
  var possibleCloseReasons = ['clickAway', 'contentClick', 'escapeKey', 'offScreen', 'tabKey', 'toggleClick'];
@@ -3982,8 +4180,8 @@ var HeadDropdownCell_HeadDropdownCell = /*#__PURE__*/function (_Component) {
3982
4180
  }
3983
4181
  }
3984
4182
 
3985
- if (_this.isOpen() && Object(external_lodash_["includes"])(closeReasons, reason) && index !== undefined) {
3986
- if (Object(external_lodash_["includes"])(focusToggleReasons, reason)) {
4183
+ if (_this.isOpen() && includes_default()(closeReasons, reason) && index !== undefined) {
4184
+ if (includes_default()(focusToggleReasons, reason)) {
3987
4185
  _this.focus();
3988
4186
  }
3989
4187
 
@@ -4099,7 +4297,7 @@ var HeadDropdownCell_HeadDropdownCell = /*#__PURE__*/function (_Component) {
4099
4297
  isDragging: false,
4100
4298
  open: false
4101
4299
  };
4102
- _this.controlledExternally = Object(external_lodash_["has"])(props, 'open');
4300
+ _this.controlledExternally = has_default()(props, 'open');
4103
4301
  _this.popoverId = Object(id_["createDOMID"])('popover');
4104
4302
  _this.cellId = Object(id_["createDOMID"])('cellId');
4105
4303
 
@@ -4176,7 +4374,7 @@ var HeadDropdownCell_HeadDropdownCell = /*#__PURE__*/function (_Component) {
4176
4374
  var cellId = id || this.cellId;
4177
4375
  var headType = this.context.headType;
4178
4376
  return /*#__PURE__*/external_react_default.a.createElement(HeadCellStyles_Styled, HeadDropdownCell_extends({
4179
- style: Object(external_lodash_["merge"])(style, {
4377
+ style: merge_default()(style, {
4180
4378
  width: width
4181
4379
  }),
4182
4380
  "data-test": "head-cell",
@@ -4186,7 +4384,7 @@ var HeadDropdownCell_HeadDropdownCell = /*#__PURE__*/function (_Component) {
4186
4384
  id: visible ? cellId : undefined,
4187
4385
  tabIndex: visible ? 0 : undefined,
4188
4386
  ref: this.handleMount
4189
- }, Object(external_lodash_["omit"])(this.props, [].concat(HeadDropdownCell_toConsumableArray(Object.keys(HeadDropdownCell.propTypes)), ['id', 'style'])), {
4387
+ }, omit_default()(this.props, [].concat(HeadDropdownCell_toConsumableArray(Object.keys(HeadDropdownCell.propTypes)), ['id', 'style'])), {
4190
4388
  onClick: this.handleClick,
4191
4389
  onKeyDown: this.handleKeyDown,
4192
4390
  "aria-haspopup": true,
@@ -4213,7 +4411,7 @@ var HeadDropdownCell_HeadDropdownCell = /*#__PURE__*/function (_Component) {
4213
4411
  }), /*#__PURE__*/external_react_default.a.createElement(Popover_default.a, {
4214
4412
  align: "center",
4215
4413
  open: !!el && this.isOpen(),
4216
- autoCloseWhenOffScreen: Object(external_lodash_["includes"])(closeReasons, 'offScreen'),
4414
+ autoCloseWhenOffScreen: includes_default()(closeReasons, 'offScreen'),
4217
4415
  anchor: el,
4218
4416
  canCoverAnchor: canCoverHead,
4219
4417
  retainFocus: retainFocus,
@@ -4223,10 +4421,10 @@ var HeadDropdownCell_HeadDropdownCell = /*#__PURE__*/function (_Component) {
4223
4421
  id: this.popoverId,
4224
4422
  "aria-labelledby": id || this.cellId,
4225
4423
  takeFocus: takeFocus,
4226
- pointTo: clientX !== undefined && Object(external_lodash_["isFinite"])(clientX) ? {
4424
+ pointTo: clientX !== undefined && isFinite_default()(clientX) ? {
4227
4425
  x: clientX - ((_el$getBoundingClient = el === null || el === void 0 ? void 0 : el.getBoundingClientRect().left) !== null && _el$getBoundingClient !== void 0 ? _el$getBoundingClient : 0)
4228
4426
  } : undefined
4229
- }, Object(external_lodash_["isFunction"])(children) ? function () {
4427
+ }, isFunction_default()(children) ? function () {
4230
4428
  return (
4231
4429
  /*#__PURE__*/
4232
4430
  // eslint-disable-next-line jsx-a11y/click-events-have-key-events, jsx-a11y/no-static-element-interactions
@@ -4257,6 +4455,10 @@ HeadDropdownCell_defineProperty(HeadDropdownCell_HeadDropdownCell, "defaultProps
4257
4455
  HeadDropdownCell_defineProperty(HeadDropdownCell_HeadDropdownCell, "contextType", Table_TableContext);
4258
4456
 
4259
4457
  /* harmony default export */ var Table_HeadDropdownCell = (HeadDropdownCell_HeadDropdownCell);
4458
+ // EXTERNAL MODULE: external "lodash/extend"
4459
+ var extend_ = __webpack_require__(48);
4460
+ var extend_default = /*#__PURE__*/__webpack_require__.n(extend_);
4461
+
4260
4462
  // CONCATENATED MODULE: ./src/Table/HeadTableStyles.ts
4261
4463
 
4262
4464
 
@@ -4312,6 +4514,7 @@ function HeadTable_defineProperty(obj, key, value) { if (key in obj) { Object.de
4312
4514
 
4313
4515
 
4314
4516
 
4517
+
4315
4518
  var HeadTable_propTypes = {
4316
4519
  cellWidths: external_prop_types_default.a.arrayOf(external_prop_types_default.a.number).isRequired,
4317
4520
  dragIndex: external_prop_types_default.a.number,
@@ -4407,7 +4610,7 @@ var HeadTable_HeadTable = /*#__PURE__*/function (_Component) {
4407
4610
  var cells = isFixedColumn ? external_react_["Children"].toArray(tHead.props.children) : // ensure consistent keys
4408
4611
  external_react_["Children"].toArray(tHead.props.children).filter(external_react_["isValidElement"]).map(function (cell, i) {
4409
4612
  return /*#__PURE__*/Object(external_react_["cloneElement"])(cell, {
4410
- style: Object(external_lodash_["extend"])({}, cell.props.style, {
4613
+ style: extend_default()({}, cell.props.style, {
4411
4614
  width: cellWidths[i + indexOffset]
4412
4615
  })
4413
4616
  });
@@ -4425,11 +4628,11 @@ var HeadTable_HeadTable = /*#__PURE__*/function (_Component) {
4425
4628
  }, /*#__PURE__*/external_react_default.a.createElement(HeadTableStyles_Styled, HeadTable_extends({
4426
4629
  "data-test": "".concat(headType, "-head-table"),
4427
4630
  "data-fixed-column": isFixedColumn ? 'true' : undefined,
4428
- style: Object(external_lodash_["extend"])({}, tableStyle, {
4631
+ style: extend_default()({}, tableStyle, {
4429
4632
  marginLeft: horizontalOffset,
4430
4633
  width: isFixedColumn ? undefined : tableWidth
4431
4634
  })
4432
- }, Object(external_lodash_["omit"])(otherProps, 'dragIndex')), clonedTHead));
4635
+ }, omit_default()(otherProps, 'dragIndex')), clonedTHead));
4433
4636
  }
4434
4637
  }]);
4435
4638
 
@@ -4442,7 +4645,7 @@ HeadTable_defineProperty(HeadTable_HeadTable, "defaultProps", HeadTable_defaultP
4442
4645
 
4443
4646
  /* harmony default export */ var Table_HeadTable = (HeadTable_HeadTable);
4444
4647
  // EXTERNAL MODULE: ./src/utils/types.ts
4445
- var types = __webpack_require__(57);
4648
+ var types = __webpack_require__(76);
4446
4649
 
4447
4650
  // CONCATENATED MODULE: ./src/Table/Table.tsx
4448
4651
  function Table_typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { Table_typeof = function _typeof(obj) { return typeof obj; }; } else { Table_typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return Table_typeof(obj); }
@@ -4489,6 +4692,12 @@ function Table_defineProperty(obj, key, value) { if (key in obj) { Object.define
4489
4692
 
4490
4693
 
4491
4694
 
4695
+
4696
+
4697
+
4698
+
4699
+
4700
+
4492
4701
  // Exposed as static members of the Table class
4493
4702
 
4494
4703
 
@@ -4563,7 +4772,7 @@ var Table_Table = /*#__PURE__*/function (_Component) {
4563
4772
  }
4564
4773
 
4565
4774
  var headCells = (_head$getEl = head.getEl()) === null || _head$getEl === void 0 ? void 0 : _head$getEl.children[0].children;
4566
- var activeHeadCellIndex = Object(external_lodash_["indexOf"])(headCells, document.activeElement);
4775
+ var activeHeadCellIndex = indexOf_default()(headCells, document.activeElement);
4567
4776
 
4568
4777
  if (activeHeadCellIndex > -1) {
4569
4778
  return {
@@ -4573,7 +4782,7 @@ var Table_Table = /*#__PURE__*/function (_Component) {
4573
4782
  }
4574
4783
 
4575
4784
  var resizeButtons = (_head$getEl2 = head.getEl()) === null || _head$getEl2 === void 0 ? void 0 : _head$getEl2.querySelectorAll('[data-test=resize]');
4576
- var activeResizeButtonIndex = Object(external_lodash_["indexOf"])(resizeButtons, document.activeElement);
4785
+ var activeResizeButtonIndex = indexOf_default()(resizeButtons, document.activeElement);
4577
4786
 
4578
4787
  if (activeResizeButtonIndex > -1) {
4579
4788
  return {
@@ -4687,9 +4896,9 @@ var Table_Table = /*#__PURE__*/function (_Component) {
4687
4896
  });
4688
4897
  });
4689
4898
 
4690
- Table_defineProperty(Table_assertThisInitialized(_this), "handleScroll", Object(external_lodash_["throttle"])(_this.updateDockedHeadState, 0));
4899
+ Table_defineProperty(Table_assertThisInitialized(_this), "handleScroll", throttle_default()(_this.updateDockedHeadState, 0));
4691
4900
 
4692
- Table_defineProperty(Table_assertThisInitialized(_this), "handleResize", Object(external_lodash_["throttle"])(_this.updateDockedHeadState, 50));
4901
+ Table_defineProperty(Table_assertThisInitialized(_this), "handleResize", throttle_default()(_this.updateDockedHeadState, 50));
4693
4902
 
4694
4903
  Table_defineProperty(Table_assertThisInitialized(_this), "handleContainerScroll", function (e) {
4695
4904
  var _this$props$onScroll, _this$props;
@@ -4826,7 +5035,7 @@ var Table_Table = /*#__PURE__*/function (_Component) {
4826
5035
  wrapper.style.left = '0';
4827
5036
  wrapper.style.maxHeight = '10px';
4828
5037
  wrapper.style.overflow = 'hidden';
4829
- Object(external_lodash_["forEach"])(cells, function (cell) {
5038
+ forEach_default()(cells, function (cell) {
4830
5039
  var clone = cell.cloneNode(true); // TS: this seems safe to assume?
4831
5040
 
4832
5041
  clone.style.display = 'block';
@@ -4842,7 +5051,7 @@ var Table_Table = /*#__PURE__*/function (_Component) {
4842
5051
  (_wrapper$parentNode = wrapper.parentNode) === null || _wrapper$parentNode === void 0 ? void 0 : _wrapper$parentNode.removeChild(wrapper);
4843
5052
  });
4844
5053
 
4845
- Table_defineProperty(Table_assertThisInitialized(_this), "updateDragPosition", Object(external_lodash_["throttle"])(_this.updateDragPositionImpl, 100, {
5054
+ Table_defineProperty(Table_assertThisInitialized(_this), "updateDragPosition", throttle_default()(_this.updateDragPositionImpl, 100, {
4846
5055
  trailing: false
4847
5056
  }));
4848
5057
 
@@ -4864,7 +5073,7 @@ var Table_Table = /*#__PURE__*/function (_Component) {
4864
5073
  if (head && headTable) {
4865
5074
  var cellWidths = head.getCellWidths();
4866
5075
 
4867
- if (!Object(external_lodash_["isEqual"])(this.state.cellWidths, cellWidths)) {
5076
+ if (!isEqual_default()(this.state.cellWidths, cellWidths)) {
4868
5077
  this.updateDockedHeadState();
4869
5078
  }
4870
5079
  }
@@ -5097,7 +5306,7 @@ var Table_Table = /*#__PURE__*/function (_Component) {
5097
5306
  if (!isFixedColumn) {
5098
5307
  // if all the HeadCells are fixed width, then the table is fixed.
5099
5308
  isFixedColumn = !external_react_["Children"].toArray(child.props.children).filter(external_react_["isValidElement"]).some(function (th) {
5100
- return !Object(external_lodash_["has"])(th.props, 'width');
5309
+ return !has_default()(th.props, 'width');
5101
5310
  });
5102
5311
  }
5103
5312
  } else if (splunkUiType === 'Table.Body') {
@@ -5136,7 +5345,7 @@ var Table_Table = /*#__PURE__*/function (_Component) {
5136
5345
  ref: elementRef,
5137
5346
  style: outerStyle,
5138
5347
  "data-test-row-selection": onRequestToggleAllRows ? rowSelection : undefined
5139
- }, Object(external_lodash_["omit"])(this.props, [].concat(Table_toConsumableArray(Object.keys(Table.propTypes)), ['style']))), /*#__PURE__*/external_react_default.a.createElement(EventListener_default.a, {
5348
+ }, omit_default()(this.props, [].concat(Table_toConsumableArray(Object.keys(Table.propTypes)), ['style']))), /*#__PURE__*/external_react_default.a.createElement(EventListener_default.a, {
5140
5349
  target: Object(ssrWindow["a" /* getWindow */])(),
5141
5350
  eventType: "scroll",
5142
5351
  listener: this.handleScroll,