@finsemble/finsemble-ui 6.6.3 → 7.0.0-beta-X
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/package.json +31 -43
- package/react/actions/favoriteActions.d.ts +1 -0
- package/react/actions/favoriteActions.js +1 -0
- package/react/actions/favoriteActions.js.map +1 -1
- package/react/actions/menuActions.d.ts +1 -0
- package/react/actions/menuActions.js +1 -0
- package/react/actions/menuActions.js.map +1 -1
- package/react/actions/rootActions.d.ts +1 -0
- package/react/actions/rootActions.js +1 -0
- package/react/actions/rootActions.js.map +1 -1
- package/react/actions/searchActions.d.ts +1 -0
- package/react/actions/searchActions.js +1 -0
- package/react/actions/searchActions.js.map +1 -1
- package/react/actions/toolbarActions.d.ts +34 -0
- package/react/actions/toolbarActions.js +17 -0
- package/react/actions/toolbarActions.js.map +1 -1
- package/react/actions/workspaceActions.d.ts +1 -0
- package/react/actions/workspaceActions.js +1 -0
- package/react/actions/workspaceActions.js.map +1 -1
- package/react/assets/css/advancedAppLauncher.css +22 -19
- package/react/assets/css/appCatalog.css +67 -72
- package/react/assets/css/authentication.css +4 -3
- package/react/assets/css/button.css +4 -11
- package/react/assets/css/core/formElements.css +1 -1
- package/react/assets/css/core/icons.css +3 -2
- package/react/assets/css/core/notifications.css +2 -2
- package/react/assets/css/core/windowFrame.css +9 -9
- package/react/assets/css/dashbar.css +1 -1
- package/react/assets/css/defaultTheme.css +9 -53
- package/react/assets/css/dialogs.css +13 -11
- package/react/assets/css/favorites.css +3 -48
- package/react/assets/css/finsemble.css +6 -2
- package/react/assets/css/font-finance.css +233 -120
- package/react/assets/css/fonts/Open_Sans/OpenSans-Definition.css +10 -10
- package/react/assets/css/linkerWindow.css +15 -3
- package/react/assets/css/menus.css +12 -12
- package/react/assets/css/notificationsCenter.css +49 -33
- package/react/assets/css/processMonitor.css +7 -4
- package/react/assets/css/search.css +1 -1
- package/react/assets/css/shared/animations.css +10 -4
- package/react/assets/css/shared/common.css +40 -0
- package/react/assets/css/tags.css +10 -10
- package/react/assets/css/toolbar.css +22 -19
- package/react/assets/css/userPreferences.css +29 -26
- package/react/assets/css/windowTitleBar.css +86 -40
- package/react/assets/icons/server.svg +26 -0
- package/react/componentTemplateGenerator.js +3 -2
- package/react/componentTemplateGenerator.js.map +1 -1
- package/react/components/FinsembleProvider.d.ts +7 -0
- package/react/components/FinsembleProvider.js +2 -0
- package/react/components/FinsembleProvider.js.map +1 -1
- package/react/components/appCatalog/AppCatalog.d.ts +4 -0
- package/react/components/appCatalog/AppCatalog.js +4 -0
- package/react/components/appCatalog/AppCatalog.js.map +1 -1
- package/react/components/appCatalog/AppCatalogComponent.d.ts +58 -0
- package/react/components/appCatalog/AppCatalogComponent.js +70 -1
- package/react/components/appCatalog/AppCatalogComponent.js.map +1 -1
- package/react/components/appCatalog/components/AppCard.d.ts +35 -0
- package/react/components/appCatalog/components/AppCard.js +42 -0
- package/react/components/appCatalog/components/AppCard.js.map +1 -1
- package/react/components/appCatalog/components/AppResults.d.ts +10 -0
- package/react/components/appCatalog/components/AppResults.js +24 -0
- package/react/components/appCatalog/components/AppResults.js.map +1 -1
- package/react/components/appCatalog/components/Carousel.d.ts +26 -0
- package/react/components/appCatalog/components/Carousel.js +34 -0
- package/react/components/appCatalog/components/Carousel.js.map +1 -1
- package/react/components/appCatalog/components/EmptyResults.d.ts +4 -0
- package/react/components/appCatalog/components/EmptyResults.js +8 -0
- package/react/components/appCatalog/components/EmptyResults.js.map +1 -1
- package/react/components/appCatalog/components/Hero.d.ts +15 -0
- package/react/components/appCatalog/components/Hero.js +15 -0
- package/react/components/appCatalog/components/Hero.js.map +1 -1
- package/react/components/appCatalog/components/Home.d.ts +6 -4
- package/react/components/appCatalog/components/Home.js +10 -0
- package/react/components/appCatalog/components/Home.js.map +1 -1
- package/react/components/appCatalog/components/SearchBar.d.ts +31 -0
- package/react/components/appCatalog/components/SearchBar.js +33 -0
- package/react/components/appCatalog/components/SearchBar.js.map +1 -1
- package/react/components/appCatalog/components/Showcase/AppDescription.d.ts +5 -0
- package/react/components/appCatalog/components/Showcase/AppDescription.js +9 -0
- package/react/components/appCatalog/components/Showcase/AppDescription.js.map +1 -1
- package/react/components/appCatalog/components/Showcase/AppDevNotes.d.ts +7 -0
- package/react/components/appCatalog/components/Showcase/AppDevNotes.js +15 -0
- package/react/components/appCatalog/components/Showcase/AppDevNotes.js.map +1 -1
- package/react/components/appCatalog/components/Showcase/AppShowcase.d.ts +17 -0
- package/react/components/appCatalog/components/Showcase/AppShowcase.js +25 -0
- package/react/components/appCatalog/components/Showcase/AppShowcase.js.map +1 -1
- package/react/components/appCatalog/components/Showcase/Header.d.ts +7 -0
- package/react/components/appCatalog/components/Showcase/Header.js +12 -0
- package/react/components/appCatalog/components/Showcase/Header.js.map +1 -1
- package/react/components/appCatalog/components/Showcase/ImageCarousel.d.ts +7 -0
- package/react/components/appCatalog/components/Showcase/ImageCarousel.js +11 -0
- package/react/components/appCatalog/components/Showcase/ImageCarousel.js.map +1 -1
- package/react/components/appCatalog/components/Showcase/Modal.d.ts +10 -0
- package/react/components/appCatalog/components/Showcase/Modal.js +10 -0
- package/react/components/appCatalog/components/Showcase/Modal.js.map +1 -1
- package/react/components/appCatalog/components/Showcase/ReleaseNotes.d.ts +5 -0
- package/react/components/appCatalog/components/Showcase/ReleaseNotes.js +9 -0
- package/react/components/appCatalog/components/Showcase/ReleaseNotes.js.map +1 -1
- package/react/components/appCatalog/components/Showcase/SupportNotes.d.ts +6 -0
- package/react/components/appCatalog/components/Showcase/SupportNotes.js +11 -0
- package/react/components/appCatalog/components/Showcase/SupportNotes.js.map +1 -1
- package/react/components/appCatalog/components/Showcase/VersionNotes.d.ts +5 -0
- package/react/components/appCatalog/components/Showcase/VersionNotes.js +9 -0
- package/react/components/appCatalog/components/Showcase/VersionNotes.js.map +1 -1
- package/react/components/appCatalog/components/Tag.d.ts +6 -0
- package/react/components/appCatalog/components/Tag.js +10 -0
- package/react/components/appCatalog/components/Tag.js.map +1 -1
- package/react/components/appCatalog/components/Toast.d.ts +5 -0
- package/react/components/appCatalog/components/Toast.js +9 -0
- package/react/components/appCatalog/components/Toast.js.map +1 -1
- package/react/components/appCatalog/components/helpers.js +1 -0
- package/react/components/appCatalog/components/helpers.js.map +1 -1
- package/react/components/appCatalog/modules/AppDirectory.d.ts +5 -0
- package/react/components/appCatalog/modules/AppDirectory.js +5 -0
- package/react/components/appCatalog/modules/AppDirectory.js.map +1 -1
- package/react/components/appCatalog/modules/FDC3.d.ts +37 -0
- package/react/components/appCatalog/modules/FDC3.js +40 -0
- package/react/components/appCatalog/modules/FDC3.js.map +1 -1
- package/react/components/appCatalog/stores/appStore.js +1 -0
- package/react/components/appCatalog/stores/appStore.js.map +1 -1
- package/react/components/appCatalog/stores/storeActions.d.ts +91 -0
- package/react/components/appCatalog/stores/storeActions.js +116 -1
- package/react/components/appCatalog/stores/storeActions.js.map +1 -1
- package/react/components/common/ButtonIcon.js +1 -1
- package/react/components/common/ButtonIcon.js.map +1 -1
- package/react/components/common/ButtonRow.js +2 -2
- package/react/components/common/ButtonRow.js.map +1 -1
- package/react/components/common/Checkbox.d.ts +1 -0
- package/react/components/common/Checkbox.js +3 -3
- package/react/components/common/Checkbox.js.map +1 -1
- package/react/components/common/ColorPicker.d.ts +5 -0
- package/react/components/common/ColorPicker.js +56 -15
- package/react/components/common/ColorPicker.js.map +1 -1
- package/react/components/common/DropZone.d.ts +11 -0
- package/react/components/common/DropZone.js +21 -1
- package/react/components/common/DropZone.js.map +1 -1
- package/react/components/common/DropdownButton.d.ts +4 -0
- package/react/components/common/DropdownButton.js +4 -0
- package/react/components/common/DropdownButton.js.map +1 -1
- package/react/components/common/ErrorBoundary.d.ts +34 -0
- package/react/components/common/ErrorBoundary.js +43 -0
- package/react/components/common/ErrorBoundary.js.map +1 -0
- package/react/components/common/FileInput.d.ts +8 -1
- package/react/components/common/FileInput.js +19 -4
- package/react/components/common/FileInput.js.map +1 -1
- package/react/components/common/FinsembleIcon.d.ts +13 -2
- package/react/components/common/FinsembleIcon.js +61 -5
- package/react/components/common/FinsembleIcon.js.map +1 -1
- package/react/components/common/FinsembleLink.d.ts +6 -0
- package/react/components/common/FinsembleLink.js +12 -0
- package/react/components/common/FinsembleLink.js.map +1 -0
- package/react/components/common/FinsembleSelect.js +5 -1
- package/react/components/common/FinsembleSelect.js.map +1 -1
- package/react/components/common/FinsembleToggle.d.ts +1 -2
- package/react/components/common/FinsembleToggle.js +2 -6
- package/react/components/common/FinsembleToggle.js.map +1 -1
- package/react/components/common/FinsembleToggleButtonBar.d.ts +13 -0
- package/react/components/common/FinsembleToggleButtonBar.js +44 -0
- package/react/components/common/FinsembleToggleButtonBar.js.map +1 -0
- package/react/components/common/InputTable.d.ts +10 -3
- package/react/components/common/InputTable.js +20 -13
- package/react/components/common/InputTable.js.map +1 -1
- package/react/components/common/Tab.js +36 -5
- package/react/components/common/Tab.js.map +1 -1
- package/react/components/common/TimeSelect.js +34 -3
- package/react/components/common/TimeSelect.js.map +1 -1
- package/react/components/common/Tooltip.js +2 -0
- package/react/components/common/Tooltip.js.map +1 -1
- package/react/components/common/css/FinsembleToggle.css +22 -0
- package/react/components/common/css/accordion.css +9 -6
- package/react/components/common/css/application-edit-page.css +48 -45
- package/react/components/common/css/button.css +10 -5
- package/react/components/common/css/color-picker.css +3 -3
- package/react/components/common/css/drop-zone.css +2 -6
- package/react/components/common/css/file-input.css +5 -5
- package/react/components/common/css/header.css +3 -2
- package/react/components/common/css/icon.css +1 -1
- package/react/components/common/css/loading-spinner.css +7 -12
- package/react/components/common/css/selector.css +4 -4
- package/react/components/common/css/styles.css +22 -16
- package/react/components/common/css/tab.css +14 -14
- package/react/components/common/css/time-select.css +2 -1
- package/react/components/common/css/toggle.css +4 -12
- package/react/components/common/css/tooltip.css +2 -3
- package/react/components/common/file_helpers.js +2 -0
- package/react/components/common/file_helpers.js.map +1 -1
- package/react/components/common/helpers.js +12 -1
- package/react/components/common/helpers.js.map +1 -1
- package/react/components/common/stories/ColorPicker.stories.js +9 -11
- package/react/components/common/stories/ColorPicker.stories.js.map +1 -1
- package/react/components/common/stories/FileInput.stories.d.ts +3 -1
- package/react/components/common/stories/FileInput.stories.js +12 -0
- package/react/components/common/stories/FileInput.stories.js.map +1 -1
- package/react/components/common/stories/FinsembleToggle.stories.d.ts +1 -2
- package/react/components/common/stories/FinsembleToggle.stories.js +0 -7
- package/react/components/common/stories/FinsembleToggle.stories.js.map +1 -1
- package/react/components/common/stories/FinsembleToggleButtonBar.stories.d.ts +14 -0
- package/react/components/common/stories/FinsembleToggleButtonBar.stories.js +97 -0
- package/react/components/common/stories/FinsembleToggleButtonBar.stories.js.map +1 -0
- package/react/components/common/stories/InputTable.stories.d.ts +4 -3
- package/react/components/common/stories/InputTable.stories.js +18 -8
- package/react/components/common/stories/InputTable.stories.js.map +1 -1
- package/react/components/common/tests/Accordion.spec.js +6 -0
- package/react/components/common/tests/Accordion.spec.js.map +1 -1
- package/react/components/common/tests/ButtonRow.spec.js +5 -0
- package/react/components/common/tests/ButtonRow.spec.js.map +1 -1
- package/react/components/common/tests/Checkbox.spec.js +1 -0
- package/react/components/common/tests/Checkbox.spec.js.map +1 -1
- package/react/components/common/tests/ColorPicker.spec.js +6 -0
- package/react/components/common/tests/ColorPicker.spec.js.map +1 -1
- package/react/components/common/tests/DropZone.spec.js +1 -0
- package/react/components/common/tests/DropZone.spec.js.map +1 -1
- package/react/components/common/tests/FileInput.spec.js +22 -0
- package/react/components/common/tests/FileInput.spec.js.map +1 -1
- package/react/components/common/tests/FinsembleSelect.spec.js +1 -0
- package/react/components/common/tests/FinsembleSelect.spec.js.map +1 -1
- package/react/components/common/tests/FinsembleToggle.spec.js +2 -6
- package/react/components/common/tests/FinsembleToggle.spec.js.map +1 -1
- package/react/components/common/tests/FinsembleToggleButtonBar.spec.d.ts +1 -0
- package/react/components/common/tests/FinsembleToggleButtonBar.spec.js +41 -0
- package/react/components/common/tests/FinsembleToggleButtonBar.spec.js.map +1 -0
- package/react/components/common/tests/InputTable.spec.js +3 -3
- package/react/components/common/tests/InputTable.spec.js.map +1 -1
- package/react/components/common/tests/TimeSelect.spec.js +4 -0
- package/react/components/common/tests/TimeSelect.spec.js.map +1 -1
- package/react/components/common/tests/Tooltip.spec.js +16 -0
- package/react/components/common/tests/Tooltip.spec.js.map +1 -1
- package/react/components/favorites/FavoriteMaker.d.ts +8 -0
- package/react/components/favorites/FavoriteMaker.js +10 -1
- package/react/components/favorites/FavoriteMaker.js.map +1 -1
- package/react/components/favorites/FavoritesShell.d.ts +4 -0
- package/react/components/favorites/FavoritesShell.js +13 -1
- package/react/components/favorites/FavoritesShell.js.map +1 -1
- package/react/components/favorites/FavoritesShell.spec.js +3 -0
- package/react/components/favorites/FavoritesShell.spec.js.map +1 -1
- package/react/components/fdc3Resolver/ResolverContainer.js +12 -7
- package/react/components/fdc3Resolver/ResolverContainer.js.map +1 -1
- package/react/components/fdc3Resolver/ResolverDialog.css +16 -3
- package/react/components/fdc3Resolver/ResolverDialog.js +7 -2
- package/react/components/fdc3Resolver/ResolverDialog.js.map +1 -1
- package/react/components/fdc3Resolver/ResolverDialog.spec.js +3 -2
- package/react/components/fdc3Resolver/ResolverDialog.spec.js.map +1 -1
- package/react/components/fdc3Resolver/ResolverDialog.stories.js +2 -0
- package/react/components/fdc3Resolver/ResolverDialog.stories.js.map +1 -1
- package/react/components/icon/Icon.d.ts +14 -1
- package/react/components/icon/Icon.js +42 -1
- package/react/components/icon/Icon.js.map +1 -1
- package/react/components/legacyControls/FinsembleDialog.d.ts +4 -0
- package/react/components/legacyControls/FinsembleDialog.js +16 -1
- package/react/components/legacyControls/FinsembleDialog.js.map +1 -1
- package/react/components/legacyControls/FinsembleDialogButton.d.ts +3 -0
- package/react/components/legacyControls/FinsembleDialogButton.js +6 -1
- package/react/components/legacyControls/FinsembleDialogButton.js.map +1 -1
- package/react/components/legacyControls/FinsembleDialogQuestion.d.ts +7 -0
- package/react/components/legacyControls/FinsembleDialogQuestion.js +7 -0
- package/react/components/legacyControls/FinsembleDialogQuestion.js.map +1 -1
- package/react/components/legacyControls/FinsembleDialogTextInput.d.ts +3 -0
- package/react/components/legacyControls/FinsembleDialogTextInput.js +14 -0
- package/react/components/legacyControls/FinsembleDialogTextInput.js.map +1 -1
- package/react/components/legacyControls/FinsembleDnDContext.d.ts +19 -0
- package/react/components/legacyControls/FinsembleDnDContext.js +133 -8
- package/react/components/legacyControls/FinsembleDnDContext.js.map +1 -1
- package/react/components/legacyControls/FinsembleDraggable.d.ts +3 -0
- package/react/components/legacyControls/FinsembleDraggable.js +3 -0
- package/react/components/legacyControls/FinsembleDraggable.js.map +1 -1
- package/react/components/legacyControls/FinsembleHoverDetector.d.ts +15 -0
- package/react/components/legacyControls/FinsembleHoverDetector.js +26 -1
- package/react/components/legacyControls/FinsembleHoverDetector.js.map +1 -1
- package/react/components/legacyControls/FinsembleMenuSection.d.ts +4 -0
- package/react/components/legacyControls/FinsembleMenuSection.js +38 -0
- package/react/components/legacyControls/FinsembleMenuSection.js.map +1 -1
- package/react/components/legacyControls/tests/FinsembleDialogButton.spec.js +1 -0
- package/react/components/legacyControls/tests/FinsembleDialogButton.spec.js.map +1 -1
- package/react/components/legacyControls/tests/FinsembleDialogTextInput.spec.js +1 -0
- package/react/components/legacyControls/tests/FinsembleDialogTextInput.spec.js.map +1 -1
- package/react/components/linker/LinkerMenu.d.ts +3 -0
- package/react/components/linker/LinkerMenu.js +21 -0
- package/react/components/linker/LinkerMenu.js.map +1 -1
- package/react/components/linker/LinkerMenuDeprecated.d.ts +3 -0
- package/react/components/linker/LinkerMenuDeprecated.js +9 -0
- package/react/components/linker/LinkerMenuDeprecated.js.map +1 -1
- package/react/components/linker/remoteRedux.js +1 -0
- package/react/components/linker/remoteRedux.js.map +1 -1
- package/react/components/menu/Menu.d.ts +15 -0
- package/react/components/menu/Menu.js +15 -0
- package/react/components/menu/Menu.js.map +1 -1
- package/react/components/menu/MenuAutoResizer.d.ts +7 -0
- package/react/components/menu/MenuAutoResizer.js +27 -0
- package/react/components/menu/MenuAutoResizer.js.map +1 -1
- package/react/components/menu/MenuContent.d.ts +4 -0
- package/react/components/menu/MenuContent.js +4 -0
- package/react/components/menu/MenuContent.js.map +1 -1
- package/react/components/menu/MenuHotKey.d.ts +14 -0
- package/react/components/menu/MenuHotKey.js +15 -0
- package/react/components/menu/MenuHotKey.js.map +1 -1
- package/react/components/menu/MenuItem.d.ts +8 -0
- package/react/components/menu/MenuItem.js +13 -2
- package/react/components/menu/MenuItem.js.map +1 -1
- package/react/components/menu/MenuPortal.js +125 -24
- package/react/components/menu/MenuPortal.js.map +1 -1
- package/react/components/menu/MenuShell.d.ts +16 -0
- package/react/components/menu/MenuShell.js +26 -0
- package/react/components/menu/MenuShell.js.map +1 -1
- package/react/components/menu/MenuToggle.d.ts +3 -0
- package/react/components/menu/MenuToggle.js +5 -2
- package/react/components/menu/MenuToggle.js.map +1 -1
- package/react/components/menu/keyboardNavigation.d.ts +13 -22
- package/react/components/menu/keyboardNavigation.js +165 -160
- package/react/components/menu/keyboardNavigation.js.map +1 -1
- package/react/components/menu/menuContext.d.ts +6 -0
- package/react/components/menu/menuContext.js +6 -0
- package/react/components/menu/menuContext.js.map +1 -1
- package/react/components/menu/menuHelpers.d.ts +22 -0
- package/react/components/menu/menuHelpers.js +58 -1
- package/react/components/menu/menuHelpers.js.map +1 -1
- package/react/components/notifications/components/drawer/DrawerControls.js +47 -25
- package/react/components/notifications/components/drawer/DrawerControls.js.map +1 -1
- package/react/components/notifications/components/drawer/DrawerHeader.js +5 -0
- package/react/components/notifications/components/drawer/DrawerHeader.js.map +1 -1
- package/react/components/notifications/components/notificationsCenter/NotificationsCenter.js +37 -6
- package/react/components/notifications/components/notificationsCenter/NotificationsCenter.js.map +1 -1
- package/react/components/notifications/components/notificationsToasts/NotificationsToasts.js +3 -0
- package/react/components/notifications/components/notificationsToasts/NotificationsToasts.js.map +1 -1
- package/react/components/notifications/components/shared/CheckButton.js +19 -8
- package/react/components/notifications/components/shared/CheckButton.js.map +1 -1
- package/react/components/notifications/components/shared/NotificationCardShell.d.ts +9 -0
- package/react/components/notifications/components/shared/NotificationCardShell.js +15 -7
- package/react/components/notifications/components/shared/NotificationCardShell.js.map +1 -1
- package/react/components/notifications/components/shared/OverflowMenu.d.ts +4 -0
- package/react/components/notifications/components/shared/OverflowMenu.js +16 -2
- package/react/components/notifications/components/shared/OverflowMenu.js.map +1 -1
- package/react/components/notifications/components/shared/notificationCard/NotificationCardBodyShell.js +2 -1
- package/react/components/notifications/components/shared/notificationCard/NotificationCardBodyShell.js.map +1 -1
- package/react/components/notifications/components/shared/notificationCard/NotificationCardHeaderShell.js +2 -1
- package/react/components/notifications/components/shared/notificationCard/NotificationCardHeaderShell.js.map +1 -1
- package/react/components/notifications/components/views/CardView.js +8 -3
- package/react/components/notifications/components/views/CardView.js.map +1 -1
- package/react/components/notifications/components/views/ListView.js +11 -1
- package/react/components/notifications/components/views/ListView.js.map +1 -1
- package/react/components/notifications/notificationsContext.d.ts +4 -0
- package/react/components/notifications/notificationsContext.js +4 -0
- package/react/components/notifications/notificationsContext.js.map +1 -1
- package/react/components/notifications/types.d.ts +6 -0
- package/react/components/notifications/types.js.map +1 -1
- package/react/components/notifications/utils.d.ts +4 -0
- package/react/components/notifications/utils.js +4 -0
- package/react/components/notifications/utils.js.map +1 -1
- package/react/components/processMonitor/ProcessMonitor.d.ts +3 -0
- package/react/components/processMonitor/ProcessMonitor.js +21 -3
- package/react/components/processMonitor/ProcessMonitor.js.map +1 -1
- package/react/components/processMonitor/components/ChildWindow.d.ts +3 -0
- package/react/components/processMonitor/components/ChildWindow.js +5 -0
- package/react/components/processMonitor/components/ChildWindow.js.map +1 -1
- package/react/components/processMonitor/components/ListHeader.d.ts +5 -0
- package/react/components/processMonitor/components/ListHeader.js +7 -0
- package/react/components/processMonitor/components/ListHeader.js.map +1 -1
- package/react/components/processMonitor/components/ProcessStatistics.js +12 -3
- package/react/components/processMonitor/components/ProcessStatistics.js.map +1 -1
- package/react/components/processMonitor/constants.js +6 -0
- package/react/components/processMonitor/constants.js.map +1 -1
- package/react/components/processMonitor/helpers.d.ts +13 -0
- package/react/components/processMonitor/helpers.js +27 -6
- package/react/components/processMonitor/helpers.js.map +1 -1
- package/react/components/processMonitor/helpers.spec.js +7 -3
- package/react/components/processMonitor/helpers.spec.js.map +1 -1
- package/react/components/processMonitor/stores/ProcessMonitorStore.d.ts +39 -0
- package/react/components/processMonitor/stores/ProcessMonitorStore.js +50 -0
- package/react/components/processMonitor/stores/ProcessMonitorStore.js.map +1 -1
- package/react/components/quickComponentForm/QuickComponentForm.d.ts +3 -0
- package/react/components/quickComponentForm/QuickComponentForm.js +20 -0
- package/react/components/quickComponentForm/QuickComponentForm.js.map +1 -1
- package/react/components/quickComponentForm/quickComponent.css +1 -1
- package/react/components/sdd/AddApp.d.ts +7 -4
- package/react/components/sdd/AddApp.js +144 -34
- package/react/components/sdd/AddApp.js.map +1 -1
- package/react/components/sdd/AppEditAccess.d.ts +4 -3
- package/react/components/sdd/AppEditAccess.js +8 -0
- package/react/components/sdd/AppEditAccess.js.map +1 -1
- package/react/components/sdd/AppEditPage.d.ts +6 -4
- package/react/components/sdd/AppEditPage.js +205 -393
- package/react/components/sdd/AppEditPage.js.map +1 -1
- package/react/components/sdd/Appearance.css +1 -1
- package/react/components/sdd/Appearance.d.ts +2 -1
- package/react/components/sdd/Appearance.js +18 -7
- package/react/components/sdd/Appearance.js.map +1 -1
- package/react/components/sdd/Application.d.ts +5 -4
- package/react/components/sdd/Application.js +94 -44
- package/react/components/sdd/Application.js.map +1 -1
- package/react/components/sdd/Applications.d.ts +12 -11
- package/react/components/sdd/Applications.js +110 -15
- package/react/components/sdd/Applications.js.map +1 -1
- package/react/components/sdd/AssetsPage.css +3 -3
- package/react/components/sdd/Authentication.js +1 -6
- package/react/components/sdd/Authentication.js.map +1 -1
- package/react/components/sdd/AuthenticationProviderConfig.js +5 -3
- package/react/components/sdd/AuthenticationProviderConfig.js.map +1 -1
- package/react/components/sdd/EditPreload.d.ts +4 -3
- package/react/components/sdd/EditPreload.js +49 -22
- package/react/components/sdd/EditPreload.js.map +1 -1
- package/react/components/sdd/Export.d.ts +7 -6
- package/react/components/sdd/Export.js +4 -3
- package/react/components/sdd/Export.js.map +1 -1
- package/react/components/sdd/ExportCloud.js +4 -0
- package/react/components/sdd/ExportCloud.js.map +1 -1
- package/react/components/sdd/GettingStarted.js +3 -3
- package/react/components/sdd/GettingStarted.js.map +1 -1
- package/react/components/sdd/Navigation.js +28 -4
- package/react/components/sdd/Navigation.js.map +1 -1
- package/react/components/sdd/OptionalSettingsView.d.ts +6 -5
- package/react/components/sdd/OptionalSettingsView.js +2 -10
- package/react/components/sdd/OptionalSettingsView.js.map +1 -1
- package/react/components/sdd/ProjectErrors.js +1 -1
- package/react/components/sdd/ProjectErrors.js.map +1 -1
- package/react/components/sdd/Publish.js +4 -2
- package/react/components/sdd/Publish.js.map +1 -1
- package/react/components/sdd/PublishProgress.js +11 -1
- package/react/components/sdd/PublishProgress.js.map +1 -1
- package/react/components/sdd/SmartDesktopDesigner.d.ts +17 -16
- package/react/components/sdd/SmartDesktopDesigner.js +54 -34
- package/react/components/sdd/SmartDesktopDesigner.js.map +1 -1
- package/react/components/sdd/ThemePage.css +6 -23
- package/react/components/sdd/ThemePage.js +8 -5
- package/react/components/sdd/ThemePage.js.map +1 -1
- package/react/components/sdd/Themes.d.ts +2 -1
- package/react/components/sdd/Themes.js +4 -2
- package/react/components/sdd/Themes.js.map +1 -1
- package/react/components/sdd/Toolbar.d.ts +5 -4
- package/react/components/sdd/Toolbar.js +18 -9
- package/react/components/sdd/Toolbar.js.map +1 -1
- package/react/components/sdd/appEditPage/Behavior.d.ts +34 -0
- package/react/components/sdd/appEditPage/Behavior.js +134 -0
- package/react/components/sdd/appEditPage/Behavior.js.map +1 -0
- package/react/components/sdd/appEditPage/Component.d.ts +22 -0
- package/react/components/sdd/appEditPage/Component.js +76 -0
- package/react/components/sdd/appEditPage/Component.js.map +1 -0
- package/react/components/sdd/appEditPage/DebugToolkit.d.ts +9 -0
- package/react/components/sdd/appEditPage/DebugToolkit.js +20 -0
- package/react/components/sdd/appEditPage/DebugToolkit.js.map +1 -0
- package/react/components/sdd/appEditPage/Interop.d.ts +10 -0
- package/react/components/sdd/appEditPage/Interop.js +40 -0
- package/react/components/sdd/appEditPage/Interop.js.map +1 -0
- package/react/components/sdd/appEditPage/Position.d.ts +18 -0
- package/react/components/sdd/appEditPage/Position.js +72 -0
- package/react/components/sdd/appEditPage/Position.js.map +1 -0
- package/react/components/sdd/appEditPage/Preloads.d.ts +9 -0
- package/react/components/sdd/appEditPage/Preloads.js +16 -0
- package/react/components/sdd/appEditPage/Preloads.js.map +1 -0
- package/react/components/sdd/appEditPage/SelectConnect.d.ts +15 -0
- package/react/components/sdd/appEditPage/SelectConnect.js +28 -0
- package/react/components/sdd/appEditPage/SelectConnect.js.map +1 -0
- package/react/components/sdd/appEditPage/Workspace.d.ts +12 -0
- package/react/components/sdd/appEditPage/Workspace.js +30 -0
- package/react/components/sdd/appEditPage/Workspace.js.map +1 -0
- package/react/components/sdd/common/getCSSVars.js +7 -2
- package/react/components/sdd/common/getCSSVars.js.map +1 -1
- package/react/components/sdd/common/setPreloadDefaults.d.ts +1 -1
- package/react/components/sdd/common/setPreloadDefaults.js +9 -4
- package/react/components/sdd/common/setPreloadDefaults.js.map +1 -1
- package/react/components/sdd/common/views.js +7 -4
- package/react/components/sdd/common/views.js.map +1 -1
- package/react/components/sdd/css/addApp.css +65 -0
- package/react/components/sdd/css/appearance.css +6 -0
- package/react/components/sdd/css/applications.css +27 -34
- package/react/components/sdd/css/authentication.css +7 -6
- package/react/components/sdd/css/buttons.css +1 -1
- package/react/components/sdd/css/export.css +5 -3
- package/react/components/sdd/css/getting-started.css +2 -2
- package/react/components/sdd/css/nav.css +11 -14
- package/react/components/sdd/css/project-header.css +5 -7
- package/react/components/sdd/css/styles.css +29 -23
- package/react/components/sdd/css/views.css +4 -3
- package/react/components/sdd/fixtures/apps.js +12 -0
- package/react/components/sdd/fixtures/apps.js.map +1 -1
- package/react/components/sdd/fixtures/authenticationProps.js +15 -1
- package/react/components/sdd/fixtures/authenticationProps.js.map +1 -1
- package/react/components/sdd/fixtures/configTemplate.js +1 -0
- package/react/components/sdd/fixtures/configTemplate.js.map +1 -1
- package/react/components/sdd/fixtures/preloads.js +14 -12
- package/react/components/sdd/fixtures/preloads.js.map +1 -1
- package/react/components/sdd/fixtures/publishProgress.js +40 -0
- package/react/components/sdd/fixtures/publishProgress.js.map +1 -1
- package/react/components/sdd/sdd_helpers.d.ts +6 -0
- package/react/components/sdd/sdd_helpers.js +6 -0
- package/react/components/sdd/sdd_helpers.js.map +1 -1
- package/react/components/sdd/smartDesktopClient.d.ts +466 -0
- package/react/components/sdd/smartDesktopClient.js +906 -0
- package/react/components/sdd/smartDesktopClient.js.map +1 -0
- package/react/components/sdd/smartDesktopClient.spec.d.ts +1 -0
- package/react/components/sdd/smartDesktopClient.spec.js +64 -0
- package/react/components/sdd/smartDesktopClient.spec.js.map +1 -0
- package/react/components/sdd/stories/AddApp.stories.d.ts +11 -0
- package/react/components/sdd/stories/AddApp.stories.js +26 -0
- package/react/components/sdd/stories/AddApp.stories.js.map +1 -0
- package/react/components/sdd/stories/AppEditPage.stories.d.ts +5 -1
- package/react/components/sdd/stories/AppEditPage.stories.js +5 -0
- package/react/components/sdd/stories/AppEditPage.stories.js.map +1 -1
- package/react/components/sdd/stories/Appearance.stories.d.ts +1 -1
- package/react/components/sdd/stories/Appearance.stories.js +2 -0
- package/react/components/sdd/stories/Appearance.stories.js.map +1 -1
- package/react/components/sdd/stories/Authentication.stories.js +2 -16
- package/react/components/sdd/stories/Authentication.stories.js.map +1 -1
- package/react/components/sdd/stories/OptionalSettingsView.stories.js +1 -1
- package/react/components/sdd/stories/OptionalSettingsView.stories.js.map +1 -1
- package/react/components/sdd/stories/SmartDesktopDesigner.stories.d.ts +1 -1
- package/react/components/sdd/stories/SmartDesktopDesigner.stories.js +3 -0
- package/react/components/sdd/stories/SmartDesktopDesigner.stories.js.map +1 -1
- package/react/components/sdd/stories/Themes.stories.d.ts +1 -1
- package/react/components/sdd/stories/Themes.stories.js +1 -0
- package/react/components/sdd/stories/Themes.stories.js.map +1 -1
- package/react/components/sdd/tests/AddApp.spec.d.ts +1 -0
- package/react/components/sdd/tests/AddApp.spec.js +133 -0
- package/react/components/sdd/tests/AddApp.spec.js.map +1 -0
- package/react/components/sdd/tests/AppEditPage.spec.js +108 -23
- package/react/components/sdd/tests/AppEditPage.spec.js.map +1 -1
- package/react/components/sdd/tests/Application.spec.js +351 -369
- package/react/components/sdd/tests/Application.spec.js.map +1 -1
- package/react/components/sdd/tests/Applications.spec.d.ts +1 -1
- package/react/components/sdd/tests/Applications.spec.js +30 -50
- package/react/components/sdd/tests/Applications.spec.js.map +1 -1
- package/react/components/sdd/tests/Authentication.spec.js +8 -1
- package/react/components/sdd/tests/Authentication.spec.js.map +1 -1
- package/react/components/sdd/tests/ContentHeader.spec.js +2 -0
- package/react/components/sdd/tests/ContentHeader.spec.js.map +1 -1
- package/react/components/sdd/tests/EditPreload.spec.js +63 -7
- package/react/components/sdd/tests/EditPreload.spec.js.map +1 -1
- package/react/components/sdd/tests/Export.spec.js +8 -1
- package/react/components/sdd/tests/Export.spec.js.map +1 -1
- package/react/components/sdd/tests/ItemList.spec.js +4 -0
- package/react/components/sdd/tests/ItemList.spec.js.map +1 -1
- package/react/components/sdd/tests/Navigation.spec.js +2 -2
- package/react/components/sdd/tests/Navigation.spec.js.map +1 -1
- package/react/components/sdd/tests/OptionalSettingsView.spec.js +264 -0
- package/react/components/sdd/tests/OptionalSettingsView.spec.js.map +1 -1
- package/react/components/sdd/tests/ProjectErrors.spec.js +3 -1
- package/react/components/sdd/tests/ProjectErrors.spec.js.map +1 -1
- package/react/components/sdd/tests/SmartDesktopDesigner.spec.js +2 -2
- package/react/components/sdd/tests/SmartDesktopDesigner.spec.js.map +1 -1
- package/react/components/sdd/tests/Themes.spec.js +1 -1
- package/react/components/sdd/tests/Themes.spec.js.map +1 -1
- package/react/components/sdd/tests/Toolbar.spec.js +53 -0
- package/react/components/sdd/tests/Toolbar.spec.js.map +1 -1
- package/react/components/sdd/tests/a11y_helper.js +8 -0
- package/react/components/sdd/tests/a11y_helper.js.map +1 -1
- package/react/components/search/Highlight.d.ts +6 -0
- package/react/components/search/Highlight.js +19 -0
- package/react/components/search/Highlight.js.map +1 -1
- package/react/components/search/Highlight.stories.js +1 -1
- package/react/components/search/Highlight.stories.js.map +1 -1
- package/react/components/search/Search.js +1 -1
- package/react/components/search/Search.js.map +1 -1
- package/react/components/search/SearchBestMatch.d.ts +4 -0
- package/react/components/search/SearchBestMatch.js +11 -0
- package/react/components/search/SearchBestMatch.js.map +1 -1
- package/react/components/search/SearchInput.d.ts +5 -0
- package/react/components/search/SearchInput.js +6 -0
- package/react/components/search/SearchInput.js.map +1 -1
- package/react/components/search/SearchProviderResults.js +2 -0
- package/react/components/search/SearchProviderResults.js.map +1 -1
- package/react/components/search/SearchResult.d.ts +5 -0
- package/react/components/search/SearchResult.js +6 -0
- package/react/components/search/SearchResult.js.map +1 -1
- package/react/components/search/SearchResult.spec.d.ts +1 -0
- package/react/components/search/SearchResult.spec.js +46 -0
- package/react/components/search/SearchResult.spec.js.map +1 -0
- package/react/components/search/SearchResult.stories.d.ts +16 -0
- package/react/components/search/SearchResult.stories.js +113 -0
- package/react/components/search/SearchResult.stories.js.map +1 -0
- package/react/components/search/SearchResults.js +5 -1
- package/react/components/search/SearchResults.js.map +1 -1
- package/react/components/search/SearchResults.spec.d.ts +1 -0
- package/react/components/search/SearchResults.spec.js +35 -0
- package/react/components/search/SearchResults.spec.js.map +1 -0
- package/react/components/search/SearchResults.stories.d.ts +11 -0
- package/react/components/search/SearchResults.stories.js +458 -0
- package/react/components/search/SearchResults.stories.js.map +1 -0
- package/react/components/shared/Animate.d.ts +5 -0
- package/react/components/shared/Animate.js +12 -1
- package/react/components/shared/Animate.js.map +1 -1
- package/react/components/shared/DefaultDropdownButton.js +26 -6
- package/react/components/shared/DefaultDropdownButton.js.map +1 -1
- package/react/components/shared/Tag.d.ts +0 -4
- package/react/components/shared/Tag.js +4 -0
- package/react/components/shared/Tag.js.map +1 -1
- package/react/components/shared/TagsMenu.d.ts +6 -0
- package/react/components/shared/TagsMenu.js +7 -0
- package/react/components/shared/TagsMenu.js.map +1 -1
- package/react/components/shared/addProtocolToValidURL.d.ts +6 -0
- package/react/components/shared/addProtocolToValidURL.js +6 -0
- package/react/components/shared/addProtocolToValidURL.js.map +1 -1
- package/react/components/shared/openQuitConfirmationDialog.d.ts +1 -1
- package/react/components/shared/openQuitConfirmationDialog.js +4 -4
- package/react/components/shared/openQuitConfirmationDialog.js.map +1 -1
- package/react/components/shared/tests/DefaultDropdownButton.spec.js +12 -0
- package/react/components/shared/tests/DefaultDropdownButton.spec.js.map +1 -1
- package/react/components/shared/tests/addProtocolToValidURL.spec.js +1 -0
- package/react/components/shared/tests/addProtocolToValidURL.spec.js.map +1 -1
- package/react/components/shared/validateURL.d.ts +18 -0
- package/react/components/shared/validateURL.js +24 -5
- package/react/components/shared/validateURL.js.map +1 -1
- package/react/components/singleInputDialog/SingleInputDialog.css +1 -1
- package/react/components/singleInputDialog/SingleInputDialog.d.ts +3 -0
- package/react/components/singleInputDialog/SingleInputDialog.js +46 -0
- package/react/components/singleInputDialog/SingleInputDialog.js.map +1 -1
- package/react/components/singleInputDialog/SingleInputDialog.stories.js +2 -2
- package/react/components/singleInputDialog/SingleInputDialog.stories.js.map +1 -1
- package/react/components/smartDesktopDesigner/SmartDesktopDesigner.d.ts +1 -16
- package/react/components/smartDesktopDesigner/SmartDesktopDesigner.js +5 -3
- package/react/components/smartDesktopDesigner/SmartDesktopDesigner.js.map +1 -1
- package/react/components/system/System.d.ts +22 -0
- package/react/components/system/System.js +23 -1
- package/react/components/system/System.js.map +1 -1
- package/react/components/system/System.stories.js +1 -0
- package/react/components/system/System.stories.js.map +1 -1
- package/react/components/system/SystemTrayComponentShell.d.ts +6 -0
- package/react/components/system/SystemTrayComponentShell.js +9 -0
- package/react/components/system/SystemTrayComponentShell.js.map +1 -1
- package/react/components/toolbar/AutoArrange.d.ts +5 -0
- package/react/components/toolbar/AutoArrange.js +8 -1
- package/react/components/toolbar/AutoArrange.js.map +1 -1
- package/react/components/toolbar/AutoArrange.spec.js +10 -4
- package/react/components/toolbar/AutoArrange.spec.js.map +1 -1
- package/react/components/toolbar/AutoArrange.stories.js +1 -0
- package/react/components/toolbar/AutoArrange.stories.js.map +1 -1
- package/react/components/toolbar/DragHandle.d.ts +4 -0
- package/react/components/toolbar/DragHandle.js +11 -0
- package/react/components/toolbar/DragHandle.js.map +1 -1
- package/react/components/toolbar/DragHandle.spec.js +1 -0
- package/react/components/toolbar/DragHandle.spec.js.map +1 -1
- package/react/components/toolbar/DragHandle.stories.js +1 -0
- package/react/components/toolbar/DragHandle.stories.js.map +1 -1
- package/react/components/toolbar/MinimizeAll.d.ts +4 -0
- package/react/components/toolbar/MinimizeAll.js +7 -1
- package/react/components/toolbar/MinimizeAll.js.map +1 -1
- package/react/components/toolbar/MinimizeAll.spec.js +1 -0
- package/react/components/toolbar/MinimizeAll.spec.js.map +1 -1
- package/react/components/toolbar/MinimizeAll.stories.js +1 -0
- package/react/components/toolbar/MinimizeAll.stories.js.map +1 -1
- package/react/components/toolbar/NotificationControl.d.ts +5 -0
- package/react/components/toolbar/NotificationControl.js +8 -1
- package/react/components/toolbar/NotificationControl.js.map +1 -1
- package/react/components/toolbar/RevealAll.d.ts +4 -0
- package/react/components/toolbar/RevealAll.js +7 -1
- package/react/components/toolbar/RevealAll.js.map +1 -1
- package/react/components/toolbar/RevealAll.spec.js +1 -0
- package/react/components/toolbar/RevealAll.spec.js.map +1 -1
- package/react/components/toolbar/RevealAll.stories.js +1 -0
- package/react/components/toolbar/RevealAll.stories.js.map +1 -1
- package/react/components/toolbar/SddButton.d.ts +4 -0
- package/react/components/toolbar/SddButton.js +4 -0
- package/react/components/toolbar/SddButton.js.map +1 -1
- package/react/components/toolbar/ToolbarIcon.d.ts +4 -0
- package/react/components/toolbar/ToolbarIcon.js +6 -2
- package/react/components/toolbar/ToolbarIcon.js.map +1 -1
- package/react/components/toolbar/ToolbarSection.d.ts +8 -9
- package/react/components/toolbar/ToolbarSection.js +21 -7
- package/react/components/toolbar/ToolbarSection.js.map +1 -1
- package/react/components/toolbar/ToolbarShell.d.ts +5 -0
- package/react/components/toolbar/ToolbarShell.js +7 -0
- package/react/components/toolbar/ToolbarShell.js.map +1 -1
- package/react/components/toolbar/advancedAppLauncher/AdvancedAppLauncher.d.ts +16 -0
- package/react/components/toolbar/advancedAppLauncher/AdvancedAppLauncher.js +20 -0
- package/react/components/toolbar/advancedAppLauncher/AdvancedAppLauncher.js.map +1 -1
- package/react/components/toolbar/advancedAppLauncher/components/AddNewAppForm.d.ts +52 -0
- package/react/components/toolbar/advancedAppLauncher/components/AddNewAppForm.js +58 -0
- package/react/components/toolbar/advancedAppLauncher/components/AddNewAppForm.js.map +1 -1
- package/react/components/toolbar/advancedAppLauncher/components/AddNewFolder.d.ts +5 -0
- package/react/components/toolbar/advancedAppLauncher/components/AddNewFolder.js +5 -0
- package/react/components/toolbar/advancedAppLauncher/components/AddNewFolder.js.map +1 -1
- package/react/components/toolbar/advancedAppLauncher/components/AppActionsMenu.d.ts +27 -0
- package/react/components/toolbar/advancedAppLauncher/components/AppActionsMenu.js +49 -0
- package/react/components/toolbar/advancedAppLauncher/components/AppActionsMenu.js.map +1 -1
- package/react/components/toolbar/advancedAppLauncher/components/AppDefinition.d.ts +13 -0
- package/react/components/toolbar/advancedAppLauncher/components/AppDefinition.js +14 -0
- package/react/components/toolbar/advancedAppLauncher/components/AppDefinition.js.map +1 -1
- package/react/components/toolbar/advancedAppLauncher/components/Content.d.ts +5 -0
- package/react/components/toolbar/advancedAppLauncher/components/Content.js +19 -0
- package/react/components/toolbar/advancedAppLauncher/components/Content.js.map +1 -1
- package/react/components/toolbar/advancedAppLauncher/components/FilterSort.d.ts +4 -0
- package/react/components/toolbar/advancedAppLauncher/components/FilterSort.js +4 -0
- package/react/components/toolbar/advancedAppLauncher/components/FilterSort.js.map +1 -1
- package/react/components/toolbar/advancedAppLauncher/components/FoldersList.d.ts +16 -0
- package/react/components/toolbar/advancedAppLauncher/components/FoldersList.js +39 -0
- package/react/components/toolbar/advancedAppLauncher/components/FoldersList.js.map +1 -1
- package/react/components/toolbar/advancedAppLauncher/components/LeftNavBottomLinks.d.ts +4 -0
- package/react/components/toolbar/advancedAppLauncher/components/LeftNavBottomLinks.js +9 -0
- package/react/components/toolbar/advancedAppLauncher/components/LeftNavBottomLinks.js.map +1 -1
- package/react/components/toolbar/advancedAppLauncher/components/SearchBox.js +3 -0
- package/react/components/toolbar/advancedAppLauncher/components/SearchBox.js.map +1 -1
- package/react/components/toolbar/advancedAppLauncher/components/TagsMenu.d.ts +6 -0
- package/react/components/toolbar/advancedAppLauncher/components/TagsMenu.js +7 -0
- package/react/components/toolbar/advancedAppLauncher/components/TagsMenu.js.map +1 -1
- package/react/components/toolbar/advancedAppLauncher/components/ToggleFavoriteDropdown.d.ts +5 -0
- package/react/components/toolbar/advancedAppLauncher/components/ToggleFavoriteDropdown.js +5 -0
- package/react/components/toolbar/advancedAppLauncher/components/ToggleFavoriteDropdown.js.map +1 -1
- package/react/components/toolbar/advancedAppLauncher/modules/AppDirectory.d.ts +5 -0
- package/react/components/toolbar/advancedAppLauncher/modules/AppDirectory.js +5 -0
- package/react/components/toolbar/advancedAppLauncher/modules/AppDirectory.js.map +1 -1
- package/react/components/toolbar/advancedAppLauncher/modules/FDC3.d.ts +37 -0
- package/react/components/toolbar/advancedAppLauncher/modules/FDC3.js +40 -0
- package/react/components/toolbar/advancedAppLauncher/modules/FDC3.js.map +1 -1
- package/react/components/toolbar/advancedAppLauncher/stores/StoreActions.d.ts +3 -0
- package/react/components/toolbar/advancedAppLauncher/stores/StoreActions.js +83 -1
- package/react/components/toolbar/advancedAppLauncher/stores/StoreActions.js.map +1 -1
- package/react/components/toolbar/advancedAppLauncher/utils/sort-functions.d.ts +10 -0
- package/react/components/toolbar/advancedAppLauncher/utils/sort-functions.js +12 -3
- package/react/components/toolbar/advancedAppLauncher/utils/sort-functions.js.map +1 -1
- package/react/components/toolbar/appLauncher/AppLauncherMenu.d.ts +18 -0
- package/react/components/toolbar/appLauncher/AppLauncherMenu.js +20 -0
- package/react/components/toolbar/appLauncher/AppLauncherMenu.js.map +1 -1
- package/react/components/toolbar/appLauncher/StaticAppLauncherMenu.d.ts +9 -0
- package/react/components/toolbar/appLauncher/StaticAppLauncherMenu.js +12 -0
- package/react/components/toolbar/appLauncher/StaticAppLauncherMenu.js.map +1 -1
- package/react/components/toolbar/appLauncher/appLauncher.css +1 -1
- package/react/components/toolbar/appLauncher/components/componentList.d.ts +3 -0
- package/react/components/toolbar/appLauncher/components/componentList.js +17 -3
- package/react/components/toolbar/appLauncher/components/componentList.js.map +1 -1
- package/react/components/toolbar/appLauncher/stores/appLauncherStore.d.ts +6 -0
- package/react/components/toolbar/appLauncher/stores/appLauncherStore.js +26 -0
- package/react/components/toolbar/appLauncher/stores/appLauncherStore.js.map +1 -1
- package/react/components/toolbar/dashbar/Dashbar.js +91 -15
- package/react/components/toolbar/dashbar/Dashbar.js.map +1 -1
- package/react/components/toolbar/dashbar/DashbarItem.js +5 -0
- package/react/components/toolbar/dashbar/DashbarItem.js.map +1 -1
- package/react/components/toolbar/workspaceManagementMenu/WorkspaceManagementMenu.d.ts +8 -1
- package/react/components/toolbar/workspaceManagementMenu/WorkspaceManagementMenu.js +7 -0
- package/react/components/toolbar/workspaceManagementMenu/WorkspaceManagementMenu.js.map +1 -1
- package/react/components/toolbar/workspaceManagementMenu/components/Workspace.d.ts +17 -1
- package/react/components/toolbar/workspaceManagementMenu/components/Workspace.js +21 -1
- package/react/components/toolbar/workspaceManagementMenu/components/Workspace.js.map +1 -1
- package/react/components/toolbar/workspaceManagementMenu/components/WorkspaceActions.d.ts +26 -0
- package/react/components/toolbar/workspaceManagementMenu/components/WorkspaceActions.js +29 -0
- package/react/components/toolbar/workspaceManagementMenu/components/WorkspaceActions.js.map +1 -1
- package/react/components/toolbar/workspaceManagementMenu/components/WorkspaceList.d.ts +6 -1
- package/react/components/toolbar/workspaceManagementMenu/components/WorkspaceList.js +6 -0
- package/react/components/toolbar/workspaceManagementMenu/components/WorkspaceList.js.map +1 -1
- package/react/components/toolbar/workspaceManagementMenu/stores/workspaceManagementMenuStore.d.ts +78 -2
- package/react/components/toolbar/workspaceManagementMenu/stores/workspaceManagementMenuStore.js +191 -40
- package/react/components/toolbar/workspaceManagementMenu/stores/workspaceManagementMenuStore.js.map +1 -1
- package/react/components/toolbar/workspaceManagementMenu/workspaceManagementMenu.css +8 -18
- package/react/components/userPreferences/NotificationsPreferencesContext.d.ts +4 -0
- package/react/components/userPreferences/NotificationsPreferencesContext.js +4 -0
- package/react/components/userPreferences/NotificationsPreferencesContext.js.map +1 -1
- package/react/components/userPreferences/UserPreferenceTypes.d.ts +3 -0
- package/react/components/userPreferences/UserPreferences.d.ts +8 -0
- package/react/components/userPreferences/UserPreferences.js +8 -0
- package/react/components/userPreferences/UserPreferences.js.map +1 -1
- package/react/components/userPreferences/UserPreferencesBase.js +4 -0
- package/react/components/userPreferences/UserPreferencesBase.js.map +1 -1
- package/react/components/userPreferences/components/ContentSection.d.ts +5 -0
- package/react/components/userPreferences/components/ContentSection.js +1 -1
- package/react/components/userPreferences/components/ContentSection.js.map +1 -1
- package/react/components/userPreferences/components/LeftNav.d.ts +4 -0
- package/react/components/userPreferences/components/content/DashbarEditor.js +3 -0
- package/react/components/userPreferences/components/content/DashbarEditor.js.map +1 -1
- package/react/components/userPreferences/components/content/Notifications.js +3 -0
- package/react/components/userPreferences/components/content/Notifications.js.map +1 -1
- package/react/components/userPreferences/components/content/Workspaces.d.ts +14 -2
- package/react/components/userPreferences/components/content/Workspaces.js +78 -38
- package/react/components/userPreferences/components/content/Workspaces.js.map +1 -1
- package/react/components/userPreferences/components/content/notificationViews/NotificationsPreferencesHome.js +7 -3
- package/react/components/userPreferences/components/content/notificationViews/NotificationsPreferencesHome.js.map +1 -1
- package/react/components/userPreferences/components/content/notificationViews/NotificationsSourceTypes.js +3 -0
- package/react/components/userPreferences/components/content/notificationViews/NotificationsSourceTypes.js.map +1 -1
- package/react/components/userPreferences/components/content/notificationViews/NotificationsSourcesPreferences.js +3 -0
- package/react/components/userPreferences/components/content/notificationViews/NotificationsSourcesPreferences.js.map +1 -1
- package/react/components/userPreferences/components/general/ScheduledClose.js +26 -5
- package/react/components/userPreferences/components/general/ScheduledClose.js.map +1 -1
- package/react/components/userPreferences/components/workspaces/WorkspaceButton.js +1 -1
- package/react/components/userPreferences/components/workspaces/WorkspaceButton.js.map +1 -1
- package/react/components/userPreferences/components/workspaces/WorkspaceItem.d.ts +1 -1
- package/react/components/userPreferences/components/workspaces/WorkspaceItem.js +20 -10
- package/react/components/userPreferences/components/workspaces/WorkspaceItem.js.map +1 -1
- package/react/components/userPreferences/stores/UserPreferencesStore.d.ts +18 -1
- package/react/components/userPreferences/stores/UserPreferencesStore.js +35 -6
- package/react/components/userPreferences/stores/UserPreferencesStore.js.map +1 -1
- package/react/components/userPreferences/tests/LeftNav.spec.js +15 -1
- package/react/components/userPreferences/tests/LeftNav.spec.js.map +1 -1
- package/react/components/userPreferences/tests/NotificationsPreferencesHome.spec.js +1 -0
- package/react/components/userPreferences/tests/NotificationsPreferencesHome.spec.js.map +1 -1
- package/react/components/userPreferences/tests/UserPreferencesBase.spec.d.ts +1 -0
- package/react/components/userPreferences/tests/UserPreferencesBase.spec.js +42 -0
- package/react/components/userPreferences/tests/UserPreferencesBase.spec.js.map +1 -0
- package/react/components/userPreferences/tests/Workspace.spec.d.ts +1 -0
- package/react/components/userPreferences/tests/Workspace.spec.js +139 -0
- package/react/components/userPreferences/tests/Workspace.spec.js.map +1 -0
- package/react/components/windowTitleBar/WindowTitleBarShell.d.ts +130 -2
- package/react/components/windowTitleBar/WindowTitleBarShell.js +386 -27
- package/react/components/windowTitleBar/WindowTitleBarShell.js.map +1 -1
- package/react/components/windowTitleBar/components/center/Tab.d.ts +3 -0
- package/react/components/windowTitleBar/components/center/Tab.js +3 -0
- package/react/components/windowTitleBar/components/center/Tab.js.map +1 -1
- package/react/components/windowTitleBar/components/center/TabList.d.ts +90 -0
- package/react/components/windowTitleBar/components/center/TabList.js +170 -4
- package/react/components/windowTitleBar/components/center/TabList.js.map +1 -1
- package/react/components/windowTitleBar/components/left/LinkerButton.d.ts +9 -1
- package/react/components/windowTitleBar/components/left/LinkerButton.js +27 -5
- package/react/components/windowTitleBar/components/left/LinkerButton.js.map +1 -1
- package/react/components/windowTitleBar/components/left/LinkerButtonDeprecated.d.ts +47 -0
- package/react/components/windowTitleBar/components/left/LinkerButtonDeprecated.js +76 -1
- package/react/components/windowTitleBar/components/left/LinkerButtonDeprecated.js.map +1 -1
- package/react/components/windowTitleBar/components/left/LinkerGroups.d.ts +4 -0
- package/react/components/windowTitleBar/components/left/LinkerGroups.js +5 -0
- package/react/components/windowTitleBar/components/left/LinkerGroups.js.map +1 -1
- package/react/components/windowTitleBar/components/left/LinkerGroupsDeprecated.d.ts +18 -0
- package/react/components/windowTitleBar/components/left/LinkerGroupsDeprecated.js +49 -0
- package/react/components/windowTitleBar/components/left/LinkerGroupsDeprecated.js.map +1 -1
- package/react/components/windowTitleBar/components/left/ShareButton.d.ts +17 -0
- package/react/components/windowTitleBar/components/left/ShareButton.js +39 -0
- package/react/components/windowTitleBar/components/left/ShareButton.js.map +1 -1
- package/react/components/windowTitleBar/components/right/AlwaysOnTopButton.js +4 -0
- package/react/components/windowTitleBar/components/right/AlwaysOnTopButton.js.map +1 -1
- package/react/components/windowTitleBar/components/right/CloseButton.d.ts +27 -0
- package/react/components/windowTitleBar/components/right/CloseButton.js +27 -0
- package/react/components/windowTitleBar/components/right/CloseButton.js.map +1 -1
- package/react/components/windowTitleBar/components/right/GroupingButton.d.ts +37 -0
- package/react/components/windowTitleBar/components/right/GroupingButton.js +40 -0
- package/react/components/windowTitleBar/components/right/GroupingButton.js.map +1 -1
- package/react/components/windowTitleBar/components/right/MaximizeButton.d.ts +46 -0
- package/react/components/windowTitleBar/components/right/MaximizeButton.js +54 -0
- package/react/components/windowTitleBar/components/right/MaximizeButton.js.map +1 -1
- package/react/components/windowTitleBar/components/right/MinimizeButton.d.ts +26 -0
- package/react/components/windowTitleBar/components/right/MinimizeButton.js +26 -0
- package/react/components/windowTitleBar/components/right/MinimizeButton.js.map +1 -1
- package/react/components/windowTitleBar/components/windowTitle.d.ts +40 -0
- package/react/components/windowTitleBar/components/windowTitle.js +245 -48
- package/react/components/windowTitleBar/components/windowTitle.js.map +1 -1
- package/react/components/windowTitleBar/stores/windowTitleBarStore.d.ts +5 -0
- package/react/components/windowTitleBar/stores/windowTitleBarStore.js +81 -6
- package/react/components/windowTitleBar/stores/windowTitleBarStore.js.map +1 -1
- package/react/components/yesNoDialog/YesNoDialog.css +1 -1
- package/react/components/yesNoDialog/YesNoDialog.d.ts +3 -0
- package/react/components/yesNoDialog/YesNoDialog.js +64 -1
- package/react/components/yesNoDialog/YesNoDialog.js.map +1 -1
- package/react/components/yesNoDialog/YesNoDialog.spec.js +4 -0
- package/react/components/yesNoDialog/YesNoDialog.spec.js.map +1 -1
- package/react/components/yesNoDialog/YesNoDialog.stories.js +2 -2
- package/react/components/yesNoDialog/YesNoDialog.stories.js.map +1 -1
- package/react/components/yesNoDialog/timer.js +2 -0
- package/react/components/yesNoDialog/timer.js.map +1 -1
- package/react/enzymeSetup.js +10 -0
- package/react/enzymeSetup.js.map +1 -1
- package/react/hooks/useDashbar.js +10 -0
- package/react/hooks/useDashbar.js.map +1 -1
- package/react/hooks/useDeepEffect.d.ts +4 -0
- package/react/hooks/useDeepEffect.js +21 -0
- package/react/hooks/useDeepEffect.js.map +1 -1
- package/react/hooks/useFavorites.d.ts +15 -0
- package/react/hooks/useFavorites.js +3 -0
- package/react/hooks/useFavorites.js.map +1 -1
- package/react/hooks/useFavoritesShell.d.ts +4 -0
- package/react/hooks/useFavoritesShell.js +23 -0
- package/react/hooks/useFavoritesShell.js.map +1 -1
- package/react/hooks/useHotkey.d.ts +6 -0
- package/react/hooks/useHotkey.js +9 -0
- package/react/hooks/useHotkey.js.map +1 -1
- package/react/hooks/useLinker.js +14 -0
- package/react/hooks/useLinker.js.map +1 -1
- package/react/hooks/useMenu.d.ts +29 -0
- package/react/hooks/useMenu.js +12 -1
- package/react/hooks/useMenu.js.map +1 -1
- package/react/hooks/useNotifications.d.ts +44 -0
- package/react/hooks/useNotifications.js +104 -12
- package/react/hooks/useNotifications.js.map +1 -1
- package/react/hooks/useOutsideClickDetector.d.ts +3 -0
- package/react/hooks/useOutsideClickDetector.js +3 -0
- package/react/hooks/useOutsideClickDetector.js.map +1 -1
- package/react/hooks/usePubSub.d.ts +17 -0
- package/react/hooks/usePubSub.js +18 -0
- package/react/hooks/usePubSub.js.map +1 -1
- package/react/hooks/useSearch.d.ts +5 -0
- package/react/hooks/useSearch.js +30 -0
- package/react/hooks/useSearch.js.map +1 -1
- package/react/hooks/useToolbar.d.ts +1 -1
- package/react/hooks/useToolbar.js +54 -2
- package/react/hooks/useToolbar.js.map +1 -1
- package/react/reducers/favoriteReducer.d.ts +3 -0
- package/react/reducers/linkerReducer.d.ts +3 -0
- package/react/reducers/linkerReducer.js +4 -0
- package/react/reducers/linkerReducer.js.map +1 -1
- package/react/reducers/menuReducer.d.ts +28 -0
- package/react/reducers/menuReducer.js +34 -0
- package/react/reducers/menuReducer.js.map +1 -1
- package/react/reducers/rootReducer.d.ts +2 -2
- package/react/reducers/rootReducer.js +3 -0
- package/react/reducers/rootReducer.js.map +1 -1
- package/react/reducers/searchReducer.d.ts +7 -0
- package/react/reducers/searchReducer.js +6 -0
- package/react/reducers/searchReducer.js.map +1 -1
- package/react/reducers/workspaceReducer.js +1 -0
- package/react/reducers/workspaceReducer.js.map +1 -1
- package/react/store.d.ts +8 -4
- package/react/store.js +11 -0
- package/react/store.js.map +1 -1
- package/react/tsconfig.tsbuildinfo +1 -0
- package/react/types/fdc3.d.ts +2 -0
- package/react/types/linkerTypes.d.ts +13 -0
- package/react/types/linkerTypes.js +1 -0
- package/react/types/linkerTypes.js.map +1 -1
- package/react/types/smartDesktopDesignerTypes.d.ts +8 -0
- package/react/types/smartDesktopDesignerTypes.js.map +1 -1
- package/react/types/workspaceTypes.d.ts +8 -0
|
@@ -1,21 +1,27 @@
|
|
|
1
1
|
.finsemble-icon-flag {
|
|
2
2
|
color: #27ae38;
|
|
3
3
|
}
|
|
4
|
+
|
|
4
5
|
.finsemble-icon-window {
|
|
5
6
|
color: #902e57;
|
|
6
7
|
}
|
|
8
|
+
|
|
7
9
|
.finsemble-icon-paint-roller {
|
|
8
10
|
color: #43a5ba;
|
|
9
11
|
}
|
|
12
|
+
|
|
10
13
|
.finsemble-icon-key {
|
|
11
14
|
color: #fdb913;
|
|
12
15
|
}
|
|
16
|
+
|
|
13
17
|
.finsemble-icon-upload {
|
|
14
18
|
color: #3b7262;
|
|
15
19
|
}
|
|
20
|
+
|
|
16
21
|
.finsemble-icon-toolbar {
|
|
17
22
|
color: #902e57;
|
|
18
23
|
}
|
|
24
|
+
|
|
19
25
|
.finsemble-icon-code-block {
|
|
20
26
|
color: #5b606f;
|
|
21
27
|
}
|
|
@@ -4,15 +4,21 @@ body {
|
|
|
4
4
|
|
|
5
5
|
.setup-type-container {
|
|
6
6
|
position: absolute;
|
|
7
|
-
top:
|
|
8
|
-
left:
|
|
9
|
-
bottom:
|
|
10
|
-
right:
|
|
7
|
+
top: 0;
|
|
8
|
+
left: 0;
|
|
9
|
+
bottom: 0;
|
|
10
|
+
right: 0;
|
|
11
11
|
width: 100%;
|
|
12
12
|
height: 100%;
|
|
13
13
|
background-color: #171a20;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
+
.tile-type-buttons {
|
|
17
|
+
display: flex;
|
|
18
|
+
width: 100%;
|
|
19
|
+
justify-content: space-around;
|
|
20
|
+
}
|
|
21
|
+
|
|
16
22
|
.setup-type-container .tile-type-buttons,
|
|
17
23
|
.app-edit .tile-type-buttons {
|
|
18
24
|
max-width: 30em;
|
|
@@ -21,12 +27,6 @@ body {
|
|
|
21
27
|
margin-top: 1em;
|
|
22
28
|
}
|
|
23
29
|
|
|
24
|
-
.tile-type-buttons {
|
|
25
|
-
display: flex;
|
|
26
|
-
width: 100%;
|
|
27
|
-
justify-content: space-around;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
30
|
.active-web .button-container-tile:nth-child(1) button,
|
|
31
31
|
.active-native .button-container-tile:nth-child(2) button {
|
|
32
32
|
border-color: #42a5ba;
|
|
@@ -43,6 +43,7 @@ body {
|
|
|
43
43
|
margin-left: 2em;
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
+
/* stylelint-disable-next-line no-descending-specificity */
|
|
46
47
|
.app-edit-success-content button {
|
|
47
48
|
background-color: #373b43;
|
|
48
49
|
margin-left: 0.9em;
|
|
@@ -52,11 +53,13 @@ body {
|
|
|
52
53
|
text-align: right;
|
|
53
54
|
}
|
|
54
55
|
|
|
56
|
+
/* stylelint-disable-next-line no-descending-specificity */
|
|
55
57
|
.app-edit-success-actions button {
|
|
56
58
|
display: inline-block;
|
|
57
59
|
background-color: #42a5ba;
|
|
58
60
|
}
|
|
59
61
|
|
|
62
|
+
/* stylelint-disable-next-line no-descending-specificity */
|
|
60
63
|
.app-edit-success-actions button:hover {
|
|
61
64
|
background-color: #36788b;
|
|
62
65
|
}
|
|
@@ -105,7 +108,7 @@ label[for="menu-group"] {
|
|
|
105
108
|
}
|
|
106
109
|
|
|
107
110
|
.app-edit-advanced p {
|
|
108
|
-
margin-left:
|
|
111
|
+
margin-left: 0;
|
|
109
112
|
}
|
|
110
113
|
|
|
111
114
|
.app-edit-advanced p .finsemble-icon {
|
|
@@ -114,7 +117,7 @@ label[for="menu-group"] {
|
|
|
114
117
|
}
|
|
115
118
|
|
|
116
119
|
.app-edit-advanced-content {
|
|
117
|
-
max-height:
|
|
120
|
+
max-height: 0;
|
|
118
121
|
overflow: hidden;
|
|
119
122
|
}
|
|
120
123
|
|
|
@@ -128,9 +131,10 @@ label[for="menu-group"] {
|
|
|
128
131
|
|
|
129
132
|
.quick-add-app.collapsed {
|
|
130
133
|
visibility: hidden;
|
|
131
|
-
height:
|
|
132
|
-
max-height:
|
|
134
|
+
height: 0;
|
|
135
|
+
max-height: 0;
|
|
133
136
|
}
|
|
137
|
+
|
|
134
138
|
.quick-add-app {
|
|
135
139
|
padding-left: 19px;
|
|
136
140
|
visibility: visible;
|
|
@@ -140,28 +144,17 @@ label[for="menu-group"] {
|
|
|
140
144
|
transition: 1s max-height ease-in;
|
|
141
145
|
}
|
|
142
146
|
|
|
143
|
-
.quick-add-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
color: #aaaaaa;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
.quick-add-close button {
|
|
151
|
-
color: #aaaaaa;
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
.quick-add-app .save-button-container {
|
|
155
|
-
width: 100%;
|
|
156
|
-
text-align: right;
|
|
157
|
-
padding-bottom: 19px;
|
|
158
|
-
padding-top: 5px;
|
|
147
|
+
.quick-add-app .tooltip > .tooltip-content {
|
|
148
|
+
bottom: -50px;
|
|
149
|
+
top: auto;
|
|
150
|
+
width: 250px;
|
|
159
151
|
}
|
|
160
152
|
|
|
161
|
-
.
|
|
162
|
-
|
|
153
|
+
.always-present [role="combobox"] {
|
|
154
|
+
max-width: 100px;
|
|
155
|
+
justify-content: space-between;
|
|
163
156
|
}
|
|
164
157
|
|
|
165
|
-
.
|
|
166
|
-
|
|
158
|
+
.always-present [role="combobox"] .ff-caret-down {
|
|
159
|
+
right: 2px;
|
|
167
160
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
.auth-setup-form p {
|
|
2
|
-
margin-left:
|
|
2
|
+
margin-left: 0;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
.auth-setup-select-provider {
|
|
6
6
|
width: 290px;
|
|
7
7
|
margin-right: 10px;
|
|
8
|
-
border:
|
|
8
|
+
border: 0 solid transparent;
|
|
9
9
|
border-bottom: 2px solid #3d4455;
|
|
10
10
|
background-color: #22262f;
|
|
11
11
|
color: #fff;
|
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
.auth-setup-field .button-container-icon.icon-copy {
|
|
27
|
-
margin:
|
|
27
|
+
margin: 0;
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
.auth-setup-field .button-container-icon.icon-copy button {
|
|
31
|
-
padding:
|
|
31
|
+
padding: 0;
|
|
32
32
|
padding-right: 13px;
|
|
33
33
|
padding-left: 4px;
|
|
34
34
|
}
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
font-style: normal;
|
|
42
42
|
line-height: 1.13;
|
|
43
43
|
letter-spacing: normal;
|
|
44
|
-
color: #
|
|
44
|
+
color: #fff;
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
.auth-setup-field {
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
.auth-setup-tutorial p {
|
|
111
|
-
margin-left:
|
|
111
|
+
margin-left: 0;
|
|
112
112
|
}
|
|
113
113
|
|
|
114
114
|
.auth-setup-toggle-mode {
|
|
@@ -117,6 +117,7 @@
|
|
|
117
117
|
transform: translateY(-100%);
|
|
118
118
|
}
|
|
119
119
|
|
|
120
|
+
/* stylelint-disable-next-line no-descending-specificity */
|
|
120
121
|
.auth-setup-toggle-mode button {
|
|
121
122
|
color: white;
|
|
122
123
|
border-color: white;
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
.export-block p {
|
|
6
6
|
margin-right: 60px;
|
|
7
|
-
margin-left:
|
|
7
|
+
margin-left: 0;
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
.export-methods .export-method {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
.export-method-actions {
|
|
31
|
-
margin:
|
|
31
|
+
margin: 0;
|
|
32
32
|
display: flex;
|
|
33
33
|
justify-content: flex-end;
|
|
34
34
|
}
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
}
|
|
80
80
|
|
|
81
81
|
.publish-progress-text {
|
|
82
|
-
opacity: 75
|
|
82
|
+
opacity: 0.75;
|
|
83
83
|
}
|
|
84
84
|
|
|
85
85
|
.publish-progress-indicator {
|
|
@@ -114,6 +114,7 @@
|
|
|
114
114
|
0% {
|
|
115
115
|
opacity: 0.5;
|
|
116
116
|
}
|
|
117
|
+
|
|
117
118
|
50% {
|
|
118
119
|
opacity: 0.75;
|
|
119
120
|
}
|
|
@@ -135,6 +136,7 @@
|
|
|
135
136
|
.export-error-actions {
|
|
136
137
|
float: right;
|
|
137
138
|
}
|
|
139
|
+
|
|
138
140
|
.export-error-btn {
|
|
139
141
|
margin-left: 0.625em;
|
|
140
142
|
}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@import url("./appearance.css");
|
|
2
|
+
|
|
1
3
|
.nav-container {
|
|
2
4
|
height: 100%;
|
|
3
5
|
background-color: #171a20;
|
|
@@ -11,8 +13,8 @@
|
|
|
11
13
|
|
|
12
14
|
.nav {
|
|
13
15
|
list-style: none;
|
|
14
|
-
padding:
|
|
15
|
-
margin:
|
|
16
|
+
padding: 0;
|
|
17
|
+
margin: 0;
|
|
16
18
|
height: 100%;
|
|
17
19
|
}
|
|
18
20
|
|
|
@@ -60,36 +62,33 @@
|
|
|
60
62
|
}
|
|
61
63
|
|
|
62
64
|
.nav-item {
|
|
63
|
-
padding:
|
|
64
|
-
margin:
|
|
65
|
+
padding: 0;
|
|
66
|
+
margin: 0;
|
|
65
67
|
}
|
|
66
68
|
|
|
67
|
-
.nav-item
|
|
69
|
+
.nav-item [role="tab"] {
|
|
68
70
|
width: 50%;
|
|
69
71
|
margin-left: 10px;
|
|
70
72
|
color: #ddd;
|
|
71
73
|
display: flex;
|
|
72
74
|
align-items: center;
|
|
73
75
|
padding: 0.75em 2.4rem 0.75em 2.5rem;
|
|
74
|
-
background-color:
|
|
76
|
+
background-color: rgb(255 255 255 / 0%);
|
|
75
77
|
text-decoration: none;
|
|
76
78
|
user-select: none;
|
|
77
79
|
cursor: default;
|
|
78
|
-
border-
|
|
79
|
-
border-top-right-radius: 2em;
|
|
80
|
-
border-bottom-left-radius: 2em;
|
|
81
|
-
border-bottom-right-radius: 2em;
|
|
80
|
+
border-radius: 2em;
|
|
82
81
|
transition: all 0.25s;
|
|
83
82
|
font-weight: bold;
|
|
84
83
|
white-space: nowrap;
|
|
85
84
|
position: relative;
|
|
86
85
|
}
|
|
87
86
|
|
|
88
|
-
.nav-item:hover
|
|
87
|
+
.nav-item:hover [role="tab"] {
|
|
89
88
|
background-color: #373b43;
|
|
90
89
|
}
|
|
91
90
|
|
|
92
|
-
.nav-item
|
|
91
|
+
.nav-item[aria-selected="true"] [role="tab"] {
|
|
93
92
|
background-color: #373b43;
|
|
94
93
|
}
|
|
95
94
|
|
|
@@ -116,5 +115,3 @@
|
|
|
116
115
|
margin-left: 20px;
|
|
117
116
|
margin-bottom: 10px;
|
|
118
117
|
}
|
|
119
|
-
|
|
120
|
-
@import url("./appearance.css");
|
|
@@ -28,10 +28,6 @@
|
|
|
28
28
|
margin-left: -0.8em;
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
.is-editing-project-name .project-name-container::before {
|
|
32
|
-
opacity: 1;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
31
|
.project-name-field {
|
|
36
32
|
font-size: inherit;
|
|
37
33
|
}
|
|
@@ -40,7 +36,7 @@
|
|
|
40
36
|
font-size: 16px;
|
|
41
37
|
font-weight: bold;
|
|
42
38
|
transition: border-color 0.25s;
|
|
43
|
-
padding: 0.25rem
|
|
39
|
+
padding: 0.25rem 0 0;
|
|
44
40
|
border-color: transparent;
|
|
45
41
|
min-width: 15em;
|
|
46
42
|
max-width: 20em;
|
|
@@ -59,7 +55,7 @@
|
|
|
59
55
|
}
|
|
60
56
|
|
|
61
57
|
.project-name-field input[type="text"]:focus::placeholder {
|
|
62
|
-
color:
|
|
58
|
+
color: rgb(255 255 255 / 75%);
|
|
63
59
|
}
|
|
64
60
|
|
|
65
61
|
.project-name-actions {
|
|
@@ -76,6 +72,7 @@
|
|
|
76
72
|
opacity: 1;
|
|
77
73
|
}
|
|
78
74
|
|
|
75
|
+
/* stylelint-disable-next-line no-descending-specificity */
|
|
79
76
|
.is-editing-project-name input[type="text"] {
|
|
80
77
|
cursor: text;
|
|
81
78
|
border-color: #42a5ba;
|
|
@@ -111,9 +108,10 @@
|
|
|
111
108
|
cursor: pointer;
|
|
112
109
|
}
|
|
113
110
|
|
|
111
|
+
/* stylelint-disable-next-line no-descending-specificity */
|
|
114
112
|
.change-project-path-button button {
|
|
115
113
|
color: #acb2c0;
|
|
116
|
-
padding:
|
|
114
|
+
padding: 0;
|
|
117
115
|
font-size: 17px;
|
|
118
116
|
margin-left: 2px;
|
|
119
117
|
}
|
|
@@ -1,7 +1,12 @@
|
|
|
1
|
+
@import url("./nav.css");
|
|
2
|
+
@import url("./views.css");
|
|
3
|
+
@import url("./getting-started.css");
|
|
4
|
+
@import url("./project-header.css");
|
|
5
|
+
|
|
1
6
|
body,
|
|
2
7
|
html {
|
|
3
|
-
padding:
|
|
4
|
-
margin:
|
|
8
|
+
padding: 0;
|
|
9
|
+
margin: 0;
|
|
5
10
|
width: 100vw;
|
|
6
11
|
height: 100vh;
|
|
7
12
|
font-size: 13px;
|
|
@@ -9,12 +14,12 @@ html {
|
|
|
9
14
|
}
|
|
10
15
|
|
|
11
16
|
p {
|
|
12
|
-
opacity: 75
|
|
17
|
+
opacity: 0.75;
|
|
13
18
|
line-height: 1.7em;
|
|
14
19
|
}
|
|
15
20
|
|
|
16
21
|
h2 {
|
|
17
|
-
margin:
|
|
22
|
+
margin: 0;
|
|
18
23
|
}
|
|
19
24
|
|
|
20
25
|
* {
|
|
@@ -25,7 +30,7 @@ h2 {
|
|
|
25
30
|
*,
|
|
26
31
|
*::after,
|
|
27
32
|
*::before {
|
|
28
|
-
|
|
33
|
+
user-select: none;
|
|
29
34
|
-webkit-user-drag: none;
|
|
30
35
|
-webkit-app-region: no-drag;
|
|
31
36
|
cursor: default;
|
|
@@ -37,7 +42,7 @@ button {
|
|
|
37
42
|
font-weight: 600;
|
|
38
43
|
padding: 0.5em 1em;
|
|
39
44
|
background-color: transparent;
|
|
40
|
-
border:
|
|
45
|
+
border: 0 solid transparent;
|
|
41
46
|
color: #fff;
|
|
42
47
|
font-size: 0.9rem;
|
|
43
48
|
transition: all 0.2s ease-in;
|
|
@@ -53,7 +58,7 @@ button {
|
|
|
53
58
|
justify-content: center;
|
|
54
59
|
align-items: center;
|
|
55
60
|
padding-top: 1.3em;
|
|
56
|
-
margin: 0.5em
|
|
61
|
+
margin: 0.5em;
|
|
57
62
|
background-color: #373b43;
|
|
58
63
|
border-radius: 0.5em;
|
|
59
64
|
font-size: 1.1em;
|
|
@@ -70,23 +75,23 @@ button[type="submit"] {
|
|
|
70
75
|
}
|
|
71
76
|
|
|
72
77
|
fieldset {
|
|
73
|
-
padding:
|
|
74
|
-
margin:
|
|
75
|
-
border:
|
|
78
|
+
padding: 0;
|
|
79
|
+
margin: 0;
|
|
80
|
+
border: 0;
|
|
76
81
|
}
|
|
77
82
|
|
|
78
83
|
legend {
|
|
79
|
-
margin:
|
|
80
|
-
padding:
|
|
84
|
+
margin: 0;
|
|
85
|
+
padding: 0;
|
|
81
86
|
}
|
|
82
87
|
|
|
83
88
|
input[type="text"] {
|
|
84
|
-
border:
|
|
89
|
+
border: 0 transparent solid;
|
|
85
90
|
border-bottom: 2px solid transparent;
|
|
86
91
|
}
|
|
87
92
|
|
|
88
93
|
textarea {
|
|
89
|
-
padding: 1em
|
|
94
|
+
padding: 1em 0;
|
|
90
95
|
border: 0;
|
|
91
96
|
border-bottom: 2px transparent solid;
|
|
92
97
|
cursor: text;
|
|
@@ -121,11 +126,17 @@ input[type="text"][aria-invalid="true"] {
|
|
|
121
126
|
display: block;
|
|
122
127
|
}
|
|
123
128
|
|
|
129
|
+
#smartDesktopDesigner {
|
|
130
|
+
position: relative;
|
|
131
|
+
height: 100%;
|
|
132
|
+
width: 100%;
|
|
133
|
+
}
|
|
134
|
+
|
|
124
135
|
.config-container {
|
|
125
|
-
top:
|
|
126
|
-
left:
|
|
127
|
-
right:
|
|
128
|
-
bottom:
|
|
136
|
+
top: 0;
|
|
137
|
+
left: 0;
|
|
138
|
+
right: 0;
|
|
139
|
+
bottom: 0;
|
|
129
140
|
max-width: 100%;
|
|
130
141
|
max-height: 100%;
|
|
131
142
|
position: absolute;
|
|
@@ -171,8 +182,3 @@ input[type="file"] {
|
|
|
171
182
|
font-size: 1em;
|
|
172
183
|
font-weight: 600;
|
|
173
184
|
}
|
|
174
|
-
|
|
175
|
-
@import url("./nav.css");
|
|
176
|
-
@import url("./views.css");
|
|
177
|
-
@import url("./getting-started.css");
|
|
178
|
-
@import url("./project-header.css");
|
|
@@ -1,7 +1,10 @@
|
|
|
1
|
+
@import url("./applications.css");
|
|
2
|
+
|
|
1
3
|
.view-container {
|
|
2
4
|
display: flex;
|
|
3
5
|
flex-direction: column;
|
|
4
6
|
flex-grow: 1;
|
|
7
|
+
|
|
5
8
|
/* height: 100%; */
|
|
6
9
|
overflow-x: hidden;
|
|
7
10
|
overflow-y: auto;
|
|
@@ -16,7 +19,5 @@
|
|
|
16
19
|
}
|
|
17
20
|
|
|
18
21
|
.view-content {
|
|
19
|
-
margin:
|
|
22
|
+
margin: 0 2.1rem;
|
|
20
23
|
}
|
|
21
|
-
|
|
22
|
-
@import url("./applications.css");
|
|
@@ -143,6 +143,7 @@ export const default_apps = [
|
|
|
143
143
|
src: "string",
|
|
144
144
|
},
|
|
145
145
|
],
|
|
146
|
+
// @ts-ignore
|
|
146
147
|
customConfig: [
|
|
147
148
|
{
|
|
148
149
|
name: "string",
|
|
@@ -158,6 +159,17 @@ export const default_apps = [
|
|
|
158
159
|
},
|
|
159
160
|
],
|
|
160
161
|
},
|
|
162
|
+
{
|
|
163
|
+
appId: "Chart data connector",
|
|
164
|
+
name: "Chart data connector",
|
|
165
|
+
manifest: {
|
|
166
|
+
window: {
|
|
167
|
+
url: "http://google.com",
|
|
168
|
+
},
|
|
169
|
+
appService: true,
|
|
170
|
+
},
|
|
171
|
+
version: "1",
|
|
172
|
+
},
|
|
161
173
|
];
|
|
162
174
|
const default_menus = {
|
|
163
175
|
1: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"apps.js","sourceRoot":"","sources":["../../../../src/components/sdd/fixtures/apps.ts"],"names":[],"mappings":"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","sourcesContent":["import { ApplicationsProps } from \"../Applications\";\nimport configTemplate from \"./configTemplate\";\nimport { clone } from \"../Appearance.helpers\";\nimport { services } from \"@finsemble/finsemble-api\";\nimport { ToolbarProps } from \"../Toolbar\";\nimport { PreloadMap, PreloadType } from \"../../../types/smartDesktopDesignerTypes\";\n\ntype AppDefinition = services.Interop.types.AppDefinition;\n\nexport const default_apps: AppDefinition[] = [\n\t{\n\t\tappId: \"Example Charts App\",\n\t\tname: \"Example Charts App\",\n\t\ttype: \"component\",\n\t\tdescription: \"Visualize market data in the leading technical chart.\",\n\t\tmanifest: {\n\t\t\twindow: {\n\t\t\t\turl: \"https://salesdemo-dev.finsemble.com/components/chartiq/chartiq/technical-analysis-chart.html\",\n\t\t\t\twidth: 800,\n\t\t\t\theight: 600,\n\t\t\t\toptions: {\n\t\t\t\t\tminWidth: 75,\n\t\t\t\t\tsecurityPolicy: \"trusted\",\n\t\t\t\t},\n\t\t\t},\n\t\t\tforeign: {\n\t\t\t\tservices: {\n\t\t\t\t\tdockingService: {\n\t\t\t\t\t\tisArrangable: true,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\tcomponents: {\n\t\t\t\t\t\"App Launcher\": {\n\t\t\t\t\t\tlaunchableByUser: true,\n\t\t\t\t\t},\n\t\t\t\t\tToolbar: {\n\t\t\t\t\t\ticonClass: \"ff-chart-advanced\",\n\t\t\t\t\t},\n\t\t\t\t\t\"Window Manager\": {\n\t\t\t\t\t\tFSBLHeader: true,\n\t\t\t\t\t\tpersistWindowState: true,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t\tcomponent: {\n\t\t\t\tpreload: [\"https://salesdemo-dev.finsemble.com/components/chartiq/chartiq.js\", \"zoom\"],\n\t\t\t},\n\t\t},\n\t\tmanifestType: \"finsemble\",\n\t\tversion: \"1.0.0\",\n\t\treleaseNotes: \"This is the only version.\",\n\t\ttooltip: \"ChartIQ Advanced Chart\",\n\t\timages: [\n\t\t\t{\n\t\t\t\turl: \"https://i.imgur.com/10C3LdH.png\",\n\t\t\t\ttooltip: \"Candle Chart\",\n\t\t\t},\n\t\t],\n\t\ttags: [\"charts\", \"market data\", \"visualization\", \"graphics\"],\n\t\tcontactEmail: \"info@cosaic.io\",\n\t\tsupportEmail: \"support@finsemble.com\",\n\t\tpublisher: \"Cosaic\",\n\t\ticons: [\n\t\t\t{\n\t\t\t\tsrc: \"https://i.imgur.com/mpBdiHd.png\",\n\t\t\t},\n\t\t],\n\t},\n\t{\n\t\tappId: \"Example News App\",\n\t\tname: \"Example News App\",\n\t\ttype: \"component\",\n\t\tdescription: \"Financial news headlines.\",\n\t\tmanifest: {\n\t\t\twindow: {\n\t\t\t\turl: \"https://finsemble.chartiq.com/components/widgets/news/news.html\",\n\t\t\t\twidth: 354,\n\t\t\t\theight: 600,\n\t\t\t},\n\t\t\tforeign: {\n\t\t\t\tservices: {\n\t\t\t\t\tdockingService: {\n\t\t\t\t\t\tisArrangable: true,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\tcomponents: {\n\t\t\t\t\tToolbar: {\n\t\t\t\t\t\ticonClass: \"ff-news\",\n\t\t\t\t\t},\n\t\t\t\t\t\"Window Manager\": {\n\t\t\t\t\t\tFSBLHeader: true,\n\t\t\t\t\t\tpersistWindowState: true,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\tmanifestType: \"finsemble\",\n\t\tversion: \"1.0.0\",\n\t\treleaseNotes: \"This is the only version of News\",\n\t\ttooltip: \"News\",\n\t\timages: [\n\t\t\t{\n\t\t\t\turl: \"https://i.imgur.com/6oZjqP7.png\",\n\t\t\t\ttooltip: \"News\",\n\t\t\t},\n\t\t],\n\t\ttags: [\"news\"],\n\t\tcontactEmail: \"info@cosaic.io\",\n\t\tsupportEmail: \"support@finsemble.com\",\n\t\tpublisher: \"Cosaic\",\n\t\ticons: [\n\t\t\t{\n\t\t\t\tsrc: \"https://i.imgur.com/gHfwucS.png\",\n\t\t\t},\n\t\t],\n\t},\n\t{\n\t\tappId: \"Google\",\n\t\tname: \"Google\",\n\t\tmanifest: {\n\t\t\twindow: {\n\t\t\t\turl: \"http://google.com\",\n\t\t\t\twidth: 1280,\n\t\t\t\theight: 600,\n\t\t\t},\n\t\t\tforeign: {\n\t\t\t\tcomponents: {\n\t\t\t\t\t\"Window Manager\": {\n\t\t\t\t\t\tpersistWindowState: true,\n\t\t\t\t\t\tFSBLHeader: true,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\tmanifestType: \"vendor_type\",\n\t\tversion: \"1\",\n\t\ttitle: \"app title\",\n\t\ttooltip: \"app tip\",\n\t\tdescription: \"\",\n\t\timages: [\n\t\t\t{\n\t\t\t\turl: \"string\",\n\t\t\t},\n\t\t],\n\t\tcontactEmail: \"string\",\n\t\tsupportEmail: \"string\",\n\t\tpublisher: \"string\",\n\t\ticons: [\n\t\t\t{\n\t\t\t\tsrc: \"string\",\n\t\t\t},\n\t\t],\n\t\t// @ts-ignore\n\t\tcustomConfig: [\n\t\t\t{\n\t\t\t\tname: \"string\",\n\t\t\t\tvalue: \"string\",\n\t\t\t},\n\t\t],\n\t\tintents: [\n\t\t\t{\n\t\t\t\tname: \"string\",\n\t\t\t\tdisplayName: \"string\",\n\t\t\t\tcontexts: [\"string\"],\n\t\t\t\tcustomConfig: {},\n\t\t\t},\n\t\t],\n\t},\n] as AppDefinition[];\n\nconst default_menus = {\n\t1: {\n\t\tdisplayName: \"Examples\",\n\t\tapplications: [\"Example Charts App\", \"Example News App\"],\n\t},\n};\n\nconst long_menus = {\n\t1: {\n\t\tdisplayName: \"A\",\n\t\tapplications: [\"Example Charts App\", \"Example News App\"],\n\t},\n\t2: {\n\t\tdisplayName: \"B\",\n\t\tapplications: [\"Example Charts App\", \"Example News App\"],\n\t},\n\t3: {\n\t\tdisplayName: \"C\",\n\t\tapplications: [\"Example Charts App\", \"Example News App\"],\n\t},\n\t4: {\n\t\tdisplayName: \"D\",\n\t\tapplications: [\"Example Charts App\", \"Example News App\"],\n\t},\n\t5: {\n\t\tdisplayName: \"E\",\n\t\tapplications: [],\n\t},\n};\n\nexport const temporary_apps: AppDefinition[] = [\n\t{\n\t\tappId: \"Google\",\n\t\tname: \"Google\",\n\t\tmanifest: {\n\t\t\twindow: {\n\t\t\t\turl: \"http://google.com\",\n\t\t\t\twidth: 1280,\n\t\t\t\theight: 600,\n\t\t\t},\n\t\t\tforeign: {\n\t\t\t\tcomponents: {\n\t\t\t\t\t\"Window Manager\": {\n\t\t\t\t\t\tpersistWindowState: true,\n\t\t\t\t\t\tFSBLHeader: true,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\tmanifestType: \"vendor_type\",\n\t\tversion: \"1\",\n\t\ttitle: \"app title\",\n\t\ttooltip: \"app tip\",\n\t\tdescription: \"\",\n\t\timages: [\n\t\t\t{\n\t\t\t\turl: \"string\",\n\t\t\t},\n\t\t],\n\t\tcontactEmail: \"string\",\n\t\tsupportEmail: \"string\",\n\t\tpublisher: \"string\",\n\t\ticons: [\n\t\t\t{\n\t\t\t\tsrc: \"string\",\n\t\t\t},\n\t\t],\n\t\tcustomConfig: [\n\t\t\t{\n\t\t\t\tname: \"string\",\n\t\t\t\tvalue: \"string\",\n\t\t\t},\n\t\t],\n\t\tintents: [\n\t\t\t{\n\t\t\t\tname: \"string\",\n\t\t\t\tdisplayName: \"string\",\n\t\t\t\tcontexts: [\"string\"],\n\t\t\t\tcustomConfig: {},\n\t\t\t},\n\t\t],\n\t},\n\t{\n\t\tappId: \"123456789\",\n\t\tname: \"OtherApp\",\n\t\tmanifest: {\n\t\t\ttemporary: true,\n\t\t},\n\t},\n] as AppDefinition[];\n\nexport const getApplicationsArgs = (init: \"default\" | \"empty\" | \"long\" | \"temporary\"): ApplicationsProps => {\n\tlet apps: AppDefinition[] = [];\n\tlet menus: any = {};\n\n\tif (init === \"default\") {\n\t\tapps = clone(default_apps);\n\t\tmenus = clone(default_menus);\n\t} else if (init === \"temporary\") {\n\t\tapps = JSON.parse(JSON.stringify(temporary_apps));\n\t} else if (init === \"long\") {\n\t\tapps = clone(default_apps);\n\t\tmenus = clone(long_menus);\n\t}\n\n\treturn {\n\t\tgetApps: () =>\n\t\t\tnew Promise((resolve) => {\n\t\t\t\tresolve({ err: null, apps });\n\t\t\t}),\n\t\taddApp: (_: string, appConfig: AppDefinition) => {\n\t\t\tapps = [...apps, appConfig];\n\n\t\t\treturn new Promise((resolve) => {\n\t\t\t\tresolve({ err: null });\n\t\t\t});\n\t\t},\n\t\tupdateApp: (appId: string, appConfig: AppDefinition) => {\n\t\t\tapps = apps.filter((app) => app.appId !== appId);\n\t\t\tapps = [...apps, appConfig];\n\n\t\t\treturn new Promise((resolve) => {\n\t\t\t\tresolve({ err: null });\n\t\t\t});\n\t\t},\n\t\tdeleteApp: (appId: string) => {\n\t\t\tapps = apps.filter((app) => app.appId !== appId);\n\n\t\t\treturn new Promise((resolve) => {\n\t\t\t\tresolve({ err: null });\n\t\t\t});\n\t\t},\n\t\tgetAppConfigTemplate: () =>\n\t\t\tnew Promise((resolve) => {\n\t\t\t\tresolve({ config: { ...configTemplate } });\n\t\t\t}),\n\t\tgetMenus: () =>\n\t\t\tnew Promise((resolve) => {\n\t\t\t\tresolve({\n\t\t\t\t\terr: null,\n\t\t\t\t\tmenus,\n\t\t\t\t});\n\t\t\t}),\n\t\taddMenu: (menuConfig: any) =>\n\t\t\tnew Promise((resolve) => {\n\t\t\t\tconst length = String(Object.keys(menus).length + 1);\n\t\t\t\tmenus = {\n\t\t\t\t\t...menus,\n\t\t\t\t\t[length]: menuConfig,\n\t\t\t\t};\n\n\t\t\t\tresolve({ err: null });\n\t\t\t}),\n\t\tupdateMenu: (menuId: string, menuConfig: any) =>\n\t\t\tnew Promise((resolve) => {\n\t\t\t\tmenus = {\n\t\t\t\t\t...menus,\n\t\t\t\t\t[menuId]: menuConfig,\n\t\t\t\t};\n\t\t\t\tresolve({ err: null });\n\t\t\t}),\n\t\tgetPreloads: (): Promise<{ err: any; data: PreloadMap }> =>\n\t\t\tnew Promise((resolve) => {\n\t\t\t\tresolve({\n\t\t\t\t\terr: null,\n\t\t\t\t\tdata: {\n\t\t\t\t\t\tzoom: {\n\t\t\t\t\t\t\turl: \"http://localhost:3375/build/preloads/zoom.js\",\n\t\t\t\t\t\t\tautoload: \"none\",\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"native-overrides\": {\n\t\t\t\t\t\t\turl: \"http://localhost:3375/build/preloads/nativeoverrides.js\",\n\t\t\t\t\t\t\tautoload: \"none\",\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t});\n\t\t\t}),\n\t\tisInboundInteropAuthorized: (sourceApp: AppDefinition, targetApp: AppDefinition) =>\n\t\t\tnew Promise((resolve) => {\n\t\t\t\tresolve(\n\t\t\t\t\ttargetApp.manifest?.interop?.selectConnect?.some((rule) =>\n\t\t\t\t\t\trule.authorize?.some((app) => app.name === sourceApp.name)\n\t\t\t\t\t) || false\n\t\t\t\t);\n\t\t\t}),\n\t\tisOutboundInteropAuthorized: (sourceApp: AppDefinition, targetApp: AppDefinition) =>\n\t\t\tnew Promise((resolve) => {\n\t\t\t\tresolve(\n\t\t\t\t\tsourceApp.manifest?.interop?.selectConnect?.some((rule) =>\n\t\t\t\t\t\trule.authorize?.some((app) => app.name === targetApp.name)\n\t\t\t\t\t) || false\n\t\t\t\t);\n\t\t\t}),\n\t};\n};\n\nexport const getToolbarArgs = (init: \"default\" | \"empty\" | \"long\" | \"temporary\"): ToolbarProps => {\n\tlet apps: AppDefinition[] = [];\n\tlet menus: any = {};\n\n\tif (init === \"default\") {\n\t\tapps = clone(default_apps);\n\t\tmenus = clone(default_menus);\n\t} else if (init === \"temporary\") {\n\t\tapps = JSON.parse(JSON.stringify(temporary_apps));\n\t} else if (init === \"long\") {\n\t\tapps = clone(default_apps);\n\t\tmenus = clone(long_menus);\n\t}\n\n\treturn {\n\t\tgetApps: () =>\n\t\t\tnew Promise((resolve) => {\n\t\t\t\tresolve({ err: null, apps });\n\t\t\t}),\n\t\tgetMenus: () =>\n\t\t\tnew Promise((resolve) => {\n\t\t\t\tresolve({\n\t\t\t\t\terr: null,\n\t\t\t\t\tmenus,\n\t\t\t\t});\n\t\t\t}),\n\t\taddMenu: (menuConfig: any) =>\n\t\t\tnew Promise((resolve) => {\n\t\t\t\tconst length = String(Object.keys(menus).length + 1);\n\t\t\t\tmenus = {\n\t\t\t\t\t...menus,\n\t\t\t\t\t[length]: menuConfig,\n\t\t\t\t};\n\n\t\t\t\tresolve({ err: null });\n\t\t\t}),\n\t\tupdateMenu: (menuId: string, menuConfig: any) =>\n\t\t\tnew Promise((resolve) => {\n\t\t\t\tmenus = {\n\t\t\t\t\t...menus,\n\t\t\t\t\t[menuId]: menuConfig,\n\t\t\t\t};\n\t\t\t\tresolve({ err: null });\n\t\t\t}),\n\t\tdeleteMenu: (menuId: string) =>\n\t\t\tnew Promise((resolve) => {\n\t\t\t\tconst newMenu = clone(menus);\n\t\t\t\tdelete newMenu[menuId];\n\t\t\t\tmenus = newMenu;\n\t\t\t\tresolve({ err: null });\n\t\t\t}),\n\t};\n};\n"]}
|
|
1
|
+
{"version":3,"file":"apps.js","sourceRoot":"","sources":["../../../../src/components/sdd/fixtures/apps.ts"],"names":[],"mappings":"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","sourcesContent":["import { ApplicationsProps } from \"../Applications\";\nimport configTemplate from \"./configTemplate\";\nimport { clone } from \"../Appearance.helpers\";\nimport { services } from \"@finsemble/finsemble-api\";\nimport { ToolbarProps } from \"../Toolbar\";\nimport { PreloadMap, PreloadType } from \"../../../types/smartDesktopDesignerTypes\";\n\ntype AppDefinition = services.Interop.types.AppDefinition;\n\nexport const default_apps: AppDefinition[] = [\n\t{\n\t\tappId: \"Example Charts App\",\n\t\tname: \"Example Charts App\",\n\t\ttype: \"component\",\n\t\tdescription: \"Visualize market data in the leading technical chart.\",\n\t\tmanifest: {\n\t\t\twindow: {\n\t\t\t\turl: \"https://salesdemo-dev.finsemble.com/components/chartiq/chartiq/technical-analysis-chart.html\",\n\t\t\t\twidth: 800,\n\t\t\t\theight: 600,\n\t\t\t\toptions: {\n\t\t\t\t\tminWidth: 75,\n\t\t\t\t\tsecurityPolicy: \"trusted\",\n\t\t\t\t},\n\t\t\t},\n\t\t\tforeign: {\n\t\t\t\tservices: {\n\t\t\t\t\tdockingService: {\n\t\t\t\t\t\tisArrangable: true,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\tcomponents: {\n\t\t\t\t\t\"App Launcher\": {\n\t\t\t\t\t\tlaunchableByUser: true,\n\t\t\t\t\t},\n\t\t\t\t\tToolbar: {\n\t\t\t\t\t\ticonClass: \"ff-chart-advanced\",\n\t\t\t\t\t},\n\t\t\t\t\t\"Window Manager\": {\n\t\t\t\t\t\tFSBLHeader: true,\n\t\t\t\t\t\tpersistWindowState: true,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t\tcomponent: {\n\t\t\t\tpreload: [\"https://salesdemo-dev.finsemble.com/components/chartiq/chartiq.js\", \"zoom\"],\n\t\t\t},\n\t\t},\n\t\tmanifestType: \"finsemble\",\n\t\tversion: \"1.0.0\",\n\t\treleaseNotes: \"This is the only version.\",\n\t\ttooltip: \"ChartIQ Advanced Chart\",\n\t\timages: [\n\t\t\t{\n\t\t\t\turl: \"https://i.imgur.com/10C3LdH.png\",\n\t\t\t\ttooltip: \"Candle Chart\",\n\t\t\t},\n\t\t],\n\t\ttags: [\"charts\", \"market data\", \"visualization\", \"graphics\"],\n\t\tcontactEmail: \"info@cosaic.io\",\n\t\tsupportEmail: \"support@finsemble.com\",\n\t\tpublisher: \"Cosaic\",\n\t\ticons: [\n\t\t\t{\n\t\t\t\tsrc: \"https://i.imgur.com/mpBdiHd.png\",\n\t\t\t},\n\t\t],\n\t},\n\t{\n\t\tappId: \"Example News App\",\n\t\tname: \"Example News App\",\n\t\ttype: \"component\",\n\t\tdescription: \"Financial news headlines.\",\n\t\tmanifest: {\n\t\t\twindow: {\n\t\t\t\turl: \"https://finsemble.chartiq.com/components/widgets/news/news.html\",\n\t\t\t\twidth: 354,\n\t\t\t\theight: 600,\n\t\t\t},\n\t\t\tforeign: {\n\t\t\t\tservices: {\n\t\t\t\t\tdockingService: {\n\t\t\t\t\t\tisArrangable: true,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\tcomponents: {\n\t\t\t\t\tToolbar: {\n\t\t\t\t\t\ticonClass: \"ff-news\",\n\t\t\t\t\t},\n\t\t\t\t\t\"Window Manager\": {\n\t\t\t\t\t\tFSBLHeader: true,\n\t\t\t\t\t\tpersistWindowState: true,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\tmanifestType: \"finsemble\",\n\t\tversion: \"1.0.0\",\n\t\treleaseNotes: \"This is the only version of News\",\n\t\ttooltip: \"News\",\n\t\timages: [\n\t\t\t{\n\t\t\t\turl: \"https://i.imgur.com/6oZjqP7.png\",\n\t\t\t\ttooltip: \"News\",\n\t\t\t},\n\t\t],\n\t\ttags: [\"news\"],\n\t\tcontactEmail: \"info@cosaic.io\",\n\t\tsupportEmail: \"support@finsemble.com\",\n\t\tpublisher: \"Cosaic\",\n\t\ticons: [\n\t\t\t{\n\t\t\t\tsrc: \"https://i.imgur.com/gHfwucS.png\",\n\t\t\t},\n\t\t],\n\t},\n\t{\n\t\tappId: \"Google\",\n\t\tname: \"Google\",\n\t\tmanifest: {\n\t\t\twindow: {\n\t\t\t\turl: \"http://google.com\",\n\t\t\t\twidth: 1280,\n\t\t\t\theight: 600,\n\t\t\t},\n\t\t\tforeign: {\n\t\t\t\tcomponents: {\n\t\t\t\t\t\"Window Manager\": {\n\t\t\t\t\t\tpersistWindowState: true,\n\t\t\t\t\t\tFSBLHeader: true,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\tmanifestType: \"vendor_type\",\n\t\tversion: \"1\",\n\t\ttitle: \"app title\",\n\t\ttooltip: \"app tip\",\n\t\tdescription: \"\",\n\t\timages: [\n\t\t\t{\n\t\t\t\turl: \"string\",\n\t\t\t},\n\t\t],\n\t\tcontactEmail: \"string\",\n\t\tsupportEmail: \"string\",\n\t\tpublisher: \"string\",\n\t\ticons: [\n\t\t\t{\n\t\t\t\tsrc: \"string\",\n\t\t\t},\n\t\t],\n\t\t// @ts-ignore\n\t\tcustomConfig: [\n\t\t\t{\n\t\t\t\tname: \"string\",\n\t\t\t\tvalue: \"string\",\n\t\t\t},\n\t\t],\n\t\tintents: [\n\t\t\t{\n\t\t\t\tname: \"string\",\n\t\t\t\tdisplayName: \"string\",\n\t\t\t\tcontexts: [\"string\"],\n\t\t\t\tcustomConfig: {},\n\t\t\t},\n\t\t],\n\t},\n\t{\n\t\tappId: \"Chart data connector\",\n\t\tname: \"Chart data connector\",\n\t\tmanifest: {\n\t\t\twindow: {\n\t\t\t\turl: \"http://google.com\",\n\t\t\t},\n\t\t\tappService: true,\n\t\t},\n\t\tversion: \"1\",\n\t},\n] as AppDefinition[];\n\nconst default_menus = {\n\t1: {\n\t\tdisplayName: \"Examples\",\n\t\tapplications: [\"Example Charts App\", \"Example News App\"],\n\t},\n};\n\nconst long_menus = {\n\t1: {\n\t\tdisplayName: \"A\",\n\t\tapplications: [\"Example Charts App\", \"Example News App\"],\n\t},\n\t2: {\n\t\tdisplayName: \"B\",\n\t\tapplications: [\"Example Charts App\", \"Example News App\"],\n\t},\n\t3: {\n\t\tdisplayName: \"C\",\n\t\tapplications: [\"Example Charts App\", \"Example News App\"],\n\t},\n\t4: {\n\t\tdisplayName: \"D\",\n\t\tapplications: [\"Example Charts App\", \"Example News App\"],\n\t},\n\t5: {\n\t\tdisplayName: \"E\",\n\t\tapplications: [],\n\t},\n};\n\nexport const temporary_apps: AppDefinition[] = [\n\t{\n\t\tappId: \"Google\",\n\t\tname: \"Google\",\n\t\tmanifest: {\n\t\t\twindow: {\n\t\t\t\turl: \"http://google.com\",\n\t\t\t\twidth: 1280,\n\t\t\t\theight: 600,\n\t\t\t},\n\t\t\tforeign: {\n\t\t\t\tcomponents: {\n\t\t\t\t\t\"Window Manager\": {\n\t\t\t\t\t\tpersistWindowState: true,\n\t\t\t\t\t\tFSBLHeader: true,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\tmanifestType: \"vendor_type\",\n\t\tversion: \"1\",\n\t\ttitle: \"app title\",\n\t\ttooltip: \"app tip\",\n\t\tdescription: \"\",\n\t\timages: [\n\t\t\t{\n\t\t\t\turl: \"string\",\n\t\t\t},\n\t\t],\n\t\tcontactEmail: \"string\",\n\t\tsupportEmail: \"string\",\n\t\tpublisher: \"string\",\n\t\ticons: [\n\t\t\t{\n\t\t\t\tsrc: \"string\",\n\t\t\t},\n\t\t],\n\t\tcustomConfig: [\n\t\t\t{\n\t\t\t\tname: \"string\",\n\t\t\t\tvalue: \"string\",\n\t\t\t},\n\t\t],\n\t\tintents: [\n\t\t\t{\n\t\t\t\tname: \"string\",\n\t\t\t\tdisplayName: \"string\",\n\t\t\t\tcontexts: [\"string\"],\n\t\t\t\tcustomConfig: {},\n\t\t\t},\n\t\t],\n\t},\n\t{\n\t\tappId: \"123456789\",\n\t\tname: \"OtherApp\",\n\t\tmanifest: {\n\t\t\ttemporary: true,\n\t\t},\n\t},\n] as AppDefinition[];\n\nexport const getApplicationsArgs = (init: \"default\" | \"empty\" | \"long\" | \"temporary\"): ApplicationsProps => {\n\tlet apps: AppDefinition[] = [];\n\tlet menus: any = {};\n\n\tif (init === \"default\") {\n\t\tapps = clone(default_apps);\n\t\tmenus = clone(default_menus);\n\t} else if (init === \"temporary\") {\n\t\tapps = JSON.parse(JSON.stringify(temporary_apps));\n\t} else if (init === \"long\") {\n\t\tapps = clone(default_apps);\n\t\tmenus = clone(long_menus);\n\t}\n\n\treturn {\n\t\tgetApps: () =>\n\t\t\tnew Promise((resolve) => {\n\t\t\t\tresolve({ err: null, apps });\n\t\t\t}),\n\t\taddApp: (_: string, appConfig: AppDefinition) => {\n\t\t\tapps = [...apps, appConfig];\n\n\t\t\treturn new Promise((resolve) => {\n\t\t\t\tresolve({ err: null });\n\t\t\t});\n\t\t},\n\t\tupdateApp: (appId: string, appConfig: AppDefinition) => {\n\t\t\tapps = apps.filter((app) => app.appId !== appId);\n\t\t\tapps = [...apps, appConfig];\n\n\t\t\treturn new Promise((resolve) => {\n\t\t\t\tresolve({ err: null });\n\t\t\t});\n\t\t},\n\t\tdeleteApp: (appId: string) => {\n\t\t\tapps = apps.filter((app) => app.appId !== appId);\n\n\t\t\treturn new Promise((resolve) => {\n\t\t\t\tresolve({ err: null });\n\t\t\t});\n\t\t},\n\t\tgetAppConfigTemplate: () =>\n\t\t\tnew Promise((resolve) => {\n\t\t\t\tresolve({ config: { ...configTemplate } });\n\t\t\t}),\n\t\tgetMenus: () =>\n\t\t\tnew Promise((resolve) => {\n\t\t\t\tresolve({\n\t\t\t\t\terr: null,\n\t\t\t\t\tmenus,\n\t\t\t\t});\n\t\t\t}),\n\t\taddMenu: (menuConfig: any) =>\n\t\t\tnew Promise((resolve) => {\n\t\t\t\tconst length = String(Object.keys(menus).length + 1);\n\t\t\t\tmenus = {\n\t\t\t\t\t...menus,\n\t\t\t\t\t[length]: menuConfig,\n\t\t\t\t};\n\n\t\t\t\tresolve({ err: null });\n\t\t\t}),\n\t\tupdateMenu: (menuId: string, menuConfig: any) =>\n\t\t\tnew Promise((resolve) => {\n\t\t\t\tmenus = {\n\t\t\t\t\t...menus,\n\t\t\t\t\t[menuId]: menuConfig,\n\t\t\t\t};\n\t\t\t\tresolve({ err: null });\n\t\t\t}),\n\t\tgetPreloads: (): Promise<{ err: any; data: PreloadMap }> =>\n\t\t\tnew Promise((resolve) => {\n\t\t\t\tresolve({\n\t\t\t\t\terr: null,\n\t\t\t\t\tdata: {\n\t\t\t\t\t\tzoom: {\n\t\t\t\t\t\t\turl: \"http://localhost:3375/build/preloads/zoom.js\",\n\t\t\t\t\t\t\tautoload: \"none\",\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"native-overrides\": {\n\t\t\t\t\t\t\turl: \"http://localhost:3375/build/preloads/nativeoverrides.js\",\n\t\t\t\t\t\t\tautoload: \"none\",\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t});\n\t\t\t}),\n\t\tisInboundInteropAuthorized: (sourceApp: AppDefinition, targetApp: AppDefinition) =>\n\t\t\tnew Promise((resolve) => {\n\t\t\t\tresolve(\n\t\t\t\t\ttargetApp.manifest?.interop?.selectConnect?.some((rule) =>\n\t\t\t\t\t\trule.authorize?.some((app) => app.name === sourceApp.name)\n\t\t\t\t\t) || false\n\t\t\t\t);\n\t\t\t}),\n\t\tisOutboundInteropAuthorized: (sourceApp: AppDefinition, targetApp: AppDefinition) =>\n\t\t\tnew Promise((resolve) => {\n\t\t\t\tresolve(\n\t\t\t\t\tsourceApp.manifest?.interop?.selectConnect?.some((rule) =>\n\t\t\t\t\t\trule.authorize?.some((app) => app.name === targetApp.name)\n\t\t\t\t\t) || false\n\t\t\t\t);\n\t\t\t}),\n\t};\n};\n\nexport const getToolbarArgs = (init: \"default\" | \"empty\" | \"long\" | \"temporary\"): ToolbarProps => {\n\tlet apps: AppDefinition[] = [];\n\tlet menus: any = {};\n\n\tif (init === \"default\") {\n\t\tapps = clone(default_apps);\n\t\tmenus = clone(default_menus);\n\t} else if (init === \"temporary\") {\n\t\tapps = JSON.parse(JSON.stringify(temporary_apps));\n\t} else if (init === \"long\") {\n\t\tapps = clone(default_apps);\n\t\tmenus = clone(long_menus);\n\t}\n\n\treturn {\n\t\tgetApps: () =>\n\t\t\tnew Promise((resolve) => {\n\t\t\t\tresolve({ err: null, apps });\n\t\t\t}),\n\t\tgetMenus: () =>\n\t\t\tnew Promise((resolve) => {\n\t\t\t\tresolve({\n\t\t\t\t\terr: null,\n\t\t\t\t\tmenus,\n\t\t\t\t});\n\t\t\t}),\n\t\taddMenu: (menuConfig: any) =>\n\t\t\tnew Promise((resolve) => {\n\t\t\t\tconst length = String(Object.keys(menus).length + 1);\n\t\t\t\tmenus = {\n\t\t\t\t\t...menus,\n\t\t\t\t\t[length]: menuConfig,\n\t\t\t\t};\n\n\t\t\t\tresolve({ err: null });\n\t\t\t}),\n\t\tupdateMenu: (menuId: string, menuConfig: any) =>\n\t\t\tnew Promise((resolve) => {\n\t\t\t\tmenus = {\n\t\t\t\t\t...menus,\n\t\t\t\t\t[menuId]: menuConfig,\n\t\t\t\t};\n\t\t\t\tresolve({ err: null });\n\t\t\t}),\n\t\tdeleteMenu: (menuId: string) =>\n\t\t\tnew Promise((resolve) => {\n\t\t\t\tconst newMenu = clone(menus);\n\t\t\t\tdelete newMenu[menuId];\n\t\t\t\tmenus = newMenu;\n\t\t\t\tresolve({ err: null });\n\t\t\t}),\n\t};\n};\n"]}
|
|
@@ -1,8 +1,22 @@
|
|
|
1
|
+
import { AuthenticationType } from "../../../types/smartDesktopDesignerTypes";
|
|
1
2
|
const defaultCallback = () => new Promise((resolve) => {
|
|
2
3
|
resolve(null);
|
|
3
4
|
});
|
|
5
|
+
const getAuthenticationProviders = () => new Promise((resolve) => {
|
|
6
|
+
resolve([
|
|
7
|
+
{
|
|
8
|
+
name: "Custom",
|
|
9
|
+
enabled: true,
|
|
10
|
+
type: AuthenticationType.OAUTH2,
|
|
11
|
+
client_id: "",
|
|
12
|
+
secret: null,
|
|
13
|
+
redirect_uri: "",
|
|
14
|
+
nonce: false,
|
|
15
|
+
},
|
|
16
|
+
]);
|
|
17
|
+
});
|
|
4
18
|
export const default_authentication_props = {
|
|
5
|
-
getAuthenticationProviders
|
|
19
|
+
getAuthenticationProviders,
|
|
6
20
|
setAuthenticationProviders: defaultCallback,
|
|
7
21
|
testAuthenticationProvider: defaultCallback,
|
|
8
22
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"authenticationProps.js","sourceRoot":"","sources":["../../../../src/components/sdd/fixtures/authenticationProps.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"authenticationProps.js","sourceRoot":"","sources":["../../../../src/components/sdd/fixtures/authenticationProps.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAA0B,MAAM,0CAA0C,CAAC;AAEtG,MAAM,eAAe,GAAG,GAAG,EAAE,CAC5B,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,EAAE;IACvB,OAAO,CAAC,IAAI,CAAC,CAAC;AACf,CAAC,CAAC,CAAC;AAEJ,MAAM,0BAA0B,GAAG,GAAsC,EAAE,CAC1E,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,EAAE;IACvB,OAAO,CAAC;QACP;YACC,IAAI,EAAE,QAAQ;YACd,OAAO,EAAE,IAAI;YACb,IAAI,EAAE,kBAAkB,CAAC,MAAM;YAC/B,SAAS,EAAE,EAAE;YACb,MAAM,EAAE,IAAI;YACZ,YAAY,EAAE,EAAE;YAChB,KAAK,EAAE,KAAK;SACZ;KACD,CAAC,CAAC;AACJ,CAAC,CAAC,CAAC;AAEJ,MAAM,CAAC,MAAM,4BAA4B,GAAG;IAC3C,0BAA0B;IAC1B,0BAA0B,EAAE,eAAe;IAC3C,0BAA0B,EAAE,eAAe;CACpB,CAAC","sourcesContent":["import { AuthenticationProps } from \"../Authentication\";\nimport { AuthenticationType, AuthenticationProvider } from \"../../../types/smartDesktopDesignerTypes\";\n\nconst defaultCallback = () =>\n\tnew Promise((resolve) => {\n\t\tresolve(null);\n\t});\n\nconst getAuthenticationProviders = (): Promise<AuthenticationProvider[]> =>\n\tnew Promise((resolve) => {\n\t\tresolve([\n\t\t\t{\n\t\t\t\tname: \"Custom\",\n\t\t\t\tenabled: true,\n\t\t\t\ttype: AuthenticationType.OAUTH2,\n\t\t\t\tclient_id: \"\",\n\t\t\t\tsecret: null,\n\t\t\t\tredirect_uri: \"\",\n\t\t\t\tnonce: false,\n\t\t\t},\n\t\t]);\n\t});\n\nexport const default_authentication_props = {\n\tgetAuthenticationProviders,\n\tsetAuthenticationProviders: defaultCallback,\n\ttestAuthenticationProvider: defaultCallback,\n} as AuthenticationProps;\n"]}
|