@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.cjs
CHANGED
|
@@ -301,6 +301,9 @@ exports.AvatarSizeVariants = {
|
|
|
301
301
|
XL: "XL"
|
|
302
302
|
};
|
|
303
303
|
|
|
304
|
+
// src/components/Avatar/version.ts
|
|
305
|
+
exports.AVATAR_VERSION = "2.0.0";
|
|
306
|
+
|
|
304
307
|
// src/styles/tokens.ts
|
|
305
308
|
var fontWeightRegular = "var(--font-weight-regular)";
|
|
306
309
|
var fontWeightMedium = "var(--font-weight-medium)";
|
|
@@ -576,6 +579,9 @@ exports.MotionStack = framerMotion.motion(Stack);
|
|
|
576
579
|
exports.MotionStack.Vertical = framerMotion.motion(Stack.Vertical);
|
|
577
580
|
exports.MotionStack.Horizontal = framerMotion.motion(Stack.Horizontal);
|
|
578
581
|
exports.Stack = Stack;
|
|
582
|
+
|
|
583
|
+
// src/components/Stack/version.ts
|
|
584
|
+
exports.STACK_VERSION = "2.0.0";
|
|
579
585
|
exports.StyledStackContainer = styled6__default.default.div`
|
|
580
586
|
display: flex;
|
|
581
587
|
width: ${({ width }) => width};
|
|
@@ -656,6 +662,9 @@ exports.MotionStackContainer = framerMotion.motion(StackContainer);
|
|
|
656
662
|
exports.MotionStackContainer.Vertical = framerMotion.motion(StackContainer.Vertical);
|
|
657
663
|
exports.MotionStackContainer.Horizontal = framerMotion.motion(StackContainer.Horizontal);
|
|
658
664
|
exports.StackContainer = StackContainer;
|
|
665
|
+
|
|
666
|
+
// src/components/StackContainer/version.ts
|
|
667
|
+
exports.STACK_CONTAINER_VERSION = "2.0.0";
|
|
659
668
|
var setEllipsis = (maxLines) => {
|
|
660
669
|
return react$1.css`
|
|
661
670
|
display: -webkit-box;
|
|
@@ -727,6 +736,9 @@ var Text = React3.forwardRef(
|
|
|
727
736
|
}
|
|
728
737
|
);
|
|
729
738
|
exports.Text = Text;
|
|
739
|
+
|
|
740
|
+
// src/components/Text/version.ts
|
|
741
|
+
exports.TEXT_VERSION = "2.0.1";
|
|
730
742
|
var MODAL_SIZE_XXS = 400;
|
|
731
743
|
var MODAL_SIZE_XS = 500;
|
|
732
744
|
var MODAL_SIZE_S = 560;
|
|
@@ -1007,6 +1019,9 @@ var ScrollArea = React3.forwardRef((_a, ref) => {
|
|
|
1007
1019
|
) });
|
|
1008
1020
|
});
|
|
1009
1021
|
exports.ScrollArea = ScrollArea;
|
|
1022
|
+
|
|
1023
|
+
// src/components/ScrollArea/version.ts
|
|
1024
|
+
exports.SCROLL_AREA_VERSION = "2.0.0";
|
|
1010
1025
|
var useModalOption = () => {
|
|
1011
1026
|
const context = React3.useContext(ModalOptionContext);
|
|
1012
1027
|
if (!context) {
|
|
@@ -1253,6 +1268,9 @@ var ModalProvider = ({ children }) => {
|
|
|
1253
1268
|
};
|
|
1254
1269
|
var ModalProvider_default = ModalProvider;
|
|
1255
1270
|
|
|
1271
|
+
// src/components/Modal/version.ts
|
|
1272
|
+
exports.MODAL_VERSION = "2.0.0";
|
|
1273
|
+
|
|
1256
1274
|
// src/components/Modal/index.ts
|
|
1257
1275
|
exports.Modal = {
|
|
1258
1276
|
Container: ModalContainer_default,
|
|
@@ -1262,6 +1280,9 @@ exports.Modal = {
|
|
|
1262
1280
|
Bottom: ModalBottom,
|
|
1263
1281
|
Footer: ModalFooter_default
|
|
1264
1282
|
};
|
|
1283
|
+
|
|
1284
|
+
// src/components/BackDrop/version.ts
|
|
1285
|
+
exports.BACK_DROP_VERSION = "2.0.0";
|
|
1265
1286
|
var getContainerStylesBySizeVar = (sizeVar) => {
|
|
1266
1287
|
switch (sizeVar) {
|
|
1267
1288
|
case "S":
|
|
@@ -1421,6 +1442,9 @@ exports.SwitchSizeVariants = {
|
|
|
1421
1442
|
M: "M"
|
|
1422
1443
|
};
|
|
1423
1444
|
|
|
1445
|
+
// src/components/Switch/version.ts
|
|
1446
|
+
exports.SWITCH_VERSION = "2.0.0";
|
|
1447
|
+
|
|
1424
1448
|
// src/components/Chips/ChipToggle/ChipToggle.types.ts
|
|
1425
1449
|
exports.ChipToggleStyleVariants = {
|
|
1426
1450
|
SOLID: "SOLID"
|
|
@@ -1665,6 +1689,9 @@ var ChipButton = (_a) => {
|
|
|
1665
1689
|
);
|
|
1666
1690
|
};
|
|
1667
1691
|
exports.ChipButton = ChipButton;
|
|
1692
|
+
|
|
1693
|
+
// src/components/Chips/version.ts
|
|
1694
|
+
exports.CHIPS_VERSION = "2.0.0";
|
|
1668
1695
|
var getStyleByStyleVar = (styleVar, color, disabled) => {
|
|
1669
1696
|
const domain = exports.getDomain();
|
|
1670
1697
|
const secondaryBorderColor = domain === "hada" ? exports.colorTokens.hada150 : exports.colorTokens.neutral350;
|
|
@@ -2155,6 +2182,9 @@ exports.PopperPortal = React3.forwardRef(
|
|
|
2155
2182
|
Popper.Trigger = exports.PopperTrigger;
|
|
2156
2183
|
Popper.Portal = exports.PopperPortal;
|
|
2157
2184
|
exports.Popper = Popper;
|
|
2185
|
+
|
|
2186
|
+
// src/components/Popper/version.ts
|
|
2187
|
+
exports.POPPER_VERSION = "2.0.0";
|
|
2158
2188
|
var Container2 = styled6__default.default.div`
|
|
2159
2189
|
display: flex;
|
|
2160
2190
|
align-items: center;
|
|
@@ -2470,6 +2500,9 @@ var Radio = (_a) => {
|
|
|
2470
2500
|
Radio[exports.RADIO_SYMBOL_KEY] = true;
|
|
2471
2501
|
exports.Radio = Radio;
|
|
2472
2502
|
|
|
2503
|
+
// src/components/ControlButtons/version.ts
|
|
2504
|
+
exports.CONTROL_BUTTONS_VERSION = "2.0.0";
|
|
2505
|
+
|
|
2473
2506
|
// src/components/Menu/Menu.styled.ts
|
|
2474
2507
|
var getStylesBySizeVar = (sizeVar) => {
|
|
2475
2508
|
switch (sizeVar) {
|
|
@@ -2578,6 +2611,9 @@ exports.MenuSizeVariants = {
|
|
|
2578
2611
|
S: "S",
|
|
2579
2612
|
M: "M"
|
|
2580
2613
|
};
|
|
2614
|
+
|
|
2615
|
+
// src/components/Menu/version.ts
|
|
2616
|
+
exports.MENU_VERSION = "2.0.0";
|
|
2581
2617
|
exports.DropdownButtonContext = React3.createContext(null);
|
|
2582
2618
|
exports.useDropdownButtonContext = () => {
|
|
2583
2619
|
const context = React3.useContext(exports.DropdownButtonContext);
|
|
@@ -2627,6 +2663,9 @@ var Icon = React3.forwardRef((_a, ref) => {
|
|
|
2627
2663
|
return /* @__PURE__ */ jsxRuntime.jsx(exports.StyledIcon, __spreadProps(__spreadValues({ as: iconSource, ref }, rest), { "data-shoplflow": "Icon" }));
|
|
2628
2664
|
});
|
|
2629
2665
|
exports.Icon = Icon;
|
|
2666
|
+
|
|
2667
|
+
// src/components/Icon/version.ts
|
|
2668
|
+
exports.ICON_VERSION = "2.0.0";
|
|
2630
2669
|
var DropdownButtonMenu = (_a) => {
|
|
2631
2670
|
var _b = _a, { onClick, children } = _b, rest = __objRest(_b, ["onClick", "children"]);
|
|
2632
2671
|
const { setIsOpen } = exports.useDropdownButtonContext();
|
|
@@ -2944,11 +2983,11 @@ exports.SplitButtonStyleVariants = {
|
|
|
2944
2983
|
PRIMARY: "PRIMARY",
|
|
2945
2984
|
SECONDARY: "SECONDARY"
|
|
2946
2985
|
};
|
|
2986
|
+
|
|
2987
|
+
// src/components/Buttons/version.ts
|
|
2988
|
+
exports.BUTTONS_VERSION = "2.0.0";
|
|
2947
2989
|
var informationStyle = react$1.css`
|
|
2948
2990
|
background: ${exports.colorTokens.neutral400_5};
|
|
2949
|
-
& > span {
|
|
2950
|
-
color: ${exports.colorTokens.neutral600};
|
|
2951
|
-
}
|
|
2952
2991
|
& > svg > circle {
|
|
2953
2992
|
fill: ${exports.colorTokens.neutral200};
|
|
2954
2993
|
}
|
|
@@ -2956,12 +2995,20 @@ var informationStyle = react$1.css`
|
|
|
2956
2995
|
fill: ${exports.colorTokens.neutral400};
|
|
2957
2996
|
}
|
|
2958
2997
|
`;
|
|
2998
|
+
var cautionStyle = react$1.css`
|
|
2999
|
+
background: ${exports.colorTokens.yellow100};
|
|
3000
|
+
& > svg > path {
|
|
3001
|
+
fill: ${exports.colorTokens.yellow300};
|
|
3002
|
+
}
|
|
3003
|
+
& > svg > circle {
|
|
3004
|
+
fill: ${exports.colorTokens.yellow300};
|
|
3005
|
+
}
|
|
3006
|
+
& > svg > path {
|
|
3007
|
+
fill: ${exports.colorTokens.yellow300};
|
|
3008
|
+
}
|
|
3009
|
+
`;
|
|
2959
3010
|
var alertStyle = react$1.css`
|
|
2960
3011
|
background: ${exports.colorTokens.red100};
|
|
2961
|
-
& > span {
|
|
2962
|
-
align-self: center;
|
|
2963
|
-
color: ${exports.colorTokens.red300};
|
|
2964
|
-
}
|
|
2965
3012
|
& > svg > path {
|
|
2966
3013
|
fill: ${exports.colorTokens.red300};
|
|
2967
3014
|
}
|
|
@@ -2970,10 +3017,11 @@ var StyledCallout = styled6__default.default.div`
|
|
|
2970
3017
|
display: flex;
|
|
2971
3018
|
justify-content: flex-start;
|
|
2972
3019
|
align-items: start;
|
|
2973
|
-
padding:
|
|
3020
|
+
padding: 12px;
|
|
2974
3021
|
gap: 4px;
|
|
2975
3022
|
border-radius: ${exports.borderRadiusTokens.borderRadius08};
|
|
2976
3023
|
${({ styleVar }) => styleVar === "INFORMATION" && informationStyle}
|
|
3024
|
+
${({ styleVar }) => styleVar === "CAUTION" && cautionStyle}
|
|
2977
3025
|
${({ styleVar }) => styleVar === "ALERT" && alertStyle}
|
|
2978
3026
|
${({ fillWidth }) => fillWidth && react$1.css`
|
|
2979
3027
|
width: 100%;
|
|
@@ -2985,6 +3033,7 @@ var StyledCalloutIcon = styled6__default.default.svg`
|
|
|
2985
3033
|
min-height: 20px;
|
|
2986
3034
|
width: 20px;
|
|
2987
3035
|
min-width: 20px;
|
|
3036
|
+
flex-shrink: 0;
|
|
2988
3037
|
`;
|
|
2989
3038
|
styled6__default.default.div`
|
|
2990
3039
|
padding: 2px 0;
|
|
@@ -2997,18 +3046,41 @@ var CalloutText = (_a) => {
|
|
|
2997
3046
|
var _b = _a, { children } = _b, rest = __objRest(_b, ["children"]);
|
|
2998
3047
|
return /* @__PURE__ */ jsxRuntime.jsx(exports.Text, __spreadProps(__spreadValues({}, rest), { typography: "paragraph2", children }));
|
|
2999
3048
|
};
|
|
3000
|
-
var
|
|
3001
|
-
return /* @__PURE__ */ jsxRuntime.
|
|
3049
|
+
var CalloutBulletList = ({ children }) => {
|
|
3050
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(exports.StackContainer.Horizontal, { spacing: "spacing06", width: "100%", justify: "flex-start", minHeight: "20px", children: [
|
|
3051
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3052
|
+
"div",
|
|
3053
|
+
{
|
|
3054
|
+
style: {
|
|
3055
|
+
marginTop: "8px",
|
|
3056
|
+
backgroundColor: exports.colorTokens.neutral700,
|
|
3057
|
+
width: "3px",
|
|
3058
|
+
height: "3px",
|
|
3059
|
+
borderRadius: "50%",
|
|
3060
|
+
flexShrink: 0
|
|
3061
|
+
}
|
|
3062
|
+
}
|
|
3063
|
+
),
|
|
3064
|
+
children
|
|
3065
|
+
] });
|
|
3066
|
+
};
|
|
3067
|
+
var CalloutIcon = ({ iconSource, color }) => {
|
|
3068
|
+
return /* @__PURE__ */ jsxRuntime.jsx(StyledCalloutIcon, { as: iconSource, color });
|
|
3002
3069
|
};
|
|
3003
3070
|
Callout.Text = CalloutText;
|
|
3004
3071
|
Callout.Icon = CalloutIcon;
|
|
3072
|
+
Callout.BulletList = CalloutBulletList;
|
|
3005
3073
|
exports.Callout = Callout;
|
|
3006
3074
|
|
|
3007
3075
|
// src/components/Callout/Callout.types.ts
|
|
3008
3076
|
exports.CalloutTypes = {
|
|
3009
3077
|
INFORMATION: "INFORMATION",
|
|
3078
|
+
CAUTION: "CAUTION",
|
|
3010
3079
|
ALERT: "ALERT"
|
|
3011
3080
|
};
|
|
3081
|
+
|
|
3082
|
+
// src/components/Callout/version.ts
|
|
3083
|
+
exports.CALLOUT_VERSION = "2.1.2";
|
|
3012
3084
|
var StyledDropdown = styled6__default.default.div`
|
|
3013
3085
|
width: ${({ width }) => width};
|
|
3014
3086
|
`;
|
|
@@ -3341,6 +3413,9 @@ exports.DropdownOptionVariants = {
|
|
|
3341
3413
|
OUTSIDE_CLICK: "OUTSIDE_CLICK",
|
|
3342
3414
|
NONE: "NONE"
|
|
3343
3415
|
};
|
|
3416
|
+
|
|
3417
|
+
// src/components/Dropdown/version.ts
|
|
3418
|
+
exports.DROPDOWN_VERSION = "2.0.0";
|
|
3344
3419
|
var StyledList = styled6__default.default.li`
|
|
3345
3420
|
display: flex;
|
|
3346
3421
|
flex-direction: row;
|
|
@@ -3363,12 +3438,12 @@ var StyledText2Rows = styled6__default.default.div`
|
|
|
3363
3438
|
gap: 2px;
|
|
3364
3439
|
`;
|
|
3365
3440
|
var List = (_a) => {
|
|
3366
|
-
var _b = _a, { children, leftSource, rightSource } = _b, rest = __objRest(_b, ["children", "leftSource", "rightSource"]);
|
|
3441
|
+
var _b = _a, { children, leftSource, rightSource, style } = _b, rest = __objRest(_b, ["children", "leftSource", "rightSource", "style"]);
|
|
3367
3442
|
const LeftSourceClone = leftSource ? React3__namespace.default.cloneElement(leftSource, __spreadValues({}, rest)) : leftSource;
|
|
3368
3443
|
if (!children && rightSource) {
|
|
3369
3444
|
throw new Error("RightSource\uB294 children\uC774 \uD544\uC218\uB85C \uD3EC\uD568\uB418\uC5B4\uC57C\uD569\uB2C8\uB2E4.");
|
|
3370
3445
|
}
|
|
3371
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(StyledList, __spreadProps(__spreadValues({ "data-shoplflow": "List" }, rest), { children: [
|
|
3446
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(StyledList, __spreadProps(__spreadValues({ "data-shoplflow": "List", style }, rest), { children: [
|
|
3372
3447
|
LeftSourceClone && LeftSourceClone,
|
|
3373
3448
|
/* @__PURE__ */ jsxRuntime.jsx(exports.Stack.Horizontal, { minHeight: "36px", width: "100%", spacing: "spacing08", align: "center", children }),
|
|
3374
3449
|
rightSource && rightSource
|
|
@@ -3382,6 +3457,9 @@ exports.Text2Rows = ({ title, subTitle }) => {
|
|
|
3382
3457
|
};
|
|
3383
3458
|
List.Text2Rows = exports.Text2Rows;
|
|
3384
3459
|
exports.List = List;
|
|
3460
|
+
|
|
3461
|
+
// src/components/List/version.ts
|
|
3462
|
+
exports.LIST_VERSION = "2.0.1";
|
|
3385
3463
|
var getTypographyBySize = (size2) => {
|
|
3386
3464
|
switch (size2) {
|
|
3387
3465
|
case "XS":
|
|
@@ -3509,6 +3587,9 @@ exports.TagSizeVariants = {
|
|
|
3509
3587
|
S: "S",
|
|
3510
3588
|
M: "M"
|
|
3511
3589
|
};
|
|
3590
|
+
|
|
3591
|
+
// src/components/Tag/version.ts
|
|
3592
|
+
exports.TAG_VERSION = "2.0.0";
|
|
3512
3593
|
var StyledTree = styled6__default.default(framerMotion.motion.ul)`
|
|
3513
3594
|
display: flex;
|
|
3514
3595
|
flex-direction: column;
|
|
@@ -3666,6 +3747,9 @@ exports.TreeItem = (_a) => {
|
|
|
3666
3747
|
exports.TreeItem[exports.TREE_SYMBOL_KEY] = true;
|
|
3667
3748
|
Tree.Item = exports.TreeItem;
|
|
3668
3749
|
exports.Tree = Tree;
|
|
3750
|
+
|
|
3751
|
+
// src/components/Tree/version.ts
|
|
3752
|
+
exports.TREE_VERSION = "2.0.0";
|
|
3669
3753
|
var StyledInput = styled6__default.default.input`
|
|
3670
3754
|
padding: ${({ sizeVar }) => sizeVar === "S" ? "0 8px" : "4px 12px"};
|
|
3671
3755
|
background-color: transparent;
|
|
@@ -4450,6 +4534,9 @@ var SelectInputButton = (_a) => {
|
|
|
4450
4534
|
);
|
|
4451
4535
|
};
|
|
4452
4536
|
exports.SelectInputButton = SelectInputButton;
|
|
4537
|
+
|
|
4538
|
+
// src/components/Inputs/version.ts
|
|
4539
|
+
exports.INPUTS_VERSION = "2.0.0";
|
|
4453
4540
|
var StyledTooltipContent = styled6__default.default.div`
|
|
4454
4541
|
background-color: ${exports.colorTokens.neutral700};
|
|
4455
4542
|
padding: 4px 8px;
|
|
@@ -4525,6 +4612,9 @@ var Tooltip = (_a) => {
|
|
|
4525
4612
|
};
|
|
4526
4613
|
Tooltip.Content = TooltipContent;
|
|
4527
4614
|
exports.Tooltip = Tooltip;
|
|
4615
|
+
|
|
4616
|
+
// src/components/Tooltip/version.ts
|
|
4617
|
+
exports.TOOLTIP_VERSION = "2.0.0";
|
|
4528
4618
|
exports.TabsContext = React3.createContext(null);
|
|
4529
4619
|
exports.useTabs = () => {
|
|
4530
4620
|
const context = React3.useContext(exports.TabsContext);
|
|
@@ -4789,6 +4879,9 @@ exports.TabSizeVariants = {
|
|
|
4789
4879
|
M: "M",
|
|
4790
4880
|
L: "L"
|
|
4791
4881
|
};
|
|
4882
|
+
|
|
4883
|
+
// src/components/Tabs/version.ts
|
|
4884
|
+
exports.TABS_VERSION = "2.0.0";
|
|
4792
4885
|
var PaginationWrapper = styled6__default.default.div`
|
|
4793
4886
|
display: flex;
|
|
4794
4887
|
align-items: center;
|
|
@@ -4946,6 +5039,9 @@ var Pagination = (_a) => {
|
|
|
4946
5039
|
};
|
|
4947
5040
|
Pagination.SizeSelector = PaginationSizeSelector_default;
|
|
4948
5041
|
exports.Pagination = Pagination;
|
|
5042
|
+
|
|
5043
|
+
// src/components/Pagination/version.ts
|
|
5044
|
+
exports.PAGINATION_VERSION = "2.0.0";
|
|
4949
5045
|
var getLabelStyleByStatus = (selected, disabled) => {
|
|
4950
5046
|
if (disabled && selected) {
|
|
4951
5047
|
return react$1.css`
|
|
@@ -5115,6 +5211,9 @@ exports.ToggleButtonSizeVariants = {
|
|
|
5115
5211
|
S: "S",
|
|
5116
5212
|
M: "M"
|
|
5117
5213
|
};
|
|
5214
|
+
|
|
5215
|
+
// src/components/ToggleButton/version.ts
|
|
5216
|
+
exports.TOGGLE_BUTTON_VERSION = "2.0.0";
|
|
5118
5217
|
var SmallStyledDayDatepickerWrapper = styled6__default.default.div`
|
|
5119
5218
|
display: flex;
|
|
5120
5219
|
width: 280px;
|
|
@@ -6668,6 +6767,9 @@ var WeekDatepicker = ({
|
|
|
6668
6767
|
] });
|
|
6669
6768
|
};
|
|
6670
6769
|
exports.WeekDatepicker = WeekDatepicker;
|
|
6770
|
+
|
|
6771
|
+
// src/components/Datepickers/version.ts
|
|
6772
|
+
exports.DATEPICKERS_VERSION = "2.0.0";
|
|
6671
6773
|
var StyledNumberCombobox = styled6__default.default.div``;
|
|
6672
6774
|
var IconWrapper2 = styled6__default.default(framerMotion.motion.div)`
|
|
6673
6775
|
display: flex;
|
|
@@ -6859,6 +6961,9 @@ exports.NumberComboboxSizeVariants = {
|
|
|
6859
6961
|
S: "S",
|
|
6860
6962
|
M: "M"
|
|
6861
6963
|
};
|
|
6964
|
+
|
|
6965
|
+
// src/components/Comboboxs/version.ts
|
|
6966
|
+
exports.COMBOBOXS_VERSION = "2.0.0";
|
|
6862
6967
|
var animation = react$1.keyframes`
|
|
6863
6968
|
0% {
|
|
6864
6969
|
transform: translateX(-100%);
|
|
@@ -6908,6 +7013,9 @@ var Skeleton = ({ styleVar = "rectangle", width = "50px", height = "20px" }) =>
|
|
|
6908
7013
|
};
|
|
6909
7014
|
exports.Skeleton = Skeleton;
|
|
6910
7015
|
|
|
7016
|
+
// src/components/Skeleton/version.ts
|
|
7017
|
+
exports.SKELETON_VERSION = "2.0.0";
|
|
7018
|
+
|
|
6911
7019
|
// src/components/Slider/Slider.types.ts
|
|
6912
7020
|
exports.SLIDER_Z_INDEX = {
|
|
6913
7021
|
THUMB_BUTTON: 10
|
|
@@ -7196,6 +7304,9 @@ var Slider = ({
|
|
|
7196
7304
|
] }) });
|
|
7197
7305
|
};
|
|
7198
7306
|
exports.Slider = Slider;
|
|
7307
|
+
|
|
7308
|
+
// src/components/Slider/version.ts
|
|
7309
|
+
exports.SLIDER_VERSION = "2.0.0";
|
|
7199
7310
|
var SearchBarContext = React3.createContext({});
|
|
7200
7311
|
var useSearchBarContext = () => React3.useContext(SearchBarContext);
|
|
7201
7312
|
var SearchBarProvider = ({
|
|
@@ -7420,6 +7531,9 @@ var SearchBar = (_a) => {
|
|
|
7420
7531
|
SearchBar.Category = SearchBarCategory;
|
|
7421
7532
|
SearchBar.Input = SearchBarInput;
|
|
7422
7533
|
|
|
7534
|
+
// src/components/SearchBar/version.ts
|
|
7535
|
+
exports.SEARCH_BAR_VERSION = "2.0.0";
|
|
7536
|
+
|
|
7423
7537
|
// src/components/SearchBar/index.ts
|
|
7424
7538
|
exports.SearchBar = SearchBar;
|
|
7425
7539
|
exports.SearchBar.Category = SearchBarCategory;
|