@midscene/visualizer 1.1.1-beta-20260107032519.0 → 1.2.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/dist/es/component/playground/index.css +0 -3
- package/dist/es/component/prompt-input/index.css +0 -3
- package/dist/es/hooks/usePlaygroundExecution.mjs +1 -1
- package/dist/lib/component/playground/index.css +0 -3
- package/dist/lib/component/prompt-input/index.css +0 -3
- package/dist/lib/hooks/usePlaygroundExecution.js +1 -1
- package/package.json +5 -5
|
@@ -337,9 +337,6 @@
|
|
|
337
337
|
}
|
|
338
338
|
|
|
339
339
|
.prompt-input-wrapper .structured-params-container {
|
|
340
|
-
background: linear-gradient(#fff, #fff) padding-box padding-box, linear-gradient(135deg, #4285f4 0%, #06f 25%, #7b02c5 50%, #ea4335 75%, #ff7043 100%) border-box;
|
|
341
|
-
border: 1px solid rgba(0, 0, 0, 0);
|
|
342
|
-
border-radius: 12px;
|
|
343
340
|
padding: 16px 16px 56px;
|
|
344
341
|
}
|
|
345
342
|
|
|
@@ -293,9 +293,6 @@
|
|
|
293
293
|
}
|
|
294
294
|
|
|
295
295
|
.prompt-input-wrapper .structured-params-container {
|
|
296
|
-
background: linear-gradient(#fff, #fff) padding-box padding-box, linear-gradient(135deg, #4285f4 0%, #06f 25%, #7b02c5 50%, #ea4335 75%, #ff7043 100%) border-box;
|
|
297
|
-
border: 1px solid rgba(0, 0, 0, 0);
|
|
298
|
-
border-radius: 12px;
|
|
299
296
|
padding: 16px 16px 56px;
|
|
300
297
|
}
|
|
301
298
|
|
|
@@ -181,7 +181,7 @@ function usePlaygroundExecution(playgroundSDK, storage, actionSpace, loading, se
|
|
|
181
181
|
if (resultObj.dump) result.dump = resultObj.dump;
|
|
182
182
|
if (resultObj.reportHTML) result.reportHTML = resultObj.reportHTML;
|
|
183
183
|
if (resultObj.error) result.error = formatError(resultObj.error);
|
|
184
|
-
if (
|
|
184
|
+
if ('result' in resultObj) result.result = resultObj.result;
|
|
185
185
|
}
|
|
186
186
|
} catch (e) {
|
|
187
187
|
result.error = formatError(e);
|
|
@@ -337,9 +337,6 @@
|
|
|
337
337
|
}
|
|
338
338
|
|
|
339
339
|
.prompt-input-wrapper .structured-params-container {
|
|
340
|
-
background: linear-gradient(#fff, #fff) padding-box padding-box, linear-gradient(135deg, #4285f4 0%, #06f 25%, #7b02c5 50%, #ea4335 75%, #ff7043 100%) border-box;
|
|
341
|
-
border: 1px solid rgba(0, 0, 0, 0);
|
|
342
|
-
border-radius: 12px;
|
|
343
340
|
padding: 16px 16px 56px;
|
|
344
341
|
}
|
|
345
342
|
|
|
@@ -293,9 +293,6 @@
|
|
|
293
293
|
}
|
|
294
294
|
|
|
295
295
|
.prompt-input-wrapper .structured-params-container {
|
|
296
|
-
background: linear-gradient(#fff, #fff) padding-box padding-box, linear-gradient(135deg, #4285f4 0%, #06f 25%, #7b02c5 50%, #ea4335 75%, #ff7043 100%) border-box;
|
|
297
|
-
border: 1px solid rgba(0, 0, 0, 0);
|
|
298
|
-
border-radius: 12px;
|
|
299
296
|
padding: 16px 16px 56px;
|
|
300
297
|
}
|
|
301
298
|
|
|
@@ -209,7 +209,7 @@ function usePlaygroundExecution(playgroundSDK, storage, actionSpace, loading, se
|
|
|
209
209
|
if (resultObj.dump) result.dump = resultObj.dump;
|
|
210
210
|
if (resultObj.reportHTML) result.reportHTML = resultObj.reportHTML;
|
|
211
211
|
if (resultObj.error) result.error = formatError(resultObj.error);
|
|
212
|
-
if (
|
|
212
|
+
if ('result' in resultObj) result.result = resultObj.result;
|
|
213
213
|
}
|
|
214
214
|
} catch (e) {
|
|
215
215
|
result.error = formatError(e);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@midscene/visualizer",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"repository": "https://github.com/web-infra-dev/midscene",
|
|
5
5
|
"homepage": "https://midscenejs.com/",
|
|
6
6
|
"types": "./dist/types/index.d.ts",
|
|
@@ -60,10 +60,10 @@
|
|
|
60
60
|
"antd": "^5.21.6",
|
|
61
61
|
"buffer": "6.0.3",
|
|
62
62
|
"dayjs": "^1.11.11",
|
|
63
|
-
"@midscene/core": "1.
|
|
64
|
-
"@midscene/
|
|
65
|
-
"@midscene/
|
|
66
|
-
"@midscene/
|
|
63
|
+
"@midscene/core": "1.2.0",
|
|
64
|
+
"@midscene/playground": "1.2.0",
|
|
65
|
+
"@midscene/shared": "1.2.0",
|
|
66
|
+
"@midscene/web": "1.2.0"
|
|
67
67
|
},
|
|
68
68
|
"license": "MIT",
|
|
69
69
|
"scripts": {
|