@shoplflow/base 0.33.1 → 0.33.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/dist/index.cjs +52 -4
- package/dist/index.d.cts +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +54 -6
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -1985,7 +1985,7 @@ exports.PopperTrigger = React3.forwardRef(
|
|
|
1985
1985
|
exports.PopperPortal = React3.forwardRef(
|
|
1986
1986
|
({ children, animation: initialAnimation, zIndex }, ref) => {
|
|
1987
1987
|
const { floatingStyles, setFloating, isOpen } = usePopper();
|
|
1988
|
-
const
|
|
1988
|
+
const animation2 = initialAnimation != null ? initialAnimation : fadeInOut;
|
|
1989
1989
|
const refs = useMergeRefs2(ref, setFloating);
|
|
1990
1990
|
let _floatingStyles = __spreadValues({}, floatingStyles);
|
|
1991
1991
|
if (zIndex) {
|
|
@@ -1997,9 +1997,9 @@ exports.PopperPortal = React3.forwardRef(
|
|
|
1997
1997
|
return /* @__PURE__ */ jsxRuntime.jsx(react.FloatingPortal, { children: /* @__PURE__ */ jsxRuntime.jsx(framerMotion.AnimatePresence, { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1998
1998
|
framerMotion.motion.div,
|
|
1999
1999
|
{
|
|
2000
|
-
initial:
|
|
2001
|
-
animate:
|
|
2002
|
-
exit:
|
|
2000
|
+
initial: animation2.initial,
|
|
2001
|
+
animate: animation2.animate,
|
|
2002
|
+
exit: animation2.exit,
|
|
2003
2003
|
ref: refs,
|
|
2004
2004
|
style: _floatingStyles,
|
|
2005
2005
|
children
|
|
@@ -6528,6 +6528,54 @@ exports.NumberComboboxSizeVariants = {
|
|
|
6528
6528
|
S: "S",
|
|
6529
6529
|
M: "M"
|
|
6530
6530
|
};
|
|
6531
|
+
var animation = react$1.keyframes`
|
|
6532
|
+
0% {
|
|
6533
|
+
transform: translateX(-100%);
|
|
6534
|
+
}
|
|
6535
|
+
|
|
6536
|
+
100% {
|
|
6537
|
+
transform: translateX(200%);
|
|
6538
|
+
}
|
|
6539
|
+
`;
|
|
6540
|
+
var getSkeletonStyles = (width, height, styleVar) => {
|
|
6541
|
+
switch (styleVar) {
|
|
6542
|
+
case "circle":
|
|
6543
|
+
return react$1.css`
|
|
6544
|
+
width: ${width};
|
|
6545
|
+
height: ${width};
|
|
6546
|
+
border-radius: 50%;
|
|
6547
|
+
`;
|
|
6548
|
+
case "rectangle":
|
|
6549
|
+
return react$1.css`
|
|
6550
|
+
width: ${width};
|
|
6551
|
+
height: ${height};
|
|
6552
|
+
`;
|
|
6553
|
+
}
|
|
6554
|
+
};
|
|
6555
|
+
var Container6 = styled6__default.default.div`
|
|
6556
|
+
position: relative;
|
|
6557
|
+
border-radius: 8px;
|
|
6558
|
+
background-color: ${exports.colorTokens.neutral200};
|
|
6559
|
+
overflow: hidden;
|
|
6560
|
+
|
|
6561
|
+
${({ styleVar, width, height }) => getSkeletonStyles(width, height, styleVar)};
|
|
6562
|
+
|
|
6563
|
+
&::after {
|
|
6564
|
+
content: '';
|
|
6565
|
+
position: absolute;
|
|
6566
|
+
top: 0;
|
|
6567
|
+
left: 0;
|
|
6568
|
+
width: 100%;
|
|
6569
|
+
height: 100%;
|
|
6570
|
+
background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
|
|
6571
|
+
transform: translateX(-100%);
|
|
6572
|
+
animation: ${animation} 2s infinite;
|
|
6573
|
+
}
|
|
6574
|
+
`;
|
|
6575
|
+
var Skeleton = ({ styleVar = "rectangle", width = "50px", height = "20px" }) => {
|
|
6576
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Container6, { styleVar, width, height, "data-shoplflow": "Skeleton" });
|
|
6577
|
+
};
|
|
6578
|
+
exports.Skeleton = Skeleton;
|
|
6531
6579
|
var SpaceMarginWrapper = styled6__default.default(framerMotion.motion.div)`
|
|
6532
6580
|
position: relative;
|
|
6533
6581
|
display: flex;
|
package/dist/index.d.cts
CHANGED
|
@@ -1532,4 +1532,12 @@ declare type NumberComboboxProps = NumberComboboxOptionProps & Omit<InputHTMLAtt
|
|
|
1532
1532
|
|
|
1533
1533
|
declare const NumberCombobox: ({ disabled, onSelect, onChange, value, width, onBlur, items, isError, sizeVar, placeholder, maxLength, className, floatingZIndex, ...rest }: NumberComboboxProps) => react_jsx_runtime.JSX.Element;
|
|
1534
1534
|
|
|
1535
|
-
|
|
1535
|
+
declare type SkeletonProps = {
|
|
1536
|
+
styleVar?: 'circle' | 'rectangle';
|
|
1537
|
+
width?: string;
|
|
1538
|
+
height?: string;
|
|
1539
|
+
};
|
|
1540
|
+
|
|
1541
|
+
declare const Skeleton: ({ styleVar, width, height }: SkeletonProps) => react_jsx_runtime.JSX.Element;
|
|
1542
|
+
|
|
1543
|
+
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, 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, 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, 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, ScrollArea, ScrollAreaOptionProps, ScrollAreaProps, ScrollbarRefType, SelectInputButton, SelectInputButtonOptionProps, SelectInputButtonProps, ShoplflowProvider, ShoplflowProviderProps, Skeleton, SkeletonProps, 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, 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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -1532,4 +1532,12 @@ declare type NumberComboboxProps = NumberComboboxOptionProps & Omit<InputHTMLAtt
|
|
|
1532
1532
|
|
|
1533
1533
|
declare const NumberCombobox: ({ disabled, onSelect, onChange, value, width, onBlur, items, isError, sizeVar, placeholder, maxLength, className, floatingZIndex, ...rest }: NumberComboboxProps) => react_jsx_runtime.JSX.Element;
|
|
1534
1534
|
|
|
1535
|
-
|
|
1535
|
+
declare type SkeletonProps = {
|
|
1536
|
+
styleVar?: 'circle' | 'rectangle';
|
|
1537
|
+
width?: string;
|
|
1538
|
+
height?: string;
|
|
1539
|
+
};
|
|
1540
|
+
|
|
1541
|
+
declare const Skeleton: ({ styleVar, width, height }: SkeletonProps) => react_jsx_runtime.JSX.Element;
|
|
1542
|
+
|
|
1543
|
+
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, 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, 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, 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, ScrollArea, ScrollAreaOptionProps, ScrollAreaProps, ScrollbarRefType, SelectInputButton, SelectInputButtonOptionProps, SelectInputButtonProps, ShoplflowProvider, ShoplflowProviderProps, Skeleton, SkeletonProps, 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, 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 };
|
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@ import styled6 from '@emotion/styled';
|
|
|
4
4
|
import { motion, AnimatePresence, LayoutGroup, LazyMotion, domAnimation } from 'framer-motion';
|
|
5
5
|
import { jsx, Fragment, jsxs } from 'react/jsx-runtime';
|
|
6
6
|
import { createPortal } from 'react-dom';
|
|
7
|
-
import { css } from '@emotion/react';
|
|
7
|
+
import { css, keyframes } from '@emotion/react';
|
|
8
8
|
import { noop, useMergeRefs, useOutsideClick, OutSideClick, useSelect, useParentElementClick, isNullOrUndefined } from '@shoplflow/utils';
|
|
9
9
|
import Scrollbars from 'react-custom-scrollbars-2';
|
|
10
10
|
import { FloatingPortal, autoUpdate, offset, autoPlacement } from '@floating-ui/react';
|
|
@@ -1958,7 +1958,7 @@ var PopperTrigger = forwardRef(
|
|
|
1958
1958
|
var PopperPortal = forwardRef(
|
|
1959
1959
|
({ children, animation: initialAnimation, zIndex }, ref) => {
|
|
1960
1960
|
const { floatingStyles, setFloating, isOpen } = usePopper();
|
|
1961
|
-
const
|
|
1961
|
+
const animation2 = initialAnimation != null ? initialAnimation : fadeInOut;
|
|
1962
1962
|
const refs = useMergeRefs2(ref, setFloating);
|
|
1963
1963
|
let _floatingStyles = __spreadValues({}, floatingStyles);
|
|
1964
1964
|
if (zIndex) {
|
|
@@ -1970,9 +1970,9 @@ var PopperPortal = forwardRef(
|
|
|
1970
1970
|
return /* @__PURE__ */ jsx(FloatingPortal, { children: /* @__PURE__ */ jsx(AnimatePresence, { children: /* @__PURE__ */ jsx(
|
|
1971
1971
|
motion.div,
|
|
1972
1972
|
{
|
|
1973
|
-
initial:
|
|
1974
|
-
animate:
|
|
1975
|
-
exit:
|
|
1973
|
+
initial: animation2.initial,
|
|
1974
|
+
animate: animation2.animate,
|
|
1975
|
+
exit: animation2.exit,
|
|
1976
1976
|
ref: refs,
|
|
1977
1977
|
style: _floatingStyles,
|
|
1978
1978
|
children
|
|
@@ -6501,6 +6501,54 @@ var NumberComboboxSizeVariants = {
|
|
|
6501
6501
|
S: "S",
|
|
6502
6502
|
M: "M"
|
|
6503
6503
|
};
|
|
6504
|
+
var animation = keyframes`
|
|
6505
|
+
0% {
|
|
6506
|
+
transform: translateX(-100%);
|
|
6507
|
+
}
|
|
6508
|
+
|
|
6509
|
+
100% {
|
|
6510
|
+
transform: translateX(200%);
|
|
6511
|
+
}
|
|
6512
|
+
`;
|
|
6513
|
+
var getSkeletonStyles = (width, height, styleVar) => {
|
|
6514
|
+
switch (styleVar) {
|
|
6515
|
+
case "circle":
|
|
6516
|
+
return css`
|
|
6517
|
+
width: ${width};
|
|
6518
|
+
height: ${width};
|
|
6519
|
+
border-radius: 50%;
|
|
6520
|
+
`;
|
|
6521
|
+
case "rectangle":
|
|
6522
|
+
return css`
|
|
6523
|
+
width: ${width};
|
|
6524
|
+
height: ${height};
|
|
6525
|
+
`;
|
|
6526
|
+
}
|
|
6527
|
+
};
|
|
6528
|
+
var Container6 = styled6.div`
|
|
6529
|
+
position: relative;
|
|
6530
|
+
border-radius: 8px;
|
|
6531
|
+
background-color: ${colorTokens.neutral200};
|
|
6532
|
+
overflow: hidden;
|
|
6533
|
+
|
|
6534
|
+
${({ styleVar, width, height }) => getSkeletonStyles(width, height, styleVar)};
|
|
6535
|
+
|
|
6536
|
+
&::after {
|
|
6537
|
+
content: '';
|
|
6538
|
+
position: absolute;
|
|
6539
|
+
top: 0;
|
|
6540
|
+
left: 0;
|
|
6541
|
+
width: 100%;
|
|
6542
|
+
height: 100%;
|
|
6543
|
+
background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
|
|
6544
|
+
transform: translateX(-100%);
|
|
6545
|
+
animation: ${animation} 2s infinite;
|
|
6546
|
+
}
|
|
6547
|
+
`;
|
|
6548
|
+
var Skeleton = ({ styleVar = "rectangle", width = "50px", height = "20px" }) => {
|
|
6549
|
+
return /* @__PURE__ */ jsx(Container6, { styleVar, width, height, "data-shoplflow": "Skeleton" });
|
|
6550
|
+
};
|
|
6551
|
+
var Skeleton_default = Skeleton;
|
|
6504
6552
|
var SpaceMarginWrapper = styled6(motion.div)`
|
|
6505
6553
|
position: relative;
|
|
6506
6554
|
display: flex;
|
|
@@ -6555,4 +6603,4 @@ classnames/index.js:
|
|
|
6555
6603
|
*)
|
|
6556
6604
|
*/
|
|
6557
6605
|
|
|
6558
|
-
export { AnnualDatepicker_default as AnnualDatepicker, Avatar_default as Avatar, AvatarSizeVariants, Button_default as Button, ButtonSizeVariants, ButtonStyleVariants, CHECKBOX_SYMBOL_KEY, Callout_default as Callout, CalloutTypes, Checkbox_default as Checkbox, CheckboxStyleVariants, ChipButton_default as ChipButton, ChipButtonSizeVariants, ChipButtonStyleVariants, ChipToggle_default as ChipToggle, ChipToggleSizeVariants, ChipToggleStyleVariants, DayDatepicker_default as DayDatepicker, DayDatepickerSizeVariants, Dropdown_default as Dropdown, DropdownButton_default as DropdownButton, DropdownButtonContext, DropdownButtonSizeVariants, DropdownButtonStyleVariants, DropdownOptionVariants, Icon_default as Icon, IconButton_default as IconButton, IconButtonSizeVariants, IconButtonStyleVariants, IconSizeVariants, Input_default as Input, InputButton_default as InputButton, InputSizeVariants, List_default as List, MODAL_FOOTER_KEY, MODAL_HEADER_KEY, 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_default as Pagination, Popper_default as Popper, PopperPortal, PopperTrigger, RADIO_SYMBOL_KEY, Radio_default as Radio, ScrollArea_default as ScrollArea, SelectInputButton_default as SelectInputButton, ShoplflowProvider_default as ShoplflowProvider, SplitButton_default as SplitButton, SplitButtonContext, SplitButtonSizeVariants, SplitButtonStyleVariants, Stack_default as Stack, StackContainer_default as StackContainer, StyledIcon, StyledStack, StyledStackContainer, Switch_default as Switch, TREE_SYMBOL_KEY, 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 };
|
|
6606
|
+
export { AnnualDatepicker_default as AnnualDatepicker, Avatar_default as Avatar, AvatarSizeVariants, Button_default as Button, ButtonSizeVariants, ButtonStyleVariants, CHECKBOX_SYMBOL_KEY, Callout_default as Callout, CalloutTypes, Checkbox_default as Checkbox, CheckboxStyleVariants, ChipButton_default as ChipButton, ChipButtonSizeVariants, ChipButtonStyleVariants, ChipToggle_default as ChipToggle, ChipToggleSizeVariants, ChipToggleStyleVariants, DayDatepicker_default as DayDatepicker, DayDatepickerSizeVariants, Dropdown_default as Dropdown, DropdownButton_default as DropdownButton, DropdownButtonContext, DropdownButtonSizeVariants, DropdownButtonStyleVariants, DropdownOptionVariants, Icon_default as Icon, IconButton_default as IconButton, IconButtonSizeVariants, IconButtonStyleVariants, IconSizeVariants, Input_default as Input, InputButton_default as InputButton, InputSizeVariants, List_default as List, MODAL_FOOTER_KEY, MODAL_HEADER_KEY, 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_default as Pagination, Popper_default as Popper, PopperPortal, PopperTrigger, RADIO_SYMBOL_KEY, Radio_default as Radio, ScrollArea_default as ScrollArea, SelectInputButton_default as SelectInputButton, ShoplflowProvider_default as ShoplflowProvider, Skeleton_default as Skeleton, SplitButton_default as SplitButton, SplitButtonContext, SplitButtonSizeVariants, SplitButtonStyleVariants, Stack_default as Stack, StackContainer_default as StackContainer, StyledIcon, StyledStack, StyledStackContainer, Switch_default as Switch, TREE_SYMBOL_KEY, 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.33.
|
|
3
|
+
"version": "0.33.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -91,8 +91,8 @@
|
|
|
91
91
|
"react-dom": "^18.2.0",
|
|
92
92
|
"simplebar-react": "^3.2.6",
|
|
93
93
|
"@shoplflow/hada-assets": "^0.1.3",
|
|
94
|
-
"@shoplflow/
|
|
95
|
-
"@shoplflow/
|
|
94
|
+
"@shoplflow/utils": "^0.6.5",
|
|
95
|
+
"@shoplflow/shopl-assets": "^0.12.1"
|
|
96
96
|
},
|
|
97
97
|
"scripts": {
|
|
98
98
|
"type-check": "tsc --noEmit",
|