@designbasekorea/ui 0.1.0 → 0.1.2
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/README.md +477 -0
- package/dist/index.css +1 -391
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +86 -124
- package/dist/index.esm.css +1 -391
- package/dist/index.esm.css.map +1 -1
- package/dist/index.esm.js +320 -273
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +318 -272
- package/dist/index.js.map +1 -1
- package/dist/index.umd.css +1 -391
- package/dist/index.umd.css.map +1 -1
- package/dist/index.umd.js +321 -274
- package/dist/index.umd.js.map +1 -1
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
/// <reference path="global.d.ts" />
|
|
2
2
|
import React$2, { ReactNode } from 'react';
|
|
3
|
-
import { IconProps } from '@
|
|
4
|
-
import { Theme } from '@designbase/theme';
|
|
3
|
+
import { IconProps } from '@designbasekorea/icons';
|
|
5
4
|
|
|
6
5
|
/**
|
|
7
6
|
* Button 컴포넌트
|
|
@@ -15,9 +14,9 @@ interface ButtonProps {
|
|
|
15
14
|
/** 버튼 variant */
|
|
16
15
|
variant?: 'primary' | 'secondary' | 'tertiary' | 'danger' | 'ghost';
|
|
17
16
|
/** 버튼 크기 */
|
|
18
|
-
size?: 'xs' | '
|
|
17
|
+
size?: 'xs' | 's' | 'm' | 'l' | 'xl';
|
|
19
18
|
/** 둥글기 variant */
|
|
20
|
-
radius?: '
|
|
19
|
+
radius?: 's' | 'm' | 'l' | 'pill';
|
|
21
20
|
/** 전체 너비 여부 */
|
|
22
21
|
fullWidth?: boolean;
|
|
23
22
|
/** 비활성화 여부 */
|
|
@@ -63,7 +62,7 @@ interface InputProps {
|
|
|
63
62
|
/** 제어 값 */
|
|
64
63
|
value?: string;
|
|
65
64
|
/** 크기 */
|
|
66
|
-
size?: '
|
|
65
|
+
size?: 's' | 'm' | 'l';
|
|
67
66
|
/** 비활성화 여부 */
|
|
68
67
|
disabled?: boolean;
|
|
69
68
|
/** 읽기 전용 여부 */
|
|
@@ -113,7 +112,7 @@ interface ModalProps {
|
|
|
113
112
|
/** 모달 제목 */
|
|
114
113
|
title?: string;
|
|
115
114
|
/** 모달 크기 */
|
|
116
|
-
size?: '
|
|
115
|
+
size?: 's' | 'm' | 'l' | 'xl' | 'full';
|
|
117
116
|
/** 바깥쪽 클릭으로 닫기 여부 */
|
|
118
117
|
closeOnOutsideClick?: boolean;
|
|
119
118
|
/** ESC 키로 닫기 여부 */
|
|
@@ -135,7 +134,7 @@ interface CheckboxProps {
|
|
|
135
134
|
isReadOnly?: boolean;
|
|
136
135
|
isRequired?: boolean;
|
|
137
136
|
hasLabel?: boolean;
|
|
138
|
-
size?: 'xs' | '
|
|
137
|
+
size?: 'xs' | 's' | 'm' | 'l' | 'xl';
|
|
139
138
|
children?: React$2.ReactNode;
|
|
140
139
|
className?: string;
|
|
141
140
|
name?: string;
|
|
@@ -152,7 +151,7 @@ interface ToggleProps {
|
|
|
152
151
|
isReadOnly?: boolean;
|
|
153
152
|
isRequired?: boolean;
|
|
154
153
|
hasLabel?: boolean;
|
|
155
|
-
size?: 'xs' | '
|
|
154
|
+
size?: 'xs' | 's' | 'm' | 'l' | 'xl';
|
|
156
155
|
children?: React$2.ReactNode;
|
|
157
156
|
className?: string;
|
|
158
157
|
name?: string;
|
|
@@ -169,7 +168,7 @@ interface RadioProps {
|
|
|
169
168
|
isReadOnly?: boolean;
|
|
170
169
|
isRequired?: boolean;
|
|
171
170
|
hasLabel?: boolean;
|
|
172
|
-
size?: '
|
|
171
|
+
size?: 's' | 'm' | 'l';
|
|
173
172
|
children?: React$2.ReactNode;
|
|
174
173
|
className?: string;
|
|
175
174
|
name?: string;
|
|
@@ -290,7 +289,7 @@ interface SelectProps {
|
|
|
290
289
|
/** 헬퍼 텍스트 */
|
|
291
290
|
helperText?: string;
|
|
292
291
|
/** 크기 */
|
|
293
|
-
size?: '
|
|
292
|
+
size?: 's' | 'm' | 'l';
|
|
294
293
|
/** 전체 너비 여부 */
|
|
295
294
|
fullWidth?: boolean;
|
|
296
295
|
/** 드롭다운 너비 */
|
|
@@ -339,7 +338,7 @@ interface TabsProps {
|
|
|
339
338
|
/** 탭 방향 */
|
|
340
339
|
orientation?: 'horizontal' | 'vertical';
|
|
341
340
|
/** 탭 크기 */
|
|
342
|
-
size?: '
|
|
341
|
+
size?: 's' | 'm' | 'l';
|
|
343
342
|
/** 전체 너비 여부 */
|
|
344
343
|
fullWidth?: boolean;
|
|
345
344
|
/** 탭 스타일 */
|
|
@@ -377,7 +376,7 @@ interface SegmentControlProps {
|
|
|
377
376
|
/** 현재 선택된 값 (제어 컴포넌트용) */
|
|
378
377
|
value?: string;
|
|
379
378
|
/** 세그먼트 크기 */
|
|
380
|
-
size?: '
|
|
379
|
+
size?: 's' | 'm' | 'l';
|
|
381
380
|
/** 전체 너비 여부 */
|
|
382
381
|
fullWidth?: boolean;
|
|
383
382
|
/** 비활성화 여부 */
|
|
@@ -417,7 +416,7 @@ interface DropdownProps {
|
|
|
417
416
|
/** 트리거 라벨 */
|
|
418
417
|
label?: string;
|
|
419
418
|
/** 드롭다운 크기 */
|
|
420
|
-
size?: '
|
|
419
|
+
size?: 's' | 'm' | 'l';
|
|
421
420
|
/** 드롭다운 위치 */
|
|
422
421
|
placement?: 'bottom-left' | 'bottom-right' | 'top-left' | 'top-right';
|
|
423
422
|
/** 전체 너비 여부 */
|
|
@@ -444,7 +443,7 @@ declare const Dropdown: React$2.FC<DropdownProps>;
|
|
|
444
443
|
*/
|
|
445
444
|
|
|
446
445
|
type SpinnerType = 'circular' | 'dots' | 'bars' | 'pulse' | 'ripple';
|
|
447
|
-
type SpinnerSize = 'xs' | '
|
|
446
|
+
type SpinnerSize = 'xs' | 's' | 'm' | 'l' | 'xl';
|
|
448
447
|
interface SpinnerProps {
|
|
449
448
|
/** 스피너 타입 */
|
|
450
449
|
type?: SpinnerType;
|
|
@@ -473,7 +472,7 @@ declare const Spinner: React$2.FC<SpinnerProps>;
|
|
|
473
472
|
* 접근성: ARIA 가이드라인 준수, alt 텍스트 지원
|
|
474
473
|
*/
|
|
475
474
|
|
|
476
|
-
type LogoSize = 'xs' | '
|
|
475
|
+
type LogoSize = 'xs' | 's' | 'm' | 'l' | 'xl';
|
|
477
476
|
type LogoVariant = 'default' | 'primary' | 'secondary' | 'white' | 'dark';
|
|
478
477
|
interface LogoProps {
|
|
479
478
|
/** 로고 텍스트 */
|
|
@@ -511,7 +510,7 @@ declare const Logo: React$2.FC<LogoProps>;
|
|
|
511
510
|
* 접근성: ARIA 가이드라인 준수, 스크린 리더 지원
|
|
512
511
|
*/
|
|
513
512
|
|
|
514
|
-
type ProgressbarSize = 'xs' | '
|
|
513
|
+
type ProgressbarSize = 'xs' | 's' | 'm' | 'l' | 'xl';
|
|
515
514
|
type ProgressbarVariant = 'default' | 'primary' | 'success' | 'warning' | 'danger';
|
|
516
515
|
type ProgressbarStyle = 'solid' | 'striped' | 'animated';
|
|
517
516
|
interface ProgressbarProps {
|
|
@@ -554,7 +553,7 @@ declare const Progressbar: React$2.FC<ProgressbarProps>;
|
|
|
554
553
|
|
|
555
554
|
type MenuItemVariant = 'default' | 'primary' | 'success' | 'warning' | 'danger' | 'info';
|
|
556
555
|
type MenuItemType = 'inline' | 'block';
|
|
557
|
-
type MenuItemSize = '
|
|
556
|
+
type MenuItemSize = 's' | 'm' | 'l';
|
|
558
557
|
type MenuItemStyle = 'dropdown' | 'accordion';
|
|
559
558
|
interface MenuItemChild {
|
|
560
559
|
/** 차일드 아이템 ID */
|
|
@@ -632,7 +631,7 @@ declare const MenuItem: React$2.FC<MenuItemProps>;
|
|
|
632
631
|
* 접근성: ARIA 가이드라인 준수, 키보드 네비게이션 지원
|
|
633
632
|
*/
|
|
634
633
|
|
|
635
|
-
type NavbarSize = '
|
|
634
|
+
type NavbarSize = 's' | 'm' | 'l';
|
|
636
635
|
type NavbarVariant = 'default' | 'transparent' | 'solid';
|
|
637
636
|
type NavbarPosition = 'fixed' | 'sticky' | 'static';
|
|
638
637
|
interface NavbarItem extends Omit<MenuItemProps, 'onClick' | 'onChildClick'> {
|
|
@@ -697,7 +696,7 @@ declare const Navbar: React$2.FC<NavbarProps>;
|
|
|
697
696
|
* 접근성: ARIA 가이드라인 준수, 키보드 네비게이션 지원
|
|
698
697
|
*/
|
|
699
698
|
|
|
700
|
-
type SidebarSize = '
|
|
699
|
+
type SidebarSize = 's' | 'm' | 'l';
|
|
701
700
|
type SidebarVariant = 'default' | 'dark' | 'light';
|
|
702
701
|
type SidebarPosition = 'left' | 'right';
|
|
703
702
|
interface SidebarItem extends Omit<MenuItemProps, 'onClick' | 'onChildClick'> {
|
|
@@ -757,7 +756,7 @@ declare const Sidebar: React$2.FC<SidebarProps>;
|
|
|
757
756
|
* 접근성: ARIA 가이드라인 준수, 키보드 네비게이션 지원
|
|
758
757
|
*/
|
|
759
758
|
|
|
760
|
-
type PaginationSize = '
|
|
759
|
+
type PaginationSize = 's' | 'm' | 'l';
|
|
761
760
|
type PaginationVariant = 'default' | 'outlined' | 'minimal';
|
|
762
761
|
type PaginationAlignment = 'left' | 'center' | 'right';
|
|
763
762
|
interface PaginationProps {
|
|
@@ -814,7 +813,7 @@ declare const Pagination: React$2.FC<PaginationProps>;
|
|
|
814
813
|
* 접근성: ARIA 가이드라인 준수, 키보드 네비게이션 지원
|
|
815
814
|
*/
|
|
816
815
|
|
|
817
|
-
type BreadcrumbsSize = '
|
|
816
|
+
type BreadcrumbsSize = 's' | 'm' | 'l';
|
|
818
817
|
type BreadcrumbsStyle = 'default' | 'contained' | 'underlined';
|
|
819
818
|
interface BreadcrumbItem {
|
|
820
819
|
/** 브레드크럼 아이템 ID */
|
|
@@ -16688,7 +16687,7 @@ declare namespace JSX$1 {
|
|
|
16688
16687
|
interface IntrinsicElements extends undefined.IntrinsicElements {}
|
|
16689
16688
|
}
|
|
16690
16689
|
|
|
16691
|
-
type TableSize = '
|
|
16690
|
+
type TableSize = 's' | 'm' | 'l';
|
|
16692
16691
|
type TableVariant = 'default' | 'striped' | 'bordered' | 'hoverable';
|
|
16693
16692
|
type SortDirection = 'asc' | 'desc' | null;
|
|
16694
16693
|
interface TableColumn<T = any> {
|
|
@@ -16777,7 +16776,7 @@ declare const Table: {
|
|
|
16777
16776
|
* 접근성: ARIA 가이드라인 준수, 키보드 네비게이션 지원
|
|
16778
16777
|
*/
|
|
16779
16778
|
|
|
16780
|
-
type ChipSize = '
|
|
16779
|
+
type ChipSize = 's' | 'm' | 'l';
|
|
16781
16780
|
type ChipVariant = 'default' | 'primary' | 'success' | 'warning' | 'danger' | 'info' | 'outlined' | 'neutral';
|
|
16782
16781
|
type ChipColor = 'primary' | 'success' | 'warning' | 'danger' | 'info' | 'neutral';
|
|
16783
16782
|
interface ChipProps {
|
|
@@ -16820,7 +16819,7 @@ declare const Chip: React$2.FC<ChipProps>;
|
|
|
16820
16819
|
* 접근성: ARIA 가이드라인 준수
|
|
16821
16820
|
*/
|
|
16822
16821
|
|
|
16823
|
-
type BadgeSize = '
|
|
16822
|
+
type BadgeSize = 's' | 'm' | 'l';
|
|
16824
16823
|
type BadgeVariant = 'primary' | 'secondary' | 'info' | 'success' | 'warning' | 'danger';
|
|
16825
16824
|
type BadgeStyle = 'dot' | 'number' | 'text' | 'outlined';
|
|
16826
16825
|
interface BadgeProps {
|
|
@@ -16853,7 +16852,7 @@ declare const Badge: React$2.FC<BadgeProps>;
|
|
|
16853
16852
|
* 접근성: ARIA 가이드라인 준수
|
|
16854
16853
|
*/
|
|
16855
16854
|
|
|
16856
|
-
type AvatarSize = 'xs' | '
|
|
16855
|
+
type AvatarSize = 'xs' | 's' | 'm' | 'l' | 'xl' | '2xl';
|
|
16857
16856
|
type AvatarVariant = 'default' | 'primary' | 'success' | 'warning' | 'danger' | 'info';
|
|
16858
16857
|
type AvatarStatus = 'online' | 'offline' | 'away' | 'busy';
|
|
16859
16858
|
interface AvatarProps {
|
|
@@ -16937,7 +16936,7 @@ declare const Divider: React$2.FC<DividerProps>;
|
|
|
16937
16936
|
* 접근성: ARIA 가이드라인 준수, 키보드 네비게이션 지원
|
|
16938
16937
|
*/
|
|
16939
16938
|
|
|
16940
|
-
type RangeSliderSize = '
|
|
16939
|
+
type RangeSliderSize = 's' | 'm' | 'l';
|
|
16941
16940
|
type RangeSliderVariant = 'default' | 'primary' | 'success' | 'warning' | 'danger';
|
|
16942
16941
|
interface RangeSliderProps {
|
|
16943
16942
|
/** 현재 값 (단일 값) */
|
|
@@ -16992,7 +16991,7 @@ declare const RangeSlider: React$2.FC<RangeSliderProps>;
|
|
|
16992
16991
|
*/
|
|
16993
16992
|
|
|
16994
16993
|
type TooltipPosition = 'top' | 'bottom' | 'left' | 'right' | 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end' | 'left-start' | 'left-end' | 'right-start' | 'right-end';
|
|
16995
|
-
type TooltipSize = '
|
|
16994
|
+
type TooltipSize = 's' | 'm' | 'l';
|
|
16996
16995
|
type TooltipVariant = 'default' | 'primary' | 'success' | 'warning' | 'danger' | 'info';
|
|
16997
16996
|
interface TooltipProps {
|
|
16998
16997
|
/** 툴팁 내용 */
|
|
@@ -17033,7 +17032,7 @@ declare const Tooltip: React$2.FC<TooltipProps>;
|
|
|
17033
17032
|
*/
|
|
17034
17033
|
|
|
17035
17034
|
type PopoverPosition = 'top' | 'bottom' | 'left' | 'right' | 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end' | 'left-start' | 'left-end' | 'right-start' | 'right-end';
|
|
17036
|
-
type PopoverSize = '
|
|
17035
|
+
type PopoverSize = 's' | 'm' | 'l';
|
|
17037
17036
|
type PopoverVariant = 'default' | 'primary' | 'success' | 'warning' | 'danger' | 'info';
|
|
17038
17037
|
type PopoverTrigger = 'click' | 'hover' | 'focus' | 'manual';
|
|
17039
17038
|
interface PopoverProps {
|
|
@@ -17085,14 +17084,14 @@ declare const Popover: React$2.FC<PopoverProps>;
|
|
|
17085
17084
|
*/
|
|
17086
17085
|
|
|
17087
17086
|
type AlertVariant = 'info' | 'success' | 'warning' | 'danger';
|
|
17088
|
-
type AlertSize = '
|
|
17087
|
+
type AlertSize = 's' | 'm' | 'l';
|
|
17089
17088
|
interface AlertAction {
|
|
17090
17089
|
/** 액션 라벨 */
|
|
17091
17090
|
label: string;
|
|
17092
17091
|
/** 액션 타입 */
|
|
17093
17092
|
variant?: 'primary' | 'secondary' | 'danger' | 'success';
|
|
17094
17093
|
/** 액션 크기 */
|
|
17095
|
-
size?: '
|
|
17094
|
+
size?: 's' | 'm' | 'l';
|
|
17096
17095
|
/** 액션 핸들러 */
|
|
17097
17096
|
onClick: () => void;
|
|
17098
17097
|
/** 액션 비활성화 여부 */
|
|
@@ -17133,7 +17132,7 @@ declare const Alert: React$2.FC<AlertProps>;
|
|
|
17133
17132
|
*/
|
|
17134
17133
|
|
|
17135
17134
|
type ConfirmVariant = 'info' | 'success' | 'warning' | 'danger';
|
|
17136
|
-
type ConfirmSize = '
|
|
17135
|
+
type ConfirmSize = 's' | 'm' | 'l';
|
|
17137
17136
|
interface ConfirmProps {
|
|
17138
17137
|
/** 확인 다이얼로그 열림 상태 */
|
|
17139
17138
|
open: boolean;
|
|
@@ -17204,7 +17203,7 @@ interface AccordionProps {
|
|
|
17204
17203
|
/** 아코디언 스타일 */
|
|
17205
17204
|
style?: 'default' | 'bordered' | 'separated' | 'contained';
|
|
17206
17205
|
/** 아코디언 크기 */
|
|
17207
|
-
size?: '
|
|
17206
|
+
size?: 's' | 'm' | 'l';
|
|
17208
17207
|
/** 다중 확장 허용 여부 */
|
|
17209
17208
|
allowMultiple?: boolean;
|
|
17210
17209
|
/** 기본적으로 확장된 아이템들 (allowMultiple이 true일 때만 사용) */
|
|
@@ -17301,7 +17300,7 @@ interface TextareaProps {
|
|
|
17301
17300
|
/** 제어 값 */
|
|
17302
17301
|
value?: string;
|
|
17303
17302
|
/** 크기 */
|
|
17304
|
-
size?: '
|
|
17303
|
+
size?: 's' | 'm' | 'l';
|
|
17305
17304
|
/** 행 수 */
|
|
17306
17305
|
rows?: number;
|
|
17307
17306
|
/** 최대 글자 수 */
|
|
@@ -17352,7 +17351,7 @@ type ImageRatio = '1:1' | '16:9' | '4:3' | '3:2' | '3:4' | '2:1' | 'auto';
|
|
|
17352
17351
|
type ImageFit = 'cover' | 'contain' | 'fill' | 'none' | 'scale-down';
|
|
17353
17352
|
type ImageLoading = 'lazy' | 'eager';
|
|
17354
17353
|
type ImagePlaceholder = 'skeleton' | 'blur' | 'none';
|
|
17355
|
-
type ImageRounded = boolean | '
|
|
17354
|
+
type ImageRounded = boolean | 's' | 'm' | 'l' | 'full';
|
|
17356
17355
|
interface ImageProps {
|
|
17357
17356
|
/** 이미지 소스 URL */
|
|
17358
17357
|
src: string;
|
|
@@ -17383,7 +17382,7 @@ interface ImageProps {
|
|
|
17383
17382
|
/** 전체 높이 사용 */
|
|
17384
17383
|
fullHeight?: boolean;
|
|
17385
17384
|
/** 그림자 효과 */
|
|
17386
|
-
shadow?: boolean | '
|
|
17385
|
+
shadow?: boolean | 's' | 'm' | 'l';
|
|
17387
17386
|
/** 호버 효과 */
|
|
17388
17387
|
hover?: boolean;
|
|
17389
17388
|
/** 클릭 핸들러 */
|
|
@@ -17406,8 +17405,8 @@ declare const Image: React$2.FC<ImageProps>;
|
|
|
17406
17405
|
* 반응형 디자인을 위한 다양한 크기 옵션을 제공합니다.
|
|
17407
17406
|
*/
|
|
17408
17407
|
|
|
17409
|
-
type ContainerSize = '
|
|
17410
|
-
type ContainerPadding = 'none' | '
|
|
17408
|
+
type ContainerSize = 's' | 'm' | 'l' | 'xl' | 'full';
|
|
17409
|
+
type ContainerPadding = 'none' | 's' | 'm' | 'l' | 'xl';
|
|
17411
17410
|
type ContainerVariant = 'plain' | 'wrapper';
|
|
17412
17411
|
interface ContainerProps {
|
|
17413
17412
|
/** 컨테이너 크기 */
|
|
@@ -17425,9 +17424,9 @@ interface ContainerProps {
|
|
|
17425
17424
|
/** 테두리 (wrapper 변형에서만 적용) */
|
|
17426
17425
|
border?: boolean;
|
|
17427
17426
|
/** 둥근 모서리 (wrapper 변형에서만 적용) */
|
|
17428
|
-
rounded?: boolean | '
|
|
17427
|
+
rounded?: boolean | 's' | 'm' | 'l';
|
|
17429
17428
|
/** 그림자 (wrapper 변형에서만 적용) */
|
|
17430
|
-
shadow?: boolean | '
|
|
17429
|
+
shadow?: boolean | 's' | 'm' | 'l';
|
|
17431
17430
|
/** 추가 CSS 클래스 */
|
|
17432
17431
|
className?: string;
|
|
17433
17432
|
/** 자식 요소 */
|
|
@@ -17445,7 +17444,7 @@ declare const Container: React$2.FC<ContainerProps>;
|
|
|
17445
17444
|
type StackDirection = 'vertical' | 'horizontal';
|
|
17446
17445
|
type StackAlignment = 'start' | 'center' | 'end' | 'stretch';
|
|
17447
17446
|
type StackJustify = 'start' | 'center' | 'end' | 'space-between' | 'space-around' | 'space-evenly';
|
|
17448
|
-
type StackSpacing = 'none' | 'xs' | '
|
|
17447
|
+
type StackSpacing = 'none' | 'xs' | 's' | 'm' | 'l' | 'xl';
|
|
17449
17448
|
interface StackProps {
|
|
17450
17449
|
/** 스택 방향 */
|
|
17451
17450
|
direction?: StackDirection;
|
|
@@ -17475,7 +17474,7 @@ declare const Stack: React$2.FC<StackProps>;
|
|
|
17475
17474
|
* 컬럼 수, 간격, 정렬 등을 설정할 수 있습니다.
|
|
17476
17475
|
*/
|
|
17477
17476
|
|
|
17478
|
-
type GridBreakpoint = 'xs' | '
|
|
17477
|
+
type GridBreakpoint = 'xs' | 's' | 'm' | 'l' | 'xl';
|
|
17479
17478
|
type GridSize = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 'auto';
|
|
17480
17479
|
type GridAlignment = 'start' | 'center' | 'end' | 'stretch';
|
|
17481
17480
|
type GridJustify = 'start' | 'center' | 'end' | 'around' | 'between' | 'evenly';
|
|
@@ -17556,7 +17555,7 @@ declare const GridRow: React$2.FC<GridRowProps>;
|
|
|
17556
17555
|
declare const GridCol: React$2.FC<GridColProps>;
|
|
17557
17556
|
|
|
17558
17557
|
type FormLayout = 'vertical' | 'horizontal' | 'inline';
|
|
17559
|
-
type FormSize = '
|
|
17558
|
+
type FormSize = 's' | 'm' | 'l';
|
|
17560
17559
|
type FormVariant = 'default' | 'bordered' | 'filled';
|
|
17561
17560
|
interface FormField {
|
|
17562
17561
|
/** 필드 이름 */
|
|
@@ -17664,7 +17663,7 @@ declare const Form: React$2.FC<FormProps>;
|
|
|
17664
17663
|
|
|
17665
17664
|
type SharePlatform = 'facebook' | 'twitter' | 'instagram' | 'linkedin' | 'pinterest' | 'whatsapp' | 'telegram' | 'email' | 'link' | 'qr';
|
|
17666
17665
|
type ShareVariant = 'button' | 'dropdown' | 'modal' | 'inline';
|
|
17667
|
-
type ShareSize = '
|
|
17666
|
+
type ShareSize = 's' | 'm' | 'l';
|
|
17668
17667
|
type SharePosition = 'top' | 'bottom' | 'left' | 'right';
|
|
17669
17668
|
interface SharePlatformConfig {
|
|
17670
17669
|
/** 플랫폼 이름 */
|
|
@@ -17729,7 +17728,7 @@ interface ShareProps {
|
|
|
17729
17728
|
declare const Share: React$2.FC<ShareProps>;
|
|
17730
17729
|
|
|
17731
17730
|
type CardVariant = 'default' | 'elevated' | 'outlined' | 'filled' | 'flat';
|
|
17732
|
-
type CardSize = '
|
|
17731
|
+
type CardSize = 's' | 'm' | 'l' | 'xl';
|
|
17733
17732
|
type CardLayout = 'vertical' | 'horizontal' | 'compact';
|
|
17734
17733
|
type CardImagePosition = 'top' | 'bottom' | 'left' | 'right' | 'background';
|
|
17735
17734
|
interface CardImage {
|
|
@@ -17754,7 +17753,7 @@ interface CardAction {
|
|
|
17754
17753
|
/** 액션 타입 */
|
|
17755
17754
|
variant?: 'primary' | 'secondary' | 'outline' | 'ghost' | 'link';
|
|
17756
17755
|
/** 액션 크기 */
|
|
17757
|
-
size?: '
|
|
17756
|
+
size?: 's' | 'm' | 'l';
|
|
17758
17757
|
/** 액션 아이콘 */
|
|
17759
17758
|
icon?: React$2.ComponentType<any>;
|
|
17760
17759
|
/** 액션 클릭 핸들러 */
|
|
@@ -17832,7 +17831,7 @@ interface CardProps {
|
|
|
17832
17831
|
declare const Card: React$2.ForwardRefExoticComponent<CardProps & React$2.RefAttributes<HTMLDivElement>>;
|
|
17833
17832
|
|
|
17834
17833
|
type ReorderVariant = 'default' | 'bordered' | 'filled' | 'minimal';
|
|
17835
|
-
type ReorderSize = '
|
|
17834
|
+
type ReorderSize = 's' | 'm' | 'l';
|
|
17836
17835
|
type ReorderOrientation = 'vertical' | 'horizontal';
|
|
17837
17836
|
interface ReorderItem {
|
|
17838
17837
|
/** 아이템 고유 ID */
|
|
@@ -17893,7 +17892,7 @@ declare const Reorder: React$2.FC<ReorderProps>;
|
|
|
17893
17892
|
|
|
17894
17893
|
type ScrollDirection = 'vertical' | 'horizontal' | 'both';
|
|
17895
17894
|
type ScrollbarStyle = 'auto' | 'thin' | 'none';
|
|
17896
|
-
type ScrollAreaSize = '
|
|
17895
|
+
type ScrollAreaSize = 's' | 'm' | 'l' | 'xl';
|
|
17897
17896
|
interface ScrollAreaProps {
|
|
17898
17897
|
/** 스크롤 방향 */
|
|
17899
17898
|
direction?: ScrollDirection;
|
|
@@ -17932,7 +17931,7 @@ declare const ScrollArea: React$2.FC<ScrollAreaProps>;
|
|
|
17932
17931
|
*/
|
|
17933
17932
|
|
|
17934
17933
|
type SplitDirection = 'horizontal' | 'vertical';
|
|
17935
|
-
type SplitSize = '
|
|
17934
|
+
type SplitSize = 's' | 'm' | 'l' | 'xl';
|
|
17936
17935
|
type SplitMode = 'ratio' | 'fixed';
|
|
17937
17936
|
interface SplitViewProps {
|
|
17938
17937
|
/** 분할 방향 */
|
|
@@ -17973,7 +17972,7 @@ declare const SplitView: React$2.FC<SplitViewProps>;
|
|
|
17973
17972
|
* 헤더, 콘텐츠, 푸터 영역을 포함할 수 있습니다.
|
|
17974
17973
|
*/
|
|
17975
17974
|
|
|
17976
|
-
type SectionSize = '
|
|
17975
|
+
type SectionSize = 's' | 'm' | 'l' | 'xl';
|
|
17977
17976
|
type SectionVariant = 'default' | 'elevated' | 'outlined' | 'filled';
|
|
17978
17977
|
interface SectionProps {
|
|
17979
17978
|
/** 섹션 제목 */
|
|
@@ -18014,7 +18013,7 @@ declare const Section: React$2.FC<SectionProps>;
|
|
|
18014
18013
|
|
|
18015
18014
|
type TimelinePosition = 'left' | 'right' | 'alternate' | 'reverse-alternate';
|
|
18016
18015
|
type TimelineVariant = 'default' | 'outlined' | 'filled';
|
|
18017
|
-
type TimelineSize = '
|
|
18016
|
+
type TimelineSize = 's' | 'm' | 'l';
|
|
18018
18017
|
type TimelineColor = 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'info' | 'default';
|
|
18019
18018
|
interface TimelineItem {
|
|
18020
18019
|
/** 아이템 ID */
|
|
@@ -18065,7 +18064,7 @@ interface TimelineProps {
|
|
|
18065
18064
|
declare const Timeline: React$2.FC<TimelineProps>;
|
|
18066
18065
|
|
|
18067
18066
|
type ProgressStepVariant = 'default' | 'outlined' | 'filled' | 'minimal';
|
|
18068
|
-
type ProgressStepSize = '
|
|
18067
|
+
type ProgressStepSize = 's' | 'm' | 'l';
|
|
18069
18068
|
type ProgressStepLayout = 'vertical' | 'horizontal' | 'alternating';
|
|
18070
18069
|
interface ProgressStepItem {
|
|
18071
18070
|
/** 단계 ID */
|
|
@@ -18120,7 +18119,7 @@ declare const ProgressStep: React$2.FC<ProgressStepProps>;
|
|
|
18120
18119
|
* 숫자, 라벨, 설명, 아이콘 등을 포함할 수 있습니다.
|
|
18121
18120
|
*/
|
|
18122
18121
|
|
|
18123
|
-
type StatSize = '
|
|
18122
|
+
type StatSize = 's' | 'm' | 'l' | 'xl';
|
|
18124
18123
|
type StatVariant = 'default' | 'minimal' | 'card' | 'colored';
|
|
18125
18124
|
type StatLayout = 'horizontal' | 'vertical' | 'reverse';
|
|
18126
18125
|
type StatColor = 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'info' | 'custom';
|
|
@@ -18179,7 +18178,7 @@ declare const Stat: React$2.FC<StatProps>;
|
|
|
18179
18178
|
* 읽기 전용과 인터랙티브 모드를 지원합니다.
|
|
18180
18179
|
*/
|
|
18181
18180
|
|
|
18182
|
-
type RatingSize = 'xs' | '
|
|
18181
|
+
type RatingSize = 'xs' | 's' | 'm' | 'l' | 'xl';
|
|
18183
18182
|
type RatingVariant = 'default' | 'minimal' | 'card' | 'inline' | 'large';
|
|
18184
18183
|
type RatingType = 'star' | 'number' | 'percentage' | 'text';
|
|
18185
18184
|
type RatingDisplay = 'stars' | 'number' | 'both' | 'reviews' | 'detailed';
|
|
@@ -18229,7 +18228,7 @@ interface RatingProps {
|
|
|
18229
18228
|
}
|
|
18230
18229
|
declare const Rating: React$2.FC<RatingProps>;
|
|
18231
18230
|
|
|
18232
|
-
type VideoPlayerSize = '
|
|
18231
|
+
type VideoPlayerSize = 's' | 'm' | 'l' | 'xl';
|
|
18233
18232
|
type VideoPlayerVariant = 'default' | 'minimal' | 'theater' | 'picture-in-picture';
|
|
18234
18233
|
type VideoPlayerTheme = 'light' | 'dark' | 'auto';
|
|
18235
18234
|
interface VideoPlayerProps {
|
|
@@ -18321,7 +18320,7 @@ interface VideoPlayerProps {
|
|
|
18321
18320
|
}
|
|
18322
18321
|
declare const VideoPlayer: React$2.FC<VideoPlayerProps>;
|
|
18323
18322
|
|
|
18324
|
-
type AudioPlayerSize = '
|
|
18323
|
+
type AudioPlayerSize = 's' | 'm' | 'l' | 'xl';
|
|
18325
18324
|
type AudioPlayerVariant = 'default' | 'minimal' | 'compact' | 'full';
|
|
18326
18325
|
type AudioPlayerTheme = 'light' | 'dark' | 'auto';
|
|
18327
18326
|
interface AudioPlayerProps {
|
|
@@ -18411,7 +18410,7 @@ declare const AudioPlayer: React$2.FC<AudioPlayerProps>;
|
|
|
18411
18410
|
* 파일 업로드 UI를 제공합니다.
|
|
18412
18411
|
*/
|
|
18413
18412
|
|
|
18414
|
-
type DropzoneSize = '
|
|
18413
|
+
type DropzoneSize = 's' | 'm' | 'l';
|
|
18415
18414
|
type DropzoneVariant = 'default' | 'outlined' | 'filled';
|
|
18416
18415
|
interface DropzoneProps {
|
|
18417
18416
|
/** 드롭존 크기 */
|
|
@@ -18468,7 +18467,7 @@ declare const Dropzone: React$2.FC<DropzoneProps>;
|
|
|
18468
18467
|
* 파일 목록, 진행률, 상태 등을 표시합니다.
|
|
18469
18468
|
*/
|
|
18470
18469
|
|
|
18471
|
-
type FileUploaderSize = '
|
|
18470
|
+
type FileUploaderSize = 's' | 'm' | 'l';
|
|
18472
18471
|
type FileUploaderVariant = 'default' | 'outlined' | 'filled';
|
|
18473
18472
|
type FileStatus = 'pending' | 'uploading' | 'success' | 'error';
|
|
18474
18473
|
interface UploadFile {
|
|
@@ -18516,7 +18515,7 @@ declare const FileUploader: React$2.FC<FileUploaderProps>;
|
|
|
18516
18515
|
* 선형과 원형 진행률을 지원합니다.
|
|
18517
18516
|
*/
|
|
18518
18517
|
|
|
18519
|
-
type ProgressSize = '
|
|
18518
|
+
type ProgressSize = 's' | 'm' | 'l';
|
|
18520
18519
|
type ProgressVariant = 'default' | 'success' | 'warning' | 'danger';
|
|
18521
18520
|
type ProgressType = 'linear' | 'circular';
|
|
18522
18521
|
interface ProgressProps {
|
|
@@ -18550,7 +18549,7 @@ declare const Progress: React$2.FC<ProgressProps>;
|
|
|
18550
18549
|
* 최소값, 최대값, 단계값 등을 설정할 수 있습니다.
|
|
18551
18550
|
*/
|
|
18552
18551
|
|
|
18553
|
-
type StepperSize = '
|
|
18552
|
+
type StepperSize = 's' | 'm' | 'l';
|
|
18554
18553
|
type StepperVariant = 'default' | 'outlined' | 'filled';
|
|
18555
18554
|
interface StepperProps {
|
|
18556
18555
|
/** 현재 값 */
|
|
@@ -18588,7 +18587,7 @@ declare const Stepper: React$2.FC<StepperProps>;
|
|
|
18588
18587
|
*/
|
|
18589
18588
|
|
|
18590
18589
|
type GradientDirection = 'to-right' | 'to-left' | 'to-bottom' | 'to-top' | 'to-bottom-right' | 'to-bottom-left' | 'to-top-right' | 'to-top-left' | 'radial';
|
|
18591
|
-
type GradientSize = '
|
|
18590
|
+
type GradientSize = 's' | 'm' | 'l' | 'xl' | 'full';
|
|
18592
18591
|
type GradientVariant = 'default' | 'animated' | 'mesh';
|
|
18593
18592
|
interface GradientColor {
|
|
18594
18593
|
/** 색상 값 */
|
|
@@ -18627,7 +18626,7 @@ declare const Gradient: React$2.FC<GradientProps>;
|
|
|
18627
18626
|
* 버튼, 드롭다운, 구분선 등을 포함할 수 있습니다.
|
|
18628
18627
|
*/
|
|
18629
18628
|
|
|
18630
|
-
type ToolbarSize = '
|
|
18629
|
+
type ToolbarSize = 's' | 'm' | 'l';
|
|
18631
18630
|
type ToolbarVariant = 'default' | 'outlined' | 'filled' | 'ghost';
|
|
18632
18631
|
type ToolbarPosition = 'top' | 'bottom' | 'left' | 'right' | 'floating';
|
|
18633
18632
|
interface ToolbarItem {
|
|
@@ -18694,7 +18693,7 @@ declare const Toolbar: React$2.FC<ToolbarProps>;
|
|
|
18694
18693
|
* 12시간/24시간 형식, 시간/분 선택, 드롭다운 형태를 지원합니다.
|
|
18695
18694
|
*/
|
|
18696
18695
|
|
|
18697
|
-
type TimePickerSize = '
|
|
18696
|
+
type TimePickerSize = 's' | 'm' | 'l';
|
|
18698
18697
|
type TimePickerVariant = 'default' | 'outlined' | 'filled';
|
|
18699
18698
|
type TimeFormat = '12h' | '24h';
|
|
18700
18699
|
type TimePickerMode = 'dropdown' | 'inline';
|
|
@@ -18740,7 +18739,7 @@ declare const TimePicker: React$2.FC<TimePickerProps>;
|
|
|
18740
18739
|
*/
|
|
18741
18740
|
|
|
18742
18741
|
type DatePickerMode = 'single' | 'range' | 'multiple';
|
|
18743
|
-
type DatePickerSize = '
|
|
18742
|
+
type DatePickerSize = 's' | 'm' | 'l';
|
|
18744
18743
|
type DatePickerVariant = 'default' | 'outlined' | 'filled';
|
|
18745
18744
|
type StartOfWeek = 'sunday' | 'monday';
|
|
18746
18745
|
interface DatePickerEvent {
|
|
@@ -18782,7 +18781,7 @@ interface DatePickerProps {
|
|
|
18782
18781
|
}
|
|
18783
18782
|
declare const DatePicker: React$2.FC<DatePickerProps>;
|
|
18784
18783
|
|
|
18785
|
-
type MarkdownEditorSize = '
|
|
18784
|
+
type MarkdownEditorSize = 's' | 'm' | 'l';
|
|
18786
18785
|
type MarkdownEditorVariant = 'default' | 'outlined' | 'filled';
|
|
18787
18786
|
type MarkdownEditorMode = 'edit' | 'preview' | 'split' | 'code';
|
|
18788
18787
|
type MarkdownEditorTheme = 'light' | 'dark';
|
|
@@ -18854,7 +18853,7 @@ interface MarkdownEditorProps {
|
|
|
18854
18853
|
}
|
|
18855
18854
|
declare const MarkdownEditor: React$2.FC<MarkdownEditorProps>;
|
|
18856
18855
|
|
|
18857
|
-
type LightboxSize = '
|
|
18856
|
+
type LightboxSize = 's' | 'm' | 'l' | 'xl';
|
|
18858
18857
|
type LightboxVariant = 'default' | 'minimal' | 'fullscreen';
|
|
18859
18858
|
type LightboxTheme = 'light' | 'dark';
|
|
18860
18859
|
interface LightboxImage {
|
|
@@ -18927,7 +18926,7 @@ interface LightboxProps {
|
|
|
18927
18926
|
}
|
|
18928
18927
|
declare const Lightbox: React$2.FC<LightboxProps>;
|
|
18929
18928
|
|
|
18930
|
-
type CarouselSize = '
|
|
18929
|
+
type CarouselSize = 's' | 'm' | 'l' | 'xl';
|
|
18931
18930
|
type CarouselVariant = 'default' | 'cards' | 'gallery' | 'hero' | 'testimonial';
|
|
18932
18931
|
type CarouselTheme = 'light' | 'dark';
|
|
18933
18932
|
type CarouselTransition = 'slide' | 'fade' | 'zoom' | 'flip' | 'cube';
|
|
@@ -19042,7 +19041,7 @@ interface CarouselProps {
|
|
|
19042
19041
|
}
|
|
19043
19042
|
declare const Carousel: React$2.FC<CarouselProps>;
|
|
19044
19043
|
|
|
19045
|
-
type ListSize = '
|
|
19044
|
+
type ListSize = 's' | 'm' | 'l';
|
|
19046
19045
|
type ListVariant = 'default' | 'bordered' | 'card' | 'minimal';
|
|
19047
19046
|
type ListItemType = 'default' | 'interactive' | 'selectable' | 'draggable';
|
|
19048
19047
|
type ListLayout = 'vertical' | 'horizontal';
|
|
@@ -19097,7 +19096,7 @@ interface ListProps {
|
|
|
19097
19096
|
/** 드래그 가능 여부 */
|
|
19098
19097
|
draggable?: boolean;
|
|
19099
19098
|
/** 아이템 간격 */
|
|
19100
|
-
spacing?: 'none' | '
|
|
19099
|
+
spacing?: 'none' | 's' | 'm' | 'l';
|
|
19101
19100
|
/** 아이템 정렬 */
|
|
19102
19101
|
alignment?: 'start' | 'center' | 'end' | 'stretch';
|
|
19103
19102
|
/** 아이템 클릭 핸들러 */
|
|
@@ -19117,7 +19116,7 @@ interface ListProps {
|
|
|
19117
19116
|
}
|
|
19118
19117
|
declare const List: React$2.FC<ListProps>;
|
|
19119
19118
|
|
|
19120
|
-
type HeroFeatureSize = '
|
|
19119
|
+
type HeroFeatureSize = 's' | 'm' | 'l' | 'xl';
|
|
19121
19120
|
type HeroFeatureVariant = 'default' | 'centered' | 'split' | 'overlay' | 'minimal';
|
|
19122
19121
|
type HeroFeatureTheme = 'light' | 'dark' | 'gradient' | 'image';
|
|
19123
19122
|
type HeroFeatureAlignment = 'left' | 'center' | 'right';
|
|
@@ -19129,7 +19128,7 @@ interface HeroFeatureButton {
|
|
|
19129
19128
|
/** 버튼 타입 */
|
|
19130
19129
|
variant?: 'primary' | 'secondary' | 'outline' | 'ghost';
|
|
19131
19130
|
/** 버튼 크기 */
|
|
19132
|
-
size?: '
|
|
19131
|
+
size?: 's' | 'm' | 'l';
|
|
19133
19132
|
/** 클릭 핸들러 */
|
|
19134
19133
|
onClick?: () => void;
|
|
19135
19134
|
/** 아이콘 */
|
|
@@ -19195,7 +19194,7 @@ interface HeroFeatureProps {
|
|
|
19195
19194
|
}
|
|
19196
19195
|
declare const HeroFeature: React$2.FC<HeroFeatureProps>;
|
|
19197
19196
|
|
|
19198
|
-
type BannerSize = '
|
|
19197
|
+
type BannerSize = 's' | 'm' | 'l';
|
|
19199
19198
|
type BannerVariant = 'default' | 'success' | 'warning' | 'error' | 'info' | 'promo';
|
|
19200
19199
|
type BannerStyle = 'solid' | 'outline' | 'soft' | 'gradient';
|
|
19201
19200
|
type BannerPosition = 'top' | 'bottom' | 'fixed' | 'sticky';
|
|
@@ -19208,7 +19207,7 @@ interface BannerAction {
|
|
|
19208
19207
|
/** 액션 타입 */
|
|
19209
19208
|
variant?: 'primary' | 'secondary' | 'outline' | 'ghost';
|
|
19210
19209
|
/** 액션 크기 */
|
|
19211
|
-
size?: '
|
|
19210
|
+
size?: 's' | 'm' | 'l';
|
|
19212
19211
|
/** 클릭 핸들러 */
|
|
19213
19212
|
onClick?: () => void;
|
|
19214
19213
|
/** 아이콘 */
|
|
@@ -19276,7 +19275,7 @@ interface SkeletonProps {
|
|
|
19276
19275
|
/** 스켈레톤 variant */
|
|
19277
19276
|
variant?: 'text' | 'circular' | 'rectangular' | 'rounded';
|
|
19278
19277
|
/** 스켈레톤 크기 */
|
|
19279
|
-
size?: 'xs' | '
|
|
19278
|
+
size?: 'xs' | 's' | 'm' | 'l' | 'xl';
|
|
19280
19279
|
/** 너비 (CSS 값) */
|
|
19281
19280
|
width?: string | number;
|
|
19282
19281
|
/** 높이 (CSS 값) */
|
|
@@ -19308,7 +19307,7 @@ declare const Skeleton: React$2.ForwardRefExoticComponent<Omit<SkeletonProps, "r
|
|
|
19308
19307
|
* 접근성: 스크린 리더 지원, 키보드 네비게이션
|
|
19309
19308
|
*/
|
|
19310
19309
|
|
|
19311
|
-
type YouTubePlayerSize = '
|
|
19310
|
+
type YouTubePlayerSize = 's' | 'm' | 'l' | 'xl' | 'full';
|
|
19312
19311
|
type YouTubePlayerVariant = 'default' | 'minimal' | 'theater' | 'picture-in-picture';
|
|
19313
19312
|
type YouTubePlayerTheme = 'light' | 'dark' | 'auto';
|
|
19314
19313
|
interface YouTubePlayerProps {
|
|
@@ -19439,7 +19438,7 @@ declare const Backdrop: React$2.ForwardRefExoticComponent<Omit<BackdropProps, "r
|
|
|
19439
19438
|
* 접근성: 스크린 리더 지원, 키보드 네비게이션, 포커스 트랩
|
|
19440
19439
|
*/
|
|
19441
19440
|
|
|
19442
|
-
type BottomSheetSize = '
|
|
19441
|
+
type BottomSheetSize = 's' | 'm' | 'l' | 'xl' | 'full';
|
|
19443
19442
|
type BottomSheetVariant = 'default' | 'persistent' | 'temporary' | 'fullscreen';
|
|
19444
19443
|
interface BottomSheetProps {
|
|
19445
19444
|
/** 표시 여부 */
|
|
@@ -19494,51 +19493,28 @@ declare const BottomSheet: React$2.ForwardRefExoticComponent<Omit<BottomSheetPro
|
|
|
19494
19493
|
/**
|
|
19495
19494
|
* FloatingActionButton 컴포넌트
|
|
19496
19495
|
*
|
|
19497
|
-
* 목적: 화면
|
|
19498
|
-
* 기능: 다양한
|
|
19496
|
+
* 목적: 화면 우측 하단에 고정된 떠있는 액션 버튼
|
|
19497
|
+
* 기능: 다양한 크기와 색상 변형 지원
|
|
19499
19498
|
* 접근성: 스크린 리더 지원, 키보드 네비게이션, 포커스 표시
|
|
19500
19499
|
*/
|
|
19501
19500
|
|
|
19502
|
-
type FloatingActionButtonSize = '
|
|
19501
|
+
type FloatingActionButtonSize = 's' | 'm' | 'l' | 'xl';
|
|
19503
19502
|
type FloatingActionButtonVariant = 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'info';
|
|
19504
|
-
type FloatingActionButtonPosition = 'bottom-right' | 'bottom-left' | 'top-right' | 'top-left' | 'center';
|
|
19505
19503
|
interface FloatingActionButtonProps {
|
|
19506
19504
|
/** 버튼 크기 */
|
|
19507
19505
|
size?: FloatingActionButtonSize;
|
|
19508
19506
|
/** 버튼 스타일 변형 */
|
|
19509
19507
|
variant?: FloatingActionButtonVariant;
|
|
19510
|
-
/** 버튼 위치 */
|
|
19511
|
-
position?: FloatingActionButtonPosition;
|
|
19512
19508
|
/** 아이콘 */
|
|
19513
19509
|
icon?: React$2.ReactNode;
|
|
19514
|
-
/** 라벨 텍스트 */
|
|
19515
|
-
label?: string;
|
|
19516
|
-
/** 확장된 FAB 여부 */
|
|
19517
|
-
extended?: boolean;
|
|
19518
19510
|
/** 비활성화 여부 */
|
|
19519
19511
|
disabled?: boolean;
|
|
19520
|
-
/** 로딩 상태 */
|
|
19521
|
-
loading?: boolean;
|
|
19522
|
-
/** 애니메이션 효과 */
|
|
19523
|
-
animation?: 'scale' | 'rotate' | 'bounce' | 'pulse' | 'none';
|
|
19524
|
-
/** 그림자 효과 */
|
|
19525
|
-
elevation?: 'none' | 'sm' | 'md' | 'lg' | 'xl';
|
|
19526
19512
|
/** 클릭 시 호출되는 함수 */
|
|
19527
19513
|
onClick?: (event: React$2.MouseEvent<HTMLButtonElement>) => void;
|
|
19528
|
-
/** 마우스 진입 시 호출되는 함수 */
|
|
19529
|
-
onMouseEnter?: (event: React$2.MouseEvent<HTMLButtonElement>) => void;
|
|
19530
|
-
/** 마우스 이탈 시 호출되는 함수 */
|
|
19531
|
-
onMouseLeave?: (event: React$2.MouseEvent<HTMLButtonElement>) => void;
|
|
19532
|
-
/** 포커스 시 호출되는 함수 */
|
|
19533
|
-
onFocus?: (event: React$2.FocusEvent<HTMLButtonElement>) => void;
|
|
19534
|
-
/** 블러 시 호출되는 함수 */
|
|
19535
|
-
onBlur?: (event: React$2.FocusEvent<HTMLButtonElement>) => void;
|
|
19536
19514
|
/** 추가 CSS 클래스 */
|
|
19537
19515
|
className?: string;
|
|
19538
19516
|
/** 스타일 객체 */
|
|
19539
19517
|
style?: React$2.CSSProperties;
|
|
19540
|
-
/** 자식 요소 */
|
|
19541
|
-
children?: React$2.ReactNode;
|
|
19542
19518
|
/** 추가 props */
|
|
19543
19519
|
[key: string]: any;
|
|
19544
19520
|
}
|
|
@@ -19596,6 +19572,8 @@ interface CalendarProps {
|
|
|
19596
19572
|
showWeekends?: boolean;
|
|
19597
19573
|
/** 오늘 날짜 하이라이트 여부 */
|
|
19598
19574
|
highlightToday?: boolean;
|
|
19575
|
+
/** 외부 날짜(이전/다음 달) 표시 여부 */
|
|
19576
|
+
showOutsideDays?: boolean;
|
|
19599
19577
|
/** 다국어 지원 */
|
|
19600
19578
|
locale?: string;
|
|
19601
19579
|
/** 추가 CSS 클래스 */
|
|
@@ -19608,7 +19586,7 @@ interface CalendarProps {
|
|
|
19608
19586
|
declare const Calendar: React$2.FC<CalendarProps>;
|
|
19609
19587
|
|
|
19610
19588
|
type DrawerPosition = 'left' | 'right' | 'top' | 'bottom';
|
|
19611
|
-
type DrawerSize = '
|
|
19589
|
+
type DrawerSize = 's' | 'm' | 'l' | 'xl' | 'full';
|
|
19612
19590
|
interface DrawerProps {
|
|
19613
19591
|
/** Drawer가 열려있는지 여부 */
|
|
19614
19592
|
isOpen: boolean;
|
|
@@ -19649,7 +19627,7 @@ declare const Drawer: React$2.FC<DrawerProps>;
|
|
|
19649
19627
|
|
|
19650
19628
|
type ImageListLayout = 'grid' | 'list' | 'gallery' | 'carousel';
|
|
19651
19629
|
type ImageListColumns = 1 | 2 | 3 | 4 | 5 | 6;
|
|
19652
|
-
type ImageListSpacing = 'xs' | '
|
|
19630
|
+
type ImageListSpacing = 'xs' | 's' | 'm' | 'l' | 'xl';
|
|
19653
19631
|
interface ImageItem {
|
|
19654
19632
|
/** 이미지 ID */
|
|
19655
19633
|
id?: string;
|
|
@@ -19713,7 +19691,7 @@ interface ImageListProps {
|
|
|
19713
19691
|
declare const ImageList: React$2.FC<ImageListProps>;
|
|
19714
19692
|
|
|
19715
19693
|
type MasonryColumns = 1 | 2 | 3 | 4 | 5 | 6;
|
|
19716
|
-
type MasonrySpacing = 'xs' | '
|
|
19694
|
+
type MasonrySpacing = 'xs' | 's' | 'm' | 'l' | 'xl';
|
|
19717
19695
|
type MasonryAnimation = 'fade' | 'slide' | 'zoom' | 'none';
|
|
19718
19696
|
interface MasonryItem {
|
|
19719
19697
|
/** 이미지 ID */
|
|
@@ -19803,7 +19781,7 @@ interface AnimationTextProps {
|
|
|
19803
19781
|
/** 애니메이션 방향 */
|
|
19804
19782
|
direction?: 'left' | 'right' | 'up' | 'down' | 'alternate';
|
|
19805
19783
|
/** 텍스트 크기 */
|
|
19806
|
-
size?: 'xs' | '
|
|
19784
|
+
size?: 'xs' | 's' | 'm' | 'l' | 'xl' | '2xl' | '3xl';
|
|
19807
19785
|
/** 텍스트 색상 */
|
|
19808
19786
|
color?: 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'info' | 'custom';
|
|
19809
19787
|
/** 커스텀 색상 */
|
|
@@ -19941,28 +19919,12 @@ interface ResizablePanelsProps {
|
|
|
19941
19919
|
}
|
|
19942
19920
|
declare const ResizablePanels: React$2.FC<ResizablePanelsProps>;
|
|
19943
19921
|
|
|
19944
|
-
interface ThemeToggleProps {
|
|
19945
|
-
/** 표시할 테마 옵션들 */
|
|
19946
|
-
themes?: Theme[];
|
|
19947
|
-
/** 기본 테마 */
|
|
19948
|
-
defaultTheme?: Theme;
|
|
19949
|
-
/** 컴포넌트 크기 */
|
|
19950
|
-
size?: 'sm' | 'md' | 'lg';
|
|
19951
|
-
/** 스타일 변형 */
|
|
19952
|
-
variant?: 'button' | 'dropdown' | 'tabs';
|
|
19953
|
-
/** 테마 변경 시 콜백 */
|
|
19954
|
-
onThemeChange?: (theme: Theme) => void;
|
|
19955
|
-
/** 클래스명 */
|
|
19956
|
-
className?: string;
|
|
19957
|
-
}
|
|
19958
|
-
declare const ThemeToggle: React$2.FC<ThemeToggleProps>;
|
|
19959
|
-
|
|
19960
19922
|
/**
|
|
19961
19923
|
* Designbase UI 컴포넌트 라이브러리 메인 엔트리 포인트
|
|
19962
19924
|
*
|
|
19963
19925
|
* 목적: 모든 UI 컴포넌트와 타입을 내보냄
|
|
19964
19926
|
* 기능: Tree-shaking 가능한 개별 컴포넌트 내보내기
|
|
19965
|
-
* 사용법: import { Button, Input } from '@
|
|
19927
|
+
* 사용법: import { Button, Input } from '@designbasekorea/ui'
|
|
19966
19928
|
*/
|
|
19967
19929
|
|
|
19968
19930
|
interface ComponentBaseProps {
|
|
@@ -19973,5 +19935,5 @@ declare const setTheme: (theme: string) => void;
|
|
|
19973
19935
|
declare const getTheme: () => string;
|
|
19974
19936
|
declare const toggleTheme: () => void;
|
|
19975
19937
|
|
|
19976
|
-
export { Accordion, Alert, AnimationBackground, AnimationText, AudioPlayer, Avatar, AvatarGroup, Backdrop, Badge, Banner, BottomSheet, Breadcrumbs, Button, Calendar, Card, Carousel, Checkbox, Chip, Confirm, Container, ContextMenu, DatePicker, Divider, Drawer, Dropdown, Dropzone, FileUploader, FloatingActionButton, Form, Gradient, Grid, GridCol, GridRow, HeroFeature, Image, ImageList, Input, Lightbox, List, Logo, MarkdownEditor, Masonry, MenuItem, Modal, Navbar, Pagination, Popover, Progress, ProgressStep, Progressbar, Radio, RangeSlider, Rating, Reorder, ResizablePanels, ScrollArea, Section, SegmentControl, Select, Share, Sidebar, Skeleton, Spinner, SplitView, Stack, Stat, Stepper, Table, Tabs, Textarea, Textarea as TextareaComponent,
|
|
19977
|
-
export type { AccordionItem, AccordionItemType, AccordionProps, AlertAction, AlertProps, AlertSize, AlertVariant, AnimationBackgroundProps, AnimationTextProps, AudioPlayerProps, AudioPlayerSize, AudioPlayerTheme, AudioPlayerVariant, AvatarGroupProps, AvatarProps, AvatarSize, AvatarStatus, AvatarVariant, BackdropProps, BadgeProps, BadgeSize, BadgeStyle, BadgeVariant, BannerAction, BannerAlignment, BannerPosition, BannerProps, BannerSize, BannerStyle, BannerVariant, BottomSheetProps, BottomSheetSize, BottomSheetVariant, BreadcrumbItem, BreadcrumbsProps, BreadcrumbsSize, BreadcrumbsStyle, CalendarEvent, CalendarEventType, CalendarProps, CalendarView, CardAction, CardImage, CardImagePosition, CardLayout, CardProps, CardSize, CardVariant, CarouselItem, CarouselProps, CarouselSize, CarouselTheme, CarouselTransition, CarouselVariant, ChipProps, ChipSize, ChipVariant, ComponentBaseProps, ConfirmProps, ConfirmSize, ConfirmVariant, ContainerPadding, ContainerProps, ContainerSize, ContextMenuItem, ContextMenuProps, DatePickerEvent, DatePickerMode, DatePickerProps, DatePickerSize, DatePickerVariant, DividerProps, DrawerPosition, DrawerProps, DrawerSize, DropdownItem, DropdownProps, DropzoneProps, DropzoneSize, DropzoneVariant, FileStatus, FileUploaderProps, FileUploaderSize, FileUploaderVariant,
|
|
19938
|
+
export { Accordion, Alert, AnimationBackground, AnimationText, AudioPlayer, Avatar, AvatarGroup, Backdrop, Badge, Banner, BottomSheet, Breadcrumbs, Button, Calendar, Card, Carousel, Checkbox, Chip, Confirm, Container, ContextMenu, DatePicker, Divider, Drawer, Dropdown, Dropzone, FileUploader, FloatingActionButton, Form, Gradient, Grid, GridCol, GridRow, HeroFeature, Image, ImageList, Input, Lightbox, List, Logo, MarkdownEditor, Masonry, MenuItem, Modal, Navbar, Pagination, Popover, Progress, ProgressStep, Progressbar, Radio, RangeSlider, Rating, Reorder, ResizablePanels, ScrollArea, Section, SegmentControl, Select, Share, Sidebar, Skeleton, Spinner, SplitView, Stack, Stat, Stepper, Table, Tabs, Textarea, Textarea as TextareaComponent, TimePicker, Timeline, Toast, ToastContainer, ToastProvider, Toggle, Toolbar, Tooltip, VideoPlayer, YouTubePlayer, getTheme, setTheme, toggleTheme, useContextMenu, useToast };
|
|
19939
|
+
export type { AccordionItem, AccordionItemType, AccordionProps, AlertAction, AlertProps, AlertSize, AlertVariant, AnimationBackgroundProps, AnimationTextProps, AudioPlayerProps, AudioPlayerSize, AudioPlayerTheme, AudioPlayerVariant, AvatarGroupProps, AvatarProps, AvatarSize, AvatarStatus, AvatarVariant, BackdropProps, BadgeProps, BadgeSize, BadgeStyle, BadgeVariant, BannerAction, BannerAlignment, BannerPosition, BannerProps, BannerSize, BannerStyle, BannerVariant, BottomSheetProps, BottomSheetSize, BottomSheetVariant, BreadcrumbItem, BreadcrumbsProps, BreadcrumbsSize, BreadcrumbsStyle, CalendarEvent, CalendarEventType, CalendarProps, CalendarView, CardAction, CardImage, CardImagePosition, CardLayout, CardProps, CardSize, CardVariant, CarouselItem, CarouselProps, CarouselSize, CarouselTheme, CarouselTransition, CarouselVariant, ChipProps, ChipSize, ChipVariant, ComponentBaseProps, ConfirmProps, ConfirmSize, ConfirmVariant, ContainerPadding, ContainerProps, ContainerSize, ContextMenuItem, ContextMenuProps, DatePickerEvent, DatePickerMode, DatePickerProps, DatePickerSize, DatePickerVariant, DividerProps, DrawerPosition, DrawerProps, DrawerSize, DropdownItem, DropdownProps, DropzoneProps, DropzoneSize, DropzoneVariant, FileStatus, FileUploaderProps, FileUploaderSize, FileUploaderVariant, FloatingActionButtonProps, FloatingActionButtonSize, FloatingActionButtonVariant, FormField, FormLayout, FormProps, FormSize, FormVariant, GradientColor, GradientDirection, GradientProps, GradientSize, GradientVariant, GridAlignment, GridBreakpoint, GridColProps, GridJustify, GridProps, GridRowProps, GridSize, HeroFeatureAlignment, HeroFeatureButton, HeroFeatureProps, HeroFeatureSize, HeroFeatureTheme, HeroFeatureVariant, ImageFit, ImageItem, ImageListColumns, ImageListLayout, ImageListProps, ImageListSpacing, ImageLoading, ImagePlaceholder, ImageProps, ImageRatio, ImageRounded, LightboxImage, LightboxProps, LightboxSize, LightboxTheme, LightboxVariant, ListItem, ListItemType, ListLayout, ListProps, ListSize, ListVariant, LogoProps, LogoSize, LogoVariant, MarkdownEditorMode, MarkdownEditorProps, MarkdownEditorSize, MarkdownEditorTheme, MarkdownEditorVariant, MarkdownToolbarItem, MasonryAnimation, MasonryColumns, MasonryItem, MasonryProps, MasonrySpacing, MenuItemChild, MenuItemProps, MenuItemSize, MenuItemStyle, MenuItemType, MenuItemVariant, NavbarItem, NavbarPosition, NavbarProps, NavbarSize, NavbarVariant, PaginationAlignment, PaginationProps, PaginationSize, PaginationVariant, PopoverPosition, PopoverProps, PopoverSize, PopoverTrigger, PopoverVariant, ProgressProps, ProgressSize, ProgressStepItem, ProgressStepLayout, ProgressStepProps, ProgressStepSize, ProgressStepVariant, ProgressType, ProgressVariant, ProgressbarProps, ProgressbarSize, ProgressbarStyle, ProgressbarVariant, RangeSliderProps, RangeSliderSize, RangeSliderVariant, RatingProps, RatingSize, RatingVariant, ReorderItem, ReorderOrientation, ReorderProps, ReorderSize, ReorderVariant, ResizablePanelsProps, ScrollAreaProps, ScrollAreaSize, ScrollDirection, ScrollbarStyle, SectionProps, SectionSize, SectionVariant, SegmentControlProps, SegmentOption, SelectOption, SelectProps, SharePlatform, SharePlatformConfig, SharePosition, ShareProps, ShareSize, ShareVariant, SidebarItem, SidebarPosition, SidebarProps, SidebarSize, SidebarVariant, SkeletonProps, SortDirection, SpinnerProps, SpinnerSize, SpinnerType, SplitDirection, SplitMode, SplitSize, SplitViewProps, StackAlignment, StackDirection, StackJustify, StackProps, StackSpacing, StartOfWeek, StatColor, StatLayout, StatProps, StatSize, StatVariant, StepperProps, StepperSize, StepperVariant, TabItem, TableColumn, TableProps, TableSize, TableVariant, TabsProps, TextareaProps, TimeFormat, TimePickerMode, TimePickerProps, TimePickerSize, TimePickerVariant, TimelineColor, TimelineItem, TimelinePosition, TimelineProps, TimelineSize, TimelineVariant, ToastContainerProps, ToastItem, ToastProps, ToastStatus, ToolbarItem, ToolbarPosition, ToolbarProps, ToolbarSize, ToolbarVariant, TooltipPosition, TooltipProps, TooltipSize, TooltipVariant, UploadFile, UseContextMenuReturn, VideoPlayerProps, VideoPlayerSize, VideoPlayerTheme, VideoPlayerVariant, YouTubePlayerProps, YouTubePlayerSize, YouTubePlayerTheme, YouTubePlayerVariant };
|