@midscene/visualizer 1.0.1-beta-20251110055007.0 → 1.0.1-beta-20251110130223.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.
Files changed (38) hide show
  1. package/dist/es/component/blackboard/index.css +8 -0
  2. package/dist/es/component/blackboard/index.mjs +86 -3
  3. package/dist/es/component/env-config-reminder/index.css +8 -0
  4. package/dist/es/component/history-selector/index.css +32 -0
  5. package/dist/es/component/logo/index.mjs +23 -1
  6. package/dist/es/component/player/index.css +25 -0
  7. package/dist/es/component/player/index.mjs +1 -67
  8. package/dist/es/component/playground/index.css +52 -0
  9. package/dist/es/component/playground-result/index.css +9 -0
  10. package/dist/es/component/prompt-input/index.css +43 -0
  11. package/dist/es/component/universal-playground/index.css +69 -0
  12. package/dist/es/components/screenshot-viewer/index.css +48 -0
  13. package/dist/es/icons/global-perspective.mjs +1 -1
  14. package/dist/es/icons/history.mjs +2 -2
  15. package/dist/es/icons/magnifying-glass.mjs +1 -1
  16. package/dist/es/icons/player-setting.mjs +2 -2
  17. package/dist/es/icons/setting.mjs +1 -1
  18. package/dist/es/icons/show-marker.mjs +1 -1
  19. package/dist/lib/component/blackboard/index.css +8 -0
  20. package/dist/lib/component/blackboard/index.js +85 -2
  21. package/dist/lib/component/env-config-reminder/index.css +8 -0
  22. package/dist/lib/component/history-selector/index.css +32 -0
  23. package/dist/lib/component/logo/index.js +23 -1
  24. package/dist/lib/component/player/index.css +25 -0
  25. package/dist/lib/component/player/index.js +1 -68
  26. package/dist/lib/component/playground/index.css +52 -0
  27. package/dist/lib/component/playground-result/index.css +9 -0
  28. package/dist/lib/component/prompt-input/index.css +43 -0
  29. package/dist/lib/component/universal-playground/index.css +69 -0
  30. package/dist/lib/components/screenshot-viewer/index.css +48 -0
  31. package/dist/lib/icons/global-perspective.js +1 -1
  32. package/dist/lib/icons/history.js +2 -2
  33. package/dist/lib/icons/magnifying-glass.js +1 -1
  34. package/dist/lib/icons/player-setting.js +2 -2
  35. package/dist/lib/icons/setting.js +1 -1
  36. package/dist/lib/icons/show-marker.js +1 -1
  37. package/dist/types/component/player/index.d.ts +0 -1
  38. package/package.json +5 -5
@@ -37,13 +37,13 @@ const SvgPlayerSetting = (props)=>/*#__PURE__*/ (0, jsx_runtime_namespaceObject.
37
37
  ...props,
38
38
  children: [
39
39
  /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("path", {
40
- stroke: "#333",
40
+ stroke: "currentColor",
41
41
  strokeLinejoin: "round",
42
42
  strokeWidth: 1.333,
43
43
  d: "M11.333 13.667 14.667 8l-3.334-5.667H4.667L1.333 8l3.334 5.667z"
44
44
  }),
45
45
  /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("path", {
46
- stroke: "#333",
46
+ stroke: "currentColor",
47
47
  strokeLinejoin: "round",
48
48
  strokeWidth: 1.333,
49
49
  d: "M8 9.667a1.667 1.667 0 1 0 0-3.334 1.667 1.667 0 0 0 0 3.334Z"
@@ -36,7 +36,7 @@ const SvgSetting = (props)=>/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("
36
36
  viewBox: "0 0 27 27",
37
37
  ...props,
38
38
  children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("path", {
39
- stroke: "#000",
39
+ stroke: "currentColor",
40
40
  strokeLinecap: "round",
41
41
  strokeLinejoin: "round",
42
42
  strokeOpacity: 0.85,
@@ -36,7 +36,7 @@ const SvgShowMarker = (props)=>/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx
36
36
  viewBox: "0 0 16 16",
37
37
  ...props,
38
38
  children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("path", {
39
- fill: "#333",
39
+ fill: "currentColor",
40
40
  d: "M13 1.835a2.165 2.165 0 0 1 .665 4.225v3.88a2.166 2.166 0 1 1-2.725 2.725H5.06a2.165 2.165 0 1 1-2.725-2.726V6.06A2.165 2.165 0 1 1 5.06 3.336h5.88c.281-.87 1.097-1.5 2.06-1.5m-10 9.33a.835.835 0 1 0 0 1.67.835.835 0 0 0 0-1.67m10 0a.835.835 0 1 0 0 1.67.835.835 0 0 0 0-1.67m-7.94-6.5A2.17 2.17 0 0 1 3.665 6.06v3.88c.66.213 1.181.734 1.395 1.395h5.88a2.17 2.17 0 0 1 1.395-1.396V6.06a2.17 2.17 0 0 1-1.395-1.394zM3 3.165a.835.835 0 1 0 0 1.67.835.835 0 0 0 0-1.67m10 0a.835.835 0 1 0 0 1.67.835.835 0 0 0 0-1.67"
41
41
  })
42
42
  });
@@ -9,5 +9,4 @@ export declare function Player(props?: {
9
9
  key?: string | number;
10
10
  fitMode?: 'width' | 'height';
11
11
  autoZoom?: boolean;
12
- elementsVisible?: boolean;
13
12
  }): import("react").JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@midscene/visualizer",
3
- "version": "1.0.1-beta-20251110055007.0",
3
+ "version": "1.0.1-beta-20251110130223.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.0.1-beta-20251110055007.0",
64
- "@midscene/shared": "1.0.1-beta-20251110055007.0",
65
- "@midscene/web": "1.0.1-beta-20251110055007.0",
66
- "@midscene/playground": "1.0.1-beta-20251110055007.0"
63
+ "@midscene/core": "1.0.1-beta-20251110130223.0",
64
+ "@midscene/playground": "1.0.1-beta-20251110130223.0",
65
+ "@midscene/shared": "1.0.1-beta-20251110130223.0",
66
+ "@midscene/web": "1.0.1-beta-20251110130223.0"
67
67
  },
68
68
  "license": "MIT",
69
69
  "scripts": {