@shoplflow/base 0.46.13 → 0.46.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +5 -6
- package/dist/index.d.cts +21 -2
- package/dist/index.d.ts +21 -2
- package/dist/index.js +4 -5
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -2265,9 +2265,8 @@ var MinusButton = React.forwardRef((_a, ref) => {
|
|
|
2265
2265
|
MinusButton[MUNUS_BUTTON_SYMBOL_KEY] = true;
|
|
2266
2266
|
exports.MinusButton = MinusButton;
|
|
2267
2267
|
var getStylesByStyleVariant = (styleVariant, isSelected, isHovered, readOnly) => {
|
|
2268
|
-
const
|
|
2269
|
-
const
|
|
2270
|
-
const primaryHoverColor = domain === "hada" ? exports.colorTokens.neutral700 : exports.colorTokens.primary400;
|
|
2268
|
+
const primaryColor = exports.colorTokens.primary300;
|
|
2269
|
+
const primaryHoverColor = exports.colorTokens.primary400;
|
|
2271
2270
|
switch (styleVariant) {
|
|
2272
2271
|
case "PRIMARY":
|
|
2273
2272
|
if (isSelected) {
|
|
@@ -2528,7 +2527,7 @@ Radio[exports.RADIO_SYMBOL_KEY] = true;
|
|
|
2528
2527
|
exports.Radio = Radio;
|
|
2529
2528
|
|
|
2530
2529
|
// src/components/ControlButtons/version.ts
|
|
2531
|
-
exports.CONTROL_BUTTONS_VERSION = "2.0.
|
|
2530
|
+
exports.CONTROL_BUTTONS_VERSION = "2.0.3";
|
|
2532
2531
|
|
|
2533
2532
|
// src/components/Menu/Menu.styled.ts
|
|
2534
2533
|
var getStylesBySizeVar = (sizeVar) => {
|
|
@@ -3118,7 +3117,7 @@ var HelperText = (_a) => {
|
|
|
3118
3117
|
}
|
|
3119
3118
|
return /* @__PURE__ */ jsxRuntime.jsx(NormalHelperText, __spreadValues({ color, position }, rest));
|
|
3120
3119
|
};
|
|
3121
|
-
|
|
3120
|
+
exports.HelperText = HelperText;
|
|
3122
3121
|
var Callout = (_a) => {
|
|
3123
3122
|
var _b = _a, { children, styleVar = "INFORMATION", fillWidth } = _b, rest = __objRest(_b, ["children", "styleVar", "fillWidth"]);
|
|
3124
3123
|
return /* @__PURE__ */ jsxRuntime.jsx(StyledCallout, __spreadProps(__spreadValues({}, rest), { styleVar, "data-shoplflow": "Callout", fillWidth, children }));
|
|
@@ -3128,7 +3127,7 @@ var CalloutText = (_a) => {
|
|
|
3128
3127
|
return /* @__PURE__ */ jsxRuntime.jsx(exports.Text, __spreadProps(__spreadValues({}, rest), { typography: "paragraph2", children }));
|
|
3129
3128
|
};
|
|
3130
3129
|
var CalloutBulletList = ({ children, color = "neutral700" }) => {
|
|
3131
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
3130
|
+
return /* @__PURE__ */ jsxRuntime.jsx(exports.HelperText, { type: "BULLET", color, children });
|
|
3132
3131
|
};
|
|
3133
3132
|
var CalloutIcon = ({ iconSource, color }) => {
|
|
3134
3133
|
return /* @__PURE__ */ jsxRuntime.jsx(StyledCalloutIcon, { as: iconSource, color });
|
package/dist/index.d.cts
CHANGED
|
@@ -1327,7 +1327,7 @@ declare const Radio: {
|
|
|
1327
1327
|
};
|
|
1328
1328
|
|
|
1329
1329
|
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1330
|
-
declare const CONTROL_BUTTONS_VERSION = "2.0.
|
|
1330
|
+
declare const CONTROL_BUTTONS_VERSION = "2.0.3";
|
|
1331
1331
|
|
|
1332
1332
|
interface TooltipProps extends TooltipOptionProps, Omit<PopperProps, 'autoPlacement'> {
|
|
1333
1333
|
}
|
|
@@ -1824,4 +1824,23 @@ declare const SEARCH_BAR_VERSION = "2.0.1";
|
|
|
1824
1824
|
|
|
1825
1825
|
declare const SearchBar: MemoizedSearchBarComponent;
|
|
1826
1826
|
|
|
1827
|
-
|
|
1827
|
+
type BaseHelperTextProps = {
|
|
1828
|
+
color?: ColorTokens;
|
|
1829
|
+
children?: ReactNode;
|
|
1830
|
+
};
|
|
1831
|
+
type PositionProps = {
|
|
1832
|
+
position?: 'PRESET-TOP' | 'PRESET-BOTTOM';
|
|
1833
|
+
};
|
|
1834
|
+
type NormalHelperTextOptionProps = BaseHelperTextProps & PositionProps & {
|
|
1835
|
+
type?: 'NORMAL';
|
|
1836
|
+
};
|
|
1837
|
+
type BulletHelperTextOptionProps = BaseHelperTextProps & {
|
|
1838
|
+
type: 'BULLET';
|
|
1839
|
+
position?: never;
|
|
1840
|
+
};
|
|
1841
|
+
type HelperTextOptionProps = NormalHelperTextOptionProps | BulletHelperTextOptionProps;
|
|
1842
|
+
type HelperTextProps = HelperTextOptionProps & Omit<TextProps, 'typography'>;
|
|
1843
|
+
|
|
1844
|
+
declare const HelperText: ({ type, position, color, ...rest }: HelperTextProps) => react_jsx_runtime.JSX.Element;
|
|
1845
|
+
|
|
1846
|
+
export { AVATAR_VERSION, AnnualDatepicker, AnnualDatepickerProps, AsProp, Avatar, AvatarOptionProps, AvatarProps, AvatarSizeVariantType, AvatarSizeVariants, BACK_DROP_VERSION, BUTTONS_VERSION, BackDropOptionProps, BackDropProps, BorderRadiusTokens, BoxShadowTokens, BulletHelperTextOptionProps, 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, HelperText, HelperTextOptionProps, HelperTextProps, 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, NormalHelperTextOptionProps, 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
|
@@ -1327,7 +1327,7 @@ declare const Radio: {
|
|
|
1327
1327
|
};
|
|
1328
1328
|
|
|
1329
1329
|
/** @internal 컴포넌트 메타데이터: 버전 */
|
|
1330
|
-
declare const CONTROL_BUTTONS_VERSION = "2.0.
|
|
1330
|
+
declare const CONTROL_BUTTONS_VERSION = "2.0.3";
|
|
1331
1331
|
|
|
1332
1332
|
interface TooltipProps extends TooltipOptionProps, Omit<PopperProps, 'autoPlacement'> {
|
|
1333
1333
|
}
|
|
@@ -1824,4 +1824,23 @@ declare const SEARCH_BAR_VERSION = "2.0.1";
|
|
|
1824
1824
|
|
|
1825
1825
|
declare const SearchBar: MemoizedSearchBarComponent;
|
|
1826
1826
|
|
|
1827
|
-
|
|
1827
|
+
type BaseHelperTextProps = {
|
|
1828
|
+
color?: ColorTokens;
|
|
1829
|
+
children?: ReactNode;
|
|
1830
|
+
};
|
|
1831
|
+
type PositionProps = {
|
|
1832
|
+
position?: 'PRESET-TOP' | 'PRESET-BOTTOM';
|
|
1833
|
+
};
|
|
1834
|
+
type NormalHelperTextOptionProps = BaseHelperTextProps & PositionProps & {
|
|
1835
|
+
type?: 'NORMAL';
|
|
1836
|
+
};
|
|
1837
|
+
type BulletHelperTextOptionProps = BaseHelperTextProps & {
|
|
1838
|
+
type: 'BULLET';
|
|
1839
|
+
position?: never;
|
|
1840
|
+
};
|
|
1841
|
+
type HelperTextOptionProps = NormalHelperTextOptionProps | BulletHelperTextOptionProps;
|
|
1842
|
+
type HelperTextProps = HelperTextOptionProps & Omit<TextProps, 'typography'>;
|
|
1843
|
+
|
|
1844
|
+
declare const HelperText: ({ type, position, color, ...rest }: HelperTextProps) => react_jsx_runtime.JSX.Element;
|
|
1845
|
+
|
|
1846
|
+
export { AVATAR_VERSION, AnnualDatepicker, AnnualDatepickerProps, AsProp, Avatar, AvatarOptionProps, AvatarProps, AvatarSizeVariantType, AvatarSizeVariants, BACK_DROP_VERSION, BUTTONS_VERSION, BackDropOptionProps, BackDropProps, BorderRadiusTokens, BoxShadowTokens, BulletHelperTextOptionProps, 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, HelperText, HelperTextOptionProps, HelperTextProps, 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, NormalHelperTextOptionProps, 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.js
CHANGED
|
@@ -2238,9 +2238,8 @@ var MinusButton = forwardRef((_a, ref) => {
|
|
|
2238
2238
|
MinusButton[MUNUS_BUTTON_SYMBOL_KEY] = true;
|
|
2239
2239
|
var MinusButton_default = MinusButton;
|
|
2240
2240
|
var getStylesByStyleVariant = (styleVariant, isSelected, isHovered, readOnly) => {
|
|
2241
|
-
const
|
|
2242
|
-
const
|
|
2243
|
-
const primaryHoverColor = domain === "hada" ? colorTokens.neutral700 : colorTokens.primary400;
|
|
2241
|
+
const primaryColor = colorTokens.primary300;
|
|
2242
|
+
const primaryHoverColor = colorTokens.primary400;
|
|
2244
2243
|
switch (styleVariant) {
|
|
2245
2244
|
case "PRIMARY":
|
|
2246
2245
|
if (isSelected) {
|
|
@@ -2501,7 +2500,7 @@ Radio[RADIO_SYMBOL_KEY] = true;
|
|
|
2501
2500
|
var Radio_default = Radio;
|
|
2502
2501
|
|
|
2503
2502
|
// src/components/ControlButtons/version.ts
|
|
2504
|
-
var CONTROL_BUTTONS_VERSION = "2.0.
|
|
2503
|
+
var CONTROL_BUTTONS_VERSION = "2.0.3";
|
|
2505
2504
|
|
|
2506
2505
|
// src/components/Menu/Menu.styled.ts
|
|
2507
2506
|
var getStylesBySizeVar = (sizeVar) => {
|
|
@@ -7674,4 +7673,4 @@ classnames/index.js:
|
|
|
7674
7673
|
*)
|
|
7675
7674
|
*/
|
|
7676
7675
|
|
|
7677
|
-
export { AVATAR_VERSION, AnnualDatepicker_default as AnnualDatepicker, Avatar_default as Avatar, AvatarSizeVariants, BACK_DROP_VERSION, BUTTONS_VERSION, Button_default as Button, ButtonSizeVariants, ButtonStyleVariants, CALLOUT_VERSION, CHECKBOX_SYMBOL_KEY, CHIPS_VERSION, COMBOBOXS_VERSION, CONTROL_BUTTONS_VERSION, Callout_default as Callout, CalloutTypes, Checkbox_default as Checkbox, CheckboxStyleVariants, ChipButton_default as ChipButton, ChipButtonSizeVariants, ChipButtonStyleVariants, ChipToggle_default as ChipToggle, ChipToggleSizeVariants, ChipToggleStyleVariants, DATEPICKERS_VERSION, DROPDOWN_VERSION, DayDatepicker_default as DayDatepicker, DayDatepickerSizeVariants, Dropdown_default as Dropdown, DropdownButton_default as DropdownButton, DropdownButtonContext, DropdownButtonSizeVariants, DropdownButtonStyleVariants, DropdownOptionVariants, ICON_VERSION, INPUTS_VERSION, Icon_default as Icon, IconButton_default as IconButton, IconButtonSizeVariants, IconButtonStyleVariants, IconSizeVariants, Input_default as Input, InputButton_default as InputButton, InputSizeVariants, LIST_VERSION, List_default as List, MENU_VERSION, MODAL_FOOTER_KEY, MODAL_HEADER_KEY, MODAL_VERSION, Menu_default as Menu, MenuSizeVariants, MinusButton_default as MinusButton, Modal, ModalContext, ModalHandlerContext, ModalPortal_default as ModalProvider, ModalSize, MonthDatepicker_default as MonthDatepicker, MotionStack, MotionStackContainer, NumberCombobox_default as NumberCombobox, NumberComboboxSizeVariants, PAGINATION_VERSION, POPPER_VERSION, Pagination_default as Pagination, Popper_default as Popper, PopperPortal, PopperTrigger, RADIO_SYMBOL_KEY, Radio_default as Radio, SCROLL_AREA_VERSION, SEARCH_BAR_VERSION, SKELETON_VERSION, SLIDER_VERSION, SLIDER_Z_INDEX, STACK_CONTAINER_VERSION, STACK_VERSION, SWITCH_VERSION, ScrollArea_default as ScrollArea, SearchBar2 as SearchBar, SelectInputButton_default as SelectInputButton, ShoplflowProvider_default as ShoplflowProvider, Skeleton_default as Skeleton, Slider_default as Slider, SplitButton_default as SplitButton, SplitButtonContext, SplitButtonSizeVariants, SplitButtonStyleVariants, Stack_default as Stack, StackContainer_default as StackContainer, StyledIcon, StyledStack, StyledStackContainer, Switch_default as Switch, SwitchSizeVariants, TABS_VERSION, TAG_VERSION, TEXT_VERSION, TOGGLE_BUTTON_VERSION, TOOLTIP_VERSION, TREE_SYMBOL_KEY, TREE_VERSION, TabSizeVariants, TabStyleVariants, Tabs_default as Tabs, TabsContext, Tag_default as Tag, TagSizeVariants, TagStyleVariants, Text_default as Text, Text2Rows, TextArea_default as TextArea, ToggleButton_default as ToggleButton, ToggleButtonSizeVariants, Tooltip_default as Tooltip, Tree_default as Tree, TreeItem, WeekDatepicker_default as WeekDatepicker, borderRadiusTokens, boxShadowTokens, colorTokens, fontWeightTokens, getDomain, spacingTokens, typographyTokens, useDomain, useDropdownButtonContext, useHandleModal, useModalValue, useSplitButtonContext, useTabs };
|
|
7676
|
+
export { AVATAR_VERSION, AnnualDatepicker_default as AnnualDatepicker, Avatar_default as Avatar, AvatarSizeVariants, BACK_DROP_VERSION, BUTTONS_VERSION, Button_default as Button, ButtonSizeVariants, ButtonStyleVariants, CALLOUT_VERSION, CHECKBOX_SYMBOL_KEY, CHIPS_VERSION, COMBOBOXS_VERSION, CONTROL_BUTTONS_VERSION, Callout_default as Callout, CalloutTypes, Checkbox_default as Checkbox, CheckboxStyleVariants, ChipButton_default as ChipButton, ChipButtonSizeVariants, ChipButtonStyleVariants, ChipToggle_default as ChipToggle, ChipToggleSizeVariants, ChipToggleStyleVariants, DATEPICKERS_VERSION, DROPDOWN_VERSION, DayDatepicker_default as DayDatepicker, DayDatepickerSizeVariants, Dropdown_default as Dropdown, DropdownButton_default as DropdownButton, DropdownButtonContext, DropdownButtonSizeVariants, DropdownButtonStyleVariants, DropdownOptionVariants, HelperText_default as HelperText, ICON_VERSION, INPUTS_VERSION, Icon_default as Icon, IconButton_default as IconButton, IconButtonSizeVariants, IconButtonStyleVariants, IconSizeVariants, Input_default as Input, InputButton_default as InputButton, InputSizeVariants, LIST_VERSION, List_default as List, MENU_VERSION, MODAL_FOOTER_KEY, MODAL_HEADER_KEY, MODAL_VERSION, Menu_default as Menu, MenuSizeVariants, MinusButton_default as MinusButton, Modal, ModalContext, ModalHandlerContext, ModalPortal_default as ModalProvider, ModalSize, MonthDatepicker_default as MonthDatepicker, MotionStack, MotionStackContainer, NumberCombobox_default as NumberCombobox, NumberComboboxSizeVariants, PAGINATION_VERSION, POPPER_VERSION, Pagination_default as Pagination, Popper_default as Popper, PopperPortal, PopperTrigger, RADIO_SYMBOL_KEY, Radio_default as Radio, SCROLL_AREA_VERSION, SEARCH_BAR_VERSION, SKELETON_VERSION, SLIDER_VERSION, SLIDER_Z_INDEX, STACK_CONTAINER_VERSION, STACK_VERSION, SWITCH_VERSION, ScrollArea_default as ScrollArea, SearchBar2 as SearchBar, SelectInputButton_default as SelectInputButton, ShoplflowProvider_default as ShoplflowProvider, Skeleton_default as Skeleton, Slider_default as Slider, SplitButton_default as SplitButton, SplitButtonContext, SplitButtonSizeVariants, SplitButtonStyleVariants, Stack_default as Stack, StackContainer_default as StackContainer, StyledIcon, StyledStack, StyledStackContainer, Switch_default as Switch, SwitchSizeVariants, TABS_VERSION, TAG_VERSION, TEXT_VERSION, TOGGLE_BUTTON_VERSION, TOOLTIP_VERSION, TREE_SYMBOL_KEY, TREE_VERSION, TabSizeVariants, TabStyleVariants, Tabs_default as Tabs, TabsContext, Tag_default as Tag, TagSizeVariants, TagStyleVariants, Text_default as Text, Text2Rows, TextArea_default as TextArea, ToggleButton_default as ToggleButton, ToggleButtonSizeVariants, Tooltip_default as Tooltip, Tree_default as Tree, TreeItem, WeekDatepicker_default as WeekDatepicker, borderRadiusTokens, boxShadowTokens, colorTokens, fontWeightTokens, getDomain, spacingTokens, typographyTokens, useDomain, useDropdownButtonContext, useHandleModal, useModalValue, useSplitButtonContext, useTabs };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shoplflow/base",
|
|
3
|
-
"version": "0.46.
|
|
3
|
+
"version": "0.46.15",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -81,8 +81,8 @@
|
|
|
81
81
|
"react-dom": "^18.2.0",
|
|
82
82
|
"simplebar-react": "^3.2.6",
|
|
83
83
|
"@shoplflow/hada-assets": "^0.1.10",
|
|
84
|
-
"@shoplflow/
|
|
85
|
-
"@shoplflow/
|
|
84
|
+
"@shoplflow/utils": "^0.8.0",
|
|
85
|
+
"@shoplflow/shopl-assets": "^0.12.38"
|
|
86
86
|
},
|
|
87
87
|
"homepage": "https://github.com/shopl/shoplflow#readme",
|
|
88
88
|
"scripts": {
|