@j-solution/components 1.5.0 → 1.6.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.
Files changed (62) hide show
  1. package/README.md +5 -6
  2. package/assets/jwms-portal-frontend-DntSIcYt.css +1 -0
  3. package/assets/styles/j-components.css +1 -1
  4. package/components/atoms/JGrid.vue.cjs +1 -1
  5. package/components/atoms/JGrid.vue.js +2 -2
  6. package/components/atoms/JGrid.vue2.cjs +1 -1
  7. package/components/atoms/JGrid.vue2.cjs.map +1 -1
  8. package/components/atoms/JGrid.vue2.js +124 -56
  9. package/components/atoms/JGrid.vue2.js.map +1 -1
  10. package/components/atoms/JSplitter.vue.cjs +2 -0
  11. package/components/atoms/JSplitter.vue.cjs.map +1 -0
  12. package/components/atoms/JSplitter.vue.js +57 -0
  13. package/components/atoms/JSplitter.vue.js.map +1 -0
  14. package/components/atoms/JSplitter.vue2.cjs +2 -0
  15. package/components/atoms/JSplitter.vue2.cjs.map +1 -0
  16. package/components/atoms/JSplitter.vue2.js +5 -0
  17. package/components/atoms/JSplitter.vue2.js.map +1 -0
  18. package/components/examples/ExampleCrudPage.vue.cjs +2 -0
  19. package/components/examples/ExampleCrudPage.vue.cjs.map +1 -0
  20. package/components/examples/ExampleCrudPage.vue.js +304 -0
  21. package/components/examples/ExampleCrudPage.vue.js.map +1 -0
  22. package/components/examples/ExampleCrudPage.vue2.cjs +2 -0
  23. package/components/examples/ExampleCrudPage.vue2.cjs.map +1 -0
  24. package/components/examples/ExampleCrudPage.vue2.js +5 -0
  25. package/components/examples/ExampleCrudPage.vue2.js.map +1 -0
  26. package/components/examples/ExampleTabMappingPage.vue.cjs +2 -0
  27. package/components/examples/ExampleTabMappingPage.vue.cjs.map +1 -0
  28. package/components/examples/ExampleTabMappingPage.vue.js +479 -0
  29. package/components/examples/ExampleTabMappingPage.vue.js.map +1 -0
  30. package/components/examples/ExampleTabMappingPage.vue2.cjs +2 -0
  31. package/components/examples/ExampleTabMappingPage.vue2.cjs.map +1 -0
  32. package/components/examples/ExampleTabMappingPage.vue2.js +5 -0
  33. package/components/examples/ExampleTabMappingPage.vue2.js.map +1 -0
  34. package/components/molecules/JTitlebar.vue.cjs +1 -1
  35. package/components/molecules/JTitlebar.vue.cjs.map +1 -1
  36. package/components/molecules/JTitlebar.vue.js +48 -40
  37. package/components/molecules/JTitlebar.vue.js.map +1 -1
  38. package/components/organisms/JFilterBar.vue.cjs +1 -1
  39. package/components/organisms/JFilterBar.vue.cjs.map +1 -1
  40. package/components/organisms/JFilterBar.vue.js +60 -53
  41. package/components/organisms/JFilterBar.vue.js.map +1 -1
  42. package/components/shadcn/resizable/ResizableHandle.vue.cjs +2 -0
  43. package/components/shadcn/resizable/ResizableHandle.vue.cjs.map +1 -0
  44. package/components/shadcn/resizable/ResizableHandle.vue.js +40 -0
  45. package/components/shadcn/resizable/ResizableHandle.vue.js.map +1 -0
  46. package/components/shadcn/resizable/ResizableHandle.vue2.cjs +2 -0
  47. package/components/shadcn/resizable/ResizableHandle.vue2.cjs.map +1 -0
  48. package/components/shadcn/resizable/ResizableHandle.vue2.js +5 -0
  49. package/components/shadcn/resizable/ResizableHandle.vue2.js.map +1 -0
  50. package/components/shadcn/resizable/ResizablePanelGroup.vue.cjs +2 -0
  51. package/components/shadcn/resizable/ResizablePanelGroup.vue.cjs.map +1 -0
  52. package/components/shadcn/resizable/ResizablePanelGroup.vue.js +33 -0
  53. package/components/shadcn/resizable/ResizablePanelGroup.vue.js.map +1 -0
  54. package/components/shadcn/resizable/ResizablePanelGroup.vue2.cjs +2 -0
  55. package/components/shadcn/resizable/ResizablePanelGroup.vue2.cjs.map +1 -0
  56. package/components/shadcn/resizable/ResizablePanelGroup.vue2.js +5 -0
  57. package/components/shadcn/resizable/ResizablePanelGroup.vue2.js.map +1 -0
  58. package/index.cjs +1 -1
  59. package/index.js +76 -70
  60. package/package.json +2 -2
  61. package/types/index.d.ts +895 -188
  62. package/assets/jwms-portal-frontend-uK756XTb.css +0 -1
package/types/index.d.ts CHANGED
@@ -34,7 +34,19 @@ loading: boolean;
34
34
  styletype: StyleType;
35
35
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
36
36
 
