@scion/workbench 20.0.0-beta.8 → 20.0.0-beta.9
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 +2 -2
- package/design/_workbench-popup-global-styles.scss +0 -9
- package/fesm2022/scion-workbench.mjs +8032 -6962
- package/fesm2022/scion-workbench.mjs.map +1 -1
- package/index.d.ts +489 -330
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -5,9 +5,9 @@ SCION Workbench enables the creation of Angular web applications that require a
|
|
|
5
5
|
|
|
6
6
|
An application can have multiple layouts, called perspectives. A perspective defines an arrangement of parts and views. Parts can be docked to the side or positioned relative to each other. Views are stacked in parts and can be dragged to other parts. Content can be displayed in both parts and views.
|
|
7
7
|
|
|
8
|
-
Users can personalize the layout of a perspective and switch between perspectives. The workbench remembers the
|
|
8
|
+
Users can personalize the layout of a perspective and switch between perspectives. The workbench remembers the layout of a perspective, restoring it the next time it is activated.
|
|
9
9
|
|
|
10
|
-
A perspective typically has a main area part and
|
|
10
|
+
A perspective typically has a main area part and parts docked to the side, providing navigation and context-sensitive assistance to support the user's workflow. Initially empty or displaying a welcome page, the main area is where the workbench opens views by default. Users can split the main area (or any other part) by dragging views side-by-side, vertically and horizontally, even across windows.
|
|
11
11
|
|
|
12
12
|
Unlike any other part, the main area is shared between perspectives, and its layout is not reset when resetting perspectives. Having a main area and multiple perspectives is optional.
|
|
13
13
|
|
|
@@ -97,14 +97,5 @@ $diamond-height: 8;
|
|
|
97
97
|
border-left-color: var(--sci-color-background-elevation);
|
|
98
98
|
}
|
|
99
99
|
}
|
|
100
|
-
|
|
101
|
-
// Hide the popup when contextual view is detached, e.g., if not active, or located in the peripheral area and the main area is maximized.
|
|
102
|
-
&.wb-view-context:not(.wb-view-attached) {
|
|
103
|
-
// We use `visibility: hidden` and not `display: none` to preserve the dimension of the popup.
|
|
104
|
-
// Otherwise:
|
|
105
|
-
// - The popup would flicker when attaching the contextual view, most noticeable with popups that display a microfrontend.
|
|
106
|
-
// - The popup would not retain virtual scrollable content since `display:none` sets width and height to 0.
|
|
107
|
-
visibility: hidden;
|
|
108
|
-
}
|
|
109
100
|
}
|
|
110
101
|
}
|