@finsemble/finsemble-ui 7.0.1 → 7.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +13 -11
- 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 +3 -10
- 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 -1
- package/react/assets/css/finsemble.css +3 -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 +2 -2
- package/react/assets/css/menus.css +10 -10
- package/react/assets/css/notificationsCenter.css +16 -31
- 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 +2 -2
- package/react/assets/css/tags.css +10 -10
- package/react/assets/css/toolbar.css +22 -19
- package/react/assets/css/userPreferences.css +12 -14
- package/react/assets/css/windowTitleBar.css +75 -36
- 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/Checkbox.d.ts +1 -0
- package/react/components/common/Checkbox.js +2 -2
- package/react/components/common/Checkbox.js.map +1 -1
- package/react/components/common/ColorPicker.d.ts +5 -0
- package/react/components/common/ColorPicker.js +40 -0
- 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 +18 -0
- package/react/components/common/ErrorBoundary.js +21 -0
- package/react/components/common/ErrorBoundary.js.map +1 -1
- 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 +10 -0
- package/react/components/common/FinsembleIcon.js +51 -2
- package/react/components/common/FinsembleIcon.js.map +1 -1
- package/react/components/common/FinsembleSelect.js +5 -1
- package/react/components/common/FinsembleSelect.js.map +1 -1
- package/react/components/common/FinsembleToggleButtonBar.js +1 -1
- package/react/components/common/FinsembleToggleButtonBar.js.map +1 -1
- package/react/components/common/InputTable.d.ts +7 -0
- package/react/components/common/InputTable.js +7 -0
- package/react/components/common/InputTable.js.map +1 -1
- package/react/components/common/Tab.js +3 -0
- package/react/components/common/Tab.js.map +1 -1
- package/react/components/common/TimeSelect.js +24 -0
- 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/accordion.css +9 -6
- package/react/components/common/css/application-edit-page.css +39 -44
- 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 +8 -8
- package/react/components/common/css/time-select.css +1 -0
- package/react/components/common/css/toggle.css +4 -4
- 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 +1 -0
- package/react/components/common/helpers.js.map +1 -1
- package/react/components/common/stories/ColorPicker.stories.js +3 -0
- 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/tests/Accordion.spec.js +6 -0
- package/react/components/common/tests/Accordion.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 +1 -0
- package/react/components/common/tests/FinsembleToggle.spec.js.map +1 -1
- package/react/components/common/tests/FinsembleToggleButtonBar.spec.js +1 -0
- package/react/components/common/tests/FinsembleToggleButtonBar.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 +9 -0
- 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 +8 -0
- 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 +13 -0
- package/react/components/icon/Icon.js +34 -0
- package/react/components/icon/Icon.js.map +1 -1
- package/react/components/legacyControls/FinsembleDialog.d.ts +4 -0
- package/react/components/legacyControls/FinsembleDialog.js +15 -0
- 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 +126 -1
- 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/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 +112 -2
- 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 +3 -0
- package/react/components/menu/MenuToggle.js.map +1 -1
- package/react/components/menu/keyboardNavigation.d.ts +12 -0
- package/react/components/menu/keyboardNavigation.js +55 -0
- 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 +8 -0
- 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 +18 -0
- 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 +1 -1
- 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 +13 -6
- 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/views/CardView.js +3 -0
- package/react/components/notifications/components/views/CardView.js.map +1 -1
- package/react/components/notifications/components/views/ListView.js +8 -0
- 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 +3 -0
- 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 +17 -2
- 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 -1
- 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 +23 -3
- package/react/components/processMonitor/helpers.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 +4 -2
- package/react/components/sdd/AddApp.js +57 -49
- package/react/components/sdd/AddApp.js.map +1 -1
- package/react/components/sdd/AppEditAccess.js +8 -0
- package/react/components/sdd/AppEditAccess.js.map +1 -1
- package/react/components/sdd/AppEditPage.d.ts +2 -1
- package/react/components/sdd/AppEditPage.js +148 -361
- package/react/components/sdd/AppEditPage.js.map +1 -1
- package/react/components/sdd/Appearance.css +1 -1
- package/react/components/sdd/Appearance.js +3 -0
- package/react/components/sdd/Appearance.js.map +1 -1
- package/react/components/sdd/Application.js +39 -7
- package/react/components/sdd/Application.js.map +1 -1
- package/react/components/sdd/Applications.js +89 -13
- package/react/components/sdd/Applications.js.map +1 -1
- package/react/components/sdd/AssetsPage.css +3 -3
- package/react/components/sdd/EditPreload.js +10 -0
- package/react/components/sdd/EditPreload.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/Publish.js +2 -0
- 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.js +17 -0
- package/react/components/sdd/SmartDesktopDesigner.js.map +1 -1
- package/react/components/sdd/ThemePage.css +6 -23
- package/react/components/sdd/ThemePage.js +1 -1
- package/react/components/sdd/ThemePage.js.map +1 -1
- package/react/components/sdd/Themes.js +2 -0
- package/react/components/sdd/Themes.js.map +1 -1
- package/react/components/sdd/Toolbar.js +7 -0
- 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.js +4 -0
- package/react/components/sdd/common/setPreloadDefaults.js.map +1 -1
- package/react/components/sdd/css/addApp.css +18 -5
- package/react/components/sdd/css/appearance.css +6 -0
- package/react/components/sdd/css/applications.css +27 -14
- 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 +8 -11
- 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/configTemplate.js +1 -0
- package/react/components/sdd/fixtures/configTemplate.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 +303 -0
- package/react/components/sdd/smartDesktopClient.js +334 -1
- package/react/components/sdd/smartDesktopClient.js.map +1 -1
- package/react/components/sdd/smartDesktopClient.spec.js +5 -2
- package/react/components/sdd/smartDesktopClient.spec.js.map +1 -1
- package/react/components/sdd/stories/AddApp.stories.d.ts +2 -1
- package/react/components/sdd/stories/AddApp.stories.js +8 -0
- package/react/components/sdd/stories/AddApp.stories.js.map +1 -1
- package/react/components/sdd/stories/AppEditPage.stories.d.ts +3 -1
- package/react/components/sdd/stories/AppEditPage.stories.js +3 -0
- package/react/components/sdd/stories/AppEditPage.stories.js.map +1 -1
- package/react/components/sdd/stories/Appearance.stories.js +1 -0
- package/react/components/sdd/stories/Appearance.stories.js.map +1 -1
- package/react/components/sdd/tests/AddApp.spec.js +40 -3
- package/react/components/sdd/tests/AddApp.spec.js.map +1 -1
- package/react/components/sdd/tests/AppEditPage.spec.js +16 -0
- package/react/components/sdd/tests/AppEditPage.spec.js.map +1 -1
- package/react/components/sdd/tests/Application.spec.js +33 -438
- 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 +29 -5
- package/react/components/sdd/tests/Applications.spec.js.map +1 -1
- package/react/components/sdd/tests/Authentication.spec.js +7 -0
- 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 +13 -0
- package/react/components/sdd/tests/EditPreload.spec.js.map +1 -1
- package/react/components/sdd/tests/Export.spec.js +2 -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/OptionalSettingsView.spec.js +29 -0
- package/react/components/sdd/tests/OptionalSettingsView.spec.js.map +1 -1
- package/react/components/sdd/tests/ProjectErrors.spec.js +2 -0
- package/react/components/sdd/tests/ProjectErrors.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/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.js +6 -0
- package/react/components/search/SearchResult.js.map +1 -1
- package/react/components/search/SearchResult.spec.js +7 -0
- package/react/components/search/SearchResult.spec.js.map +1 -1
- package/react/components/search/SearchResult.stories.js +4 -0
- package/react/components/search/SearchResult.stories.js.map +1 -1
- package/react/components/search/SearchResults.js +5 -1
- package/react/components/search/SearchResults.js.map +1 -1
- package/react/components/search/SearchResults.spec.js +7 -0
- package/react/components/search/SearchResults.spec.js.map +1 -1
- 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 +9 -0
- 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/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 +44 -0
- package/react/components/singleInputDialog/SingleInputDialog.js.map +1 -1
- package/react/components/smartDesktopDesigner/SmartDesktopDesigner.js +6 -0
- 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 +1 -0
- 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 +4 -0
- package/react/components/toolbar/ToolbarIcon.js.map +1 -1
- package/react/components/toolbar/ToolbarSection.d.ts +7 -0
- package/react/components/toolbar/ToolbarSection.js +19 -1
- 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 +82 -0
- 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 +11 -0
- 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 +70 -3
- 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 +7 -0
- 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 +16 -0
- package/react/components/toolbar/workspaceManagementMenu/components/Workspace.js +20 -0
- 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 +5 -0
- 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 +76 -0
- package/react/components/toolbar/workspaceManagementMenu/stores/workspaceManagementMenuStore.js +140 -1
- 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/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 +12 -0
- package/react/components/userPreferences/components/content/Workspaces.js +36 -3
- package/react/components/userPreferences/components/content/Workspaces.js.map +1 -1
- package/react/components/userPreferences/components/content/notificationViews/NotificationsPreferencesHome.js +3 -0
- 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 +11 -0
- package/react/components/userPreferences/components/general/ScheduledClose.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 +17 -0
- package/react/components/userPreferences/stores/UserPreferencesStore.js +27 -0
- package/react/components/userPreferences/stores/UserPreferencesStore.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/Workspace.spec.js +20 -0
- package/react/components/userPreferences/tests/Workspace.spec.js.map +1 -1
- package/react/components/windowTitleBar/WindowTitleBarShell.d.ts +111 -0
- package/react/components/windowTitleBar/WindowTitleBarShell.js +218 -47
- 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 +25 -9
- 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 +172 -10
- 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 +72 -1
- 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 +63 -0
- 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/timer.js +2 -0
- package/react/components/yesNoDialog/timer.js.map +1 -1
- package/react/enzymeSetup.js +5 -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 +100 -4
- 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.js +52 -0
- 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.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 +4 -0
- package/react/store.js +11 -0
- package/react/store.js.map +1 -1
- package/react/tsconfig.tsbuildinfo +1 -1
- 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 +5 -0
- package/react/types/smartDesktopDesignerTypes.js.map +1 -1
- package/react/types/workspaceTypes.d.ts +8 -0
|
@@ -11,8 +11,8 @@ body.app-catalog-body {
|
|
|
11
11
|
|
|
12
12
|
body.app-catalog-body {
|
|
13
13
|
overflow: hidden;
|
|
14
|
-
margin-left:
|
|
15
|
-
margin-right:
|
|
14
|
+
margin-left: 0;
|
|
15
|
+
margin-right: 0;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
#AppCatalog-tsx {
|
|
@@ -22,6 +22,7 @@ body.app-catalog-body {
|
|
|
22
22
|
.app-catalog {
|
|
23
23
|
background-color: var(--catalog-background-color);
|
|
24
24
|
color: var(--catalog-font-color);
|
|
25
|
+
|
|
25
26
|
/* background-image: linear-gradient(to top, rgb(60, 76, 88), rgb(48, 61, 71)); */
|
|
26
27
|
font-family: var(--font-family);
|
|
27
28
|
font-style: normal;
|
|
@@ -30,6 +31,9 @@ body.app-catalog-body {
|
|
|
30
31
|
letter-spacing: normal;
|
|
31
32
|
height: 100%;
|
|
32
33
|
overflow: auto;
|
|
34
|
+
display: flex;
|
|
35
|
+
flex-direction: column;
|
|
36
|
+
justify-content: space-between;
|
|
33
37
|
}
|
|
34
38
|
|
|
35
39
|
.app-catalog .market-content {
|
|
@@ -49,6 +53,7 @@ body.app-catalog-body {
|
|
|
49
53
|
width: 5px;
|
|
50
54
|
background-color: transparent;
|
|
51
55
|
border-radius: 3px;
|
|
56
|
+
|
|
52
57
|
/* display: none; */
|
|
53
58
|
}
|
|
54
59
|
|
|
@@ -59,7 +64,7 @@ body.app-catalog-body {
|
|
|
59
64
|
}
|
|
60
65
|
|
|
61
66
|
.market_content {
|
|
62
|
-
padding:
|
|
67
|
+
padding: 0 5px 25px;
|
|
63
68
|
font-family: var(--font-family);
|
|
64
69
|
}
|
|
65
70
|
|
|
@@ -88,7 +93,7 @@ body.app-catalog-body {
|
|
|
88
93
|
height: 206px;
|
|
89
94
|
width: 518px;
|
|
90
95
|
background-color: var(--catalog-background-color);
|
|
91
|
-
box-shadow: 1px 2px 4px 0
|
|
96
|
+
box-shadow: 1px 2px 4px 0 rgb(0 0 0 / 25%);
|
|
92
97
|
}
|
|
93
98
|
|
|
94
99
|
.hero-content .visible-card .app-details {
|
|
@@ -97,7 +102,7 @@ body.app-catalog-body {
|
|
|
97
102
|
justify-content: space-evenly;
|
|
98
103
|
align-items: center;
|
|
99
104
|
align-content: center;
|
|
100
|
-
color: #
|
|
105
|
+
color: #fff;
|
|
101
106
|
user-select: none;
|
|
102
107
|
}
|
|
103
108
|
|
|
@@ -181,8 +186,6 @@ body.app-catalog-body {
|
|
|
181
186
|
border-radius: 40px;
|
|
182
187
|
width: 26px;
|
|
183
188
|
height: 26px;
|
|
184
|
-
display: flex;
|
|
185
|
-
justify-content: center;
|
|
186
189
|
align-items: center;
|
|
187
190
|
transition: 0.2s background-color;
|
|
188
191
|
}
|
|
@@ -203,7 +206,7 @@ body.app-catalog-body {
|
|
|
203
206
|
background-color: transparent;
|
|
204
207
|
}
|
|
205
208
|
|
|
206
|
-
.ff-adp-chevron-left
|
|
209
|
+
.ff-adp-chevron-left::before {
|
|
207
210
|
padding-right: 5px;
|
|
208
211
|
}
|
|
209
212
|
|
|
@@ -213,7 +216,7 @@ body.app-catalog-body {
|
|
|
213
216
|
justify-content: space-evenly;
|
|
214
217
|
width: 254px;
|
|
215
218
|
height: 124px;
|
|
216
|
-
box-shadow: 1px 2px 4px
|
|
219
|
+
box-shadow: 1px 2px 4px 0 rgb(0 0 0 / 25%);
|
|
217
220
|
background-color: var(--catalog-card-background-color);
|
|
218
221
|
user-select: none;
|
|
219
222
|
cursor: pointer;
|
|
@@ -225,9 +228,8 @@ body.app-catalog-body {
|
|
|
225
228
|
background-color: var(--core-primary-1);
|
|
226
229
|
box-shadow: none;
|
|
227
230
|
cursor: default;
|
|
228
|
-
border-radius:
|
|
229
|
-
|
|
230
|
-
-webkit-user-select: none;
|
|
231
|
+
border-radius: 0;
|
|
232
|
+
user-select: none;
|
|
231
233
|
}
|
|
232
234
|
|
|
233
235
|
.app-card-list {
|
|
@@ -246,7 +248,7 @@ body.app-catalog-body {
|
|
|
246
248
|
display: flex;
|
|
247
249
|
flex-direction: row;
|
|
248
250
|
align-items: center;
|
|
249
|
-
margin:
|
|
251
|
+
margin: 0 10px;
|
|
250
252
|
}
|
|
251
253
|
|
|
252
254
|
.app-card .app-image {
|
|
@@ -271,7 +273,7 @@ body.app-catalog-body {
|
|
|
271
273
|
display: flex;
|
|
272
274
|
background-color: #07ac8b;
|
|
273
275
|
align-items: center;
|
|
274
|
-
color: #
|
|
276
|
+
color: #000;
|
|
275
277
|
font-family: var(--font-family);
|
|
276
278
|
font-size: 14px;
|
|
277
279
|
font-weight: var(--font-weight);
|
|
@@ -289,13 +291,13 @@ body.app-catalog-body {
|
|
|
289
291
|
|
|
290
292
|
.app-card .app-title {
|
|
291
293
|
width: 160px;
|
|
292
|
-
font-family:
|
|
294
|
+
font-family: OpenSans;
|
|
293
295
|
font-size: 14px;
|
|
294
296
|
font-weight: var(--font-weight);
|
|
295
297
|
color: var(--catalog-font-color);
|
|
296
298
|
overflow: hidden;
|
|
297
299
|
text-overflow: ellipsis;
|
|
298
|
-
display:
|
|
300
|
+
display: box;
|
|
299
301
|
-webkit-line-clamp: 2;
|
|
300
302
|
-webkit-box-orient: vertical;
|
|
301
303
|
padding-left: 3px;
|
|
@@ -310,25 +312,6 @@ body.app-catalog-body {
|
|
|
310
312
|
height: 20px;
|
|
311
313
|
}
|
|
312
314
|
|
|
313
|
-
.app-card .row_description .app-description {
|
|
314
|
-
width: 170px;
|
|
315
|
-
height: 34px;
|
|
316
|
-
color: var(--core-primary-5);
|
|
317
|
-
overflow: hidden;
|
|
318
|
-
text-overflow: ellipsis;
|
|
319
|
-
}
|
|
320
|
-
|
|
321
|
-
.app-card .row_description .app-description {
|
|
322
|
-
height: 34px;
|
|
323
|
-
width: 170px;
|
|
324
|
-
overflow: hidden;
|
|
325
|
-
text-overflow: ellipsis;
|
|
326
|
-
display: -webkit-box;
|
|
327
|
-
-webkit-line-clamp: 2;
|
|
328
|
-
-webkit-box-orient: vertical;
|
|
329
|
-
margin-left: -8px;
|
|
330
|
-
}
|
|
331
|
-
|
|
332
315
|
.app-card .row_description {
|
|
333
316
|
display: flex;
|
|
334
317
|
flex-direction: row;
|
|
@@ -343,6 +326,18 @@ body.app-catalog-body {
|
|
|
343
326
|
color: var(--core-primary-5);
|
|
344
327
|
}
|
|
345
328
|
|
|
329
|
+
.app-card .row_description .app-description {
|
|
330
|
+
width: 170px;
|
|
331
|
+
height: 34px;
|
|
332
|
+
color: var(--core-primary-5);
|
|
333
|
+
overflow: hidden;
|
|
334
|
+
text-overflow: ellipsis;
|
|
335
|
+
display: box;
|
|
336
|
+
-webkit-line-clamp: 2;
|
|
337
|
+
-webkit-box-orient: vertical;
|
|
338
|
+
margin-left: -8px;
|
|
339
|
+
}
|
|
340
|
+
|
|
346
341
|
.app-card .app-tags {
|
|
347
342
|
display: flex;
|
|
348
343
|
flex-direction: row;
|
|
@@ -357,7 +352,7 @@ body.app-catalog-body {
|
|
|
357
352
|
|
|
358
353
|
.app-card .app-tag-names {
|
|
359
354
|
width: 170px;
|
|
360
|
-
font-family:
|
|
355
|
+
font-family: OpenSans;
|
|
361
356
|
font-weight: 600;
|
|
362
357
|
color: var(--core-primary-5);
|
|
363
358
|
font-size: 10px;
|
|
@@ -397,13 +392,6 @@ body.app-catalog-body {
|
|
|
397
392
|
padding-top: 3px;
|
|
398
393
|
}
|
|
399
394
|
|
|
400
|
-
.app-catalog {
|
|
401
|
-
display: flex;
|
|
402
|
-
flex-direction: column;
|
|
403
|
-
justify-content: space-between;
|
|
404
|
-
background-color: var(--catalog-background-color);
|
|
405
|
-
}
|
|
406
|
-
|
|
407
395
|
.carousel-main {
|
|
408
396
|
display: flex;
|
|
409
397
|
flex-direction: column;
|
|
@@ -421,9 +409,13 @@ body.app-catalog-body {
|
|
|
421
409
|
}
|
|
422
410
|
|
|
423
411
|
.carousel-main .carousel-content {
|
|
412
|
+
/* stylelint-disable-next-line declaration-no-important */
|
|
424
413
|
display: flex !important;
|
|
414
|
+
/* stylelint-disable-next-line declaration-no-important */
|
|
425
415
|
flex-direction: row !important;
|
|
416
|
+
/* stylelint-disable-next-line declaration-no-important */
|
|
426
417
|
justify-content: space-between !important;
|
|
418
|
+
/* stylelint-disable-next-line declaration-no-important */
|
|
427
419
|
align-items: center !important;
|
|
428
420
|
}
|
|
429
421
|
|
|
@@ -458,7 +450,7 @@ body.app-catalog-body {
|
|
|
458
450
|
justify-content: space-between;
|
|
459
451
|
align-items: center;
|
|
460
452
|
margin-bottom: 6px;
|
|
461
|
-
padding:
|
|
453
|
+
padding: 0 38px;
|
|
462
454
|
}
|
|
463
455
|
|
|
464
456
|
.carousel-header .see-more {
|
|
@@ -478,18 +470,18 @@ body.app-catalog-body {
|
|
|
478
470
|
}
|
|
479
471
|
|
|
480
472
|
.search-main .button-label {
|
|
481
|
-
padding:
|
|
473
|
+
padding: 0 5px;
|
|
482
474
|
}
|
|
483
475
|
|
|
484
476
|
.app-catalog .ff-search {
|
|
485
|
-
padding: 8px 10px
|
|
477
|
+
padding: 8px 10px 0 5px;
|
|
486
478
|
}
|
|
487
479
|
|
|
488
480
|
.search-main {
|
|
489
481
|
padding: 6px 16px;
|
|
490
482
|
position: sticky;
|
|
491
483
|
z-index: 2147483647;
|
|
492
|
-
top:
|
|
484
|
+
top: 0;
|
|
493
485
|
background-color: var(--catalog-background-color);
|
|
494
486
|
}
|
|
495
487
|
|
|
@@ -523,31 +515,39 @@ body.app-catalog-body {
|
|
|
523
515
|
100% {opacity: 0; visibility: hidden;}
|
|
524
516
|
} */
|
|
525
517
|
|
|
526
|
-
@keyframes
|
|
518
|
+
@keyframes fade-in {
|
|
527
519
|
0% {
|
|
528
520
|
opacity: 0.2;
|
|
529
521
|
}
|
|
522
|
+
|
|
530
523
|
20% {
|
|
531
524
|
opacity: 0.4;
|
|
532
525
|
}
|
|
526
|
+
|
|
533
527
|
30% {
|
|
534
528
|
opacity: 0.6;
|
|
535
529
|
}
|
|
530
|
+
|
|
536
531
|
40% {
|
|
537
532
|
opacity: 1;
|
|
538
533
|
}
|
|
534
|
+
|
|
539
535
|
60% {
|
|
540
536
|
opacity: 1;
|
|
541
537
|
}
|
|
538
|
+
|
|
542
539
|
70% {
|
|
543
540
|
opacity: 0.6;
|
|
544
541
|
}
|
|
542
|
+
|
|
545
543
|
80% {
|
|
546
544
|
opacity: 0.4;
|
|
547
545
|
}
|
|
546
|
+
|
|
548
547
|
95% {
|
|
549
548
|
opacity: 0.2;
|
|
550
549
|
}
|
|
550
|
+
|
|
551
551
|
100% {
|
|
552
552
|
opacity: 0;
|
|
553
553
|
}
|
|
@@ -570,7 +570,7 @@ body.app-catalog-body {
|
|
|
570
570
|
right: 0;
|
|
571
571
|
margin: auto;
|
|
572
572
|
position: absolute;
|
|
573
|
-
animation:
|
|
573
|
+
animation: fade-in 1.5s linear;
|
|
574
574
|
cursor: default;
|
|
575
575
|
pointer-events: none;
|
|
576
576
|
}
|
|
@@ -616,7 +616,7 @@ body.app-catalog-body {
|
|
|
616
616
|
height: 24px;
|
|
617
617
|
border-radius: 12px;
|
|
618
618
|
color: var(--catalog-font-color);
|
|
619
|
-
padding:
|
|
619
|
+
padding: 0 5px 0 9px;
|
|
620
620
|
display: flex;
|
|
621
621
|
justify-content: center;
|
|
622
622
|
align-items: center;
|
|
@@ -702,14 +702,13 @@ body.app-catalog-body {
|
|
|
702
702
|
|
|
703
703
|
.label-bar {
|
|
704
704
|
display: flex;
|
|
705
|
-
flex-
|
|
705
|
+
flex-flow: row wrap;
|
|
706
706
|
justify-content: flex-start;
|
|
707
|
-
flex-wrap: wrap;
|
|
708
707
|
margin-top: 8px;
|
|
709
708
|
}
|
|
710
709
|
|
|
711
710
|
.app-results {
|
|
712
|
-
padding:
|
|
711
|
+
padding: 0 32px;
|
|
713
712
|
display: flex;
|
|
714
713
|
justify-content: flex-start;
|
|
715
714
|
}
|
|
@@ -737,15 +736,15 @@ body.app-catalog-body {
|
|
|
737
736
|
}
|
|
738
737
|
|
|
739
738
|
.app-showcase .app-warning .app-warning-text {
|
|
740
|
-
padding:
|
|
739
|
+
padding: 0 5px;
|
|
741
740
|
}
|
|
742
741
|
|
|
743
742
|
.app-showcase .header {
|
|
744
743
|
display: flex;
|
|
745
744
|
flex-direction: row;
|
|
746
745
|
justify-content: space-between;
|
|
747
|
-
padding: 5px
|
|
748
|
-
margin:
|
|
746
|
+
padding: 5px 0;
|
|
747
|
+
margin: 0 49px;
|
|
749
748
|
}
|
|
750
749
|
|
|
751
750
|
.app-showcase .header .icon-title-container {
|
|
@@ -778,7 +777,7 @@ body.app-catalog-body {
|
|
|
778
777
|
|
|
779
778
|
.app-showcase .header .action-button-container .remove-button {
|
|
780
779
|
height: 16px;
|
|
781
|
-
padding: 5px
|
|
780
|
+
padding: 5px 0;
|
|
782
781
|
cursor: pointer;
|
|
783
782
|
}
|
|
784
783
|
|
|
@@ -810,6 +809,7 @@ body.app-catalog-body {
|
|
|
810
809
|
|
|
811
810
|
.app-showcase .header .action-button.remove:hover {
|
|
812
811
|
color: var(--button-negative-background-hover-color);
|
|
812
|
+
background-color: var(--accent-negative-1);
|
|
813
813
|
}
|
|
814
814
|
|
|
815
815
|
.remove-button {
|
|
@@ -846,12 +846,12 @@ body.app-catalog-body {
|
|
|
846
846
|
flex-direction: row;
|
|
847
847
|
justify-content: space-between;
|
|
848
848
|
align-items: center;
|
|
849
|
-
padding: 5px
|
|
849
|
+
padding: 5px 0;
|
|
850
850
|
user-select: none;
|
|
851
851
|
}
|
|
852
852
|
|
|
853
853
|
.app-showcase .image-carousel-image {
|
|
854
|
-
padding: 5px
|
|
854
|
+
padding: 5px 0;
|
|
855
855
|
height: 125px;
|
|
856
856
|
width: 125px;
|
|
857
857
|
}
|
|
@@ -861,12 +861,12 @@ body.app-catalog-body {
|
|
|
861
861
|
flex-direction: column;
|
|
862
862
|
justify-content: flex-start;
|
|
863
863
|
font-size: var(--catalog-font-size-text);
|
|
864
|
-
padding: 5px
|
|
865
|
-
margin:
|
|
864
|
+
padding: 5px 0;
|
|
865
|
+
margin: 0 28px 10px;
|
|
866
866
|
}
|
|
867
867
|
|
|
868
868
|
.app-notes p {
|
|
869
|
-
margin:
|
|
869
|
+
margin: 0;
|
|
870
870
|
}
|
|
871
871
|
|
|
872
872
|
.app-showcase a {
|
|
@@ -925,7 +925,7 @@ body.app-catalog-body {
|
|
|
925
925
|
flex-direction: row;
|
|
926
926
|
justify-content: space-between;
|
|
927
927
|
font-size: 12px;
|
|
928
|
-
padding: 5px
|
|
928
|
+
padding: 5px 0;
|
|
929
929
|
margin-left: 28px;
|
|
930
930
|
}
|
|
931
931
|
|
|
@@ -950,8 +950,7 @@ body.app-catalog-body {
|
|
|
950
950
|
|
|
951
951
|
.app-showcase .tags {
|
|
952
952
|
display: flex;
|
|
953
|
-
flex-
|
|
954
|
-
flex-wrap: wrap;
|
|
953
|
+
flex-flow: row wrap;
|
|
955
954
|
margin-top: 2px;
|
|
956
955
|
}
|
|
957
956
|
|
|
@@ -960,8 +959,8 @@ body.app-catalog-body {
|
|
|
960
959
|
border-radius: 12px;
|
|
961
960
|
background-color: var(--tag-background-color);
|
|
962
961
|
user-select: none;
|
|
963
|
-
margin:
|
|
964
|
-
padding: 1px 8px
|
|
962
|
+
margin: 0 4px 4px 0;
|
|
963
|
+
padding: 1px 8px 0;
|
|
965
964
|
cursor: pointer;
|
|
966
965
|
transition: 0.2s all;
|
|
967
966
|
}
|
|
@@ -982,7 +981,7 @@ body.app-catalog-body {
|
|
|
982
981
|
left: 0;
|
|
983
982
|
width: 100%;
|
|
984
983
|
height: 100%;
|
|
985
|
-
background:
|
|
984
|
+
background: rgb(0 0 0 / 60%);
|
|
986
985
|
}
|
|
987
986
|
|
|
988
987
|
.modal-main {
|
|
@@ -1012,10 +1011,6 @@ body.app-catalog-body {
|
|
|
1012
1011
|
background-color: var(--accent-negative);
|
|
1013
1012
|
}
|
|
1014
1013
|
|
|
1015
|
-
.app-showcase .header .action-button.remove:hover {
|
|
1016
|
-
background-color: var(--accent-negative-1);
|
|
1017
|
-
}
|
|
1018
|
-
|
|
1019
1014
|
.app-showcase .header .action-button.disabled {
|
|
1020
1015
|
background-color: transparent;
|
|
1021
1016
|
color: var(--button-disabled-color);
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
|
|
27
27
|
/* Override defaults from dialogs.css which assumes flex placement */
|
|
28
28
|
.fsbl-button {
|
|
29
|
-
margin: 20px
|
|
29
|
+
margin: 20px 0;
|
|
30
30
|
display: block;
|
|
31
31
|
flex-direction: initial;
|
|
32
32
|
}
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
.fsbl-auth-top {
|
|
35
35
|
display: flex;
|
|
36
36
|
justify-content: space-between;
|
|
37
|
-
padding: 10px 10px 5px
|
|
37
|
+
padding: 10px 10px 5px 0;
|
|
38
38
|
width: 95%;
|
|
39
39
|
}
|
|
40
40
|
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
|
|
54
54
|
/* Override default body.dialog settings */
|
|
55
55
|
body.authentication .fsbl-auth-input {
|
|
56
|
-
padding: 6px
|
|
56
|
+
padding: 6px 0;
|
|
57
57
|
margin-top: 3px;
|
|
58
58
|
}
|
|
59
59
|
|
|
@@ -73,6 +73,7 @@ body.authentication {
|
|
|
73
73
|
background: var(--dialog-background-color);
|
|
74
74
|
}
|
|
75
75
|
|
|
76
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
76
77
|
::-webkit-input-placeholder {
|
|
77
78
|
text-align: left;
|
|
78
79
|
}
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
|
|
71
71
|
.finsemble-dropdown-action__btn {
|
|
72
72
|
align-items: center;
|
|
73
|
-
background-color: var(--
|
|
73
|
+
background-color: var(--accent-primary);
|
|
74
74
|
border-radius: 5px;
|
|
75
75
|
cursor: pointer;
|
|
76
76
|
display: flex;
|
|
@@ -94,21 +94,14 @@
|
|
|
94
94
|
white-space: nowrap;
|
|
95
95
|
width: 100%;
|
|
96
96
|
padding: 4px;
|
|
97
|
+
margin: auto;
|
|
97
98
|
color: var(--font-color);
|
|
98
99
|
}
|
|
99
100
|
|
|
100
|
-
.finsemble-dropdown-action__btn {
|
|
101
|
-
background-color: var(--accent-primary);
|
|
102
|
-
}
|
|
103
|
-
|
|
104
101
|
.finsemble-dropdown-action__btn:hover {
|
|
105
102
|
background-color: var(--accent-primary-1);
|
|
106
103
|
}
|
|
107
104
|
|
|
108
|
-
.finsemble-dropdown-action__btn span.btn-label {
|
|
109
|
-
margin: auto;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
105
|
.finsemble-dropdown-action__btn-options {
|
|
113
106
|
background-color: var(--accent-primary-1);
|
|
114
107
|
border-radius: 4px;
|
|
@@ -153,7 +146,7 @@
|
|
|
153
146
|
content: "";
|
|
154
147
|
display: inline-block;
|
|
155
148
|
height: 19px;
|
|
156
|
-
margin:
|
|
149
|
+
margin: 0 4px;
|
|
157
150
|
vertical-align: top;
|
|
158
151
|
width: 1px;
|
|
159
152
|
}
|
|
@@ -30,9 +30,10 @@
|
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
.icon-avatar-wrapper.entity-with-img {
|
|
33
|
-
padding-right:
|
|
33
|
+
padding-right: 0;
|
|
34
|
+
|
|
34
35
|
/* Margin is different for images than for the badges because
|
|
35
|
-
of their padding and other CSS reasons
|
|
36
|
+
of their padding and other CSS reasons. */
|
|
36
37
|
margin-right: 6px;
|
|
37
38
|
}
|
|
38
39
|
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
display: flex;
|
|
21
21
|
flex-direction: row;
|
|
22
22
|
justify-content: space-between;
|
|
23
|
-
margin:
|
|
23
|
+
margin: 0 8px 6px;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
.notification-close {
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
.notification-description {
|
|
56
|
-
margin:
|
|
56
|
+
margin: 0 10px;
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
.notification-logo {
|
|
@@ -7,29 +7,29 @@
|
|
|
7
7
|
html.groupMask body {
|
|
8
8
|
background-color: var(--groupMask-background-color);
|
|
9
9
|
border: 1px solid var(--groupMask-border-color);
|
|
10
|
-
margin:
|
|
10
|
+
margin: 0;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
html.groupMask html
|
|
14
|
-
height:
|
|
13
|
+
html.groupMask html::before {
|
|
14
|
+
height: 0;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
html.groupMask html
|
|
18
|
-
width:
|
|
17
|
+
html.groupMask html::after {
|
|
18
|
+
width: 0;
|
|
19
19
|
top: 0;
|
|
20
20
|
right: 0;
|
|
21
21
|
bottom: 0;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
-
html.groupMask body
|
|
25
|
-
height:
|
|
24
|
+
html.groupMask body::before {
|
|
25
|
+
height: 0;
|
|
26
26
|
right: 0;
|
|
27
27
|
bottom: 0;
|
|
28
28
|
left: 0;
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
html.groupMask body
|
|
32
|
-
width:
|
|
31
|
+
html.groupMask body::after {
|
|
32
|
+
width: 0;
|
|
33
33
|
top: 0;
|
|
34
34
|
bottom: 0;
|
|
35
35
|
left: 0;
|