orc-shared 5.10.0-dev.19 → 5.10.0-dev.20

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.
@@ -60,11 +60,13 @@ var useStyles = (0, _styles.makeStyles)(function () {
60
60
  background: "#0a0a07 url(".concat(props.bgImage, ")"),
61
61
  "&.enter-active": {
62
62
  opacity: 1,
63
- transition: "none"
63
+ transition: "none",
64
+ visibility: "visible"
64
65
  },
65
66
  "&.exit-active": {
66
67
  opacity: 0,
67
- transition: "opacity 800ms ease-out"
68
+ transition: "opacity 800ms ease-out, visibility 800ms linear 800ms;",
69
+ visibility: "hidden"
68
70
  }
69
71
  };
70
72
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orc-shared",
3
- "version": "5.10.0-dev.19",
3
+ "version": "5.10.0-dev.20",
4
4
  "description": "Shared code for Orckestra applications",
5
5
  "main": "./src/index.js",
6
6
  "exports": {
@@ -35,10 +35,12 @@ const useStyles = makeStyles(() => ({
35
35
  "&.enter-active": {
36
36
  opacity: 1,
37
37
  transition: "none",
38
+ visibility: "visible",
38
39
  },
39
40
  "&.exit-active": {
40
41
  opacity: 0,
41
- transition: "opacity 800ms ease-out",
42
+ transition: "opacity 800ms ease-out, visibility 800ms linear 800ms;",
43
+ visibility: "hidden",
42
44
  },
43
45
  }),
44
46
  closeButton: {
@@ -283,7 +283,7 @@ describe("About", () => {
283
283
  "when mounted",
284
284
  "to have style rules satisfying",
285
285
  "to contain",
286
- "transition: opacity 800ms ease-out;",
286
+ "transition: opacity 800ms ease-out, visibility 800ms linear 800ms;",
287
287
  ));
288
288
  });
289
289