@hyperframes/studio 0.5.0-alpha.4 → 0.5.0-alpha.5

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/dist/index.html CHANGED
@@ -4,7 +4,7 @@
4
4
  <meta charset="UTF-8" />
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
6
6
  <title>HyperFrames Studio</title>
7
- <script type="module" crossorigin src="/assets/index-Z9LjUi1W.js"></script>
7
+ <script type="module" crossorigin src="/assets/index-Ba6SZOXW.js"></script>
8
8
  <link rel="stylesheet" crossorigin href="/assets/index-BpcIkyVP.css">
9
9
  </head>
10
10
  <body>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hyperframes/studio",
3
- "version": "0.5.0-alpha.4",
3
+ "version": "0.5.0-alpha.5",
4
4
  "description": "",
5
5
  "repository": {
6
6
  "type": "git",
@@ -32,8 +32,8 @@
32
32
  "@phosphor-icons/react": "^2.1.10",
33
33
  "codemirror": "^6.0.1",
34
34
  "motion": "^12.38.0",
35
- "@hyperframes/player": "0.5.0-alpha.4",
36
- "@hyperframes/core": "0.5.0-alpha.4"
35
+ "@hyperframes/core": "0.5.0-alpha.5",
36
+ "@hyperframes/player": "0.5.0-alpha.5"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@types/react": "^19.0.0",
@@ -47,7 +47,7 @@
47
47
  "vite": "^6.4.2",
48
48
  "vitest": "^3.2.4",
49
49
  "zustand": "^5.0.0",
50
- "@hyperframes/producer": "0.5.0-alpha.4"
50
+ "@hyperframes/producer": "0.5.0-alpha.5"
51
51
  },
52
52
  "peerDependencies": {
53
53
  "react": "^18.0.0 || ^19.0.0",
package/src/App.tsx CHANGED
@@ -756,6 +756,9 @@ export function StudioApp() {
756
756
  const toggleTimelineVisibility = useCallback(() => {
757
757
  setTimelineVisible((visible) => !visible);
758
758
  }, []);
759
+ useMountEffect(() => () => {
760
+ if (toastTimerRef.current) clearTimeout(toastTimerRef.current);
761
+ });
759
762
  const dismissTimelineEditorHint = useCallback(() => {
760
763
  setTimelineEditorHintState(true);
761
764
  setTimelineEditorHintDismissed(true);