@scion/workbench 19.0.0-beta.2 → 19.0.0-beta.3
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/README.md +6 -4
- package/design/_workbench-dark-theme-design-tokens.scss +52 -12
- package/design/_workbench-icon-font.scss +1 -1
- package/design/_workbench-light-theme-design-tokens.scss +54 -14
- package/fesm2022/scion-workbench.mjs +7265 -5286
- package/fesm2022/scion-workbench.mjs.map +1 -1
- package/lib/activity/activity-bar/activity-bar.component.d.ts +10 -0
- package/lib/activity/activity-bar/activity-item/activity-item.component.d.ts +16 -0
- package/lib/activity/activity-bar/activity-stack/activity-stack.component.d.ts +10 -0
- package/lib/activity/activity-panel/activity-panel.component.d.ts +41 -0
- package/lib/activity/public_api.d.ts +1 -0
- package/lib/activity/workbench-activity.model.d.ts +110 -0
- package/lib/common/asserts.util.d.ts +1 -1
- package/lib/common/dasherize.util.d.ts +4 -0
- package/lib/common/disposable.d.ts +4 -0
- package/lib/common/dom.util.d.ts +19 -1
- package/lib/common/grid-if-visible.pipe.d.ts +13 -0
- package/lib/common/objects.util.d.ts +11 -3
- package/lib/common/observables.d.ts +8 -8
- package/lib/common/public_api.d.ts +1 -1
- package/lib/common/resolve-when.util.d.ts +9 -0
- package/lib/common/utility-types.d.ts +6 -0
- package/lib/content-projection/content-as-overlay.component.d.ts +1 -1
- package/lib/desktop/desktop.directive.d.ts +1 -1
- package/lib/dialog/dialog-footer/dialog-footer.component.d.ts +1 -2
- package/lib/dialog/dialog-footer/workbench-dialog-action.directive.d.ts +8 -10
- package/lib/dialog/dialog-footer/workbench-dialog-footer.directive.d.ts +8 -11
- package/lib/dialog/dialog-header/dialog-header.component.d.ts +1 -2
- package/lib/dialog/dialog-header/workbench-dialog-header.directive.d.ts +8 -11
- package/lib/dialog/movable.directive.d.ts +11 -12
- package/lib/dialog/public_api.d.ts +2 -2
- package/lib/dialog/resizable.directive.d.ts +8 -16
- package/lib/dialog/workbench-dialog.component.d.ts +9 -14
- package/lib/dialog/workbench-dialog.d.ts +6 -5
- package/lib/dialog//311/265workbench-dialog.d.ts +7 -6
- package/lib/filter-field/filter-field.component.d.ts +23 -26
- package/lib/glass-pane/glass-pane.directive.d.ts +4 -5
- package/lib/icon/icon-providers.d.ts +6 -0
- package/lib/icon/icon.component.d.ts +33 -0
- package/lib/icon/material-icon-provider.d.ts +25 -0
- package/lib/icon/public_api.d.ts +1 -0
- package/lib/icon/workbench-icon-provider.d.ts +30 -0
- package/lib/icon/workbench-icon-provider.model.d.ts +64 -0
- package/lib/layout/{workbench-layout.component.d.ts → grid/grid.component.d.ts} +38 -10
- package/lib/layout/grid-element/grid-element.component.d.ts +16 -20
- package/lib/layout/layout.component.d.ts +60 -0
- package/lib/layout/migration/model/workbench-grid-migration-v2.model.d.ts +22 -0
- package/lib/layout/migration/model/workbench-grid-migration-v3.model.d.ts +30 -0
- package/lib/layout/migration/model/workbench-grid-migration-v4.model.d.ts +31 -0
- package/lib/layout/migration/model/{workbench-layout-migration-v5.model.d.ts → workbench-grid-migration-v5.model.d.ts} +3 -3
- package/lib/layout/migration/model/{workbench-layout-migration-v6.model.d.ts → workbench-grid-migration-v6.model.d.ts} +3 -3
- package/lib/layout/migration/model/{workbench-layout-migration-v7.model.d.ts → workbench-grid-migration-v7.model.d.ts} +3 -3
- package/lib/layout/migration/model/workbench-layout-migration-v2.model.d.ts +9 -21
- package/lib/layout/migration/model/workbench-layout-migration-v3.model.d.ts +8 -28
- package/lib/layout/migration/model/workbench-layout-migration-v4.model.d.ts +18 -29
- package/lib/layout/migration/workbench-grid-migration-v3.service.d.ts +14 -0
- package/lib/layout/migration/workbench-grid-migration-v4.service.d.ts +12 -0
- package/lib/layout/migration/{workbench-layout-migration-v5.service.d.ts → workbench-grid-migration-v5.service.d.ts} +3 -3
- package/lib/layout/migration/workbench-grid-migration-v6.service.d.ts +12 -0
- package/lib/layout/migration/workbench-grid-migration-v7.service.d.ts +10 -0
- package/lib/layout/migration/{workbench-layout-migration-v6.service.d.ts → workbench-layout-migration-v2.service.d.ts} +5 -4
- package/lib/layout/migration/workbench-layout-migration-v3.service.d.ts +1 -5
- package/lib/layout/migration/workbench-layout-migration-v4.service.d.ts +1 -1
- package/lib/layout/public_api.d.ts +1 -1
- package/lib/layout/rendering-flag.d.ts +7 -0
- package/lib/layout/{workbench-layout.model.d.ts → workbench-grid.model.d.ts} +26 -3
- package/lib/{perspective/workbench-grid-merger.service.d.ts → layout/workbench-layout-merger.service.d.ts} +5 -5
- package/lib/layout/workbench-layout-storage.service.d.ts +28 -0
- package/lib/layout/workbench-layout.d.ts +289 -28
- package/lib/layout/workbench-layout.factory.d.ts +4 -6
- package/lib/layout/workbench-layout.service.d.ts +24 -13
- package/lib/layout/workbench-layouts.util.d.ts +25 -1
- package/lib/layout/workench-layout-serializer.service.d.ts +52 -14
- package/lib/layout//311/265workbench-layout.d.ts +351 -83
- package/lib/layout//311/265workbench-layout.factory.d.ts +6 -21
- package/lib/logging/console-appender.service.d.ts +0 -1
- package/lib/logging/public_api.d.ts +1 -1
- package/lib/message-box/message-box-footer/message-box-footer.component.d.ts +7 -8
- package/lib/message-box/message-box-header/message-box-header.component.d.ts +3 -3
- package/lib/message-box/public_api.d.ts +1 -1
- package/lib/message-box/workbench-message-box.component.d.ts +5 -8
- package/lib/message-box/workbench-message-box.options.d.ts +6 -5
- package/lib/message-box/workbench-message-box.service.d.ts +2 -1
- package/lib/message-box//311/265workbench-message-box.service.d.ts +4 -6
- package/lib/microfrontend-platform/common/microfrontend.util.d.ts +15 -2
- package/lib/microfrontend-platform/initialization/microfrontend-platform-initializer.service.d.ts +20 -38
- package/lib/microfrontend-platform/initialization/ng-zone-observable-decorator.d.ts +1 -3
- package/lib/microfrontend-platform/manifest-object-cache.service.d.ts +9 -10
- package/lib/microfrontend-platform/microfrontend-dialog/microfrontend-dialog-intent-handler.interceptor.d.ts +2 -5
- package/lib/microfrontend-platform/microfrontend-dialog/microfrontend-dialog.component.d.ts +14 -34
- package/lib/microfrontend-platform/microfrontend-host-dialog/microfrontend-host-dialog.component.d.ts +13 -16
- package/lib/microfrontend-platform/microfrontend-host-message-box/microfrontend-host-message-box.component.d.ts +15 -18
- package/lib/microfrontend-platform/microfrontend-host-message-box/text-message/text-message.component.d.ts +0 -2
- package/lib/microfrontend-platform/microfrontend-host-popup/microfrontend-host-popup.component.d.ts +8 -12
- package/lib/microfrontend-platform/microfrontend-message-box/microfrontend-message-box-intent-handler.interceptor.d.ts +2 -5
- package/lib/microfrontend-platform/microfrontend-message-box/microfrontend-message-box.component.d.ts +14 -33
- package/lib/microfrontend-platform/microfrontend-notification/microfrontend-notification-intent-handler.d.ts +7 -0
- package/lib/microfrontend-platform/microfrontend-perspective/microfrontend-perspective-installer.service.d.ts +3 -22
- package/lib/microfrontend-platform/microfrontend-perspective/microfrontend-perspective-intent-handler.interceptor.d.ts +2 -5
- package/lib/microfrontend-platform/microfrontend-platform-initializer.provider.d.ts +85 -0
- package/lib/microfrontend-platform/microfrontend-popup/microfrontend-popup.component.d.ts +19 -33
- package/lib/microfrontend-platform/microfrontend-view/microfrontend-view-command-handler.service.d.ts +3 -40
- package/lib/microfrontend-platform/{routing → microfrontend-view}/microfrontend-view-intent-handler.interceptor.d.ts +5 -4
- package/lib/microfrontend-platform/{routing → microfrontend-view}/microfrontend-view-routes.d.ts +2 -2
- package/lib/microfrontend-platform/microfrontend-view/microfrontend-view.component.d.ts +28 -33
- package/lib/microfrontend-platform/public_api.d.ts +2 -0
- package/lib/notification/notification-list.component.d.ts +3 -6
- package/lib/notification/notification.component.d.ts +14 -16
- package/lib/notification/notification.config.d.ts +4 -3
- package/lib/notification/notification.d.ts +2 -1
- package/lib/notification/notification.service.d.ts +6 -6
- package/lib/notification/public_api.d.ts +1 -1
- package/lib/notification/text-notification.component.d.ts +2 -3
- package/lib/notification//311/265notification.d.ts +5 -4
- package/lib/null-content/null-content.component.d.ts +11 -0
- package/lib/part/main-area-part/main-area-part.component.d.ts +7 -3
- package/lib/part/part-action-bar/part-action.directive.d.ts +1 -1
- package/lib/part/part-bar/part-bar.component.d.ts +6 -1
- package/lib/part/part.component.d.ts +3 -4
- package/lib/part/public_api.d.ts +1 -1
- package/lib/part/view-context-menu/text/text.component.d.ts +1 -1
- package/lib/part/view-context-menu/view-menu-item.directive.d.ts +1 -1
- package/lib/part/view-context-menu/view-menu.service.d.ts +7 -5
- package/lib/part/view-list/view-list.component.d.ts +14 -24
- package/lib/part/view-list-button/view-list-button.component.d.ts +6 -10
- package/lib/part/view-list-item/view-list-item.component.d.ts +7 -11
- package/lib/part/view-tab/view-tab.component.d.ts +14 -30
- package/lib/part/view-tab-bar/view-tab-bar.component.d.ts +1 -0
- package/lib/part/view-tab-content/view-tab-content.component.d.ts +1 -4
- package/lib/part/view-tab-drag-image/view-tab-drag-image.component.d.ts +20 -18
- package/lib/part/workbench-part.model.d.ts +23 -3
- package/lib/part//311/265workbench-part.model.d.ts +28 -8
- package/lib/perspective/public_api.d.ts +1 -1
- package/lib/perspective/workbench-perspective-view-conflict-resolver.service.d.ts +5 -5
- package/lib/perspective/workbench-perspective.model.d.ts +14 -138
- package/lib/perspective/workbench-perspective.service.d.ts +15 -5
- package/lib/perspective//311/265workbench-perspective.model.d.ts +9 -8
- package/lib/popup/popup.component.d.ts +14 -16
- package/lib/popup/popup.config.d.ts +10 -15
- package/lib/popup/popup.service.d.ts +12 -22
- package/lib/popup/public_api.d.ts +2 -2
- package/lib/portal/workbench-portal-outlet.directive.d.ts +9 -7
- package/lib/public_api.d.ts +6 -3
- package/lib/routing/public_api.d.ts +1 -1
- package/lib/routing/routing.model.d.ts +14 -13
- package/lib/routing/routing.util.d.ts +8 -8
- package/lib/routing/url-segment-matcher.d.ts +1 -1
- package/lib/routing/workbench-auxiliary-route-installer.service.d.ts +3 -12
- package/lib/routing/workbench-layout-differ.d.ts +2 -2
- package/lib/routing/workbench-navigational-states.d.ts +16 -8
- package/lib/routing/workbench-route-data.d.ts +4 -0
- package/lib/routing/workbench-router-link.directive.d.ts +16 -29
- package/lib/routing/workbench-router.service.d.ts +4 -3
- package/lib/routing//311/265workbench-router.service.d.ts +4 -4
- package/lib/startup/public_api.d.ts +4 -2
- package/lib/startup/workbench-initializer.d.ts +128 -87
- package/lib/startup/workbench-launcher.service.d.ts +41 -77
- package/lib/startup/workbench-startup.service.d.ts +37 -0
- package/lib/startup//311/265workbench-launcher.service.d.ts +19 -0
- package/lib/startup//311/265workbench-startup.service.d.ts +16 -0
- package/lib/text/public_api.d.ts +1 -0
- package/lib/text/text-providers.d.ts +6 -0
- package/lib/text/text.d.ts +30 -0
- package/lib/text/text.pipe.d.ts +24 -0
- package/lib/text/workbench-text-provider.d.ts +7 -0
- package/lib/text/workbench-text-provider.model.d.ts +40 -0
- package/lib/text/workbench-view-menu-config-text-provider.d.ts +8 -0
- package/lib/theme/workbench-theme-switcher.service.d.ts +14 -19
- package/lib/view/public_api.d.ts +1 -1
- package/lib/view/view.component.d.ts +1 -1
- package/lib/view/workbench-view.model.d.ts +11 -10
- package/lib/view//311/265workbench-view.model.d.ts +9 -7
- package/lib/view-dnd/grid-drop-targets.util.d.ts +1 -1
- package/lib/view-dnd/requires-drop-zone.pipe.d.ts +1 -1
- package/lib/view-dnd/view-drag.service.d.ts +24 -7
- package/lib/view-dnd/view-drop-zone.directive.d.ts +7 -10
- package/lib/workbench-config.d.ts +199 -28
- package/lib/workbench.component.d.ts +8 -1
- package/lib/workbench.constants.d.ts +4 -0
- package/lib/workbench.model.d.ts +2 -0
- package/lib/workbench.provider.d.ts +66 -15
- package/lib/workbench.service.d.ts +45 -10
- package/lib//311/265workbench.service.d.ts +9 -7
- package/package.json +3 -3
- package/lib/common/grid-element-if-visible.pipe.d.ts +0 -13
- package/lib/layout/migration/workbench-layout-migration-v7.service.d.ts +0 -10
- package/lib/microfrontend-platform/microfrontend-notification/microfrontend-notification-intent-handler.service.d.ts +0 -17
- package/lib/perspective/migration/model/workbench-perspective-migration-v2.model.d.ts +0 -10
- package/lib/perspective/migration/model/workbench-perspective-migration-v3.model.d.ts +0 -10
- package/lib/perspective/migration/workbench-perspective-migration-v2.service.d.ts +0 -13
- package/lib/perspective/migration/workbench-perspective-migration-v3.service.d.ts +0 -12
- package/lib/perspective/workbench-perspective-storage.service.d.ts +0 -32
- package/lib/perspective/workench-perspective-serializer.service.d.ts +0 -26
- /package/lib/{perspective/migration/model/workbench-perspective-migration-v1.model.d.ts → layout/migration/model/workbench-layout-migration-v1.model.d.ts} +0 -0
- /package/lib/microfrontend-platform/{routing → microfrontend-view}/microfrontend-view-capability-validator.interceptor.d.ts +0 -0
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.