@scion/workbench 21.0.0-beta.4 → 21.0.0-beta.6
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scion/workbench",
|
|
3
|
-
"version": "21.0.0-beta.
|
|
3
|
+
"version": "21.0.0-beta.6",
|
|
4
4
|
"description": "SCION Workbench enables the creation of Angular web applications that require a flexible layout to display content side-by-side or stacked, all personalizable by the user via drag & drop. This type of layout is ideal for applications with non-linear workflows, enabling users to work on content in parallel.",
|
|
5
5
|
"license": "EPL-2.0",
|
|
6
6
|
"private": false,
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"@scion/components": "^21.0.0",
|
|
38
38
|
"@scion/toolkit": "^2.1.0",
|
|
39
39
|
"@scion/microfrontend-platform": "^2.0.0",
|
|
40
|
-
"@scion/workbench-client": "^1.0.0-beta.
|
|
40
|
+
"@scion/workbench-client": "^1.0.0-beta.40",
|
|
41
41
|
"rxjs": "^7.8.0"
|
|
42
42
|
},
|
|
43
43
|
"peerDependenciesMeta": {
|
|
@@ -2212,6 +2212,10 @@ declare abstract class WorkbenchNotification {
|
|
|
2212
2212
|
* Indicates whether this notification has the focus.
|
|
2213
2213
|
*/
|
|
2214
2214
|
abstract readonly focused: Signal<boolean>;
|
|
2215
|
+
/**
|
|
2216
|
+
* Gets size and position of this notification, or `undefined` if not constructed.
|
|
2217
|
+
*/
|
|
2218
|
+
abstract readonly bounds: Signal<DOMRect | undefined>;
|
|
2215
2219
|
/**
|
|
2216
2220
|
* Closes the notification.
|
|
2217
2221
|
*/
|
|
@@ -3724,9 +3728,14 @@ declare class WbComponentPortal<T = unknown> {
|
|
|
3724
3728
|
*/
|
|
3725
3729
|
interface PortalOptions {
|
|
3726
3730
|
/**
|
|
3727
|
-
*
|
|
3731
|
+
* Specifies providers available for injection in the component.
|
|
3728
3732
|
*/
|
|
3729
3733
|
providers?: Provider[];
|
|
3734
|
+
/**
|
|
3735
|
+
* Specifies the injector for the instantiation of the component, giving control over the objects available
|
|
3736
|
+
* for injection in the component. Defaults to the element injector.
|
|
3737
|
+
*/
|
|
3738
|
+
injector?: Injector;
|
|
3730
3739
|
/**
|
|
3731
3740
|
* Optional name used in portal lifecycle logs.
|
|
3732
3741
|
*/
|
|
@@ -4278,7 +4287,7 @@ interface WorkbenchDialogOptions {
|
|
|
4278
4287
|
*
|
|
4279
4288
|
* Set to `null` to open the dialog outside a context.
|
|
4280
4289
|
*/
|
|
4281
|
-
context?: ViewId | PartId | DialogId | PopupId | Context$3 | null;
|
|
4290
|
+
context?: ViewId | PartId | DialogId | PopupId | NotificationId | Context$3 | null;
|
|
4282
4291
|
/**
|
|
4283
4292
|
* Specifies the injector for the instantiation of the dialog, giving control over the objects available
|
|
4284
4293
|
* for injection in the dialog component. Defaults to the application's root injector.
|
|
@@ -4406,7 +4415,7 @@ interface WorkbenchInvocationContext {
|
|
|
4406
4415
|
/**
|
|
4407
4416
|
* Identifies the element that initiated the interaction.
|
|
4408
4417
|
*/
|
|
4409
|
-
elementId: PartId | ViewId | DialogId | PopupId;
|
|
4418
|
+
elementId: PartId | ViewId | DialogId | PopupId | NotificationId;
|
|
4410
4419
|
/**
|
|
4411
4420
|
* Indicates whether the source is attached to the DOM.
|
|
4412
4421
|
*/
|
|
@@ -4962,7 +4971,7 @@ interface WorkbenchPopupOptions {
|
|
|
4962
4971
|
*
|
|
4963
4972
|
* Set to `null` to open the popup outside a context.
|
|
4964
4973
|
*/
|
|
4965
|
-
context?: ViewId | PartId | DialogId | PopupId | Context$2 | null;
|
|
4974
|
+
context?: ViewId | PartId | DialogId | PopupId | NotificationId | Context$2 | null;
|
|
4966
4975
|
/**
|
|
4967
4976
|
* Specifies the injector for the instantiation of the popup, giving control over the objects available
|
|
4968
4977
|
* for injection in the popup component. Defaults to the application's root injector.
|
|
@@ -5715,7 +5724,7 @@ interface WorkbenchMessageBoxOptions {
|
|
|
5715
5724
|
*
|
|
5716
5725
|
* Set to `null` to open the message box outside a context.
|
|
5717
5726
|
*/
|
|
5718
|
-
context?: ViewId | PartId | DialogId | PopupId | Context$1 | null;
|
|
5727
|
+
context?: ViewId | PartId | DialogId | PopupId | NotificationId | Context$1 | null;
|
|
5719
5728
|
/**
|
|
5720
5729
|
* Specifies if the user can select text displayed in the message box. Defaults to `false`.
|
|
5721
5730
|
*/
|
|
@@ -6368,7 +6377,7 @@ declare abstract class PopupConfig {
|
|
|
6368
6377
|
*
|
|
6369
6378
|
* Set to `null` to open the popup outside a context.
|
|
6370
6379
|
*/
|
|
6371
|
-
abstract context?: ViewId | PartId | DialogId | PopupId | Context | null;
|
|
6380
|
+
abstract context?: ViewId | PartId | DialogId | PopupId | NotificationId | Context | null;
|
|
6372
6381
|
}
|
|
6373
6382
|
/**
|
|
6374
6383
|
* Specifies when to close the popup.
|