@bimatrix-aud-platform/aud_mcp_server 1.1.68 → 1.1.70
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.
|
@@ -165,6 +165,10 @@ export function compactElement(element) {
|
|
|
165
165
|
ce.CSS = ce.CSS.split("\n");
|
|
166
166
|
}
|
|
167
167
|
}
|
|
168
|
+
// RichTextBox Value: 긴 문자열 → string[] 변환 (가독성 향상)
|
|
169
|
+
if (type === "RichTextBox" && result.Value && typeof result.Value === "string" && result.Value.includes("\n")) {
|
|
170
|
+
result.Value = result.Value.split("\n");
|
|
171
|
+
}
|
|
168
172
|
return result;
|
|
169
173
|
}
|
|
170
174
|
// ============================================
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bimatrix-aud-platform/aud_mcp_server",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.70",
|
|
4
4
|
"description": "MCP Server for i-AUD MTSD document validation, generation, schema querying, control info extraction, and database operations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|