@splunk/dashboard-toolbar 29.0.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/CollapsibleToolbar.js +261 -0
- package/CollapsibleToolbar.js.map +7 -0
- package/IconButton.js +168 -0
- package/IconButton.js.map +7 -0
- package/Item.js +52 -0
- package/Item.js.map +7 -0
- package/ItemGroup.js +127 -0
- package/ItemGroup.js.map +7 -0
- package/LICENSE.md +14 -0
- package/PopoverItemButton.js +78 -0
- package/PopoverItemButton.js.map +7 -0
- package/README.md +9 -0
- package/Toolbar.js +192 -0
- package/Toolbar.js.map +7 -0
- package/buttons/Charts.js +384 -0
- package/buttons/Charts.js.map +7 -0
- package/buttons/Config.js +224 -0
- package/buttons/Config.js.map +7 -0
- package/buttons/ContentExport.js +199 -0
- package/buttons/ContentExport.js.map +7 -0
- package/buttons/Data.js +236 -0
- package/buttons/Data.js.map +7 -0
- package/buttons/EmptyVisualization.js +234 -0
- package/buttons/EmptyVisualization.js.map +7 -0
- package/buttons/ExportDashboardButton.js +130 -0
- package/buttons/ExportDashboardButton.js.map +7 -0
- package/buttons/Fullscreen.js +214 -0
- package/buttons/Fullscreen.js.map +7 -0
- package/buttons/GridLineSwitch.js +145 -0
- package/buttons/GridLineSwitch.js.map +7 -0
- package/buttons/HelpButton.js +277 -0
- package/buttons/HelpButton.js.map +7 -0
- package/buttons/IconGallery.js +303 -0
- package/buttons/IconGallery.js.map +7 -0
- package/buttons/Image.js +233 -0
- package/buttons/Image.js.map +7 -0
- package/buttons/ImageGallery.js +300 -0
- package/buttons/ImageGallery.js.map +7 -0
- package/buttons/Inputs.js +348 -0
- package/buttons/Inputs.js.map +7 -0
- package/buttons/Markdown.js +213 -0
- package/buttons/Markdown.js.map +7 -0
- package/buttons/ModeSwitch.js +121 -0
- package/buttons/ModeSwitch.js.map +7 -0
- package/buttons/Redo.js +227 -0
- package/buttons/Redo.js.map +7 -0
- package/buttons/Shapes.js +357 -0
- package/buttons/Shapes.js.map +7 -0
- package/buttons/Source.js +199 -0
- package/buttons/Source.js.map +7 -0
- package/buttons/Undo.js +227 -0
- package/buttons/Undo.js.map +7 -0
- package/buttons/index.js +1857 -0
- package/buttons/index.js.map +7 -0
- package/groups/ActionsGroup.js +153 -0
- package/groups/ActionsGroup.js.map +7 -0
- package/groups/ControlGroup.js +701 -0
- package/groups/ControlGroup.js.map +7 -0
- package/groups/EditingGroup.js +1029 -0
- package/groups/EditingGroup.js.map +7 -0
- package/groups/EditorGroup.js +698 -0
- package/groups/EditorGroup.js.map +7 -0
- package/groups/EditorsControlGroup.js +753 -0
- package/groups/EditorsControlGroup.js.map +7 -0
- package/groups/HistoryGroup.js +761 -0
- package/groups/HistoryGroup.js.map +7 -0
- package/groups/SidebarControlGroup.js +740 -0
- package/groups/SidebarControlGroup.js.map +7 -0
- package/groups/VisualizationGroup.js +1218 -0
- package/groups/VisualizationGroup.js.map +7 -0
- package/groups/index.js +1778 -0
- package/groups/index.js.map +7 -0
- package/index.js +2245 -0
- package/index.js.map +7 -0
- package/module/CollapsibleToolbar.js +20 -0
- package/module/CollapsibleToolbar.js.map +7 -0
- package/module/IconButton.js +21 -0
- package/module/IconButton.js.map +7 -0
- package/module/Item.js +12 -0
- package/module/Item.js.map +7 -0
- package/module/ItemGroup.js +16 -0
- package/module/ItemGroup.js.map +7 -0
- package/module/PopoverItemButton.js +13 -0
- package/module/PopoverItemButton.js.map +7 -0
- package/module/Toolbar.js +15 -0
- package/module/Toolbar.js.map +7 -0
- package/module/buttons/Charts.js +26 -0
- package/module/buttons/Charts.js.map +7 -0
- package/module/buttons/Config.js +18 -0
- package/module/buttons/Config.js.map +7 -0
- package/module/buttons/ContentExport.js +18 -0
- package/module/buttons/ContentExport.js.map +7 -0
- package/module/buttons/Data.js +19 -0
- package/module/buttons/Data.js.map +7 -0
- package/module/buttons/EmptyVisualization.js +18 -0
- package/module/buttons/EmptyVisualization.js.map +7 -0
- package/module/buttons/ExportDashboardButton.js +17 -0
- package/module/buttons/ExportDashboardButton.js.map +7 -0
- package/module/buttons/Fullscreen.js +18 -0
- package/module/buttons/Fullscreen.js.map +7 -0
- package/module/buttons/GridLineSwitch.js +17 -0
- package/module/buttons/GridLineSwitch.js.map +7 -0
- package/module/buttons/HelpButton.js +20 -0
- package/module/buttons/HelpButton.js.map +7 -0
- package/module/buttons/IconGallery.js +20 -0
- package/module/buttons/IconGallery.js.map +7 -0
- package/module/buttons/Image.js +18 -0
- package/module/buttons/Image.js.map +7 -0
- package/module/buttons/ImageGallery.js +21 -0
- package/module/buttons/ImageGallery.js.map +7 -0
- package/module/buttons/Inputs.js +20 -0
- package/module/buttons/Inputs.js.map +7 -0
- package/module/buttons/Markdown.js +17 -0
- package/module/buttons/Markdown.js.map +7 -0
- package/module/buttons/ModeSwitch.js +18 -0
- package/module/buttons/ModeSwitch.js.map +7 -0
- package/module/buttons/Redo.js +17 -0
- package/module/buttons/Redo.js.map +7 -0
- package/module/buttons/Shapes.js +22 -0
- package/module/buttons/Shapes.js.map +7 -0
- package/module/buttons/Source.js +17 -0
- package/module/buttons/Source.js.map +7 -0
- package/module/buttons/Undo.js +17 -0
- package/module/buttons/Undo.js.map +7 -0
- package/module/buttons/index.js +108 -0
- package/module/buttons/index.js.map +7 -0
- package/module/chunks/chunk-2QMHWIV5.js +175 -0
- package/module/chunks/chunk-2QMHWIV5.js.map +7 -0
- package/module/chunks/chunk-4OLWQA6K.js +83 -0
- package/module/chunks/chunk-4OLWQA6K.js.map +7 -0
- package/module/chunks/chunk-52TYQW2Y.js +23 -0
- package/module/chunks/chunk-52TYQW2Y.js.map +7 -0
- package/module/chunks/chunk-72YLBMXL.js +199 -0
- package/module/chunks/chunk-72YLBMXL.js.map +7 -0
- package/module/chunks/chunk-734QWOYU.js +56 -0
- package/module/chunks/chunk-734QWOYU.js.map +7 -0
- package/module/chunks/chunk-A3BAVEME.js +77 -0
- package/module/chunks/chunk-A3BAVEME.js.map +7 -0
- package/module/chunks/chunk-AWNWXBE4.js +68 -0
- package/module/chunks/chunk-AWNWXBE4.js.map +7 -0
- package/module/chunks/chunk-B2LPQWLD.js +74 -0
- package/module/chunks/chunk-B2LPQWLD.js.map +7 -0
- package/module/chunks/chunk-BLXVTG4B.js +65 -0
- package/module/chunks/chunk-BLXVTG4B.js.map +7 -0
- package/module/chunks/chunk-BRGYD3MR.js +23 -0
- package/module/chunks/chunk-BRGYD3MR.js.map +7 -0
- package/module/chunks/chunk-BSMCGXVQ.js +22 -0
- package/module/chunks/chunk-BSMCGXVQ.js.map +7 -0
- package/module/chunks/chunk-CFGNNO2V.js +143 -0
- package/module/chunks/chunk-CFGNNO2V.js.map +7 -0
- package/module/chunks/chunk-E2DI77AU.js +15 -0
- package/module/chunks/chunk-E2DI77AU.js.map +7 -0
- package/module/chunks/chunk-ECEBJH6K.js +112 -0
- package/module/chunks/chunk-ECEBJH6K.js.map +7 -0
- package/module/chunks/chunk-ETJ5YPF3.js +31 -0
- package/module/chunks/chunk-ETJ5YPF3.js.map +7 -0
- package/module/chunks/chunk-FSOMEJXM.js +49 -0
- package/module/chunks/chunk-FSOMEJXM.js.map +7 -0
- package/module/chunks/chunk-FVGABOJM.js +37 -0
- package/module/chunks/chunk-FVGABOJM.js.map +7 -0
- package/module/chunks/chunk-G6N5OMKL.js +22 -0
- package/module/chunks/chunk-G6N5OMKL.js.map +7 -0
- package/module/chunks/chunk-GRIJP4FT.js +172 -0
- package/module/chunks/chunk-GRIJP4FT.js.map +7 -0
- package/module/chunks/chunk-GWAXQYWY.js +105 -0
- package/module/chunks/chunk-GWAXQYWY.js.map +7 -0
- package/module/chunks/chunk-HIICL66H.js +22 -0
- package/module/chunks/chunk-HIICL66H.js.map +7 -0
- package/module/chunks/chunk-HXY4TSUO.js +22 -0
- package/module/chunks/chunk-HXY4TSUO.js.map +7 -0
- package/module/chunks/chunk-IAEE4XLH.js +58 -0
- package/module/chunks/chunk-IAEE4XLH.js.map +7 -0
- package/module/chunks/chunk-IGGLU44N.js +22 -0
- package/module/chunks/chunk-IGGLU44N.js.map +7 -0
- package/module/chunks/chunk-IQG5GSSX.js +77 -0
- package/module/chunks/chunk-IQG5GSSX.js.map +7 -0
- package/module/chunks/chunk-J2TRUM5N.js +23 -0
- package/module/chunks/chunk-J2TRUM5N.js.map +7 -0
- package/module/chunks/chunk-J5CY2G3T.js +52 -0
- package/module/chunks/chunk-J5CY2G3T.js.map +7 -0
- package/module/chunks/chunk-JILFF3WY.js +122 -0
- package/module/chunks/chunk-JILFF3WY.js.map +7 -0
- package/module/chunks/chunk-JLYV2H24.js +21 -0
- package/module/chunks/chunk-JLYV2H24.js.map +7 -0
- package/module/chunks/chunk-JXPIKVRZ.js +48 -0
- package/module/chunks/chunk-JXPIKVRZ.js.map +7 -0
- package/module/chunks/chunk-KEARZQAT.js +57 -0
- package/module/chunks/chunk-KEARZQAT.js.map +7 -0
- package/module/chunks/chunk-KJLRQLFH.js +28 -0
- package/module/chunks/chunk-KJLRQLFH.js.map +7 -0
- package/module/chunks/chunk-L4ZPYLUY.js +25 -0
- package/module/chunks/chunk-L4ZPYLUY.js.map +7 -0
- package/module/chunks/chunk-NCPTJ5RB.js +185 -0
- package/module/chunks/chunk-NCPTJ5RB.js.map +7 -0
- package/module/chunks/chunk-NIACHGAA.js +25 -0
- package/module/chunks/chunk-NIACHGAA.js.map +7 -0
- package/module/chunks/chunk-NJF2IOVV.js +22 -0
- package/module/chunks/chunk-NJF2IOVV.js.map +7 -0
- package/module/chunks/chunk-NWVLNDCF.js +23 -0
- package/module/chunks/chunk-NWVLNDCF.js.map +7 -0
- package/module/chunks/chunk-OIQNUT2X.js +36 -0
- package/module/chunks/chunk-OIQNUT2X.js.map +7 -0
- package/module/chunks/chunk-OSDOIGWB.js +23 -0
- package/module/chunks/chunk-OSDOIGWB.js.map +7 -0
- package/module/chunks/chunk-OTGQ73VF.js +63 -0
- package/module/chunks/chunk-OTGQ73VF.js.map +7 -0
- package/module/chunks/chunk-QU7RW3YZ.js +39 -0
- package/module/chunks/chunk-QU7RW3YZ.js.map +7 -0
- package/module/chunks/chunk-RODBPKID.js +64 -0
- package/module/chunks/chunk-RODBPKID.js.map +7 -0
- package/module/chunks/chunk-SIFZZCPT.js +439 -0
- package/module/chunks/chunk-SIFZZCPT.js.map +7 -0
- package/module/chunks/chunk-UPZBDSS7.js +59 -0
- package/module/chunks/chunk-UPZBDSS7.js.map +7 -0
- package/module/chunks/chunk-UVD66GCR.js +4 -0
- package/module/chunks/chunk-UVD66GCR.js.map +7 -0
- package/module/chunks/chunk-VQIRZ53C.js +79 -0
- package/module/chunks/chunk-VQIRZ53C.js.map +7 -0
- package/module/chunks/chunk-WFAY6ABE.js +28 -0
- package/module/chunks/chunk-WFAY6ABE.js.map +7 -0
- package/module/chunks/chunk-X2HLBQUA.js +64 -0
- package/module/chunks/chunk-X2HLBQUA.js.map +7 -0
- package/module/chunks/chunk-X7ATHE2S.js +23 -0
- package/module/chunks/chunk-X7ATHE2S.js.map +7 -0
- package/module/chunks/chunk-XUK4ZKWN.js +52 -0
- package/module/chunks/chunk-XUK4ZKWN.js.map +7 -0
- package/module/chunks/chunk-YKT3CRI6.js +23 -0
- package/module/chunks/chunk-YKT3CRI6.js.map +7 -0
- package/module/chunks/chunk-YPVMTO2L.js +111 -0
- package/module/chunks/chunk-YPVMTO2L.js.map +7 -0
- package/module/groups/ActionsGroup.js +16 -0
- package/module/groups/ActionsGroup.js.map +7 -0
- package/module/groups/ControlGroup.js +51 -0
- package/module/groups/ControlGroup.js.map +7 -0
- package/module/groups/EditingGroup.js +51 -0
- package/module/groups/EditingGroup.js.map +7 -0
- package/module/groups/EditorGroup.js +51 -0
- package/module/groups/EditorGroup.js.map +7 -0
- package/module/groups/EditorsControlGroup.js +51 -0
- package/module/groups/EditorsControlGroup.js.map +7 -0
- package/module/groups/HistoryGroup.js +51 -0
- package/module/groups/HistoryGroup.js.map +7 -0
- package/module/groups/SidebarControlGroup.js +51 -0
- package/module/groups/SidebarControlGroup.js.map +7 -0
- package/module/groups/VisualizationGroup.js +51 -0
- package/module/groups/VisualizationGroup.js.map +7 -0
- package/module/groups/index.js +80 -0
- package/module/groups/index.js.map +7 -0
- package/module/index.js +163 -0
- package/module/index.js.map +7 -0
- package/module/package.json +1 -0
- package/package.json +68 -0
- package/tsconfig.json +9 -0
- package/types/CollapsibleToolbar.d.ts +12 -0
- package/types/CollapsibleToolbar.d.ts.map +1 -0
- package/types/IconButton.d.ts +35 -0
- package/types/IconButton.d.ts.map +1 -0
- package/types/Item.d.ts +3 -0
- package/types/Item.d.ts.map +1 -0
- package/types/ItemGroup.d.ts +14 -0
- package/types/ItemGroup.d.ts.map +1 -0
- package/types/PopoverItemButton.d.ts +12 -0
- package/types/PopoverItemButton.d.ts.map +1 -0
- package/types/Toolbar.d.ts +14 -0
- package/types/Toolbar.d.ts.map +1 -0
- package/types/buttons/Charts.d.ts +19 -0
- package/types/buttons/Charts.d.ts.map +1 -0
- package/types/buttons/Config.d.ts +8 -0
- package/types/buttons/Config.d.ts.map +1 -0
- package/types/buttons/ContentExport.d.ts +10 -0
- package/types/buttons/ContentExport.d.ts.map +1 -0
- package/types/buttons/Data.d.ts +8 -0
- package/types/buttons/Data.d.ts.map +1 -0
- package/types/buttons/EmptyVisualization.d.ts +8 -0
- package/types/buttons/EmptyVisualization.d.ts.map +1 -0
- package/types/buttons/ExportDashboardButton.d.ts +10 -0
- package/types/buttons/ExportDashboardButton.d.ts.map +1 -0
- package/types/buttons/Fullscreen.d.ts +8 -0
- package/types/buttons/Fullscreen.d.ts.map +1 -0
- package/types/buttons/GridLineSwitch.d.ts +8 -0
- package/types/buttons/GridLineSwitch.d.ts.map +1 -0
- package/types/buttons/HelpButton.d.ts +16 -0
- package/types/buttons/HelpButton.d.ts.map +1 -0
- package/types/buttons/IconGallery.d.ts +8 -0
- package/types/buttons/IconGallery.d.ts.map +1 -0
- package/types/buttons/Image.d.ts +8 -0
- package/types/buttons/Image.d.ts.map +1 -0
- package/types/buttons/ImageGallery.d.ts +8 -0
- package/types/buttons/ImageGallery.d.ts.map +1 -0
- package/types/buttons/Inputs.d.ts +8 -0
- package/types/buttons/Inputs.d.ts.map +1 -0
- package/types/buttons/Markdown.d.ts +7 -0
- package/types/buttons/Markdown.d.ts.map +1 -0
- package/types/buttons/ModeSwitch.d.ts +7 -0
- package/types/buttons/ModeSwitch.d.ts.map +1 -0
- package/types/buttons/Redo.d.ts +5 -0
- package/types/buttons/Redo.d.ts.map +1 -0
- package/types/buttons/Shapes.d.ts +8 -0
- package/types/buttons/Shapes.d.ts.map +1 -0
- package/types/buttons/Source.d.ts +13 -0
- package/types/buttons/Source.d.ts.map +1 -0
- package/types/buttons/Undo.d.ts +5 -0
- package/types/buttons/Undo.d.ts.map +1 -0
- package/types/buttons/Zoom/Zoom.d.ts +8 -0
- package/types/buttons/Zoom/Zoom.d.ts.map +1 -0
- package/types/buttons/Zoom/ZoomMenu.d.ts +12 -0
- package/types/buttons/Zoom/ZoomMenu.d.ts.map +1 -0
- package/types/buttons/Zoom/ZoomNumber.d.ts +8 -0
- package/types/buttons/Zoom/ZoomNumber.d.ts.map +1 -0
- package/types/buttons/Zoom/index.d.ts +2 -0
- package/types/buttons/Zoom/index.d.ts.map +1 -0
- package/types/buttons/index.d.ts +26 -0
- package/types/buttons/index.d.ts.map +1 -0
- package/types/buttons/tokenManager/TokenManager.d.ts +7 -0
- package/types/buttons/tokenManager/TokenManager.d.ts.map +1 -0
- package/types/buttons/tokenManager/index.d.ts +2 -0
- package/types/buttons/tokenManager/index.d.ts.map +1 -0
- package/types/components/ItemSeparator.d.ts +3 -0
- package/types/components/ItemSeparator.d.ts.map +1 -0
- package/types/components/StyledButton.d.ts +2 -0
- package/types/components/StyledButton.d.ts.map +1 -0
- package/types/groups/ActionsGroup.d.ts +10 -0
- package/types/groups/ActionsGroup.d.ts.map +1 -0
- package/types/groups/ControlGroup.d.ts +8 -0
- package/types/groups/ControlGroup.d.ts.map +1 -0
- package/types/groups/EditingGroup.d.ts +11 -0
- package/types/groups/EditingGroup.d.ts.map +1 -0
- package/types/groups/EditorGroup.d.ts +8 -0
- package/types/groups/EditorGroup.d.ts.map +1 -0
- package/types/groups/EditorsControlGroup.d.ts +8 -0
- package/types/groups/EditorsControlGroup.d.ts.map +1 -0
- package/types/groups/HistoryGroup.d.ts +8 -0
- package/types/groups/HistoryGroup.d.ts.map +1 -0
- package/types/groups/HistoryGroup.test.d.ts +2 -0
- package/types/groups/HistoryGroup.test.d.ts.map +1 -0
- package/types/groups/SidebarControlGroup.d.ts +8 -0
- package/types/groups/SidebarControlGroup.d.ts.map +1 -0
- package/types/groups/VisualizationGroup.d.ts +8 -0
- package/types/groups/VisualizationGroup.d.ts.map +1 -0
- package/types/groups/index.d.ts +11 -0
- package/types/groups/index.d.ts.map +1 -0
- package/types/hooks/useDropdown.d.ts +25 -0
- package/types/hooks/useDropdown.d.ts.map +1 -0
- package/types/index.d.ts +16 -0
- package/types/index.d.ts.map +1 -0
- package/types/types/common.d.ts +13 -0
- package/types/types/common.d.ts.map +1 -0
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/* Copyright © 2020 Splunk Inc.
|
|
2
|
+
SPLUNK CONFIDENTIAL – Use or disclosure of this material in whole or
|
|
3
|
+
in part without a valid written license from Splunk Inc. is PROHIBITED. */
|
|
4
|
+
import {
|
|
5
|
+
HistoryGroup_default
|
|
6
|
+
} from "../chunks/chunk-KJLRQLFH.js";
|
|
7
|
+
import "../chunks/chunk-SIFZZCPT.js";
|
|
8
|
+
import "../chunks/chunk-FSOMEJXM.js";
|
|
9
|
+
import "../chunks/chunk-A3BAVEME.js";
|
|
10
|
+
import "../chunks/chunk-JILFF3WY.js";
|
|
11
|
+
import "../chunks/chunk-734QWOYU.js";
|
|
12
|
+
import "../chunks/chunk-YPVMTO2L.js";
|
|
13
|
+
import "../chunks/chunk-OSDOIGWB.js";
|
|
14
|
+
import "../chunks/chunk-NCPTJ5RB.js";
|
|
15
|
+
import "../chunks/chunk-OTGQ73VF.js";
|
|
16
|
+
import "../chunks/chunk-J5CY2G3T.js";
|
|
17
|
+
import "../chunks/chunk-IQG5GSSX.js";
|
|
18
|
+
import "../chunks/chunk-GRIJP4FT.js";
|
|
19
|
+
import "../chunks/chunk-AWNWXBE4.js";
|
|
20
|
+
import "../chunks/chunk-QU7RW3YZ.js";
|
|
21
|
+
import "../chunks/chunk-B2LPQWLD.js";
|
|
22
|
+
import "../chunks/chunk-KEARZQAT.js";
|
|
23
|
+
import "../chunks/chunk-52TYQW2Y.js";
|
|
24
|
+
import "../chunks/chunk-BLXVTG4B.js";
|
|
25
|
+
import "../chunks/chunk-J2TRUM5N.js";
|
|
26
|
+
import "../chunks/chunk-IAEE4XLH.js";
|
|
27
|
+
import "../chunks/chunk-4OLWQA6K.js";
|
|
28
|
+
import "../chunks/chunk-ECEBJH6K.js";
|
|
29
|
+
import "../chunks/chunk-XUK4ZKWN.js";
|
|
30
|
+
import "../chunks/chunk-HXY4TSUO.js";
|
|
31
|
+
import "../chunks/chunk-NIACHGAA.js";
|
|
32
|
+
import "../chunks/chunk-OIQNUT2X.js";
|
|
33
|
+
import "../chunks/chunk-72YLBMXL.js";
|
|
34
|
+
import "../chunks/chunk-HIICL66H.js";
|
|
35
|
+
import "../chunks/chunk-X7ATHE2S.js";
|
|
36
|
+
import "../chunks/chunk-JLYV2H24.js";
|
|
37
|
+
import "../chunks/chunk-RODBPKID.js";
|
|
38
|
+
import "../chunks/chunk-G6N5OMKL.js";
|
|
39
|
+
import "../chunks/chunk-BSMCGXVQ.js";
|
|
40
|
+
import "../chunks/chunk-GWAXQYWY.js";
|
|
41
|
+
import "../chunks/chunk-YKT3CRI6.js";
|
|
42
|
+
import "../chunks/chunk-E2DI77AU.js";
|
|
43
|
+
import "../chunks/chunk-NJF2IOVV.js";
|
|
44
|
+
import "../chunks/chunk-IGGLU44N.js";
|
|
45
|
+
import "../chunks/chunk-NWVLNDCF.js";
|
|
46
|
+
import "../chunks/chunk-BRGYD3MR.js";
|
|
47
|
+
import "../chunks/chunk-VQIRZ53C.js";
|
|
48
|
+
export {
|
|
49
|
+
HistoryGroup_default as default
|
|
50
|
+
};
|
|
51
|
+
//# sourceMappingURL=HistoryGroup.js.map
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/* Copyright © 2020 Splunk Inc.
|
|
2
|
+
SPLUNK CONFIDENTIAL – Use or disclosure of this material in whole or
|
|
3
|
+
in part without a valid written license from Splunk Inc. is PROHIBITED. */
|
|
4
|
+
import {
|
|
5
|
+
SidebarControlGroup_default
|
|
6
|
+
} from "../chunks/chunk-WFAY6ABE.js";
|
|
7
|
+
import "../chunks/chunk-SIFZZCPT.js";
|
|
8
|
+
import "../chunks/chunk-FSOMEJXM.js";
|
|
9
|
+
import "../chunks/chunk-A3BAVEME.js";
|
|
10
|
+
import "../chunks/chunk-JILFF3WY.js";
|
|
11
|
+
import "../chunks/chunk-734QWOYU.js";
|
|
12
|
+
import "../chunks/chunk-YPVMTO2L.js";
|
|
13
|
+
import "../chunks/chunk-OSDOIGWB.js";
|
|
14
|
+
import "../chunks/chunk-NCPTJ5RB.js";
|
|
15
|
+
import "../chunks/chunk-OTGQ73VF.js";
|
|
16
|
+
import "../chunks/chunk-J5CY2G3T.js";
|
|
17
|
+
import "../chunks/chunk-IQG5GSSX.js";
|
|
18
|
+
import "../chunks/chunk-GRIJP4FT.js";
|
|
19
|
+
import "../chunks/chunk-AWNWXBE4.js";
|
|
20
|
+
import "../chunks/chunk-QU7RW3YZ.js";
|
|
21
|
+
import "../chunks/chunk-B2LPQWLD.js";
|
|
22
|
+
import "../chunks/chunk-KEARZQAT.js";
|
|
23
|
+
import "../chunks/chunk-52TYQW2Y.js";
|
|
24
|
+
import "../chunks/chunk-BLXVTG4B.js";
|
|
25
|
+
import "../chunks/chunk-J2TRUM5N.js";
|
|
26
|
+
import "../chunks/chunk-IAEE4XLH.js";
|
|
27
|
+
import "../chunks/chunk-4OLWQA6K.js";
|
|
28
|
+
import "../chunks/chunk-ECEBJH6K.js";
|
|
29
|
+
import "../chunks/chunk-XUK4ZKWN.js";
|
|
30
|
+
import "../chunks/chunk-HXY4TSUO.js";
|
|
31
|
+
import "../chunks/chunk-NIACHGAA.js";
|
|
32
|
+
import "../chunks/chunk-OIQNUT2X.js";
|
|
33
|
+
import "../chunks/chunk-72YLBMXL.js";
|
|
34
|
+
import "../chunks/chunk-HIICL66H.js";
|
|
35
|
+
import "../chunks/chunk-X7ATHE2S.js";
|
|
36
|
+
import "../chunks/chunk-JLYV2H24.js";
|
|
37
|
+
import "../chunks/chunk-RODBPKID.js";
|
|
38
|
+
import "../chunks/chunk-G6N5OMKL.js";
|
|
39
|
+
import "../chunks/chunk-BSMCGXVQ.js";
|
|
40
|
+
import "../chunks/chunk-GWAXQYWY.js";
|
|
41
|
+
import "../chunks/chunk-YKT3CRI6.js";
|
|
42
|
+
import "../chunks/chunk-E2DI77AU.js";
|
|
43
|
+
import "../chunks/chunk-NJF2IOVV.js";
|
|
44
|
+
import "../chunks/chunk-IGGLU44N.js";
|
|
45
|
+
import "../chunks/chunk-NWVLNDCF.js";
|
|
46
|
+
import "../chunks/chunk-BRGYD3MR.js";
|
|
47
|
+
import "../chunks/chunk-VQIRZ53C.js";
|
|
48
|
+
export {
|
|
49
|
+
SidebarControlGroup_default as default
|
|
50
|
+
};
|
|
51
|
+
//# sourceMappingURL=SidebarControlGroup.js.map
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/* Copyright © 2020 Splunk Inc.
|
|
2
|
+
SPLUNK CONFIDENTIAL – Use or disclosure of this material in whole or
|
|
3
|
+
in part without a valid written license from Splunk Inc. is PROHIBITED. */
|
|
4
|
+
import {
|
|
5
|
+
VisualizationGroup_default
|
|
6
|
+
} from "../chunks/chunk-X2HLBQUA.js";
|
|
7
|
+
import "../chunks/chunk-SIFZZCPT.js";
|
|
8
|
+
import "../chunks/chunk-FSOMEJXM.js";
|
|
9
|
+
import "../chunks/chunk-A3BAVEME.js";
|
|
10
|
+
import "../chunks/chunk-JILFF3WY.js";
|
|
11
|
+
import "../chunks/chunk-734QWOYU.js";
|
|
12
|
+
import "../chunks/chunk-YPVMTO2L.js";
|
|
13
|
+
import "../chunks/chunk-OSDOIGWB.js";
|
|
14
|
+
import "../chunks/chunk-NCPTJ5RB.js";
|
|
15
|
+
import "../chunks/chunk-OTGQ73VF.js";
|
|
16
|
+
import "../chunks/chunk-J5CY2G3T.js";
|
|
17
|
+
import "../chunks/chunk-IQG5GSSX.js";
|
|
18
|
+
import "../chunks/chunk-GRIJP4FT.js";
|
|
19
|
+
import "../chunks/chunk-AWNWXBE4.js";
|
|
20
|
+
import "../chunks/chunk-QU7RW3YZ.js";
|
|
21
|
+
import "../chunks/chunk-B2LPQWLD.js";
|
|
22
|
+
import "../chunks/chunk-KEARZQAT.js";
|
|
23
|
+
import "../chunks/chunk-52TYQW2Y.js";
|
|
24
|
+
import "../chunks/chunk-BLXVTG4B.js";
|
|
25
|
+
import "../chunks/chunk-J2TRUM5N.js";
|
|
26
|
+
import "../chunks/chunk-IAEE4XLH.js";
|
|
27
|
+
import "../chunks/chunk-4OLWQA6K.js";
|
|
28
|
+
import "../chunks/chunk-ECEBJH6K.js";
|
|
29
|
+
import "../chunks/chunk-XUK4ZKWN.js";
|
|
30
|
+
import "../chunks/chunk-HXY4TSUO.js";
|
|
31
|
+
import "../chunks/chunk-NIACHGAA.js";
|
|
32
|
+
import "../chunks/chunk-OIQNUT2X.js";
|
|
33
|
+
import "../chunks/chunk-72YLBMXL.js";
|
|
34
|
+
import "../chunks/chunk-HIICL66H.js";
|
|
35
|
+
import "../chunks/chunk-X7ATHE2S.js";
|
|
36
|
+
import "../chunks/chunk-JLYV2H24.js";
|
|
37
|
+
import "../chunks/chunk-RODBPKID.js";
|
|
38
|
+
import "../chunks/chunk-G6N5OMKL.js";
|
|
39
|
+
import "../chunks/chunk-BSMCGXVQ.js";
|
|
40
|
+
import "../chunks/chunk-GWAXQYWY.js";
|
|
41
|
+
import "../chunks/chunk-YKT3CRI6.js";
|
|
42
|
+
import "../chunks/chunk-E2DI77AU.js";
|
|
43
|
+
import "../chunks/chunk-NJF2IOVV.js";
|
|
44
|
+
import "../chunks/chunk-IGGLU44N.js";
|
|
45
|
+
import "../chunks/chunk-NWVLNDCF.js";
|
|
46
|
+
import "../chunks/chunk-BRGYD3MR.js";
|
|
47
|
+
import "../chunks/chunk-VQIRZ53C.js";
|
|
48
|
+
export {
|
|
49
|
+
VisualizationGroup_default as default
|
|
50
|
+
};
|
|
51
|
+
//# sourceMappingURL=VisualizationGroup.js.map
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
/* Copyright © 2020 Splunk Inc.
|
|
2
|
+
SPLUNK CONFIDENTIAL – Use or disclosure of this material in whole or
|
|
3
|
+
in part without a valid written license from Splunk Inc. is PROHIBITED. */
|
|
4
|
+
import "../chunks/chunk-UVD66GCR.js";
|
|
5
|
+
import {
|
|
6
|
+
HistoryGroup_default
|
|
7
|
+
} from "../chunks/chunk-KJLRQLFH.js";
|
|
8
|
+
import {
|
|
9
|
+
SidebarControlGroup_default
|
|
10
|
+
} from "../chunks/chunk-WFAY6ABE.js";
|
|
11
|
+
import {
|
|
12
|
+
VisualizationGroup_default
|
|
13
|
+
} from "../chunks/chunk-X2HLBQUA.js";
|
|
14
|
+
import {
|
|
15
|
+
ActionsGroup_default
|
|
16
|
+
} from "../chunks/chunk-UPZBDSS7.js";
|
|
17
|
+
import {
|
|
18
|
+
ControlGroup_default
|
|
19
|
+
} from "../chunks/chunk-L4ZPYLUY.js";
|
|
20
|
+
import {
|
|
21
|
+
EditingGroup_default
|
|
22
|
+
} from "../chunks/chunk-JXPIKVRZ.js";
|
|
23
|
+
import {
|
|
24
|
+
EditorGroup_default
|
|
25
|
+
} from "../chunks/chunk-ETJ5YPF3.js";
|
|
26
|
+
import {
|
|
27
|
+
EditorsControlGroup_default
|
|
28
|
+
} from "../chunks/chunk-FVGABOJM.js";
|
|
29
|
+
import "../chunks/chunk-SIFZZCPT.js";
|
|
30
|
+
import "../chunks/chunk-FSOMEJXM.js";
|
|
31
|
+
import "../chunks/chunk-A3BAVEME.js";
|
|
32
|
+
import "../chunks/chunk-JILFF3WY.js";
|
|
33
|
+
import "../chunks/chunk-734QWOYU.js";
|
|
34
|
+
import "../chunks/chunk-YPVMTO2L.js";
|
|
35
|
+
import "../chunks/chunk-OSDOIGWB.js";
|
|
36
|
+
import "../chunks/chunk-NCPTJ5RB.js";
|
|
37
|
+
import "../chunks/chunk-OTGQ73VF.js";
|
|
38
|
+
import "../chunks/chunk-J5CY2G3T.js";
|
|
39
|
+
import "../chunks/chunk-IQG5GSSX.js";
|
|
40
|
+
import "../chunks/chunk-GRIJP4FT.js";
|
|
41
|
+
import "../chunks/chunk-AWNWXBE4.js";
|
|
42
|
+
import "../chunks/chunk-QU7RW3YZ.js";
|
|
43
|
+
import "../chunks/chunk-B2LPQWLD.js";
|
|
44
|
+
import "../chunks/chunk-KEARZQAT.js";
|
|
45
|
+
import "../chunks/chunk-52TYQW2Y.js";
|
|
46
|
+
import "../chunks/chunk-BLXVTG4B.js";
|
|
47
|
+
import "../chunks/chunk-J2TRUM5N.js";
|
|
48
|
+
import "../chunks/chunk-IAEE4XLH.js";
|
|
49
|
+
import "../chunks/chunk-4OLWQA6K.js";
|
|
50
|
+
import "../chunks/chunk-ECEBJH6K.js";
|
|
51
|
+
import "../chunks/chunk-XUK4ZKWN.js";
|
|
52
|
+
import "../chunks/chunk-HXY4TSUO.js";
|
|
53
|
+
import "../chunks/chunk-NIACHGAA.js";
|
|
54
|
+
import "../chunks/chunk-OIQNUT2X.js";
|
|
55
|
+
import "../chunks/chunk-72YLBMXL.js";
|
|
56
|
+
import "../chunks/chunk-HIICL66H.js";
|
|
57
|
+
import "../chunks/chunk-X7ATHE2S.js";
|
|
58
|
+
import "../chunks/chunk-JLYV2H24.js";
|
|
59
|
+
import "../chunks/chunk-RODBPKID.js";
|
|
60
|
+
import "../chunks/chunk-G6N5OMKL.js";
|
|
61
|
+
import "../chunks/chunk-BSMCGXVQ.js";
|
|
62
|
+
import "../chunks/chunk-GWAXQYWY.js";
|
|
63
|
+
import "../chunks/chunk-YKT3CRI6.js";
|
|
64
|
+
import "../chunks/chunk-E2DI77AU.js";
|
|
65
|
+
import "../chunks/chunk-NJF2IOVV.js";
|
|
66
|
+
import "../chunks/chunk-IGGLU44N.js";
|
|
67
|
+
import "../chunks/chunk-NWVLNDCF.js";
|
|
68
|
+
import "../chunks/chunk-BRGYD3MR.js";
|
|
69
|
+
import "../chunks/chunk-VQIRZ53C.js";
|
|
70
|
+
export {
|
|
71
|
+
ActionsGroup_default as ActionsGroup,
|
|
72
|
+
ControlGroup_default as ControlGroup,
|
|
73
|
+
EditingGroup_default as EditingGroup,
|
|
74
|
+
EditorGroup_default as EditorGroup,
|
|
75
|
+
EditorsControlGroup_default as EditorsControlGroup,
|
|
76
|
+
HistoryGroup_default as HistoryGroup,
|
|
77
|
+
SidebarControlGroup_default as SidebarControlGroup,
|
|
78
|
+
VisualizationGroup_default as VisualizationGroup
|
|
79
|
+
};
|
|
80
|
+
//# sourceMappingURL=index.js.map
|
package/module/index.js
ADDED
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
/* Copyright © 2020 Splunk Inc.
|
|
2
|
+
SPLUNK CONFIDENTIAL – Use or disclosure of this material in whole or
|
|
3
|
+
in part without a valid written license from Splunk Inc. is PROHIBITED. */
|
|
4
|
+
import "./chunks/chunk-UVD66GCR.js";
|
|
5
|
+
import {
|
|
6
|
+
HistoryGroup_default
|
|
7
|
+
} from "./chunks/chunk-KJLRQLFH.js";
|
|
8
|
+
import {
|
|
9
|
+
SidebarControlGroup_default
|
|
10
|
+
} from "./chunks/chunk-WFAY6ABE.js";
|
|
11
|
+
import {
|
|
12
|
+
VisualizationGroup_default
|
|
13
|
+
} from "./chunks/chunk-X2HLBQUA.js";
|
|
14
|
+
import {
|
|
15
|
+
ActionsGroup_default
|
|
16
|
+
} from "./chunks/chunk-UPZBDSS7.js";
|
|
17
|
+
import {
|
|
18
|
+
ControlGroup_default
|
|
19
|
+
} from "./chunks/chunk-L4ZPYLUY.js";
|
|
20
|
+
import {
|
|
21
|
+
EditingGroup_default
|
|
22
|
+
} from "./chunks/chunk-JXPIKVRZ.js";
|
|
23
|
+
import {
|
|
24
|
+
EditorGroup_default
|
|
25
|
+
} from "./chunks/chunk-ETJ5YPF3.js";
|
|
26
|
+
import {
|
|
27
|
+
EditorsControlGroup_default
|
|
28
|
+
} from "./chunks/chunk-FVGABOJM.js";
|
|
29
|
+
import {
|
|
30
|
+
TokenManager,
|
|
31
|
+
Zoom
|
|
32
|
+
} from "./chunks/chunk-SIFZZCPT.js";
|
|
33
|
+
import {
|
|
34
|
+
Source_default
|
|
35
|
+
} from "./chunks/chunk-FSOMEJXM.js";
|
|
36
|
+
import {
|
|
37
|
+
Undo_default
|
|
38
|
+
} from "./chunks/chunk-A3BAVEME.js";
|
|
39
|
+
import {
|
|
40
|
+
IconGallery_default
|
|
41
|
+
} from "./chunks/chunk-JILFF3WY.js";
|
|
42
|
+
import {
|
|
43
|
+
Image_default
|
|
44
|
+
} from "./chunks/chunk-734QWOYU.js";
|
|
45
|
+
import {
|
|
46
|
+
ImageGallery_default
|
|
47
|
+
} from "./chunks/chunk-YPVMTO2L.js";
|
|
48
|
+
import "./chunks/chunk-OSDOIGWB.js";
|
|
49
|
+
import {
|
|
50
|
+
Inputs_default
|
|
51
|
+
} from "./chunks/chunk-NCPTJ5RB.js";
|
|
52
|
+
import {
|
|
53
|
+
Markdown_default
|
|
54
|
+
} from "./chunks/chunk-OTGQ73VF.js";
|
|
55
|
+
import {
|
|
56
|
+
ModeSwitch_default
|
|
57
|
+
} from "./chunks/chunk-J5CY2G3T.js";
|
|
58
|
+
import {
|
|
59
|
+
Redo_default
|
|
60
|
+
} from "./chunks/chunk-IQG5GSSX.js";
|
|
61
|
+
import {
|
|
62
|
+
Shapes_default
|
|
63
|
+
} from "./chunks/chunk-GRIJP4FT.js";
|
|
64
|
+
import {
|
|
65
|
+
Config_default
|
|
66
|
+
} from "./chunks/chunk-AWNWXBE4.js";
|
|
67
|
+
import {
|
|
68
|
+
ContentExport_default
|
|
69
|
+
} from "./chunks/chunk-QU7RW3YZ.js";
|
|
70
|
+
import {
|
|
71
|
+
Data_default
|
|
72
|
+
} from "./chunks/chunk-B2LPQWLD.js";
|
|
73
|
+
import {
|
|
74
|
+
EmptyVisualization_default
|
|
75
|
+
} from "./chunks/chunk-KEARZQAT.js";
|
|
76
|
+
import "./chunks/chunk-52TYQW2Y.js";
|
|
77
|
+
import {
|
|
78
|
+
ExportDashboardButton_default
|
|
79
|
+
} from "./chunks/chunk-BLXVTG4B.js";
|
|
80
|
+
import "./chunks/chunk-J2TRUM5N.js";
|
|
81
|
+
import {
|
|
82
|
+
Fullscreen_default
|
|
83
|
+
} from "./chunks/chunk-IAEE4XLH.js";
|
|
84
|
+
import {
|
|
85
|
+
GridLineSwitch_default
|
|
86
|
+
} from "./chunks/chunk-4OLWQA6K.js";
|
|
87
|
+
import {
|
|
88
|
+
HelpButton_default
|
|
89
|
+
} from "./chunks/chunk-ECEBJH6K.js";
|
|
90
|
+
import {
|
|
91
|
+
CollapsibleToolbar_default
|
|
92
|
+
} from "./chunks/chunk-2QMHWIV5.js";
|
|
93
|
+
import {
|
|
94
|
+
ItemGroup_default
|
|
95
|
+
} from "./chunks/chunk-XUK4ZKWN.js";
|
|
96
|
+
import "./chunks/chunk-HXY4TSUO.js";
|
|
97
|
+
import "./chunks/chunk-NIACHGAA.js";
|
|
98
|
+
import {
|
|
99
|
+
PopoverItemButton_default
|
|
100
|
+
} from "./chunks/chunk-OIQNUT2X.js";
|
|
101
|
+
import {
|
|
102
|
+
Toolbar_default
|
|
103
|
+
} from "./chunks/chunk-CFGNNO2V.js";
|
|
104
|
+
import {
|
|
105
|
+
Charts_default
|
|
106
|
+
} from "./chunks/chunk-72YLBMXL.js";
|
|
107
|
+
import "./chunks/chunk-HIICL66H.js";
|
|
108
|
+
import "./chunks/chunk-X7ATHE2S.js";
|
|
109
|
+
import "./chunks/chunk-JLYV2H24.js";
|
|
110
|
+
import "./chunks/chunk-RODBPKID.js";
|
|
111
|
+
import "./chunks/chunk-G6N5OMKL.js";
|
|
112
|
+
import "./chunks/chunk-BSMCGXVQ.js";
|
|
113
|
+
import {
|
|
114
|
+
IconButton_default
|
|
115
|
+
} from "./chunks/chunk-GWAXQYWY.js";
|
|
116
|
+
import "./chunks/chunk-YKT3CRI6.js";
|
|
117
|
+
import {
|
|
118
|
+
Item_default
|
|
119
|
+
} from "./chunks/chunk-E2DI77AU.js";
|
|
120
|
+
import "./chunks/chunk-NJF2IOVV.js";
|
|
121
|
+
import "./chunks/chunk-IGGLU44N.js";
|
|
122
|
+
import "./chunks/chunk-NWVLNDCF.js";
|
|
123
|
+
import "./chunks/chunk-BRGYD3MR.js";
|
|
124
|
+
import "./chunks/chunk-VQIRZ53C.js";
|
|
125
|
+
export {
|
|
126
|
+
ActionsGroup_default as ActionsGroup,
|
|
127
|
+
Charts_default as Charts,
|
|
128
|
+
CollapsibleToolbar_default as CollapsibleToolbar,
|
|
129
|
+
Config_default as Config,
|
|
130
|
+
ContentExport_default as ContentExport,
|
|
131
|
+
ControlGroup_default as ControlGroup,
|
|
132
|
+
Data_default as Data,
|
|
133
|
+
EditingGroup_default as EditingGroup,
|
|
134
|
+
EditorGroup_default as EditorGroup,
|
|
135
|
+
EditorsControlGroup_default as EditorsControlGroup,
|
|
136
|
+
EmptyVisualization_default as EmptyVisualization,
|
|
137
|
+
ExportDashboardButton_default as ExportDashboardButton,
|
|
138
|
+
Fullscreen_default as Fullscreen,
|
|
139
|
+
GridLineSwitch_default as GridLineSwitch,
|
|
140
|
+
HelpButton_default as HelpButton,
|
|
141
|
+
HistoryGroup_default as HistoryGroup,
|
|
142
|
+
IconButton_default as IconButton,
|
|
143
|
+
IconGallery_default as IconGallery,
|
|
144
|
+
Image_default as Image,
|
|
145
|
+
ImageGallery_default as ImageGallery,
|
|
146
|
+
Inputs_default as Inputs,
|
|
147
|
+
Item_default as Item,
|
|
148
|
+
ItemGroup_default as ItemGroup,
|
|
149
|
+
Markdown_default as Markdown,
|
|
150
|
+
ModeSwitch_default as ModeSwitch,
|
|
151
|
+
PopoverItemButton_default as PopoverItemButton,
|
|
152
|
+
Redo_default as Redo,
|
|
153
|
+
Shapes_default as Shapes,
|
|
154
|
+
SidebarControlGroup_default as SidebarControlGroup,
|
|
155
|
+
Source_default as Source,
|
|
156
|
+
TokenManager,
|
|
157
|
+
Toolbar_default as Toolbar,
|
|
158
|
+
Undo_default as Undo,
|
|
159
|
+
VisualizationGroup_default as VisualizationGroup,
|
|
160
|
+
Zoom,
|
|
161
|
+
Toolbar_default as default
|
|
162
|
+
};
|
|
163
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"type":"module"}
|
package/package.json
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@splunk/dashboard-toolbar",
|
|
3
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
4
|
+
"author": "Splunk",
|
|
5
|
+
"version": "29.0.0",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "udf-build",
|
|
8
|
+
"clean": "git ls-files --others -i --exclude-standard *.js *.map | xargs rm && rm -rf .storybook-bundle buttons groups types test-reports",
|
|
9
|
+
"dev": "udf-build --watch",
|
|
10
|
+
"storybook": "storybook dev -p 6006",
|
|
11
|
+
"build-storybook": "storybook build -o .storybook-bundle",
|
|
12
|
+
"test": "yarn run test:unit",
|
|
13
|
+
"test:ci": "yarn run test:unit:ci",
|
|
14
|
+
"test:unit": "jest src/*",
|
|
15
|
+
"test:unit:ci": "yarn test:unit --ci",
|
|
16
|
+
"test:unit:watch": "yarn run test:unit --watchAll",
|
|
17
|
+
"test:visual": "yarn build-storybook --quiet && NODE_OPTIONS='--openssl-legacy-provider' yarn loki test --reactUri file:./.storybook-bundle",
|
|
18
|
+
"test:visual:update": "../../tools/approveDiffs.sh",
|
|
19
|
+
"test:visual:ci": "yarn test:visual --requireReference --verboseRenderer"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@splunk/dashboard-context": "29.0.0",
|
|
23
|
+
"@splunk/dashboard-definition": "29.0.0",
|
|
24
|
+
"@splunk/dashboard-icons": "29.0.0",
|
|
25
|
+
"@splunk/dashboard-telemetry": "29.0.0",
|
|
26
|
+
"@splunk/dashboard-ui": "29.0.0",
|
|
27
|
+
"@splunk/dashboard-utils": "29.0.0",
|
|
28
|
+
"@splunk/react-icons": "^5.1.0",
|
|
29
|
+
"@splunk/react-toast-notifications": "^0.12.0",
|
|
30
|
+
"@splunk/react-ui": "^5.1.0",
|
|
31
|
+
"@splunk/themes": "^1.1.0",
|
|
32
|
+
"@splunk/ui-utils": "^1.10.0",
|
|
33
|
+
"lodash": "^4.17.21",
|
|
34
|
+
"rxjs": "^5.5.12"
|
|
35
|
+
},
|
|
36
|
+
"peerDependencies": {
|
|
37
|
+
"@splunk/dashboard-state": "^29.0.0",
|
|
38
|
+
"react": "^18.3.1",
|
|
39
|
+
"react-dom": "^18.3.1",
|
|
40
|
+
"styled-components": "^5.3.11"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@splunk/dashboard-build-tools": "29.0.0",
|
|
44
|
+
"@splunk/dashboard-state": "29.0.0",
|
|
45
|
+
"@splunk/dashboard-test-utils": "29.0.0",
|
|
46
|
+
"@splunk/dashboard-types": "29.0.0",
|
|
47
|
+
"@storybook/blocks": "^7.6.20",
|
|
48
|
+
"@storybook/react": "^7.6.20",
|
|
49
|
+
"@storybook/react-webpack5": "^7.6.20",
|
|
50
|
+
"@storybook/test": "^7.6.20",
|
|
51
|
+
"@testing-library/dom": "^10.4.0",
|
|
52
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
53
|
+
"@testing-library/react": "^16.2.0",
|
|
54
|
+
"@testing-library/user-event": "^14.6.1",
|
|
55
|
+
"@types/react": "^18.3.18",
|
|
56
|
+
"@udf/typescript-configs": "29.0.0",
|
|
57
|
+
"jest": "^29.7.0",
|
|
58
|
+
"loki": "^0.35.0",
|
|
59
|
+
"react": "^18.3.1",
|
|
60
|
+
"react-dom": "^18.3.1",
|
|
61
|
+
"storybook": "^7.6.20",
|
|
62
|
+
"styled-components": "^5.3.11",
|
|
63
|
+
"testing-library-selector": "^0.3.1",
|
|
64
|
+
"ts-jest": "^29.2.5",
|
|
65
|
+
"typescript": "5.8.3"
|
|
66
|
+
},
|
|
67
|
+
"types": "./types/index.d.ts"
|
|
68
|
+
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { CommonToolbarBaseProps } from './types/common';
|
|
3
|
+
export type CollapsibleToolbarProps = CommonToolbarBaseProps & {
|
|
4
|
+
initialExpanded?: boolean;
|
|
5
|
+
toolbarItems?: React.ReactElement[];
|
|
6
|
+
};
|
|
7
|
+
declare const CollapsibleToolbar: {
|
|
8
|
+
({ preset, dashboardApi, initialExpanded, mode, toolbarItems, }: CollapsibleToolbarProps): React.ReactElement | null;
|
|
9
|
+
displayName: string;
|
|
10
|
+
};
|
|
11
|
+
export default CollapsibleToolbar;
|
|
12
|
+
//# sourceMappingURL=CollapsibleToolbar.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CollapsibleToolbar.d.ts","sourceRoot":"","sources":["../src/CollapsibleToolbar.tsx"],"names":[],"mappings":"AAAA,OAAO,KAMN,MAAM,OAAO,CAAC;AAYf,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,gBAAgB,CAAC;AAwE7D,MAAM,MAAM,uBAAuB,GAAG,sBAAsB,GAAG;IAC3D,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,YAAY,CAAC,EAAE,KAAK,CAAC,YAAY,EAAE,CAAC;CACvC,CAAC;AAIF,QAAA,MAAM,kBAAkB;qEAMrB,uBAAuB,GAAG,KAAK,CAAC,YAAY,GAAG,IAAI;;CA2DrD,CAAC;AAIF,eAAe,kBAAkB,CAAC"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type SVG from '@splunk/react-icons/SVG';
|
|
3
|
+
import { type ButtonPropsBase } from '@splunk/react-ui/Button';
|
|
4
|
+
import type { ToolbarButtonProps } from './types/common';
|
|
5
|
+
export declare const iconSize = 24;
|
|
6
|
+
export declare const menuIconSize = 20;
|
|
7
|
+
interface PrepareIconProps extends React.ComponentProps<typeof SVG> {
|
|
8
|
+
Icon: React.ComponentType<React.ComponentProps<typeof SVG>>;
|
|
9
|
+
screenReaderContent?: string;
|
|
10
|
+
isMenu?: boolean;
|
|
11
|
+
variant?: 'filled' | 'outline' | 'none';
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* Button adds a bunch of padding when there's any child elements even if they don't display anything (screenReaderContent)
|
|
15
|
+
* This bundles the primary icon, a menu caret and screenReaderContent as an icon when needed.
|
|
16
|
+
* Additionally accepts any properties of any react-icons element to be applied to primary icon
|
|
17
|
+
* @param {Object} arg
|
|
18
|
+
* @param {React.ElementType} arg.Icon The primary icon
|
|
19
|
+
* @param {boolean} [arg.isMenu=false] Display a menu caret
|
|
20
|
+
* @param {string} [arg.screenReaderContent] A label for the icon
|
|
21
|
+
* @param {string} [arg.variant] Fill the icon, or not
|
|
22
|
+
* @returns {JSX.Element}
|
|
23
|
+
*/
|
|
24
|
+
export declare const prepareIcon: ({ Icon, screenReaderContent, isMenu, ...props }: PrepareIconProps) => React.JSX.Element;
|
|
25
|
+
export interface IconButtonProps extends ToolbarButtonProps {
|
|
26
|
+
icon?: JSX.Element;
|
|
27
|
+
onClick?: ButtonPropsBase['onClick'];
|
|
28
|
+
label?: string;
|
|
29
|
+
buttonRef?: React.RefObject<HTMLButtonElement>;
|
|
30
|
+
testLabel?: string;
|
|
31
|
+
disabled?: boolean;
|
|
32
|
+
}
|
|
33
|
+
declare const IconButton: ({ icon, buttonRef, disabled, onClick, label, testLabel, ...rest }: IconButtonProps) => JSX.Element;
|
|
34
|
+
export default IconButton;
|
|
35
|
+
//# sourceMappingURL=IconButton.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconButton.d.ts","sourceRoot":"","sources":["../src/IconButton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,KAAK,GAAG,MAAM,yBAAyB,CAAC;AAG/C,OAAe,EAAE,KAAK,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAGvE,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AAMzD,eAAO,MAAM,QAAQ,KAAK,CAAC;AAC3B,eAAO,MAAM,YAAY,KAAK,CAAC;AAE/B,UAAU,gBAAiB,SAAQ,KAAK,CAAC,cAAc,CAAC,OAAO,GAAG,CAAC;IAC/D,IAAI,EAAE,KAAK,CAAC,aAAa,CAAC,KAAK,CAAC,cAAc,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC;IAC5D,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,OAAO,CAAC,EAAE,QAAQ,GAAG,SAAS,GAAG,MAAM,CAAC;CAC3C;AAED;;;;;;;;;;GAUG;AACH,eAAO,MAAM,WAAW,GAAI,iDAKzB,gBAAgB,sBAalB,CAAC;AAEF,MAAM,WAAW,eAAgB,SAAQ,kBAAkB;IACvD,IAAI,CAAC,EAAE,GAAG,CAAC,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,eAAe,CAAC,SAAS,CAAC,CAAC;IACrC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,iBAAiB,CAAC,CAAC;IAC/C,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB;AAED,QAAA,MAAM,UAAU,GAAI,mEAQjB,eAAe,KAAG,GAAG,CAAC,OAexB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
package/types/Item.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Item.d.ts","sourceRoot":"","sources":["../src/Item.tsx"],"names":[],"mappings":";AAEA,wBAA4B"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { ButtonClickHandler } from '@splunk/react-ui/Button';
|
|
3
|
+
import type { ToolbarButtonProps } from './types/common';
|
|
4
|
+
export type ItemGroupProps = {
|
|
5
|
+
borders?: boolean;
|
|
6
|
+
children?: React.ReactNode;
|
|
7
|
+
align?: 'left' | 'right';
|
|
8
|
+
sourceButtonOnClick?: ButtonClickHandler;
|
|
9
|
+
gap?: number | string;
|
|
10
|
+
[key: string]: unknown;
|
|
11
|
+
} & ToolbarButtonProps;
|
|
12
|
+
declare const ItemGroup: ({ children, borders, gap, ...rest }: ItemGroupProps) => React.JSX.Element;
|
|
13
|
+
export default ItemGroup;
|
|
14
|
+
//# sourceMappingURL=ItemGroup.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ItemGroup.d.ts","sourceRoot":"","sources":["../src/ItemGroup.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAElE,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AAWzD,MAAM,MAAM,cAAc,GAAG;IACzB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IACzB,mBAAmB,CAAC,EAAE,kBAAkB,CAAC;IACzC,GAAG,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACtB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CAC1B,GAAG,kBAAkB,CAAC;AAEvB,QAAA,MAAM,SAAS,GAAI,qCAKhB,cAAc,sBAYhB,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { ToolbarButtonProps } from './types/common';
|
|
3
|
+
export interface PopoverItemButtonProps extends ToolbarButtonProps {
|
|
4
|
+
icon: JSX.Element;
|
|
5
|
+
label?: string;
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* Custom button component for popovers created for specific styling - aligning text to the left
|
|
9
|
+
*/
|
|
10
|
+
declare const PopoverItemButton: ({ icon, label }: PopoverItemButtonProps) => React.JSX.Element;
|
|
11
|
+
export default PopoverItemButton;
|
|
12
|
+
//# sourceMappingURL=PopoverItemButton.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PopoverItemButton.d.ts","sourceRoot":"","sources":["../src/PopoverItemButton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AAqBzD,MAAM,WAAW,sBAAuB,SAAQ,kBAAkB;IAC9D,IAAI,EAAE,GAAG,CAAC,OAAO,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;CAClB;AAED;;GAEG;AACH,QAAA,MAAM,iBAAiB,GAAI,iBAAiB,sBAAsB,sBAKjE,CAAC;AAEF,eAAe,iBAAiB,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { ToolbarButtonProps } from './types/common';
|
|
3
|
+
export type ToolbarProps = ToolbarButtonProps & {
|
|
4
|
+
toolbarItems: React.ReactElement[];
|
|
5
|
+
};
|
|
6
|
+
/**
|
|
7
|
+
* Dashboard Toolbar
|
|
8
|
+
*/
|
|
9
|
+
declare const Toolbar: {
|
|
10
|
+
({ activePanel, dashboardApi, mode, preset, toolbarItems, }: ToolbarProps): React.JSX.Element | null;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default Toolbar;
|
|
14
|
+
//# sourceMappingURL=Toolbar.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Toolbar.d.ts","sourceRoot":"","sources":["../src/Toolbar.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkD,MAAM,OAAO,CAAC;AAKvE,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AA8BzD,MAAM,MAAM,YAAY,GAAG,kBAAkB,GAAG;IAC5C,YAAY,EAAE,KAAK,CAAC,YAAY,EAAE,CAAC;CACtC,CAAC;AAEF;;GAEG;AACH,QAAA,MAAM,OAAO;iEAMV,YAAY;;CAoFd,CAAC;AAGF,eAAe,OAAO,CAAC"}
|