@bimatrix-aud-platform/aud_mcp_server 1.1.14 → 1.1.15

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.
@@ -180,11 +180,18 @@
180
180
  "Type": {
181
181
  "type": "string",
182
182
  "enum": [
183
- "Label", "Button", "DataGrid", "Group", "Image",
184
- "RichTextBox", "CheckBox", "ComboBox", "TextBox", "NumberBox",
185
- "RadioButton", "Chart", "PieChart", "ScatterChart", "TreeGrid",
186
- "OlapGrid", "Slider", "FileUpload", "Browser", "ColorPicker",
187
- "MultiComboBox", "PickList", "UserComponent", "ListGrid"
183
+ "Label", "Button", "Image",
184
+ "TextBox", "MaskTextBox", "NumberBox", "RichTextBox",
185
+ "ComboBox", "MultiComboBox", "PickList",
186
+ "CheckBox", "RadioButton", "Tree",
187
+ "ColorSelector", "Slider",
188
+ "Calendar", "CalendarYear", "CalendarYM",
189
+ "FileUploadButton",
190
+ "DataGrid", "TreeGrid", "OlapGrid", "iGrid", "CompactDataGrid",
191
+ "TreeView",
192
+ "Chart", "PieChart", "ScatterChart", "PolygonChart",
193
+ "Group", "Tab", "TableLayout", "AddIn", "UserComponent",
194
+ "WebContainer", "DiagramControl", "Slicer"
188
195
  ],
189
196
  "description": "컨트롤 타입"
190
197
  },
@@ -249,6 +256,82 @@
249
256
  {
250
257
  "if": { "properties": { "Type": { "const": "OlapGrid" } } },
251
258
  "then": { "$ref": "#/$defs/OlapGridElement" }
259
+ },
260
+ {
261
+ "if": { "properties": { "Type": { "const": "RadioButton" } } },
262
+ "then": { "$ref": "#/$defs/RadioButtonElement" }
263
+ },
264
+ {
265
+ "if": { "properties": { "Type": { "const": "MaskTextBox" } } },
266
+ "then": { "$ref": "#/$defs/MaskTextBoxElement" }
267
+ },
268
+ {
269
+ "if": { "properties": { "Type": { "const": "MultiComboBox" } } },
270
+ "then": { "$ref": "#/$defs/MultiComboBoxElement" }
271
+ },
272
+ {
273
+ "if": { "properties": { "Type": { "const": "Tab" } } },
274
+ "then": { "$ref": "#/$defs/TabElement" }
275
+ },
276
+ {
277
+ "if": { "properties": { "Type": { "const": "Calendar" } } },
278
+ "then": { "$ref": "#/$defs/CalendarElement" }
279
+ },
280
+ {
281
+ "if": { "properties": { "Type": { "const": "CalendarYear" } } },
282
+ "then": { "$ref": "#/$defs/CalendarElement" }
283
+ },
284
+ {
285
+ "if": { "properties": { "Type": { "const": "CalendarYM" } } },
286
+ "then": { "$ref": "#/$defs/CalendarElement" }
287
+ },
288
+ {
289
+ "if": { "properties": { "Type": { "const": "Chart" } } },
290
+ "then": { "$ref": "#/$defs/ChartElement" }
291
+ },
292
+ {
293
+ "if": { "properties": { "Type": { "const": "PieChart" } } },
294
+ "then": { "$ref": "#/$defs/ChartElement" }
295
+ },
296
+ {
297
+ "if": { "properties": { "Type": { "const": "ScatterChart" } } },
298
+ "then": { "$ref": "#/$defs/ChartElement" }
299
+ },
300
+ {
301
+ "if": { "properties": { "Type": { "const": "PolygonChart" } } },
302
+ "then": { "$ref": "#/$defs/ChartElement" }
303
+ },
304
+ {
305
+ "if": { "properties": { "Type": { "const": "TreeGrid" } } },
306
+ "then": { "$ref": "#/$defs/TreeGridElement" }
307
+ },
308
+ {
309
+ "if": { "properties": { "Type": { "const": "iGrid" } } },
310
+ "then": { "$ref": "#/$defs/iGridElement" }
311
+ },
312
+ {
313
+ "if": { "properties": { "Type": { "const": "TableLayout" } } },
314
+ "then": { "$ref": "#/$defs/TableLayoutElement" }
315
+ },
316
+ {
317
+ "if": { "properties": { "Type": { "const": "WebContainer" } } },
318
+ "then": { "$ref": "#/$defs/WebContainerElement" }
319
+ },
320
+ {
321
+ "if": { "properties": { "Type": { "const": "Slider" } } },
322
+ "then": { "$ref": "#/$defs/SliderElement" }
323
+ },
324
+ {
325
+ "if": { "properties": { "Type": { "const": "ColorSelector" } } },
326
+ "then": { "$ref": "#/$defs/ColorSelectorElement" }
327
+ },
328
+ {
329
+ "if": { "properties": { "Type": { "const": "FileUploadButton" } } },
330
+ "then": { "$ref": "#/$defs/FileUploadButtonElement" }
331
+ },
332
+ {
333
+ "if": { "properties": { "Type": { "const": "PickList" } } },
334
+ "then": { "$ref": "#/$defs/PickListElement" }
252
335
  }
