@pexip/components 20.3.0 → 20.4.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/CHANGELOG.md +31 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 20.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- b72433f: Stop in-meeting notification tooltips painting over the panels.
|
|
8
|
+
|
|
9
|
+
- The meeting was wrapped in two `position: fixed` elements, which establish a
|
|
10
|
+
stacking context around the whole app. Everything portalled to `<body>` —
|
|
11
|
+
tooltips, modals — landed outside it, so no `z-index` could order them
|
|
12
|
+
against anything inside, such as the side panels. Both wrappers are now
|
|
13
|
+
`position: absolute`, leaving the page in a single stacking context where
|
|
14
|
+
the design tokens actually govern the order.
|
|
15
|
+
- `NotificationTooltip` takes a `zIndex` prop to override where it stacks and
|
|
16
|
+
defaults it to the `components-z-index-tooltip` token, whose base value is
|
|
17
|
+
react-aria's top layer (`100000`) so ordinary tooltips float above content
|
|
18
|
+
while apps can still tune stacking via the token (e.g. trieste). The
|
|
19
|
+
in-meeting controls, the folded selfview, the input control balloon and the
|
|
20
|
+
user menu pass `TOOLTIP_Z_INDEX_BELOW_OVERLAYS` so they sit just under the
|
|
21
|
+
panels and modals that cover their triggers.
|
|
22
|
+
- Fix the preflight "no audio detected" tooltip painting over modals.
|
|
23
|
+
- The permissions help-video modal stacks one above the tooltip token so it
|
|
24
|
+
opens above the (top-layer) tooltip it is launched from.
|
|
25
|
+
|
|
26
|
+
- eb69d83: `DropContent` supports `anchorRef` prop.
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- Updated dependencies [8b563f5]
|
|
31
|
+
- @pexip/utils@17.5.0
|
|
32
|
+
- @pexip/hooks@21.0.10
|
|
33
|
+
|
|
3
34
|
## 20.3.0
|
|
4
35
|
|
|
5
36
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pexip/components",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.4.0",
|
|
4
4
|
"homepage": "https://developer.pexip.com",
|
|
5
5
|
"bugs": "https://gitlab.com/pexip/zoo/issues",
|
|
6
6
|
"repository": {
|
|
@@ -69,9 +69,9 @@
|
|
|
69
69
|
"docs": "typedoc"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"@pexip/hooks": "21.0.
|
|
72
|
+
"@pexip/hooks": "21.0.10",
|
|
73
73
|
"@pexip/signal": "16.9.6",
|
|
74
|
-
"@pexip/utils": "17.
|
|
74
|
+
"@pexip/utils": "17.5.0",
|
|
75
75
|
"@react-aria/button": "^3.14.1",
|
|
76
76
|
"@react-aria/interactions": "^3.25.5",
|
|
77
77
|
"@react-aria/menu": "^3.19.1",
|