@bimatrix-aud-platform/aud_mcp_server 1.1.66 → 1.1.68
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/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.68",
|
|
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",
|
|
@@ -325,6 +325,25 @@ export interface IDesignColor {
|
|
|
325
325
|
A?: number;
|
|
326
326
|
}
|
|
327
327
|
|
|
328
|
+
// ============================================
|
|
329
|
+
// Compact AddIn ComponentElement
|
|
330
|
+
// ============================================
|
|
331
|
+
|
|
332
|
+
/**
|
|
333
|
+
* GridHtmlView AddIn의 ComponentElement.
|
|
334
|
+
* HTML/CSS는 compact 시 string[] (줄 단위 배열)로 저장됨.
|
|
335
|
+
*/
|
|
336
|
+
export interface IDesignComponentElement {
|
|
337
|
+
/** 연결할 DataGrid의 Name 또는 Id */
|
|
338
|
+
DataGridId?: string;
|
|
339
|
+
/** HTML 템플릿 (단일 string 또는 줄 단위 string[]) */
|
|
340
|
+
HTML?: string | string[];
|
|
341
|
+
/** CSS 스타일 (단일 string 또는 줄 단위 string[]) */
|
|
342
|
+
CSS?: string | string[];
|
|
343
|
+
/** 그 외 컴포넌트별 속성 */
|
|
344
|
+
[key: string]: any;
|
|
345
|
+
}
|
|
346
|
+
|
|
328
347
|
// ============================================
|
|
329
348
|
// Compact GridColumn
|
|
330
349
|
// ============================================
|