@j-solution/components 1.1.0 → 1.2.0
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/USAGE_GUIDE.md +1068 -61
- package/assets/jwms-portal-frontend-D8DdrheA.css +1 -0
- package/assets/styles/j-components.css +1 -1
- package/components/atoms/JEditor.vue.cjs +7 -0
- package/components/atoms/JEditor.vue.cjs.map +1 -0
- package/components/atoms/JEditor.vue.js +13 -0
- package/components/atoms/JEditor.vue.js.map +1 -0
- package/components/atoms/JEditor.vue2.cjs +2 -0
- package/components/atoms/JEditor.vue2.cjs.map +1 -0
- package/components/atoms/JEditor.vue2.js +43 -0
- package/components/atoms/JEditor.vue2.js.map +1 -0
- package/components/atoms/JPreview.vue.cjs +7 -0
- package/components/atoms/JPreview.vue.cjs.map +1 -0
- package/components/atoms/JPreview.vue.js +13 -0
- package/components/atoms/JPreview.vue.js.map +1 -0
- package/components/atoms/JPreview.vue2.cjs +2 -0
- package/components/atoms/JPreview.vue2.cjs.map +1 -0
- package/components/atoms/JPreview.vue2.js +121 -0
- package/components/atoms/JPreview.vue2.js.map +1 -0
- package/components/molecules/JAlert.vue.cjs +1 -1
- package/components/molecules/JAlert.vue.cjs.map +1 -1
- package/components/molecules/JAlert.vue.js +26 -20
- package/components/molecules/JAlert.vue.js.map +1 -1
- package/components/molecules/JFormField.vue.cjs +1 -1
- package/components/molecules/JFormField.vue.cjs.map +1 -1
- package/components/molecules/JFormField.vue.js +8 -2
- package/components/molecules/JFormField.vue.js.map +1 -1
- package/components/molecules/JTitlebar.vue.cjs +1 -1
- package/components/molecules/JTitlebar.vue.cjs.map +1 -1
- package/components/molecules/JTitlebar.vue.js +26 -20
- package/components/molecules/JTitlebar.vue.js.map +1 -1
- package/components/organisms/JDynamicForm.vue2.cjs +1 -1
- package/components/organisms/JDynamicForm.vue2.cjs.map +1 -1
- package/components/organisms/JDynamicForm.vue2.js +8 -2
- package/components/organisms/JDynamicForm.vue2.js.map +1 -1
- package/components/organisms/JFormModal.vue.cjs +1 -1
- package/components/organisms/JFormModal.vue.cjs.map +1 -1
- package/components/organisms/JFormModal.vue.js +21 -15
- package/components/organisms/JFormModal.vue.js.map +1 -1
- package/components/organisms/JModal.vue.cjs +1 -1
- package/components/organisms/JModal.vue.cjs.map +1 -1
- package/components/organisms/JModal.vue.js +22 -16
- package/components/organisms/JModal.vue.js.map +1 -1
- package/components/organisms/JSearchPanel.vue2.cjs +1 -1
- package/components/organisms/JSearchPanel.vue2.cjs.map +1 -1
- package/components/organisms/JSearchPanel.vue2.js +45 -39
- package/components/organisms/JSearchPanel.vue2.js.map +1 -1
- package/index.cjs +1 -1
- package/index.js +82 -76
- package/package.json +3 -1
- package/tailwind.config.js +2 -1
- package/types/index.d.ts +141 -90
- package/assets/jwms-portal-frontend-BqyV9oqF.css +0 -1
package/types/index.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ import { GlobalComponents } from 'vue';
|
|
|
11
11
|
import { GlobalDirectives } from 'vue';
|
|
12
12
|
import { HTMLAttributes } from 'vue';
|
|
13
13
|
import { default as JLayoutAdvanced } from './JLayoutAdvanced.vue';
|
|
14
|
+
import { toast as JToast } from 'vue-sonner';
|
|
14
15
|
import { PublicProps } from 'vue';
|
|
15
16
|
import { Ref } from 'vue';
|
|
16
17
|
import { ToasterProps } from 'vue-sonner';
|
|
@@ -40,11 +41,11 @@ disabled: boolean;
|
|
|
40
41
|
items: ContextMenuGroup[];
|
|
41
42
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
42
43
|
|
|
43
|
-
declare const __VLS_component_11: DefineComponent<
|
|
44
|
+
declare const __VLS_component_11: DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
44
45
|
|
|
45
|
-
declare const __VLS_component_12: DefineComponent<
|
|
46
|
+
declare const __VLS_component_12: DefineComponent<__VLS_Props_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
46
47
|
confirm: () => any;
|
|
47
|
-
}, string, PublicProps, Readonly<
|
|
48
|
+
}, string, PublicProps, Readonly<__VLS_Props_28> & Readonly<{
|
|
48
49
|
onConfirm?: (() => any) | undefined;
|
|
49
50
|
}>, {
|
|
50
51
|
variant: "default" | "destructive";
|
|
@@ -54,16 +55,16 @@ showFooter: boolean;
|
|
|
54
55
|
|
|
55
56
|
declare const __VLS_component_13: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
|
|
56
57
|
|
|
57
|
-
declare const __VLS_component_14: DefineComponent<
|
|
58
|
+
declare const __VLS_component_14: DefineComponent<__VLS_Props_29, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
58
59
|
buttonClick: (button: TitlebarButton) => any;
|
|
59
|
-
}, string, PublicProps, Readonly<
|
|
60
|
+
}, string, PublicProps, Readonly<__VLS_Props_29> & Readonly<{
|
|
60
61
|
onButtonClick?: ((button: TitlebarButton) => any) | undefined;
|
|
61
62
|
}>, {
|
|
62
63
|
styletype: StyleType_22;
|
|
63
64
|
buttons: TitlebarButton[];
|
|
64
65
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
65
66
|
|
|
66
|
-
declare const __VLS_component_15: DefineComponent<
|
|
67
|
+
declare const __VLS_component_15: DefineComponent<__VLS_Props_30, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_30> & Readonly<{}>, {
|
|
67
68
|
orientation: "vertical" | "horizontal" | null;
|
|
68
69
|
showButtonSeparators: boolean;
|
|
69
70
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
@@ -187,14 +188,14 @@ handleError: (errs: any) => void;
|
|
|
187
188
|
}, {}, {}, {}, {}> | null;
|
|
188
189
|
}, any>;
|
|
189
190
|
|
|
190
|
-
declare const __VLS_component_19: DefineComponent<
|
|
191
|
+
declare const __VLS_component_19: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
191
192
|
logoClick: () => any;
|
|
192
193
|
navClick: (item: HeaderNavItem, index: number) => any;
|
|
193
194
|
notificationClick: (item: NotificationItem) => any;
|
|
194
195
|
userMenuSelect: (itemId: string) => any;
|
|
195
196
|
sidebarToggle: () => any;
|
|
196
197
|
login: () => any;
|
|
197
|
-
}, string, PublicProps, Readonly<
|
|
198
|
+
}, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{
|
|
198
199
|
onLogoClick?: (() => any) | undefined;
|
|
199
200
|
onNavClick?: ((item: HeaderNavItem, index: number) => any) | undefined;
|
|
200
201
|
onNotificationClick?: ((item: NotificationItem) => any) | undefined;
|
|
@@ -232,10 +233,10 @@ required: boolean;
|
|
|
232
233
|
styletype: StyleType_2;
|
|
233
234
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLInputElement>;
|
|
234
235
|
|
|
235
|
-
declare const __VLS_component_20: DefineComponent<
|
|
236
|
+
declare const __VLS_component_20: DefineComponent<__VLS_Props_36, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
236
237
|
breadcrumbClick: (item: BreadcrumbItem, index: number) => any;
|
|
237
238
|
titlebarButtonClick: (button: TitlebarButton) => any;
|
|
238
|
-
}, string, PublicProps, Readonly<
|
|
239
|
+
}, string, PublicProps, Readonly<__VLS_Props_36> & Readonly<{
|
|
239
240
|
onBreadcrumbClick?: ((item: BreadcrumbItem, index: number) => any) | undefined;
|
|
240
241
|
onTitlebarButtonClick?: ((button: TitlebarButton) => any) | undefined;
|
|
241
242
|
}>, {
|
|
@@ -246,38 +247,38 @@ showTitlebar: boolean;
|
|
|
246
247
|
contentScroll: boolean;
|
|
247
248
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
248
249
|
|
|
249
|
-
declare const __VLS_component_21: DefineComponent<
|
|
250
|
+
declare const __VLS_component_21: DefineComponent<__VLS_Props_37, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_37> & Readonly<{}>, {
|
|
250
251
|
styletype: StyleType_28;
|
|
251
252
|
contentScroll: boolean;
|
|
252
253
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
253
254
|
|
|
254
|
-
declare const __VLS_component_22: DefineComponent<
|
|
255
|
+
declare const __VLS_component_22: DefineComponent<__VLS_Props_38, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_38> & Readonly<{}>, {
|
|
255
256
|
styletype: "default" | "minimal";
|
|
256
257
|
permissions: MenuPermission[];
|
|
257
258
|
menuItems: SidebarMenuItem[];
|
|
258
259
|
contentScroll: boolean;
|
|
259
260
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
260
261
|
|
|
261
|
-
declare const __VLS_component_3: DefineComponent<
|
|
262
|
+
declare const __VLS_component_3: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{}>, {
|
|
262
263
|
disabled: boolean;
|
|
263
264
|
styletype: StyleType_10;
|
|
264
265
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
265
266
|
|
|
266
|
-
declare const __VLS_component_4: DefineComponent<
|
|
267
|
+
declare const __VLS_component_4: DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{}>, {
|
|
267
268
|
size: "sm" | "md" | "lg";
|
|
268
269
|
variant: "default" | "secondary" | "destructive" | "outline";
|
|
269
270
|
styletype: StyleType_12;
|
|
270
271
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
271
272
|
|
|
272
|
-
declare const __VLS_component_5: DefineComponent<
|
|
273
|
+
declare const __VLS_component_5: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{}>, {
|
|
273
274
|
size: SizeType_2;
|
|
274
275
|
styletype: StyleType_16;
|
|
275
276
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
276
277
|
|
|
277
|
-
declare const __VLS_component_6: DefineComponent<
|
|
278
|
+
declare const __VLS_component_6: DefineComponent<__VLS_Props_19, {
|
|
278
279
|
showTooltip: () => void;
|
|
279
280
|
hideTooltip: () => void;
|
|
280
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<
|
|
281
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{}>, {
|
|
281
282
|
disabled: boolean;
|
|
282
283
|
size: Size_2;
|
|
283
284
|
side: "top" | "right" | "bottom" | "left";
|
|
@@ -288,16 +289,16 @@ maxWidth: string | number;
|
|
|
288
289
|
trigger: Trigger;
|
|
289
290
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
290
291
|
|
|
291
|
-
declare const __VLS_component_7: DefineComponent<
|
|
292
|
+
declare const __VLS_component_7: DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{}>, {
|
|
292
293
|
text: string;
|
|
293
294
|
required: boolean;
|
|
294
295
|
styletype: StyleType_19;
|
|
295
296
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
296
297
|
|
|
297
|
-
declare const __VLS_component_8: DefineComponent<
|
|
298
|
+
declare const __VLS_component_8: DefineComponent<__VLS_Props_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
298
299
|
"update:open": (open: boolean) => any;
|
|
299
300
|
openChange: (open: boolean) => any;
|
|
300
|
-
}, string, PublicProps, Readonly<
|
|
301
|
+
}, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{
|
|
301
302
|
"onUpdate:open"?: ((open: boolean) => any) | undefined;
|
|
302
303
|
onOpenChange?: ((open: boolean) => any) | undefined;
|
|
303
304
|
}>, {
|
|
@@ -350,6 +351,23 @@ declare type __VLS_Props_10 = {
|
|
|
350
351
|
};
|
|
351
352
|
|
|
352
353
|
declare type __VLS_Props_11 = {
|
|
354
|
+
/** 마크다운 내용 (v-model) */
|
|
355
|
+
modelValue?: string;
|
|
356
|
+
/** 플레이스홀더 텍스트 */
|
|
357
|
+
placeholder?: string;
|
|
358
|
+
/** 비활성화 상태 */
|
|
359
|
+
disabled?: boolean;
|
|
360
|
+
/** 읽기 전용 상태 */
|
|
361
|
+
readonly?: boolean;
|
|
362
|
+
/** 에디터 높이 */
|
|
363
|
+
height?: string | number;
|
|
364
|
+
/** 테마 (light/dark) */
|
|
365
|
+
theme?: 'light' | 'dark';
|
|
366
|
+
/** 추가 CSS 클래스 */
|
|
367
|
+
class?: string;
|
|
368
|
+
};
|
|
369
|
+
|
|
370
|
+
declare type __VLS_Props_12 = {
|
|
353
371
|
/** 링크 URL */
|
|
354
372
|
href?: string;
|
|
355
373
|
/** 링크 텍스트 */
|
|
@@ -364,7 +382,7 @@ declare type __VLS_Props_11 = {
|
|
|
364
382
|
class?: string;
|
|
365
383
|
};
|
|
366
384
|
|
|
367
|
-
declare type
|
|
385
|
+
declare type __VLS_Props_13 = {
|
|
368
386
|
/** 이미지 소스 */
|
|
369
387
|
src?: string;
|
|
370
388
|
/** 이미지 너비 */
|
|
@@ -385,7 +403,7 @@ declare type __VLS_Props_12 = {
|
|
|
385
403
|
class?: string;
|
|
386
404
|
};
|
|
387
405
|
|
|
388
|
-
declare type
|
|
406
|
+
declare type __VLS_Props_14 = {
|
|
389
407
|
variant?: 'default' | 'secondary' | 'destructive' | 'outline';
|
|
390
408
|
class?: string;
|
|
391
409
|
/** 스타일 프리셋 */
|
|
@@ -394,7 +412,7 @@ declare type __VLS_Props_13 = {
|
|
|
394
412
|
size?: 'sm' | 'md' | 'lg';
|
|
395
413
|
};
|
|
396
414
|
|
|
397
|
-
declare type
|
|
415
|
+
declare type __VLS_Props_15 = {
|
|
398
416
|
value?: number;
|
|
399
417
|
max?: number;
|
|
400
418
|
class?: string;
|
|
@@ -414,7 +432,7 @@ declare type __VLS_Props_14 = {
|
|
|
414
432
|
indeterminate?: boolean;
|
|
415
433
|
};
|
|
416
434
|
|
|
417
|
-
declare type
|
|
435
|
+
declare type __VLS_Props_16 = {
|
|
418
436
|
size?: 'sm' | 'md' | 'lg';
|
|
419
437
|
class?: string;
|
|
420
438
|
/** 스타일 프리셋 */
|
|
@@ -427,7 +445,7 @@ declare type __VLS_Props_15 = {
|
|
|
427
445
|
labelPosition?: LabelPosition;
|
|
428
446
|
};
|
|
429
447
|
|
|
430
|
-
declare type
|
|
448
|
+
declare type __VLS_Props_17 = {
|
|
431
449
|
src?: string;
|
|
432
450
|
alt?: string;
|
|
433
451
|
fallback?: string;
|
|
@@ -442,7 +460,7 @@ declare type __VLS_Props_16 = {
|
|
|
442
460
|
status?: Status;
|
|
443
461
|
};
|
|
444
462
|
|
|
445
|
-
declare type
|
|
463
|
+
declare type __VLS_Props_18 = {
|
|
446
464
|
class?: string;
|
|
447
465
|
/** 스타일 프리셋 */
|
|
448
466
|
styletype?: StyleType_16;
|
|
@@ -450,7 +468,7 @@ declare type __VLS_Props_17 = {
|
|
|
450
468
|
size?: SizeType_2;
|
|
451
469
|
};
|
|
452
470
|
|
|
453
|
-
declare type
|
|
471
|
+
declare type __VLS_Props_19 = {
|
|
454
472
|
content?: string;
|
|
455
473
|
side?: 'top' | 'right' | 'bottom' | 'left';
|
|
456
474
|
align?: 'start' | 'center' | 'end';
|
|
@@ -469,19 +487,6 @@ declare type __VLS_Props_18 = {
|
|
|
469
487
|
trigger?: Trigger;
|
|
470
488
|
};
|
|
471
489
|
|
|
472
|
-
declare type __VLS_Props_19 = {
|
|
473
|
-
name: IconName;
|
|
474
|
-
size?: SizeType_3;
|
|
475
|
-
color?: string;
|
|
476
|
-
class?: string;
|
|
477
|
-
/** 스타일 프리셋 */
|
|
478
|
-
styletype?: StyleType_18;
|
|
479
|
-
/** 접근성 라벨 */
|
|
480
|
-
ariaLabel?: string;
|
|
481
|
-
/** 접근성 역할 */
|
|
482
|
-
role?: string;
|
|
483
|
-
};
|
|
484
|
-
|
|
485
490
|
declare type __VLS_Props_2 = {
|
|
486
491
|
modelValue?: string | number;
|
|
487
492
|
type?: string;
|
|
@@ -497,6 +502,19 @@ declare type __VLS_Props_2 = {
|
|
|
497
502
|
};
|
|
498
503
|
|
|
499
504
|
declare type __VLS_Props_20 = {
|
|
505
|
+
name: IconName;
|
|
506
|
+
size?: SizeType_3;
|
|
507
|
+
color?: string;
|
|
508
|
+
class?: string;
|
|
509
|
+
/** 스타일 프리셋 */
|
|
510
|
+
styletype?: StyleType_18;
|
|
511
|
+
/** 접근성 라벨 */
|
|
512
|
+
ariaLabel?: string;
|
|
513
|
+
/** 접근성 역할 */
|
|
514
|
+
role?: string;
|
|
515
|
+
};
|
|
516
|
+
|
|
517
|
+
declare type __VLS_Props_21 = {
|
|
500
518
|
/** 라벨 텍스트 */
|
|
501
519
|
text?: string;
|
|
502
520
|
/** 필수 필드 여부 */
|
|
@@ -507,7 +525,7 @@ declare type __VLS_Props_20 = {
|
|
|
507
525
|
for?: string;
|
|
508
526
|
};
|
|
509
527
|
|
|
510
|
-
declare type
|
|
528
|
+
declare type __VLS_Props_22 = {
|
|
511
529
|
/** 팝오버 열림 상태 */
|
|
512
530
|
open?: boolean;
|
|
513
531
|
/** 비활성화 상태 */
|
|
@@ -526,7 +544,16 @@ declare type __VLS_Props_21 = {
|
|
|
526
544
|
alignOffset?: number;
|
|
527
545
|
};
|
|
528
546
|
|
|
529
|
-
declare type
|
|
547
|
+
declare type __VLS_Props_23 = {
|
|
548
|
+
/** 마크다운 또는 HTML 내용 */
|
|
549
|
+
modelValue?: string;
|
|
550
|
+
/** 테마 (light/dark) */
|
|
551
|
+
theme?: 'light' | 'dark';
|
|
552
|
+
/** 추가 CSS 클래스 */
|
|
553
|
+
class?: string;
|
|
554
|
+
};
|
|
555
|
+
|
|
556
|
+
declare type __VLS_Props_24 = {
|
|
530
557
|
/** 그리드에 표시할 데이터 배열 */
|
|
531
558
|
rowData: any[];
|
|
532
559
|
/** 컬럼 정의 배열 */
|
|
@@ -549,7 +576,7 @@ declare type __VLS_Props_22 = {
|
|
|
549
576
|
enableExcelExport?: boolean;
|
|
550
577
|
};
|
|
551
578
|
|
|
552
|
-
declare type
|
|
579
|
+
declare type __VLS_Props_25 = {
|
|
553
580
|
/** 필드 레이블 */
|
|
554
581
|
label?: string;
|
|
555
582
|
/** 필드 설명 (레이블 아래 표시) */
|
|
@@ -596,7 +623,7 @@ declare type __VLS_Props_23 = {
|
|
|
596
623
|
radioDirection?: 'horizontal' | 'vertical';
|
|
597
624
|
};
|
|
598
625
|
|
|
599
|
-
declare type
|
|
626
|
+
declare type __VLS_Props_26 = {
|
|
600
627
|
modelValue?: string | number;
|
|
601
628
|
groupedOptions?: GroupedOption[];
|
|
602
629
|
placeholder?: string;
|
|
@@ -609,7 +636,7 @@ declare type __VLS_Props_24 = {
|
|
|
609
636
|
styletype?: StyleType_21;
|
|
610
637
|
};
|
|
611
638
|
|
|
612
|
-
declare type
|
|
639
|
+
declare type __VLS_Props_27 = {
|
|
613
640
|
/** Card 자체의 클래스 */
|
|
614
641
|
class?: HTMLAttributes["class"];
|
|
615
642
|
/** 카드 제목 */
|
|
@@ -620,7 +647,7 @@ declare type __VLS_Props_25 = {
|
|
|
620
647
|
footer?: string;
|
|
621
648
|
};
|
|
622
649
|
|
|
623
|
-
declare type
|
|
650
|
+
declare type __VLS_Props_28 = {
|
|
624
651
|
/** Alert 자체의 클래스 */
|
|
625
652
|
class?: HTMLAttributes["class"];
|
|
626
653
|
/** Alert variant 스타일 */
|
|
@@ -637,7 +664,7 @@ declare type __VLS_Props_26 = {
|
|
|
637
664
|
showFooter?: boolean;
|
|
638
665
|
};
|
|
639
666
|
|
|
640
|
-
declare type
|
|
667
|
+
declare type __VLS_Props_29 = {
|
|
641
668
|
/** Titlebar 스타일 타입 */
|
|
642
669
|
styletype?: StyleType_22;
|
|
643
670
|
/** 프로그램 아이콘 */
|
|
@@ -650,22 +677,6 @@ declare type __VLS_Props_27 = {
|
|
|
650
677
|
buttons?: TitlebarButton[];
|
|
651
678
|
};
|
|
652
679
|
|
|
653
|
-
declare type __VLS_Props_28 = {
|
|
654
|
-
orientation?: ButtonGroupVariants['orientation'];
|
|
655
|
-
showButtonSeparators?: boolean;
|
|
656
|
-
};
|
|
657
|
-
|
|
658
|
-
declare type __VLS_Props_29 = {
|
|
659
|
-
/** 브레드크럼 아이템 목록 */
|
|
660
|
-
items: BreadcrumbItem[];
|
|
661
|
-
/** 구분자 (기본값: /) */
|
|
662
|
-
separator?: string;
|
|
663
|
-
/** 스타일 타입 */
|
|
664
|
-
styletype?: StyleType_23;
|
|
665
|
-
/** 추가 CSS 클래스 */
|
|
666
|
-
class?: string;
|
|
667
|
-
};
|
|
668
|
-
|
|
669
680
|
declare type __VLS_Props_3 = {
|
|
670
681
|
modelValue?: string;
|
|
671
682
|
placeholder?: string;
|
|
@@ -681,11 +692,27 @@ declare type __VLS_Props_3 = {
|
|
|
681
692
|
};
|
|
682
693
|
|
|
683
694
|
declare type __VLS_Props_30 = {
|
|
695
|
+
orientation?: ButtonGroupVariants['orientation'];
|
|
696
|
+
showButtonSeparators?: boolean;
|
|
697
|
+
};
|
|
698
|
+
|
|
699
|
+
declare type __VLS_Props_31 = {
|
|
700
|
+
/** 브레드크럼 아이템 목록 */
|
|
701
|
+
items: BreadcrumbItem[];
|
|
702
|
+
/** 구분자 (기본값: /) */
|
|
703
|
+
separator?: string;
|
|
704
|
+
/** 스타일 타입 */
|
|
705
|
+
styletype?: StyleType_23;
|
|
706
|
+
/** 추가 CSS 클래스 */
|
|
707
|
+
class?: string;
|
|
708
|
+
};
|
|
709
|
+
|
|
710
|
+
declare type __VLS_Props_32 = {
|
|
684
711
|
schema: FormSchema;
|
|
685
712
|
modelValue?: Record<string, any>;
|
|
686
713
|
};
|
|
687
714
|
|
|
688
|
-
declare type
|
|
715
|
+
declare type __VLS_Props_33 = {
|
|
689
716
|
/** 로고 이미지 URL */
|
|
690
717
|
logo?: string;
|
|
691
718
|
/** 로고 텍스트 (기본값, 이미지가 없을 때) */
|
|
@@ -720,7 +747,7 @@ declare type __VLS_Props_31 = {
|
|
|
720
747
|
availableThemes?: string[];
|
|
721
748
|
};
|
|
722
749
|
|
|
723
|
-
declare type
|
|
750
|
+
declare type __VLS_Props_34 = {
|
|
724
751
|
/** 메뉴 아이템 목록 */
|
|
725
752
|
menuItems: SidebarMenuItem[];
|
|
726
753
|
/** 권한 목록 */
|
|
@@ -737,7 +764,7 @@ declare type __VLS_Props_32 = {
|
|
|
737
764
|
isVisible?: boolean;
|
|
738
765
|
};
|
|
739
766
|
|
|
740
|
-
declare type
|
|
767
|
+
declare type __VLS_Props_35 = {
|
|
741
768
|
/** 메뉴 아이템 목록 */
|
|
742
769
|
menuItems: SidebarMenuItem[];
|
|
743
770
|
/** 권한 목록 */
|
|
@@ -754,7 +781,7 @@ declare type __VLS_Props_33 = {
|
|
|
754
781
|
isVisible?: boolean;
|
|
755
782
|
};
|
|
756
783
|
|
|
757
|
-
declare type
|
|
784
|
+
declare type __VLS_Props_36 = {
|
|
758
785
|
/** 브레드크럼 아이템 목록 */
|
|
759
786
|
breadcrumbItems?: BreadcrumbItem[];
|
|
760
787
|
/** 브레드크럼 표시 여부 */
|
|
@@ -775,7 +802,7 @@ declare type __VLS_Props_34 = {
|
|
|
775
802
|
class?: string;
|
|
776
803
|
};
|
|
777
804
|
|
|
778
|
-
declare type
|
|
805
|
+
declare type __VLS_Props_37 = {
|
|
779
806
|
/** 레이아웃 스타일 타입 */
|
|
780
807
|
styletype?: StyleType_28;
|
|
781
808
|
/** 콘텐츠 영역 스크롤 가능 여부 */
|
|
@@ -814,7 +841,7 @@ declare type __VLS_Props_35 = {
|
|
|
814
841
|
* </JLayoutSimple>
|
|
815
842
|
* ```
|
|
816
843
|
*/
|
|
817
|
-
declare type
|
|
844
|
+
declare type __VLS_Props_38 = {
|
|
818
845
|
/** 레이아웃 스타일 타입 */
|
|
819
846
|
styletype?: 'default' | 'minimal';
|
|
820
847
|
/** 콘텐츠 영역 스크롤 가능 여부 */
|
|
@@ -1633,7 +1660,7 @@ export declare const JAccordion: __VLS_WithTemplateSlots_13<typeof __VLS_compone
|
|
|
1633
1660
|
|
|
1634
1661
|
export declare const JAlert: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
|
|
1635
1662
|
|
|
1636
|
-
export declare const JAvatar: DefineComponent<
|
|
1663
|
+
export declare const JAvatar: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{}>, {
|
|
1637
1664
|
size: Size;
|
|
1638
1665
|
shape: Shape;
|
|
1639
1666
|
styletype: StyleType_15;
|
|
@@ -1643,9 +1670,9 @@ fallback: string;
|
|
|
1643
1670
|
|
|
1644
1671
|
export declare const JBadge: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
1645
1672
|
|
|
1646
|
-
export declare const JBreadcrumb: DefineComponent<
|
|
1673
|
+
export declare const JBreadcrumb: DefineComponent<__VLS_Props_31, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1647
1674
|
itemClick: (item: BreadcrumbItem, index: number) => any;
|
|
1648
|
-
}, string, PublicProps, Readonly<
|
|
1675
|
+
}, string, PublicProps, Readonly<__VLS_Props_31> & Readonly<{
|
|
1649
1676
|
onItemClick?: ((item: BreadcrumbItem, index: number) => any) | undefined;
|
|
1650
1677
|
}>, {
|
|
1651
1678
|
styletype: StyleType_23;
|
|
@@ -1724,7 +1751,7 @@ orientation: "horizontal" | "vertical";
|
|
|
1724
1751
|
styletype: StyleType_9;
|
|
1725
1752
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1726
1753
|
|
|
1727
|
-
export declare const JDynamicForm: DefineComponent<
|
|
1754
|
+
export declare const JDynamicForm: DefineComponent<__VLS_Props_32, {
|
|
1728
1755
|
formState: Record<string, any>;
|
|
1729
1756
|
submit: typeof handleSubmit;
|
|
1730
1757
|
reset: typeof reset;
|
|
@@ -1734,7 +1761,7 @@ handleError: typeof handleError;
|
|
|
1734
1761
|
error: (...args: any[]) => void;
|
|
1735
1762
|
submit: (...args: any[]) => void;
|
|
1736
1763
|
change: (...args: any[]) => void;
|
|
1737
|
-
}, string, PublicProps, Readonly<
|
|
1764
|
+
}, string, PublicProps, Readonly<__VLS_Props_32> & Readonly<{
|
|
1738
1765
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1739
1766
|
onError?: ((...args: any[]) => any) | undefined;
|
|
1740
1767
|
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
@@ -1764,14 +1791,31 @@ declare interface JDynamicTabsProps {
|
|
|
1764
1791
|
styletype?: 'default' | 'minimal';
|
|
1765
1792
|
}
|
|
1766
1793
|
|
|
1767
|
-
export declare const
|
|
1794
|
+
export declare const JEditor: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1795
|
+
"update:modelValue": (value: string) => any;
|
|
1796
|
+
change: (value: string) => any;
|
|
1797
|
+
save: (value: string) => any;
|
|
1798
|
+
}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{
|
|
1799
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1800
|
+
onChange?: ((value: string) => any) | undefined;
|
|
1801
|
+
onSave?: ((value: string) => any) | undefined;
|
|
1802
|
+
}>, {
|
|
1803
|
+
disabled: boolean;
|
|
1804
|
+
modelValue: string;
|
|
1805
|
+
placeholder: string;
|
|
1806
|
+
height: string | number;
|
|
1807
|
+
readonly: boolean;
|
|
1808
|
+
theme: "light" | "dark";
|
|
1809
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1810
|
+
|
|
1811
|
+
export declare const JFormField: DefineComponent<__VLS_Props_25, {
|
|
1768
1812
|
clearError: () => void;
|
|
1769
1813
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1770
1814
|
"update:modelValue": (value: any) => any;
|
|
1771
1815
|
change: (value: any) => any;
|
|
1772
1816
|
focus: (event: FocusEvent) => any;
|
|
1773
1817
|
blur: (event: FocusEvent) => any;
|
|
1774
|
-
}, string, PublicProps, Readonly<
|
|
1818
|
+
}, string, PublicProps, Readonly<__VLS_Props_25> & Readonly<{
|
|
1775
1819
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
1776
1820
|
onChange?: ((value: any) => any) | undefined;
|
|
1777
1821
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
@@ -1800,11 +1844,11 @@ declare interface JFormModalProps {
|
|
|
1800
1844
|
confirmDisabled?: boolean;
|
|
1801
1845
|
}
|
|
1802
1846
|
|
|
1803
|
-
export declare const JGrid: DefineComponent<
|
|
1847
|
+
export declare const JGrid: DefineComponent<__VLS_Props_24, {
|
|
1804
1848
|
gridApi: Ref<any, any>;
|
|
1805
1849
|
gridColumnApi: Ref<any, any>;
|
|
1806
1850
|
exportToExcel: () => void;
|
|
1807
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<
|
|
1851
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_24> & Readonly<{}>, {
|
|
1808
1852
|
theme: string;
|
|
1809
1853
|
pagination: boolean;
|
|
1810
1854
|
checkbox: boolean;
|
|
@@ -1815,12 +1859,12 @@ enablePivot: boolean;
|
|
|
1815
1859
|
enableExcelExport: boolean;
|
|
1816
1860
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1817
1861
|
|
|
1818
|
-
export declare const JGroupCombo: DefineComponent<
|
|
1862
|
+
export declare const JGroupCombo: DefineComponent<__VLS_Props_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1819
1863
|
"update:modelValue": (value: string | number) => any;
|
|
1820
1864
|
change: (value: string | number) => any;
|
|
1821
1865
|
focus: (event: FocusEvent) => any;
|
|
1822
1866
|
blur: (event: FocusEvent) => any;
|
|
1823
|
-
}, string, PublicProps, Readonly<
|
|
1867
|
+
}, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{
|
|
1824
1868
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
1825
1869
|
onChange?: ((value: string | number) => any) | undefined;
|
|
1826
1870
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
@@ -1835,17 +1879,17 @@ groupedOptions: GroupedOption[];
|
|
|
1835
1879
|
|
|
1836
1880
|
export declare const JHeader: __VLS_WithTemplateSlots_19<typeof __VLS_component_19, __VLS_TemplateResult_19["slots"]>;
|
|
1837
1881
|
|
|
1838
|
-
export declare const JIcon: DefineComponent<
|
|
1882
|
+
export declare const JIcon: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {
|
|
1839
1883
|
size: SizeType_3;
|
|
1840
1884
|
role: string;
|
|
1841
1885
|
styletype: StyleType_18;
|
|
1842
1886
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1843
1887
|
|
|
1844
|
-
export declare const JImage: DefineComponent<
|
|
1888
|
+
export declare const JImage: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1845
1889
|
click: (event: MouseEvent) => any;
|
|
1846
1890
|
mouseover: (event: MouseEvent) => any;
|
|
1847
1891
|
mouseout: (event: MouseEvent) => any;
|
|
1848
|
-
}, string, PublicProps, Readonly<
|
|
1892
|
+
}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{
|
|
1849
1893
|
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
1850
1894
|
onMouseover?: ((event: MouseEvent) => any) | undefined;
|
|
1851
1895
|
onMouseout?: ((event: MouseEvent) => any) | undefined;
|
|
@@ -1898,7 +1942,12 @@ export declare const JPageContainer: __VLS_WithTemplateSlots_20<typeof __VLS_com
|
|
|
1898
1942
|
|
|
1899
1943
|
export declare const JPopover: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
|
|
1900
1944
|
|
|
1901
|
-
export declare const
|
|
1945
|
+
export declare const JPreview: DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{}>, {
|
|
1946
|
+
modelValue: string;
|
|
1947
|
+
theme: "light" | "dark";
|
|
1948
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1949
|
+
|
|
1950
|
+
export declare const JProgress: DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{}>, {
|
|
1902
1951
|
label: string;
|
|
1903
1952
|
size: SizeType;
|
|
1904
1953
|
value: number;
|
|
@@ -2064,10 +2113,10 @@ declare interface JSearchPanelProps {
|
|
|
2064
2113
|
collapsible?: boolean;
|
|
2065
2114
|
}
|
|
2066
2115
|
|
|
2067
|
-
export declare const JSidebarAdvanced: DefineComponent<
|
|
2116
|
+
export declare const JSidebarAdvanced: DefineComponent<__VLS_Props_35, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2068
2117
|
menuClick: (event: MenuClickEvent) => any;
|
|
2069
2118
|
favoriteChange: (menuKey: string | number | undefined, isFavorite: boolean) => any;
|
|
2070
|
-
}, string, PublicProps, Readonly<
|
|
2119
|
+
}, string, PublicProps, Readonly<__VLS_Props_35> & Readonly<{
|
|
2071
2120
|
onMenuClick?: ((event: MenuClickEvent) => any) | undefined;
|
|
2072
2121
|
onFavoriteChange?: ((menuKey: string | number | undefined, isFavorite: boolean) => any) | undefined;
|
|
2073
2122
|
}>, {
|
|
@@ -2078,9 +2127,9 @@ permissions: MenuPermission[];
|
|
|
2078
2127
|
favorites: (number | string)[];
|
|
2079
2128
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2080
2129
|
|
|
2081
|
-
export declare const JSidebarSimple: DefineComponent<
|
|
2130
|
+
export declare const JSidebarSimple: DefineComponent<__VLS_Props_34, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2082
2131
|
menuClick: (event: MenuClickEvent) => any;
|
|
2083
|
-
}, string, PublicProps, Readonly<
|
|
2132
|
+
}, string, PublicProps, Readonly<__VLS_Props_34> & Readonly<{
|
|
2084
2133
|
onMenuClick?: ((event: MenuClickEvent) => any) | undefined;
|
|
2085
2134
|
}>, {
|
|
2086
2135
|
width: string;
|
|
@@ -2090,7 +2139,7 @@ permissions: MenuPermission[];
|
|
|
2090
2139
|
searchQuery: string;
|
|
2091
2140
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2092
2141
|
|
|
2093
|
-
export declare const JSpinner: DefineComponent<
|
|
2142
|
+
export declare const JSpinner: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{}>, {
|
|
2094
2143
|
label: string;
|
|
2095
2144
|
size: "sm" | "md" | "lg";
|
|
2096
2145
|
styletype: StyleType_14;
|
|
@@ -2150,7 +2199,9 @@ rows: number;
|
|
|
2150
2199
|
|
|
2151
2200
|
export declare const JTitlebar: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
|
|
2152
2201
|
|
|
2153
|
-
export
|
|
2202
|
+
export { JToast }
|
|
2203
|
+
|
|
2204
|
+
export declare const JToaster: DefineComponent<ToasterProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ToasterProps> & Readonly<{}>, {
|
|
2154
2205
|
position: "top-left" | "top-right" | "bottom-left" | "bottom-right" | "top-center" | "bottom-center";
|
|
2155
2206
|
richColors: boolean;
|
|
2156
2207
|
expand: boolean;
|