@finsemble/finsemble-ui 8.0.2 → 8.1.0-beta.2
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/FEA.d.ts +48 -3
- package/FEA.d.ts.map +1 -1
- package/FEA.js.map +1 -1
- package/clients/Interop/FinsembleDesktopAgent.js +1 -1
- package/clients/Startup/FSBLDesktop.d.ts +2 -14
- package/clients/Startup/FSBLDesktop.d.ts.map +1 -1
- package/clients/Startup/FSBLDesktop.js +4 -21
- package/clients/Startup/FSBLDesktop.js.map +1 -1
- package/clients/Startup/types.d.ts +17 -0
- package/clients/Startup/types.d.ts.map +1 -1
- package/clients/Startup/windowStartup.d.ts.map +1 -1
- package/clients/Startup/windowStartup.js +16 -14
- package/clients/Startup/windowStartup.js.map +1 -1
- package/clients/routerClient.d.ts +2 -169
- package/clients/routerClient.d.ts.map +1 -1
- package/clients/routerClient.js +4 -7
- package/clients/routerClient.js.map +1 -1
- package/common/Desktop.d.ts +8 -0
- package/common/Desktop.d.ts.map +1 -1
- package/common/Desktop.js +23 -0
- package/common/Desktop.js.map +1 -1
- package/common/FinsembleWindow.d.ts +1 -2
- package/common/FinsembleWindow.d.ts.map +1 -1
- package/common/FinsembleWindow.js +1 -1
- package/common/FinsembleWindow.js.map +1 -1
- package/common/Monitors.d.ts +6 -0
- package/common/Monitors.d.ts.map +1 -1
- package/common/Monitors.js +22 -0
- package/common/Monitors.js.map +1 -1
- package/common/system.d.ts +1 -1
- package/common/system.d.ts.map +1 -1
- package/main.d.ts +29 -29
- package/package.json +44 -44
- package/platform/services/Interop/types.d.ts +1 -0
- package/platform/services/Interop/types.d.ts.map +1 -1
- package/platform/services/Interop/types.js.map +1 -1
- package/platform/services/router/routerTransport.d.ts.map +1 -1
- package/platform/services/router/routerTransport.js +5 -7
- package/platform/services/router/routerTransport.js.map +1 -1
- package/platform/services/router/types.d.ts +214 -0
- package/platform/services/router/types.d.ts.map +1 -0
- package/platform/services/router/types.js +2 -0
- package/platform/services/router/types.js.map +1 -0
- package/platform/services/types.d.ts +1 -0
- package/platform/services/types.d.ts.map +1 -1
- package/platform/services/types.js +1 -0
- package/platform/services/types.js.map +1 -1
- package/platform/services/window/Common/Pools/ObjectPool.d.ts +11 -0
- package/platform/services/window/Common/Pools/ObjectPool.d.ts.map +1 -0
- package/platform/services/window/Common/Pools/ObjectPool.js +43 -0
- package/platform/services/window/Common/Pools/ObjectPool.js.map +1 -0
- package/platform/services/window/Common/Pools/PoolSingletons.d.ts +10 -0
- package/platform/services/window/Common/Pools/PoolSingletons.d.ts.map +1 -0
- package/platform/services/window/Common/Pools/PoolSingletons.js +10 -0
- package/platform/services/window/Common/Pools/PoolSingletons.js.map +1 -0
- package/platform/services/window/Common/Pools/WindowPool.d.ts +7 -0
- package/platform/services/window/Common/Pools/WindowPool.d.ts.map +1 -0
- package/platform/services/window/Common/Pools/WindowPool.js +16 -0
- package/platform/services/window/Common/Pools/WindowPool.js.map +1 -0
- package/platform/services/window/Docking/boxMath.d.ts +144 -0
- package/platform/services/window/Docking/boxMath.d.ts.map +1 -0
- package/platform/services/window/Docking/boxMath.js +511 -0
- package/platform/services/window/Docking/boxMath.js.map +1 -0
- package/platform/services/window/Docking/constants.d.ts +29 -0
- package/platform/services/window/Docking/constants.d.ts.map +1 -0
- package/platform/services/window/Docking/constants.js +29 -0
- package/platform/services/window/Docking/constants.js.map +1 -0
- package/platform/services/window/Docking/dockableBox.d.ts +117 -0
- package/platform/services/window/Docking/dockableBox.d.ts.map +1 -0
- package/platform/services/window/Docking/dockableBox.js +525 -0
- package/platform/services/window/Docking/dockableBox.js.map +1 -0
- package/platform/services/window/Docking/dockableGroup.d.ts +252 -0
- package/platform/services/window/Docking/dockableGroup.d.ts.map +1 -0
- package/platform/services/window/Docking/dockableGroup.js +1054 -0
- package/platform/services/window/Docking/dockableGroup.js.map +1 -0
- package/platform/services/window/Docking/dockableMonitor.d.ts +99 -0
- package/platform/services/window/Docking/dockableMonitor.d.ts.map +1 -0
- package/platform/services/window/Docking/dockableMonitor.js +427 -0
- package/platform/services/window/Docking/dockableMonitor.js.map +1 -0
- package/platform/services/window/Docking/dockableWindow.d.ts +272 -0
- package/platform/services/window/Docking/dockableWindow.d.ts.map +1 -0
- package/platform/services/window/Docking/dockableWindow.js +1239 -0
- package/platform/services/window/Docking/dockableWindow.js.map +1 -0
- package/platform/services/window/Docking/dockingCalculator.d.ts +749 -0
- package/platform/services/window/Docking/dockingCalculator.d.ts.map +1 -0
- package/platform/services/window/Docking/dockingCalculator.js +3473 -0
- package/platform/services/window/Docking/dockingCalculator.js.map +1 -0
- package/platform/services/window/Docking/dockingMain.d.ts +349 -0
- package/platform/services/window/Docking/dockingMain.d.ts.map +1 -0
- package/platform/services/window/Docking/dockingMain.js +2584 -0
- package/platform/services/window/Docking/dockingMain.js.map +1 -0
- package/platform/services/window/Docking/maskBoundsCalculator.d.ts +28 -0
- package/platform/services/window/Docking/maskBoundsCalculator.d.ts.map +1 -0
- package/platform/services/window/Docking/maskBoundsCalculator.js +67 -0
- package/platform/services/window/Docking/maskBoundsCalculator.js.map +1 -0
- package/platform/services/window/Docking/monitorUpdateHandler.d.ts +32 -0
- package/platform/services/window/Docking/monitorUpdateHandler.d.ts.map +1 -0
- package/platform/services/window/Docking/monitorUpdateHandler.js +117 -0
- package/platform/services/window/Docking/monitorUpdateHandler.js.map +1 -0
- package/platform/services/window/Docking/types.d.ts +334 -0
- package/platform/services/window/Docking/types.d.ts.map +1 -0
- package/platform/services/window/Docking/types.js +12 -0
- package/platform/services/window/Docking/types.js.map +1 -0
- package/platform/services/window/MultiWindowFeatures/autoArrange.d.ts +90 -0
- package/platform/services/window/MultiWindowFeatures/autoArrange.d.ts.map +1 -0
- package/platform/services/window/MultiWindowFeatures/autoArrange.js +510 -0
- package/platform/services/window/MultiWindowFeatures/autoArrange.js.map +1 -0
- package/platform/services/window/StackedWindowManager/stackedWindowManager.d.ts +411 -0
- package/platform/services/window/StackedWindowManager/stackedWindowManager.d.ts.map +1 -0
- package/platform/services/window/StackedWindowManager/stackedWindowManager.js +1641 -0
- package/platform/services/window/StackedWindowManager/stackedWindowManager.js.map +1 -0
- package/platform/services/window/WindowAbstractions/FinsembleWindowInternal.d.ts +9 -0
- package/platform/services/window/WindowAbstractions/FinsembleWindowInternal.d.ts.map +1 -0
- package/platform/services/window/WindowAbstractions/FinsembleWindowInternal.js +23 -0
- package/platform/services/window/WindowAbstractions/FinsembleWindowInternal.js.map +1 -0
- package/platform/services/window/WindowAbstractions/WebWindowWrapper.d.ts +227 -0
- package/platform/services/window/WindowAbstractions/WebWindowWrapper.d.ts.map +1 -0
- package/platform/services/window/WindowAbstractions/WebWindowWrapper.js +1168 -0
- package/platform/services/window/WindowAbstractions/WebWindowWrapper.js.map +1 -0
- package/platform/services/window/WindowAbstractions/externalWindowWrapper.d.ts +121 -0
- package/platform/services/window/WindowAbstractions/externalWindowWrapper.d.ts.map +1 -0
- package/platform/services/window/WindowAbstractions/externalWindowWrapper.js +591 -0
- package/platform/services/window/WindowAbstractions/externalWindowWrapper.js.map +1 -0
- package/platform/services/window/WindowAbstractions/stackedWindowWrapper.d.ts +194 -0
- package/platform/services/window/WindowAbstractions/stackedWindowWrapper.d.ts.map +1 -0
- package/platform/services/window/WindowAbstractions/stackedWindowWrapper.js +680 -0
- package/platform/services/window/WindowAbstractions/stackedWindowWrapper.js.map +1 -0
- package/platform/services/window/types.d.ts +13 -13
- package/platform/services/window/windowGroup.d.ts +86 -0
- package/platform/services/window/windowGroup.d.ts.map +1 -0
- package/platform/services/window/windowGroup.js +323 -0
- package/platform/services/window/windowGroup.js.map +1 -0
- package/platform/services/workspace/windowStorageManager.d.ts +178 -0
- package/platform/services/workspace/windowStorageManager.d.ts.map +1 -0
- package/platform/services/workspace/windowStorageManager.js +195 -0
- package/platform/services/workspace/windowStorageManager.js.map +1 -0
- package/platform/services/workspace/workspaceAdminAPI.d.ts +1 -1
- package/platform/services/workspace/workspaceAdminAPI.d.ts.map +1 -1
- package/react/actions/smartDesktopDesignerActions.d.ts +2 -0
- package/react/actions/smartDesktopDesignerActions.d.ts.map +1 -1
- package/react/actions/smartDesktopDesignerActions.js +1 -0
- package/react/actions/smartDesktopDesignerActions.js.map +1 -1
- package/react/assets/css/download.css +119 -0
- package/react/assets/css/userPreferences.css +50 -0
- package/react/assets/css/windowTitleBar.css +2 -1
- package/react/assets/icons/cancel.svg +15 -0
- package/react/assets/icons/gear.svg +9 -0
- package/react/assets/icons/pause.svg +15 -0
- package/react/assets/icons/resume.svg +17 -0
- package/react/assets/img/Finsemble-installation.gif +0 -0
- package/react/components/common/Button.d.ts +1 -0
- package/react/components/common/Button.d.ts.map +1 -1
- package/react/components/common/Button.js.map +1 -1
- package/react/components/common/ButtonIcon.d.ts.map +1 -1
- package/react/components/common/ButtonIcon.js +3 -2
- package/react/components/common/ButtonIcon.js.map +1 -1
- package/react/components/common/FinsembleIcon.d.ts +1 -1
- package/react/components/common/FinsembleIcon.d.ts.map +1 -1
- package/react/components/common/FinsembleIcon.js +8 -0
- package/react/components/common/FinsembleIcon.js.map +1 -1
- package/react/components/common/css/button.css +8 -2
- package/react/components/downloadManager/DownloadItem.d.ts +16 -0
- package/react/components/downloadManager/DownloadItem.d.ts.map +1 -0
- package/react/components/downloadManager/DownloadItem.js +74 -0
- package/react/components/downloadManager/DownloadItem.js.map +1 -0
- package/react/components/downloadManager/DownloadManager.d.ts +10 -0
- package/react/components/downloadManager/DownloadManager.d.ts.map +1 -0
- package/react/components/downloadManager/DownloadManager.js +42 -0
- package/react/components/downloadManager/DownloadManager.js.map +1 -0
- package/react/components/downloadManager/index.d.ts +2 -0
- package/react/components/downloadManager/index.d.ts.map +1 -0
- package/react/components/downloadManager/index.js +2 -0
- package/react/components/downloadManager/index.js.map +1 -0
- package/react/components/fdc3Resolver/ResolverDialog.css +1 -1
- package/react/components/index.d.ts +1 -0
- package/react/components/index.d.ts.map +1 -1
- package/react/components/index.js +1 -0
- package/react/components/index.js.map +1 -1
- package/react/components/processMonitor/ProcessMonitor.d.ts.map +1 -1
- package/react/components/processMonitor/ProcessMonitor.js +56 -75
- package/react/components/processMonitor/ProcessMonitor.js.map +1 -1
- package/react/components/processMonitor/components/ChildWindow.d.ts +5 -7
- package/react/components/processMonitor/components/ChildWindow.d.ts.map +1 -1
- package/react/components/processMonitor/components/ChildWindow.js +30 -33
- package/react/components/processMonitor/components/ChildWindow.js.map +1 -1
- package/react/components/processMonitor/components/ListHeader.d.ts +4 -16
- package/react/components/processMonitor/components/ListHeader.d.ts.map +1 -1
- package/react/components/processMonitor/components/ListHeader.js +30 -39
- package/react/components/processMonitor/components/ListHeader.js.map +1 -1
- package/react/components/processMonitor/components/ProcessStatistics.d.ts +3 -6
- package/react/components/processMonitor/components/ProcessStatistics.d.ts.map +1 -1
- package/react/components/processMonitor/components/ProcessStatistics.js +18 -23
- package/react/components/processMonitor/components/ProcessStatistics.js.map +1 -1
- package/react/components/sdd/Dashboard.css +21 -0
- package/react/components/sdd/css/export.css +33 -3
- package/react/components/sdd/css/nav.css +1 -1
- package/react/components/shared/DefaultDropdownButton.js +1 -1
- package/react/components/shared/DefaultDropdownButton.js.map +1 -1
- package/react/components/toolbar/DownloadButton.d.ts +8 -0
- package/react/components/toolbar/DownloadButton.d.ts.map +1 -0
- package/react/components/toolbar/DownloadButton.js +30 -0
- package/react/components/toolbar/DownloadButton.js.map +1 -0
- package/react/components/toolbar/advancedAppLauncher/stores/StoreActions.d.ts.map +1 -1
- package/react/components/toolbar/advancedAppLauncher/stores/StoreActions.js +6 -0
- package/react/components/toolbar/advancedAppLauncher/stores/StoreActions.js.map +1 -1
- package/react/components/toolbar/appLauncher/AppLauncherMenu.js +1 -1
- package/react/components/toolbar/appLauncher/AppLauncherMenu.js.map +1 -1
- package/react/components/toolbar/dashbar/Dashbar.d.ts.map +1 -1
- package/react/components/toolbar/dashbar/Dashbar.js +72 -47
- package/react/components/toolbar/dashbar/Dashbar.js.map +1 -1
- package/react/components/toolbar/dashbar/DashbarItem.d.ts +1 -1
- package/react/components/toolbar/dashbar/DashbarItem.d.ts.map +1 -1
- package/react/components/toolbar/dashbar/DashbarItem.js +25 -4
- package/react/components/toolbar/dashbar/DashbarItem.js.map +1 -1
- package/react/components/toolbar/index.d.ts +1 -0
- package/react/components/toolbar/index.d.ts.map +1 -1
- package/react/components/toolbar/index.js +1 -0
- package/react/components/toolbar/index.js.map +1 -1
- package/react/components/toolbar/workspaceManagementMenu/components/WorkspaceActions.d.ts +3 -4
- package/react/components/toolbar/workspaceManagementMenu/components/WorkspaceActions.d.ts.map +1 -1
- package/react/components/toolbar/workspaceManagementMenu/components/WorkspaceActions.js +3 -10
- package/react/components/toolbar/workspaceManagementMenu/components/WorkspaceActions.js.map +1 -1
- package/react/components/userPreferences/components/content/General.d.ts.map +1 -1
- package/react/components/userPreferences/components/content/General.js +3 -0
- package/react/components/userPreferences/components/content/General.js.map +1 -1
- package/react/components/userPreferences/components/general/DownloadPreferences.d.ts +10 -0
- package/react/components/userPreferences/components/general/DownloadPreferences.d.ts.map +1 -0
- package/react/components/userPreferences/components/general/DownloadPreferences.js +111 -0
- package/react/components/userPreferences/components/general/DownloadPreferences.js.map +1 -0
- package/react/components/userPreferences/stores/UserPreferencesStore.d.ts +6 -0
- package/react/components/userPreferences/stores/UserPreferencesStore.d.ts.map +1 -1
- package/react/components/userPreferences/stores/UserPreferencesStore.js +11 -0
- package/react/components/userPreferences/stores/UserPreferencesStore.js.map +1 -1
- package/react/components/windowTitleBar/components/right/CloseButton.d.ts +2 -26
- package/react/components/windowTitleBar/components/right/CloseButton.d.ts.map +1 -1
- package/react/components/windowTitleBar/components/right/CloseButton.js +8 -25
- package/react/components/windowTitleBar/components/right/CloseButton.js.map +1 -1
- package/react/hooks/useDownloadItems.d.ts +24 -0
- package/react/hooks/useDownloadItems.d.ts.map +1 -0
- package/react/hooks/useDownloadItems.js +68 -0
- package/react/hooks/useDownloadItems.js.map +1 -0
- package/react/hooks/useNotifications.d.ts +1 -1
- package/react/reducers/rootReducer.d.ts +4 -0
- package/react/reducers/rootReducer.d.ts.map +1 -1
- package/react/reducers/smartDesktopDesignerReducer.d.ts.map +1 -1
- package/react/reducers/smartDesktopDesignerReducer.js +4 -0
- package/react/reducers/smartDesktopDesignerReducer.js.map +1 -1
- package/react/store.d.ts +8 -0
- package/react/store.d.ts.map +1 -1
- package/react/types/dashbarTypes.d.ts +3 -1
- package/react/types/dashbarTypes.d.ts.map +1 -1
- package/react/types/smartDesktopDesignerTypes.d.ts +2 -0
- package/react/types/smartDesktopDesignerTypes.d.ts.map +1 -1
- package/react/types/smartDesktopDesignerTypes.js.map +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 12 12" style="enable-background:new 0 0 12 12;" xml:space="preserve" fill-rule="evenodd" clip-rule="evenodd">
|
|
5
|
+
<g>
|
|
6
|
+
<g>
|
|
7
|
+
<path class="st0" d="M6,1c2.8,0,5,2.2,5,5s-2.2,5-5,5S1,8.8,1,6S3.2,1,6,1z M6,1.9c2.3,0,4.1,1.8,4.1,4.1c0,2.3-1.8,4.1-4.1,4.1
|
|
8
|
+
c-2.3,0-4.1-1.8-4.1-4.1C1.9,3.7,3.7,1.9,6,1.9z"/>
|
|
9
|
+
</g>
|
|
10
|
+
<path class="st0" d="M4.3,7.7L4.3,7.7C4.2,7.5,4.2,7.2,4.3,7L7,4.3c0.2-0.2,0.5-0.2,0.7,0l0,0c0.2,0.2,0.2,0.5,0,0.7L5,7.7
|
|
11
|
+
C4.8,7.8,4.5,7.8,4.3,7.7z"/>
|
|
12
|
+
<path class="st0" d="M7.7,7.7L7.7,7.7C7.5,7.8,7.2,7.8,7,7.7L4.3,5c-0.2-0.2-0.2-0.5,0-0.7l0,0c0.2-0.2,0.5-0.2,0.7,0L7.7,7
|
|
13
|
+
C7.8,7.2,7.8,7.5,7.7,7.7z"/>
|
|
14
|
+
</g>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>Gear Icon</title>
|
|
4
|
+
<g id="SDD-2.0" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="Downloads-manager-window" transform="translate(-368.000000, -46.000000)" fill="#AAAAAA" fill-rule="nonzero">
|
|
6
|
+
<path d="M383.384,52.7660668 L382.645714,52.7660668 C382.307429,52.7660668 381.947429,52.5021422 381.848,52.1788061 L381.424,51.1482434 C381.265143,50.8511854 381.330286,50.4101685 381.568,50.1713796 L382.092571,49.6481005 C382.332571,49.4081691 382.332571,49.0162811 382.092571,48.7774921 L381.220571,47.9080263 C380.982857,47.6692374 380.589714,47.6692374 380.350857,47.9080263 L379.825143,48.4313053 C379.587429,48.6700943 379.145143,48.7352185 378.848,48.5752642 L377.819429,48.1513853 C377.496,48.0508426 377.232,47.692088 377.232,47.3538989 L377.232,46.6158241 C377.232,46.277635 376.954286,46 376.614857,46 L375.384,46 C375.045714,46 374.768,46.277635 374.768,46.6158241 L374.768,47.3538989 C374.768,47.692088 374.504,48.0519851 374.180571,48.1513853 L373.150857,48.5752642 C372.851429,48.7352185 372.412571,48.6712368 372.172571,48.4313053 L371.648,47.9080263 C371.408,47.6692374 371.018286,47.6692374 370.778286,47.9080263 L369.908571,48.7774921 C369.667429,49.0162811 369.667429,49.4081691 369.908571,49.6481005 L370.430857,50.1725221 C370.670857,50.4113111 370.737143,50.8523279 370.576,51.1493859 L370.153143,52.1810911 C370.051429,52.5044273 369.693714,52.7683519 369.355429,52.7683519 L368.616,52.7683519 C368.277714,52.7683519 368,53.0459869 368,53.3841759 L368,54.6146815 C368,54.9528706 368.277714,55.2305056 368.616,55.2305056 L369.355429,55.2305056 C369.693714,55.2316481 370.052571,55.4967152 370.152,55.8189089 L370.576,56.8494716 C370.737143,57.1476721 370.670857,57.5886889 370.430857,57.8274779 L369.907429,58.3507569 C369.667429,58.5906884 369.667429,58.9814339 369.907429,59.2213653 L370.778286,60.0919737 C371.018286,60.3319052 371.409143,60.3319052 371.648,60.0919737 L372.172571,59.5686947 C372.411429,59.3299057 372.851429,59.2647815 373.147429,59.4258783 L374.180571,59.8508997 C374.502857,59.9514424 374.768,60.3101971 374.768,60.6483862 L374.768,61.3853185 C374.768,61.7235076 375.045714,62 375.384,62 L376.614857,62 C376.954286,62 377.232,61.722365 377.232,61.3853185 L377.232,60.6483862 C377.232,60.3101971 377.497143,59.9514424 377.819429,59.8508997 L378.851429,59.4258783 C379.148571,59.2647815 379.589714,59.3299057 379.829714,59.5686947 L380.352,60.0919737 C380.590857,60.3319052 380.982857,60.3319052 381.221714,60.0919737 L382.093714,59.2213653 C382.333714,58.9814339 382.333714,58.5895458 382.093714,58.3507569 L381.569143,57.8274779 C381.331429,57.5898315 381.266286,57.1476721 381.425143,56.8494716 L381.849143,55.8189089 C381.949714,55.4967152 382.310857,55.2316481 382.646857,55.2316481 L383.385143,55.2316481 C383.723429,55.2316481 384,54.9551557 384,54.6169666 L384,53.3853185 C383.998857,53.0425593 383.723429,52.7660668 383.384,52.7660668 Z M379,54 C379,55.6571322 377.656517,57 376,57 C374.342369,57 373,55.6571322 373,54 C373,52.3428678 374.342369,51 376,51 C377.656517,51 379,52.3428678 379,54 Z" id="Gear-Icon"></path>
|
|
7
|
+
</g>
|
|
8
|
+
</g>
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 12 12" style="enable-background:new 0 0 12 12;" xml:space="preserve" fill-rule="evenodd" clip-rule="evenodd">
|
|
5
|
+
<g>
|
|
6
|
+
<g>
|
|
7
|
+
<path class="st0" d="M6,1c2.8,0,5,2.2,5,5s-2.2,5-5,5S1,8.8,1,6S3.2,1,6,1z M6,1.9c2.3,0,4.1,1.8,4.1,4.1c0,2.3-1.8,4.1-4.1,4.1
|
|
8
|
+
c-2.3,0-4.1-1.8-4.1-4.1C1.9,3.7,3.7,1.9,6,1.9z"/>
|
|
9
|
+
</g>
|
|
10
|
+
<path class="st0" d="M4.7,7.7L4.7,7.7c-0.3,0-0.5-0.2-0.5-0.5V4.6c0-0.3,0.2-0.5,0.5-0.5h0c0.3,0,0.5,0.2,0.5,0.5v2.6
|
|
11
|
+
C5.1,7.5,4.9,7.7,4.7,7.7z"/>
|
|
12
|
+
<path class="st0" d="M7.4,7.7L7.4,7.7c-0.3,0-0.5-0.2-0.5-0.5V4.6c0-0.3,0.2-0.5,0.5-0.5h0c0.3,0,0.5,0.2,0.5,0.5v2.6
|
|
13
|
+
C7.9,7.5,7.7,7.7,7.4,7.7z"/>
|
|
14
|
+
</g>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 12 12" style="enable-background:new 0 0 12 12;" xml:space="preserve">
|
|
5
|
+
|
|
6
|
+
<g>
|
|
7
|
+
<g>
|
|
8
|
+
<g>
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" class="st0" d="M6,1c2.8,0,5,2.2,5,5s-2.2,5-5,5S1,8.8,1,6S3.2,1,6,1z M6,1.9c2.3,0,4.1,1.8,4.1,4.1c0,2.3-1.8,4.1-4.1,4.1
|
|
10
|
+
c-2.3,0-4.1-1.8-4.1-4.1C1.9,3.7,3.7,1.9,6,1.9z"/>
|
|
11
|
+
</g>
|
|
12
|
+
</g>
|
|
13
|
+
<path class="st1" d="M7.9,5.2L5.6,3.9c0,0,0,0,0,0l0,0C5.5,3.8,5.3,3.8,5.2,3.8c-0.2,0-0.3,0-0.4,0.1C4.5,4.1,4.3,4.4,4.3,4.7
|
|
14
|
+
l0,2.6l0,0c0,0.3,0.2,0.6,0.4,0.7C4.9,8.2,5,8.2,5.2,8.2c0.1,0,0.3,0,0.4-0.1l0,0c0,0,0,0,0,0l2.2-1.3C8.1,6.6,8.3,6.3,8.3,6
|
|
15
|
+
C8.3,5.7,8.1,5.4,7.9,5.2z M5.2,4.8L7.3,6L5.2,7.2V4.8z"/>
|
|
16
|
+
</g>
|
|
17
|
+
</svg>
|
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../../../src/ui/components/common/Button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,kBAAkB,CAAC;AAC1B,OAAO,EAAiB,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AAEnE,MAAM,WAAW,mBAAmB;IACnC,IAAI,EAAE,iBAAiB,CAAC;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,iBAAiB,CAAC,KAAK,IAAI,CAAC;IAC3D,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED,MAAM,WAAW,WAAW;IAC3B,OAAO,EAAE,WAAW,GAAG,SAAS,GAAG,QAAQ,GAAG,QAAQ,GAAG,OAAO,GAAG,cAAc,CAAC;IAClF,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,CAAC,EAAE,iBAAiB,CAAC;IAC/B,SAAS,CAAC,EAAE,iBAAiB,CAAC;IAC9B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,iBAAiB,CAAC,KAAK,IAAI,CAAC;IAC3D,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,eAAO,MAAM,oBAAoB;;;;;;;;;CAShC,CAAC;AAEF,eAAO,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,WAAW,CAsBxC,CAAC"}
|
|
1
|
+
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../../../src/ui/components/common/Button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,kBAAkB,CAAC;AAC1B,OAAO,EAAiB,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AAEnE,MAAM,WAAW,mBAAmB;IACnC,IAAI,EAAE,iBAAiB,CAAC;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,iBAAiB,CAAC,KAAK,IAAI,CAAC;IAC3D,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED,MAAM,WAAW,WAAW;IAC3B,OAAO,EAAE,WAAW,GAAG,SAAS,GAAG,QAAQ,GAAG,QAAQ,GAAG,OAAO,GAAG,cAAc,CAAC;IAClF,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,CAAC,EAAE,iBAAiB,CAAC;IAC/B,SAAS,CAAC,EAAE,iBAAiB,CAAC;IAC9B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,iBAAiB,CAAC,KAAK,IAAI,CAAC;IAC3D,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,eAAO,MAAM,oBAAoB;;;;;;;;;CAShC,CAAC;AAEF,eAAO,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,WAAW,CAsBxC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Button.js","sourceRoot":"","sources":["../../../../../src/ui/components/common/Button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,kBAAkB,CAAC;AAC1B,OAAO,EAAE,aAAa,EAAqB,MAAM,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"Button.js","sourceRoot":"","sources":["../../../../../src/ui/components/common/Button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,kBAAkB,CAAC;AAC1B,OAAO,EAAE,aAAa,EAAqB,MAAM,iBAAiB,CAAC;AAyBnE,MAAM,CAAC,MAAM,oBAAoB,GAAG;IACnC,SAAS,EAAE,4BAA4B;IACvC,IAAI,EAAE,uBAAuB;IAC7B,OAAO,EAAE,0BAA0B;IACnC,IAAI,EAAE,uBAAuB;IAC7B,MAAM,EAAE,yBAAyB;IACjC,MAAM,EAAE,yBAAyB;IACjC,KAAK,EAAE,wBAAwB;IAC/B,cAAc,EAAE,+BAA+B;CAC/C,CAAC;AAEF,MAAM,CAAC,MAAM,MAAM,GAA0B,CAAC,EAC7C,OAAO,GAAG,WAAW,EACrB,IAAI,GAAG,EAAE,EACT,UAAU,EACV,SAAS,EACT,QAAQ,GAAG,KAAK,EAChB,OAAO,GAAG,GAAG,EAAE,GAAE,CAAC,EAClB,SAAS,GAAG,EAAE,EACd,gBAAgB,GAAG,EAAE,EACrB,SAAS,GACT,EAAE,EAAE;IACJ,MAAM,kBAAkB,GAAG,CAAC,oBAAoB,CAAC,OAAO,CAAC,EAAE,SAAS,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;IAEhF,OAAO,CACN,6BAAK,SAAS,EAAE,GAAG,kBAAkB,EAAE;QACtC,gDAAY,gBAAgB,IAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,KAAK,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE;YAC7F,UAAU,IAAI,oBAAC,aAAa,IAAC,SAAS,EAAC,oBAAoB,EAAC,IAAI,EAAE,UAAU,GAAkB;YAC9F,IAAI;YACJ,SAAS,IAAI,oBAAC,aAAa,IAAC,SAAS,EAAC,mBAAmB,EAAC,IAAI,EAAE,SAAS,GAAkB,CACpF,CACJ,CACN,CAAC;AACH,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ButtonIcon.d.ts","sourceRoot":"","sources":["../../../../../src/ui/components/common/ButtonIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,mBAAmB,EAAwB,MAAM,UAAU,CAAC;AACrE,OAAO,kBAAkB,CAAC;AAG1B,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,
|
|
1
|
+
{"version":3,"file":"ButtonIcon.d.ts","sourceRoot":"","sources":["../../../../../src/ui/components/common/ButtonIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,mBAAmB,EAAwB,MAAM,UAAU,CAAC;AACrE,OAAO,kBAAkB,CAAC;AAG1B,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CA2BpD,CAAC"}
|
|
@@ -2,10 +2,11 @@ import React from "react";
|
|
|
2
2
|
import { fashion_class_lookup } from "./Button";
|
|
3
3
|
import "./css/button.css";
|
|
4
4
|
import { FinsembleIcon } from "./FinsembleIcon";
|
|
5
|
-
export const ButtonIcon = ({ icon, text = "", disabled = false, tabIndex = 0, onClick = () => { }, className = "", buttonAttributes = {}, }) => {
|
|
5
|
+
export const ButtonIcon = ({ icon, text = "", displayText = false, disabled = false, tabIndex = 0, onClick = () => { }, className = "", buttonAttributes = {}, }) => {
|
|
6
6
|
const containerClassName = fashion_class_lookup.icon;
|
|
7
7
|
return (React.createElement("div", { className: `${containerClassName} ${className}` },
|
|
8
8
|
React.createElement("button", Object.assign({}, buttonAttributes, { onClick: onClick, disabled: disabled, title: text, "aria-label": text, tabIndex: tabIndex }),
|
|
9
|
-
React.createElement(FinsembleIcon, { icon: icon })
|
|
9
|
+
React.createElement(FinsembleIcon, { icon: icon }),
|
|
10
|
+
displayText && React.createElement("span", { className: "btn-label" }, text))));
|
|
10
11
|
};
|
|
11
12
|
//# sourceMappingURL=ButtonIcon.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ButtonIcon.js","sourceRoot":"","sources":["../../../../../src/ui/components/common/ButtonIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAuB,oBAAoB,EAAE,MAAM,UAAU,CAAC;AACrE,OAAO,kBAAkB,CAAC;AAC1B,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAEhD,MAAM,CAAC,MAAM,UAAU,GAAkC,CAAC,EACzD,IAAI,EACJ,IAAI,GAAG,EAAE,EACT,QAAQ,GAAG,KAAK,EAChB,QAAQ,GAAG,CAAC,EACZ,OAAO,GAAG,GAAG,EAAE,GAAE,CAAC,EAClB,SAAS,GAAG,EAAE,EACd,gBAAgB,GAAG,EAAE,GACrB,EAAE,EAAE;IACJ,MAAM,kBAAkB,GAAG,oBAAoB,CAAC,IAAI,CAAC;IAErD,OAAO,CACN,6BAAK,SAAS,EAAE,GAAG,kBAAkB,IAAI,SAAS,EAAE;QACnD,gDACK,gBAAgB,IACpB,OAAO,EAAE,OAAO,EAChB,QAAQ,EAAE,QAAQ,EAClB,KAAK,EAAE,IAAI,gBACC,IAAI,EAChB,QAAQ,EAAE,QAAQ;YAElB,oBAAC,aAAa,IAAC,IAAI,EAAE,IAAI,GAAkB,
|
|
1
|
+
{"version":3,"file":"ButtonIcon.js","sourceRoot":"","sources":["../../../../../src/ui/components/common/ButtonIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAuB,oBAAoB,EAAE,MAAM,UAAU,CAAC;AACrE,OAAO,kBAAkB,CAAC;AAC1B,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAEhD,MAAM,CAAC,MAAM,UAAU,GAAkC,CAAC,EACzD,IAAI,EACJ,IAAI,GAAG,EAAE,EACT,WAAW,GAAG,KAAK,EACnB,QAAQ,GAAG,KAAK,EAChB,QAAQ,GAAG,CAAC,EACZ,OAAO,GAAG,GAAG,EAAE,GAAE,CAAC,EAClB,SAAS,GAAG,EAAE,EACd,gBAAgB,GAAG,EAAE,GACrB,EAAE,EAAE;IACJ,MAAM,kBAAkB,GAAG,oBAAoB,CAAC,IAAI,CAAC;IAErD,OAAO,CACN,6BAAK,SAAS,EAAE,GAAG,kBAAkB,IAAI,SAAS,EAAE;QACnD,gDACK,gBAAgB,IACpB,OAAO,EAAE,OAAO,EAChB,QAAQ,EAAE,QAAQ,EAClB,KAAK,EAAE,IAAI,gBACC,IAAI,EAChB,QAAQ,EAAE,QAAQ;YAElB,oBAAC,aAAa,IAAC,IAAI,EAAE,IAAI,GAAkB;YAC1C,WAAW,IAAI,8BAAM,SAAS,EAAC,WAAW,IAAE,IAAI,CAAQ,CACjD,CACJ,CACN,CAAC;AACH,CAAC,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import "./css/icon.css";
|
|
3
|
-
export declare type FinsembleIconType = "alwaysOnTop" | "caret" | "check-square" | "check" | "chevron-left" | "chevron-right" | "close" | "code-block" | "copy" | "documentation" | "exclamation-circle" | "external-link" | "flag" | "folder" | "font" | "globe" | "grid" | "hdd" | "key" | "life-ring" | "linker" | "lock" | "magic" | "maximize" | "minimize" | "moon" | "paint-roller" | "pencil" | "plus" | "question-circle" | "search" | "server" | "sun" | "times" | "toolbar" | "tools" | "trash" | "upload" | "window";
|
|
3
|
+
export declare type FinsembleIconType = "alwaysOnTop" | "cancel" | "caret" | "check-square" | "check" | "chevron-left" | "chevron-right" | "close" | "code-block" | "copy" | "documentation" | "exclamation-circle" | "external-link" | "flag" | "folder" | "font" | "gear" | "globe" | "grid" | "hdd" | "key" | "life-ring" | "linker" | "lock" | "magic" | "maximize" | "minimize" | "moon" | "paint-roller" | "pause" | "pencil" | "plus" | "question-circle" | "resume" | "search" | "server" | "sun" | "times" | "toolbar" | "tools" | "trash" | "upload" | "window";
|
|
4
4
|
export declare type FinsembleIconProps = {
|
|
5
5
|
icon: FinsembleIconType;
|
|
6
6
|
className?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FinsembleIcon.d.ts","sourceRoot":"","sources":["../../../../../src/ui/components/common/FinsembleIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"FinsembleIcon.d.ts","sourceRoot":"","sources":["../../../../../src/ui/components/common/FinsembleIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,gBAAgB,CAAC;AAgHxB,oBAAY,iBAAiB,GAC1B,aAAa,GACb,QAAQ,GACR,OAAO,GACP,cAAc,GACd,OAAO,GACP,cAAc,GACd,eAAe,GACf,OAAO,GACP,YAAY,GACZ,MAAM,GACN,eAAe,GACf,oBAAoB,GACpB,eAAe,GACf,MAAM,GACN,QAAQ,GACR,MAAM,GACN,MAAM,GACN,OAAO,GACP,MAAM,GACN,KAAK,GACL,KAAK,GACL,WAAW,GACX,QAAQ,GACR,MAAM,GACN,OAAO,GACP,UAAU,GACV,UAAU,GACV,MAAM,GACN,cAAc,GACd,OAAO,GACP,QAAQ,GACR,MAAM,GACN,iBAAiB,GACjB,QAAQ,GACR,QAAQ,GACR,QAAQ,GACR,KAAK,GACL,OAAO,GACP,SAAS,GACT,OAAO,GACP,OAAO,GACP,QAAQ,GACR,QAAQ,CAAC;AAoDZ,oBAAY,kBAAkB,GAAG;IAChC,IAAI,EAAE,iBAAiB,CAAC;IACxB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,UAAU,KAAK,IAAI,CAAC;IACxC,KAAK,CAAC,EAAE,MAAM,CAAC;CACf,CAAC;AAEF;;;;;;;;;GASG;AACH,eAAO,MAAM,aAAa,wCAA8D,kBAAkB,gBAiBzG,CAAC"}
|
|
@@ -9,6 +9,7 @@ import { ReactComponent as CheckSquare } from "../../assets/icons/check-square.s
|
|
|
9
9
|
import { ReactComponent as ChevronLeftIcon } from "../../assets/icons/chevron-left.svg";
|
|
10
10
|
import { ReactComponent as ChevronRightIcon } from "../../assets/icons/chevron-right.svg";
|
|
11
11
|
import { ReactComponent as CloseIcon } from "../../assets/icons/close.svg";
|
|
12
|
+
import { ReactComponent as CancelIcon } from "../../assets/icons/cancel.svg";
|
|
12
13
|
import { ReactComponent as CodeBlockIcon } from "../../assets/icons/code-block.svg";
|
|
13
14
|
import { ReactComponent as CopyIcon } from "../../assets/icons/copy.svg";
|
|
14
15
|
import { ReactComponent as DocumentationIcon } from "../../assets/icons/documentation.svg";
|
|
@@ -17,6 +18,7 @@ import { ReactComponent as ExternalLinkIcon } from "../../assets/icons/external-
|
|
|
17
18
|
import { ReactComponent as FlagIcon } from "../../assets/icons/flag.svg";
|
|
18
19
|
import { ReactComponent as FolderIcon } from "../../assets/icons/folder.svg";
|
|
19
20
|
import { ReactComponent as FontIcon } from "../../assets/icons/font.svg";
|
|
21
|
+
import { ReactComponent as GearIcon } from "../../assets/icons/gear.svg";
|
|
20
22
|
import { ReactComponent as GlobeIcon } from "../../assets/icons/globe.svg";
|
|
21
23
|
import { ReactComponent as GridIcon } from "../../assets/icons/grid.svg";
|
|
22
24
|
import { ReactComponent as HDDIcon } from "../../assets/icons/hdd.svg";
|
|
@@ -30,8 +32,10 @@ import { ReactComponent as MinimizeIcon } from "../../assets/icons/minimize.svg"
|
|
|
30
32
|
import { ReactComponent as MoonIcon } from "../../assets/icons/moon.svg";
|
|
31
33
|
import { ReactComponent as PaintRollerIcon } from "../../assets/icons/paint-roller.svg";
|
|
32
34
|
// import { ReactComponent as PencilIcon } from "../../assets/icons/pencil.svg";
|
|
35
|
+
import { ReactComponent as PauseIcon } from "../../assets/icons/pause.svg";
|
|
33
36
|
import { ReactComponent as PlusIcon } from "../../assets/icons/plus.svg";
|
|
34
37
|
import { ReactComponent as QuestionCircleIcon } from "../../assets/icons/question-circle.svg";
|
|
38
|
+
import { ReactComponent as ResumeIcon } from "../../assets/icons/resume.svg";
|
|
35
39
|
import { ReactComponent as SearchIcon } from "../../assets/icons/search.svg";
|
|
36
40
|
import { ReactComponent as ServerIcon } from "../../assets/icons/server.svg";
|
|
37
41
|
import { ReactComponent as SunIcon } from "../../assets/icons/sun.svg";
|
|
@@ -80,6 +84,7 @@ const PencilIcon = () => {
|
|
|
80
84
|
};
|
|
81
85
|
const icons = {
|
|
82
86
|
alwaysOnTop: AlwaysOnTopIcon,
|
|
87
|
+
cancel: CancelIcon,
|
|
83
88
|
caret: Caret,
|
|
84
89
|
check: CheckIcon,
|
|
85
90
|
"check-square": CheckSquare,
|
|
@@ -94,6 +99,7 @@ const icons = {
|
|
|
94
99
|
flag: FlagIcon,
|
|
95
100
|
folder: FolderIcon,
|
|
96
101
|
font: FontIcon,
|
|
102
|
+
gear: GearIcon,
|
|
97
103
|
globe: GlobeIcon,
|
|
98
104
|
grid: GridIcon,
|
|
99
105
|
hdd: HDDIcon,
|
|
@@ -106,9 +112,11 @@ const icons = {
|
|
|
106
112
|
minimize: MinimizeIcon,
|
|
107
113
|
moon: MoonIcon,
|
|
108
114
|
"paint-roller": PaintRollerIcon,
|
|
115
|
+
pause: PauseIcon,
|
|
109
116
|
pencil: PencilIcon,
|
|
110
117
|
plus: PlusIcon,
|
|
111
118
|
"question-circle": QuestionCircleIcon,
|
|
119
|
+
resume: ResumeIcon,
|
|
112
120
|
search: SearchIcon,
|
|
113
121
|
server: ServerIcon,
|
|
114
122
|
sun: SunIcon,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FinsembleIcon.js","sourceRoot":"","sources":["../../../../../src/ui/components/common/FinsembleIcon.tsx"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"FinsembleIcon.js","sourceRoot":"","sources":["../../../../../src/ui/components/common/FinsembleIcon.tsx"],"names":[],"mappings":"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"}
|
|
@@ -70,6 +70,10 @@ button {
|
|
|
70
70
|
cursor: pointer;
|
|
71
71
|
}
|
|
72
72
|
|
|
73
|
+
.button-container-icon span.btn-label {
|
|
74
|
+
padding-left: 5px;
|
|
75
|
+
}
|
|
76
|
+
|
|
73
77
|
/* Primary */
|
|
74
78
|
|
|
75
79
|
.button-container-primary button {
|
|
@@ -145,9 +149,11 @@ button {
|
|
|
145
149
|
|
|
146
150
|
.button-container-hollow button {
|
|
147
151
|
background-color: transparent;
|
|
148
|
-
color: var(--
|
|
152
|
+
color: var(--font-color);
|
|
149
153
|
border-radius: 5px;
|
|
150
|
-
border: solid
|
|
154
|
+
border: solid 2px var(--accent-primary);
|
|
155
|
+
padding-top: calc(0.5em - 1px);
|
|
156
|
+
padding-bottom: calc(0.5em - 1px);
|
|
151
157
|
}
|
|
152
158
|
|
|
153
159
|
.button-container-hollow button:hover {
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import "../../assets/css/download.css";
|
|
3
|
+
export declare type DownloadItemProps = {
|
|
4
|
+
downloadItem: any;
|
|
5
|
+
remove: (any: any) => void;
|
|
6
|
+
onClick?: () => void;
|
|
7
|
+
onKeyDown?: () => void;
|
|
8
|
+
className?: string;
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* Entry for each individual download with information about the download and it's state.
|
|
12
|
+
* Downloads can be paused/canceled/resumed based on completion status.
|
|
13
|
+
* A removal function is passed down from the parent Download Manager to allow removing downloads based on completion state
|
|
14
|
+
*/
|
|
15
|
+
export declare const DownloadItem: React.FunctionComponent<DownloadItemProps>;
|
|
16
|
+
//# sourceMappingURL=DownloadItem.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DownloadItem.d.ts","sourceRoot":"","sources":["../../../../../src/ui/components/downloadManager/DownloadItem.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,OAAO,+BAA+B,CAAC;AAEvC,oBAAY,iBAAiB,GAAG;IAC/B,YAAY,EAAE,GAAG,CAAC;IAClB,MAAM,EAAE,CAAC,GAAG,EAAE,GAAG,KAAK,IAAI,CAAC;IAC3B,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,IAAI,CAAC;IACvB,SAAS,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AAsFF;;;;GAIG;AACH,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,iBAAiB,CAAC,iBAAiB,CAkCnE,CAAC"}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { FEAGlobals } from "../../../common/Globals";
|
|
3
|
+
import { ButtonIcon } from "../common/ButtonIcon";
|
|
4
|
+
import "../../assets/css/download.css";
|
|
5
|
+
const renderPauseButton = (id) => (React.createElement(ButtonIcon, { displayText: true, className: "finsemble-download-pause", text: "Pause", icon: "pause", onClick: () => {
|
|
6
|
+
FEAGlobals.fin.desktop.System.pauseDownload(id);
|
|
7
|
+
} }));
|
|
8
|
+
const renderCancelButton = (id) => (React.createElement(ButtonIcon, { displayText: true, className: "finsemble-download-cancel", text: "Cancel", icon: "cancel", onClick: () => {
|
|
9
|
+
FEAGlobals.fin.desktop.System.cancelDownload(id);
|
|
10
|
+
} }));
|
|
11
|
+
const renderResumeButton = (id) => (React.createElement(ButtonIcon, { displayText: true, className: "finsemble-download-resume", text: "Resume", icon: "resume", onClick: () => {
|
|
12
|
+
FEAGlobals.fin.desktop.System.resumeDownload(id);
|
|
13
|
+
} }));
|
|
14
|
+
const renderShowInFolderButton = (id) => (React.createElement(ButtonIcon, { className: "finsemble-download-folder", displayText: true, text: "Show in folder", icon: "search", onClick: () => {
|
|
15
|
+
FEAGlobals.fin.desktop.System.showDownloadedFileInFolder(id);
|
|
16
|
+
} }));
|
|
17
|
+
/**
|
|
18
|
+
* Determines which buttons to render based on the current state.
|
|
19
|
+
* The available actions are:
|
|
20
|
+
* Progressing(download in progress): pause, cancel
|
|
21
|
+
* Paused: resume, cancel
|
|
22
|
+
* Completed: show in folder
|
|
23
|
+
* Canceled, interrupted(download failed): none - it's currently not possible to resume/retry a canceled download
|
|
24
|
+
* All downloads in a state of "completion" (completed, cancelled, interrupted) can be removed from the list
|
|
25
|
+
*/
|
|
26
|
+
const renderButtons = (id, state) => {
|
|
27
|
+
switch (state) {
|
|
28
|
+
case "progressing":
|
|
29
|
+
return (React.createElement("span", null,
|
|
30
|
+
renderPauseButton(id),
|
|
31
|
+
renderCancelButton(id)));
|
|
32
|
+
case "paused":
|
|
33
|
+
return (React.createElement("span", null,
|
|
34
|
+
renderResumeButton(id),
|
|
35
|
+
renderCancelButton(id)));
|
|
36
|
+
case "completed":
|
|
37
|
+
return renderShowInFolderButton(id);
|
|
38
|
+
case "cancelled":
|
|
39
|
+
case "interrupted":
|
|
40
|
+
default:
|
|
41
|
+
break;
|
|
42
|
+
}
|
|
43
|
+
};
|
|
44
|
+
const bytesToMB = (bytes) => Math.round((bytes / (1024 * 1024)) * 1e2) / 1e2;
|
|
45
|
+
/**
|
|
46
|
+
* Entry for each individual download with information about the download and it's state.
|
|
47
|
+
* Downloads can be paused/canceled/resumed based on completion status.
|
|
48
|
+
* A removal function is passed down from the parent Download Manager to allow removing downloads based on completion state
|
|
49
|
+
*/
|
|
50
|
+
export const DownloadItem = ({ downloadItem, remove }) => {
|
|
51
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
52
|
+
// Completed, canceled, interrupted downloads can be removed
|
|
53
|
+
const removableState = ((_a = downloadItem === null || downloadItem === void 0 ? void 0 : downloadItem.displayInfo) === null || _a === void 0 ? void 0 : _a.state) === "completed" ||
|
|
54
|
+
((_b = downloadItem === null || downloadItem === void 0 ? void 0 : downloadItem.displayInfo) === null || _b === void 0 ? void 0 : _b.state) === "cancelled" ||
|
|
55
|
+
((_c = downloadItem === null || downloadItem === void 0 ? void 0 : downloadItem.displayInfo) === null || _c === void 0 ? void 0 : _c.state) === "interrupted";
|
|
56
|
+
const receivedMB = bytesToMB((_d = downloadItem === null || downloadItem === void 0 ? void 0 : downloadItem.displayInfo) === null || _d === void 0 ? void 0 : _d.receivedBytes);
|
|
57
|
+
const totalMB = bytesToMB((_e = downloadItem === null || downloadItem === void 0 ? void 0 : downloadItem.displayInfo) === null || _e === void 0 ? void 0 : _e.totalBytes);
|
|
58
|
+
const removeDownloadItem = async () => {
|
|
59
|
+
await FEAGlobals.fin.desktop.System.removeDownloadItem(downloadItem === null || downloadItem === void 0 ? void 0 : downloadItem.id);
|
|
60
|
+
remove(downloadItem);
|
|
61
|
+
};
|
|
62
|
+
return (React.createElement("div", { className: "download-row" },
|
|
63
|
+
React.createElement("div", { className: "download-remove" }, removableState && (React.createElement(ButtonIcon, { text: "Cancel", className: "finsemble-download-remove", icon: "times", onClick: removeDownloadItem }))),
|
|
64
|
+
React.createElement("div", { className: "download-name" }, (_f = downloadItem === null || downloadItem === void 0 ? void 0 : downloadItem.displayInfo) === null || _f === void 0 ? void 0 : _f.filename),
|
|
65
|
+
React.createElement("div", { title: (_g = downloadItem === null || downloadItem === void 0 ? void 0 : downloadItem.displayInfo) === null || _g === void 0 ? void 0 : _g.url, className: "download-url" }, (_h = downloadItem === null || downloadItem === void 0 ? void 0 : downloadItem.displayInfo) === null || _h === void 0 ? void 0 : _h.url),
|
|
66
|
+
React.createElement("div", { className: "download-progress-button-row" },
|
|
67
|
+
React.createElement("span", { className: "download-progress" },
|
|
68
|
+
receivedMB,
|
|
69
|
+
"MB/",
|
|
70
|
+
totalMB,
|
|
71
|
+
"MB"),
|
|
72
|
+
React.createElement("span", { className: "download-buttons" }, renderButtons(downloadItem === null || downloadItem === void 0 ? void 0 : downloadItem.id, (_j = downloadItem === null || downloadItem === void 0 ? void 0 : downloadItem.displayInfo) === null || _j === void 0 ? void 0 : _j.state)))));
|
|
73
|
+
};
|
|
74
|
+
//# sourceMappingURL=DownloadItem.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DownloadItem.js","sourceRoot":"","sources":["../../../../../src/ui/components/downloadManager/DownloadItem.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import "../../assets/css/download.css";
|
|
3
|
+
export declare type DownloadManagerProps = {
|
|
4
|
+
className?: string;
|
|
5
|
+
};
|
|
6
|
+
/**
|
|
7
|
+
* UI for the Download Manager containing a list and data for downloads initiated accross all windows.
|
|
8
|
+
*/
|
|
9
|
+
export declare const DownloadManager: React.FunctionComponent<DownloadManagerProps>;
|
|
10
|
+
//# sourceMappingURL=DownloadManager.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DownloadManager.d.ts","sourceRoot":"","sources":["../../../../../src/ui/components/downloadManager/DownloadManager.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAOzC,OAAO,+BAA+B,CAAC;AACvC,oBAAY,oBAAoB,GAAG;IAClC,SAAS,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,eAAe,EAAE,KAAK,CAAC,iBAAiB,CAAC,oBAAoB,CA6DzE,CAAC"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import React, { useEffect } from "react";
|
|
2
|
+
import { Title } from "../../hooks/useTitle";
|
|
3
|
+
import { DownloadItem } from "./DownloadItem";
|
|
4
|
+
import useDownloadItems from "../../hooks/useDownloadItems";
|
|
5
|
+
import { ButtonIcon } from "../common/ButtonIcon";
|
|
6
|
+
import { FEAGlobals } from "../../../common/Globals";
|
|
7
|
+
import "../../assets/css/download.css";
|
|
8
|
+
/**
|
|
9
|
+
* UI for the Download Manager containing a list and data for downloads initiated accross all windows.
|
|
10
|
+
*/
|
|
11
|
+
export const DownloadManager = (props) => {
|
|
12
|
+
const { downloadItems, initDownloadItems, removeDownloadItem } = useDownloadItems();
|
|
13
|
+
const launchPreferences = () => {
|
|
14
|
+
FEAGlobals.FSBL.Clients.RouterClient.transmit("FinsembleUserPreferencesChannel", {
|
|
15
|
+
preferencesTab: "General",
|
|
16
|
+
});
|
|
17
|
+
FEAGlobals.FSBL.Clients.LauncherClient.showWindow({
|
|
18
|
+
componentType: "UserPreferences",
|
|
19
|
+
}, {
|
|
20
|
+
monitor: "mine",
|
|
21
|
+
left: "center",
|
|
22
|
+
top: "center",
|
|
23
|
+
});
|
|
24
|
+
};
|
|
25
|
+
useEffect(() => {
|
|
26
|
+
FEAGlobals.fin.desktop.System.getDownloadList((downloadList) => {
|
|
27
|
+
initDownloadItems(downloadList);
|
|
28
|
+
});
|
|
29
|
+
}, []);
|
|
30
|
+
return (React.createElement("div", null,
|
|
31
|
+
React.createElement(Title, { title: "Download Manager" }),
|
|
32
|
+
React.createElement("div", { className: "download-wrapper" },
|
|
33
|
+
React.createElement("div", { className: "download-row" },
|
|
34
|
+
React.createElement("div", { className: "download-header" },
|
|
35
|
+
React.createElement("div", { className: "download-title" }, "Downloads"),
|
|
36
|
+
React.createElement("div", { className: "download-settings" },
|
|
37
|
+
React.createElement(ButtonIcon, { text: "Settings", className: "download-settings-button", icon: "gear", onClick: () => {
|
|
38
|
+
launchPreferences();
|
|
39
|
+
} })))),
|
|
40
|
+
(downloadItems === null || downloadItems === void 0 ? void 0 : downloadItems.length) > 0 ? (React.createElement("div", null, downloadItems.map((downloadItem) => (React.createElement(DownloadItem, Object.assign({ key: `download-item-${downloadItem.id}`, downloadItem: downloadItem, remove: removeDownloadItem }, props)))))) : (React.createElement("div", { className: "no-downloads" }, "No Downloads to Display")))));
|
|
41
|
+
};
|
|
42
|
+
//# sourceMappingURL=DownloadManager.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DownloadManager.js","sourceRoot":"","sources":["../../../../../src/ui/components/downloadManager/DownloadManager.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACzC,OAAO,EAAE,KAAK,EAAE,MAAM,sBAAsB,CAAC;AAE7C,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,gBAAgB,MAAM,8BAA8B,CAAC;AAC5D,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AACrD,OAAO,+BAA+B,CAAC;AAKvC;;GAEG;AACH,MAAM,CAAC,MAAM,eAAe,GAAkD,CAAC,KAAK,EAAE,EAAE;IACvF,MAAM,EAAE,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,GAAG,gBAAgB,EAAE,CAAC;IAEpF,MAAM,iBAAiB,GAAG,GAAG,EAAE;QAC9B,UAAU,CAAC,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,QAAQ,CAAC,iCAAiC,EAAE;YAChF,cAAc,EAAE,SAAS;SACzB,CAAC,CAAC;QACH,UAAU,CAAC,IAAI,CAAC,OAAO,CAAC,cAAc,CAAC,UAAU,CAChD;YACC,aAAa,EAAE,iBAAiB;SAChC,EACD;YACC,OAAO,EAAE,MAAM;YACf,IAAI,EAAE,QAAQ;YACd,GAAG,EAAE,QAAQ;SACb,CACD,CAAC;IACH,CAAC,CAAC;IAEF,SAAS,CAAC,GAAG,EAAE;QACd,UAAU,CAAC,GAAG,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,YAAY,EAAE,EAAE;YAC9D,iBAAiB,CAAC,YAAY,CAAC,CAAC;QACjC,CAAC,CAAC,CAAC;IACJ,CAAC,EAAE,EAAE,CAAC,CAAC;IAEP,OAAO,CACN;QACC,oBAAC,KAAK,IAAC,KAAK,EAAC,kBAAkB,GAAG;QAClC,6BAAK,SAAS,EAAC,kBAAkB;YAChC,6BAAK,SAAS,EAAC,cAAc;gBAC5B,6BAAK,SAAS,EAAC,iBAAiB;oBAC/B,6BAAK,SAAS,EAAC,gBAAgB,gBAAgB;oBAC/C,6BAAK,SAAS,EAAC,mBAAmB;wBACjC,oBAAC,UAAU,IACV,IAAI,EAAC,UAAU,EACf,SAAS,EAAC,0BAA0B,EACpC,IAAI,EAAC,MAAM,EACX,OAAO,EAAE,GAAG,EAAE;gCACb,iBAAiB,EAAE,CAAC;4BACrB,CAAC,GACA,CACG,CACD,CACD;YACL,CAAA,aAAa,aAAb,aAAa,uBAAb,aAAa,CAAE,MAAM,IAAG,CAAC,CAAC,CAAC,CAAC,CAC5B,iCACE,aAAa,CAAC,GAAG,CAAC,CAAC,YAAY,EAAE,EAAE,CAAC,CACpC,oBAAC,YAAY,kBACZ,GAAG,EAAE,iBAAiB,YAAY,CAAC,EAAE,EAAE,EACvC,YAAY,EAAE,YAAY,EAC1B,MAAM,EAAE,kBAAkB,IACtB,KAAK,EACR,CACF,CAAC,CACG,CACN,CAAC,CAAC,CAAC,CACH,6BAAK,SAAS,EAAC,cAAc,8BAA8B,CAC3D,CACI,CACD,CACN,CAAC;AACH,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/ui/components/downloadManager/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/ui/components/downloadManager/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/ui/components/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC;AACpC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC;AACjC,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAE9B;;GAEG;AACH;;GAEG;AACH,cAAc,mBAAmB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/ui/components/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,cAAc,cAAc,CAAC;AAC7B,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC;AACpC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC;AACjC,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAE9B;;GAEG;AACH;;GAEG;AACH,cAAc,mBAAmB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/ui/components/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC;AACpC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC;AACjC,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAE9B;;GAEG;AACH;;GAEG;AACH,cAAc,mBAAmB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/ui/components/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,cAAc,cAAc,CAAC;AAC7B,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC;AACpC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC;AACjC,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAE9B;;GAEG;AACH;;GAEG;AACH,cAAc,mBAAmB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ProcessMonitor.d.ts","sourceRoot":"","sources":["../../../../../src/ui/components/processMonitor/ProcessMonitor.tsx"],"names":[],"mappings":";AAUA,OAAO,qCAAqC,CAAC;
|
|
1
|
+
{"version":3,"file":"ProcessMonitor.d.ts","sourceRoot":"","sources":["../../../../../src/ui/components/processMonitor/ProcessMonitor.tsx"],"names":[],"mappings":";AAUA,OAAO,qCAAqC,CAAC;AAqH7C;;GAEG;AACH,eAAO,MAAM,cAAc,mBAO1B,CAAC"}
|