37
- declare const __VLS_component_10: DefineComponent<JContextMenuProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
37
+ declare const __VLS_component_10: DefineComponent<JTabsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
38
+ tabChange: (id: string) => any;
39
+ tabClose: (id: string) => any;
40
+ "update:activeTabId": (id: string) => any;
41
+ }, string, PublicProps, Readonly<JTabsProps> & Readonly<{
42
+ onTabChange?: ((id: string) => any) | undefined;
43
+ onTabClose?: ((id: string) => any) | undefined;
44
+ "onUpdate:activeTabId"?: ((id: string) => any) | undefined;
45
+ }>, {
46
+ styletype: "default" | "minimal";
47
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
48
+
49
+ declare const __VLS_component_11: DefineComponent<JContextMenuProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
38
50
  select: (itemId: string) => any;
39
51
  open: () => any;
40
52
  close: () => any;
@@ -47,11 +59,11 @@ disabled: boolean;
47
59
  items: ContextMenuGroup[];
48
60
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
49
61
 
50
- declare const __VLS_component_11: DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
62
+ declare const __VLS_component_12: DefineComponent<__VLS_Props_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_28> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
51
63
 
52
- declare const __VLS_component_12: DefineComponent<__VLS_Props_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
64
+ declare const __VLS_component_13: DefineComponent<__VLS_Props_29, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
53
65
  confirm: () => any;
54
- }, string, PublicProps, Readonly<__VLS_Props_28> & Readonly<{
66
+ }, string, PublicProps, Readonly<__VLS_Props_29> & Readonly<{
55
67
  onConfirm?: (() => any) | undefined;
56
68
  }>, {
57
69
  variant: "default" | "destructive";
@@ -59,23 +71,25 @@ buttonText: string;
59
71
  showFooter: boolean;
60
72
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
61
73
 
62
- declare const __VLS_component_13: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
74
+ declare const __VLS_component_14: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
63
75
 
64
- declare const __VLS_component_14: DefineComponent<__VLS_Props_29, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
76
+ declare const __VLS_component_15: DefineComponent<__VLS_Props_30, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
65
77
  buttonClick: (button: TitlebarButton) => any;
66
- }, string, PublicProps, Readonly<__VLS_Props_29> & Readonly<{
78
+ help: () => any;
79
+ }, string, PublicProps, Readonly<__VLS_Props_30> & Readonly<{
67
80
  onButtonClick?: ((button: TitlebarButton) => any) | undefined;
81
+ onHelp?: (() => any) | undefined;
68
82
  }>, {
69
83
  styletype: StyleType_22;
70
84
  buttons: TitlebarButton[];
71
85
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
72
86
 
73
- declare const __VLS_component_15: DefineComponent<__VLS_Props_30, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_30> & Readonly<{}>, {
87
+ declare const __VLS_component_16: DefineComponent<__VLS_Props_31, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_31> & Readonly<{}>, {
74
88
  orientation: "vertical" | "horizontal" | null;
75
89
  showButtonSeparators: boolean;
76
90
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
77
91
 
78
- declare const __VLS_component_16: DefineComponent<JDynamicTabsProps, {
92
+ declare const __VLS_component_17: DefineComponent<JDynamicTabsProps, {
79
93
  addTab: (tab: DynamicTab) => void;
80
94
  closeTab: (id: string) => void;
81
95
  activateTab: (id: string) => void;
@@ -96,7 +110,7 @@ maxTabs: number;
96
110
  emptyMessage: string;
97
111
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
98
112
 
99
- declare const __VLS_component_17: DefineComponent<JModalProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
113
+ declare const __VLS_component_18: DefineComponent<JModalProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
100
114
  "update:open": (value: boolean) => any;
101
115
  cancel: () => any;
102
116
  confirm: (value?: string | undefined) => any;
@@ -118,7 +132,7 @@ confirmVariant: "default" | "destructive" | "outline" | "secondary" | "ghost" |
118
132
  confirmDisabled: boolean;
119
133
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
120
134
 
121
- declare const __VLS_component_18: DefineComponent<JFormModalProps, {
135
+ declare const __VLS_component_19: DefineComponent<JFormModalProps, {
122
136
  reset: () => void | undefined;
123
137
  submit: () => void | undefined;
124
138
  formState: ComputedRef<Record<string, any> | undefined>;
@@ -194,25 +208,6 @@ handleError: (errs: any) => void;
194
208
  }, {}, {}, {}, {}> | null;
195
209
  }, any>;
196
210
 
197
- declare const __VLS_component_19: DefineComponent<JFilterBarProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
198
- search: () => any;
199
- "update:collapsed": (value: boolean) => any;
200
- "update:filterValues": (value: Record<string, unknown>) => any;
201
- }, string, PublicProps, Readonly<JFilterBarProps> & Readonly<{
202
- onSearch?: (() => any) | undefined;
203
- "onUpdate:collapsed"?: ((value: boolean) => any) | undefined;
204
- "onUpdate:filterValues"?: ((value: Record<string, unknown>) => any) | undefined;
205
- }>, {
206
- collapsible: boolean;
207
- collapsed: boolean;
208
- filterValues: Record<string, unknown>;
209
- filterConfig: Record<string, FilterConfigItem>;
210
- showResetButton: boolean;
211
- showSearchButton: boolean;
212
- resetButtonText: string;
213
- searchButtonText: string;
214
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
215
-
216
211
  declare const __VLS_component_2: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
217
212
  "update:modelValue": (value: string | number) => any;
218
213
  change: (value: string | number) => any;
@@ -232,14 +227,35 @@ required: boolean;
232
227
  styletype: StyleType_2;
233
228
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLInputElement>;
234
229
 
235
- declare const __VLS_component_20: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
230
+ declare const __VLS_component_20: DefineComponent<JFilterBarProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
231
+ search: () => any;
232
+ reset: () => any;
233
+ "update:collapsed": (value: boolean) => any;
234
+ "update:filterValues": (value: Record<string, unknown>) => any;
235
+ }, string, PublicProps, Readonly<JFilterBarProps> & Readonly<{
236
+ onSearch?: (() => any) | undefined;
237
+ onReset?: (() => any) | undefined;
238
+ "onUpdate:collapsed"?: ((value: boolean) => any) | undefined;
239
+ "onUpdate:filterValues"?: ((value: Record<string, unknown>) => any) | undefined;
240
+ }>, {
241
+ collapsible: boolean;
242
+ collapsed: boolean;
243
+ filterValues: Record<string, unknown>;
244
+ filterDisplay: Record<string, FilterDisplayItem>;
245
+ showResetButton: boolean;
246
+ showSearchButton: boolean;
247
+ resetButtonText: string;
248
+ searchButtonText: string;
249
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
250
+
251
+ declare const __VLS_component_21: DefineComponent<__VLS_Props_34, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
236
252
  logoClick: () => any;
237
253
  navClick: (item: HeaderNavItem, index: number) => any;
238
254
  notificationClick: (item: NotificationItem) => any;
239
255
  userMenuSelect: (itemId: string) => any;
240
256
  sidebarToggle: () => any;
241
257
  login: () => any;
242
- }, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{
258
+ }, string, PublicProps, Readonly<__VLS_Props_34> & Readonly<{
243
259
  onLogoClick?: (() => any) | undefined;
244
260
  onNavClick?: ((item: HeaderNavItem, index: number) => any) | undefined;
245
261
  onNotificationClick?: ((item: NotificationItem) => any) | undefined;
@@ -258,10 +274,10 @@ defaultTheme: string;
258
274
  availableThemes: string[];
259
275
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
260
276
 
261
- declare const __VLS_component_21: DefineComponent<__VLS_Props_36, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
277
+ declare const __VLS_component_22: DefineComponent<__VLS_Props_37, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
262
278
  breadcrumbClick: (item: BreadcrumbItem, index: number) => any;
263
279
  titlebarButtonClick: (button: TitlebarButton) => any;
264
- }, string, PublicProps, Readonly<__VLS_Props_36> & Readonly<{
280
+ }, string, PublicProps, Readonly<__VLS_Props_37> & Readonly<{
265
281
  onBreadcrumbClick?: ((item: BreadcrumbItem, index: number) => any) | undefined;
266
282
  onTitlebarButtonClick?: ((button: TitlebarButton) => any) | undefined;
267
283
  }>, {
@@ -272,12 +288,12 @@ showTitlebar: boolean;
272
288
  contentScroll: boolean;
273
289
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
274
290
 
275
- declare const __VLS_component_22: DefineComponent<__VLS_Props_38, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_38> & Readonly<{}>, {
291
+ declare const __VLS_component_23: DefineComponent<__VLS_Props_39, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_39> & Readonly<{}>, {
276
292
  styletype: StyleType_29;
277
293
  contentScroll: boolean;
278
294
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
279
295
 
280
- declare const __VLS_component_23: DefineComponent<__VLS_Props_39, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_39> & Readonly<{}>, {
296
+ declare const __VLS_component_24: DefineComponent<__VLS_Props_40, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_40> & Readonly<{}>, {
281
297
  styletype: "default" | "minimal";
282
298
  permissions: MenuPermission[];
283
299
  menuItems: SidebarMenuItem[];
@@ -337,16 +353,11 @@ modal: boolean;
337
353
  styletype: StyleType_20;
338
354
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
339
355
 
340
- declare const __VLS_component_9: DefineComponent<JTabsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
341
- tabChange: (id: string) => any;
342
- tabClose: (id: string) => any;
343
- "update:activeTabId": (id: string) => any;
344
- }, string, PublicProps, Readonly<JTabsProps> & Readonly<{
345
- onTabChange?: ((id: string) => any) | undefined;
346
- onTabClose?: ((id: string) => any) | undefined;
347
- "onUpdate:activeTabId"?: ((id: string) => any) | undefined;
348
- }>, {
349
- styletype: "default" | "minimal";
356
+ declare const __VLS_component_9: DefineComponent<__VLS_Props_25, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_25> & Readonly<{}>, {
357
+ direction: Orientation;
358
+ withHandle: boolean;
359
+ defaultSize: number;
360
+ minSize: number;
350
361
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
351
362
 
352
363
  declare type __VLS_Props = {
@@ -589,6 +600,12 @@ declare type __VLS_Props_24 = {
589
600
  pagination?: boolean;
590
601
  /** 체크박스 선택 활성화 여부 */
591
602
  checkbox?: boolean;
603
+ /** 행 번호 표시 여부 (Enterprise) */
604
+ rowNumbers?: boolean;
605
+ /** 행별 액션 버튼 목록 */
606
+ actionButtons?: ActionButton[];
607
+ /** 다크모드 자동 감지 여부 */
608
+ autoDetectDarkMode?: boolean;
592
609
  /** 요약 컬럼 표시 여부 */
593
610
  summaryColumn?: boolean;
594
611
  /** 숨김 컬럼 관리 활성화 여부 */
@@ -607,9 +624,34 @@ declare type __VLS_Props_24 = {
607
624
  autoGroupColumnDef?: ColDef;
608
625
  /** 선택된 행 데이터 배열 (v-model:selected-rows) */
609
626
  selectedRows?: any[];
627
+ /** 컬럼 호버 하이라이트 활성화 여부 */
628
+ columnHover?: boolean;
629
+ /** Columns Tool Panel 활성화 여부 (Enterprise) */
630
+ enableColumnsToolPanel?: boolean;
631
+ /** Status Bar 활성화 여부 (Enterprise) */
632
+ statusBar?: boolean;
610
633
  };
611
634
 
612
635
  declare type __VLS_Props_25 = {
636
+ /** 분할 방향 (horizontal: 좌우, vertical: 상하) */
637
+ direction?: Orientation;
638
+ /** 첫 번째 패널의 기본 크기 (%) */
639
+ defaultSize?: number;
640
+ /** 첫 번째 패널의 최소 크기 (%) */
641
+ minSize?: number;
642
+ /** 첫 번째 패널의 최대 크기 (%) */
643
+ maxSize?: number;
644
+ /** 두 번째 패널의 최소 크기 (%) */
645
+ secondMinSize?: number;
646
+ /** 두 번째 패널의 최대 크기 (%) */
647
+ secondMaxSize?: number;
648
+ /** ResizableHandle에 grip 아이콘 표시 여부 */
649
+ withHandle?: boolean;
650
+ /** 추가 CSS 클래스 */
651
+ class?: string;
652
+ };
653
+
654
+ declare type __VLS_Props_26 = {
613
655
  /** 필드 레이블 */
614
656
  label?: string;
615
657
  /** 필드 설명 (레이블 아래 표시) */
@@ -656,7 +698,7 @@ declare type __VLS_Props_25 = {
656
698
  radioDirection?: 'horizontal' | 'vertical';
657
699
  };
658
700
 
659
- declare type __VLS_Props_26 = {
701
+ declare type __VLS_Props_27 = {
660
702
  modelValue?: string | number;
661
703
  groupedOptions?: GroupedOption[];
662
704
  placeholder?: string;
@@ -669,7 +711,7 @@ declare type __VLS_Props_26 = {
669
711
  styletype?: StyleType_21;
670
712
  };
671
713
 
672
- declare type __VLS_Props_27 = {
714
+ declare type __VLS_Props_28 = {
673
715
  /** Card 자체의 클래스 */
674
716
  class?: HTMLAttributes["class"];
675
717
  /** 카드 제목 */
@@ -680,7 +722,7 @@ declare type __VLS_Props_27 = {
680
722
  footer?: string;
681
723
  };
682
724
 
683
- declare type __VLS_Props_28 = {
725
+ declare type __VLS_Props_29 = {
684
726
  /** Alert 자체의 클래스 */
685
727
  class?: HTMLAttributes["class"];
686
728
  /** Alert variant 스타일 */
@@ -697,19 +739,6 @@ declare type __VLS_Props_28 = {
697
739
  showFooter?: boolean;
698
740
  };
699
741
 
700
- declare type __VLS_Props_29 = {
701
- /** Titlebar 스타일 타입 */
702
- styletype?: StyleType_22;
703
- /** 프로그램 아이콘 */
704
- icon?: string;
705
- /** 프로그램명 */
706
- title?: string;
707
- /** 프로그램 설명 (Popover에 표시) */
708
- description?: string;
709
- /** 메인 버튼 목록 */
710
- buttons?: TitlebarButton[];
711
- };
712
-
713
742
  declare type __VLS_Props_3 = {
714
743
  modelValue?: string;
715
744
  placeholder?: string;
@@ -725,11 +754,26 @@ declare type __VLS_Props_3 = {
725
754
  };
726
755
 
727
756
  declare type __VLS_Props_30 = {
757
+ /** Titlebar 스타일 타입 */
758
+ styletype?: StyleType_22;
759
+ /** 프로그램 아이콘 */
760
+ icon?: string;
761
+ /** 프로그램명 */
762
+ title?: string;
763
+ /** 프로그램 설명 (Popover에 표시) */
764
+ description?: string;
765
+ /** 도움말 아이콘(?) 표시 여부 — 클릭 시 help 이벤트 emit */
766
+ showHelp?: boolean;
767
+ /** 메인 버튼 목록 */
768
+ buttons?: TitlebarButton[];
769
+ };
770
+
771
+ declare type __VLS_Props_31 = {
728
772
  orientation?: ButtonGroupVariants['orientation'];
729
773
  showButtonSeparators?: boolean;
730
774
  };
731
775
 
732
- declare type __VLS_Props_31 = {
776
+ declare type __VLS_Props_32 = {
733
777
  /** 브레드크럼 아이템 목록 */
734
778
  items: BreadcrumbItem[];
735
779
  /** 구분자 (기본값: /) */
@@ -740,12 +784,12 @@ declare type __VLS_Props_31 = {
740
784
  class?: string;
741
785
  };
742
786
 
743
- declare type __VLS_Props_32 = {
787
+ declare type __VLS_Props_33 = {
744
788
  schema: FormSchema;
745
789
  modelValue?: Record<string, any>;
746
790
  };
747
791
 
748
- declare type __VLS_Props_33 = {
792
+ declare type __VLS_Props_34 = {
749
793
  /** 로고 이미지 URL */
750
794
  logo?: string;
751
795
  /** 로고 텍스트 (기본값, 이미지가 없을 때) */
@@ -780,7 +824,7 @@ declare type __VLS_Props_33 = {
780
824
  availableThemes?: string[];
781
825
  };
782
826
 
783
- declare type __VLS_Props_34 = {
827
+ declare type __VLS_Props_35 = {
784
828
  /** 메뉴 아이템 목록 */
785
829
  menuItems: SidebarMenuItem[];
786
830
  /** 권한 목록 */
@@ -797,7 +841,7 @@ declare type __VLS_Props_34 = {
797
841
  isVisible?: boolean;
798
842
  };
799
843
 
800
- declare type __VLS_Props_35 = {
844
+ declare type __VLS_Props_36 = {
801
845
  /** 메뉴 아이템 목록 */
802
846
  menuItems: SidebarMenuItem[];
803
847
  /** 권한 목록 */
@@ -814,7 +858,7 @@ declare type __VLS_Props_35 = {
814
858
  isVisible?: boolean;
815
859
  };
816
860
 
817
- declare type __VLS_Props_36 = {
861
+ declare type __VLS_Props_37 = {
818
862
  /** 브레드크럼 아이템 목록 */
819
863
  breadcrumbItems?: BreadcrumbItem[];
820
864
  /** 브레드크럼 표시 여부 */
@@ -835,7 +879,7 @@ declare type __VLS_Props_36 = {
835
879
  class?: string;
836
880
  };
837
881
 
838
- declare type __VLS_Props_37 = {
882
+ declare type __VLS_Props_38 = {
839
883
  /** 트리 노드 데이터 */
840
884
  items: SidebarMenuItem[];
841
885
  /** 펼쳐진 노드 키 목록 (v-model 지원, 배열) */
@@ -854,7 +898,7 @@ declare type __VLS_Props_37 = {
854
898
  class?: string;
855
899
  };
856
900
 
857
- declare type __VLS_Props_38 = {
901
+ declare type __VLS_Props_39 = {
858
902
  /** 레이아웃 스타일 타입 */
859
903
  styletype?: StyleType_29;
860
904
  /** 콘텐츠 영역 스크롤 가능 여부 */
@@ -863,6 +907,17 @@ declare type __VLS_Props_38 = {
863
907
  class?: string;
864
908
  };
865
909
 
910
+ declare type __VLS_Props_4 = {
911
+ modelValue?: string;
912
+ disabled?: boolean;
913
+ required?: boolean;
914
+ name?: string;
915
+ id?: string;
916
+ class?: string;
917
+ /** 스타일 프리셋 */
918
+ styletype?: StyleType_4;
919
+ };
920
+
866
921
  /**
867
922
  * JLayoutSimple - Simple Sidebar + 일반 PageContainer 조합 템플릿 (templates)
868
923
  * Simple Layout Template
@@ -893,7 +948,7 @@ declare type __VLS_Props_38 = {
893
948
  * </JLayoutSimple>
894
949
  * ```
895
950
  */
896
- declare type __VLS_Props_39 = {
951
+ declare type __VLS_Props_40 = {
897
952
  /** 레이아웃 스타일 타입 */
898
953
  styletype?: 'default' | 'minimal';
899
954
  /** 콘텐츠 영역 스크롤 가능 여부 */
@@ -906,17 +961,6 @@ declare type __VLS_Props_39 = {
906
961
  permissions?: MenuPermission[];
907
962
  };
908
963
 
909
- declare type __VLS_Props_4 = {
910
- modelValue?: string;
911
- disabled?: boolean;
912
- required?: boolean;
913
- name?: string;
914
- id?: string;
915
- class?: string;
916
- /** 스타일 프리셋 */
917
- styletype?: StyleType_4;
918
- };
919
-
920
964
  declare type __VLS_Props_5 = {
921
965
  modelValue?: string | number;
922
966
  options?: Option_2[];
@@ -998,6 +1042,15 @@ declare function __VLS_template(): {
998
1042
  };
999
1043
 
1000
1044
  declare function __VLS_template_10(): {
1045
+ attrs: Partial<{}>;
1046
+ slots: Partial<Record<`content-${string}`, (_: {
1047
+ tab: DynamicTab;
1048
+ }) => any>>;
1049
+ refs: {};
1050
+ rootEl: any;
1051
+ };
1052
+
1053
+ declare function __VLS_template_11(): {
1001
1054
  attrs: Partial<{}>;
1002
1055
  slots: {
1003
1056
  default?(_: {}): any;
@@ -1012,7 +1065,7 @@ declare function __VLS_template_10(): {
1012
1065
  rootEl: any;
1013
1066
  };
1014
1067
 
1015
- declare function __VLS_template_11(): {
1068
+ declare function __VLS_template_12(): {
1016
1069
  attrs: Partial<{}>;
1017
1070
  slots: {
1018
1071
  default?(_: {}): any;
@@ -1021,7 +1074,7 @@ declare function __VLS_template_11(): {
1021
1074
  rootEl: HTMLDivElement;
1022
1075
  };
1023
1076
 
1024
- declare function __VLS_template_12(): {
1077
+ declare function __VLS_template_13(): {
1025
1078
  attrs: Partial<{}>;
1026
1079
  slots: {
1027
1080
  header?(_: {}): any;
@@ -1032,7 +1085,7 @@ declare function __VLS_template_12(): {
1032
1085
  rootEl: HTMLDivElement;
1033
1086
  };
1034
1087
 
1035
- declare function __VLS_template_13(): {
1088
+ declare function __VLS_template_14(): {
1036
1089
  attrs: Partial<{}>;
1037
1090
  slots: {
1038
1091
  trigger?(_: {
@@ -1046,7 +1099,7 @@ declare function __VLS_template_13(): {
1046
1099
  rootEl: any;
1047
1100
  };
1048
1101
 
1049
- declare function __VLS_template_14(): {
1102
+ declare function __VLS_template_15(): {
1050
1103
  attrs: Partial<{}>;
1051
1104
  slots: {
1052
1105
  buttons?(_: {}): any;
@@ -1055,7 +1108,7 @@ declare function __VLS_template_14(): {
1055
1108
  rootEl: HTMLDivElement;
1056
1109
  };
1057
1110
 
1058
- declare function __VLS_template_15(): {
1111
+ declare function __VLS_template_16(): {
1059
1112
  attrs: Partial<{}>;
1060
1113
  slots: {
1061
1114
  default?(_: {}): any;
@@ -1064,7 +1117,7 @@ declare function __VLS_template_15(): {
1064
1117
  rootEl: any;
1065
1118
  };
1066
1119
 
1067
- declare function __VLS_template_16(): {
1120
+ declare function __VLS_template_17(): {
1068
1121
  attrs: Partial<{}>;
1069
1122
  slots: Partial<Record<`content-${string}`, (_: {
1070
1123
  tab: DynamicTab;
@@ -1073,7 +1126,7 @@ declare function __VLS_template_16(): {
1073
1126
  rootEl: HTMLDivElement;
1074
1127
  };
1075
1128
 
1076
- declare function __VLS_template_17(): {
1129
+ declare function __VLS_template_18(): {
1077
1130
  attrs: Partial<{}>;
1078
1131
  slots: {
1079
1132
  body?(_: {}): any;
@@ -1082,7 +1135,7 @@ declare function __VLS_template_17(): {
1082
1135
  rootEl: any;
1083
1136
  };
1084
1137
 
1085
- declare function __VLS_template_18(): {
1138
+ declare function __VLS_template_19(): {
1086
1139
  attrs: Partial<{}>;
1087
1140
  slots: {
1088
1141
  body?(_: {}): any;
@@ -1132,26 +1185,26 @@ declare function __VLS_template_18(): {
1132
1185
  rootEl: any;
1133
1186
  };
1134
1187
 
1135
- declare function __VLS_template_19(): {
1188
+ declare function __VLS_template_2(): {
1136
1189
  attrs: Partial<{}>;
1137
1190
  slots: {
1138
- actions?(_: {}): any;
1139
- filters?(_: {}): any;
1191
+ default?(_: {}): any;
1140
1192
  };
1141
1193
  refs: {};
1142
- rootEl: HTMLDivElement;
1194
+ rootEl: HTMLInputElement;
1143
1195
  };
1144
1196
 
1145
- declare function __VLS_template_2(): {
1197
+ declare function __VLS_template_20(): {
1146
1198
  attrs: Partial<{}>;
1147
1199
  slots: {
1148
- default?(_: {}): any;
1200
+ actions?(_: {}): any;
1201
+ filters?(_: {}): any;
1149
1202
  };
1150
1203
  refs: {};
1151
- rootEl: HTMLInputElement;
1204
+ rootEl: HTMLDivElement;
1152
1205
  };
1153
1206
 
1154
- declare function __VLS_template_20(): {
1207
+ declare function __VLS_template_21(): {
1155
1208
  attrs: Partial<{}>;
1156
1209
  slots: {
1157
1210
  actions?(_: {}): any;
@@ -1160,7 +1213,7 @@ declare function __VLS_template_20(): {
1160
1213
  rootEl: HTMLElement;
1161
1214
  };
1162
1215
 
1163
- declare function __VLS_template_21(): {
1216
+ declare function __VLS_template_22(): {
1164
1217
  attrs: Partial<{}>;
1165
1218
  slots: {
1166
1219
  'titlebar-buttons'?(_: {}): any;
@@ -1170,7 +1223,7 @@ declare function __VLS_template_21(): {
1170
1223
  rootEl: HTMLDivElement;
1171
1224
  };
1172
1225
 
1173
- declare function __VLS_template_22(): {
1226
+ declare function __VLS_template_23(): {
1174
1227
  attrs: Partial<{}>;
1175
1228
  slots: {
1176
1229
  header?(_: {}): any;
@@ -1182,7 +1235,7 @@ declare function __VLS_template_22(): {
1182
1235
  rootEl: HTMLDivElement;
1183
1236
  };
1184
1237
 
1185
- declare function __VLS_template_23(): {
1238
+ declare function __VLS_template_24(): {
1186
1239
  attrs: Partial<{}>;
1187
1240
  slots: {
1188
1241
  header?(_: {
@@ -1256,9 +1309,14 @@ declare function __VLS_template_8(): {
1256
1309
 
1257
1310
  declare function __VLS_template_9(): {
1258
1311
  attrs: Partial<{}>;
1259
- slots: Partial<Record<`content-${string}`, (_: {
1260
- tab: DynamicTab;
1261
- }) => any>>;
1312
+ slots: {
1313
+ first?(_: {}): any;
1314
+ left?(_: {}): any;
1315
+ top?(_: {}): any;
1316
+ second?(_: {}): any;
1317
+ right?(_: {}): any;
1318
+ bottom?(_: {}): any;
1319
+ };
1262
1320
  refs: {};
1263
1321
  rootEl: any;
1264
1322
  };
@@ -1295,6 +1353,8 @@ declare type __VLS_TemplateResult_22 = ReturnType<typeof __VLS_template_22>;
1295
1353
 
1296
1354
  declare type __VLS_TemplateResult_23 = ReturnType<typeof __VLS_template_23>;
1297
1355
 
1356
+ declare type __VLS_TemplateResult_24 = ReturnType<typeof __VLS_template_24>;
1357
+
1298
1358
  declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
1299
1359
 
1300
1360
  declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
@@ -1405,6 +1465,12 @@ declare type __VLS_WithTemplateSlots_23<T, S> = T & {
1405
1465
  };
1406
1466
  };
1407
1467
 
1468
+ declare type __VLS_WithTemplateSlots_24<T, S> = T & {
1469
+ new (): {
1470
+ $slots: S;
1471
+ };
1472
+ };
1473
+
1408
1474
  declare type __VLS_WithTemplateSlots_3<T, S> = T & {
1409
1475
  new (): {
1410
1476
  $slots: S;
@@ -1458,6 +1524,24 @@ declare interface AccordionItem {
1458
1524
  disabled?: boolean;
1459
1525
  }
1460
1526
 
1527
+ /**
1528
+ * Action Button 정의 타입
1529
+ */
1530
+ export declare type ActionButton = {
1531
+ /** 버튼 아이콘 이름 (lucide) - label이 없을 때 기본 텍스트 생성에 사용 */
1532
+ icon?: string;
1533
+ /** 버튼 라벨 */
1534
+ label?: string;
1535
+ /** 툴팁 텍스트 */
1536
+ tooltip?: string;
1537
+ /** 버튼 클릭 핸들러 (rowData 전달) */
1538
+ onClick: (rowData: any) => void;
1539
+ /** 버튼 스타일 타입 */
1540
+ styletype?: 'default' | 'primary' | 'secondary' | 'success' | 'warning' | 'danger';
1541
+ /** 조건부 표시 함수 (rowData를 받아 boolean 반환) */
1542
+ show?: (rowData: any) => boolean;
1543
+ };
1544
+
1461
1545
  /**
1462
1546
  * 주소 검색 결과 (간소화)
1463
1547
  */
@@ -1643,59 +1727,670 @@ declare interface DynamicTab {
1643
1727
  meta?: Record<string, any>;
1644
1728
  }
1645
1729
 
1646
- /** 필터 설정 타입 */
1647
- declare interface FilterConfigItem {
1648
- /** 표시할 라벨 */
1649
- label: string;
1650
- /** 값을 표시용 문자열로 변환 (예: combo value -> label) */
1651
- displayValue?: (value: unknown) => string;
1652
- }
1653
-
1654
- declare interface FormSchema {
1655
- id: string;
1656
- name: string;
1657
- type: 'simple' | 'sectioned' | 'wizard' | 'conditional';
1658
- fields?: DynamicFormField[];
1659
- sections?: FormSection[];
1660
- steps?: FormStep[];
1661
- layout?: {
1662
- columns?: number;
1663
- };
1664
- globalStyle?: GlobalStyle;
1665
- events?: {
1666
- onSubmit?: (values: Record<string, any>) => void;
1667
- onChange?: (field: string, value: any) => void;
1668
- onError?: (errors: any) => void;
1669
- };
1670
- }
1671
-
1672
- declare interface FormSection {
1673
- id: string;
1674
- title: string;
1675
- collapsible: boolean;
1676
- defaultCollapsed: boolean;
1677
- fields: DynamicFormField[];
1678
- }
1679
-
1680
- declare interface FormStep {
1681
- id: string;
1682
- title: string;
1683
- description?: string;
1684
- fields: DynamicFormField[];
1685
- }
1686
-
1687
- declare interface GlobalStyle {
1688
- colCount?: 'row-1' | 'row' | 'row-3' | 'row-4' | 'row-5' | 'row-6' | 'row-7' | 'row-8';
1689
- labelPosition?: 'horizontal' | 'vertical';
1690
- labelAlign?: 'left' | 'middle' | 'right';
1691
- styleType?: ControlStyleType;
1692
- controlSize?: 'sm' | 'md' | 'lg';
1693
- variant?: 'default' | 'outline' | 'secondary' | 'destructive' | 'ghost';
1694
- }
1695
-
1696
- declare interface GroupedOption {
1697
- groupLabel: string;
1698
- options: Option_4[];
1730
+ export declare const ExampleCrudPage: DefineComponent< {}, {
1731
+ gridRef: Ref<any, any>;
1732
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
1733
+ gridRef: CreateComponentPublicInstanceWithMixins<Readonly<{
1734
+ rowData: any[];
1735
+ columnDefs: ColDef[];
1736
+ theme?: string;
1737
+ pagination?: boolean;
1738
+ checkbox?: boolean;
1739
+ rowNumbers?: boolean;
1740
+ actionButtons?: ActionButton[];
1741
+ autoDetectDarkMode?: boolean;
1742
+ summaryColumn?: boolean;
1743
+ hiddenColumn?: boolean;
1744
+ enableGrouping?: boolean;
1745
+ enablePivot?: boolean;
1746
+ enableExcelExport?: boolean;
1747
+ enableTreeData?: boolean;
1748
+ getDataPath?: (data: any) => (string | number)[];
1749
+ autoGroupColumnDef?: ColDef;
1750
+ selectedRows?: any[];
1751
+ columnHover?: boolean;
1752
+ enableColumnsToolPanel?: boolean;
1753
+ statusBar?: boolean;
1754
+ }> & Readonly<{
1755
+ onRowClicked?: ((event: RowClickedEvent<any, any>) => any) | undefined;
1756
+ onRowDoubleClicked?: ((event: RowDoubleClickedEvent<any, any>) => any) | undefined;
1757
+ onCellClicked?: ((event: CellClickedEvent<any, any, any>) => any) | undefined;
1758
+ onSelectionChanged?: ((event: SelectionChangedEvent<any, any>) => any) | undefined;
1759
+ onCellValueChanged?: ((event: CellValueChangedEvent<any, any, any>) => any) | undefined;
1760
+ onGridReady?: ((event: GridReadyEvent<any, any>) => any) | undefined;
1761
+ "onUpdate:selectedRows"?: ((rows: any[]) => any) | undefined;
1762
+ }>, {
1763
+ gridApi: Ref<any, any>;
1764
+ gridColumnApi: Ref<any, any>;
1765
+ exportToExcel: () => void;
1766
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1767
+ rowClicked: (event: RowClickedEvent<any, any>) => any;
1768
+ rowDoubleClicked: (event: RowDoubleClickedEvent<any, any>) => any;
1769
+ cellClicked: (event: CellClickedEvent<any, any, any>) => any;
1770
+ selectionChanged: (event: SelectionChangedEvent<any, any>) => any;
1771
+ cellValueChanged: (event: CellValueChangedEvent<any, any, any>) => any;
1772
+ gridReady: (event: GridReadyEvent<any, any>) => any;
1773
+ "update:selectedRows": (rows: any[]) => any;
1774
+ }, PublicProps, {
1775
+ theme: string;
1776
+ pagination: boolean;
1777
+ checkbox: boolean;
1778
+ rowNumbers: boolean;
1779
+ actionButtons: ActionButton[];
1780
+ autoDetectDarkMode: boolean;
1781
+ summaryColumn: boolean;
1782
+ hiddenColumn: boolean;
1783
+ enableGrouping: boolean;
1784
+ enablePivot: boolean;
1785
+ enableExcelExport: boolean;
1786
+ enableTreeData: boolean;
1787
+ getDataPath: (data: any) => (string | number)[];
1788
+ autoGroupColumnDef: ColDef;
1789
+ selectedRows: any[];
1790
+ columnHover: boolean;
1791
+ enableColumnsToolPanel: boolean;
1792
+ statusBar: boolean;
1793
+ }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
1794
+ P: {};
1795
+ B: {};
1796
+ D: {};
1797
+ C: {};
1798
+ M: {};
1799
+ Defaults: {};
1800
+ }, Readonly<{
1801
+ rowData: any[];
1802
+ columnDefs: ColDef[];
1803
+ theme?: string;
1804
+ pagination?: boolean;
1805
+ checkbox?: boolean;
1806
+ rowNumbers?: boolean;
1807
+ actionButtons?: ActionButton[];
1808
+ autoDetectDarkMode?: boolean;
1809
+ summaryColumn?: boolean;
1810
+ hiddenColumn?: boolean;
1811
+ enableGrouping?: boolean;
1812
+ enablePivot?: boolean;
1813
+ enableExcelExport?: boolean;
1814
+ enableTreeData?: boolean;
1815
+ getDataPath?: (data: any) => (string | number)[];
1816
+ autoGroupColumnDef?: ColDef;
1817
+ selectedRows?: any[];
1818
+ columnHover?: boolean;
1819
+ enableColumnsToolPanel?: boolean;
1820
+ statusBar?: boolean;
1821
+ }> & Readonly<{
1822
+ onRowClicked?: ((event: RowClickedEvent<any, any>) => any) | undefined;
1823
+ onRowDoubleClicked?: ((event: RowDoubleClickedEvent<any, any>) => any) | undefined;
1824
+ onCellClicked?: ((event: CellClickedEvent<any, any, any>) => any) | undefined;
1825
+ onSelectionChanged?: ((event: SelectionChangedEvent<any, any>) => any) | undefined;
1826
+ onCellValueChanged?: ((event: CellValueChangedEvent<any, any, any>) => any) | undefined;
1827
+ onGridReady?: ((event: GridReadyEvent<any, any>) => any) | undefined;
1828
+ "onUpdate:selectedRows"?: ((rows: any[]) => any) | undefined;
1829
+ }>, {
1830
+ gridApi: Ref<any, any>;
1831
+ gridColumnApi: Ref<any, any>;
1832
+ exportToExcel: () => void;
1833
+ }, {}, {}, {}, {
1834
+ theme: string;
1835
+ pagination: boolean;
1836
+ checkbox: boolean;
1837
+ rowNumbers: boolean;
1838
+ actionButtons: ActionButton[];
1839
+ autoDetectDarkMode: boolean;
1840
+ summaryColumn: boolean;
1841
+ hiddenColumn: boolean;
1842
+ enableGrouping: boolean;
1843
+ enablePivot: boolean;
1844
+ enableExcelExport: boolean;
1845
+ enableTreeData: boolean;
1846
+ getDataPath: (data: any) => (string | number)[];
1847
+ autoGroupColumnDef: ColDef;
1848
+ selectedRows: any[];
1849
+ columnHover: boolean;
1850
+ enableColumnsToolPanel: boolean;
1851
+ statusBar: boolean;
1852
+ }> | null;
1853
+ }, HTMLDivElement>;
1854
+
1855
+ export declare const ExampleTabMappingPage: DefineComponent< {}, {
1856
+ masterGridRef: Ref<any, any>;
1857
+ mappingMasterGridRef: Ref<any, any>;
1858
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
1859
+ masterGridRef: CreateComponentPublicInstanceWithMixins<Readonly<{
1860
+ rowData: any[];
1861
+ columnDefs: ColDef[];
1862
+ theme?: string;
1863
+ pagination?: boolean;
1864
+ checkbox?: boolean;
1865
+ rowNumbers?: boolean;
1866
+ actionButtons?: ActionButton[];
1867
+ autoDetectDarkMode?: boolean;
1868
+ summaryColumn?: boolean;
1869
+ hiddenColumn?: boolean;
1870
+ enableGrouping?: boolean;
1871
+ enablePivot?: boolean;
1872
+ enableExcelExport?: boolean;
1873
+ enableTreeData?: boolean;
1874
+ getDataPath?: (data: any) => (string | number)[];
1875
+ autoGroupColumnDef?: ColDef;
1876
+ selectedRows?: any[];
1877
+ columnHover?: boolean;
1878
+ enableColumnsToolPanel?: boolean;
1879
+ statusBar?: boolean;
1880
+ }> & Readonly<{
1881
+ onRowClicked?: ((event: RowClickedEvent<any, any>) => any) | undefined;
1882
+ onRowDoubleClicked?: ((event: RowDoubleClickedEvent<any, any>) => any) | undefined;
1883
+ onCellClicked?: ((event: CellClickedEvent<any, any, any>) => any) | undefined;
1884
+ onSelectionChanged?: ((event: SelectionChangedEvent<any, any>) => any) | undefined;
1885
+ onCellValueChanged?: ((event: CellValueChangedEvent<any, any, any>) => any) | undefined;
1886
+ onGridReady?: ((event: GridReadyEvent<any, any>) => any) | undefined;
1887
+ "onUpdate:selectedRows"?: ((rows: any[]) => any) | undefined;
1888
+ }>, {
1889
+ gridApi: Ref<any, any>;
1890
+ gridColumnApi: Ref<any, any>;
1891
+ exportToExcel: () => void;
1892
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1893
+ rowClicked: (event: RowClickedEvent<any, any>) => any;
1894
+ rowDoubleClicked: (event: RowDoubleClickedEvent<any, any>) => any;
1895
+ cellClicked: (event: CellClickedEvent<any, any, any>) => any;
1896
+ selectionChanged: (event: SelectionChangedEvent<any, any>) => any;
1897
+ cellValueChanged: (event: CellValueChangedEvent<any, any, any>) => any;
1898
+ gridReady: (event: GridReadyEvent<any, any>) => any;
1899
+ "update:selectedRows": (rows: any[]) => any;
1900
+ }, PublicProps, {
1901
+ theme: string;
1902
+ pagination: boolean;
1903
+ checkbox: boolean;
1904
+ rowNumbers: boolean;
1905
+ actionButtons: ActionButton[];
1906
+ autoDetectDarkMode: boolean;
1907
+ summaryColumn: boolean;
1908
+ hiddenColumn: boolean;
1909
+ enableGrouping: boolean;
1910
+ enablePivot: boolean;
1911
+ enableExcelExport: boolean;
1912
+ enableTreeData: boolean;
1913
+ getDataPath: (data: any) => (string | number)[];
1914
+ autoGroupColumnDef: ColDef;
1915
+ selectedRows: any[];
1916
+ columnHover: boolean;
1917
+ enableColumnsToolPanel: boolean;
1918
+ statusBar: boolean;
1919
+ }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
1920
+ P: {};
1921
+ B: {};
1922
+ D: {};
1923
+ C: {};
1924
+ M: {};
1925
+ Defaults: {};
1926
+ }, Readonly<{
1927
+ rowData: any[];
1928
+ columnDefs: ColDef[];
1929
+ theme?: string;
1930
+ pagination?: boolean;
1931
+ checkbox?: boolean;
1932
+ rowNumbers?: boolean;
1933
+ actionButtons?: ActionButton[];
1934
+ autoDetectDarkMode?: boolean;
1935
+ summaryColumn?: boolean;
1936
+ hiddenColumn?: boolean;
1937
+ enableGrouping?: boolean;
1938
+ enablePivot?: boolean;
1939
+ enableExcelExport?: boolean;
1940
+ enableTreeData?: boolean;
1941
+ getDataPath?: (data: any) => (string | number)[];
1942
+ autoGroupColumnDef?: ColDef;
1943
+ selectedRows?: any[];
1944
+ columnHover?: boolean;
1945
+ enableColumnsToolPanel?: boolean;
1946
+ statusBar?: boolean;
1947
+ }> & Readonly<{
1948
+ onRowClicked?: ((event: RowClickedEvent<any, any>) => any) | undefined;
1949
+ onRowDoubleClicked?: ((event: RowDoubleClickedEvent<any, any>) => any) | undefined;
1950
+ onCellClicked?: ((event: CellClickedEvent<any, any, any>) => any) | undefined;
1951
+ onSelectionChanged?: ((event: SelectionChangedEvent<any, any>) => any) | undefined;
1952
+ onCellValueChanged?: ((event: CellValueChangedEvent<any, any, any>) => any) | undefined;
1953
+ onGridReady?: ((event: GridReadyEvent<any, any>) => any) | undefined;
1954
+ "onUpdate:selectedRows"?: ((rows: any[]) => any) | undefined;
1955
+ }>, {
1956
+ gridApi: Ref<any, any>;
1957
+ gridColumnApi: Ref<any, any>;
1958
+ exportToExcel: () => void;
1959
+ }, {}, {}, {}, {
1960
+ theme: string;
1961
+ pagination: boolean;
1962
+ checkbox: boolean;
1963
+ rowNumbers: boolean;
1964
+ actionButtons: ActionButton[];
1965
+ autoDetectDarkMode: boolean;
1966
+ summaryColumn: boolean;
1967
+ hiddenColumn: boolean;
1968
+ enableGrouping: boolean;
1969
+ enablePivot: boolean;
1970
+ enableExcelExport: boolean;
1971
+ enableTreeData: boolean;
1972
+ getDataPath: (data: any) => (string | number)[];
1973
+ autoGroupColumnDef: ColDef;
1974
+ selectedRows: any[];
1975
+ columnHover: boolean;
1976
+ enableColumnsToolPanel: boolean;
1977
+ statusBar: boolean;
1978
+ }> | null;
1979
+ mappingMasterGridRef: CreateComponentPublicInstanceWithMixins<Readonly<{
1980
+ rowData: any[];
1981
+ columnDefs: ColDef[];
1982
+ theme?: string;
1983
+ pagination?: boolean;
1984
+ checkbox?: boolean;
1985
+ rowNumbers?: boolean;
1986
+ actionButtons?: ActionButton[];
1987
+ autoDetectDarkMode?: boolean;
1988
+ summaryColumn?: boolean;
1989
+ hiddenColumn?: boolean;
1990
+ enableGrouping?: boolean;
1991
+ enablePivot?: boolean;
1992
+ enableExcelExport?: boolean;
1993
+ enableTreeData?: boolean;
1994
+ getDataPath?: (data: any) => (string | number)[];
1995
+ autoGroupColumnDef?: ColDef;
1996
+ selectedRows?: any[];
1997
+ columnHover?: boolean;
1998
+ enableColumnsToolPanel?: boolean;
1999
+ statusBar?: boolean;
2000
+ }> & Readonly<{
2001
+ onRowClicked?: ((event: RowClickedEvent<any, any>) => any) | undefined;
2002
+ onRowDoubleClicked?: ((event: RowDoubleClickedEvent<any, any>) => any) | undefined;
2003
+ onCellClicked?: ((event: CellClickedEvent<any, any, any>) => any) | undefined;
2004
+ onSelectionChanged?: ((event: SelectionChangedEvent<any, any>) => any) | undefined;
2005
+ onCellValueChanged?: ((event: CellValueChangedEvent<any, any, any>) => any) | undefined;
2006
+ onGridReady?: ((event: GridReadyEvent<any, any>) => any) | undefined;
2007
+ "onUpdate:selectedRows"?: ((rows: any[]) => any) | undefined;
2008
+ }>, {
2009
+ gridApi: Ref<any, any>;
2010
+ gridColumnApi: Ref<any, any>;
2011
+ exportToExcel: () => void;
2012
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2013
+ rowClicked: (event: RowClickedEvent<any, any>) => any;
2014
+ rowDoubleClicked: (event: RowDoubleClickedEvent<any, any>) => any;
2015
+ cellClicked: (event: CellClickedEvent<any, any, any>) => any;
2016
+ selectionChanged: (event: SelectionChangedEvent<any, any>) => any;
2017
+ cellValueChanged: (event: CellValueChangedEvent<any, any, any>) => any;
2018
+ gridReady: (event: GridReadyEvent<any, any>) => any;
2019
+ "update:selectedRows": (rows: any[]) => any;
2020
+ }, PublicProps, {
2021
+ theme: string;
2022
+ pagination: boolean;
2023
+ checkbox: boolean;
2024
+ rowNumbers: boolean;
2025
+ actionButtons: ActionButton[];
2026
+ autoDetectDarkMode: boolean;
2027
+ summaryColumn: boolean;
2028
+ hiddenColumn: boolean;
2029
+ enableGrouping: boolean;
2030
+ enablePivot: boolean;
2031
+ enableExcelExport: boolean;
2032
+ enableTreeData: boolean;
2033
+ getDataPath: (data: any) => (string | number)[];
2034
+ autoGroupColumnDef: ColDef;
2035
+ selectedRows: any[];
2036
+ columnHover: boolean;
2037
+ enableColumnsToolPanel: boolean;
2038
+ statusBar: boolean;
2039
+ }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
2040
+ P: {};
2041
+ B: {};
2042
+ D: {};
2043
+ C: {};
2044
+ M: {};
2045
+ Defaults: {};
2046
+ }, Readonly<{
2047
+ rowData: any[];
2048
+ columnDefs: ColDef[];
2049
+ theme?: string;
2050
+ pagination?: boolean;
2051
+ checkbox?: boolean;
2052
+ rowNumbers?: boolean;
2053
+ actionButtons?: ActionButton[];
2054
+ autoDetectDarkMode?: boolean;
2055
+ summaryColumn?: boolean;
2056
+ hiddenColumn?: boolean;
2057
+ enableGrouping?: boolean;
2058
+ enablePivot?: boolean;
2059
+ enableExcelExport?: boolean;
2060
+ enableTreeData?: boolean;
2061
+ getDataPath?: (data: any) => (string | number)[];
2062
+ autoGroupColumnDef?: ColDef;
2063
+ selectedRows?: any[];
2064
+ columnHover?: boolean;
2065
+ enableColumnsToolPanel?: boolean;
2066
+ statusBar?: boolean;
2067
+ }> & Readonly<{
2068
+ onRowClicked?: ((event: RowClickedEvent<any, any>) => any) | undefined;
2069
+ onRowDoubleClicked?: ((event: RowDoubleClickedEvent<any, any>) => any) | undefined;
2070
+ onCellClicked?: ((event: CellClickedEvent<any, any, any>) => any) | undefined;
2071
+ onSelectionChanged?: ((event: SelectionChangedEvent<any, any>) => any) | undefined;
2072
+ onCellValueChanged?: ((event: CellValueChangedEvent<any, any, any>) => any) | undefined;
2073
+ onGridReady?: ((event: GridReadyEvent<any, any>) => any) | undefined;
2074
+ "onUpdate:selectedRows"?: ((rows: any[]) => any) | undefined;
2075
+ }>, {
2076
+ gridApi: Ref<any, any>;
2077
+ gridColumnApi: Ref<any, any>;
2078
+ exportToExcel: () => void;
2079
+ }, {}, {}, {}, {
2080
+ theme: string;
2081
+ pagination: boolean;
2082
+ checkbox: boolean;
2083
+ rowNumbers: boolean;
2084
+ actionButtons: ActionButton[];
2085
+ autoDetectDarkMode: boolean;
2086
+ summaryColumn: boolean;
2087
+ hiddenColumn: boolean;
2088
+ enableGrouping: boolean;
2089
+ enablePivot: boolean;
2090
+ enableExcelExport: boolean;
2091
+ enableTreeData: boolean;
2092
+ getDataPath: (data: any) => (string | number)[];
2093
+ autoGroupColumnDef: ColDef;
2094
+ selectedRows: any[];
2095
+ columnHover: boolean;
2096
+ enableColumnsToolPanel: boolean;
2097
+ statusBar: boolean;
2098
+ }> | null;
2099
+ unmappedGridRef: CreateComponentPublicInstanceWithMixins<Readonly<{
2100
+ rowData: any[];
2101
+ columnDefs: ColDef[];
2102
+ theme?: string;
2103
+ pagination?: boolean;
2104
+ checkbox?: boolean;
2105
+ rowNumbers?: boolean;
2106
+ actionButtons?: ActionButton[];
2107
+ autoDetectDarkMode?: boolean;
2108
+ summaryColumn?: boolean;
2109
+ hiddenColumn?: boolean;
2110
+ enableGrouping?: boolean;
2111
+ enablePivot?: boolean;
2112
+ enableExcelExport?: boolean;
2113
+ enableTreeData?: boolean;
2114
+ getDataPath?: (data: any) => (string | number)[];
2115
+ autoGroupColumnDef?: ColDef;
2116
+ selectedRows?: any[];
2117
+ columnHover?: boolean;
2118
+ enableColumnsToolPanel?: boolean;
2119
+ statusBar?: boolean;
2120
+ }> & Readonly<{
2121
+ onRowClicked?: ((event: RowClickedEvent<any, any>) => any) | undefined;
2122
+ onRowDoubleClicked?: ((event: RowDoubleClickedEvent<any, any>) => any) | undefined;
2123
+ onCellClicked?: ((event: CellClickedEvent<any, any, any>) => any) | undefined;
2124
+ onSelectionChanged?: ((event: SelectionChangedEvent<any, any>) => any) | undefined;
2125
+ onCellValueChanged?: ((event: CellValueChangedEvent<any, any, any>) => any) | undefined;
2126
+ onGridReady?: ((event: GridReadyEvent<any, any>) => any) | undefined;
2127
+ "onUpdate:selectedRows"?: ((rows: any[]) => any) | undefined;
2128
+ }>, {
2129
+ gridApi: Ref<any, any>;
2130
+ gridColumnApi: Ref<any, any>;
2131
+ exportToExcel: () => void;
2132
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2133
+ rowClicked: (event: RowClickedEvent<any, any>) => any;
2134
+ rowDoubleClicked: (event: RowDoubleClickedEvent<any, any>) => any;
2135
+ cellClicked: (event: CellClickedEvent<any, any, any>) => any;
2136
+ selectionChanged: (event: SelectionChangedEvent<any, any>) => any;
2137
+ cellValueChanged: (event: CellValueChangedEvent<any, any, any>) => any;
2138
+ gridReady: (event: GridReadyEvent<any, any>) => any;
2139
+ "update:selectedRows": (rows: any[]) => any;
2140
+ }, PublicProps, {
2141
+ theme: string;
2142
+ pagination: boolean;
2143
+ checkbox: boolean;
2144
+ rowNumbers: boolean;
2145
+ actionButtons: ActionButton[];
2146
+ autoDetectDarkMode: boolean;
2147
+ summaryColumn: boolean;
2148
+ hiddenColumn: boolean;
2149
+ enableGrouping: boolean;
2150
+ enablePivot: boolean;
2151
+ enableExcelExport: boolean;
2152
+ enableTreeData: boolean;
2153
+ getDataPath: (data: any) => (string | number)[];
2154
+ autoGroupColumnDef: ColDef;
2155
+ selectedRows: any[];
2156
+ columnHover: boolean;
2157
+ enableColumnsToolPanel: boolean;
2158
+ statusBar: boolean;
2159
+ }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
2160
+ P: {};
2161
+ B: {};
2162
+ D: {};
2163
+ C: {};
2164
+ M: {};
2165
+ Defaults: {};
2166
+ }, Readonly<{
2167
+ rowData: any[];
2168
+ columnDefs: ColDef[];
2169
+ theme?: string;
2170
+ pagination?: boolean;
2171
+ checkbox?: boolean;
2172
+ rowNumbers?: boolean;
2173
+ actionButtons?: ActionButton[];
2174
+ autoDetectDarkMode?: boolean;
2175
+ summaryColumn?: boolean;
2176
+ hiddenColumn?: boolean;
2177
+ enableGrouping?: boolean;
2178
+ enablePivot?: boolean;
2179
+ enableExcelExport?: boolean;
2180
+ enableTreeData?: boolean;
2181
+ getDataPath?: (data: any) => (string | number)[];
2182
+ autoGroupColumnDef?: ColDef;
2183
+ selectedRows?: any[];
2184
+ columnHover?: boolean;
2185
+ enableColumnsToolPanel?: boolean;
2186
+ statusBar?: boolean;
2187
+ }> & Readonly<{
2188
+ onRowClicked?: ((event: RowClickedEvent<any, any>) => any) | undefined;
2189
+ onRowDoubleClicked?: ((event: RowDoubleClickedEvent<any, any>) => any) | undefined;
2190
+ onCellClicked?: ((event: CellClickedEvent<any, any, any>) => any) | undefined;
2191
+ onSelectionChanged?: ((event: SelectionChangedEvent<any, any>) => any) | undefined;
2192
+ onCellValueChanged?: ((event: CellValueChangedEvent<any, any, any>) => any) | undefined;
2193
+ onGridReady?: ((event: GridReadyEvent<any, any>) => any) | undefined;
2194
+ "onUpdate:selectedRows"?: ((rows: any[]) => any) | undefined;
2195
+ }>, {
2196
+ gridApi: Ref<any, any>;
2197
+ gridColumnApi: Ref<any, any>;
2198
+ exportToExcel: () => void;
2199
+ }, {}, {}, {}, {
2200
+ theme: string;
2201
+ pagination: boolean;
2202
+ checkbox: boolean;
2203
+ rowNumbers: boolean;
2204
+ actionButtons: ActionButton[];
2205
+ autoDetectDarkMode: boolean;
2206
+ summaryColumn: boolean;
2207
+ hiddenColumn: boolean;
2208
+ enableGrouping: boolean;
2209
+ enablePivot: boolean;
2210
+ enableExcelExport: boolean;
2211
+ enableTreeData: boolean;
2212
+ getDataPath: (data: any) => (string | number)[];
2213
+ autoGroupColumnDef: ColDef;
2214
+ selectedRows: any[];
2215
+ columnHover: boolean;
2216
+ enableColumnsToolPanel: boolean;
2217
+ statusBar: boolean;
2218
+ }> | null;
2219
+ mappedGridRef: CreateComponentPublicInstanceWithMixins<Readonly<{
2220
+ rowData: any[];
2221
+ columnDefs: ColDef[];
2222
+ theme?: string;
2223
+ pagination?: boolean;
2224
+ checkbox?: boolean;
2225
+ rowNumbers?: boolean;
2226
+ actionButtons?: ActionButton[];
2227
+ autoDetectDarkMode?: boolean;
2228
+ summaryColumn?: boolean;
2229
+ hiddenColumn?: boolean;
2230
+ enableGrouping?: boolean;
2231
+ enablePivot?: boolean;
2232
+ enableExcelExport?: boolean;
2233
+ enableTreeData?: boolean;
2234
+ getDataPath?: (data: any) => (string | number)[];
2235
+ autoGroupColumnDef?: ColDef;
2236
+ selectedRows?: any[];
2237
+ columnHover?: boolean;
2238
+ enableColumnsToolPanel?: boolean;
2239
+ statusBar?: boolean;
2240
+ }> & Readonly<{
2241
+ onRowClicked?: ((event: RowClickedEvent<any, any>) => any) | undefined;
2242
+ onRowDoubleClicked?: ((event: RowDoubleClickedEvent<any, any>) => any) | undefined;
2243
+ onCellClicked?: ((event: CellClickedEvent<any, any, any>) => any) | undefined;
2244
+ onSelectionChanged?: ((event: SelectionChangedEvent<any, any>) => any) | undefined;
2245
+ onCellValueChanged?: ((event: CellValueChangedEvent<any, any, any>) => any) | undefined;
2246
+ onGridReady?: ((event: GridReadyEvent<any, any>) => any) | undefined;
2247
+ "onUpdate:selectedRows"?: ((rows: any[]) => any) | undefined;
2248
+ }>, {
2249
+ gridApi: Ref<any, any>;
2250
+ gridColumnApi: Ref<any, any>;
2251
+ exportToExcel: () => void;
2252
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2253
+ rowClicked: (event: RowClickedEvent<any, any>) => any;
2254
+ rowDoubleClicked: (event: RowDoubleClickedEvent<any, any>) => any;
2255
+ cellClicked: (event: CellClickedEvent<any, any, any>) => any;
2256
+ selectionChanged: (event: SelectionChangedEvent<any, any>) => any;
2257
+ cellValueChanged: (event: CellValueChangedEvent<any, any, any>) => any;
2258
+ gridReady: (event: GridReadyEvent<any, any>) => any;
2259
+ "update:selectedRows": (rows: any[]) => any;
2260
+ }, PublicProps, {
2261
+ theme: string;
2262
+ pagination: boolean;
2263
+ checkbox: boolean;
2264
+ rowNumbers: boolean;
2265
+ actionButtons: ActionButton[];
2266
+ autoDetectDarkMode: boolean;
2267
+ summaryColumn: boolean;
2268
+ hiddenColumn: boolean;
2269
+ enableGrouping: boolean;
2270
+ enablePivot: boolean;
2271
+ enableExcelExport: boolean;
2272
+ enableTreeData: boolean;
2273
+ getDataPath: (data: any) => (string | number)[];
2274
+ autoGroupColumnDef: ColDef;
2275
+ selectedRows: any[];
2276
+ columnHover: boolean;
2277
+ enableColumnsToolPanel: boolean;
2278
+ statusBar: boolean;
2279
+ }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
2280
+ P: {};
2281
+ B: {};
2282
+ D: {};
2283
+ C: {};
2284
+ M: {};
2285
+ Defaults: {};
2286
+ }, Readonly<{
2287
+ rowData: any[];
2288
+ columnDefs: ColDef[];
2289
+ theme?: string;
2290
+ pagination?: boolean;
2291
+ checkbox?: boolean;
2292
+ rowNumbers?: boolean;
2293
+ actionButtons?: ActionButton[];
2294
+ autoDetectDarkMode?: boolean;
2295
+ summaryColumn?: boolean;
2296
+ hiddenColumn?: boolean;
2297
+ enableGrouping?: boolean;
2298
+ enablePivot?: boolean;
2299
+ enableExcelExport?: boolean;
2300
+ enableTreeData?: boolean;
2301
+ getDataPath?: (data: any) => (string | number)[];
2302
+ autoGroupColumnDef?: ColDef;
2303
+ selectedRows?: any[];
2304
+ columnHover?: boolean;
2305
+ enableColumnsToolPanel?: boolean;
2306
+ statusBar?: boolean;
2307
+ }> & Readonly<{
2308
+ onRowClicked?: ((event: RowClickedEvent<any, any>) => any) | undefined;
2309
+ onRowDoubleClicked?: ((event: RowDoubleClickedEvent<any, any>) => any) | undefined;
2310
+ onCellClicked?: ((event: CellClickedEvent<any, any, any>) => any) | undefined;
2311
+ onSelectionChanged?: ((event: SelectionChangedEvent<any, any>) => any) | undefined;
2312
+ onCellValueChanged?: ((event: CellValueChangedEvent<any, any, any>) => any) | undefined;
2313
+ onGridReady?: ((event: GridReadyEvent<any, any>) => any) | undefined;
2314
+ "onUpdate:selectedRows"?: ((rows: any[]) => any) | undefined;
2315
+ }>, {
2316
+ gridApi: Ref<any, any>;
2317
+ gridColumnApi: Ref<any, any>;
2318
+ exportToExcel: () => void;
2319
+ }, {}, {}, {}, {
2320
+ theme: string;
2321
+ pagination: boolean;
2322
+ checkbox: boolean;
2323
+ rowNumbers: boolean;
2324
+ actionButtons: ActionButton[];
2325
+ autoDetectDarkMode: boolean;
2326
+ summaryColumn: boolean;
2327
+ hiddenColumn: boolean;
2328
+ enableGrouping: boolean;
2329
+ enablePivot: boolean;
2330
+ enableExcelExport: boolean;
2331
+ enableTreeData: boolean;
2332
+ getDataPath: (data: any) => (string | number)[];
2333
+ autoGroupColumnDef: ColDef;
2334
+ selectedRows: any[];
2335
+ columnHover: boolean;
2336
+ enableColumnsToolPanel: boolean;
2337
+ statusBar: boolean;
2338
+ }> | null;
2339
+ }, HTMLDivElement>;
2340
+
2341
+ /** 필터 설정 타입 */
2342
+ declare interface FilterDisplayItem {
2343
+ /** 표시할 라벨 */
2344
+ label: string;
2345
+ /** 값을 표시용 문자열로 변환 (예: combo value -> label) */
2346
+ displayValue?: (value: unknown) => string;
2347
+ }
2348
+
2349
+ declare interface FormSchema {
2350
+ id: string;
2351
+ name: string;
2352
+ type: 'simple' | 'sectioned' | 'wizard' | 'conditional';
2353
+ fields?: DynamicFormField[];
2354
+ sections?: FormSection[];
2355
+ steps?: FormStep[];
2356
+ layout?: {
2357
+ columns?: number;
2358
+ };
2359
+ globalStyle?: GlobalStyle;
2360
+ events?: {
2361
+ onSubmit?: (values: Record<string, any>) => void;
2362
+ onChange?: (field: string, value: any) => void;
2363
+ onError?: (errors: any) => void;
2364
+ };
2365
+ }
2366
+
2367
+ declare interface FormSection {
2368
+ id: string;
2369
+ title: string;
2370
+ collapsible: boolean;
2371
+ defaultCollapsed: boolean;
2372
+ fields: DynamicFormField[];
2373
+ }
2374
+
2375
+ declare interface FormStep {
2376
+ id: string;
2377
+ title: string;
2378
+ description?: string;
2379
+ fields: DynamicFormField[];
2380
+ }
2381
+
2382
+ declare interface GlobalStyle {
2383
+ colCount?: 'row-1' | 'row' | 'row-3' | 'row-4' | 'row-5' | 'row-6' | 'row-7' | 'row-8';
2384
+ labelPosition?: 'horizontal' | 'vertical';
2385
+ labelAlign?: 'left' | 'middle' | 'right';
2386
+ styleType?: ControlStyleType;
2387
+ controlSize?: 'sm' | 'md' | 'lg';
2388
+ variant?: 'default' | 'outline' | 'secondary' | 'destructive' | 'ghost';
2389
+ }
2390
+
2391
+ declare interface GroupedOption {
2392
+ groupLabel: string;
2393
+ options: Option_4[];
1699
2394
  }
1700
2395
 
1701
2396
  declare function handleError(errs: any): void;
@@ -1734,9 +2429,9 @@ export declare type HeaderNavItem = {
1734
2429
 
1735
2430
  declare type IconName = BaseIconName | CustomIconName;
1736
2431
 
1737
- export declare const JAccordion: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
2432
+ export declare const JAccordion: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
1738
2433
 
1739
- export declare const JAlert: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
2434
+ export declare const JAlert: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
1740
2435
 
1741
2436
  export declare const JAvatar: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{}>, {
1742
2437
  size: Size;
@@ -1748,9 +2443,9 @@ fallback: string;
1748
2443
 
1749
2444
  export declare const JBadge: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
1750
2445
 
1751
- export declare const JBreadcrumb: DefineComponent<__VLS_Props_31, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2446
+ export declare const JBreadcrumb: DefineComponent<__VLS_Props_32, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1752
2447
  itemClick: (item: BreadcrumbItem, index: number) => any;
1753
- }, string, PublicProps, Readonly<__VLS_Props_31> & Readonly<{
2448
+ }, string, PublicProps, Readonly<__VLS_Props_32> & Readonly<{
1754
2449
  onItemClick?: ((item: BreadcrumbItem, index: number) => any) | undefined;
1755
2450
  }>, {
1756
2451
  styletype: StyleType_23;
@@ -1759,9 +2454,9 @@ separator: string;
1759
2454
 
1760
2455
  export declare const JButton: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
1761
2456
 
1762
- export declare const JButtonGroup: __VLS_WithTemplateSlots_15<typeof __VLS_component_15, __VLS_TemplateResult_15["slots"]>;
2457
+ export declare const JButtonGroup: __VLS_WithTemplateSlots_16<typeof __VLS_component_16, __VLS_TemplateResult_16["slots"]>;
1763
2458
 
1764
- export declare const JCard: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
2459
+ export declare const JCard: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
1765
2460
 
1766
2461
  export declare const JCheckbox: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1767
2462
  "update:modelValue": (value: string) => any;
@@ -1795,7 +2490,7 @@ styletype: StyleType_5;
1795
2490
  options: Option_2[];
1796
2491
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
1797
2492
 
1798
- export declare const JContextMenu: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
2493
+ export declare const JContextMenu: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
1799
2494
 
1800
2495
  /**
1801
2496
  * JContextMenu Props 인터페이스
@@ -1829,7 +2524,7 @@ orientation: "horizontal" | "vertical";
1829
2524
  styletype: StyleType_9;
1830
2525
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
1831
2526
 
1832
- export declare const JDynamicForm: DefineComponent<__VLS_Props_32, {
2527
+ export declare const JDynamicForm: DefineComponent<__VLS_Props_33, {
1833
2528
  formState: Record<string, any>;
1834
2529
  submit: typeof handleSubmit;
1835
2530
  reset: typeof reset;
@@ -1839,14 +2534,14 @@ handleError: typeof handleError;
1839
2534
  error: (...args: any[]) => void;
1840
2535
  submit: (...args: any[]) => void;
1841
2536
  change: (...args: any[]) => void;
1842
- }, string, PublicProps, Readonly<__VLS_Props_32> & Readonly<{
2537
+ }, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{
1843
2538
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1844
2539
  onError?: ((...args: any[]) => any) | undefined;
1845
2540
  onSubmit?: ((...args: any[]) => any) | undefined;
1846
2541
  onChange?: ((...args: any[]) => any) | undefined;
1847
2542
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLFormElement>;
1848
2543
 
1849
- export declare const JDynamicTabs: __VLS_WithTemplateSlots_16<typeof __VLS_component_16, __VLS_TemplateResult_16["slots"]>;
2544
+ export declare const JDynamicTabs: __VLS_WithTemplateSlots_17<typeof __VLS_component_17, __VLS_TemplateResult_17["slots"]>;
1850
2545
 
1851
2546
  /**
1852
2547
  * JDynamicTabs Props 인터페이스 (organisms)
@@ -1886,17 +2581,19 @@ readonly: boolean;
1886
2581
  theme: "light" | "dark";
1887
2582
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1888
2583
 
1889
- export declare const JFilterBar: __VLS_WithTemplateSlots_19<typeof __VLS_component_19, __VLS_TemplateResult_19["slots"]>;
2584
+ export declare const JFilterBar: __VLS_WithTemplateSlots_20<typeof __VLS_component_20, __VLS_TemplateResult_20["slots"]>;
1890
2585
 
1891
2586
  declare interface JFilterBarProps {
2587
+ /** 필터바 타이틀 */
2588
+ title?: string;
1892
2589
  /** 필터 접힘 상태 (v-model 지원) */
1893
2590
  collapsed?: boolean;
1894
2591
  /** 접기/펼치기 가능 여부. false면 토글 버튼 숨김 & 필터 항상 표시 */
1895
2592
  collapsible?: boolean;
1896
2593
  /** 필터 값 객체 (v-model:filterValues 지원) */
1897
2594
  filterValues?: Record<string, unknown>;
1898
- /** 필터 설정 (label, displayValue 등) */
1899
- filterConfig?: Record<string, FilterConfigItem>;
2595
+ /** 필터 표시 설정 (label, displayValue 등) */
2596
+ filterDisplay?: Record<string, FilterDisplayItem>;
1900
2597
  /** 초기화 버튼 표시 여부 */
1901
2598
  showResetButton?: boolean;
1902
2599
  /** 조회 버튼 표시 여부 */
@@ -1907,14 +2604,14 @@ declare interface JFilterBarProps {
1907
2604
  searchButtonText?: string;
1908
2605
  }
1909
2606
 
1910
- export declare const JFormField: DefineComponent<__VLS_Props_25, {
2607
+ export declare const JFormField: DefineComponent<__VLS_Props_26, {
1911
2608
  clearError: () => void;
1912
2609
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1913
2610
  "update:modelValue": (value: any) => any;
1914
2611
  change: (value: any) => any;
1915
2612
  focus: (event: FocusEvent) => any;
1916
2613
  blur: (event: FocusEvent) => any;
1917
- }, string, PublicProps, Readonly<__VLS_Props_25> & Readonly<{
2614
+ }, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{
1918
2615
  "onUpdate:modelValue"?: ((value: any) => any) | undefined;
1919
2616
  onChange?: ((value: any) => any) | undefined;
1920
2617
  onFocus?: ((event: FocusEvent) => any) | undefined;
@@ -1927,7 +2624,7 @@ labelWidth: string;
1927
2624
  radioDirection: "horizontal" | "vertical";
1928
2625
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1929
2626
 
1930
- export declare const JFormModal: __VLS_WithTemplateSlots_18<typeof __VLS_component_18, __VLS_TemplateResult_18["slots"]>;
2627
+ export declare const JFormModal: __VLS_WithTemplateSlots_19<typeof __VLS_component_19, __VLS_TemplateResult_19["slots"]>;
1931
2628
 
1932
2629
  declare interface JFormModalProps {
1933
2630
  open: boolean;
@@ -1967,6 +2664,9 @@ onGridReady?: ((event: GridReadyEvent<any, any>) => any) | undefined;
1967
2664
  theme: string;
1968
2665
  pagination: boolean;
1969
2666
  checkbox: boolean;
2667
+ rowNumbers: boolean;
2668
+ actionButtons: ActionButton[];
2669
+ autoDetectDarkMode: boolean;
1970
2670
  summaryColumn: boolean;
1971
2671
  hiddenColumn: boolean;
1972
2672
  enableGrouping: boolean;
@@ -1976,14 +2676,17 @@ enableTreeData: boolean;
1976
2676
  getDataPath: (data: any) => (string | number)[];
1977
2677
  autoGroupColumnDef: ColDef;
1978
2678
  selectedRows: any[];
2679
+ columnHover: boolean;
2680
+ enableColumnsToolPanel: boolean;
2681
+ statusBar: boolean;
1979
2682
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1980
2683
 
1981
- export declare const JGroupCombo: DefineComponent<__VLS_Props_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2684
+ export declare const JGroupCombo: DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1982
2685
  "update:modelValue": (value: string | number) => any;
1983
2686
  change: (value: string | number) => any;
1984
2687
  focus: (event: FocusEvent) => any;
1985
2688
  blur: (event: FocusEvent) => any;
1986
- }, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{
2689
+ }, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{
1987
2690
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
1988
2691
  onChange?: ((value: string | number) => any) | undefined;
1989
2692
  onFocus?: ((event: FocusEvent) => any) | undefined;
@@ -1996,7 +2699,7 @@ styletype: StyleType_21;
1996
2699
  groupedOptions: GroupedOption[];
1997
2700
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
1998
2701
 
1999
- export declare const JHeader: __VLS_WithTemplateSlots_20<typeof __VLS_component_20, __VLS_TemplateResult_20["slots"]>;
2702
+ export declare const JHeader: __VLS_WithTemplateSlots_21<typeof __VLS_component_21, __VLS_TemplateResult_21["slots"]>;
2000
2703
 
2001
2704
  export declare const JIcon: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {
2002
2705
  size: SizeType_3;
@@ -2026,15 +2729,15 @@ export declare const JKbd: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, _
2026
2729
 
2027
2730
  export declare const JLabel: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
2028
2731
 
2029
- export declare const JLayout: __VLS_WithTemplateSlots_22<typeof __VLS_component_22, __VLS_TemplateResult_22["slots"]>;
2732
+ export declare const JLayout: __VLS_WithTemplateSlots_23<typeof __VLS_component_23, __VLS_TemplateResult_23["slots"]>;
2030
2733
 
2031
2734
  export { JLayoutAdvanced }
2032
2735
 
2033
- export declare const JLayoutSimple: __VLS_WithTemplateSlots_23<typeof __VLS_component_23, __VLS_TemplateResult_23["slots"]>;
2736
+ export declare const JLayoutSimple: __VLS_WithTemplateSlots_24<typeof __VLS_component_24, __VLS_TemplateResult_24["slots"]>;
2034
2737
 
2035
2738
  export declare const JLink: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
2036
2739
 
2037
- export declare const JModal: __VLS_WithTemplateSlots_17<typeof __VLS_component_17, __VLS_TemplateResult_17["slots"]>;
2740
+ export declare const JModal: __VLS_WithTemplateSlots_18<typeof __VLS_component_18, __VLS_TemplateResult_18["slots"]>;
2038
2741
 
2039
2742
  declare interface JModalProps {
2040
2743
  open: boolean;
@@ -2057,7 +2760,7 @@ declare interface JModalProps {
2057
2760
  disabled?: boolean;
2058
2761
  }
2059
2762
 
2060
- export declare const JPageContainer: __VLS_WithTemplateSlots_21<typeof __VLS_component_21, __VLS_TemplateResult_21["slots"]>;
2763
+ export declare const JPageContainer: __VLS_WithTemplateSlots_22<typeof __VLS_component_22, __VLS_TemplateResult_22["slots"]>;
2061
2764
 
2062
2765
  export declare const JPopover: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
2063
2766
 
@@ -2232,10 +2935,10 @@ declare interface JSearchPanelProps {
2232
2935
  collapsible?: boolean;
2233
2936
  }
2234
2937
 
2235
- export declare const JSidebarAdvanced: DefineComponent<__VLS_Props_35, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2938
+ export declare const JSidebarAdvanced: DefineComponent<__VLS_Props_36, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2236
2939
  menuClick: (event: MenuClickEvent) => any;
2237
2940
  favoriteChange: (menuKey: string | number | undefined, isFavorite: boolean) => any;
2238
- }, string, PublicProps, Readonly<__VLS_Props_35> & Readonly<{
2941
+ }, string, PublicProps, Readonly<__VLS_Props_36> & Readonly<{
2239
2942
  onMenuClick?: ((event: MenuClickEvent) => any) | undefined;
2240
2943
  onFavoriteChange?: ((menuKey: string | number | undefined, isFavorite: boolean) => any) | undefined;
2241
2944
  }>, {
@@ -2246,9 +2949,9 @@ permissions: MenuPermission[];
2246
2949
  favorites: (number | string)[];
2247
2950
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2248
2951
 
2249
- export declare const JSidebarSimple: DefineComponent<__VLS_Props_34, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2952
+ export declare const JSidebarSimple: DefineComponent<__VLS_Props_35, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2250
2953
  menuClick: (event: MenuClickEvent) => any;
2251
- }, string, PublicProps, Readonly<__VLS_Props_34> & Readonly<{
2954
+ }, string, PublicProps, Readonly<__VLS_Props_35> & Readonly<{
2252
2955
  onMenuClick?: ((event: MenuClickEvent) => any) | undefined;
2253
2956
  }>, {
2254
2957
  width: string;
@@ -2266,6 +2969,8 @@ thickness: number;
2266
2969
  labelPosition: LabelPosition;
2267
2970
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2268
2971
 
2972
+ export declare const JSplitter: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
2973
+
2269
2974
  export declare const JSwitch: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2270
2975
  "update:modelValue": (value: string) => any;
2271
2976
  change: (value: string) => any;
@@ -2278,7 +2983,7 @@ modelValue: string;
2278
2983
  styletype: StyleType_8;
2279
2984
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2280
2985
 
2281
- export declare const JTabs: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
2986
+ export declare const JTabs: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
2282
2987
 
2283
2988
  /**
2284
2989
  * JTabs Props 인터페이스 (molecules)
@@ -2316,7 +3021,7 @@ styletype: StyleType_3;
2316
3021
  rows: number;
2317
3022
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTextAreaElement>;
2318
3023
 
2319
- export declare const JTitlebar: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
3024
+ export declare const JTitlebar: __VLS_WithTemplateSlots_15<typeof __VLS_component_15, __VLS_TemplateResult_15["slots"]>;
2320
3025
 
2321
3026
  export { JToast }
2322
3027
 
@@ -2329,12 +3034,12 @@ closeButton: boolean;
2329
3034
 
2330
3035
  export declare const JTooltip: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
2331
3036
 
2332
- export declare const JTree: DefineComponent<__VLS_Props_37, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
3037
+ export declare const JTree: DefineComponent<__VLS_Props_38, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2333
3038
  expandChange: (menuKey: string | number | undefined, expanded: boolean) => any;
2334
3039
  nodeClick: (event: MenuClickEvent) => any;
2335
3040
  "update:expandedKeys": (keys: (string | number)[]) => any;
2336
3041
  "update:activeKey": (key: string | number | null) => any;
2337
- }, string, PublicProps, Readonly<__VLS_Props_37> & Readonly<{
3042
+ }, string, PublicProps, Readonly<__VLS_Props_38> & Readonly<{
2338
3043
  onExpandChange?: ((menuKey: string | number | undefined, expanded: boolean) => any) | undefined;
2339
3044
  onNodeClick?: ((event: MenuClickEvent) => any) | undefined;
2340
3045
  "onUpdate:expandedKeys"?: ((keys: (string | number)[]) => any) | undefined;
@@ -2423,6 +3128,8 @@ declare interface Option_4 {
2423
3128
  label: string;
2424
3129
  }
2425
3130
 
3131
+ declare type Orientation = 'horizontal' | 'vertical';
3132
+
2426
3133
  declare type PositionType = 'top' | 'bottom' | 'left' | 'right';
2427
3134
 
2428
3135
  /**