@shoplflow/base 0.33.0 → 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 +68 -19
- package/dist/index.d.cts +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +71 -22
- 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
|
|
@@ -3330,12 +3330,12 @@ var StyledTreeItem = styled6__default.default(framerMotion.motion.li)`
|
|
|
3330
3330
|
gap: 4px;
|
|
3331
3331
|
align-items: center;
|
|
3332
3332
|
justify-content: space-between;
|
|
3333
|
-
padding: 8px 8px 8px
|
|
3333
|
+
padding: 8px 8px 8px 0px;
|
|
3334
3334
|
border-radius: 8px;
|
|
3335
3335
|
background: transparent;
|
|
3336
3336
|
cursor: ${({ onClick }) => onClick ? "pointer" : "initial"};
|
|
3337
3337
|
${({ depth }) => depth && react$1.css`
|
|
3338
|
-
padding-left: ${depth *
|
|
3338
|
+
padding-left: ${(depth - 1) * 24 + 12}px;
|
|
3339
3339
|
`};
|
|
3340
3340
|
&:hover {
|
|
3341
3341
|
background: ${exports.colorTokens.neutral400_5};
|
|
@@ -3401,6 +3401,7 @@ exports.TreeItem = (_a) => {
|
|
|
3401
3401
|
"onClick"
|
|
3402
3402
|
]);
|
|
3403
3403
|
const [isOpened, setIsOpened] = React3__namespace.default.useState(initialIsOpen != null ? initialIsOpen : false);
|
|
3404
|
+
const uniqueId = React3.useId();
|
|
3404
3405
|
const CloneChildren = React3__namespace.default.Children.map(children, (child) => {
|
|
3405
3406
|
if (!React3__namespace.default.isValidElement(child)) {
|
|
3406
3407
|
return child;
|
|
@@ -3422,15 +3423,16 @@ exports.TreeItem = (_a) => {
|
|
|
3422
3423
|
}
|
|
3423
3424
|
return onClick(e);
|
|
3424
3425
|
};
|
|
3425
|
-
const LeftSourceClone = leftSource ? React3__namespace.default.cloneElement(leftSource, __spreadValues({
|
|
3426
|
+
const LeftSourceClone = leftSource ? React3__namespace.default.cloneElement(leftSource, __spreadValues(__spreadValues({
|
|
3426
3427
|
disabled,
|
|
3427
3428
|
onClick
|
|
3428
|
-
}, rest)) : leftSource;
|
|
3429
|
+
}, rest), leftSource.props)) : leftSource;
|
|
3429
3430
|
React3.useEffect(() => {
|
|
3430
3431
|
if (isOpen !== void 0) {
|
|
3431
3432
|
setIsOpened(isOpen);
|
|
3432
3433
|
}
|
|
3433
3434
|
}, [isOpen]);
|
|
3435
|
+
const isLastTree = !children && depth > 0;
|
|
3434
3436
|
return /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
3435
3437
|
/* @__PURE__ */ React3.createElement(
|
|
3436
3438
|
StyledTreeItem,
|
|
@@ -3440,28 +3442,27 @@ exports.TreeItem = (_a) => {
|
|
|
3440
3442
|
variants: fadeInOut
|
|
3441
3443
|
}, AnimateKey), {
|
|
3442
3444
|
layout: true,
|
|
3443
|
-
key:
|
|
3445
|
+
key: uniqueId,
|
|
3444
3446
|
onClick: handleClickTreeItem
|
|
3445
3447
|
}), rest),
|
|
3446
3448
|
/* @__PURE__ */ jsxRuntime.jsxs(LeftElementWrapper, { children: [
|
|
3447
|
-
|
|
3448
|
-
/* @__PURE__ */ jsxRuntime.jsx(exports.StackContainer, { padding: "0 0 0 4px", children: /* @__PURE__ */ jsxRuntime.jsx(exports.Text, { typography: "body1_400", lineClamp: 1, color: disabled ? "neutral350" : "neutral700", children: label }) })
|
|
3449
|
-
] }),
|
|
3450
|
-
/* @__PURE__ */ jsxRuntime.jsxs(RightElementWrapper, { children: [
|
|
3451
|
-
rightSource,
|
|
3452
|
-
children && /* @__PURE__ */ jsxRuntime.jsx(exports.IconButton, { styleVar: "GHOST", onClick: handleToggle, sizeVar: "S", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
3449
|
+
children && !isLastTree && /* @__PURE__ */ jsxRuntime.jsx(exports.IconButton, { styleVar: "GHOST", onClick: handleToggle, sizeVar: "XS", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
3453
3450
|
IconWrapper,
|
|
3454
3451
|
{
|
|
3455
3452
|
animate: {
|
|
3456
|
-
rotate: isOpened ?
|
|
3453
|
+
rotate: isOpened ? 90 : 0,
|
|
3457
3454
|
transition: {
|
|
3458
3455
|
duration: 0.2
|
|
3459
3456
|
}
|
|
3460
3457
|
},
|
|
3461
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(exports.Icon, { iconSource: ShoplAssets.
|
|
3458
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(exports.Icon, { iconSource: ShoplAssets.RightArrowSolidXsmallIcon, sizeVar: "XS", color: "neutral400" })
|
|
3462
3459
|
}
|
|
3463
|
-
) })
|
|
3464
|
-
|
|
3460
|
+
) }),
|
|
3461
|
+
isLastTree && /* @__PURE__ */ jsxRuntime.jsx("div", { style: { width: "24px", height: "24px", visibility: "hidden" } }),
|
|
3462
|
+
LeftSourceClone && LeftSourceClone,
|
|
3463
|
+
/* @__PURE__ */ jsxRuntime.jsx(exports.StackContainer, { padding: "0 0 0 4px", children: /* @__PURE__ */ jsxRuntime.jsx(exports.Text, { typography: "body1_400", lineClamp: 1, color: disabled ? "neutral350" : "neutral700", children: label }) })
|
|
3464
|
+
] }),
|
|
3465
|
+
/* @__PURE__ */ jsxRuntime.jsx(RightElementWrapper, { children: rightSource })
|
|
3465
3466
|
),
|
|
3466
3467
|
/* @__PURE__ */ jsxRuntime.jsx(framerMotion.AnimatePresence, { mode: "sync", children: isOpened && children && /* @__PURE__ */ jsxRuntime.jsx(framerMotion.motion.div, __spreadProps(__spreadValues({ layout: true }, AnimateKey), { variants: fadeInOut, children: CloneChildren }), "children" + String(CloneChildren)) })
|
|
3467
3468
|
] });
|
|
@@ -6527,6 +6528,54 @@ exports.NumberComboboxSizeVariants = {
|
|
|
6527
6528
|
S: "S",
|
|
6528
6529
|
M: "M"
|
|
6529
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;
|
|
6530
6579
|
var SpaceMarginWrapper = styled6__default.default(framerMotion.motion.div)`
|
|
6531
6580
|
position: relative;
|
|
6532
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,14 +4,14 @@ 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';
|
|
11
11
|
export { arrow, flip, hide, inline, offset, shift, size } from '@floating-ui/react';
|
|
12
12
|
import { useFloating } from '@floating-ui/react-dom';
|
|
13
13
|
import * as ShoplAssets from '@shoplflow/shopl-assets';
|
|
14
|
-
import { DownArrowSolidXsmallIcon,
|
|
14
|
+
import { DownArrowSolidXsmallIcon, RightArrowSolidXsmallIcon, FirstPageIcon, LeftArrowIcon, RightArrowIcon, EndPageIcon } from '@shoplflow/shopl-assets';
|
|
15
15
|
import { shift, flip, offset as offset$1 } from '@floating-ui/core';
|
|
16
16
|
import * as HadaAssets from '@shoplflow/hada-assets';
|
|
17
17
|
import DatePicker2 from 'react-datepicker';
|
|
@@ -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
|
|
@@ -3303,12 +3303,12 @@ var StyledTreeItem = styled6(motion.li)`
|
|
|
3303
3303
|
gap: 4px;
|
|
3304
3304
|
align-items: center;
|
|
3305
3305
|
justify-content: space-between;
|
|
3306
|
-
padding: 8px 8px 8px
|
|
3306
|
+
padding: 8px 8px 8px 0px;
|
|
3307
3307
|
border-radius: 8px;
|
|
3308
3308
|
background: transparent;
|
|
3309
3309
|
cursor: ${({ onClick }) => onClick ? "pointer" : "initial"};
|
|
3310
3310
|
${({ depth }) => depth && css`
|
|
3311
|
-
padding-left: ${depth *
|
|
3311
|
+
padding-left: ${(depth - 1) * 24 + 12}px;
|
|
3312
3312
|
`};
|
|
3313
3313
|
&:hover {
|
|
3314
3314
|
background: ${colorTokens.neutral400_5};
|
|
@@ -3374,6 +3374,7 @@ var TreeItem = (_a) => {
|
|
|
3374
3374
|
"onClick"
|
|
3375
3375
|
]);
|
|
3376
3376
|
const [isOpened, setIsOpened] = React3__default.useState(initialIsOpen != null ? initialIsOpen : false);
|
|
3377
|
+
const uniqueId = useId();
|
|
3377
3378
|
const CloneChildren = React3__default.Children.map(children, (child) => {
|
|
3378
3379
|
if (!React3__default.isValidElement(child)) {
|
|
3379
3380
|
return child;
|
|
@@ -3395,15 +3396,16 @@ var TreeItem = (_a) => {
|
|
|
3395
3396
|
}
|
|
3396
3397
|
return onClick(e);
|
|
3397
3398
|
};
|
|
3398
|
-
const LeftSourceClone = leftSource ? React3__default.cloneElement(leftSource, __spreadValues({
|
|
3399
|
+
const LeftSourceClone = leftSource ? React3__default.cloneElement(leftSource, __spreadValues(__spreadValues({
|
|
3399
3400
|
disabled,
|
|
3400
3401
|
onClick
|
|
3401
|
-
}, rest)) : leftSource;
|
|
3402
|
+
}, rest), leftSource.props)) : leftSource;
|
|
3402
3403
|
useEffect(() => {
|
|
3403
3404
|
if (isOpen !== void 0) {
|
|
3404
3405
|
setIsOpened(isOpen);
|
|
3405
3406
|
}
|
|
3406
3407
|
}, [isOpen]);
|
|
3408
|
+
const isLastTree = !children && depth > 0;
|
|
3407
3409
|
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
3408
3410
|
/* @__PURE__ */ createElement(
|
|
3409
3411
|
StyledTreeItem,
|
|
@@ -3413,28 +3415,27 @@ var TreeItem = (_a) => {
|
|
|
3413
3415
|
variants: fadeInOut
|
|
3414
3416
|
}, AnimateKey), {
|
|
3415
3417
|
layout: true,
|
|
3416
|
-
key:
|
|
3418
|
+
key: uniqueId,
|
|
3417
3419
|
onClick: handleClickTreeItem
|
|
3418
3420
|
}), rest),
|
|
3419
3421
|
/* @__PURE__ */ jsxs(LeftElementWrapper, { children: [
|
|
3420
|
-
|
|
3421
|
-
/* @__PURE__ */ jsx(StackContainer_default, { padding: "0 0 0 4px", children: /* @__PURE__ */ jsx(Text_default, { typography: "body1_400", lineClamp: 1, color: disabled ? "neutral350" : "neutral700", children: label }) })
|
|
3422
|
-
] }),
|
|
3423
|
-
/* @__PURE__ */ jsxs(RightElementWrapper, { children: [
|
|
3424
|
-
rightSource,
|
|
3425
|
-
children && /* @__PURE__ */ jsx(IconButton_default, { styleVar: "GHOST", onClick: handleToggle, sizeVar: "S", children: /* @__PURE__ */ jsx(
|
|
3422
|
+
children && !isLastTree && /* @__PURE__ */ jsx(IconButton_default, { styleVar: "GHOST", onClick: handleToggle, sizeVar: "XS", children: /* @__PURE__ */ jsx(
|
|
3426
3423
|
IconWrapper,
|
|
3427
3424
|
{
|
|
3428
3425
|
animate: {
|
|
3429
|
-
rotate: isOpened ?
|
|
3426
|
+
rotate: isOpened ? 90 : 0,
|
|
3430
3427
|
transition: {
|
|
3431
3428
|
duration: 0.2
|
|
3432
3429
|
}
|
|
3433
3430
|
},
|
|
3434
|
-
children: /* @__PURE__ */ jsx(Icon_default, { iconSource:
|
|
3431
|
+
children: /* @__PURE__ */ jsx(Icon_default, { iconSource: RightArrowSolidXsmallIcon, sizeVar: "XS", color: "neutral400" })
|
|
3435
3432
|
}
|
|
3436
|
-
) })
|
|
3437
|
-
|
|
3433
|
+
) }),
|
|
3434
|
+
isLastTree && /* @__PURE__ */ jsx("div", { style: { width: "24px", height: "24px", visibility: "hidden" } }),
|
|
3435
|
+
LeftSourceClone && LeftSourceClone,
|
|
3436
|
+
/* @__PURE__ */ jsx(StackContainer_default, { padding: "0 0 0 4px", children: /* @__PURE__ */ jsx(Text_default, { typography: "body1_400", lineClamp: 1, color: disabled ? "neutral350" : "neutral700", children: label }) })
|
|
3437
|
+
] }),
|
|
3438
|
+
/* @__PURE__ */ jsx(RightElementWrapper, { children: rightSource })
|
|
3438
3439
|
),
|
|
3439
3440
|
/* @__PURE__ */ jsx(AnimatePresence, { mode: "sync", children: isOpened && children && /* @__PURE__ */ jsx(motion.div, __spreadProps(__spreadValues({ layout: true }, AnimateKey), { variants: fadeInOut, children: CloneChildren }), "children" + String(CloneChildren)) })
|
|
3440
3441
|
] });
|
|
@@ -6500,6 +6501,54 @@ var NumberComboboxSizeVariants = {
|
|
|
6500
6501
|
S: "S",
|
|
6501
6502
|
M: "M"
|
|
6502
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;
|
|
6503
6552
|
var SpaceMarginWrapper = styled6(motion.div)`
|
|
6504
6553
|
position: relative;
|
|
6505
6554
|
display: flex;
|
|
@@ -6554,4 +6603,4 @@ classnames/index.js:
|
|
|
6554
6603
|
*)
|
|
6555
6604
|
*/
|
|
6556
6605
|
|
|
6557
|
-
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",
|