@shoplflow/base 0.32.19 → 0.32.21
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 +279 -53
- package/dist/index.d.cts +34 -4
- package/dist/index.d.ts +34 -4
- package/dist/index.js +280 -54
- package/dist/styles/global.css +0 -1
- package/dist/styles/reset.css +0 -1
- package/package.json +27 -27
- package/dist/index.cjs.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/styles/global.css.map +0 -1
- package/dist/styles/reset.css.map +0 -1
package/dist/index.cjs
CHANGED
|
@@ -11,8 +11,8 @@ var Scrollbars = require('react-custom-scrollbars-2');
|
|
|
11
11
|
var react = require('@floating-ui/react');
|
|
12
12
|
var reactDom = require('@floating-ui/react-dom');
|
|
13
13
|
var ShoplAssets = require('@shoplflow/shopl-assets');
|
|
14
|
-
var HadaAssets = require('@shoplflow/hada-assets');
|
|
15
14
|
var core = require('@floating-ui/core');
|
|
15
|
+
var HadaAssets = require('@shoplflow/hada-assets');
|
|
16
16
|
var DatePicker2 = require('react-datepicker');
|
|
17
17
|
require('react-datepicker/dist/react-datepicker.css');
|
|
18
18
|
var SimpleBarReact = require('simplebar-react');
|
|
@@ -102,40 +102,50 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
102
102
|
mod
|
|
103
103
|
));
|
|
104
104
|
|
|
105
|
-
// ../../node_modules/.pnpm/classnames@2.
|
|
105
|
+
// ../../node_modules/.pnpm/classnames@2.5.1/node_modules/classnames/index.js
|
|
106
106
|
var require_classnames = __commonJS({
|
|
107
|
-
"../../node_modules/.pnpm/classnames@2.
|
|
107
|
+
"../../node_modules/.pnpm/classnames@2.5.1/node_modules/classnames/index.js"(exports, module) {
|
|
108
108
|
(function() {
|
|
109
109
|
var hasOwn = {}.hasOwnProperty;
|
|
110
110
|
function classNames2() {
|
|
111
|
-
var classes =
|
|
111
|
+
var classes = "";
|
|
112
112
|
for (var i = 0; i < arguments.length; i++) {
|
|
113
113
|
var arg = arguments[i];
|
|
114
|
-
if (
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
114
|
+
if (arg) {
|
|
115
|
+
classes = appendClass(classes, parseValue(arg));
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
return classes;
|
|
119
|
+
}
|
|
120
|
+
function parseValue(arg) {
|
|
121
|
+
if (typeof arg === "string" || typeof arg === "number") {
|
|
122
|
+
return arg;
|
|
123
|
+
}
|
|
124
|
+
if (typeof arg !== "object") {
|
|
125
|
+
return "";
|
|
126
|
+
}
|
|
127
|
+
if (Array.isArray(arg)) {
|
|
128
|
+
return classNames2.apply(null, arg);
|
|
129
|
+
}
|
|
130
|
+
if (arg.toString !== Object.prototype.toString && !arg.toString.toString().includes("[native code]")) {
|
|
131
|
+
return arg.toString();
|
|
132
|
+
}
|
|
133
|
+
var classes = "";
|
|
134
|
+
for (var key in arg) {
|
|
135
|
+
if (hasOwn.call(arg, key) && arg[key]) {
|
|
136
|
+
classes = appendClass(classes, key);
|
|
136
137
|
}
|
|
137
138
|
}
|
|
138
|
-
return classes
|
|
139
|
+
return classes;
|
|
140
|
+
}
|
|
141
|
+
function appendClass(value, newClass) {
|
|
142
|
+
if (!newClass) {
|
|
143
|
+
return value;
|
|
144
|
+
}
|
|
145
|
+
if (value) {
|
|
146
|
+
return value + " " + newClass;
|
|
147
|
+
}
|
|
148
|
+
return value + newClass;
|
|
139
149
|
}
|
|
140
150
|
if (typeof module !== "undefined" && module.exports) {
|
|
141
151
|
classNames2.default = classNames2;
|
|
@@ -1811,12 +1821,19 @@ exports.IconButtonStyleVariants = {
|
|
|
1811
1821
|
SOLID: "SOLID",
|
|
1812
1822
|
GHOST: "GHOST"
|
|
1813
1823
|
};
|
|
1824
|
+
var getPopoverContentStyle = () => {
|
|
1825
|
+
return react$1.css`
|
|
1826
|
+
min-width: 112px;
|
|
1827
|
+
padding: 4px;
|
|
1828
|
+
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.12);
|
|
1829
|
+
border-radius: 8px;
|
|
1830
|
+
background-color: ${exports.colorTokens.neutral0};
|
|
1831
|
+
`;
|
|
1832
|
+
};
|
|
1833
|
+
|
|
1834
|
+
// src/components/Buttons/DropdownButton/DropdownButton.styled.ts
|
|
1814
1835
|
var StyledPopoverContentWrapper = styled6__default.default.div`
|
|
1815
|
-
|
|
1816
|
-
padding: 4px;
|
|
1817
|
-
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.12);
|
|
1818
|
-
border-radius: 8px;
|
|
1819
|
-
background-color: ${exports.colorTokens.neutral0};
|
|
1836
|
+
${getPopoverContentStyle()}
|
|
1820
1837
|
`;
|
|
1821
1838
|
var StyledArrowIcon = styled6__default.default(framerMotion.motion.div)`
|
|
1822
1839
|
display: flex;
|
|
@@ -2425,11 +2442,10 @@ var DropdownButton = (_a) => {
|
|
|
2425
2442
|
_styleVar = "SOLID";
|
|
2426
2443
|
color = "coolgray50";
|
|
2427
2444
|
}
|
|
2428
|
-
return /* @__PURE__ */ jsxRuntime.jsx(exports.DropdownButtonContext.Provider, { value: { isOpen, setIsOpen }, children: /* @__PURE__ */ jsxRuntime.jsxs(exports.Popper, { placement, offset: 4, children: [
|
|
2445
|
+
return /* @__PURE__ */ jsxRuntime.jsx(exports.DropdownButtonContext.Provider, { value: { isOpen, setIsOpen }, "data-shoplflow": "DropdownButton", children: /* @__PURE__ */ jsxRuntime.jsxs(exports.Popper, { placement, offset: 4, middlewares: [core.shift({ crossAxis: true, padding: 4 })], children: [
|
|
2429
2446
|
/* @__PURE__ */ jsxRuntime.jsx(exports.Popper.Trigger, { isOpen, className: _className, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
2430
2447
|
exports.Button,
|
|
2431
2448
|
__spreadProps(__spreadValues({
|
|
2432
|
-
"data-shoplflow": "DropdownButton",
|
|
2433
2449
|
className: _className,
|
|
2434
2450
|
sizeVar,
|
|
2435
2451
|
styleVar: _styleVar,
|
|
@@ -2479,6 +2495,209 @@ exports.DropdownButtonStyleVariants = {
|
|
|
2479
2495
|
PRIMARY: "PRIMARY",
|
|
2480
2496
|
SECONDARY: "SECONDARY"
|
|
2481
2497
|
};
|
|
2498
|
+
var getStyleByStyleVar3 = (styleVar, color, disabled) => {
|
|
2499
|
+
switch (styleVar) {
|
|
2500
|
+
case "PRIMARY":
|
|
2501
|
+
return react$1.css`
|
|
2502
|
+
border: 1px solid ${exports.colorTokens.primary400};
|
|
2503
|
+
background-color: ${exports.colorTokens.primary300};
|
|
2504
|
+
:hover {
|
|
2505
|
+
background-color: ${!disabled && exports.colorTokens.primary400};
|
|
2506
|
+
}
|
|
2507
|
+
`;
|
|
2508
|
+
case "SECONDARY":
|
|
2509
|
+
return react$1.css`
|
|
2510
|
+
border: 1px solid ${exports.colorTokens.neutral350};
|
|
2511
|
+
background-color: ${exports.colorTokens.neutral0};
|
|
2512
|
+
:hover {
|
|
2513
|
+
background-color: ${!disabled && exports.colorTokens.neutral100};
|
|
2514
|
+
}
|
|
2515
|
+
`;
|
|
2516
|
+
default:
|
|
2517
|
+
return react$1.css`
|
|
2518
|
+
border: 1px solid ${exports.colorTokens.primary400};
|
|
2519
|
+
background-color: ${exports.colorTokens.primary300};
|
|
2520
|
+
`;
|
|
2521
|
+
}
|
|
2522
|
+
};
|
|
2523
|
+
var getStyleBySizeVar3 = (sizeVar) => {
|
|
2524
|
+
switch (sizeVar) {
|
|
2525
|
+
case "M":
|
|
2526
|
+
return react$1.css`
|
|
2527
|
+
min-width: 72px;
|
|
2528
|
+
min-height: 40px;
|
|
2529
|
+
`;
|
|
2530
|
+
case "S":
|
|
2531
|
+
return react$1.css`
|
|
2532
|
+
min-width: 54px;
|
|
2533
|
+
min-height: 32px;
|
|
2534
|
+
`;
|
|
2535
|
+
default:
|
|
2536
|
+
return react$1.css`
|
|
2537
|
+
min-width: 72px;
|
|
2538
|
+
min-height: 40px;
|
|
2539
|
+
`;
|
|
2540
|
+
}
|
|
2541
|
+
};
|
|
2542
|
+
var StyledPopoverContentWrapper2 = styled6__default.default.div`
|
|
2543
|
+
${getPopoverContentStyle()}
|
|
2544
|
+
`;
|
|
2545
|
+
var StyledArrowIcon2 = styled6__default.default(framerMotion.motion.div)`
|
|
2546
|
+
display: flex;
|
|
2547
|
+
justify-content: center;
|
|
2548
|
+
align-items: center;
|
|
2549
|
+
flex-shrink: 0;
|
|
2550
|
+
`;
|
|
2551
|
+
var SplitButtonDivider = styled6__default.default.div`
|
|
2552
|
+
height: ${({ sizeVar }) => sizeVar === "M" ? "38px" : "30px"};
|
|
2553
|
+
width: 1px;
|
|
2554
|
+
background-color: ${({ styleVar }) => styleVar === "PRIMARY" ? exports.colorTokens.shopl400 : exports.colorTokens.neutral350};
|
|
2555
|
+
`;
|
|
2556
|
+
var StyledSplitButton = styled6__default.default.button`
|
|
2557
|
+
display: flex;
|
|
2558
|
+
align-items: center;
|
|
2559
|
+
justify-content: center;
|
|
2560
|
+
height: fit-content;
|
|
2561
|
+
width: fit-content;
|
|
2562
|
+
gap: 8px;
|
|
2563
|
+
padding: 0 12px;
|
|
2564
|
+
border-radius: 6px;
|
|
2565
|
+
cursor: pointer;
|
|
2566
|
+
${({ styleVar, color, disabled }) => getStyleByStyleVar3(styleVar, color, disabled)};
|
|
2567
|
+
${({ sizeVar }) => getStyleBySizeVar3(sizeVar)};
|
|
2568
|
+
${({ disabled }) => getDisabledStyle(disabled)}
|
|
2569
|
+
`;
|
|
2570
|
+
exports.SplitButtonContext = React3.createContext(null);
|
|
2571
|
+
exports.useSplitButtonContext = () => {
|
|
2572
|
+
const context = React3.useContext(exports.SplitButtonContext);
|
|
2573
|
+
if (!context) {
|
|
2574
|
+
throw new Error("SplitButtonContext must be used within a SplitButton component");
|
|
2575
|
+
}
|
|
2576
|
+
return context;
|
|
2577
|
+
};
|
|
2578
|
+
var SplitButtonMenu = (_a) => {
|
|
2579
|
+
var _b = _a, { onClick, children } = _b, rest = __objRest(_b, ["onClick", "children"]);
|
|
2580
|
+
const { setIsOpen } = exports.useSplitButtonContext();
|
|
2581
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
2582
|
+
exports.Menu,
|
|
2583
|
+
__spreadProps(__spreadValues({
|
|
2584
|
+
onClick: (event) => {
|
|
2585
|
+
event.stopPropagation();
|
|
2586
|
+
event.preventDefault();
|
|
2587
|
+
onClick == null ? void 0 : onClick(event);
|
|
2588
|
+
setIsOpen(false);
|
|
2589
|
+
}
|
|
2590
|
+
}, rest), {
|
|
2591
|
+
children
|
|
2592
|
+
})
|
|
2593
|
+
);
|
|
2594
|
+
};
|
|
2595
|
+
var SplitButton = (_a) => {
|
|
2596
|
+
var _b = _a, {
|
|
2597
|
+
children,
|
|
2598
|
+
color,
|
|
2599
|
+
onClick,
|
|
2600
|
+
disabled,
|
|
2601
|
+
placement = "bottom-start",
|
|
2602
|
+
floatingZIndex,
|
|
2603
|
+
leftSource,
|
|
2604
|
+
rightSource,
|
|
2605
|
+
styleVar = "PRIMARY",
|
|
2606
|
+
sizeVar = "M",
|
|
2607
|
+
lineClamp = 1,
|
|
2608
|
+
text
|
|
2609
|
+
} = _b, rest = __objRest(_b, [
|
|
2610
|
+
"children",
|
|
2611
|
+
"color",
|
|
2612
|
+
"onClick",
|
|
2613
|
+
"disabled",
|
|
2614
|
+
"placement",
|
|
2615
|
+
"floatingZIndex",
|
|
2616
|
+
"leftSource",
|
|
2617
|
+
"rightSource",
|
|
2618
|
+
"styleVar",
|
|
2619
|
+
"sizeVar",
|
|
2620
|
+
"lineClamp",
|
|
2621
|
+
"text"
|
|
2622
|
+
]);
|
|
2623
|
+
const selector = React3.useRef(`shoplflow-${crypto.randomUUID()}-split-button`).current;
|
|
2624
|
+
const [isOpen, setIsOpen] = utils.useOutsideClick({
|
|
2625
|
+
selector: `.${selector}`,
|
|
2626
|
+
useOutsideScroll: true
|
|
2627
|
+
});
|
|
2628
|
+
return /* @__PURE__ */ jsxRuntime.jsx(exports.SplitButtonContext.Provider, { value: { isOpen, setIsOpen }, children: /* @__PURE__ */ jsxRuntime.jsxs(exports.Popper, { placement, offset: 4, middlewares: [core.shift({ crossAxis: true, padding: 4 })], children: [
|
|
2629
|
+
/* @__PURE__ */ jsxRuntime.jsx(exports.Popper.Trigger, { isOpen, className: selector, children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2630
|
+
StyledSplitButton,
|
|
2631
|
+
__spreadProps(__spreadValues({
|
|
2632
|
+
"data-shoplflow": "SplitButton",
|
|
2633
|
+
color,
|
|
2634
|
+
styleVar,
|
|
2635
|
+
sizeVar,
|
|
2636
|
+
disabled
|
|
2637
|
+
}, rest), {
|
|
2638
|
+
onClick: (event) => {
|
|
2639
|
+
event.stopPropagation();
|
|
2640
|
+
event.preventDefault();
|
|
2641
|
+
if (disabled) {
|
|
2642
|
+
return;
|
|
2643
|
+
}
|
|
2644
|
+
onClick == null ? void 0 : onClick(event);
|
|
2645
|
+
setIsOpen((prev) => !prev);
|
|
2646
|
+
},
|
|
2647
|
+
children: [
|
|
2648
|
+
/* @__PURE__ */ jsxRuntime.jsxs(exports.Stack.Horizontal, { spacing: "spacing04", align: "center", children: [
|
|
2649
|
+
leftSource,
|
|
2650
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2651
|
+
exports.Text,
|
|
2652
|
+
{
|
|
2653
|
+
lineClamp,
|
|
2654
|
+
whiteSpace: "nowrap",
|
|
2655
|
+
wordBreak: "keep-all",
|
|
2656
|
+
color: styleVar === "PRIMARY" ? "neutral0" : "neutral700",
|
|
2657
|
+
typography: sizeVar === "M" ? "body1_400" : "body2_400",
|
|
2658
|
+
children: text
|
|
2659
|
+
}
|
|
2660
|
+
),
|
|
2661
|
+
rightSource
|
|
2662
|
+
] }),
|
|
2663
|
+
/* @__PURE__ */ jsxRuntime.jsx(SplitButtonDivider, { sizeVar, styleVar }),
|
|
2664
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2665
|
+
StyledArrowIcon2,
|
|
2666
|
+
{
|
|
2667
|
+
animate: {
|
|
2668
|
+
rotate: isOpen ? 180 : 0
|
|
2669
|
+
},
|
|
2670
|
+
transition: {
|
|
2671
|
+
duration: 0.2
|
|
2672
|
+
},
|
|
2673
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
2674
|
+
exports.Icon,
|
|
2675
|
+
{
|
|
2676
|
+
iconSource: ShoplAssets.DownArrowSolidXsmallIcon,
|
|
2677
|
+
color: styleVar === "PRIMARY" ? "neutral0" : "neutral600",
|
|
2678
|
+
sizeVar: "XS"
|
|
2679
|
+
}
|
|
2680
|
+
)
|
|
2681
|
+
}
|
|
2682
|
+
)
|
|
2683
|
+
]
|
|
2684
|
+
})
|
|
2685
|
+
) }),
|
|
2686
|
+
/* @__PURE__ */ jsxRuntime.jsx(exports.Popper.Portal, { zIndex: floatingZIndex, children: /* @__PURE__ */ jsxRuntime.jsx(StyledPopoverContentWrapper2, { children }) })
|
|
2687
|
+
] }) });
|
|
2688
|
+
};
|
|
2689
|
+
SplitButton.Menu = SplitButtonMenu;
|
|
2690
|
+
exports.SplitButton = SplitButton;
|
|
2691
|
+
|
|
2692
|
+
// src/components/Buttons/SplitButton/SplitButton.types.ts
|
|
2693
|
+
exports.SplitButtonSizeVariants = {
|
|
2694
|
+
S: "S",
|
|
2695
|
+
M: "M"
|
|
2696
|
+
};
|
|
2697
|
+
exports.SplitButtonStyleVariants = {
|
|
2698
|
+
PRIMARY: "PRIMARY",
|
|
2699
|
+
SECONDARY: "SECONDARY"
|
|
2700
|
+
};
|
|
2482
2701
|
var informationStyle = react$1.css`
|
|
2483
2702
|
background: ${exports.colorTokens.neutral100};
|
|
2484
2703
|
& > span {
|
|
@@ -3839,22 +4058,32 @@ var Tooltip = (_a) => {
|
|
|
3839
4058
|
}
|
|
3840
4059
|
onOpenChange == null ? void 0 : onOpenChange(false);
|
|
3841
4060
|
}, [open, onOpenChange]);
|
|
3842
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3843
|
-
|
|
3844
|
-
|
|
3845
|
-
|
|
3846
|
-
|
|
3847
|
-
|
|
3848
|
-
|
|
3849
|
-
|
|
3850
|
-
|
|
3851
|
-
|
|
3852
|
-
|
|
3853
|
-
|
|
3854
|
-
|
|
3855
|
-
|
|
3856
|
-
|
|
3857
|
-
|
|
4061
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4062
|
+
exports.Popper,
|
|
4063
|
+
__spreadProps(__spreadValues({
|
|
4064
|
+
offset: offset4,
|
|
4065
|
+
placement,
|
|
4066
|
+
middlewares: [core.flip(), core.shift({ padding: 5 })],
|
|
4067
|
+
"data-shoplflow": "Tooltip"
|
|
4068
|
+
}, popperProps), {
|
|
4069
|
+
children: [
|
|
4070
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
4071
|
+
exports.Popper.Trigger,
|
|
4072
|
+
{
|
|
4073
|
+
ref: triggerRef,
|
|
4074
|
+
isOpen: isOpen || open,
|
|
4075
|
+
onMouseOver: showHandler,
|
|
4076
|
+
onMouseLeave: hideHandler,
|
|
4077
|
+
onFocus: showHandler,
|
|
4078
|
+
onBlur: hideHandler,
|
|
4079
|
+
style: { display: "flex", alignItems: "center", justifyContent: "center" },
|
|
4080
|
+
children: trigger
|
|
4081
|
+
}
|
|
4082
|
+
),
|
|
4083
|
+
/* @__PURE__ */ jsxRuntime.jsx(exports.Popper.Portal, { ref: portalRef, children: popper })
|
|
4084
|
+
]
|
|
4085
|
+
})
|
|
4086
|
+
);
|
|
3858
4087
|
};
|
|
3859
4088
|
Tooltip.Content = TooltipContent;
|
|
3860
4089
|
exports.Tooltip = Tooltip;
|
|
@@ -4996,7 +5225,6 @@ var YearSelect = ({ optionList, className, parentClassName, activeValue, maxHeig
|
|
|
4996
5225
|
maxHeight,
|
|
4997
5226
|
height
|
|
4998
5227
|
},
|
|
4999
|
-
placeholder: void 0,
|
|
5000
5228
|
className,
|
|
5001
5229
|
children: optionList == null ? void 0 : optionList.map((option, index) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5002
5230
|
OptionListItem,
|
|
@@ -6196,5 +6424,3 @@ Object.defineProperty(exports, 'size', {
|
|
|
6196
6424
|
enumerable: true,
|
|
6197
6425
|
get: function () { return react.size; }
|
|
6198
6426
|
});
|
|
6199
|
-
//# sourceMappingURL=out.js.map
|
|
6200
|
-
//# sourceMappingURL=index.cjs.map
|
package/dist/index.d.cts
CHANGED
|
@@ -354,7 +354,7 @@ declare const MotionStack: MotionStackType$1;
|
|
|
354
354
|
|
|
355
355
|
declare const StyledStack: _emotion_styled.StyledComponent<{
|
|
356
356
|
theme?: _emotion_react.Theme | undefined;
|
|
357
|
-
as?: React$1.ElementType<any> | undefined;
|
|
357
|
+
as?: React$1.ElementType<any, keyof React$1.JSX.IntrinsicElements> | undefined;
|
|
358
358
|
} & StackOptionProps, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
359
359
|
|
|
360
360
|
declare type StackContainerGenericProps<T extends StringElementType = 'div'> = RenderConfigProps & StackContainerProps & HTMLPropsWithoutRef<T>;
|
|
@@ -428,7 +428,7 @@ declare const MotionStackContainer: MotionStackType;
|
|
|
428
428
|
|
|
429
429
|
declare const StyledStackContainer: _emotion_styled.StyledComponent<{
|
|
430
430
|
theme?: _emotion_react.Theme | undefined;
|
|
431
|
-
as?: React$1.ElementType<any> | undefined;
|
|
431
|
+
as?: React$1.ElementType<any, keyof React$1.JSX.IntrinsicElements> | undefined;
|
|
432
432
|
} & StackContainerOptionProps, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
433
433
|
|
|
434
434
|
interface TextOptionProps {
|
|
@@ -683,6 +683,36 @@ declare type DropdownButtonContextType = {
|
|
|
683
683
|
declare const DropdownButtonContext: React$1.Context<DropdownButtonContextType | null>;
|
|
684
684
|
declare const useDropdownButtonContext: () => DropdownButtonContextType;
|
|
685
685
|
|
|
686
|
+
declare const SplitButtonSizeVariants: {
|
|
687
|
+
readonly S: "S";
|
|
688
|
+
readonly M: "M";
|
|
689
|
+
};
|
|
690
|
+
declare type SplitButtonSizeVariantType = $Values<typeof SplitButtonSizeVariants>;
|
|
691
|
+
declare const SplitButtonStyleVariants: {
|
|
692
|
+
readonly PRIMARY: "PRIMARY";
|
|
693
|
+
readonly SECONDARY: "SECONDARY";
|
|
694
|
+
};
|
|
695
|
+
declare type SplitButtonStyleVariantType = $Values<typeof SplitButtonStyleVariants>;
|
|
696
|
+
interface SplitButtonProps extends Omit<ComponentPropsWithoutRef<'button'>, 'color' | 'disabled'>, SplitButtonOptionProps {
|
|
697
|
+
placement?: Placement;
|
|
698
|
+
floatingZIndex?: CSSProperties['zIndex'];
|
|
699
|
+
lineClamp?: number;
|
|
700
|
+
text: string;
|
|
701
|
+
}
|
|
702
|
+
declare type SplitButtonOptionProps = SizeVariantProps<SplitButtonSizeVariantType> & StyleVariantProps<SplitButtonStyleVariantType> & LeftAndRightNodeProps & DisableProps & ColorTokenProps;
|
|
703
|
+
|
|
704
|
+
declare const SplitButton: {
|
|
705
|
+
({ children, color, onClick, disabled, placement, floatingZIndex, leftSource, rightSource, styleVar, sizeVar, lineClamp, text, ...rest }: SplitButtonProps): react_jsx_runtime.JSX.Element;
|
|
706
|
+
Menu: ({ onClick, children, ...rest }: MenuProps) => react_jsx_runtime.JSX.Element;
|
|
707
|
+
};
|
|
708
|
+
|
|
709
|
+
declare type SplitButtonContextType = {
|
|
710
|
+
isOpen: boolean;
|
|
711
|
+
setIsOpen: (isOpen: boolean) => void;
|
|
712
|
+
};
|
|
713
|
+
declare const SplitButtonContext: React$1.Context<SplitButtonContextType | null>;
|
|
714
|
+
declare const useSplitButtonContext: () => SplitButtonContextType;
|
|
715
|
+
|
|
686
716
|
declare const CalloutTypes: {
|
|
687
717
|
readonly INFORMATION: "INFORMATION";
|
|
688
718
|
readonly ALERT: "ALERT";
|
|
@@ -1030,7 +1060,7 @@ declare const Icon: React__default.ForwardRefExoticComponent<IconProps & React__
|
|
|
1030
1060
|
|
|
1031
1061
|
declare const StyledIcon: _emotion_styled.StyledComponent<{
|
|
1032
1062
|
theme?: _emotion_react.Theme | undefined;
|
|
1033
|
-
as?: React$1.ElementType<any> | undefined;
|
|
1063
|
+
as?: React$1.ElementType<any, keyof React$1.JSX.IntrinsicElements> | undefined;
|
|
1034
1064
|
} & IconOptionProps, React$1.SVGProps<SVGSVGElement>, {}>;
|
|
1035
1065
|
|
|
1036
1066
|
declare const InputSizeVariants: {
|
|
@@ -1492,4 +1522,4 @@ declare type NumberComboboxProps = NumberComboboxOptionProps & Omit<InputHTMLAtt
|
|
|
1492
1522
|
|
|
1493
1523
|
declare const NumberCombobox: ({ disabled, onSelect, onChange, value, width, onBlur, items, isError, sizeVar, placeholder, maxLength, className, floatingZIndex, ...rest }: NumberComboboxProps) => react_jsx_runtime.JSX.Element;
|
|
1494
1524
|
|
|
1495
|
-
export { AnnualDatepicker, AnnualDatepickerProps, 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, Dropdown, DropdownButton, DropdownButtonContext, DropdownButtonContextType, DropdownButtonOptionProps, DropdownButtonProps, DropdownButtonSizeVariantType, DropdownButtonSizeVariants, DropdownButtonStyleVariantType, DropdownButtonStyleVariants, DropdownContentProps, DropdownOptionProps, DropdownOptionVariantType, 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, ModalContainerOptionProps, ModalContainerProps, ModalContext, ModalFooterOptionProps, ModalFooterProps, ModalFooterType, ModalHandlerContext, ModalHeaderOptionProps, ModalHeaderProps, ModalHeaderType, ModalPortal as ModalProvider, ModalSize, ModalSizeType, ModalStateType, MonthClickDateInfo, MonthDatepicker, MonthDatepickerProps, MonthDatepickerStyleType, MotionStack, MotionStackComponentType, MotionStackContainer, MotionStackContainerComponentType, NumberCombobox, NumberComboboxErrorType, NumberComboboxInputType, NumberComboboxOptionProps, NumberComboboxProps, NumberComboboxSizeVariantType, NumberComboboxSizeVariants, Pagination, PaginationOptionProps, PaginationProps, PaginationSizeSelectorProps, Popper, PopperOptionProps, PopperPortal, PopperPortalProps, PopperProps, PopperTrigger, PopperTriggerProps, RADIO_SYMBOL_KEY, Radio, RadioOptionProps, RadioProps, RemoveModalProps, ScrollArea, ScrollAreaOptionProps, ScrollAreaProps, ScrollbarRefType, SelectInputButton, SelectInputButtonOptionProps, SelectInputButtonProps, ShoplflowProvider, ShoplflowProviderProps, SpacingTokens, 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, useTabs };
|
|
1525
|
+
export { AnnualDatepicker, AnnualDatepickerProps, 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, Dropdown, DropdownButton, DropdownButtonContext, DropdownButtonContextType, DropdownButtonOptionProps, DropdownButtonProps, DropdownButtonSizeVariantType, DropdownButtonSizeVariants, DropdownButtonStyleVariantType, DropdownButtonStyleVariants, DropdownContentProps, DropdownOptionProps, DropdownOptionVariantType, 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, ModalContainerOptionProps, ModalContainerProps, ModalContext, ModalFooterOptionProps, ModalFooterProps, ModalFooterType, ModalHandlerContext, ModalHeaderOptionProps, ModalHeaderProps, ModalHeaderType, ModalPortal as ModalProvider, ModalSize, ModalSizeType, ModalStateType, MonthClickDateInfo, MonthDatepicker, MonthDatepickerProps, MonthDatepickerStyleType, MotionStack, MotionStackComponentType, MotionStackContainer, MotionStackContainerComponentType, NumberCombobox, NumberComboboxErrorType, NumberComboboxInputType, NumberComboboxOptionProps, NumberComboboxProps, NumberComboboxSizeVariantType, NumberComboboxSizeVariants, Pagination, PaginationOptionProps, PaginationProps, PaginationSizeSelectorProps, Popper, PopperOptionProps, PopperPortal, PopperPortalProps, PopperProps, PopperTrigger, PopperTriggerProps, RADIO_SYMBOL_KEY, Radio, RadioOptionProps, RadioProps, RemoveModalProps, ScrollArea, ScrollAreaOptionProps, ScrollAreaProps, ScrollbarRefType, SelectInputButton, SelectInputButtonOptionProps, SelectInputButtonProps, ShoplflowProvider, ShoplflowProviderProps, 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
|
@@ -354,7 +354,7 @@ declare const MotionStack: MotionStackType$1;
|
|
|
354
354
|
|
|
355
355
|
declare const StyledStack: _emotion_styled.StyledComponent<{
|
|
356
356
|
theme?: _emotion_react.Theme | undefined;
|
|
357
|
-
as?: React$1.ElementType<any> | undefined;
|
|
357
|
+
as?: React$1.ElementType<any, keyof React$1.JSX.IntrinsicElements> | undefined;
|
|
358
358
|
} & StackOptionProps, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
359
359
|
|
|
360
360
|
declare type StackContainerGenericProps<T extends StringElementType = 'div'> = RenderConfigProps & StackContainerProps & HTMLPropsWithoutRef<T>;
|
|
@@ -428,7 +428,7 @@ declare const MotionStackContainer: MotionStackType;
|
|
|
428
428
|
|
|
429
429
|
declare const StyledStackContainer: _emotion_styled.StyledComponent<{
|
|
430
430
|
theme?: _emotion_react.Theme | undefined;
|
|
431
|
-
as?: React$1.ElementType<any> | undefined;
|
|
431
|
+
as?: React$1.ElementType<any, keyof React$1.JSX.IntrinsicElements> | undefined;
|
|
432
432
|
} & StackContainerOptionProps, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
433
433
|
|
|
434
434
|
interface TextOptionProps {
|
|
@@ -683,6 +683,36 @@ declare type DropdownButtonContextType = {
|
|
|
683
683
|
declare const DropdownButtonContext: React$1.Context<DropdownButtonContextType | null>;
|
|
684
684
|
declare const useDropdownButtonContext: () => DropdownButtonContextType;
|
|
685
685
|
|
|
686
|
+
declare const SplitButtonSizeVariants: {
|
|
687
|
+
readonly S: "S";
|
|
688
|
+
readonly M: "M";
|
|
689
|
+
};
|
|
690
|
+
declare type SplitButtonSizeVariantType = $Values<typeof SplitButtonSizeVariants>;
|
|
691
|
+
declare const SplitButtonStyleVariants: {
|
|
692
|
+
readonly PRIMARY: "PRIMARY";
|
|
693
|
+
readonly SECONDARY: "SECONDARY";
|
|
694
|
+
};
|
|
695
|
+
declare type SplitButtonStyleVariantType = $Values<typeof SplitButtonStyleVariants>;
|
|
696
|
+
interface SplitButtonProps extends Omit<ComponentPropsWithoutRef<'button'>, 'color' | 'disabled'>, SplitButtonOptionProps {
|
|
697
|
+
placement?: Placement;
|
|
698
|
+
floatingZIndex?: CSSProperties['zIndex'];
|
|
699
|
+
lineClamp?: number;
|
|
700
|
+
text: string;
|
|
701
|
+
}
|
|
702
|
+
declare type SplitButtonOptionProps = SizeVariantProps<SplitButtonSizeVariantType> & StyleVariantProps<SplitButtonStyleVariantType> & LeftAndRightNodeProps & DisableProps & ColorTokenProps;
|
|
703
|
+
|
|
704
|
+
declare const SplitButton: {
|
|
705
|
+
({ children, color, onClick, disabled, placement, floatingZIndex, leftSource, rightSource, styleVar, sizeVar, lineClamp, text, ...rest }: SplitButtonProps): react_jsx_runtime.JSX.Element;
|
|
706
|
+
Menu: ({ onClick, children, ...rest }: MenuProps) => react_jsx_runtime.JSX.Element;
|
|
707
|
+
};
|
|
708
|
+
|
|
709
|
+
declare type SplitButtonContextType = {
|
|
710
|
+
isOpen: boolean;
|
|
711
|
+
setIsOpen: (isOpen: boolean) => void;
|
|
712
|
+
};
|
|
713
|
+
declare const SplitButtonContext: React$1.Context<SplitButtonContextType | null>;
|
|
714
|
+
declare const useSplitButtonContext: () => SplitButtonContextType;
|
|
715
|
+
|
|
686
716
|
declare const CalloutTypes: {
|
|
687
717
|
readonly INFORMATION: "INFORMATION";
|
|
688
718
|
readonly ALERT: "ALERT";
|
|
@@ -1030,7 +1060,7 @@ declare const Icon: React__default.ForwardRefExoticComponent<IconProps & React__
|
|
|
1030
1060
|
|
|
1031
1061
|
declare const StyledIcon: _emotion_styled.StyledComponent<{
|
|
1032
1062
|
theme?: _emotion_react.Theme | undefined;
|
|
1033
|
-
as?: React$1.ElementType<any> | undefined;
|
|
1063
|
+
as?: React$1.ElementType<any, keyof React$1.JSX.IntrinsicElements> | undefined;
|
|
1034
1064
|
} & IconOptionProps, React$1.SVGProps<SVGSVGElement>, {}>;
|
|
1035
1065
|
|
|
1036
1066
|
declare const InputSizeVariants: {
|
|
@@ -1492,4 +1522,4 @@ declare type NumberComboboxProps = NumberComboboxOptionProps & Omit<InputHTMLAtt
|
|
|
1492
1522
|
|
|
1493
1523
|
declare const NumberCombobox: ({ disabled, onSelect, onChange, value, width, onBlur, items, isError, sizeVar, placeholder, maxLength, className, floatingZIndex, ...rest }: NumberComboboxProps) => react_jsx_runtime.JSX.Element;
|
|
1494
1524
|
|
|
1495
|
-
export { AnnualDatepicker, AnnualDatepickerProps, 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, Dropdown, DropdownButton, DropdownButtonContext, DropdownButtonContextType, DropdownButtonOptionProps, DropdownButtonProps, DropdownButtonSizeVariantType, DropdownButtonSizeVariants, DropdownButtonStyleVariantType, DropdownButtonStyleVariants, DropdownContentProps, DropdownOptionProps, DropdownOptionVariantType, 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, ModalContainerOptionProps, ModalContainerProps, ModalContext, ModalFooterOptionProps, ModalFooterProps, ModalFooterType, ModalHandlerContext, ModalHeaderOptionProps, ModalHeaderProps, ModalHeaderType, ModalPortal as ModalProvider, ModalSize, ModalSizeType, ModalStateType, MonthClickDateInfo, MonthDatepicker, MonthDatepickerProps, MonthDatepickerStyleType, MotionStack, MotionStackComponentType, MotionStackContainer, MotionStackContainerComponentType, NumberCombobox, NumberComboboxErrorType, NumberComboboxInputType, NumberComboboxOptionProps, NumberComboboxProps, NumberComboboxSizeVariantType, NumberComboboxSizeVariants, Pagination, PaginationOptionProps, PaginationProps, PaginationSizeSelectorProps, Popper, PopperOptionProps, PopperPortal, PopperPortalProps, PopperProps, PopperTrigger, PopperTriggerProps, RADIO_SYMBOL_KEY, Radio, RadioOptionProps, RadioProps, RemoveModalProps, ScrollArea, ScrollAreaOptionProps, ScrollAreaProps, ScrollbarRefType, SelectInputButton, SelectInputButtonOptionProps, SelectInputButtonProps, ShoplflowProvider, ShoplflowProviderProps, SpacingTokens, 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, useTabs };
|
|
1525
|
+
export { AnnualDatepicker, AnnualDatepickerProps, 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, Dropdown, DropdownButton, DropdownButtonContext, DropdownButtonContextType, DropdownButtonOptionProps, DropdownButtonProps, DropdownButtonSizeVariantType, DropdownButtonSizeVariants, DropdownButtonStyleVariantType, DropdownButtonStyleVariants, DropdownContentProps, DropdownOptionProps, DropdownOptionVariantType, 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, ModalContainerOptionProps, ModalContainerProps, ModalContext, ModalFooterOptionProps, ModalFooterProps, ModalFooterType, ModalHandlerContext, ModalHeaderOptionProps, ModalHeaderProps, ModalHeaderType, ModalPortal as ModalProvider, ModalSize, ModalSizeType, ModalStateType, MonthClickDateInfo, MonthDatepicker, MonthDatepickerProps, MonthDatepickerStyleType, MotionStack, MotionStackComponentType, MotionStackContainer, MotionStackContainerComponentType, NumberCombobox, NumberComboboxErrorType, NumberComboboxInputType, NumberComboboxOptionProps, NumberComboboxProps, NumberComboboxSizeVariantType, NumberComboboxSizeVariants, Pagination, PaginationOptionProps, PaginationProps, PaginationSizeSelectorProps, Popper, PopperOptionProps, PopperPortal, PopperPortalProps, PopperProps, PopperTrigger, PopperTriggerProps, RADIO_SYMBOL_KEY, Radio, RadioOptionProps, RadioProps, RemoveModalProps, ScrollArea, ScrollAreaOptionProps, ScrollAreaProps, ScrollbarRefType, SelectInputButton, SelectInputButtonOptionProps, SelectInputButtonProps, ShoplflowProvider, ShoplflowProviderProps, 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 };
|