@shoplflow/base 0.46.2 → 0.46.4
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/dist/index.cjs +126 -12
- package/dist/index.d.cts +94 -3
- package/dist/index.d.ts +94 -3
- package/dist/index.js +127 -13
- package/package.json +3 -1
package/dist/index.d.cts
CHANGED
|
@@ -296,6 +296,9 @@ interface AvatarOptionProps extends SizeVariantProps<AvatarSizeVariantType>, Img
|
|
|
296
296
|
|
|
297
297
|
declare const Avatar: ({ src, badge, fallbackUrl, ...rest }: AvatarProps) => JSX.Element;
|
|
298
298
|
|
|
299
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
300
|
+
declare const AVATAR_VERSION = "2.0.0";
|
|
301
|
+
|
|
299
302
|
type StackGenericProps<T extends StringElementType = 'div'> = RenderConfigProps & StackProps & HTMLPropsWithoutRef<T>;
|
|
300
303
|
type StackComponentType = ForwardRefExoticComponent<PropsWithoutRef<StackGenericProps> & RefAttributes<HTMLElement>>;
|
|
301
304
|
type MotionStackComponentType<T extends StringElementType = 'div'> = CustomDomComponent<RenderConfigProps & HTMLPropsWithoutRef<T> & StackProps>;
|
|
@@ -367,6 +370,9 @@ declare const StyledStack: _emotion_styled.StyledComponent<{
|
|
|
367
370
|
as?: React.ElementType;
|
|
368
371
|
} & StackOptionProps, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
369
372
|
|
|
373
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
374
|
+
declare const STACK_VERSION = "2.0.0";
|
|
375
|
+
|
|
370
376
|
type StackContainerGenericProps<T extends StringElementType = 'div'> = RenderConfigProps & StackContainerProps & HTMLPropsWithoutRef<T>;
|
|
371
377
|
type StackContainerComponentType = ForwardRefExoticComponent<PropsWithoutRef<StackContainerGenericProps> & RefAttributes<HTMLElement>>;
|
|
372
378
|
type MotionStackContainerComponentType<T extends StringElementType = 'div'> = CustomDomComponent<RenderConfigProps & HTMLPropsWithoutRef<T> & StackContainerProps>;
|
|
@@ -441,6 +447,9 @@ declare const StyledStackContainer: _emotion_styled.StyledComponent<{
|
|
|
441
447
|
as?: React.ElementType;
|
|
442
448
|
} & StackContainerOptionProps, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
443
449
|
|
|
450
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
451
|
+
declare const STACK_CONTAINER_VERSION = "2.0.0";
|
|
452
|
+
|
|
444
453
|
interface TextOptionProps {
|
|
445
454
|
/**
|
|
446
455
|
* 타이포그레피를 설정합니다.
|
|
@@ -464,6 +473,9 @@ interface TextProps extends TextOptionProps, ChildrenProps, RenderConfigProps, O
|
|
|
464
473
|
|
|
465
474
|
declare const Text: React$1.ForwardRefExoticComponent<TextProps & React$1.RefAttributes<unknown>>;
|
|
466
475
|
|
|
476
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
477
|
+
declare const TEXT_VERSION = "2.0.1";
|
|
478
|
+
|
|
467
479
|
declare const ModalSize: {
|
|
468
480
|
readonly XXS: "XXS";
|
|
469
481
|
readonly XS: "XS";
|
|
@@ -550,6 +562,9 @@ declare const useHandleModal: () => {
|
|
|
550
562
|
removeModal: (props?: RemoveModalProps) => void;
|
|
551
563
|
};
|
|
552
564
|
|
|
565
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
566
|
+
declare const MODAL_VERSION = "2.0.0";
|
|
567
|
+
|
|
553
568
|
declare const Modal: {
|
|
554
569
|
Container: ({ children, height, outsideClick, ...rest }: ModalContainerProps) => react_jsx_runtime.JSX.Element;
|
|
555
570
|
Header: ModalHeaderType;
|
|
@@ -565,6 +580,9 @@ interface BackDropProps extends ChildrenProps, BackDropOptionProps {
|
|
|
565
580
|
interface BackDropOptionProps {
|
|
566
581
|
}
|
|
567
582
|
|
|
583
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
584
|
+
declare const BACK_DROP_VERSION = "2.0.0";
|
|
585
|
+
|
|
568
586
|
declare const SwitchSizeVariants: {
|
|
569
587
|
readonly S: "S";
|
|
570
588
|
readonly M: "M";
|
|
@@ -578,6 +596,9 @@ interface SwitchOptionProps {
|
|
|
578
596
|
|
|
579
597
|
declare const Switch: ({ onChange, isSelected, disabled, activeColor, defaultSelected, sizeVar, ...rest }: SwitchProps) => react_jsx_runtime.JSX.Element;
|
|
580
598
|
|
|
599
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
600
|
+
declare const SWITCH_VERSION = "2.0.0";
|
|
601
|
+
|
|
581
602
|
declare const ChipToggleStyleVariants: {
|
|
582
603
|
readonly SOLID: "SOLID";
|
|
583
604
|
};
|
|
@@ -610,6 +631,9 @@ interface ChipButtonOptionProps {
|
|
|
610
631
|
|
|
611
632
|
declare const ChipButton: ({ styleVar, color, sizeVar, text, onClick, disabled, ...rest }: ChipButtonProps) => react_jsx_runtime.JSX.Element;
|
|
612
633
|
|
|
634
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
635
|
+
declare const CHIPS_VERSION = "2.0.0";
|
|
636
|
+
|
|
613
637
|
type AsProp<T extends React__default.ElementType> = {
|
|
614
638
|
as?: T;
|
|
615
639
|
};
|
|
@@ -695,6 +719,9 @@ interface MenuOptionProps extends ChildrenProps, DisableProps, RightElementProps
|
|
|
695
719
|
|
|
696
720
|
declare const Menu: ({ leftSource, rightSource, children, isSelected, defaultSelected, onClick, sizeVar, disabled, ...rest }: MenuProps) => react_jsx_runtime.JSX.Element;
|
|
697
721
|
|
|
722
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
723
|
+
declare const MENU_VERSION = "2.0.0";
|
|
724
|
+
|
|
698
725
|
declare const DropdownButton: {
|
|
699
726
|
({ text, sizeVar, className, disabled, children, placement, styleVar, floatingZIndex, ...rest }: DropdownButtonProps): react_jsx_runtime.JSX.Element;
|
|
700
727
|
Menu: ({ onClick, children, ...rest }: MenuProps) => react_jsx_runtime.JSX.Element;
|
|
@@ -737,8 +764,12 @@ type SplitButtonContextType = {
|
|
|
737
764
|
declare const SplitButtonContext: React$1.Context<SplitButtonContextType | null>;
|
|
738
765
|
declare const useSplitButtonContext: () => SplitButtonContextType;
|
|
739
766
|
|
|
767
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
768
|
+
declare const BUTTONS_VERSION = "2.0.0";
|
|
769
|
+
|
|
740
770
|
declare const CalloutTypes: {
|
|
741
771
|
readonly INFORMATION: "INFORMATION";
|
|
772
|
+
readonly CAUTION: "CAUTION";
|
|
742
773
|
readonly ALERT: "ALERT";
|
|
743
774
|
};
|
|
744
775
|
type CalloutType = $Values<typeof CalloutTypes>;
|
|
@@ -750,13 +781,19 @@ interface CalloutOptionProps {
|
|
|
750
781
|
*/
|
|
751
782
|
fillWidth?: boolean;
|
|
752
783
|
}
|
|
784
|
+
interface CalloutIconProps extends IconSourceProps, ColorTokenProps {
|
|
785
|
+
}
|
|
753
786
|
|
|
754
787
|
declare const Callout: {
|
|
755
788
|
({ children, styleVar, fillWidth, ...rest }: CalloutProps): react_jsx_runtime.JSX.Element;
|
|
756
789
|
Text: ({ children, ...rest }: TextProps) => react_jsx_runtime.JSX.Element;
|
|
757
|
-
Icon: ({ iconSource }:
|
|
790
|
+
Icon: ({ iconSource, color }: CalloutIconProps) => react_jsx_runtime.JSX.Element;
|
|
791
|
+
BulletList: ({ children }: ChildrenProps) => react_jsx_runtime.JSX.Element;
|
|
758
792
|
};
|
|
759
793
|
|
|
794
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
795
|
+
declare const CALLOUT_VERSION = "2.1.2";
|
|
796
|
+
|
|
760
797
|
interface PopperProps extends PopperOptionProps {
|
|
761
798
|
}
|
|
762
799
|
interface PopperOptionProps extends ChildrenProps {
|
|
@@ -830,6 +867,9 @@ declare const Popper: {
|
|
|
830
867
|
declare const PopperTrigger: React__default.ForwardRefExoticComponent<PopperTriggerProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
831
868
|
declare const PopperPortal: React__default.ForwardRefExoticComponent<PopperPortalProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
832
869
|
|
|
870
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
871
|
+
declare const POPPER_VERSION = "2.0.0";
|
|
872
|
+
|
|
833
873
|
interface ScrollbarRefType {
|
|
834
874
|
scrollTop(top: number): void;
|
|
835
875
|
scrollLeft(left: number): void;
|
|
@@ -931,6 +971,9 @@ interface ScrollAreaOptionProps {
|
|
|
931
971
|
|
|
932
972
|
declare const ScrollArea: React__default.ForwardRefExoticComponent<ScrollAreaProps & React__default.RefAttributes<ScrollbarRefType>>;
|
|
933
973
|
|
|
974
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
975
|
+
declare const SCROLL_AREA_VERSION = "2.0.0";
|
|
976
|
+
|
|
934
977
|
declare const DropdownOptionVariants: {
|
|
935
978
|
readonly CLICK: "CLICK";
|
|
936
979
|
readonly OUTSIDE_CLICK: "OUTSIDE_CLICK";
|
|
@@ -996,6 +1039,9 @@ declare const Dropdown: {
|
|
|
996
1039
|
Content: ({ children, width: initialWidth, type, onClick, ...rest }: DropdownContentProps) => react_jsx_runtime.JSX.Element;
|
|
997
1040
|
};
|
|
998
1041
|
|
|
1042
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1043
|
+
declare const DROPDOWN_VERSION = "2.0.0";
|
|
1044
|
+
|
|
999
1045
|
interface ListProps extends ListOptionProps {
|
|
1000
1046
|
}
|
|
1001
1047
|
interface ListOptionProps extends ChildrenProps, DisableProps, SelectedProps, LeftNodeProps, RightNodeProps, HTMLAttributes<HTMLLIElement> {
|
|
@@ -1008,11 +1054,14 @@ interface ListText2RowsProps {
|
|
|
1008
1054
|
}
|
|
1009
1055
|
|
|
1010
1056
|
declare const List: {
|
|
1011
|
-
({ children, leftSource, rightSource, ...rest }: ListProps): react_jsx_runtime.JSX.Element;
|
|
1057
|
+
({ children, leftSource, rightSource, style, ...rest }: ListProps): react_jsx_runtime.JSX.Element;
|
|
1012
1058
|
Text2Rows: ({ title, subTitle }: ListText2RowsProps) => react_jsx_runtime.JSX.Element;
|
|
1013
1059
|
};
|
|
1014
1060
|
declare const Text2Rows: ({ title, subTitle }: ListText2RowsProps) => react_jsx_runtime.JSX.Element;
|
|
1015
1061
|
|
|
1062
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1063
|
+
declare const LIST_VERSION = "2.0.1";
|
|
1064
|
+
|
|
1016
1065
|
declare const TagStyleVariants: {
|
|
1017
1066
|
readonly SOLID: "SOLID";
|
|
1018
1067
|
readonly TINT: "TINT";
|
|
@@ -1033,6 +1082,9 @@ interface TagOptionProps extends SizeVariantProps<TagSizeVariantType>, StyleVari
|
|
|
1033
1082
|
|
|
1034
1083
|
declare const Tag: ({ sizeVar, children, rightSource, leftSource, className, ...rest }: TagProps) => react_jsx_runtime.JSX.Element;
|
|
1035
1084
|
|
|
1085
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1086
|
+
declare const TAG_VERSION = "2.0.0";
|
|
1087
|
+
|
|
1036
1088
|
interface TreeProps extends TreeOptionProps {
|
|
1037
1089
|
}
|
|
1038
1090
|
interface TreeOptionProps extends ChildrenProps {
|
|
@@ -1078,6 +1130,9 @@ declare const TreeItem: {
|
|
|
1078
1130
|
[TREE_SYMBOL_KEY]: boolean;
|
|
1079
1131
|
};
|
|
1080
1132
|
|
|
1133
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1134
|
+
declare const TREE_VERSION = "2.0.0";
|
|
1135
|
+
|
|
1081
1136
|
declare const IconSizeVariants: {
|
|
1082
1137
|
readonly XS: "XS";
|
|
1083
1138
|
readonly S: "S";
|
|
@@ -1101,6 +1156,9 @@ declare const StyledIcon: _emotion_styled.StyledComponent<{
|
|
|
1101
1156
|
as?: React.ElementType;
|
|
1102
1157
|
} & IconOptionProps, React$1.SVGProps<SVGSVGElement>, {}>;
|
|
1103
1158
|
|
|
1159
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1160
|
+
declare const ICON_VERSION = "2.0.0";
|
|
1161
|
+
|
|
1104
1162
|
declare const InputSizeVariants: {
|
|
1105
1163
|
readonly S: "S";
|
|
1106
1164
|
readonly M: "M";
|
|
@@ -1228,6 +1286,9 @@ interface SelectInputButtonOptionProps extends Omit<HTMLAttributes<HTMLLabelElem
|
|
|
1228
1286
|
|
|
1229
1287
|
declare const SelectInputButton: ({ disabled, isSelected, onMouseEnter, onMouseLeave, onClick, onClear, value, placeholder, label, width, rightSource, sizeVar, ...rest }: SelectInputButtonProps) => react_jsx_runtime.JSX.Element;
|
|
1230
1288
|
|
|
1289
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1290
|
+
declare const INPUTS_VERSION = "2.0.0";
|
|
1291
|
+
|
|
1231
1292
|
interface MinusBoxProps extends MinusBoxOptionProps, Omit<ButtonHTMLAttributes<HTMLButtonElement>, 'onClick' | 'color'> {
|
|
1232
1293
|
}
|
|
1233
1294
|
interface MinusBoxOptionProps {
|
|
@@ -1261,6 +1322,9 @@ declare const Radio: {
|
|
|
1261
1322
|
[RADIO_SYMBOL_KEY]: boolean;
|
|
1262
1323
|
};
|
|
1263
1324
|
|
|
1325
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1326
|
+
declare const CONTROL_BUTTONS_VERSION = "2.0.0";
|
|
1327
|
+
|
|
1264
1328
|
interface TooltipProps extends TooltipOptionProps, Omit<PopperProps, 'autoPlacement'> {
|
|
1265
1329
|
}
|
|
1266
1330
|
interface TooltipOptionProps {
|
|
@@ -1279,6 +1343,9 @@ declare const Tooltip: {
|
|
|
1279
1343
|
Content: ({ content, ...args }: TooltipContentProps) => react_jsx_runtime.JSX.Element;
|
|
1280
1344
|
};
|
|
1281
1345
|
|
|
1346
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1347
|
+
declare const TOOLTIP_VERSION = "2.0.0";
|
|
1348
|
+
|
|
1282
1349
|
declare const TabStyleVariants: {
|
|
1283
1350
|
readonly NORMAL: "NORMAL";
|
|
1284
1351
|
readonly INFO: "INFO";
|
|
@@ -1334,6 +1401,9 @@ type TabsContextType = {
|
|
|
1334
1401
|
declare const TabsContext: React$1.Context<TabsContextType | null>;
|
|
1335
1402
|
declare const useTabs: () => TabsContextType;
|
|
1336
1403
|
|
|
1404
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1405
|
+
declare const TABS_VERSION = "2.0.0";
|
|
1406
|
+
|
|
1337
1407
|
interface PaginationProps extends PaginationOptionProps, HTMLAttributes<HTMLDivElement> {
|
|
1338
1408
|
}
|
|
1339
1409
|
interface PaginationOptionProps extends LeftAndRightNodeProps {
|
|
@@ -1389,6 +1459,9 @@ declare const Pagination: {
|
|
|
1389
1459
|
SizeSelector: ({ data, pageSize, setPageSize }: PaginationSizeSelectorProps) => react_jsx_runtime.JSX.Element;
|
|
1390
1460
|
};
|
|
1391
1461
|
|
|
1462
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1463
|
+
declare const PAGINATION_VERSION = "2.0.0";
|
|
1464
|
+
|
|
1392
1465
|
declare const ToggleButtonSizeVariants: {
|
|
1393
1466
|
readonly S: "S";
|
|
1394
1467
|
readonly M: "M";
|
|
@@ -1416,6 +1489,9 @@ declare const ToggleButton: {
|
|
|
1416
1489
|
InnerRadio: React__default.ForwardRefExoticComponent<ToggleButtonInnerRadioProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
1417
1490
|
};
|
|
1418
1491
|
|
|
1492
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1493
|
+
declare const TOGGLE_BUTTON_VERSION = "2.0.0";
|
|
1494
|
+
|
|
1419
1495
|
declare const DayDatepickerSizeVariants: {
|
|
1420
1496
|
readonly S: "S";
|
|
1421
1497
|
readonly M: "M";
|
|
@@ -1566,6 +1642,9 @@ type YearSelectProps = {
|
|
|
1566
1642
|
}) => void;
|
|
1567
1643
|
};
|
|
1568
1644
|
|
|
1645
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1646
|
+
declare const DATEPICKERS_VERSION = "2.0.0";
|
|
1647
|
+
|
|
1569
1648
|
declare const NumberComboboxSizeVariants: {
|
|
1570
1649
|
readonly S: "S";
|
|
1571
1650
|
readonly M: "M";
|
|
@@ -1591,6 +1670,9 @@ type NumberComboboxProps = NumberComboboxOptionProps & Omit<InputHTMLAttributes<
|
|
|
1591
1670
|
|
|
1592
1671
|
declare const NumberCombobox: ({ disabled, onSelect, onChange, value, width, onBlur, items, isError, sizeVar, placeholder, maxLength, className, floatingZIndex, ...rest }: NumberComboboxProps) => react_jsx_runtime.JSX.Element;
|
|
1593
1672
|
|
|
1673
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1674
|
+
declare const COMBOBOXS_VERSION = "2.0.0";
|
|
1675
|
+
|
|
1594
1676
|
type SkeletonProps = {
|
|
1595
1677
|
styleVar?: 'circle' | 'rectangle';
|
|
1596
1678
|
width?: string;
|
|
@@ -1599,6 +1681,9 @@ type SkeletonProps = {
|
|
|
1599
1681
|
|
|
1600
1682
|
declare const Skeleton: ({ styleVar, width, height }: SkeletonProps) => react_jsx_runtime.JSX.Element;
|
|
1601
1683
|
|
|
1684
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1685
|
+
declare const SKELETON_VERSION = "2.0.0";
|
|
1686
|
+
|
|
1602
1687
|
interface SliderProps {
|
|
1603
1688
|
/**
|
|
1604
1689
|
* 선택 가능한 최소값
|
|
@@ -1645,6 +1730,9 @@ declare const SLIDER_Z_INDEX: {
|
|
|
1645
1730
|
|
|
1646
1731
|
declare const Slider: React__default.FC<SliderProps>;
|
|
1647
1732
|
|
|
1733
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1734
|
+
declare const SLIDER_VERSION = "2.0.0";
|
|
1735
|
+
|
|
1648
1736
|
/** 드롭다운 아이템 타입 */
|
|
1649
1737
|
type DropdownItem = {
|
|
1650
1738
|
/** 표시되는 라벨 */
|
|
@@ -1718,6 +1806,9 @@ interface MemoizedSearchBarComponent extends React.MemoExoticComponent<SearchBar
|
|
|
1718
1806
|
Input: React.FC<SearchBarInputProps>;
|
|
1719
1807
|
}
|
|
1720
1808
|
|
|
1809
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1810
|
+
declare const SEARCH_BAR_VERSION = "2.0.0";
|
|
1811
|
+
|
|
1721
1812
|
declare const SearchBar: MemoizedSearchBarComponent;
|
|
1722
1813
|
|
|
1723
|
-
export { AnnualDatepicker, AnnualDatepickerProps, AsProp, Avatar, AvatarOptionProps, AvatarProps, AvatarSizeVariantType, AvatarSizeVariants, BackDropOptionProps, BackDropProps, BorderRadiusTokens, BoxShadowTokens, Button, ButtonComponent, ButtonOptionProps, ButtonProps, ButtonSizeVariantType, ButtonSizeVariants, ButtonStyleVariantType, ButtonStyleVariants, CHECKBOX_SYMBOL_KEY, Callout, CalloutOptionProps, CalloutProps, CalloutType, CalloutTypes, Checkbox, CheckboxOptionProps, CheckboxProps, CheckboxStyleVariantType, CheckboxStyleVariants, ChildrenProps, ChipButton, ChipButtonOptionProps, ChipButtonProps, ChipButtonSizeVariantType, ChipButtonSizeVariants, ChipButtonStyleVariantType, ChipButtonStyleVariants, ChipToggle, ChipToggleOptionProps, ChipToggleProps, ChipToggleSizeVariantType, ChipToggleSizeVariants, ChipToggleStyleVariantType, ChipToggleStyleVariants, ColorTokens, DangerouslySetInnerHTML, DayCalendarType, DayDatepicker, DayDatepickerHeaderCustomProps, DayDatepickerOptionProps, DayDatepickerProps, DayDatepickerSizeVariantType, DayDatepickerSizeVariants, DomainType, Dropdown, DropdownButton, DropdownButtonContext, DropdownButtonContextType, DropdownButtonOptionProps, DropdownButtonProps, DropdownButtonSizeVariantType, DropdownButtonSizeVariants, DropdownButtonStyleVariantType, DropdownButtonStyleVariants, DropdownContentProps, DropdownItem, DropdownOptionProps, DropdownOptionVariantType, DropdownOptionVariants, DropdownProps, DropdownSizeVariantType, DropdownTriggerButtonProps, FontWeightTokens, Icon, IconButton, IconButtonComponent, IconButtonOptionProps, IconButtonProps, IconButtonSizeVariantType, IconButtonSizeVariants, IconButtonStyleVariantType, IconButtonStyleVariants, IconOptionProps, IconProps, IconSizeVariants, IconSizeVariantsType, Input, InputButton, InputButtonOptionProps, InputButtonProps, InputOptionProps, InputProps, InputSizeVariantType, InputSizeVariants, List, ListContent2ColumnsProps, ListOptionProps, ListProps, ListText2RowsProps, MODAL_FOOTER_KEY, MODAL_HEADER_KEY, MemoizedSearchBarComponent, Menu, MenuOptionProps, MenuProps, MenuSizeVariantType, MenuSizeVariants, MinusBoxOptionProps, MinusBoxProps, MinusButton, Modal, ModalBodyOptionProps, ModalBodyProps, ModalBottomProps, ModalContainerOptionProps, ModalContainerProps, ModalContext, ModalFooterOptionProps, ModalFooterProps, ModalFooterType, ModalHandlerContext, ModalHeaderOptionProps, ModalHeaderProps, ModalHeaderType, ModalPortal as ModalProvider, ModalSize, ModalSizeType, ModalStateType, ModalTopProps, MonthClickDateInfo, MonthDatepicker, MonthDatepickerProps, MonthDatepickerStyleType, MotionStack, MotionStackComponentType, MotionStackContainer, MotionStackContainerComponentType, NumberCombobox, NumberComboboxErrorType, NumberComboboxInputType, NumberComboboxOptionProps, NumberComboboxProps, NumberComboboxSizeVariantType, NumberComboboxSizeVariants, Pagination, PaginationOptionProps, PaginationProps, PaginationSizeSelectorProps, PolymorphicComponentProps, PolymorphicRef, Popper, PopperOptionProps, PopperPortal, PopperPortalProps, PopperProps, PopperTrigger, PopperTriggerProps, RADIO_SYMBOL_KEY, Radio, RadioOptionProps, RadioProps, RemoveModalProps, SLIDER_Z_INDEX, ScrollArea, ScrollAreaOptionProps, ScrollAreaProps, ScrollbarRefType, SearchBar, SearchBarBaseProps, SearchBarCategoryProps, SearchBarComponent, SearchBarInputProps, SearchBarProps, SearchType, SelectInputButton, SelectInputButtonOptionProps, SelectInputButtonProps, ShoplflowProvider, ShoplflowProviderProps, Skeleton, SkeletonProps, Slider, SliderBounds, SliderProps, SpacingTokens, SplitButton, SplitButtonContext, SplitButtonContextType, SplitButtonOptionProps, SplitButtonProps, SplitButtonSizeVariantType, SplitButtonSizeVariants, SplitButtonStyleVariantType, SplitButtonStyleVariants, Stack, StackComponentType, StackContainer, StackContainerComponentType, StackContainerGenericProps, StackContainerOptionProps, StackContainerProps, StackGenericProps, StackOptionProps, StackProps, StyledIcon, StyledStack, StyledStackContainer, Switch, SwitchOptionProps, SwitchProps, SwitchSizeVariantType, SwitchSizeVariants, TREE_SYMBOL_KEY, TabOptionProps, TabProps, TabSizeVariantType, TabSizeVariants, TabStyleVariantType, TabStyleVariants, TabStyledProps, TabTextStyledProps, Tabs, TabsContext, TabsContextType, TabsOptionProps, TabsProps, Tag, TagOptionProps, TagProps, TagSizeVariantType, TagSizeVariants, TagStyleVariantType, TagStyleVariants, Text, Text2Rows, TextArea, TextAreaOptionProps, TextAreaProps, TextOptionProps, TextProps, ToggleButton, ToggleButtonInnerRadioOptionProps, ToggleButtonInnerRadioProps, ToggleButtonOptionProps, ToggleButtonProps, ToggleButtonSizeVariantType, ToggleButtonSizeVariants, Tooltip, TooltipContentProps, TooltipOptionProps, TooltipProps, Tree, TreeItem, TreeItemOptionProps, TreeItemProps, TreeOptionProps, TreeProps, TypographyTokens, WeekClickDateInfo, WeekDatepicker, WeekDatepickerProps, WeekDatepickerStyleType, YearSelectProps, borderRadiusTokens, boxShadowTokens, colorTokens, fontWeightTokens, getDomain, spacingTokens, typographyTokens, useDomain, useDropdownButtonContext, useHandleModal, useModalValue, useSplitButtonContext, useTabs };
|
|
1814
|
+
export { AVATAR_VERSION, AnnualDatepicker, AnnualDatepickerProps, AsProp, Avatar, AvatarOptionProps, AvatarProps, AvatarSizeVariantType, AvatarSizeVariants, BACK_DROP_VERSION, BUTTONS_VERSION, BackDropOptionProps, BackDropProps, BorderRadiusTokens, BoxShadowTokens, Button, ButtonComponent, ButtonOptionProps, ButtonProps, ButtonSizeVariantType, ButtonSizeVariants, ButtonStyleVariantType, ButtonStyleVariants, CALLOUT_VERSION, CHECKBOX_SYMBOL_KEY, CHIPS_VERSION, COMBOBOXS_VERSION, CONTROL_BUTTONS_VERSION, Callout, CalloutIconProps, CalloutOptionProps, CalloutProps, CalloutType, CalloutTypes, Checkbox, CheckboxOptionProps, CheckboxProps, CheckboxStyleVariantType, CheckboxStyleVariants, ChildrenProps, ChipButton, ChipButtonOptionProps, ChipButtonProps, ChipButtonSizeVariantType, ChipButtonSizeVariants, ChipButtonStyleVariantType, ChipButtonStyleVariants, ChipToggle, ChipToggleOptionProps, ChipToggleProps, ChipToggleSizeVariantType, ChipToggleSizeVariants, ChipToggleStyleVariantType, ChipToggleStyleVariants, ColorTokens, DATEPICKERS_VERSION, DROPDOWN_VERSION, DangerouslySetInnerHTML, DayCalendarType, DayDatepicker, DayDatepickerHeaderCustomProps, DayDatepickerOptionProps, DayDatepickerProps, DayDatepickerSizeVariantType, DayDatepickerSizeVariants, DomainType, Dropdown, DropdownButton, DropdownButtonContext, DropdownButtonContextType, DropdownButtonOptionProps, DropdownButtonProps, DropdownButtonSizeVariantType, DropdownButtonSizeVariants, DropdownButtonStyleVariantType, DropdownButtonStyleVariants, DropdownContentProps, DropdownItem, DropdownOptionProps, DropdownOptionVariantType, DropdownOptionVariants, DropdownProps, DropdownSizeVariantType, DropdownTriggerButtonProps, FontWeightTokens, ICON_VERSION, INPUTS_VERSION, Icon, IconButton, IconButtonComponent, IconButtonOptionProps, IconButtonProps, IconButtonSizeVariantType, IconButtonSizeVariants, IconButtonStyleVariantType, IconButtonStyleVariants, IconOptionProps, IconProps, IconSizeVariants, IconSizeVariantsType, Input, InputButton, InputButtonOptionProps, InputButtonProps, InputOptionProps, InputProps, InputSizeVariantType, InputSizeVariants, LIST_VERSION, List, ListContent2ColumnsProps, ListOptionProps, ListProps, ListText2RowsProps, MENU_VERSION, MODAL_FOOTER_KEY, MODAL_HEADER_KEY, MODAL_VERSION, MemoizedSearchBarComponent, Menu, MenuOptionProps, MenuProps, MenuSizeVariantType, MenuSizeVariants, MinusBoxOptionProps, MinusBoxProps, MinusButton, Modal, ModalBodyOptionProps, ModalBodyProps, ModalBottomProps, ModalContainerOptionProps, ModalContainerProps, ModalContext, ModalFooterOptionProps, ModalFooterProps, ModalFooterType, ModalHandlerContext, ModalHeaderOptionProps, ModalHeaderProps, ModalHeaderType, ModalPortal as ModalProvider, ModalSize, ModalSizeType, ModalStateType, ModalTopProps, MonthClickDateInfo, MonthDatepicker, MonthDatepickerProps, MonthDatepickerStyleType, MotionStack, MotionStackComponentType, MotionStackContainer, MotionStackContainerComponentType, NumberCombobox, NumberComboboxErrorType, NumberComboboxInputType, NumberComboboxOptionProps, NumberComboboxProps, NumberComboboxSizeVariantType, NumberComboboxSizeVariants, PAGINATION_VERSION, POPPER_VERSION, Pagination, PaginationOptionProps, PaginationProps, PaginationSizeSelectorProps, PolymorphicComponentProps, PolymorphicRef, Popper, PopperOptionProps, PopperPortal, PopperPortalProps, PopperProps, PopperTrigger, PopperTriggerProps, RADIO_SYMBOL_KEY, Radio, RadioOptionProps, RadioProps, RemoveModalProps, SCROLL_AREA_VERSION, SEARCH_BAR_VERSION, SKELETON_VERSION, SLIDER_VERSION, SLIDER_Z_INDEX, STACK_CONTAINER_VERSION, STACK_VERSION, SWITCH_VERSION, ScrollArea, ScrollAreaOptionProps, ScrollAreaProps, ScrollbarRefType, SearchBar, SearchBarBaseProps, SearchBarCategoryProps, SearchBarComponent, SearchBarInputProps, SearchBarProps, SearchType, SelectInputButton, SelectInputButtonOptionProps, SelectInputButtonProps, ShoplflowProvider, ShoplflowProviderProps, Skeleton, SkeletonProps, Slider, SliderBounds, SliderProps, SpacingTokens, SplitButton, SplitButtonContext, SplitButtonContextType, SplitButtonOptionProps, SplitButtonProps, SplitButtonSizeVariantType, SplitButtonSizeVariants, SplitButtonStyleVariantType, SplitButtonStyleVariants, Stack, StackComponentType, StackContainer, StackContainerComponentType, StackContainerGenericProps, StackContainerOptionProps, StackContainerProps, StackGenericProps, StackOptionProps, StackProps, StyledIcon, StyledStack, StyledStackContainer, Switch, SwitchOptionProps, SwitchProps, SwitchSizeVariantType, SwitchSizeVariants, TABS_VERSION, TAG_VERSION, TEXT_VERSION, TOGGLE_BUTTON_VERSION, TOOLTIP_VERSION, TREE_SYMBOL_KEY, TREE_VERSION, TabOptionProps, TabProps, TabSizeVariantType, TabSizeVariants, TabStyleVariantType, TabStyleVariants, TabStyledProps, TabTextStyledProps, Tabs, TabsContext, TabsContextType, TabsOptionProps, TabsProps, Tag, TagOptionProps, TagProps, TagSizeVariantType, TagSizeVariants, TagStyleVariantType, TagStyleVariants, Text, Text2Rows, TextArea, TextAreaOptionProps, TextAreaProps, TextOptionProps, TextProps, ToggleButton, ToggleButtonInnerRadioOptionProps, ToggleButtonInnerRadioProps, ToggleButtonOptionProps, ToggleButtonProps, ToggleButtonSizeVariantType, ToggleButtonSizeVariants, Tooltip, TooltipContentProps, TooltipOptionProps, TooltipProps, Tree, TreeItem, TreeItemOptionProps, TreeItemProps, TreeOptionProps, TreeProps, TypographyTokens, WeekClickDateInfo, WeekDatepicker, WeekDatepickerProps, WeekDatepickerStyleType, YearSelectProps, borderRadiusTokens, boxShadowTokens, colorTokens, fontWeightTokens, getDomain, spacingTokens, typographyTokens, useDomain, useDropdownButtonContext, useHandleModal, useModalValue, useSplitButtonContext, useTabs };
|
package/dist/index.d.ts
CHANGED
|
@@ -296,6 +296,9 @@ interface AvatarOptionProps extends SizeVariantProps<AvatarSizeVariantType>, Img
|
|
|
296
296
|
|
|
297
297
|
declare const Avatar: ({ src, badge, fallbackUrl, ...rest }: AvatarProps) => JSX.Element;
|
|
298
298
|
|
|
299
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
300
|
+
declare const AVATAR_VERSION = "2.0.0";
|
|
301
|
+
|
|
299
302
|
type StackGenericProps<T extends StringElementType = 'div'> = RenderConfigProps & StackProps & HTMLPropsWithoutRef<T>;
|
|
300
303
|
type StackComponentType = ForwardRefExoticComponent<PropsWithoutRef<StackGenericProps> & RefAttributes<HTMLElement>>;
|
|
301
304
|
type MotionStackComponentType<T extends StringElementType = 'div'> = CustomDomComponent<RenderConfigProps & HTMLPropsWithoutRef<T> & StackProps>;
|
|
@@ -367,6 +370,9 @@ declare const StyledStack: _emotion_styled.StyledComponent<{
|
|
|
367
370
|
as?: React.ElementType;
|
|
368
371
|
} & StackOptionProps, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
369
372
|
|
|
373
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
374
|
+
declare const STACK_VERSION = "2.0.0";
|
|
375
|
+
|
|
370
376
|
type StackContainerGenericProps<T extends StringElementType = 'div'> = RenderConfigProps & StackContainerProps & HTMLPropsWithoutRef<T>;
|
|
371
377
|
type StackContainerComponentType = ForwardRefExoticComponent<PropsWithoutRef<StackContainerGenericProps> & RefAttributes<HTMLElement>>;
|
|
372
378
|
type MotionStackContainerComponentType<T extends StringElementType = 'div'> = CustomDomComponent<RenderConfigProps & HTMLPropsWithoutRef<T> & StackContainerProps>;
|
|
@@ -441,6 +447,9 @@ declare const StyledStackContainer: _emotion_styled.StyledComponent<{
|
|
|
441
447
|
as?: React.ElementType;
|
|
442
448
|
} & StackContainerOptionProps, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
443
449
|
|
|
450
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
451
|
+
declare const STACK_CONTAINER_VERSION = "2.0.0";
|
|
452
|
+
|
|
444
453
|
interface TextOptionProps {
|
|
445
454
|
/**
|
|
446
455
|
* 타이포그레피를 설정합니다.
|
|
@@ -464,6 +473,9 @@ interface TextProps extends TextOptionProps, ChildrenProps, RenderConfigProps, O
|
|
|
464
473
|
|
|
465
474
|
declare const Text: React$1.ForwardRefExoticComponent<TextProps & React$1.RefAttributes<unknown>>;
|
|
466
475
|
|
|
476
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
477
|
+
declare const TEXT_VERSION = "2.0.1";
|
|
478
|
+
|
|
467
479
|
declare const ModalSize: {
|
|
468
480
|
readonly XXS: "XXS";
|
|
469
481
|
readonly XS: "XS";
|
|
@@ -550,6 +562,9 @@ declare const useHandleModal: () => {
|
|
|
550
562
|
removeModal: (props?: RemoveModalProps) => void;
|
|
551
563
|
};
|
|
552
564
|
|
|
565
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
566
|
+
declare const MODAL_VERSION = "2.0.0";
|
|
567
|
+
|
|
553
568
|
declare const Modal: {
|
|
554
569
|
Container: ({ children, height, outsideClick, ...rest }: ModalContainerProps) => react_jsx_runtime.JSX.Element;
|
|
555
570
|
Header: ModalHeaderType;
|
|
@@ -565,6 +580,9 @@ interface BackDropProps extends ChildrenProps, BackDropOptionProps {
|
|
|
565
580
|
interface BackDropOptionProps {
|
|
566
581
|
}
|
|
567
582
|
|
|
583
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
584
|
+
declare const BACK_DROP_VERSION = "2.0.0";
|
|
585
|
+
|
|
568
586
|
declare const SwitchSizeVariants: {
|
|
569
587
|
readonly S: "S";
|
|
570
588
|
readonly M: "M";
|
|
@@ -578,6 +596,9 @@ interface SwitchOptionProps {
|
|
|
578
596
|
|
|
579
597
|
declare const Switch: ({ onChange, isSelected, disabled, activeColor, defaultSelected, sizeVar, ...rest }: SwitchProps) => react_jsx_runtime.JSX.Element;
|
|
580
598
|
|
|
599
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
600
|
+
declare const SWITCH_VERSION = "2.0.0";
|
|
601
|
+
|
|
581
602
|
declare const ChipToggleStyleVariants: {
|
|
582
603
|
readonly SOLID: "SOLID";
|
|
583
604
|
};
|
|
@@ -610,6 +631,9 @@ interface ChipButtonOptionProps {
|
|
|
610
631
|
|
|
611
632
|
declare const ChipButton: ({ styleVar, color, sizeVar, text, onClick, disabled, ...rest }: ChipButtonProps) => react_jsx_runtime.JSX.Element;
|
|
612
633
|
|
|
634
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
635
|
+
declare const CHIPS_VERSION = "2.0.0";
|
|
636
|
+
|
|
613
637
|
type AsProp<T extends React__default.ElementType> = {
|
|
614
638
|
as?: T;
|
|
615
639
|
};
|
|
@@ -695,6 +719,9 @@ interface MenuOptionProps extends ChildrenProps, DisableProps, RightElementProps
|
|
|
695
719
|
|
|
696
720
|
declare const Menu: ({ leftSource, rightSource, children, isSelected, defaultSelected, onClick, sizeVar, disabled, ...rest }: MenuProps) => react_jsx_runtime.JSX.Element;
|
|
697
721
|
|
|
722
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
723
|
+
declare const MENU_VERSION = "2.0.0";
|
|
724
|
+
|
|
698
725
|
declare const DropdownButton: {
|
|
699
726
|
({ text, sizeVar, className, disabled, children, placement, styleVar, floatingZIndex, ...rest }: DropdownButtonProps): react_jsx_runtime.JSX.Element;
|
|
700
727
|
Menu: ({ onClick, children, ...rest }: MenuProps) => react_jsx_runtime.JSX.Element;
|
|
@@ -737,8 +764,12 @@ type SplitButtonContextType = {
|
|
|
737
764
|
declare const SplitButtonContext: React$1.Context<SplitButtonContextType | null>;
|
|
738
765
|
declare const useSplitButtonContext: () => SplitButtonContextType;
|
|
739
766
|
|
|
767
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
768
|
+
declare const BUTTONS_VERSION = "2.0.0";
|
|
769
|
+
|
|
740
770
|
declare const CalloutTypes: {
|
|
741
771
|
readonly INFORMATION: "INFORMATION";
|
|
772
|
+
readonly CAUTION: "CAUTION";
|
|
742
773
|
readonly ALERT: "ALERT";
|
|
743
774
|
};
|
|
744
775
|
type CalloutType = $Values<typeof CalloutTypes>;
|
|
@@ -750,13 +781,19 @@ interface CalloutOptionProps {
|
|
|
750
781
|
*/
|
|
751
782
|
fillWidth?: boolean;
|
|
752
783
|
}
|
|
784
|
+
interface CalloutIconProps extends IconSourceProps, ColorTokenProps {
|
|
785
|
+
}
|
|
753
786
|
|
|
754
787
|
declare const Callout: {
|
|
755
788
|
({ children, styleVar, fillWidth, ...rest }: CalloutProps): react_jsx_runtime.JSX.Element;
|
|
756
789
|
Text: ({ children, ...rest }: TextProps) => react_jsx_runtime.JSX.Element;
|
|
757
|
-
Icon: ({ iconSource }:
|
|
790
|
+
Icon: ({ iconSource, color }: CalloutIconProps) => react_jsx_runtime.JSX.Element;
|
|
791
|
+
BulletList: ({ children }: ChildrenProps) => react_jsx_runtime.JSX.Element;
|
|
758
792
|
};
|
|
759
793
|
|
|
794
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
795
|
+
declare const CALLOUT_VERSION = "2.1.2";
|
|
796
|
+
|
|
760
797
|
interface PopperProps extends PopperOptionProps {
|
|
761
798
|
}
|
|
762
799
|
interface PopperOptionProps extends ChildrenProps {
|
|
@@ -830,6 +867,9 @@ declare const Popper: {
|
|
|
830
867
|
declare const PopperTrigger: React__default.ForwardRefExoticComponent<PopperTriggerProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
831
868
|
declare const PopperPortal: React__default.ForwardRefExoticComponent<PopperPortalProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
832
869
|
|
|
870
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
871
|
+
declare const POPPER_VERSION = "2.0.0";
|
|
872
|
+
|
|
833
873
|
interface ScrollbarRefType {
|
|
834
874
|
scrollTop(top: number): void;
|
|
835
875
|
scrollLeft(left: number): void;
|
|
@@ -931,6 +971,9 @@ interface ScrollAreaOptionProps {
|
|
|
931
971
|
|
|
932
972
|
declare const ScrollArea: React__default.ForwardRefExoticComponent<ScrollAreaProps & React__default.RefAttributes<ScrollbarRefType>>;
|
|
933
973
|
|
|
974
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
975
|
+
declare const SCROLL_AREA_VERSION = "2.0.0";
|
|
976
|
+
|
|
934
977
|
declare const DropdownOptionVariants: {
|
|
935
978
|
readonly CLICK: "CLICK";
|
|
936
979
|
readonly OUTSIDE_CLICK: "OUTSIDE_CLICK";
|
|
@@ -996,6 +1039,9 @@ declare const Dropdown: {
|
|
|
996
1039
|
Content: ({ children, width: initialWidth, type, onClick, ...rest }: DropdownContentProps) => react_jsx_runtime.JSX.Element;
|
|
997
1040
|
};
|
|
998
1041
|
|
|
1042
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1043
|
+
declare const DROPDOWN_VERSION = "2.0.0";
|
|
1044
|
+
|
|
999
1045
|
interface ListProps extends ListOptionProps {
|
|
1000
1046
|
}
|
|
1001
1047
|
interface ListOptionProps extends ChildrenProps, DisableProps, SelectedProps, LeftNodeProps, RightNodeProps, HTMLAttributes<HTMLLIElement> {
|
|
@@ -1008,11 +1054,14 @@ interface ListText2RowsProps {
|
|
|
1008
1054
|
}
|
|
1009
1055
|
|
|
1010
1056
|
declare const List: {
|
|
1011
|
-
({ children, leftSource, rightSource, ...rest }: ListProps): react_jsx_runtime.JSX.Element;
|
|
1057
|
+
({ children, leftSource, rightSource, style, ...rest }: ListProps): react_jsx_runtime.JSX.Element;
|
|
1012
1058
|
Text2Rows: ({ title, subTitle }: ListText2RowsProps) => react_jsx_runtime.JSX.Element;
|
|
1013
1059
|
};
|
|
1014
1060
|
declare const Text2Rows: ({ title, subTitle }: ListText2RowsProps) => react_jsx_runtime.JSX.Element;
|
|
1015
1061
|
|
|
1062
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1063
|
+
declare const LIST_VERSION = "2.0.1";
|
|
1064
|
+
|
|
1016
1065
|
declare const TagStyleVariants: {
|
|
1017
1066
|
readonly SOLID: "SOLID";
|
|
1018
1067
|
readonly TINT: "TINT";
|
|
@@ -1033,6 +1082,9 @@ interface TagOptionProps extends SizeVariantProps<TagSizeVariantType>, StyleVari
|
|
|
1033
1082
|
|
|
1034
1083
|
declare const Tag: ({ sizeVar, children, rightSource, leftSource, className, ...rest }: TagProps) => react_jsx_runtime.JSX.Element;
|
|
1035
1084
|
|
|
1085
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1086
|
+
declare const TAG_VERSION = "2.0.0";
|
|
1087
|
+
|
|
1036
1088
|
interface TreeProps extends TreeOptionProps {
|
|
1037
1089
|
}
|
|
1038
1090
|
interface TreeOptionProps extends ChildrenProps {
|
|
@@ -1078,6 +1130,9 @@ declare const TreeItem: {
|
|
|
1078
1130
|
[TREE_SYMBOL_KEY]: boolean;
|
|
1079
1131
|
};
|
|
1080
1132
|
|
|
1133
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1134
|
+
declare const TREE_VERSION = "2.0.0";
|
|
1135
|
+
|
|
1081
1136
|
declare const IconSizeVariants: {
|
|
1082
1137
|
readonly XS: "XS";
|
|
1083
1138
|
readonly S: "S";
|
|
@@ -1101,6 +1156,9 @@ declare const StyledIcon: _emotion_styled.StyledComponent<{
|
|
|
1101
1156
|
as?: React.ElementType;
|
|
1102
1157
|
} & IconOptionProps, React$1.SVGProps<SVGSVGElement>, {}>;
|
|
1103
1158
|
|
|
1159
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1160
|
+
declare const ICON_VERSION = "2.0.0";
|
|
1161
|
+
|
|
1104
1162
|
declare const InputSizeVariants: {
|
|
1105
1163
|
readonly S: "S";
|
|
1106
1164
|
readonly M: "M";
|
|
@@ -1228,6 +1286,9 @@ interface SelectInputButtonOptionProps extends Omit<HTMLAttributes<HTMLLabelElem
|
|
|
1228
1286
|
|
|
1229
1287
|
declare const SelectInputButton: ({ disabled, isSelected, onMouseEnter, onMouseLeave, onClick, onClear, value, placeholder, label, width, rightSource, sizeVar, ...rest }: SelectInputButtonProps) => react_jsx_runtime.JSX.Element;
|
|
1230
1288
|
|
|
1289
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1290
|
+
declare const INPUTS_VERSION = "2.0.0";
|
|
1291
|
+
|
|
1231
1292
|
interface MinusBoxProps extends MinusBoxOptionProps, Omit<ButtonHTMLAttributes<HTMLButtonElement>, 'onClick' | 'color'> {
|
|
1232
1293
|
}
|
|
1233
1294
|
interface MinusBoxOptionProps {
|
|
@@ -1261,6 +1322,9 @@ declare const Radio: {
|
|
|
1261
1322
|
[RADIO_SYMBOL_KEY]: boolean;
|
|
1262
1323
|
};
|
|
1263
1324
|
|
|
1325
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1326
|
+
declare const CONTROL_BUTTONS_VERSION = "2.0.0";
|
|
1327
|
+
|
|
1264
1328
|
interface TooltipProps extends TooltipOptionProps, Omit<PopperProps, 'autoPlacement'> {
|
|
1265
1329
|
}
|
|
1266
1330
|
interface TooltipOptionProps {
|
|
@@ -1279,6 +1343,9 @@ declare const Tooltip: {
|
|
|
1279
1343
|
Content: ({ content, ...args }: TooltipContentProps) => react_jsx_runtime.JSX.Element;
|
|
1280
1344
|
};
|
|
1281
1345
|
|
|
1346
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1347
|
+
declare const TOOLTIP_VERSION = "2.0.0";
|
|
1348
|
+
|
|
1282
1349
|
declare const TabStyleVariants: {
|
|
1283
1350
|
readonly NORMAL: "NORMAL";
|
|
1284
1351
|
readonly INFO: "INFO";
|
|
@@ -1334,6 +1401,9 @@ type TabsContextType = {
|
|
|
1334
1401
|
declare const TabsContext: React$1.Context<TabsContextType | null>;
|
|
1335
1402
|
declare const useTabs: () => TabsContextType;
|
|
1336
1403
|
|
|
1404
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1405
|
+
declare const TABS_VERSION = "2.0.0";
|
|
1406
|
+
|
|
1337
1407
|
interface PaginationProps extends PaginationOptionProps, HTMLAttributes<HTMLDivElement> {
|
|
1338
1408
|
}
|
|
1339
1409
|
interface PaginationOptionProps extends LeftAndRightNodeProps {
|
|
@@ -1389,6 +1459,9 @@ declare const Pagination: {
|
|
|
1389
1459
|
SizeSelector: ({ data, pageSize, setPageSize }: PaginationSizeSelectorProps) => react_jsx_runtime.JSX.Element;
|
|
1390
1460
|
};
|
|
1391
1461
|
|
|
1462
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1463
|
+
declare const PAGINATION_VERSION = "2.0.0";
|
|
1464
|
+
|
|
1392
1465
|
declare const ToggleButtonSizeVariants: {
|
|
1393
1466
|
readonly S: "S";
|
|
1394
1467
|
readonly M: "M";
|
|
@@ -1416,6 +1489,9 @@ declare const ToggleButton: {
|
|
|
1416
1489
|
InnerRadio: React__default.ForwardRefExoticComponent<ToggleButtonInnerRadioProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
1417
1490
|
};
|
|
1418
1491
|
|
|
1492
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1493
|
+
declare const TOGGLE_BUTTON_VERSION = "2.0.0";
|
|
1494
|
+
|
|
1419
1495
|
declare const DayDatepickerSizeVariants: {
|
|
1420
1496
|
readonly S: "S";
|
|
1421
1497
|
readonly M: "M";
|
|
@@ -1566,6 +1642,9 @@ type YearSelectProps = {
|
|
|
1566
1642
|
}) => void;
|
|
1567
1643
|
};
|
|
1568
1644
|
|
|
1645
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1646
|
+
declare const DATEPICKERS_VERSION = "2.0.0";
|
|
1647
|
+
|
|
1569
1648
|
declare const NumberComboboxSizeVariants: {
|
|
1570
1649
|
readonly S: "S";
|
|
1571
1650
|
readonly M: "M";
|
|
@@ -1591,6 +1670,9 @@ type NumberComboboxProps = NumberComboboxOptionProps & Omit<InputHTMLAttributes<
|
|
|
1591
1670
|
|
|
1592
1671
|
declare const NumberCombobox: ({ disabled, onSelect, onChange, value, width, onBlur, items, isError, sizeVar, placeholder, maxLength, className, floatingZIndex, ...rest }: NumberComboboxProps) => react_jsx_runtime.JSX.Element;
|
|
1593
1672
|
|
|
1673
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1674
|
+
declare const COMBOBOXS_VERSION = "2.0.0";
|
|
1675
|
+
|
|
1594
1676
|
type SkeletonProps = {
|
|
1595
1677
|
styleVar?: 'circle' | 'rectangle';
|
|
1596
1678
|
width?: string;
|
|
@@ -1599,6 +1681,9 @@ type SkeletonProps = {
|
|
|
1599
1681
|
|
|
1600
1682
|
declare const Skeleton: ({ styleVar, width, height }: SkeletonProps) => react_jsx_runtime.JSX.Element;
|
|
1601
1683
|
|
|
1684
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1685
|
+
declare const SKELETON_VERSION = "2.0.0";
|
|
1686
|
+
|
|
1602
1687
|
interface SliderProps {
|
|
1603
1688
|
/**
|
|
1604
1689
|
* 선택 가능한 최소값
|
|
@@ -1645,6 +1730,9 @@ declare const SLIDER_Z_INDEX: {
|
|
|
1645
1730
|
|
|
1646
1731
|
declare const Slider: React__default.FC<SliderProps>;
|
|
1647
1732
|
|
|
1733
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1734
|
+
declare const SLIDER_VERSION = "2.0.0";
|
|
1735
|
+
|
|
1648
1736
|
/** 드롭다운 아이템 타입 */
|
|
1649
1737
|
type DropdownItem = {
|
|
1650
1738
|
/** 표시되는 라벨 */
|
|
@@ -1718,6 +1806,9 @@ interface MemoizedSearchBarComponent extends React.MemoExoticComponent<SearchBar
|
|
|
1718
1806
|
Input: React.FC<SearchBarInputProps>;
|
|
1719
1807
|
}
|
|
1720
1808
|
|
|
1809
|
+
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1810
|
+
declare const SEARCH_BAR_VERSION = "2.0.0";
|
|
1811
|
+
|
|
1721
1812
|
declare const SearchBar: MemoizedSearchBarComponent;
|
|
1722
1813
|
|
|
1723
|
-
export { AnnualDatepicker, AnnualDatepickerProps, AsProp, Avatar, AvatarOptionProps, AvatarProps, AvatarSizeVariantType, AvatarSizeVariants, BackDropOptionProps, BackDropProps, BorderRadiusTokens, BoxShadowTokens, Button, ButtonComponent, ButtonOptionProps, ButtonProps, ButtonSizeVariantType, ButtonSizeVariants, ButtonStyleVariantType, ButtonStyleVariants, CHECKBOX_SYMBOL_KEY, Callout, CalloutOptionProps, CalloutProps, CalloutType, CalloutTypes, Checkbox, CheckboxOptionProps, CheckboxProps, CheckboxStyleVariantType, CheckboxStyleVariants, ChildrenProps, ChipButton, ChipButtonOptionProps, ChipButtonProps, ChipButtonSizeVariantType, ChipButtonSizeVariants, ChipButtonStyleVariantType, ChipButtonStyleVariants, ChipToggle, ChipToggleOptionProps, ChipToggleProps, ChipToggleSizeVariantType, ChipToggleSizeVariants, ChipToggleStyleVariantType, ChipToggleStyleVariants, ColorTokens, DangerouslySetInnerHTML, DayCalendarType, DayDatepicker, DayDatepickerHeaderCustomProps, DayDatepickerOptionProps, DayDatepickerProps, DayDatepickerSizeVariantType, DayDatepickerSizeVariants, DomainType, Dropdown, DropdownButton, DropdownButtonContext, DropdownButtonContextType, DropdownButtonOptionProps, DropdownButtonProps, DropdownButtonSizeVariantType, DropdownButtonSizeVariants, DropdownButtonStyleVariantType, DropdownButtonStyleVariants, DropdownContentProps, DropdownItem, DropdownOptionProps, DropdownOptionVariantType, DropdownOptionVariants, DropdownProps, DropdownSizeVariantType, DropdownTriggerButtonProps, FontWeightTokens, Icon, IconButton, IconButtonComponent, IconButtonOptionProps, IconButtonProps, IconButtonSizeVariantType, IconButtonSizeVariants, IconButtonStyleVariantType, IconButtonStyleVariants, IconOptionProps, IconProps, IconSizeVariants, IconSizeVariantsType, Input, InputButton, InputButtonOptionProps, InputButtonProps, InputOptionProps, InputProps, InputSizeVariantType, InputSizeVariants, List, ListContent2ColumnsProps, ListOptionProps, ListProps, ListText2RowsProps, MODAL_FOOTER_KEY, MODAL_HEADER_KEY, MemoizedSearchBarComponent, Menu, MenuOptionProps, MenuProps, MenuSizeVariantType, MenuSizeVariants, MinusBoxOptionProps, MinusBoxProps, MinusButton, Modal, ModalBodyOptionProps, ModalBodyProps, ModalBottomProps, ModalContainerOptionProps, ModalContainerProps, ModalContext, ModalFooterOptionProps, ModalFooterProps, ModalFooterType, ModalHandlerContext, ModalHeaderOptionProps, ModalHeaderProps, ModalHeaderType, ModalPortal as ModalProvider, ModalSize, ModalSizeType, ModalStateType, ModalTopProps, MonthClickDateInfo, MonthDatepicker, MonthDatepickerProps, MonthDatepickerStyleType, MotionStack, MotionStackComponentType, MotionStackContainer, MotionStackContainerComponentType, NumberCombobox, NumberComboboxErrorType, NumberComboboxInputType, NumberComboboxOptionProps, NumberComboboxProps, NumberComboboxSizeVariantType, NumberComboboxSizeVariants, Pagination, PaginationOptionProps, PaginationProps, PaginationSizeSelectorProps, PolymorphicComponentProps, PolymorphicRef, Popper, PopperOptionProps, PopperPortal, PopperPortalProps, PopperProps, PopperTrigger, PopperTriggerProps, RADIO_SYMBOL_KEY, Radio, RadioOptionProps, RadioProps, RemoveModalProps, SLIDER_Z_INDEX, ScrollArea, ScrollAreaOptionProps, ScrollAreaProps, ScrollbarRefType, SearchBar, SearchBarBaseProps, SearchBarCategoryProps, SearchBarComponent, SearchBarInputProps, SearchBarProps, SearchType, SelectInputButton, SelectInputButtonOptionProps, SelectInputButtonProps, ShoplflowProvider, ShoplflowProviderProps, Skeleton, SkeletonProps, Slider, SliderBounds, SliderProps, SpacingTokens, SplitButton, SplitButtonContext, SplitButtonContextType, SplitButtonOptionProps, SplitButtonProps, SplitButtonSizeVariantType, SplitButtonSizeVariants, SplitButtonStyleVariantType, SplitButtonStyleVariants, Stack, StackComponentType, StackContainer, StackContainerComponentType, StackContainerGenericProps, StackContainerOptionProps, StackContainerProps, StackGenericProps, StackOptionProps, StackProps, StyledIcon, StyledStack, StyledStackContainer, Switch, SwitchOptionProps, SwitchProps, SwitchSizeVariantType, SwitchSizeVariants, TREE_SYMBOL_KEY, TabOptionProps, TabProps, TabSizeVariantType, TabSizeVariants, TabStyleVariantType, TabStyleVariants, TabStyledProps, TabTextStyledProps, Tabs, TabsContext, TabsContextType, TabsOptionProps, TabsProps, Tag, TagOptionProps, TagProps, TagSizeVariantType, TagSizeVariants, TagStyleVariantType, TagStyleVariants, Text, Text2Rows, TextArea, TextAreaOptionProps, TextAreaProps, TextOptionProps, TextProps, ToggleButton, ToggleButtonInnerRadioOptionProps, ToggleButtonInnerRadioProps, ToggleButtonOptionProps, ToggleButtonProps, ToggleButtonSizeVariantType, ToggleButtonSizeVariants, Tooltip, TooltipContentProps, TooltipOptionProps, TooltipProps, Tree, TreeItem, TreeItemOptionProps, TreeItemProps, TreeOptionProps, TreeProps, TypographyTokens, WeekClickDateInfo, WeekDatepicker, WeekDatepickerProps, WeekDatepickerStyleType, YearSelectProps, borderRadiusTokens, boxShadowTokens, colorTokens, fontWeightTokens, getDomain, spacingTokens, typographyTokens, useDomain, useDropdownButtonContext, useHandleModal, useModalValue, useSplitButtonContext, useTabs };
|
|
1814
|
+
export { AVATAR_VERSION, AnnualDatepicker, AnnualDatepickerProps, AsProp, Avatar, AvatarOptionProps, AvatarProps, AvatarSizeVariantType, AvatarSizeVariants, BACK_DROP_VERSION, BUTTONS_VERSION, BackDropOptionProps, BackDropProps, BorderRadiusTokens, BoxShadowTokens, Button, ButtonComponent, ButtonOptionProps, ButtonProps, ButtonSizeVariantType, ButtonSizeVariants, ButtonStyleVariantType, ButtonStyleVariants, CALLOUT_VERSION, CHECKBOX_SYMBOL_KEY, CHIPS_VERSION, COMBOBOXS_VERSION, CONTROL_BUTTONS_VERSION, Callout, CalloutIconProps, CalloutOptionProps, CalloutProps, CalloutType, CalloutTypes, Checkbox, CheckboxOptionProps, CheckboxProps, CheckboxStyleVariantType, CheckboxStyleVariants, ChildrenProps, ChipButton, ChipButtonOptionProps, ChipButtonProps, ChipButtonSizeVariantType, ChipButtonSizeVariants, ChipButtonStyleVariantType, ChipButtonStyleVariants, ChipToggle, ChipToggleOptionProps, ChipToggleProps, ChipToggleSizeVariantType, ChipToggleSizeVariants, ChipToggleStyleVariantType, ChipToggleStyleVariants, ColorTokens, DATEPICKERS_VERSION, DROPDOWN_VERSION, DangerouslySetInnerHTML, DayCalendarType, DayDatepicker, DayDatepickerHeaderCustomProps, DayDatepickerOptionProps, DayDatepickerProps, DayDatepickerSizeVariantType, DayDatepickerSizeVariants, DomainType, Dropdown, DropdownButton, DropdownButtonContext, DropdownButtonContextType, DropdownButtonOptionProps, DropdownButtonProps, DropdownButtonSizeVariantType, DropdownButtonSizeVariants, DropdownButtonStyleVariantType, DropdownButtonStyleVariants, DropdownContentProps, DropdownItem, DropdownOptionProps, DropdownOptionVariantType, DropdownOptionVariants, DropdownProps, DropdownSizeVariantType, DropdownTriggerButtonProps, FontWeightTokens, ICON_VERSION, INPUTS_VERSION, Icon, IconButton, IconButtonComponent, IconButtonOptionProps, IconButtonProps, IconButtonSizeVariantType, IconButtonSizeVariants, IconButtonStyleVariantType, IconButtonStyleVariants, IconOptionProps, IconProps, IconSizeVariants, IconSizeVariantsType, Input, InputButton, InputButtonOptionProps, InputButtonProps, InputOptionProps, InputProps, InputSizeVariantType, InputSizeVariants, LIST_VERSION, List, ListContent2ColumnsProps, ListOptionProps, ListProps, ListText2RowsProps, MENU_VERSION, MODAL_FOOTER_KEY, MODAL_HEADER_KEY, MODAL_VERSION, MemoizedSearchBarComponent, Menu, MenuOptionProps, MenuProps, MenuSizeVariantType, MenuSizeVariants, MinusBoxOptionProps, MinusBoxProps, MinusButton, Modal, ModalBodyOptionProps, ModalBodyProps, ModalBottomProps, ModalContainerOptionProps, ModalContainerProps, ModalContext, ModalFooterOptionProps, ModalFooterProps, ModalFooterType, ModalHandlerContext, ModalHeaderOptionProps, ModalHeaderProps, ModalHeaderType, ModalPortal as ModalProvider, ModalSize, ModalSizeType, ModalStateType, ModalTopProps, MonthClickDateInfo, MonthDatepicker, MonthDatepickerProps, MonthDatepickerStyleType, MotionStack, MotionStackComponentType, MotionStackContainer, MotionStackContainerComponentType, NumberCombobox, NumberComboboxErrorType, NumberComboboxInputType, NumberComboboxOptionProps, NumberComboboxProps, NumberComboboxSizeVariantType, NumberComboboxSizeVariants, PAGINATION_VERSION, POPPER_VERSION, Pagination, PaginationOptionProps, PaginationProps, PaginationSizeSelectorProps, PolymorphicComponentProps, PolymorphicRef, Popper, PopperOptionProps, PopperPortal, PopperPortalProps, PopperProps, PopperTrigger, PopperTriggerProps, RADIO_SYMBOL_KEY, Radio, RadioOptionProps, RadioProps, RemoveModalProps, SCROLL_AREA_VERSION, SEARCH_BAR_VERSION, SKELETON_VERSION, SLIDER_VERSION, SLIDER_Z_INDEX, STACK_CONTAINER_VERSION, STACK_VERSION, SWITCH_VERSION, ScrollArea, ScrollAreaOptionProps, ScrollAreaProps, ScrollbarRefType, SearchBar, SearchBarBaseProps, SearchBarCategoryProps, SearchBarComponent, SearchBarInputProps, SearchBarProps, SearchType, SelectInputButton, SelectInputButtonOptionProps, SelectInputButtonProps, ShoplflowProvider, ShoplflowProviderProps, Skeleton, SkeletonProps, Slider, SliderBounds, SliderProps, SpacingTokens, SplitButton, SplitButtonContext, SplitButtonContextType, SplitButtonOptionProps, SplitButtonProps, SplitButtonSizeVariantType, SplitButtonSizeVariants, SplitButtonStyleVariantType, SplitButtonStyleVariants, Stack, StackComponentType, StackContainer, StackContainerComponentType, StackContainerGenericProps, StackContainerOptionProps, StackContainerProps, StackGenericProps, StackOptionProps, StackProps, StyledIcon, StyledStack, StyledStackContainer, Switch, SwitchOptionProps, SwitchProps, SwitchSizeVariantType, SwitchSizeVariants, TABS_VERSION, TAG_VERSION, TEXT_VERSION, TOGGLE_BUTTON_VERSION, TOOLTIP_VERSION, TREE_SYMBOL_KEY, TREE_VERSION, TabOptionProps, TabProps, TabSizeVariantType, TabSizeVariants, TabStyleVariantType, TabStyleVariants, TabStyledProps, TabTextStyledProps, Tabs, TabsContext, TabsContextType, TabsOptionProps, TabsProps, Tag, TagOptionProps, TagProps, TagSizeVariantType, TagSizeVariants, TagStyleVariantType, TagStyleVariants, Text, Text2Rows, TextArea, TextAreaOptionProps, TextAreaProps, TextOptionProps, TextProps, ToggleButton, ToggleButtonInnerRadioOptionProps, ToggleButtonInnerRadioProps, ToggleButtonOptionProps, ToggleButtonProps, ToggleButtonSizeVariantType, ToggleButtonSizeVariants, Tooltip, TooltipContentProps, TooltipOptionProps, TooltipProps, Tree, TreeItem, TreeItemOptionProps, TreeItemProps, TreeOptionProps, TreeProps, TypographyTokens, WeekClickDateInfo, WeekDatepicker, WeekDatepickerProps, WeekDatepickerStyleType, YearSelectProps, borderRadiusTokens, boxShadowTokens, colorTokens, fontWeightTokens, getDomain, spacingTokens, typographyTokens, useDomain, useDropdownButtonContext, useHandleModal, useModalValue, useSplitButtonContext, useTabs };
|