@scion/workbench 21.0.0-beta.2 → 21.0.0-beta.4
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/fesm2022/scion-workbench.mjs +736 -307
- package/fesm2022/scion-workbench.mjs.map +1 -1
- package/package.json +4 -4
- package/types/scion-workbench.d.ts +148 -52
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.4",
|
|
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,
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
"@angular/forms": "^21.0.0",
|
|
36
36
|
"@angular/router": "^21.0.0",
|
|
37
37
|
"@scion/components": "^21.0.0",
|
|
38
|
-
"@scion/toolkit": "^2.
|
|
39
|
-
"@scion/microfrontend-platform": "^
|
|
40
|
-
"@scion/workbench-client": "^1.0.0-beta.
|
|
38
|
+
"@scion/toolkit": "^2.1.0",
|
|
39
|
+
"@scion/microfrontend-platform": "^2.0.0",
|
|
40
|
+
"@scion/workbench-client": "^1.0.0-beta.39",
|
|
41
41
|
"rxjs": "^7.8.0"
|
|
42
42
|
},
|
|
43
43
|
"peerDependenciesMeta": {
|
|
@@ -305,6 +305,39 @@ declare function canMatchWorkbenchMessageBoxCapability(qualifier: Qualifier): Ca
|
|
|
305
305
|
* @return guard matching the specified popup capability.
|
|
306
306
|
*/
|
|
307
307
|
declare function canMatchWorkbenchPopupCapability(qualifier: Qualifier): CanMatchFn;
|
|
308
|
+
/**
|
|
309
|
+
* Configures a route to only match workbench notifications navigated to the specified notification capability.
|
|
310
|
+
*
|
|
311
|
+
* Use this guard to differentiate microfrontend routes, which must all have an empty path.
|
|
312
|
+
*
|
|
313
|
+
* @example - Route matching a notification capability with qualifier {notification: 'info'}
|
|
314
|
+
* ```ts
|
|
315
|
+
* import {Routes} from '@angular/router';
|
|
316
|
+
* import {canMatchWorkbenchNotificationCapability} from '@scion/workbench';
|
|
317
|
+
*
|
|
318
|
+
* const routes: Routes = [
|
|
319
|
+
* {path: '', canMatch: [canMatchWorkbenchNotificationCapability({notification: 'info'})], component: InfoComponent},
|
|
320
|
+
* ];
|
|
321
|
+
* ```
|
|
322
|
+
*
|
|
323
|
+
* The above route matches the following notification capability:
|
|
324
|
+
*
|
|
325
|
+
* ```json
|
|
326
|
+
* {
|
|
327
|
+
* "type": "notification",
|
|
328
|
+
* "qualifier": {
|
|
329
|
+
* "notification": "info"
|
|
330
|
+
* },
|
|
331
|
+
* "properties": {
|
|
332
|
+
* "path": ""
|
|
333
|
+
* }
|
|
334
|
+
* }
|
|
335
|
+
* ```
|
|
336
|
+
*
|
|
337
|
+
* @param qualifier - Identifies the notification capability.
|
|
338
|
+
* @return guard matching the specified notification capability.
|
|
339
|
+
*/
|
|
340
|
+
declare function canMatchWorkbenchNotificationCapability(qualifier: Qualifier): CanMatchFn;
|
|
308
341
|
/**
|
|
309
342
|
* Format of a microfrontend capability id.
|
|
310
343
|
*/
|
|
@@ -317,7 +350,7 @@ type MicrofrontendCapabilityId = string;
|
|
|
317
350
|
* Format: `workbench.microfrontend.host.<capabilityId>.<workbenchElementType>.<workbenchElementId>`
|
|
318
351
|
* Example: `workbench.microfrontend.host.39768ab.part.5485357a`
|
|
319
352
|
*/
|
|
320
|
-
type MicrofrontendHostOutlet = `workbench.microfrontend.host.${MicrofrontendCapabilityId}.${PartId | ViewId | DialogId | PopupId}`;
|
|
353
|
+
type MicrofrontendHostOutlet = `workbench.microfrontend.host.${MicrofrontendCapabilityId}.${PartId | ViewId | DialogId | PopupId | NotificationId}`;
|
|
321
354
|
|
|
322
355
|
/**
|
|
323
356
|
* DI token to get a unique id of the workbench.
|
|
@@ -349,6 +382,10 @@ type DialogId = `${typeof DIALOG_ID_PREFIX}${string}`;
|
|
|
349
382
|
* Format of a popup identifier.
|
|
350
383
|
*/
|
|
351
384
|
type PopupId = `${typeof POPUP_ID_PREFIX}${string}`;
|
|
385
|
+
/**
|
|
386
|
+
* Format of a notification identifier.
|
|
387
|
+
*/
|
|
388
|
+
type NotificationId = `${typeof NOTIFICATION_ID_PREFIX}${string}`;
|
|
352
389
|
/**
|
|
353
390
|
* Format of an activity identifier.
|
|
354
391
|
*
|
|
@@ -393,6 +430,12 @@ declare const ACTIVITY_ID_PREFIX = "activity.";
|
|
|
393
430
|
* @see DialogId
|
|
394
431
|
*/
|
|
395
432
|
declare const DIALOG_ID_PREFIX = "dialog.";
|
|
433
|
+
/**
|
|
434
|
+
* Represents the id prefix of notifications.
|
|
435
|
+
*
|
|
436
|
+
* @see NotificationId
|
|
437
|
+
*/
|
|
438
|
+
declare const NOTIFICATION_ID_PREFIX = "notification.";
|
|
396
439
|
/**
|
|
397
440
|
* Represents the id prefix of popups.
|
|
398
441
|
*
|
|
@@ -1726,6 +1769,10 @@ declare abstract class WorkbenchPart {
|
|
|
1726
1769
|
* Activates this part.
|
|
1727
1770
|
*/
|
|
1728
1771
|
abstract activate(): Promise<boolean>;
|
|
1772
|
+
/**
|
|
1773
|
+
* Gets size and position of this part, or `undefined` if not constructed.
|
|
1774
|
+
*/
|
|
1775
|
+
abstract readonly bounds: Signal<DOMRect | undefined>;
|
|
1729
1776
|
}
|
|
1730
1777
|
/**
|
|
1731
1778
|
* Provides navigation details of a workbench part.
|
|
@@ -1918,6 +1965,10 @@ declare abstract class WorkbenchView {
|
|
|
1918
1965
|
* @returns Reference to the `CanClose` guard, which can be used to unregister the guard.
|
|
1919
1966
|
*/
|
|
1920
1967
|
abstract canClose(canClose: CanCloseFn): CanCloseRef;
|
|
1968
|
+
/**
|
|
1969
|
+
* Gets size and position of this view, or `undefined` if not constructed.
|
|
1970
|
+
*/
|
|
1971
|
+
abstract readonly bounds: Signal<DOMRect | undefined>;
|
|
1921
1972
|
}
|
|
1922
1973
|
/**
|
|
1923
1974
|
* Provides navigation details of a workbench view.
|
|
@@ -1996,6 +2047,10 @@ declare abstract class WorkbenchDialog {
|
|
|
1996
2047
|
* Closes the dialog. Optionally, pass a result or an error to the dialog opener.
|
|
1997
2048
|
*/
|
|
1998
2049
|
abstract close<R>(result?: R | Error): void;
|
|
2050
|
+
/**
|
|
2051
|
+
* Gets size and position of this dialog, or `undefined` if not constructed.
|
|
2052
|
+
*/
|
|
2053
|
+
abstract readonly bounds: Signal<DOMRect | undefined>;
|
|
1999
2054
|
}
|
|
2000
2055
|
/**
|
|
2001
2056
|
* Represents the preferred dialog size.
|
|
@@ -2069,6 +2124,10 @@ declare abstract class WorkbenchPopup {
|
|
|
2069
2124
|
* Closes the popup. Optionally, pass a result or an error to the popup opener.
|
|
2070
2125
|
*/
|
|
2071
2126
|
abstract close<R>(result?: R | Error): void;
|
|
2127
|
+
/**
|
|
2128
|
+
* Gets size and position of this popup, or `undefined` if not constructed.
|
|
2129
|
+
*/
|
|
2130
|
+
abstract readonly bounds: Signal<DOMRect | undefined>;
|
|
2072
2131
|
}
|
|
2073
2132
|
/**
|
|
2074
2133
|
* Represents the preferred size of a popup.
|
|
@@ -2106,6 +2165,79 @@ interface WorkbenchPopupSize {
|
|
|
2106
2165
|
set maxWidth(maxWidth: string | undefined);
|
|
2107
2166
|
}
|
|
2108
2167
|
|
|
2168
|
+
/**
|
|
2169
|
+
* A notification is a closable message displayed in the upper-right corner that disappears after a few seconds unless hovered or focused.
|
|
2170
|
+
* It informs about system events, task completion, or errors. Severity indicates importance or urgency.
|
|
2171
|
+
*
|
|
2172
|
+
* The notification component can inject this handle to interact with the notification.
|
|
2173
|
+
*
|
|
2174
|
+
* Notification inputs are available as input properties in the notification component.
|
|
2175
|
+
*
|
|
2176
|
+
* @see WorkbenchNotificationService
|
|
2177
|
+
*/
|
|
2178
|
+
declare abstract class WorkbenchNotification {
|
|
2179
|
+
/**
|
|
2180
|
+
* Identity of this notification.
|
|
2181
|
+
*/
|
|
2182
|
+
abstract readonly id: NotificationId;
|
|
2183
|
+
/**
|
|
2184
|
+
* Sets the title of the notification.
|
|
2185
|
+
*
|
|
2186
|
+
* Can be text or a translation key. A translation key starts with the percent symbol (`%`) and may include parameters in matrix notation for text interpolation.
|
|
2187
|
+
*/
|
|
2188
|
+
abstract get title(): Signal<Translatable | undefined>;
|
|
2189
|
+
abstract set title(title: Translatable | undefined);
|
|
2190
|
+
/**
|
|
2191
|
+
* Sets the preferred notification size. Defaults to the content's intrinsic size, constrained by min and max size, if set.
|
|
2192
|
+
*/
|
|
2193
|
+
abstract readonly size: WorkbenchNotificationSize;
|
|
2194
|
+
/**
|
|
2195
|
+
* Sets the severity of the notification to indicate importance or urgency.
|
|
2196
|
+
*/
|
|
2197
|
+
abstract get severity(): Signal<'info' | 'warn' | 'error'>;
|
|
2198
|
+
abstract set severity(severity: 'info' | 'warn' | 'error');
|
|
2199
|
+
/**
|
|
2200
|
+
* Controls how long to display the notification.
|
|
2201
|
+
*
|
|
2202
|
+
* Can be a duration alias, or milliseconds.
|
|
2203
|
+
*/
|
|
2204
|
+
abstract get duration(): Signal<'short' | 'medium' | 'long' | 'infinite' | number>;
|
|
2205
|
+
abstract set duration(duration: 'short' | 'medium' | 'long' | 'infinite' | number);
|
|
2206
|
+
/**
|
|
2207
|
+
* Specifies CSS class(es) to add to the notification, e.g., to locate the notification in tests.
|
|
2208
|
+
*/
|
|
2209
|
+
abstract get cssClass(): Signal<string[]>;
|
|
2210
|
+
abstract set cssClass(cssClass: string | string[]);
|
|
2211
|
+
/**
|
|
2212
|
+
* Indicates whether this notification has the focus.
|
|
2213
|
+
*/
|
|
2214
|
+
abstract readonly focused: Signal<boolean>;
|
|
2215
|
+
/**
|
|
2216
|
+
* Closes the notification.
|
|
2217
|
+
*/
|
|
2218
|
+
abstract close(): void;
|
|
2219
|
+
}
|
|
2220
|
+
/**
|
|
2221
|
+
* Represents the preferred notification size.
|
|
2222
|
+
*/
|
|
2223
|
+
interface WorkbenchNotificationSize {
|
|
2224
|
+
/**
|
|
2225
|
+
* Specifies the height of the notification, constrained by {@link minHeight} and {@link maxHeight}, if any.
|
|
2226
|
+
*/
|
|
2227
|
+
get height(): Signal<string | undefined>;
|
|
2228
|
+
set height(height: string | undefined);
|
|
2229
|
+
/**
|
|
2230
|
+
* Specifies the minimum height of the notification.
|
|
2231
|
+
*/
|
|
2232
|
+
get minHeight(): Signal<string | undefined>;
|
|
2233
|
+
set minHeight(minHeight: string | undefined);
|
|
2234
|
+
/**
|
|
2235
|
+
* Specifies the maximum height of the notification.
|
|
2236
|
+
*/
|
|
2237
|
+
get maxHeight(): Signal<string | undefined>;
|
|
2238
|
+
set maxHeight(maxHeight: string | undefined);
|
|
2239
|
+
}
|
|
2240
|
+
|
|
2109
2241
|
/**
|
|
2110
2242
|
* The signature of a function to confirm closing a view., e.g., if dirty.
|
|
2111
2243
|
*
|
|
@@ -2281,7 +2413,7 @@ type WorkbenchViewMenuItemFn = (view: WorkbenchView) => WorkbenchMenuItem | null
|
|
|
2281
2413
|
/**
|
|
2282
2414
|
* Union of workbench elements.
|
|
2283
2415
|
*/
|
|
2284
|
-
type WorkbenchElement = WorkbenchPart | WorkbenchView | WorkbenchDialog | WorkbenchPopup;
|
|
2416
|
+
type WorkbenchElement = WorkbenchPart | WorkbenchView | WorkbenchDialog | WorkbenchPopup | WorkbenchNotification;
|
|
2285
2417
|
|
|
2286
2418
|
/**
|
|
2287
2419
|
* The central class of the SCION Workbench.
|
|
@@ -4446,6 +4578,8 @@ declare class ɵWorkbenchPart implements WorkbenchPart, Blockable {
|
|
|
4446
4578
|
readonly views: Signal<ɵWorkbenchView[]>;
|
|
4447
4579
|
readonly classList: ClassList;
|
|
4448
4580
|
readonly portal: WbComponentPortal<MainAreaPartComponent | PartComponent>;
|
|
4581
|
+
readonly partBounds: Signal<DOMRect | undefined>;
|
|
4582
|
+
/** Represents the bounds of the slot. Used for public API. Internally, use {@link slot.bounds()} instead. */
|
|
4449
4583
|
readonly bounds: Signal<DOMRect | undefined>;
|
|
4450
4584
|
readonly blockedBy: Signal<ɵWorkbenchDialog | null>;
|
|
4451
4585
|
readonly slot: {
|
|
@@ -4569,6 +4703,7 @@ declare class ɵWorkbenchView implements WorkbenchView, Blockable {
|
|
|
4569
4703
|
readonly focused: Signal<boolean>;
|
|
4570
4704
|
readonly menuItems: Signal<WorkbenchMenuItem[]>;
|
|
4571
4705
|
readonly blockedBy: Signal<ɵWorkbenchDialog | null>;
|
|
4706
|
+
readonly bounds: Signal<DOMRect | undefined>;
|
|
4572
4707
|
readonly slot: {
|
|
4573
4708
|
portal: WbComponentPortal<ViewSlotComponent>;
|
|
4574
4709
|
bounds: Signal<DOMRect | undefined>;
|
|
@@ -5967,8 +6102,8 @@ interface NotificationConfig {
|
|
|
5967
6102
|
/**
|
|
5968
6103
|
* Shows a notification.
|
|
5969
6104
|
*
|
|
5970
|
-
* A notification is a closable message displayed in the upper-right corner that disappears after a few seconds unless hovered.
|
|
5971
|
-
* It informs about system events, task completion or errors.
|
|
6105
|
+
* A notification is a closable message displayed in the upper-right corner that disappears after a few seconds unless hovered or focused.
|
|
6106
|
+
* It informs about system events, task completion, or errors. Severity indicates importance or urgency.
|
|
5972
6107
|
*
|
|
5973
6108
|
* Notifications can be grouped. Only the most recent notification within a group is displayed.
|
|
5974
6109
|
*
|
|
@@ -5990,47 +6125,6 @@ declare class NotificationService {
|
|
|
5990
6125
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationService>;
|
|
5991
6126
|
}
|
|
5992
6127
|
|
|
5993
|
-
/**
|
|
5994
|
-
* A notification is a closable message displayed in the upper-right corner that disappears after a few seconds unless hovered.
|
|
5995
|
-
* It informs about system events, task completion or errors. The severity indicates importance or urgency.
|
|
5996
|
-
*
|
|
5997
|
-
* The notification component can inject this handle to interact with the notification.
|
|
5998
|
-
*
|
|
5999
|
-
* Notification inputs are available as input properties in the notification component.
|
|
6000
|
-
*
|
|
6001
|
-
* @see WorkbenchNotificationService
|
|
6002
|
-
*/
|
|
6003
|
-
declare abstract class WorkbenchNotification {
|
|
6004
|
-
/**
|
|
6005
|
-
* Sets the title of the notification.
|
|
6006
|
-
*
|
|
6007
|
-
* Can be text or a translation key. A translation key starts with the percent symbol (`%`) and may include parameters in matrix notation for text interpolation.
|
|
6008
|
-
*/
|
|
6009
|
-
abstract get title(): Signal<Translatable | undefined>;
|
|
6010
|
-
abstract set title(title: Translatable | undefined);
|
|
6011
|
-
/**
|
|
6012
|
-
* Sets the severity of the notification to indicate importance or urgency.
|
|
6013
|
-
*/
|
|
6014
|
-
abstract get severity(): Signal<'info' | 'warn' | 'error'>;
|
|
6015
|
-
abstract set severity(severity: 'info' | 'warn' | 'error');
|
|
6016
|
-
/**
|
|
6017
|
-
* Controls how long to display the notification.
|
|
6018
|
-
*
|
|
6019
|
-
* Can be a duration alias, or milliseconds.
|
|
6020
|
-
*/
|
|
6021
|
-
abstract get duration(): Signal<'short' | 'medium' | 'long' | 'infinite' | number>;
|
|
6022
|
-
abstract set duration(duration: 'short' | 'medium' | 'long' | 'infinite' | number);
|
|
6023
|
-
/**
|
|
6024
|
-
* Specifies CSS class(es) to add to the notification, e.g., to locate the notification in tests.
|
|
6025
|
-
*/
|
|
6026
|
-
abstract get cssClass(): Signal<string[]>;
|
|
6027
|
-
abstract set cssClass(cssClass: string | string[]);
|
|
6028
|
-
/**
|
|
6029
|
-
* Closes the notification.
|
|
6030
|
-
*/
|
|
6031
|
-
abstract close(): void;
|
|
6032
|
-
}
|
|
6033
|
-
|
|
6034
6128
|
/**
|
|
6035
6129
|
* Controls the appearance and behavior of a notification.
|
|
6036
6130
|
*/
|
|
@@ -6069,7 +6163,9 @@ interface WorkbenchNotificationOptions {
|
|
|
6069
6163
|
[name: string]: unknown;
|
|
6070
6164
|
}) => {
|
|
6071
6165
|
[name: string]: unknown;
|
|
6072
|
-
}
|
|
6166
|
+
} | Promise<{
|
|
6167
|
+
[name: string]: unknown;
|
|
6168
|
+
}>;
|
|
6073
6169
|
/**
|
|
6074
6170
|
* Specifies data to pass to the notification component. Inputs are available as input properties in the notification component.
|
|
6075
6171
|
*
|
|
@@ -6114,8 +6210,8 @@ interface WorkbenchNotificationOptions {
|
|
|
6114
6210
|
/**
|
|
6115
6211
|
* Shows a notification.
|
|
6116
6212
|
*
|
|
6117
|
-
* A notification is a closable message displayed in the upper-right corner that disappears after a few seconds unless hovered.
|
|
6118
|
-
* It informs about system events, task completion or errors.
|
|
6213
|
+
* A notification is a closable message displayed in the upper-right corner that disappears after a few seconds unless hovered or focused.
|
|
6214
|
+
* It informs about system events, task completion, or errors. Severity indicates importance or urgency.
|
|
6119
6215
|
*
|
|
6120
6216
|
* Notifications can be grouped. Only the most recent notification within a group is displayed.
|
|
6121
6217
|
*
|
|
@@ -6125,11 +6221,11 @@ declare abstract class WorkbenchNotificationService {
|
|
|
6125
6221
|
/**
|
|
6126
6222
|
* Displays the specified message as workbench notification.
|
|
6127
6223
|
*
|
|
6128
|
-
* @param message - Specifies the text to display.
|
|
6224
|
+
* @param message - Specifies the text to display, if any.
|
|
6129
6225
|
* Can be text or a translation key. A translation key starts with the percent symbol (`%`) and may include parameters in matrix notation for text interpolation.
|
|
6130
6226
|
* @param options - Controls the appearance and behavior of the notification.
|
|
6131
6227
|
*/
|
|
6132
|
-
abstract show(message: Translatable, options?: WorkbenchNotificationOptions): void;
|
|
6228
|
+
abstract show(message: Translatable | null, options?: WorkbenchNotificationOptions): void;
|
|
6133
6229
|
/**
|
|
6134
6230
|
* Displays the specified component as workbench notification.
|
|
6135
6231
|
*
|
|
@@ -6719,5 +6815,5 @@ declare class IconComponent {
|
|
|
6719
6815
|
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "wb-icon", never, { "icon": { "alias": "icon"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6720
6816
|
}
|
|
6721
6817
|
|
|
6722
|
-
export { ActivatedMicrofrontend, IconComponent, LogAppender, LogLevel, Logger, LoggerName, MAIN_AREA, MAIN_AREA_INITIAL_PART_ID, MicrofrontendPlatformConfigLoader, MicrofrontendPlatformStartupPhase, Notification, NotificationService, Popup, PopupConfig, PopupService, TextPipe, VIEW_TAB_RENDERING_CONTEXT, WORKBENCH_DIALOG_CONTEXT, WORKBENCH_ID, WORKBENCH_PART_CONTEXT, WORKBENCH_POPUP_CONTEXT, WORKBENCH_POPUP_REFERRER, WORKBENCH_VIEW_CONTEXT, WorkbenchComponent, WorkbenchConfig, WorkbenchDesktopDirective, WorkbenchDialog, WorkbenchDialogActionDirective, WorkbenchDialogFooterDirective, WorkbenchDialogHeaderDirective, WorkbenchDialogService, WorkbenchLauncher, WorkbenchLayoutFactory, WorkbenchMessageBoxService, WorkbenchNotification, WorkbenchNotificationService, WorkbenchPart, WorkbenchPartActionDirective, WorkbenchPerspectiveData, WorkbenchPopup, WorkbenchPopupService, WorkbenchRouteData, WorkbenchRouter, WorkbenchRouterLinkDirective, WorkbenchService, WorkbenchStartup, WorkbenchStartupPhase, WorkbenchStorage, WorkbenchView, WorkbenchViewMenuItemDirective, canMatchWorkbenchDialogCapability, canMatchWorkbenchMessageBoxCapability, canMatchWorkbenchOutlet, canMatchWorkbenchPart, canMatchWorkbenchPartCapability, canMatchWorkbenchPerspective, canMatchWorkbenchPopupCapability, canMatchWorkbenchView, canMatchWorkbenchViewCapability, provideMicrofrontendPlatformInitializer, provideWorkbench, provideWorkbenchInitializer, text };
|
|
6723
|
-
export type { ActivityId, BottomLeftPoint, BottomRightPoint, CanCloseFn, CanCloseRef, CloseStrategy$1 as CloseStrategy, Commands, DialogId, Disposable, DockedPartExtras, DockingArea, LogEvent, MenuItemConfig, MicrofrontendPlatformInitializerOptions, NavigateFn, NavigationData, NavigationState, NotificationConfig, PartExtras, PartId, Point, PopupId, PopupOrigin, ReferencePart, TopLeftPoint, TopRightPoint, Translatable, ViewId, ViewMenuItemsConfig, ViewTabRenderingContext, WorkbenchDialogOptions, WorkbenchDialogSize, WorkbenchElement, WorkbenchIconDescriptor, WorkbenchIconProviderFn, WorkbenchInitializerFn, WorkbenchInitializerOptions, WorkbenchLayout, WorkbenchLayoutFn, WorkbenchMenuItem, WorkbenchMessageBoxOptions, WorkbenchNavigationExtras, WorkbenchNotificationOptions, WorkbenchPartAction, WorkbenchPartActionFn, WorkbenchPartNavigation, WorkbenchPerspective, WorkbenchPerspectiveDefinition, WorkbenchPerspectiveSelectionFn, WorkbenchPerspectives, WorkbenchPopupOptions, WorkbenchPopupSize, WorkbenchTextProviderFn, WorkbenchViewMenuItemFn, WorkbenchViewNavigation };
|
|
6818
|
+
export { ActivatedMicrofrontend, IconComponent, LogAppender, LogLevel, Logger, LoggerName, MAIN_AREA, MAIN_AREA_INITIAL_PART_ID, MicrofrontendPlatformConfigLoader, MicrofrontendPlatformStartupPhase, Notification, NotificationService, Popup, PopupConfig, PopupService, TextPipe, VIEW_TAB_RENDERING_CONTEXT, WORKBENCH_DIALOG_CONTEXT, WORKBENCH_ID, WORKBENCH_PART_CONTEXT, WORKBENCH_POPUP_CONTEXT, WORKBENCH_POPUP_REFERRER, WORKBENCH_VIEW_CONTEXT, WorkbenchComponent, WorkbenchConfig, WorkbenchDesktopDirective, WorkbenchDialog, WorkbenchDialogActionDirective, WorkbenchDialogFooterDirective, WorkbenchDialogHeaderDirective, WorkbenchDialogService, WorkbenchLauncher, WorkbenchLayoutFactory, WorkbenchMessageBoxService, WorkbenchNotification, WorkbenchNotificationService, WorkbenchPart, WorkbenchPartActionDirective, WorkbenchPerspectiveData, WorkbenchPopup, WorkbenchPopupService, WorkbenchRouteData, WorkbenchRouter, WorkbenchRouterLinkDirective, WorkbenchService, WorkbenchStartup, WorkbenchStartupPhase, WorkbenchStorage, WorkbenchView, WorkbenchViewMenuItemDirective, canMatchWorkbenchDialogCapability, canMatchWorkbenchMessageBoxCapability, canMatchWorkbenchNotificationCapability, canMatchWorkbenchOutlet, canMatchWorkbenchPart, canMatchWorkbenchPartCapability, canMatchWorkbenchPerspective, canMatchWorkbenchPopupCapability, canMatchWorkbenchView, canMatchWorkbenchViewCapability, provideMicrofrontendPlatformInitializer, provideWorkbench, provideWorkbenchInitializer, text };
|
|
6819
|
+
export type { ActivityId, BottomLeftPoint, BottomRightPoint, CanCloseFn, CanCloseRef, CloseStrategy$1 as CloseStrategy, Commands, DialogId, Disposable, DockedPartExtras, DockingArea, LogEvent, MenuItemConfig, MicrofrontendPlatformInitializerOptions, NavigateFn, NavigationData, NavigationState, NotificationConfig, NotificationId, PartExtras, PartId, Point, PopupId, PopupOrigin, ReferencePart, TopLeftPoint, TopRightPoint, Translatable, ViewId, ViewMenuItemsConfig, ViewTabRenderingContext, WorkbenchDialogOptions, WorkbenchDialogSize, WorkbenchElement, WorkbenchIconDescriptor, WorkbenchIconProviderFn, WorkbenchInitializerFn, WorkbenchInitializerOptions, WorkbenchLayout, WorkbenchLayoutFn, WorkbenchMenuItem, WorkbenchMessageBoxOptions, WorkbenchNavigationExtras, WorkbenchNotificationOptions, WorkbenchPartAction, WorkbenchPartActionFn, WorkbenchPartNavigation, WorkbenchPerspective, WorkbenchPerspectiveDefinition, WorkbenchPerspectiveSelectionFn, WorkbenchPerspectives, WorkbenchPopupOptions, WorkbenchPopupSize, WorkbenchTextProviderFn, WorkbenchViewMenuItemFn, WorkbenchViewNavigation };
|