@hyperframes/studio 0.6.0-alpha.6 → 0.6.0-alpha.7
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-
|
|
7
|
+
<script type="module" crossorigin src="/assets/index-CU1QTcAy.js"></script>
|
|
8
8
|
<link rel="stylesheet" crossorigin href="/assets/index-14zH9lqh.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.6.0-alpha.
|
|
3
|
+
"version": "0.6.0-alpha.7",
|
|
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/core": "0.6.0-alpha.
|
|
36
|
-
"@hyperframes/player": "0.6.0-alpha.
|
|
35
|
+
"@hyperframes/core": "0.6.0-alpha.7",
|
|
36
|
+
"@hyperframes/player": "0.6.0-alpha.7"
|
|
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.6.0-alpha.
|
|
50
|
+
"@hyperframes/producer": "0.6.0-alpha.7"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
53
|
"react": "^18.0.0 || ^19.0.0",
|
package/src/App.tsx
CHANGED
|
@@ -4215,6 +4215,8 @@ export function StudioApp() {
|
|
|
4215
4215
|
<div className="min-h-0 flex-1">
|
|
4216
4216
|
{designPanelActive ? (
|
|
4217
4217
|
<PropertyPanel
|
|
4218
|
+
projectId={projectId}
|
|
4219
|
+
assets={assets}
|
|
4218
4220
|
element={domEditGroupSelections.length > 1 ? null : domEditSelection}
|
|
4219
4221
|
multiSelectCount={domEditGroupSelections.length}
|
|
4220
4222
|
copiedAgentPrompt={copiedAgentPrompt}
|
|
@@ -4222,11 +4224,13 @@ export function StudioApp() {
|
|
|
4222
4224
|
onSetStyle={handleDomStyleCommit}
|
|
4223
4225
|
onSetManualOffset={handleDomPathOffsetCommit}
|
|
4224
4226
|
onSetManualSize={handleDomBoxSizeCommit}
|
|
4225
|
-
onSetRotation={handleDomRotationCommit}
|
|
4226
4227
|
onSetText={handleDomTextCommit}
|
|
4227
4228
|
onSetTextFieldStyle={handleDomTextFieldStyleCommit}
|
|
4229
|
+
onAddTextField={() => null}
|
|
4230
|
+
onRemoveTextField={() => {}}
|
|
4228
4231
|
onResetManualEdits={handleDomManualEditsReset}
|
|
4229
4232
|
onAskAgent={handleAskAgent}
|
|
4233
|
+
onImportAssets={handleImportFiles}
|
|
4230
4234
|
fontAssets={fontAssets}
|
|
4231
4235
|
onImportFonts={handleImportFonts}
|
|
4232
4236
|
/>
|