@auto-wiz/ui 1.0.0 → 1.0.1

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.
@@ -309,7 +309,12 @@ export function FlowStepItem({ step, index, isExecuting, isCompleted, extractedD
309
309
  color: "#404040",
310
310
  fontFamily: "'SF Mono', 'Monaco', 'Menlo', monospace",
311
311
  lineHeight: "1.6",
312
- }, children: [_jsx("strong", { style: { fontWeight: 500 }, children: "Extracted:" }), " ", JSON.stringify(extractedData)] })), screenshot && (_jsx("div", { style: { marginTop: "12px", marginRight: "12px" }, children: _jsx("img", { src: screenshot.screenshot, alt: "Element screenshot", style: {
312
+ whiteSpace: typeof extractedData === "string" ? "pre-wrap" : "normal",
313
+ maxHeight: "300px",
314
+ overflow: "auto",
315
+ }, children: [_jsx("strong", { style: { fontWeight: 500 }, children: "Extracted:" }), " ", typeof extractedData === "string"
316
+ ? extractedData
317
+ : JSON.stringify(extractedData)] })), screenshot && (_jsx("div", { style: { marginTop: "12px", marginRight: "12px" }, children: _jsx("img", { src: screenshot.screenshot, alt: "Element screenshot", style: {
313
318
  maxWidth: "100%",
314
319
  borderRadius: "6px",
315
320
  border: "1px solid #e5e5e5",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@auto-wiz/ui",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "license": "MIT",
5
5
  "author": "JaeSang",
6
6
  "repository": {
@@ -10,6 +10,7 @@
10
10
  "publishConfig": {
11
11
  "access": "public"
12
12
  },
13
+ "type": "module",
13
14
  "files": [
14
15
  "dist"
15
16
  ],
@@ -18,15 +19,14 @@
18
19
  "exports": {
19
20
  ".": {
20
21
  "types": "./dist/index.d.ts",
21
- "import": "./dist/index.js",
22
- "require": "./dist/index.js"
22
+ "import": "./dist/index.js"
23
23
  }
24
24
  },
25
25
  "dependencies": {
26
26
  "lucide-react": "^0.553.0",
27
27
  "react": "^19.1.1",
28
28
  "react-dom": "^19.1.1",
29
- "@auto-wiz/core": "1.0.0"
29
+ "@auto-wiz/core": "1.0.1"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/react": "^19.1.12",