253
336
  ]
254
337
  },
@@ -508,6 +591,225 @@
508
591
  "ExtraOption": { "$ref": "#/$defs/OlapGridExtraOption", "description": "OLAP 그리드 추가 옵션" }
509
592
  }
510
593
  },
594
+ "RadioButtonElement": {
595
+ "type": "object",
596
+ "description": "라디오 버튼 컨트롤",
597
+ "required": ["LanguageCode", "Text", "TextPosition", "GroupName", "CheckedValue", "Checked"],
598
+ "properties": {
599
+ "LanguageCode": { "type": "string", "description": "다국어 키 코드" },
600
+ "Text": { "type": "string", "description": "라디오 버튼 옆 텍스트" },
601
+ "TextPosition": { "type": "string", "description": "텍스트 위치 (front, back)" },
602
+ "GroupName": { "type": "string", "description": "라디오 버튼 그룹명" },
603
+ "CheckedValue": { "type": "string", "description": "선택 시 반환값" },
604
+ "Checked": { "type": "boolean", "description": "초기 선택 상태" },
605
+ "BindingInfo": { "$ref": "#/$defs/BindingInfo", "description": "데이터 바인딩 정보" }
606
+ }
607
+ },
608
+ "MaskTextBoxElement": {
609
+ "type": "object",
610
+ "description": "마스크 텍스트 입력 컨트롤",
611
+ "properties": {
612
+ "Format": { "type": "string", "description": "입력 마스크 패턴" },
613
+ "Formula": { "type": "string", "description": "동적 수식" },
614
+ "IsReadOnly": { "type": "boolean", "description": "읽기 전용" },
615
+ "Text": { "type": "string", "description": "텍스트 값" },
616
+ "Value": { "description": "입력 값" },
617
+ "BindingInfo": { "$ref": "#/$defs/BindingInfo", "description": "데이터 바인딩 정보" },
618
+ "MxBinding": { "type": "string", "description": "MX-Grid 바인딩" }
619
+ }
620
+ },
621
+ "MultiComboBoxElement": {
622
+ "type": "object",
623
+ "description": "다중 선택 콤보박스 컨트롤",
624
+ "properties": {
625
+ "DataSource": { "type": "string", "description": "데이터소스 이름" },
626
+ "EditValue": { "type": "string", "description": "선택된 값 (쉼표 구분)" },
627
+ "CaptionText": { "type": "string", "description": "캡션 텍스트" },
628
+ "InitType": { "description": "초기화 타입" },
629
+ "InitValue": { "type": "string", "description": "초기값" },
630
+ "RefreshType": { "description": "새로고침 타입" },
631
+ "IsReadOnly": { "type": "boolean", "description": "읽기 전용" },
632
+ "SortType": { "description": "정렬 타입" },
633
+ "AutoRefresh": { "type": "boolean", "description": "자동 새로고침" },
634
+ "AfterRefresh": { "type": "string", "description": "새로고침 후 호출 함수" },
635
+ "IsMultiSelect": { "type": "boolean", "description": "다중 선택 여부" },
636
+ "AutoExpandLevel": { "type": "number", "description": "트리 자동 확장 레벨" },
637
+ "DialogWidth": { "type": "number", "description": "팝업 너비" },
638
+ "DialogHeight": { "type": "number", "description": "팝업 높이" },
639
+ "UseAllItems": { "type": "boolean", "description": "전체 항목 사용" },
640
+ "DataSourceInfo": {
641
+ "type": "object",
642
+ "properties": {
643
+ "ParentField": { "type": "string" },
644
+ "ChildField": { "type": "string" },
645
+ "CaptionField": { "type": "string" },
646
+ "ValueField": { "type": "string" }
647
+ }
648
+ },
649
+ "BindingInfo": { "$ref": "#/$defs/BindingInfo", "description": "데이터 바인딩 정보" }
650
+ }
651
+ },
652
+ "PickListElement": {
653
+ "type": "object",
654
+ "description": "픽리스트 컨트롤",
655
+ "properties": {
656
+ "IsReadOnly": { "type": "boolean", "description": "읽기 전용" },
657
+ "AfterRefresh": { "type": "string", "description": "새로고침 후 호출 함수" },
658
+ "DialogWidth": { "type": "number", "description": "팝업 너비" },
659
+ "DialogHeight": { "type": "number", "description": "팝업 높이" }
660
+ }
661
+ },
662
+ "TabElement": {
663
+ "type": "object",
664
+ "description": "탭 컨테이너 컨트롤",
665
+ "properties": {
666
+ "TabButtonPosition": { "type": "integer", "description": "탭 버튼 위치 (enTabPositionType)" },
667
+ "TabButtonHeight": { "type": "number", "description": "탭 버튼 높이" },
668
+ "ActiveStyle": { "type": "object", "description": "활성 탭 스타일" },
669
+ "InactiveStyle": { "type": "object", "description": "비활성 탭 스타일" },
670
+ "MouseOverStyle": { "type": "object", "description": "마우스 오버 스타일" },
671
+ "MouseDownStyle": { "type": "object", "description": "마우스 다운 스타일" },
672
+ "DoExport": { "type": "boolean", "description": "내보내기 버튼 표시" },
673
+ "TabItems": { "type": "array", "description": "탭 아이템 배열 (각 탭 페이지와 자식 컨트롤)" }
674
+ }
675
+ },
676
+ "CalendarElement": {
677
+ "type": "object",
678
+ "description": "달력 컨트롤 (Calendar, CalendarYear, CalendarYM 공통)",
679
+ "properties": {
680
+ "InitDate": { "type": "string", "description": "초기 날짜 (예: TODAY, TODAY-7)" },
681
+ "DataFormat": { "type": "string", "description": "데이터 포맷 (예: yyyyMMdd)" },
682
+ "ViewFormat": { "type": "string", "description": "표시 포맷 (예: yyyy-MM-dd)" },
683
+ "IsReadOnly": { "type": "boolean", "description": "읽기 전용" },
684
+ "Text": { "type": "string", "description": "텍스트 값" },
685
+ "MinDate": { "type": "string", "description": "최소 날짜" },
686
+ "MaxDate": { "type": "string", "description": "최대 날짜" },
687
+ "BindingInfo": { "$ref": "#/$defs/BindingInfo", "description": "데이터 바인딩 정보" },
688
+ "MxBinding": { "type": "string", "description": "MX-Grid 바인딩" }
689
+ }
690
+ },
691
+ "ChartElement": {
692
+ "type": "object",
693
+ "description": "차트 컨트롤 (Chart, PieChart, ScatterChart, PolygonChart 공통)",
694
+ "properties": {
695
+ "DataSource": { "type": "string", "description": "데이터소스 코드" },
696
+ "AutoRefresh": { "type": "boolean", "description": "자동 새로고침" },
697
+ "DoRefresh": { "type": "boolean", "description": "수동 새로고침 버튼" },
698
+ "DoExport": { "type": "boolean", "description": "내보내기 버튼" },
699
+ "PivotGrid": { "type": "string", "description": "피벗 그리드 컨트롤 이름" },
700
+ "DataGrid": { "type": "string", "description": "데이터 그리드 컨트롤 이름" },
701
+ "Chart": { "type": "object", "description": "차트 옵션 (ChartType 등)" },
702
+ "Axis": { "type": "object", "description": "축 설정 (XAxis, Y1Axis, Y2Axis)" },
703
+ "PlotOptions": { "type": "object", "description": "플롯 옵션" },
704
+ "Title": { "type": "object", "description": "차트 제목" },
705
+ "Legend": { "type": "object", "description": "범례 설정" },
706
+ "SeriesSet": { "type": "array", "description": "시리즈 배열" }
707
+ }
708
+ },
709
+ "TreeGridElement": {
710
+ "type": "object",
711
+ "description": "트리 구조 그리드 컨트롤",
712
+ "properties": {
713
+ "CellMargin": { "type": "string", "description": "셀 내부 여백" },
714
+ "Columns": { "type": "array", "items": { "$ref": "#/$defs/GridColumn" } },
715
+ "DataSource": { "type": "string", "description": "바인딩할 데이터소스" },
716
+ "AutoRefresh": { "type": "boolean", "description": "자동 새로고침" },
717
+ "DoRefresh": { "type": "boolean", "description": "수동 새로고침 버튼" },
718
+ "DoExport": { "type": "boolean", "description": "내보내기 버튼" },
719
+ "TreeMargin": { "type": "number", "description": "트리 들여쓰기 여백" },
720
+ "ToggleBtnSize": { "type": "number", "description": "토글 버튼 크기" },
721
+ "TreeInfo": { "type": "object", "description": "트리 설정 (계층 구조 정의)" },
722
+ "AutoExpandLevel": { "type": "number", "description": "자동 확장 레벨" },
723
+ "IndentWidth": { "type": "number", "description": "들여쓰기 폭" },
724
+ "MaxLevel": { "type": "number", "description": "최대 레벨 수" },
725
+ "Editable": { "type": "boolean", "description": "셀 편집 가능" }
726
+ }
727
+ },
728
+ "iGridElement": {
729
+ "type": "object",
730
+ "description": "인터랙티브 그리드 (MXGrid) 컨트롤",
731
+ "properties": {
732
+ "ServerScript": { "type": "string", "description": "서버 스크립트 이름" },
733
+ "AutoRefresh": { "type": "boolean", "description": "자동 새로고침" },
734
+ "DoRefresh": { "type": "boolean", "description": "수동 새로고침 버튼" },
735
+ "DoExport": { "type": "boolean", "description": "내보내기 버튼" },
736
+ "TemplateCode": { "type": "string", "description": "템플릿 코드" },
737
+ "ActiveSheet": { "type": "string", "description": "활성 시트" },
738
+ "UseMultiSheet": { "type": "boolean", "description": "다중 시트 사용" },
739
+ "EnableZoom": { "type": "boolean", "description": "줌 활성화" },
740
+ "FreezeRow": { "type": "number", "description": "고정 행 수" },
741
+ "FreezeColumn": { "type": "number", "description": "고정 열 수" },
742
+ "Controls": { "type": "array", "description": "자식 컨트롤 배열" }
743
+ }
744
+ },
745
+ "TableLayoutElement": {
746
+ "type": "object",
747
+ "description": "테이블 레이아웃 컨테이너 컨트롤",
748
+ "properties": {
749
+ "FontSize": { "type": "number", "description": "폰트 크기" },
750
+ "BasicMargin": { "description": "기본 여백" },
751
+ "IsFixed": { "type": "boolean", "description": "고정 레이아웃" },
752
+ "BorderVisible": { "type": "boolean", "description": "테두리 표시" },
753
+ "Cols": { "type": "array", "description": "컬럼 정의 배열" },
754
+ "Rows": { "type": "array", "description": "행 정의 배열" },
755
+ "MergeCellList": { "type": "array", "description": "셀 병합 정의" }
756
+ }
757
+ },
758
+ "WebContainerElement": {
759
+ "type": "object",
760
+ "description": "웹 브라우저 컨테이너 컨트롤",
761
+ "properties": {
762
+ "TargetURL": { "type": "string", "description": "대상 URL" },
763
+ "AutoRefresh": { "type": "boolean", "description": "자동 새로고침" },
764
+ "DoRefresh": { "type": "boolean", "description": "수동 새로고침 버튼" }
765
+ }
766
+ },
767
+ "SliderElement": {
768
+ "type": "object",
769
+ "description": "슬라이더 컨트롤",
770
+ "properties": {
771
+ "DataSource": { "type": "string", "description": "데이터소스" },
772
+ "SliderInfo": {
773
+ "type": "object",
774
+ "properties": {
775
+ "IsReadOnly": { "type": "boolean" },
776
+ "Grid": { "type": "number" },
777
+ "Step": { "type": "number" },
778
+ "Format": { "type": "string" },
779
+ "Type": { "type": "string" }
780
+ }
781
+ },
782
+ "DataSourceInfo": {
783
+ "type": "object",
784
+ "properties": {
785
+ "Min": { "type": "number" },
786
+ "Max": { "type": "number" },
787
+ "From": { "type": "number" },
788
+ "To": { "type": "number" }
789
+ }
790
+ }
791
+ }
792
+ },
793
+ "ColorSelectorElement": {
794
+ "type": "object",
795
+ "description": "색상 선택기 컨트롤",
796
+ "properties": {
797
+ "ColorValue": { "type": "string", "description": "색상 값 (hex)" },
798
+ "ShowButton": { "type": "boolean", "description": "버튼 표시 여부" }
799
+ }
800
+ },
801
+ "FileUploadButtonElement": {
802
+ "type": "object",
803
+ "description": "파일 업로드 버튼 컨트롤",
804
+ "properties": {
805
+ "LanguageCode": { "type": "string", "description": "다국어 키 코드" },
806
+ "Value": { "type": "string", "description": "버튼 텍스트" },
807
+ "Cursor": { "type": "string", "description": "마우스 커서 스타일" },
808
+ "AllowExt": { "type": "string", "description": "허용 파일 확장자" },
809
+ "SaveLimitSize": { "type": "number", "description": "업로드 크기 제한" },
810
+ "SaveFolderName": { "type": "string", "description": "저장 폴더명" }
811
+ }
812
+ },
511
813
  "OlapGridExtraOption": {
512
814
  "type": "object",
513
815
  "description": "OlapGrid ExtraOption (eniPivotSerializeOption 기반)",