myshell-react-lib 0.1.40 → 0.1.42
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 +368 -148
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +20 -1
- package/dist/index.d.ts +20 -1
- package/dist/index.js +350 -150
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -4321,6 +4321,9 @@ __export(index_exports, {
|
|
|
4321
4321
|
DropdownMenuTrigger: function() {
|
|
4322
4322
|
return DropdownMenuTrigger;
|
|
4323
4323
|
},
|
|
4324
|
+
ErrorState: function() {
|
|
4325
|
+
return ErrorState;
|
|
4326
|
+
},
|
|
4324
4327
|
Form: function() {
|
|
4325
4328
|
return Form;
|
|
4326
4329
|
},
|
|
@@ -4447,6 +4450,15 @@ __export(index_exports, {
|
|
|
4447
4450
|
ModalTitle: function() {
|
|
4448
4451
|
return ModalTitle;
|
|
4449
4452
|
},
|
|
4453
|
+
NetworkErrorState: function() {
|
|
4454
|
+
return NetworkErrorState;
|
|
4455
|
+
},
|
|
4456
|
+
NoPageState: function() {
|
|
4457
|
+
return NoPageState;
|
|
4458
|
+
},
|
|
4459
|
+
NotFoundState: function() {
|
|
4460
|
+
return NotFoundState;
|
|
4461
|
+
},
|
|
4450
4462
|
NumberInput: function() {
|
|
4451
4463
|
return NumberInput;
|
|
4452
4464
|
},
|
|
@@ -4579,6 +4591,9 @@ __export(index_exports, {
|
|
|
4579
4591
|
Spinner: function() {
|
|
4580
4592
|
return Spinner;
|
|
4581
4593
|
},
|
|
4594
|
+
State: function() {
|
|
4595
|
+
return State2;
|
|
4596
|
+
},
|
|
4582
4597
|
SubHeading: function() {
|
|
4583
4598
|
return SubHeading;
|
|
4584
4599
|
},
|
|
@@ -8687,7 +8702,7 @@ var Modal = function(_param) {
|
|
|
8687
8702
|
})
|
|
8688
8703
|
}));
|
|
8689
8704
|
}
|
|
8690
|
-
var
|
|
8705
|
+
var renderIcon3 = function(state2) {
|
|
8691
8706
|
switch(state2){
|
|
8692
8707
|
case "info":
|
|
8693
8708
|
return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(import_InformationCircleIcon.default, {
|
|
@@ -8734,7 +8749,7 @@ var Modal = function(_param) {
|
|
|
8734
8749
|
className: cn(isNotification && "border-none !pb-3"),
|
|
8735
8750
|
children: state && /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("div", {
|
|
8736
8751
|
className: cn("flex items-center justify-center w-10 h-10 rounded-full flex-shrink-0 flex-grow-0", getBackgroundColor(state)),
|
|
8737
|
-
children:
|
|
8752
|
+
children: renderIcon3(state)
|
|
8738
8753
|
})
|
|
8739
8754
|
}),
|
|
8740
8755
|
/* @__PURE__ */ (0, import_jsx_runtime34.jsxs)("div", {
|
|
@@ -12299,9 +12314,10 @@ var tabVariants = (0, import_class_variance_authority17.cva)("relative inline-fl
|
|
|
12299
12314
|
}
|
|
12300
12315
|
});
|
|
12301
12316
|
var Tabs2 = React35.forwardRef(function(_param, ref) {
|
|
12302
|
-
var className = _param.className, listClassName = _param.listClassName, contentClassName = _param.contentClassName, _param_variant = _param.variant, variant = _param_variant === void 0 ? "button" : _param_variant, size = _param.size, _param_isLink = _param.isLink, isLink = _param_isLink === void 0 ? false : _param_isLink, _param_rounded = _param.rounded, rounded = _param_rounded === void 0 ? "default" : _param_rounded, items = _param.items, props = _object_without_properties(_param, [
|
|
12317
|
+
var className = _param.className, listClassName = _param.listClassName, listBoxClassName = _param.listBoxClassName, contentClassName = _param.contentClassName, _param_variant = _param.variant, variant = _param_variant === void 0 ? "button" : _param_variant, size = _param.size, _param_isLink = _param.isLink, isLink = _param_isLink === void 0 ? false : _param_isLink, _param_rounded = _param.rounded, rounded = _param_rounded === void 0 ? "default" : _param_rounded, items = _param.items, props = _object_without_properties(_param, [
|
|
12303
12318
|
"className",
|
|
12304
12319
|
"listClassName",
|
|
12320
|
+
"listBoxClassName",
|
|
12305
12321
|
"contentClassName",
|
|
12306
12322
|
"variant",
|
|
12307
12323
|
"size",
|
|
@@ -12315,7 +12331,7 @@ var Tabs2 = React35.forwardRef(function(_param, ref) {
|
|
|
12315
12331
|
}, props), {
|
|
12316
12332
|
children: [
|
|
12317
12333
|
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("div", {
|
|
12318
|
-
className: "w-full flex justify-start items-center",
|
|
12334
|
+
className: cn("w-full flex justify-start items-center", listBoxClassName),
|
|
12319
12335
|
children: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(TabsPrimitive.List, _object_spread_props(_object_spread({
|
|
12320
12336
|
ref: ref,
|
|
12321
12337
|
className: cn(tabListVariants({
|
|
@@ -12600,12 +12616,211 @@ function Chips(props) {
|
|
|
12600
12616
|
]
|
|
12601
12617
|
});
|
|
12602
12618
|
}
|
|
12619
|
+
// src/components/button/link-button.tsx
|
|
12620
|
+
var import_react_slot5 = require("@radix-ui/react-slot");
|
|
12621
|
+
var import_lucide_react13 = require("lucide-react");
|
|
12622
|
+
var React39 = __toESM(require("react"), 1);
|
|
12623
|
+
var import_jsx_runtime55 = require("react/jsx-runtime");
|
|
12624
|
+
var LinkButton = React39.forwardRef(function(_param, ref) {
|
|
12625
|
+
var _param_className = _param.className, className = _param_className === void 0 ? "" : _param_className, iconClassName = _param.iconClassName, _param_color = _param.color, color = _param_color === void 0 ? "default" : _param_color, icon = _param.icon, _param_iconDirection = _param.iconDirection, iconDirection = _param_iconDirection === void 0 ? "left" : _param_iconDirection, _param_size = _param.size, size = _param_size === void 0 ? "lg" : _param_size, _param_asChild = _param.asChild, asChild = _param_asChild === void 0 ? false : _param_asChild, _param_loading = _param.loading, loading = _param_loading === void 0 ? false : _param_loading, _param_noStyle = _param.noStyle, noStyle = _param_noStyle === void 0 ? false : _param_noStyle, _param_iconOutBox = _param.iconOutBox, iconOutBox = _param_iconOutBox === void 0 ? false : _param_iconOutBox, _param_isBlock = _param.isBlock, isBlock = _param_isBlock === void 0 ? false : _param_isBlock, disabled = _param.disabled, children = _param.children, autoFocus = _param.autoFocus, asset = _param.asset, _param_assetNumber = _param.assetNumber, assetNumber = _param_assetNumber === void 0 ? 0 : _param_assetNumber, props = _object_without_properties(_param, [
|
|
12626
|
+
"className",
|
|
12627
|
+
"iconClassName",
|
|
12628
|
+
"color",
|
|
12629
|
+
"icon",
|
|
12630
|
+
"iconDirection",
|
|
12631
|
+
"size",
|
|
12632
|
+
"asChild",
|
|
12633
|
+
"loading",
|
|
12634
|
+
"noStyle",
|
|
12635
|
+
"iconOutBox",
|
|
12636
|
+
"isBlock",
|
|
12637
|
+
"disabled",
|
|
12638
|
+
"children",
|
|
12639
|
+
"autoFocus",
|
|
12640
|
+
"asset",
|
|
12641
|
+
"assetNumber"
|
|
12642
|
+
]);
|
|
12643
|
+
var Comp = asChild ? import_react_slot5.Slot : "button";
|
|
12644
|
+
var disable = disabled || loading;
|
|
12645
|
+
return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(Comp, _object_spread_props(_object_spread({
|
|
12646
|
+
className: noStyle ? className : cn(buttonVariants({
|
|
12647
|
+
variant: "link",
|
|
12648
|
+
color: color,
|
|
12649
|
+
size: size,
|
|
12650
|
+
className: className
|
|
12651
|
+
}), disable && "!pointer-events-auto cursor-not-allowed", isBlock && "w-full"),
|
|
12652
|
+
ref: ref,
|
|
12653
|
+
disabled: disable,
|
|
12654
|
+
autoFocus: autoFocus
|
|
12655
|
+
}, props), {
|
|
12656
|
+
children: [
|
|
12657
|
+
loading && /* @__PURE__ */ (0, import_jsx_runtime55.jsx)("span", {
|
|
12658
|
+
className: "absolute left-1/2 top-1/2 flex -translate-x-1/2 -translate-y-1/2 items-center justify-center",
|
|
12659
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(import_lucide_react13.Loader2, {
|
|
12660
|
+
className: cn(iconVariants2({
|
|
12661
|
+
variant: "link",
|
|
12662
|
+
size: size
|
|
12663
|
+
}), "animate-spin", size === "lg" ? "h-6 w-6" : size === "md" ? "h-5 w-5" : "h-4.5 w-4.5")
|
|
12664
|
+
})
|
|
12665
|
+
}),
|
|
12666
|
+
!asset && icon && iconOutBox && iconDirection === "left" && renderIcon2(icon, "left", {
|
|
12667
|
+
loading: loading,
|
|
12668
|
+
noStyle: noStyle,
|
|
12669
|
+
iconClassName: iconClassName,
|
|
12670
|
+
size: size
|
|
12671
|
+
}),
|
|
12672
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("span", {
|
|
12673
|
+
className: cn("inline-flex w-full items-center justify-center", loading ? "opacity-0" : "opacity-100"),
|
|
12674
|
+
children: [
|
|
12675
|
+
!asset && icon && !iconOutBox && iconDirection === "left" && renderIcon2(icon, "left", {
|
|
12676
|
+
loading: loading,
|
|
12677
|
+
noStyle: noStyle,
|
|
12678
|
+
iconClassName: iconClassName,
|
|
12679
|
+
size: size
|
|
12680
|
+
}),
|
|
12681
|
+
children,
|
|
12682
|
+
asset ? /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(import_jsx_runtime55.Fragment, {
|
|
12683
|
+
children: [
|
|
12684
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)(Separator, {
|
|
12685
|
+
orientation: "vertical",
|
|
12686
|
+
className: cn("mx-1.5 h-3")
|
|
12687
|
+
}),
|
|
12688
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)(Image2, {
|
|
12689
|
+
src: asset === "energy" ? getAssetsUrl("image/bot/tag/20231214/1719340128612116720.png") : "",
|
|
12690
|
+
alt: asset,
|
|
12691
|
+
width: 16,
|
|
12692
|
+
height: 16,
|
|
12693
|
+
className: "flex-shrink-0"
|
|
12694
|
+
}),
|
|
12695
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)(Text, {
|
|
12696
|
+
size: "xs",
|
|
12697
|
+
className: cn("ml-0.5 text-inherit"),
|
|
12698
|
+
children: assetNumber
|
|
12699
|
+
})
|
|
12700
|
+
]
|
|
12701
|
+
}) : null,
|
|
12702
|
+
!asset && icon && !iconOutBox && iconDirection === "right" && renderIcon2(icon, "right", {
|
|
12703
|
+
loading: loading,
|
|
12704
|
+
noStyle: noStyle,
|
|
12705
|
+
iconClassName: iconClassName,
|
|
12706
|
+
size: size
|
|
12707
|
+
})
|
|
12708
|
+
]
|
|
12709
|
+
}),
|
|
12710
|
+
!asset && icon && iconOutBox && iconDirection === "right" && renderIcon2(icon, "right", {
|
|
12711
|
+
loading: loading,
|
|
12712
|
+
noStyle: noStyle,
|
|
12713
|
+
iconClassName: iconClassName,
|
|
12714
|
+
size: size
|
|
12715
|
+
})
|
|
12716
|
+
]
|
|
12717
|
+
}));
|
|
12718
|
+
});
|
|
12719
|
+
var renderIcon2 = function(icon, direction, param) {
|
|
12720
|
+
var loading = param.loading, noStyle = param.noStyle, iconClassName = param.iconClassName, _param_size = param.size, size = _param_size === void 0 ? "lg" : _param_size;
|
|
12721
|
+
return /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(Icon, {
|
|
12722
|
+
component: icon,
|
|
12723
|
+
className: noStyle ? iconClassName : cn(iconVariants2({
|
|
12724
|
+
variant: "link",
|
|
12725
|
+
size: size
|
|
12726
|
+
}), direction === "left" ? "mr-0.5" : "ml-0.5", iconClassName, loading ? "opacity-0" : "opacity-100")
|
|
12727
|
+
});
|
|
12728
|
+
};
|
|
12729
|
+
LinkButton.displayName = "LinkButton";
|
|
12730
|
+
// src/components/state.tsx
|
|
12731
|
+
var import_navigation = require("next/navigation");
|
|
12732
|
+
var import_jsx_runtime56 = require("react/jsx-runtime");
|
|
12733
|
+
var stateIconUrls = {
|
|
12734
|
+
"not-found": "https://myshellstatic.com/image/website/20250425/page-no-results.png",
|
|
12735
|
+
"no-page": "https://myshellstatic.com/image/website/20250425/page-not-found.png",
|
|
12736
|
+
error: "https://myshellstatic.com/image/website/20250425/error.png",
|
|
12737
|
+
"network-error": "https://myshellstatic.com/image/website/20250425/network-error.png"
|
|
12738
|
+
};
|
|
12739
|
+
var State2 = function(param) {
|
|
12740
|
+
var variant = param.variant, title = param.title, description = param.description, className = param.className, icon = param.icon, logo = param.logo, backBtnText = param.backBtnText, _param_hideLogo = param.hideLogo, hideLogo = _param_hideLogo === void 0 ? false : _param_hideLogo, onBack = param.onBack;
|
|
12741
|
+
var router = (0, import_navigation.useRouter)();
|
|
12742
|
+
var handleBack = function() {
|
|
12743
|
+
if (onBack) {
|
|
12744
|
+
onBack();
|
|
12745
|
+
} else {
|
|
12746
|
+
router.back();
|
|
12747
|
+
}
|
|
12748
|
+
};
|
|
12749
|
+
var IconComponent2 = icon ? function() {
|
|
12750
|
+
return /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(Icon, {
|
|
12751
|
+
component: icon,
|
|
12752
|
+
size: "4xl"
|
|
12753
|
+
});
|
|
12754
|
+
} : function() {
|
|
12755
|
+
return /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("div", {
|
|
12756
|
+
className: "w-[146px] md:w-[220px] h-[146px] md:h-[220px] rounded-full object-cover",
|
|
12757
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(Image2, {
|
|
12758
|
+
src: logo || stateIconUrls[variant],
|
|
12759
|
+
alt: "state icon",
|
|
12760
|
+
className: "w-full h-full rounded-full object-cover"
|
|
12761
|
+
})
|
|
12762
|
+
});
|
|
12763
|
+
};
|
|
12764
|
+
return /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", {
|
|
12765
|
+
className: cn("flex flex-col items-center", className, {
|
|
12766
|
+
"space-y-6": !icon,
|
|
12767
|
+
"space-y-3": icon
|
|
12768
|
+
}),
|
|
12769
|
+
children: [
|
|
12770
|
+
!hideLogo && /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(IconComponent2, {}),
|
|
12771
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", {
|
|
12772
|
+
className: "flex flex-col items-center space-y-4",
|
|
12773
|
+
children: [
|
|
12774
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", {
|
|
12775
|
+
className: "flex flex-col items-center space-y-1",
|
|
12776
|
+
children: [
|
|
12777
|
+
title && /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(Display, {
|
|
12778
|
+
size: "sm",
|
|
12779
|
+
children: title
|
|
12780
|
+
}),
|
|
12781
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)(Text, {
|
|
12782
|
+
size: "sm",
|
|
12783
|
+
color: "subtle",
|
|
12784
|
+
children: description
|
|
12785
|
+
})
|
|
12786
|
+
]
|
|
12787
|
+
}),
|
|
12788
|
+
backBtnText && /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(Button, {
|
|
12789
|
+
size: "lg",
|
|
12790
|
+
onClick: handleBack,
|
|
12791
|
+
children: backBtnText
|
|
12792
|
+
})
|
|
12793
|
+
]
|
|
12794
|
+
})
|
|
12795
|
+
]
|
|
12796
|
+
});
|
|
12797
|
+
};
|
|
12798
|
+
var ErrorState = function(args) {
|
|
12799
|
+
return /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(State2, _object_spread_props(_object_spread({}, args), {
|
|
12800
|
+
variant: "error"
|
|
12801
|
+
}));
|
|
12802
|
+
};
|
|
12803
|
+
var NetworkErrorState = function(args) {
|
|
12804
|
+
return /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(State2, _object_spread_props(_object_spread({}, args), {
|
|
12805
|
+
variant: "network-error"
|
|
12806
|
+
}));
|
|
12807
|
+
};
|
|
12808
|
+
var NotFoundState = function(args) {
|
|
12809
|
+
return /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(State2, _object_spread_props(_object_spread({}, args), {
|
|
12810
|
+
variant: "not-found"
|
|
12811
|
+
}));
|
|
12812
|
+
};
|
|
12813
|
+
var NoPageState = function(args) {
|
|
12814
|
+
return /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(State2, _object_spread_props(_object_spread({}, args), {
|
|
12815
|
+
variant: "no-page"
|
|
12816
|
+
}));
|
|
12817
|
+
};
|
|
12603
12818
|
// src/components/toast/toast.tsx
|
|
12604
12819
|
var ToastPrimitives = __toESM(require("@radix-ui/react-toast"), 1);
|
|
12605
12820
|
var import_class_variance_authority20 = require("class-variance-authority");
|
|
12606
|
-
var
|
|
12821
|
+
var React40 = __toESM(require("react"), 1);
|
|
12607
12822
|
var import_XMarkIcon3 = __toESM(require("@heroicons/react/24/outline/esm/XMarkIcon"), 1);
|
|
12608
|
-
var
|
|
12823
|
+
var import_jsx_runtime57 = require("react/jsx-runtime");
|
|
12609
12824
|
var ToastProvider = ToastPrimitives.Provider;
|
|
12610
12825
|
var viewportPositionVariants = (0, import_class_variance_authority20.cva)("fixed z-[1000001] flex max-h-screen w-full p-0 gap-2", {
|
|
12611
12826
|
variants: {
|
|
@@ -12624,12 +12839,12 @@ var viewportPositionVariants = (0, import_class_variance_authority20.cva)("fixed
|
|
|
12624
12839
|
position: "top-right"
|
|
12625
12840
|
}
|
|
12626
12841
|
});
|
|
12627
|
-
var ToastViewport =
|
|
12842
|
+
var ToastViewport = React40.forwardRef(function(_param, ref) {
|
|
12628
12843
|
var className = _param.className, position = _param.position, props = _object_without_properties(_param, [
|
|
12629
12844
|
"className",
|
|
12630
12845
|
"position"
|
|
12631
12846
|
]);
|
|
12632
|
-
return /* @__PURE__ */ (0,
|
|
12847
|
+
return /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(ToastPrimitives.Viewport, _object_spread({
|
|
12633
12848
|
ref: ref,
|
|
12634
12849
|
className: cn(viewportPositionVariants({
|
|
12635
12850
|
position: position
|
|
@@ -12661,13 +12876,13 @@ var toastVariants = (0, import_class_variance_authority20.cva)("group pointer-ev
|
|
|
12661
12876
|
position: "top-right"
|
|
12662
12877
|
}
|
|
12663
12878
|
});
|
|
12664
|
-
var Toast =
|
|
12879
|
+
var Toast = React40.forwardRef(function(_param, ref) {
|
|
12665
12880
|
var className = _param.className, variant = _param.variant, position = _param.position, props = _object_without_properties(_param, [
|
|
12666
12881
|
"className",
|
|
12667
12882
|
"variant",
|
|
12668
12883
|
"position"
|
|
12669
12884
|
]);
|
|
12670
|
-
return /* @__PURE__ */ (0,
|
|
12885
|
+
return /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(ToastPrimitives.Root, _object_spread({
|
|
12671
12886
|
ref: ref,
|
|
12672
12887
|
className: cn(toastVariants({
|
|
12673
12888
|
variant: variant,
|
|
@@ -12677,46 +12892,46 @@ var Toast = React39.forwardRef(function(_param, ref) {
|
|
|
12677
12892
|
}, props));
|
|
12678
12893
|
});
|
|
12679
12894
|
Toast.displayName = ToastPrimitives.Root.displayName;
|
|
12680
|
-
var ToastAction =
|
|
12895
|
+
var ToastAction = React40.forwardRef(function(_param, ref) {
|
|
12681
12896
|
var className = _param.className, props = _object_without_properties(_param, [
|
|
12682
12897
|
"className"
|
|
12683
12898
|
]);
|
|
12684
|
-
return /* @__PURE__ */ (0,
|
|
12899
|
+
return /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(ToastPrimitives.Action, _object_spread({
|
|
12685
12900
|
ref: ref,
|
|
12686
12901
|
className: cn("inline-flex h-8 shrink-0 items-center justify-center rounded-sm border border-slate-200 bg-transparent px-3 text-sm font-medium ring-offset-white transition-colors hover:bg-slate-100 focus:outline-none focus:ring-2 focus:ring-slate-950 focus:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 group-[.destructive]:border-slate-100/40 group-[.destructive]:hover:border-red-500/30 group-[.destructive]:hover:bg-red-500 group-[.destructive]:hover:text-slate-50 group-[.destructive]:focus:ring-red-500 dark:border-slate-800 dark:ring-offset-slate-950 dark:hover:bg-slate-800 dark:focus:ring-slate-300 dark:group-[.destructive]:border-slate-800/40 dark:group-[.destructive]:hover:border-red-900/30 dark:group-[.destructive]:hover:bg-red-900 dark:group-[.destructive]:hover:text-slate-50 dark:group-[.destructive]:focus:ring-red-900", className)
|
|
12687
12902
|
}, props));
|
|
12688
12903
|
});
|
|
12689
12904
|
ToastAction.displayName = ToastPrimitives.Action.displayName;
|
|
12690
|
-
var ToastClose =
|
|
12905
|
+
var ToastClose = React40.forwardRef(function(_param, ref) {
|
|
12691
12906
|
var className = _param.className, props = _object_without_properties(_param, [
|
|
12692
12907
|
"className"
|
|
12693
12908
|
]);
|
|
12694
|
-
return /* @__PURE__ */ (0,
|
|
12909
|
+
return /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(ToastPrimitives.Close, _object_spread_props(_object_spread({
|
|
12695
12910
|
ref: ref,
|
|
12696
12911
|
className: cn("absolute right-4 top-4 rounded-sm p-1 text-slate-950/50 transition-opacity hover:text-slate-950 outline-none focus:outline-none focus:ring-2 group-[.destructive]:text-red-300 group-[.destructive]:hover:text-red-50 group-[.destructive]:focus:ring-red-400 group-[.destructive]:focus:ring-offset-red-600 dark:text-slate-50/50 dark:hover:text-slate-50", className),
|
|
12697
12912
|
"toast-close": ""
|
|
12698
12913
|
}, props), {
|
|
12699
|
-
children: /* @__PURE__ */ (0,
|
|
12914
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(import_XMarkIcon3.default, {
|
|
12700
12915
|
className: "h-5 w-5"
|
|
12701
12916
|
})
|
|
12702
12917
|
}));
|
|
12703
12918
|
});
|
|
12704
12919
|
ToastClose.displayName = ToastPrimitives.Close.displayName;
|
|
12705
|
-
var ToastTitle =
|
|
12920
|
+
var ToastTitle = React40.forwardRef(function(_param, ref) {
|
|
12706
12921
|
var className = _param.className, props = _object_without_properties(_param, [
|
|
12707
12922
|
"className"
|
|
12708
12923
|
]);
|
|
12709
|
-
return /* @__PURE__ */ (0,
|
|
12924
|
+
return /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(ToastPrimitives.Title, _object_spread({
|
|
12710
12925
|
ref: ref,
|
|
12711
12926
|
className: cn("text-sm font-semibold", className)
|
|
12712
12927
|
}, props));
|
|
12713
12928
|
});
|
|
12714
12929
|
ToastTitle.displayName = ToastPrimitives.Title.displayName;
|
|
12715
|
-
var ToastDescription =
|
|
12930
|
+
var ToastDescription = React40.forwardRef(function(_param, ref) {
|
|
12716
12931
|
var className = _param.className, props = _object_without_properties(_param, [
|
|
12717
12932
|
"className"
|
|
12718
12933
|
]);
|
|
12719
|
-
return /* @__PURE__ */ (0,
|
|
12934
|
+
return /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(ToastPrimitives.Description, _object_spread({
|
|
12720
12935
|
ref: ref,
|
|
12721
12936
|
className: cn("text-sm opacity-90", className)
|
|
12722
12937
|
}, props));
|
|
@@ -12727,8 +12942,8 @@ var import_CheckCircleIcon2 = __toESM(require("@heroicons/react/24/outline/esm/C
|
|
|
12727
12942
|
var import_InformationCircleIcon2 = __toESM(require("@heroicons/react/24/outline/esm/InformationCircleIcon"), 1);
|
|
12728
12943
|
var import_XCircleIcon2 = __toESM(require("@heroicons/react/24/outline/esm/XCircleIcon"), 1);
|
|
12729
12944
|
// src/components/toast/use-toast.tsx
|
|
12730
|
-
var
|
|
12731
|
-
var
|
|
12945
|
+
var React41 = __toESM(require("react"), 1);
|
|
12946
|
+
var import_jsx_runtime58 = require("react/jsx-runtime");
|
|
12732
12947
|
var TOAST_LIMIT = 8;
|
|
12733
12948
|
var TOAST_REMOVE_DELAY = 1e3;
|
|
12734
12949
|
var count = 0;
|
|
@@ -12831,10 +13046,10 @@ function toast(_param) {
|
|
|
12831
13046
|
toast: _object_spread_props(_object_spread(_object_spread_props(_object_spread({}, props), {
|
|
12832
13047
|
position: position
|
|
12833
13048
|
}), actions && {
|
|
12834
|
-
action: /* @__PURE__ */ (0,
|
|
13049
|
+
action: /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)("div", {
|
|
12835
13050
|
className: "flex justify-start items-center gap-2",
|
|
12836
13051
|
children: [
|
|
12837
|
-
(actions === null || actions === void 0 ? void 0 : actions.dismissText) && /* @__PURE__ */ (0,
|
|
13052
|
+
(actions === null || actions === void 0 ? void 0 : actions.dismissText) && /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(Text, {
|
|
12838
13053
|
size: "sm",
|
|
12839
13054
|
weight: "medium",
|
|
12840
13055
|
color: "brand",
|
|
@@ -12844,13 +13059,13 @@ function toast(_param) {
|
|
|
12844
13059
|
},
|
|
12845
13060
|
children: actions === null || actions === void 0 ? void 0 : actions.dismissText
|
|
12846
13061
|
}),
|
|
12847
|
-
(actions === null || actions === void 0 ? void 0 : actions.view) && actions.viewUrl && /* @__PURE__ */ (0,
|
|
13062
|
+
(actions === null || actions === void 0 ? void 0 : actions.view) && actions.viewUrl && /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(link_default, {
|
|
12848
13063
|
href: actions.viewUrl,
|
|
12849
13064
|
target: "_blank",
|
|
12850
13065
|
rel: "noreferrer noopener",
|
|
12851
|
-
children: /* @__PURE__ */ (0,
|
|
13066
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)("div", {
|
|
12852
13067
|
className: "flex items-center gap-1.5",
|
|
12853
|
-
children: /* @__PURE__ */ (0,
|
|
13068
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(Text, {
|
|
12854
13069
|
size: "sm",
|
|
12855
13070
|
weight: "medium",
|
|
12856
13071
|
color: "default",
|
|
@@ -12876,8 +13091,8 @@ function toast(_param) {
|
|
|
12876
13091
|
};
|
|
12877
13092
|
}
|
|
12878
13093
|
function useToast() {
|
|
12879
|
-
var
|
|
12880
|
-
|
|
13094
|
+
var _React41_useState = _sliced_to_array(React41.useState(memoryState), 2), state = _React41_useState[0], setState = _React41_useState[1];
|
|
13095
|
+
React41.useEffect(function() {
|
|
12881
13096
|
listeners.push(setState);
|
|
12882
13097
|
return function() {
|
|
12883
13098
|
var index = listeners.indexOf(setState);
|
|
@@ -12901,7 +13116,7 @@ function useToast() {
|
|
|
12901
13116
|
// src/components/toast/toaster.tsx
|
|
12902
13117
|
var import_react15 = __toESM(require("react"), 1);
|
|
12903
13118
|
var import_outline3 = require("@heroicons/react/24/outline");
|
|
12904
|
-
var
|
|
13119
|
+
var import_jsx_runtime59 = require("react/jsx-runtime");
|
|
12905
13120
|
function Toaster() {
|
|
12906
13121
|
var _ref = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, _ref_position = _ref.position, position = _ref_position === void 0 ? "top-right" : _ref_position;
|
|
12907
13122
|
var toasts = useToast().toasts;
|
|
@@ -12935,22 +13150,22 @@ function Toaster() {
|
|
|
12935
13150
|
]);
|
|
12936
13151
|
var renderToast = function(toast4) {
|
|
12937
13152
|
var id = toast4.id, title = toast4.title, description = toast4.description, action = toast4.action, variant = toast4.variant, toastPosition = toast4.position;
|
|
12938
|
-
var
|
|
13153
|
+
var renderIcon3 = function(variant2) {
|
|
12939
13154
|
switch(variant2){
|
|
12940
13155
|
case "info":
|
|
12941
|
-
return /* @__PURE__ */ (0,
|
|
13156
|
+
return /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_InformationCircleIcon2.default, {
|
|
12942
13157
|
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Info"
|
|
12943
13158
|
});
|
|
12944
13159
|
case "success":
|
|
12945
|
-
return /* @__PURE__ */ (0,
|
|
13160
|
+
return /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_CheckCircleIcon2.default, {
|
|
12946
13161
|
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Success"
|
|
12947
13162
|
});
|
|
12948
13163
|
case "warning":
|
|
12949
|
-
return /* @__PURE__ */ (0,
|
|
13164
|
+
return /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_outline3.ExclamationTriangleIcon, {
|
|
12950
13165
|
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Warning"
|
|
12951
13166
|
});
|
|
12952
13167
|
case "error":
|
|
12953
|
-
return /* @__PURE__ */ (0,
|
|
13168
|
+
return /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_XCircleIcon2.default, {
|
|
12954
13169
|
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Error"
|
|
12955
13170
|
});
|
|
12956
13171
|
}
|
|
@@ -12967,26 +13182,26 @@ function Toaster() {
|
|
|
12967
13182
|
return "bg-Colors-Background-Critical-Default";
|
|
12968
13183
|
}
|
|
12969
13184
|
};
|
|
12970
|
-
return /* @__PURE__ */ (0,
|
|
13185
|
+
return /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)(Toast, _object_spread_props(_object_spread({}, toast4), {
|
|
12971
13186
|
position: toastPosition,
|
|
12972
13187
|
children: [
|
|
12973
|
-
/* @__PURE__ */ (0,
|
|
13188
|
+
/* @__PURE__ */ (0, import_jsx_runtime59.jsx)("div", {
|
|
12974
13189
|
className: "flex flex-col gap-3",
|
|
12975
|
-
children: /* @__PURE__ */ (0,
|
|
13190
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("div", {
|
|
12976
13191
|
className: "flex items-start gap-3",
|
|
12977
13192
|
children: [
|
|
12978
|
-
/* @__PURE__ */ (0,
|
|
13193
|
+
/* @__PURE__ */ (0, import_jsx_runtime59.jsx)("div", {
|
|
12979
13194
|
className: cn("flex h-10 w-10 flex-shrink-0 flex-grow-0 items-center justify-center rounded-full", getBackgroundColor(variant)),
|
|
12980
|
-
children:
|
|
13195
|
+
children: renderIcon3(variant)
|
|
12981
13196
|
}),
|
|
12982
|
-
/* @__PURE__ */ (0,
|
|
13197
|
+
/* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("div", {
|
|
12983
13198
|
className: "grid gap-1",
|
|
12984
13199
|
children: [
|
|
12985
|
-
title && /* @__PURE__ */ (0,
|
|
13200
|
+
title && /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(ToastTitle, {
|
|
12986
13201
|
className: "text-base text-Colors-Text-Default",
|
|
12987
13202
|
children: title
|
|
12988
13203
|
}),
|
|
12989
|
-
description && /* @__PURE__ */ (0,
|
|
13204
|
+
description && /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(ToastDescription, {
|
|
12990
13205
|
className: "text-sm text-Colors-Text-Subtle",
|
|
12991
13206
|
children: description
|
|
12992
13207
|
}),
|
|
@@ -12996,17 +13211,17 @@ function Toaster() {
|
|
|
12996
13211
|
]
|
|
12997
13212
|
})
|
|
12998
13213
|
}),
|
|
12999
|
-
/* @__PURE__ */ (0,
|
|
13214
|
+
/* @__PURE__ */ (0, import_jsx_runtime59.jsx)(ToastClose, {})
|
|
13000
13215
|
]
|
|
13001
13216
|
}), id);
|
|
13002
13217
|
};
|
|
13003
|
-
return /* @__PURE__ */ (0,
|
|
13218
|
+
return /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(ToastProvider, {
|
|
13004
13219
|
children: Object.entries(positionGroups).map(function(param) {
|
|
13005
13220
|
var _param = _sliced_to_array(param, 2), pos = _param[0], toastsForPosition = _param[1];
|
|
13006
|
-
return /* @__PURE__ */ (0,
|
|
13221
|
+
return /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)(import_react15.default.Fragment, {
|
|
13007
13222
|
children: [
|
|
13008
13223
|
toastsForPosition.map(renderToast),
|
|
13009
|
-
toastsForPosition.length > 0 && /* @__PURE__ */ (0,
|
|
13224
|
+
toastsForPosition.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(ToastViewport, {
|
|
13010
13225
|
position: pos
|
|
13011
13226
|
})
|
|
13012
13227
|
]
|
|
@@ -13017,18 +13232,18 @@ function Toaster() {
|
|
|
13017
13232
|
// src/components/swiper/index.tsx
|
|
13018
13233
|
var import_class_variance_authority21 = require("class-variance-authority");
|
|
13019
13234
|
var import_react16 = require("react");
|
|
13020
|
-
var
|
|
13235
|
+
var import_navigation2 = require("next/navigation");
|
|
13021
13236
|
var import_modules = require("swiper/modules");
|
|
13022
13237
|
var import_react17 = require("swiper/react");
|
|
13023
13238
|
var import_css = require("swiper/css");
|
|
13024
|
-
var
|
|
13239
|
+
var import_navigation3 = require("swiper/css/navigation");
|
|
13025
13240
|
var import_free_mode = require("swiper/css/free-mode");
|
|
13026
13241
|
var import_grid = require("swiper/css/grid");
|
|
13027
13242
|
var import_pagination = require("swiper/css/pagination");
|
|
13028
13243
|
// src/components/swiper/index.module.scss
|
|
13029
13244
|
var index_module_default = '.swiperBox {\n @apply w-full h-fit;\n}\n.swiperBox :global(.swiper) :global(.swiper-button-prev) {\n @apply bg-contain bg-no-repeat;\n background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0iIzQxNDM0NSIgY2xhc3M9InNpemUtNSI+CiAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMTEuNzggNS4yMmEuNzUuNzUgMCAwIDEgMCAxLjA2TDguMDYgMTBsMy43MiAzLjcyYS43NS43NSAwIDEgMS0xLjA2IDEuMDZsLTQuMjUtNC4yNWEuNzUuNzUgMCAwIDEgMC0xLjA2bDQuMjUtNC4yNWEuNzUuNzUgMCAwIDEgMS4wNiAwWiIgY2xpcC1ydWxlPSJldmVub2RkIiAvPgo8L3N2Zz4K");\n}\n.swiperBox :global(.swiper) :global(.swiper-button-next) {\n @apply bg-contain bg-no-repeat;\n background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0iIzQxNDM0NSIgY2xhc3M9InNpemUtNSI+CiAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNOC4yMiA1LjIyYS43NS43NSAwIDAgMSAxLjA2IDBsNC4yNSA0LjI1YS43NS43NSAwIDAgMSAwIDEuMDZsLTQuMjUgNC4yNWEuNzUuNzUgMCAwIDEtMS4wNi0xLjA2TDExLjk0IDEwIDguMjIgNi4yOGEuNzUuNzUgMCAwIDEgMC0xLjA2WiIgY2xpcC1ydWxlPSJldmVub2RkIiAvPgo8L3N2Zz4KCg==");\n}\n.swiperBox :global(.swiper) :global(.swiper-button-prev::after) {\n @apply text-Colors-Foreground-Default content-none;\n}\n.swiperBox :global(.swiper) :global(.swiper-button-next::after) {\n @apply text-Colors-Foreground-Default content-none;\n}\n.swiperBox :global(.swiper.banner-swiper) :global(.banner-swiper-slide.swiper-slide-prev) {\n @apply origin-right;\n}\n.swiperBox :global(.swiper.banner-swiper) :global(.banner-swiper-slide.swiper-slide-next) {\n @apply origin-left;\n}\n.swiperBox :global(.swiper.banner-swiper) :global(.swiper-slide-active) {\n @apply opacity-100;\n}\n.swiperBox :global(.swiper.banner-swiper) :global(.swiper-button-next) {\n @apply -right-4 md:right-0 3xl:right-[calc((100%-1200px)/2-16px)];\n}\n.swiperBox :global(.swiper.banner-swiper) :global(.swiper-button-prev) {\n @apply -left-4 md:left-0 3xl:left-[calc((100%-1200px)/2-16px)];\n}\n.swiperBox :global(.swiper.feature-swiper) :global(.swiper-button-next) {\n @apply right-0;\n}\n.swiperBox :global(.swiper.feature-swiper) :global(.swiper-button-prev) {\n @apply left-0;\n}\n.swiperBox :global(.swiper.feature-swiper) :global(.swiper-button-disabled) {\n @apply hidden;\n}\n.swiperBox :global(.swiper.patron-badge-swiper) :global(.swiper-button-next) {\n @apply right-0;\n}\n.swiperBox :global(.swiper.patron-badge-swiper) :global(.swiper-button-prev) {\n @apply left-0;\n}\n.swiperBox :global(.swiper.patron-badge-swiper) :global(.swiper-button-disabled) {\n @apply hidden;\n}\n.swiperBox :global(.swiper.grid-swiper) :global(.swiper-wrapper) {\n @apply w-[100vw] md:w-full flex-wrap flex-col m-0;\n}\n.swiperBox :global(.swiper) :global(.swiper-button-next) {\n @apply hidden md:flex justify-center items-center absolute top-[50%] w-8 h-8 font-semibold text-Colors-Foreground-Default border border-Colors-Border-Default bg-Colors-Background-Normal-Primary-Default rounded-full cursor-pointer hover:bg-Colors-Background-Normal-Primary-Hover active:bg-Colors-Background-Normal-Primary-Active;\n}\n.swiperBox :global(.swiper) :global(.swiper-button-next)::after {\n @apply text-Colors-Foreground-Default text-xs font-bold;\n}\n.swiperBox :global(.swiper) :global(.swiper-button-prev) {\n @apply hidden md:flex justify-center items-center absolute top-[50%] w-8 h-8 font-semibold text-Colors-Foreground-Default border border-Colors-Border-Default bg-Colors-Background-Normal-Primary-Default rounded-full cursor-pointer hover:bg-Colors-Background-Normal-Primary-Hover active:bg-Colors-Background-Normal-Primary-Active;\n}\n.swiperBox :global(.swiper) :global(.swiper-button-prev)::after {\n @apply text-Colors-Foreground-Default text-xs font-bold;\n}\n\n.animate :global(.swiper-slide) {\n transition: transform 500ms linear;\n}\n/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VSb290IjoiL1VzZXJzL3hpYW9ndWFuZy9jb2RlL215c2hlbGwtcmVhY3QtbGliL3NyYy9jb21wb25lbnRzL3N3aXBlciIsInNvdXJjZXMiOlsiaW5kZXgubW9kdWxlLnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7RUFDRTs7QUFHRTtFQUNFO0VBQ0E7O0FBRUY7RUFDRTtFQUNBOztBQUVGO0VBQ0U7O0FBRUY7RUFDRTs7QUFJRjtFQUVFOztBQUVGO0VBRUU7O0FBRUY7RUFDRTs7QUFHRjtFQUNFOztBQUVGO0VBQ0U7O0FBSUY7RUFDRTs7QUFFRjtFQUNFOztBQUVGO0VBQ0U7O0FBSUY7RUFDRTs7QUFFRjtFQUNFOztBQUVGO0VBQ0U7O0FBSUY7RUFDRTs7QUFLRjtFQUNFOztBQUNFO0VBQ0U7O0FBR047RUFDRTs7QUFDRTtFQUNFOzs7QUFPUjtFQUNFIiwic291cmNlc0NvbnRlbnQiOlsiLnN3aXBlckJveHtcbiAgQGFwcGx5IHctZnVsbCBoLWZpdDtcbiAgXG4gIDpnbG9iYWwoLnN3aXBlcikge1xuICAgIDpnbG9iYWwoLnN3aXBlci1idXR0b24tcHJldil7XG4gICAgICBAYXBwbHkgYmctY29udGFpbiBiZy1uby1yZXBlYXQ7XG4gICAgICBiYWNrZ3JvdW5kLWltYWdlOiB1cmwoJ2RhdGE6aW1hZ2Uvc3ZnK3htbDtiYXNlNjQsUEhOMlp5QjRiV3h1Y3owaWFIUjBjRG92TDNkM2R5NTNNeTV2Y21jdk1qQXdNQzl6ZG1jaUlIWnBaWGRDYjNnOUlqQWdNQ0F5TUNBeU1DSWdabWxzYkQwaUl6UXhORE0wTlNJZ1kyeGhjM005SW5OcGVtVXROU0krQ2lBZ1BIQmhkR2dnWm1sc2JDMXlkV3hsUFNKbGRtVnViMlJrSWlCa1BTSk5NVEV1TnpnZ05TNHlNbUV1TnpVdU56VWdNQ0F3SURFZ01DQXhMakEyVERndU1EWWdNVEJzTXk0M01pQXpMamN5WVM0M05TNDNOU0F3SURFZ01TMHhMakEySURFdU1EWnNMVFF1TWpVdE5DNHlOV0V1TnpVdU56VWdNQ0F3SURFZ01DMHhMakEyYkRRdU1qVXROQzR5TldFdU56VXVOelVnTUNBd0lERWdNUzR3TmlBd1dpSWdZMnhwY0MxeWRXeGxQU0psZG1WdWIyUmtJaUF2UGdvOEwzTjJaejRLJyk7IFxuICAgIH1cbiAgICA6Z2xvYmFsKC5zd2lwZXItYnV0dG9uLW5leHQpe1xuICAgICAgQGFwcGx5IGJnLWNvbnRhaW4gYmctbm8tcmVwZWF0O1xuICAgICAgYmFja2dyb3VuZC1pbWFnZTogdXJsKCdkYXRhOmltYWdlL3N2Zyt4bWw7YmFzZTY0LFBITjJaeUI0Yld4dWN6MGlhSFIwY0RvdkwzZDNkeTUzTXk1dmNtY3ZNakF3TUM5emRtY2lJSFpwWlhkQ2IzZzlJakFnTUNBeU1DQXlNQ0lnWm1sc2JEMGlJelF4TkRNME5TSWdZMnhoYzNNOUluTnBlbVV0TlNJK0NpQWdQSEJoZEdnZ1ptbHNiQzF5ZFd4bFBTSmxkbVZ1YjJSa0lpQmtQU0pOT0M0eU1pQTFMakl5WVM0M05TNDNOU0F3SURBZ01TQXhMakEySURCc05DNHlOU0EwTGpJMVlTNDNOUzQzTlNBd0lEQWdNU0F3SURFdU1EWnNMVFF1TWpVZ05DNHlOV0V1TnpVdU56VWdNQ0F3SURFdE1TNHdOaTB4TGpBMlRERXhMamswSURFd0lEZ3VNaklnTmk0eU9HRXVOelV1TnpVZ01DQXdJREVnTUMweExqQTJXaUlnWTJ4cGNDMXlkV3hsUFNKbGRtVnViMlJrSWlBdlBnbzhMM04yWno0S0NnPT0nKTsgXG4gICAgfVxuICAgIDpnbG9iYWwoLnN3aXBlci1idXR0b24tcHJldjo6YWZ0ZXIpe1xuICAgICAgQGFwcGx5IHRleHQtQ29sb3JzLUZvcmVncm91bmQtRGVmYXVsdCBjb250ZW50LW5vbmU7XG4gICAgfVxuICAgIDpnbG9iYWwoLnN3aXBlci1idXR0b24tbmV4dDo6YWZ0ZXIpe1xuICAgICAgQGFwcGx5IHRleHQtQ29sb3JzLUZvcmVncm91bmQtRGVmYXVsdCBjb250ZW50LW5vbmU7XG4gICAgfVxuICB9XG4gIDpnbG9iYWwoLnN3aXBlci5iYW5uZXItc3dpcGVyKSB7XG4gICAgOmdsb2JhbCguYmFubmVyLXN3aXBlci1zbGlkZS5zd2lwZXItc2xpZGUtcHJldikge1xuICAgICAgLy8gdHJhbnNmb3JtOiBzY2FsZSgwLjgpO1xuICAgICAgQGFwcGx5IG9yaWdpbi1yaWdodDtcbiAgICB9XG4gICAgOmdsb2JhbCguYmFubmVyLXN3aXBlci1zbGlkZS5zd2lwZXItc2xpZGUtbmV4dCkge1xuICAgICAgLy8gdHJhbnNmb3JtOiBzY2FsZSgwLjgpO1xuICAgICAgQGFwcGx5IG9yaWdpbi1sZWZ0O1xuICAgIH1cbiAgICA6Z2xvYmFsKC5zd2lwZXItc2xpZGUtYWN0aXZlKSB7XG4gICAgICBAYXBwbHkgb3BhY2l0eS0xMDA7XG4gICAgICAvLyB0cmFuc2Zvcm06IHNjYWxlKDEpIHRyYW5zbGF0ZVgoMCk7XG4gICAgfVxuICAgIDpnbG9iYWwoLnN3aXBlci1idXR0b24tbmV4dCl7XG4gICAgICBAYXBwbHkgLXJpZ2h0LTQgbWQ6cmlnaHQtMCAzeGw6cmlnaHQtW2NhbGMoKDEwMCUtMTIwMHB4KS8yLTE2cHgpXTtcbiAgICB9XG4gICAgOmdsb2JhbCguc3dpcGVyLWJ1dHRvbi1wcmV2KXtcbiAgICAgIEBhcHBseSAtbGVmdC00IG1kOmxlZnQtMCAzeGw6bGVmdC1bY2FsYygoMTAwJS0xMjAwcHgpLzItMTZweCldO1xuICAgIH1cbiAgfVxuICA6Z2xvYmFsKC5zd2lwZXIuZmVhdHVyZS1zd2lwZXIpIHtcbiAgICA6Z2xvYmFsKC5zd2lwZXItYnV0dG9uLW5leHQpe1xuICAgICAgQGFwcGx5IHJpZ2h0LTA7XG4gICAgfVxuICAgIDpnbG9iYWwoLnN3aXBlci1idXR0b24tcHJldil7XG4gICAgICBAYXBwbHkgbGVmdC0wO1xuICAgIH1cbiAgICA6Z2xvYmFsKC5zd2lwZXItYnV0dG9uLWRpc2FibGVkKSB7XG4gICAgICBAYXBwbHkgaGlkZGVuO1xuICAgIH1cbiAgfVxuICA6Z2xvYmFsKC5zd2lwZXIucGF0cm9uLWJhZGdlLXN3aXBlcikge1xuICAgIDpnbG9iYWwoLnN3aXBlci1idXR0b24tbmV4dCl7XG4gICAgICBAYXBwbHkgcmlnaHQtMDtcbiAgICB9XG4gICAgOmdsb2JhbCguc3dpcGVyLWJ1dHRvbi1wcmV2KXtcbiAgICAgIEBhcHBseSBsZWZ0LTA7XG4gICAgfVxuICAgIDpnbG9iYWwoLnN3aXBlci1idXR0b24tZGlzYWJsZWQpIHtcbiAgICAgIEBhcHBseSBoaWRkZW47XG4gICAgfVxuICB9XG4gIDpnbG9iYWwoLnN3aXBlci5ncmlkLXN3aXBlcikge1xuICAgIDpnbG9iYWwoLnN3aXBlci13cmFwcGVyKSB7XG4gICAgICBAYXBwbHkgdy1bMTAwdnddIG1kOnctZnVsbCBmbGV4LXdyYXAgZmxleC1jb2wgbS0wO1xuICAgIH1cbiAgfVxuICA6Z2xvYmFsKC5zd2lwZXIpIHtcbiAgICBcbiAgICA6Z2xvYmFsKC5zd2lwZXItYnV0dG9uLW5leHQpe1xuICAgICAgQGFwcGx5IGhpZGRlbiBtZDpmbGV4IGp1c3RpZnktY2VudGVyIGl0ZW1zLWNlbnRlciBhYnNvbHV0ZSB0b3AtWzUwJV0gdy04IGgtOCBmb250LXNlbWlib2xkIHRleHQtQ29sb3JzLUZvcmVncm91bmQtRGVmYXVsdCBib3JkZXIgYm9yZGVyLUNvbG9ycy1Cb3JkZXItRGVmYXVsdCBiZy1Db2xvcnMtQmFja2dyb3VuZC1Ob3JtYWwtUHJpbWFyeS1EZWZhdWx0IHJvdW5kZWQtZnVsbCBjdXJzb3ItcG9pbnRlciBob3ZlcjpiZy1Db2xvcnMtQmFja2dyb3VuZC1Ob3JtYWwtUHJpbWFyeS1Ib3ZlciBhY3RpdmU6YmctQ29sb3JzLUJhY2tncm91bmQtTm9ybWFsLVByaW1hcnktQWN0aXZlO1xuICAgICAgICAmOjphZnRlciB7XG4gICAgICAgICAgQGFwcGx5IHRleHQtQ29sb3JzLUZvcmVncm91bmQtRGVmYXVsdCB0ZXh0LXhzIGZvbnQtYm9sZDtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIDpnbG9iYWwoLnN3aXBlci1idXR0b24tcHJldil7XG4gICAgICBAYXBwbHkgaGlkZGVuIG1kOmZsZXgganVzdGlmeS1jZW50ZXIgaXRlbXMtY2VudGVyIGFic29sdXRlIHRvcC1bNTAlXSB3LTggaC04IGZvbnQtc2VtaWJvbGQgdGV4dC1Db2xvcnMtRm9yZWdyb3VuZC1EZWZhdWx0IGJvcmRlciBib3JkZXItQ29sb3JzLUJvcmRlci1EZWZhdWx0IGJnLUNvbG9ycy1CYWNrZ3JvdW5kLU5vcm1hbC1QcmltYXJ5LURlZmF1bHQgcm91bmRlZC1mdWxsIGN1cnNvci1wb2ludGVyIGhvdmVyOmJnLUNvbG9ycy1CYWNrZ3JvdW5kLU5vcm1hbC1QcmltYXJ5LUhvdmVyIGFjdGl2ZTpiZy1Db2xvcnMtQmFja2dyb3VuZC1Ob3JtYWwtUHJpbWFyeS1BY3RpdmU7XG4gICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICBAYXBwbHkgdGV4dC1Db2xvcnMtRm9yZWdyb3VuZC1EZWZhdWx0IHRleHQteHMgZm9udC1ib2xkO1xuICAgICAgfVxuICAgIH1cbiAgfVxufVxuXG4uYW5pbWF0ZSB7XG4gIDpnbG9iYWwoLnN3aXBlci1zbGlkZSkge1xuICAgIHRyYW5zaXRpb246IHRyYW5zZm9ybSA1MDBtcyBsaW5lYXI7XG4gIH1cbn1cbiJdfQ== */';
|
|
13030
13245
|
// src/components/swiper/index.tsx
|
|
13031
|
-
var
|
|
13246
|
+
var import_jsx_runtime60 = require("react/jsx-runtime");
|
|
13032
13247
|
var swiperVariants = (0, import_class_variance_authority21.cva)("", {
|
|
13033
13248
|
variants: {
|
|
13034
13249
|
rounded: {
|
|
@@ -13052,7 +13267,7 @@ function Swiper(props) {
|
|
|
13052
13267
|
var isBanner = swiperType === "banner";
|
|
13053
13268
|
var isFeatured = swiperType === "featured";
|
|
13054
13269
|
var isGrid = swiperType === "grid";
|
|
13055
|
-
var router = (0,
|
|
13270
|
+
var router = (0, import_navigation2.useRouter)();
|
|
13056
13271
|
var Com = component || "div";
|
|
13057
13272
|
var swiperList = (0, import_react16.useMemo)(function() {
|
|
13058
13273
|
var length = dataList.length;
|
|
@@ -13164,9 +13379,9 @@ function Swiper(props) {
|
|
|
13164
13379
|
}
|
|
13165
13380
|
}
|
|
13166
13381
|
};
|
|
13167
|
-
return /* @__PURE__ */ (0,
|
|
13382
|
+
return /* @__PURE__ */ (0, import_jsx_runtime60.jsx)("div", {
|
|
13168
13383
|
className: index_module_default.swiperBox,
|
|
13169
|
-
children: /* @__PURE__ */ (0,
|
|
13384
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(import_react17.Swiper, _object_spread_props(_object_spread({
|
|
13170
13385
|
observer: true,
|
|
13171
13386
|
observeParents: true
|
|
13172
13387
|
}, swiperConfigs), {
|
|
@@ -13176,9 +13391,9 @@ function Swiper(props) {
|
|
|
13176
13391
|
swiperRef.current = swiper;
|
|
13177
13392
|
},
|
|
13178
13393
|
children: swiperList.map(function(item, index) {
|
|
13179
|
-
return /* @__PURE__ */ (0,
|
|
13394
|
+
return /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(import_react17.SwiperSlide, {
|
|
13180
13395
|
className: cn(isBanner && "banner-swiper-slide !w-[90%] md:!w-[98%] h-[220px] md:h-auto max-w-[1200px] aspect-[4/1] rounded-2xl opacity-30", isFeatured && "rounded-2xl !w-[100%-32px] md:!w-[100%-72px]", isGrid && "grid-swiper-slide !w-[100%-32px] md:!w-[100%-72px] !h-[100%/3] flex justify-center items-center rounded-2xl", "text-clip", slideClassName),
|
|
13181
|
-
children: /* @__PURE__ */ (0,
|
|
13396
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(Com, {
|
|
13182
13397
|
item: item,
|
|
13183
13398
|
index: index,
|
|
13184
13399
|
onClick: handleSlideItemClick,
|
|
@@ -13199,48 +13414,48 @@ var import_ExclamationCircleIcon = __toESM(require("@heroicons/react/24/solid/es
|
|
|
13199
13414
|
var import_InformationCircleIcon3 = __toESM(require("@heroicons/react/24/solid/esm/InformationCircleIcon"), 1);
|
|
13200
13415
|
var import_XCircleIcon3 = __toESM(require("@heroicons/react/24/solid/esm/XCircleIcon"), 1);
|
|
13201
13416
|
var import_react_hot_toast = require("react-hot-toast");
|
|
13202
|
-
var
|
|
13417
|
+
var import_jsx_runtime61 = require("react/jsx-runtime");
|
|
13203
13418
|
function CustomNotification(param) {
|
|
13204
13419
|
var tProps = param.tProps, customProps = param.customProps;
|
|
13205
13420
|
var type = customProps.type, title = customProps.title, content = customProps.content, _customProps_isClosable = customProps.isClosable, isClosable = _customProps_isClosable === void 0 ? false : _customProps_isClosable, action = customProps.action, loading = customProps.loading;
|
|
13206
13421
|
var id = tProps.id;
|
|
13207
13422
|
var displayedContent = !isString(content) ? JSON.stringify(content) : content;
|
|
13208
|
-
return /* @__PURE__ */ (0,
|
|
13209
|
-
children: /* @__PURE__ */ (0,
|
|
13423
|
+
return /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("div", {
|
|
13424
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("div", {
|
|
13210
13425
|
id: id,
|
|
13211
13426
|
className: "z-[10000000] min-h-10 w-fit max-w-[90vw] rounded-full border border-Colors-Border-Opaque bg-Colors-Background-Normal-Primary-Default px-3 py-2 shadow-modal-default md:max-w-[560px]",
|
|
13212
|
-
children: /* @__PURE__ */ (0,
|
|
13427
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", {
|
|
13213
13428
|
className: "flex w-full items-center justify-center gap-2",
|
|
13214
13429
|
children: [
|
|
13215
|
-
loading && /* @__PURE__ */ (0,
|
|
13216
|
-
!loading && type && /* @__PURE__ */ (0,
|
|
13430
|
+
loading && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(Spinner, {}),
|
|
13431
|
+
!loading && type && /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", {
|
|
13217
13432
|
className: "flex flex-shrink-0 items-center",
|
|
13218
13433
|
children: [
|
|
13219
|
-
type === "info" && /* @__PURE__ */ (0,
|
|
13434
|
+
type === "info" && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(import_InformationCircleIcon3.default, {
|
|
13220
13435
|
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Info"
|
|
13221
13436
|
}),
|
|
13222
|
-
type === "success" && /* @__PURE__ */ (0,
|
|
13437
|
+
type === "success" && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(import_CheckCircleIcon3.default, {
|
|
13223
13438
|
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Success"
|
|
13224
13439
|
}),
|
|
13225
|
-
type === "warning" && /* @__PURE__ */ (0,
|
|
13440
|
+
type === "warning" && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(import_ExclamationCircleIcon.default, {
|
|
13226
13441
|
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Warning"
|
|
13227
13442
|
}),
|
|
13228
|
-
type === "error" && /* @__PURE__ */ (0,
|
|
13443
|
+
type === "error" && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(import_XCircleIcon3.default, {
|
|
13229
13444
|
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Error"
|
|
13230
13445
|
})
|
|
13231
13446
|
]
|
|
13232
13447
|
}),
|
|
13233
|
-
/* @__PURE__ */ (0,
|
|
13448
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", {
|
|
13234
13449
|
className: "flex flex-grow flex-col space-y-1 overflow-hidden",
|
|
13235
13450
|
children: [
|
|
13236
|
-
title && /* @__PURE__ */ (0,
|
|
13451
|
+
title && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(Text, {
|
|
13237
13452
|
size: "sm",
|
|
13238
13453
|
weight: "regular",
|
|
13239
13454
|
color: "default",
|
|
13240
13455
|
children: title
|
|
13241
13456
|
}),
|
|
13242
|
-
/* @__PURE__ */ (0,
|
|
13243
|
-
children: /* @__PURE__ */ (0,
|
|
13457
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)("div", {
|
|
13458
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(Text, {
|
|
13244
13459
|
size: "sm",
|
|
13245
13460
|
weight: "regular",
|
|
13246
13461
|
color: "default",
|
|
@@ -13249,16 +13464,16 @@ function CustomNotification(param) {
|
|
|
13249
13464
|
})
|
|
13250
13465
|
]
|
|
13251
13466
|
}),
|
|
13252
|
-
action && /* @__PURE__ */ (0,
|
|
13467
|
+
action && /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)(import_jsx_runtime61.Fragment, {
|
|
13253
13468
|
children: [
|
|
13254
|
-
/* @__PURE__ */ (0,
|
|
13469
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)(Separator, {
|
|
13255
13470
|
orientation: "vertical",
|
|
13256
13471
|
className: "h-3"
|
|
13257
13472
|
}),
|
|
13258
13473
|
action
|
|
13259
13474
|
]
|
|
13260
13475
|
}),
|
|
13261
|
-
isClosable && /* @__PURE__ */ (0,
|
|
13476
|
+
isClosable && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(IconButton, {
|
|
13262
13477
|
size: "sm",
|
|
13263
13478
|
variant: "plain",
|
|
13264
13479
|
icon: import_XMarkIcon4.default,
|
|
@@ -13275,14 +13490,14 @@ function CustomNotification(param) {
|
|
|
13275
13490
|
// src/common/hooks/useNotification.tsx
|
|
13276
13491
|
var import_react18 = require("react");
|
|
13277
13492
|
var import_react_hot_toast2 = require("react-hot-toast");
|
|
13278
|
-
var
|
|
13493
|
+
var import_jsx_runtime62 = require("react/jsx-runtime");
|
|
13279
13494
|
function useNotification() {
|
|
13280
13495
|
var addToast = (0, import_react18.useCallback)(function(config2, duration2) {
|
|
13281
13496
|
if (config2.id) {
|
|
13282
13497
|
import_react_hot_toast2.toast.remove(config2.id);
|
|
13283
13498
|
}
|
|
13284
13499
|
import_react_hot_toast2.toast.custom(function(t) {
|
|
13285
|
-
return /* @__PURE__ */ (0,
|
|
13500
|
+
return /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(CustomNotification, {
|
|
13286
13501
|
tProps: _object_spread_props(_object_spread({}, t), {
|
|
13287
13502
|
duration: duration2
|
|
13288
13503
|
}),
|
|
@@ -13343,7 +13558,7 @@ var Message = /*#__PURE__*/ function() {
|
|
|
13343
13558
|
}
|
|
13344
13559
|
var addToast = function() {
|
|
13345
13560
|
import_react_hot_toast2.toast.custom(function(t) {
|
|
13346
|
-
return /* @__PURE__ */ (0,
|
|
13561
|
+
return /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(CustomNotification, {
|
|
13347
13562
|
tProps: _object_spread_props(_object_spread({}, t), {
|
|
13348
13563
|
duration: duration2
|
|
13349
13564
|
}),
|
|
@@ -13399,11 +13614,11 @@ var Message = /*#__PURE__*/ function() {
|
|
|
13399
13614
|
return Message;
|
|
13400
13615
|
}();
|
|
13401
13616
|
// src/components/icons/outline/ArrowLeftIcon.tsx
|
|
13402
|
-
var
|
|
13403
|
-
var
|
|
13404
|
-
var ArrowLeftIcon2 =
|
|
13405
|
-
return /* @__PURE__ */ (0,
|
|
13406
|
-
children: /* @__PURE__ */ (0,
|
|
13617
|
+
var React43 = __toESM(require("react"), 1);
|
|
13618
|
+
var import_jsx_runtime63 = require("react/jsx-runtime");
|
|
13619
|
+
var ArrowLeftIcon2 = React43.forwardRef(function(props, ref) {
|
|
13620
|
+
return /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(Icon, _object_spread_props(_object_spread({}, props), {
|
|
13621
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("svg", {
|
|
13407
13622
|
ref: ref,
|
|
13408
13623
|
className: "w-full h-full",
|
|
13409
13624
|
viewBox: "0 0 24 24",
|
|
@@ -13411,7 +13626,7 @@ var ArrowLeftIcon2 = React42.forwardRef(function(props, ref) {
|
|
|
13411
13626
|
strokeWidth: "1.5",
|
|
13412
13627
|
stroke: "currentColor",
|
|
13413
13628
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13414
|
-
children: /* @__PURE__ */ (0,
|
|
13629
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("path", {
|
|
13415
13630
|
strokeLinecap: "round",
|
|
13416
13631
|
strokeLinejoin: "round",
|
|
13417
13632
|
d: "M10.5 19.5 3 12m0 0 7.5-7.5M3 12h18"
|
|
@@ -13420,11 +13635,11 @@ var ArrowLeftIcon2 = React42.forwardRef(function(props, ref) {
|
|
|
13420
13635
|
}));
|
|
13421
13636
|
});
|
|
13422
13637
|
// src/components/icons/outline/ArrowUpTrayIcon.tsx
|
|
13423
|
-
var
|
|
13424
|
-
var
|
|
13425
|
-
var ArrowUpTrayIcon =
|
|
13426
|
-
return /* @__PURE__ */ (0,
|
|
13427
|
-
children: /* @__PURE__ */ (0,
|
|
13638
|
+
var React44 = __toESM(require("react"), 1);
|
|
13639
|
+
var import_jsx_runtime64 = require("react/jsx-runtime");
|
|
13640
|
+
var ArrowUpTrayIcon = React44.forwardRef(function(props, ref) {
|
|
13641
|
+
return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(Icon, _object_spread_props(_object_spread({}, props), {
|
|
13642
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("svg", {
|
|
13428
13643
|
ref: ref,
|
|
13429
13644
|
className: "w-full h-full",
|
|
13430
13645
|
viewBox: "0 0 24 24",
|
|
@@ -13432,7 +13647,7 @@ var ArrowUpTrayIcon = React43.forwardRef(function(props, ref) {
|
|
|
13432
13647
|
strokeWidth: "1.5",
|
|
13433
13648
|
stroke: "currentColor",
|
|
13434
13649
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13435
|
-
children: /* @__PURE__ */ (0,
|
|
13650
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("path", {
|
|
13436
13651
|
strokeLinecap: "round",
|
|
13437
13652
|
strokeLinejoin: "round",
|
|
13438
13653
|
d: "M3 16.5v2.25A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75V16.5m-13.5-9L12 3m0 0 4.5 4.5M12 3v13.5"
|
|
@@ -13441,11 +13656,11 @@ var ArrowUpTrayIcon = React43.forwardRef(function(props, ref) {
|
|
|
13441
13656
|
}));
|
|
13442
13657
|
});
|
|
13443
13658
|
// src/components/icons/outline/WindowIcon.tsx
|
|
13444
|
-
var
|
|
13445
|
-
var
|
|
13446
|
-
var WindowIcon =
|
|
13447
|
-
return /* @__PURE__ */ (0,
|
|
13448
|
-
children: /* @__PURE__ */ (0,
|
|
13659
|
+
var React45 = __toESM(require("react"), 1);
|
|
13660
|
+
var import_jsx_runtime65 = require("react/jsx-runtime");
|
|
13661
|
+
var WindowIcon = React45.forwardRef(function(props, ref) {
|
|
13662
|
+
return /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(Icon, _object_spread_props(_object_spread({}, props), {
|
|
13663
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("svg", {
|
|
13449
13664
|
ref: ref,
|
|
13450
13665
|
className: "w-full h-full",
|
|
13451
13666
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -13453,7 +13668,7 @@ var WindowIcon = React44.forwardRef(function(props, ref) {
|
|
|
13453
13668
|
fill: "none",
|
|
13454
13669
|
strokeWidth: "1.5",
|
|
13455
13670
|
stroke: "currentColor",
|
|
13456
|
-
children: /* @__PURE__ */ (0,
|
|
13671
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("path", {
|
|
13457
13672
|
strokeLinecap: "round",
|
|
13458
13673
|
strokeLinejoin: "round",
|
|
13459
13674
|
d: "M3 8.25V18a2.25 2.25 0 0 0 2.25 2.25h13.5A2.25 2.25 0 0 0 21 18V8.25m-18 0V6a2.25 2.25 0 0 1 2.25-2.25h13.5A2.25 2.25 0 0 1 21 6v2.25m-18 0h18M5.25 6h.008v.008H5.25V6ZM7.5 6h.008v.008H7.5V6Zm2.25 0h.008v.008H9.75V6Z"
|
|
@@ -13462,21 +13677,21 @@ var WindowIcon = React44.forwardRef(function(props, ref) {
|
|
|
13462
13677
|
}));
|
|
13463
13678
|
});
|
|
13464
13679
|
// src/components/icons/outline/CheckCircleIcon.tsx
|
|
13465
|
-
var
|
|
13466
|
-
var
|
|
13467
|
-
var CheckCircleIcon4 =
|
|
13468
|
-
return /* @__PURE__ */ (0,
|
|
13469
|
-
children: /* @__PURE__ */ (0,
|
|
13680
|
+
var React46 = __toESM(require("react"), 1);
|
|
13681
|
+
var import_jsx_runtime66 = require("react/jsx-runtime");
|
|
13682
|
+
var CheckCircleIcon4 = React46.forwardRef(function(props, ref) {
|
|
13683
|
+
return /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(Icon, _object_spread_props(_object_spread({}, props), {
|
|
13684
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)("svg", {
|
|
13470
13685
|
ref: ref,
|
|
13471
13686
|
className: "w-full h-full",
|
|
13472
13687
|
viewBox: "0 0 24 24",
|
|
13473
13688
|
fill: "currentColor",
|
|
13474
13689
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13475
13690
|
children: [
|
|
13476
|
-
/* @__PURE__ */ (0,
|
|
13691
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)("path", {
|
|
13477
13692
|
d: "M15.4359 9.1397C15.773 9.38046 15.8511 9.84887 15.6103 10.1859L11.8603 15.4359C11.7322 15.6153 11.5316 15.7293 11.3119 15.7474C11.0921 15.7656 10.8756 15.6862 10.7197 15.5303L8.46967 13.2803C8.17678 12.9874 8.17678 12.5126 8.46967 12.2197C8.76256 11.9268 9.23744 11.9268 9.53033 12.2197L11.1543 13.8436L14.3897 9.31407C14.6305 8.97701 15.0989 8.89894 15.4359 9.1397Z"
|
|
13478
13693
|
}),
|
|
13479
|
-
/* @__PURE__ */ (0,
|
|
13694
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)("path", {
|
|
13480
13695
|
fillRule: "evenodd",
|
|
13481
13696
|
clipRule: "evenodd",
|
|
13482
13697
|
d: "M2.25 12C2.25 6.61522 6.61522 2.25 12 2.25C17.3848 2.25 21.75 6.61522 21.75 12C21.75 17.3848 17.3848 21.75 12 21.75C6.61522 21.75 2.25 17.3848 2.25 12ZM12 3.75C7.44365 3.75 3.75 7.44365 3.75 12C3.75 16.5563 7.44365 20.25 12 20.25C16.5563 20.25 20.25 16.5563 20.25 12C20.25 7.44365 16.5563 3.75 12 3.75Z"
|
|
@@ -13486,13 +13701,13 @@ var CheckCircleIcon4 = React45.forwardRef(function(props, ref) {
|
|
|
13486
13701
|
}));
|
|
13487
13702
|
});
|
|
13488
13703
|
// src/components/icons/outline/FilterIcon.tsx
|
|
13489
|
-
var
|
|
13704
|
+
var import_jsx_runtime67 = require("react/jsx-runtime");
|
|
13490
13705
|
// src/components/icons/outline/PencilSquareIcon.tsx
|
|
13491
|
-
var
|
|
13492
|
-
var
|
|
13493
|
-
var PencilSquareIcon =
|
|
13494
|
-
return /* @__PURE__ */ (0,
|
|
13495
|
-
children: /* @__PURE__ */ (0,
|
|
13706
|
+
var React47 = __toESM(require("react"), 1);
|
|
13707
|
+
var import_jsx_runtime68 = require("react/jsx-runtime");
|
|
13708
|
+
var PencilSquareIcon = React47.forwardRef(function(props, ref) {
|
|
13709
|
+
return /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(Icon, _object_spread_props(_object_spread({}, props), {
|
|
13710
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("svg", {
|
|
13496
13711
|
ref: ref,
|
|
13497
13712
|
className: "w-full h-full",
|
|
13498
13713
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -13500,7 +13715,7 @@ var PencilSquareIcon = React46.forwardRef(function(props, ref) {
|
|
|
13500
13715
|
viewBox: "0 0 24 24",
|
|
13501
13716
|
strokeWidth: "1.5",
|
|
13502
13717
|
stroke: "currentColor",
|
|
13503
|
-
children: /* @__PURE__ */ (0,
|
|
13718
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("path", {
|
|
13504
13719
|
strokeLinecap: "round",
|
|
13505
13720
|
strokeLinejoin: "round",
|
|
13506
13721
|
d: "m16.862 4.487 1.687-1.688a1.875 1.875 0 1 1 2.652 2.652L10.582 16.07a4.5 4.5 0 0 1-1.897 1.13L6 18l.8-2.685a4.5 4.5 0 0 1 1.13-1.897l8.932-8.931Zm0 0L19.5 7.125M18 14v4.75A2.25 2.25 0 0 1 15.75 21H5.25A2.25 2.25 0 0 1 3 18.75V8.25A2.25 2.25 0 0 1 5.25 6H10"
|
|
@@ -13509,35 +13724,35 @@ var PencilSquareIcon = React46.forwardRef(function(props, ref) {
|
|
|
13509
13724
|
}));
|
|
13510
13725
|
});
|
|
13511
13726
|
// src/components/icons/outline/ConfigIcon.tsx
|
|
13512
|
-
var
|
|
13513
|
-
var
|
|
13514
|
-
var ConfigIcon =
|
|
13515
|
-
return /* @__PURE__ */ (0,
|
|
13516
|
-
children: /* @__PURE__ */ (0,
|
|
13727
|
+
var React48 = __toESM(require("react"), 1);
|
|
13728
|
+
var import_jsx_runtime69 = require("react/jsx-runtime");
|
|
13729
|
+
var ConfigIcon = React48.forwardRef(function(props, ref) {
|
|
13730
|
+
return /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(Icon, _object_spread_props(_object_spread({}, props), {
|
|
13731
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("svg", {
|
|
13517
13732
|
width: "18",
|
|
13518
13733
|
height: "18",
|
|
13519
13734
|
viewBox: "0 0 18 18",
|
|
13520
13735
|
fill: "none",
|
|
13521
13736
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13522
13737
|
className: "cursor-pointer",
|
|
13523
|
-
children: /* @__PURE__ */ (0,
|
|
13738
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("g", {
|
|
13524
13739
|
id: "wrapper",
|
|
13525
|
-
children: /* @__PURE__ */ (0,
|
|
13740
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("g", {
|
|
13526
13741
|
id: "Union",
|
|
13527
13742
|
children: [
|
|
13528
|
-
/* @__PURE__ */ (0,
|
|
13743
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)("path", {
|
|
13529
13744
|
fillRule: "evenodd",
|
|
13530
13745
|
clipRule: "evenodd",
|
|
13531
13746
|
d: "M4.5 2.25C4.81066 2.25 5.0625 2.50184 5.0625 2.8125L5.0625 9.65852C5.71792 9.89018 6.1875 10.5153 6.1875 11.25C6.1875 11.9847 5.71792 12.6098 5.0625 12.8415V15.1875C5.0625 15.4982 4.81066 15.75 4.5 15.75C4.18934 15.75 3.9375 15.4982 3.9375 15.1875V12.8415C3.28208 12.6098 2.8125 11.9847 2.8125 11.25C2.8125 10.5153 3.28208 9.89018 3.9375 9.65852L3.9375 2.8125C3.9375 2.50184 4.18934 2.25 4.5 2.25ZM4.5 10.6875C4.18934 10.6875 3.9375 10.9393 3.9375 11.25C3.9375 11.5607 4.18934 11.8125 4.5 11.8125C4.81066 11.8125 5.0625 11.5607 5.0625 11.25C5.0625 10.9393 4.81066 10.6875 4.5 10.6875Z",
|
|
13532
13747
|
fill: "#6D7175"
|
|
13533
13748
|
}),
|
|
13534
|
-
/* @__PURE__ */ (0,
|
|
13749
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)("path", {
|
|
13535
13750
|
fillRule: "evenodd",
|
|
13536
13751
|
clipRule: "evenodd",
|
|
13537
13752
|
d: "M9 2.25C9.31066 2.25 9.5625 2.50184 9.5625 2.8125V5.15852C10.2179 5.39018 10.6875 6.01525 10.6875 6.75C10.6875 7.48475 10.2179 8.10982 9.5625 8.34148V15.1875C9.5625 15.4982 9.31066 15.75 9 15.75C8.68934 15.75 8.4375 15.4982 8.4375 15.1875V8.34148C7.78208 8.10982 7.3125 7.48475 7.3125 6.75C7.3125 6.01525 7.78208 5.39018 8.4375 5.15852V2.8125C8.4375 2.50184 8.68934 2.25 9 2.25ZM9 6.1875C8.68934 6.1875 8.4375 6.43934 8.4375 6.75C8.4375 7.06066 8.68934 7.3125 9 7.3125C9.31066 7.3125 9.5625 7.06066 9.5625 6.75C9.5625 6.43934 9.31066 6.1875 9 6.1875Z",
|
|
13538
13753
|
fill: "#6D7175"
|
|
13539
13754
|
}),
|
|
13540
|
-
/* @__PURE__ */ (0,
|
|
13755
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)("path", {
|
|
13541
13756
|
fillRule: "evenodd",
|
|
13542
13757
|
clipRule: "evenodd",
|
|
13543
13758
|
d: "M13.5 2.25C13.8107 2.25 14.0625 2.50184 14.0625 2.8125V9.65852C14.7179 9.89018 15.1875 10.5153 15.1875 11.25C15.1875 11.9847 14.7179 12.6098 14.0625 12.8415L14.0625 15.1875C14.0625 15.4982 13.8107 15.75 13.5 15.75C13.1893 15.75 12.9375 15.4982 12.9375 15.1875L12.9375 12.8415C12.2821 12.6098 11.8125 11.9847 11.8125 11.25C11.8125 10.5153 12.2821 9.89018 12.9375 9.65852V2.8125C12.9375 2.50184 13.1893 2.25 13.5 2.25ZM13.5 10.6875C13.1893 10.6875 12.9375 10.9393 12.9375 11.25C12.9375 11.5607 13.1893 11.8125 13.5 11.8125C13.8107 11.8125 14.0625 11.5607 14.0625 11.25C14.0625 10.9393 13.8107 10.6875 13.5 10.6875Z",
|
|
@@ -13550,38 +13765,38 @@ var ConfigIcon = React47.forwardRef(function(props, ref) {
|
|
|
13550
13765
|
}));
|
|
13551
13766
|
});
|
|
13552
13767
|
// src/components/icons/solid/CaretDownIcon.tsx
|
|
13553
|
-
var
|
|
13554
|
-
var
|
|
13555
|
-
var CaretDownIcon =
|
|
13556
|
-
return /* @__PURE__ */ (0,
|
|
13557
|
-
children: /* @__PURE__ */ (0,
|
|
13768
|
+
var React49 = __toESM(require("react"), 1);
|
|
13769
|
+
var import_jsx_runtime70 = require("react/jsx-runtime");
|
|
13770
|
+
var CaretDownIcon = React49.forwardRef(function(props, ref) {
|
|
13771
|
+
return /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(Icon, _object_spread_props(_object_spread({}, props), {
|
|
13772
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("svg", {
|
|
13558
13773
|
ref: ref,
|
|
13559
13774
|
className: "w-full h-full",
|
|
13560
13775
|
viewBox: "0 0 24 24",
|
|
13561
13776
|
fill: "currentColor",
|
|
13562
13777
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13563
|
-
children: /* @__PURE__ */ (0,
|
|
13778
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("path", {
|
|
13564
13779
|
d: "M13.5119 17.7818C12.7143 18.7028 11.2857 18.7028 10.4881 17.7818L2.74159 8.83689C1.61984 7.54161 2.53995 5.52759 4.25345 5.52759L19.7466 5.52759C21.4601 5.52759 22.3802 7.54161 21.2584 8.8369L13.5119 17.7818Z"
|
|
13565
13780
|
})
|
|
13566
13781
|
})
|
|
13567
13782
|
}));
|
|
13568
13783
|
});
|
|
13569
13784
|
// src/components/icons/solid/CodeIcon.tsx
|
|
13570
|
-
var
|
|
13571
|
-
var
|
|
13572
|
-
var CodeIcon =
|
|
13573
|
-
return /* @__PURE__ */ (0,
|
|
13574
|
-
children: /* @__PURE__ */ (0,
|
|
13785
|
+
var React50 = __toESM(require("react"), 1);
|
|
13786
|
+
var import_jsx_runtime71 = require("react/jsx-runtime");
|
|
13787
|
+
var CodeIcon = React50.forwardRef(function(props, ref) {
|
|
13788
|
+
return /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(Icon, _object_spread_props(_object_spread({}, props), {
|
|
13789
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)("svg", {
|
|
13575
13790
|
ref: ref,
|
|
13576
13791
|
className: "w-full h-full",
|
|
13577
13792
|
viewBox: "0 0 24 24",
|
|
13578
13793
|
fill: "currentColor",
|
|
13579
13794
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13580
13795
|
children: [
|
|
13581
|
-
/* @__PURE__ */ (0,
|
|
13796
|
+
/* @__PURE__ */ (0, import_jsx_runtime71.jsx)("path", {
|
|
13582
13797
|
d: "M15.3995 7.375C15.6066 7.01628 15.4837 6.55759 15.125 6.35048C14.7663 6.14337 14.3076 6.26628 14.1005 6.625L8.35048 16.5843C8.14337 16.943 8.26628 17.4017 8.625 17.6088C8.98372 17.8159 9.44241 17.693 9.64952 17.3343L15.3995 7.375Z"
|
|
13583
13798
|
}),
|
|
13584
|
-
/* @__PURE__ */ (0,
|
|
13799
|
+
/* @__PURE__ */ (0, import_jsx_runtime71.jsx)("path", {
|
|
13585
13800
|
fillRule: "evenodd",
|
|
13586
13801
|
clipRule: "evenodd",
|
|
13587
13802
|
d: "M6 3C4.34315 3 3 4.34315 3 6V18C3 19.6569 4.34315 21 6 21H18C19.6569 21 21 19.6569 21 18V6C21 4.34315 19.6569 3 18 3H6ZM4.5 6C4.5 5.17157 5.17157 4.5 6 4.5H18C18.8284 4.5 19.5 5.17157 19.5 6V18C19.5 18.8284 18.8284 19.5 18 19.5H6C5.17157 19.5 4.5 18.8284 4.5 18V6Z"
|
|
@@ -13591,17 +13806,17 @@ var CodeIcon = React49.forwardRef(function(props, ref) {
|
|
|
13591
13806
|
}));
|
|
13592
13807
|
});
|
|
13593
13808
|
// src/components/icons/solid/DragIcon.tsx
|
|
13594
|
-
var
|
|
13595
|
-
var
|
|
13596
|
-
var DragIcon =
|
|
13597
|
-
return /* @__PURE__ */ (0,
|
|
13598
|
-
children: /* @__PURE__ */ (0,
|
|
13809
|
+
var React51 = __toESM(require("react"), 1);
|
|
13810
|
+
var import_jsx_runtime72 = require("react/jsx-runtime");
|
|
13811
|
+
var DragIcon = React51.forwardRef(function(props, ref) {
|
|
13812
|
+
return /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(Icon, _object_spread_props(_object_spread({}, props), {
|
|
13813
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("svg", {
|
|
13599
13814
|
ref: ref,
|
|
13600
13815
|
className: "w-full h-full",
|
|
13601
13816
|
viewBox: "0 0 24 24",
|
|
13602
13817
|
fill: "currentColor",
|
|
13603
13818
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13604
|
-
children: /* @__PURE__ */ (0,
|
|
13819
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("path", {
|
|
13605
13820
|
fillRule: "evenodd",
|
|
13606
13821
|
clipRule: "evenodd",
|
|
13607
13822
|
d: "M7.5 5C7.5 4.17157 8.17157 3.5 9 3.5C9.82843 3.5 10.5 4.17157 10.5 5C10.5 5.82843 9.82843 6.5 9 6.5C8.17157 6.5 7.5 5.82843 7.5 5ZM13.5 5C13.5 4.17157 14.1716 3.5 15 3.5C15.8284 3.5 16.5 4.17157 16.5 5C16.5 5.82843 15.8284 6.5 15 6.5C14.1716 6.5 13.5 5.82843 13.5 5ZM7.5 12C7.5 11.1716 8.17157 10.5 9 10.5C9.82843 10.5 10.5 11.1716 10.5 12C10.5 12.8284 9.82843 13.5 9 13.5C8.17157 13.5 7.5 12.8284 7.5 12ZM13.5 12C13.5 11.1716 14.1716 10.5 15 10.5C15.8284 10.5 16.5 11.1716 16.5 12C16.5 12.8284 15.8284 13.5 15 13.5C14.1716 13.5 13.5 12.8284 13.5 12ZM7.5 19C7.5 18.1716 8.17157 17.5 9 17.5C9.82843 17.5 10.5 18.1716 10.5 19C10.5 19.8284 9.82843 20.5 9 20.5C8.17157 20.5 7.5 19.8284 7.5 19ZM13.5 19C13.5 18.1716 14.1716 17.5 15 17.5C15.8284 17.5 16.5 18.1716 16.5 19C16.5 19.8284 15.8284 20.5 15 20.5C14.1716 20.5 13.5 19.8284 13.5 19Z"
|
|
@@ -13610,22 +13825,22 @@ var DragIcon = React50.forwardRef(function(props, ref) {
|
|
|
13610
13825
|
}));
|
|
13611
13826
|
});
|
|
13612
13827
|
// src/components/icons/solid/PhoneIcon.tsx
|
|
13613
|
-
var
|
|
13614
|
-
var
|
|
13615
|
-
var PhoneIcon =
|
|
13616
|
-
return /* @__PURE__ */ (0,
|
|
13617
|
-
children: /* @__PURE__ */ (0,
|
|
13828
|
+
var React52 = __toESM(require("react"), 1);
|
|
13829
|
+
var import_jsx_runtime73 = require("react/jsx-runtime");
|
|
13830
|
+
var PhoneIcon = React52.forwardRef(function(props, ref) {
|
|
13831
|
+
return /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(Icon, _object_spread_props(_object_spread({}, props), {
|
|
13832
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)("svg", {
|
|
13618
13833
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13619
13834
|
width: "20",
|
|
13620
13835
|
height: "20",
|
|
13621
13836
|
viewBox: "0 0 20 20",
|
|
13622
13837
|
fill: "none",
|
|
13623
13838
|
children: [
|
|
13624
|
-
/* @__PURE__ */ (0,
|
|
13839
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)("path", {
|
|
13625
13840
|
d: "M8.75 15.625C8.40482 15.625 8.125 15.9048 8.125 16.25C8.125 16.5952 8.40482 16.875 8.75 16.875H11.25C11.5952 16.875 11.875 16.5952 11.875 16.25C11.875 15.9048 11.5952 15.625 11.25 15.625H8.75Z",
|
|
13626
13841
|
fill: "#3E5CFA"
|
|
13627
13842
|
}),
|
|
13628
|
-
/* @__PURE__ */ (0,
|
|
13843
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)("path", {
|
|
13629
13844
|
fillRule: "evenodd",
|
|
13630
13845
|
clipRule: "evenodd",
|
|
13631
13846
|
d: "M7.1875 0.625C5.6342 0.625 4.375 1.8842 4.375 3.4375V16.5625C4.375 18.1158 5.6342 19.375 7.1875 19.375H12.8125C14.3658 19.375 15.625 18.1158 15.625 16.5625V3.4375C15.625 1.8842 14.3658 0.625 12.8125 0.625H7.1875ZM6.25 3.4375C6.25 2.91973 6.66973 2.5 7.1875 2.5H8.125V2.8125C8.125 3.33027 8.54473 3.75 9.0625 3.75H10.9375C11.4553 3.75 11.875 3.33027 11.875 2.8125V2.5H12.8125C13.3303 2.5 13.75 2.91973 13.75 3.4375V16.5625C13.75 17.0803 13.3303 17.5 12.8125 17.5H7.1875C6.66973 17.5 6.25 17.0803 6.25 16.5625V3.4375Z",
|
|
@@ -13636,17 +13851,17 @@ var PhoneIcon = React51.forwardRef(function(props, ref) {
|
|
|
13636
13851
|
}));
|
|
13637
13852
|
});
|
|
13638
13853
|
// src/components/icons/solid/RectangleGroupIcon.tsx
|
|
13639
|
-
var
|
|
13640
|
-
var
|
|
13641
|
-
var RectangleGroupIcon =
|
|
13642
|
-
return /* @__PURE__ */ (0,
|
|
13643
|
-
children: /* @__PURE__ */ (0,
|
|
13854
|
+
var React53 = __toESM(require("react"), 1);
|
|
13855
|
+
var import_jsx_runtime74 = require("react/jsx-runtime");
|
|
13856
|
+
var RectangleGroupIcon = React53.forwardRef(function(props, ref) {
|
|
13857
|
+
return /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(Icon, _object_spread_props(_object_spread({}, props), {
|
|
13858
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("svg", {
|
|
13644
13859
|
ref: ref,
|
|
13645
13860
|
className: "w-full h-full",
|
|
13646
13861
|
viewBox: "0 0 24 24",
|
|
13647
13862
|
fill: "currentColor",
|
|
13648
13863
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13649
|
-
children: /* @__PURE__ */ (0,
|
|
13864
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("path", {
|
|
13650
13865
|
fillRule: "evenodd",
|
|
13651
13866
|
clipRule: "evenodd",
|
|
13652
13867
|
d: "M1.5 7.125C1.5 6.08947 2.33947 5.25 3.375 5.25H9.375C10.4105 5.25 11.25 6.08947 11.25 7.125V10.875C11.25 11.9105 10.4105 12.75 9.375 12.75H3.375C2.33947 12.75 1.5 11.9105 1.5 10.875V7.125ZM13.5 8.625C13.5 7.58947 14.3395 6.75 15.375 6.75H20.625C21.6605 6.75 22.5 7.58947 22.5 8.625V16.875C22.5 17.9105 21.6605 18.75 20.625 18.75H15.375C14.3395 18.75 13.5 17.9105 13.5 16.875V8.625ZM3 16.125C3 15.0895 3.83947 14.25 4.875 14.25H10.125C11.1605 14.25 12 15.0895 12 16.125V18.375C12 19.4105 11.1605 20.25 10.125 20.25H4.875C3.83947 20.25 3 19.4105 3 18.375V16.125Z"
|
|
@@ -13750,6 +13965,7 @@ var RectangleGroupIcon = React52.forwardRef(function(props, ref) {
|
|
|
13750
13965
|
DropdownMenuSubContent: DropdownMenuSubContent,
|
|
13751
13966
|
DropdownMenuSubTrigger: DropdownMenuSubTrigger,
|
|
13752
13967
|
DropdownMenuTrigger: DropdownMenuTrigger,
|
|
13968
|
+
ErrorState: ErrorState,
|
|
13753
13969
|
Form: Form,
|
|
13754
13970
|
FormControl: FormControl,
|
|
13755
13971
|
FormDescription: FormDescription,
|
|
@@ -13792,6 +14008,9 @@ var RectangleGroupIcon = React52.forwardRef(function(props, ref) {
|
|
|
13792
14008
|
ModalOverlay: ModalOverlay,
|
|
13793
14009
|
ModalRoot: ModalRoot,
|
|
13794
14010
|
ModalTitle: ModalTitle,
|
|
14011
|
+
NetworkErrorState: NetworkErrorState,
|
|
14012
|
+
NoPageState: NoPageState,
|
|
14013
|
+
NotFoundState: NotFoundState,
|
|
13795
14014
|
NumberInput: NumberInput,
|
|
13796
14015
|
Paragraph: Paragraph,
|
|
13797
14016
|
PencilSquareIcon: PencilSquareIcon,
|
|
@@ -13836,6 +14055,7 @@ var RectangleGroupIcon = React52.forwardRef(function(props, ref) {
|
|
|
13836
14055
|
SliderPrimitive: SliderPrimitive,
|
|
13837
14056
|
SliderSingle: SliderSingle,
|
|
13838
14057
|
Spinner: Spinner,
|
|
14058
|
+
State: State,
|
|
13839
14059
|
SubHeading: SubHeading,
|
|
13840
14060
|
SubTitle: SubTitle,
|
|
13841
14061
|
Swiper: Swiper,
|