myshell-react-lib 0.1.27 → 0.1.28
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 +151 -111
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +16 -1
- package/dist/index.d.ts +16 -1
- package/dist/index.js +148 -112
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -4123,6 +4123,9 @@ __export(index_exports, {
|
|
|
4123
4123
|
Checkbox: function() {
|
|
4124
4124
|
return Checkbox;
|
|
4125
4125
|
},
|
|
4126
|
+
Chips: function() {
|
|
4127
|
+
return Chips;
|
|
4128
|
+
},
|
|
4126
4129
|
CodeIcon: function() {
|
|
4127
4130
|
return CodeIcon;
|
|
4128
4131
|
},
|
|
@@ -12738,14 +12741,50 @@ var ToggleGroupItem = React39.forwardRef(function(_param, ref) {
|
|
|
12738
12741
|
}));
|
|
12739
12742
|
});
|
|
12740
12743
|
ToggleGroupItem.displayName = ToggleGroupPrimitive.Item.displayName;
|
|
12744
|
+
// src/components/chips.tsx
|
|
12745
|
+
var import_class_variance_authority19 = require("class-variance-authority");
|
|
12746
|
+
var import_jsx_runtime56 = require("react/jsx-runtime");
|
|
12747
|
+
var chipsVariants = (0, import_class_variance_authority19.cva)('min-w-10 flex items-center justify-center text-Colors-Text-Subtle rounded-sm border px-1.5 text-sm cursor-pointer focus-visible:ring-2 focus-visible:ring-cc-Focus-Rings-Brand-default focus-visible:ring-offset-1 data-[disabled="true"]:cursor-not-allowed', {
|
|
12748
|
+
variants: {
|
|
12749
|
+
variant: {
|
|
12750
|
+
primary: 'border-cc-Chips-Primary-border-default bg-cc-Chips-Primary-bg-default hover:bg-cc-Chips-Primary-bg-hover data-[selected="true"]:text-Colors-Text-Bolder data-[disabled="true"]:data-[selected="true"]:text-Colors-Text-Bolder data-[selected="true"]:bg-cc-Chips-Primary-bg-select data-[disabled="true"]:text-Colors-Text-Disabled data-[disabled="true"]:bg-cc-Chips-Primary-bg-disabled data-[disabled="true"]:data-[selected="true"]:bg-cc-Chips-Primary-bg-select-disabled',
|
|
12751
|
+
basic: 'border-Colors-Border-Default bg-Colors-Background-Utilities-None hover:border-Colors-Border-Hover data-[selected="true"]:border-Colors-Border-Default data-[disabled="true"]:text-Colors-Text-Disabled data-[selected="true"]:border-Colors-Border-Bolder data-[selected="true"]:text-Colors-Text-Default data-[disabled="true"]:data-[selected="true"]:text-Colors-Text-Disabled data-[disabled="true"]:data-[selected="true"]:border-Colors-Border-Default'
|
|
12752
|
+
},
|
|
12753
|
+
size: {
|
|
12754
|
+
lg: "h-9",
|
|
12755
|
+
sm: "h-7"
|
|
12756
|
+
}
|
|
12757
|
+
},
|
|
12758
|
+
defaultVariants: {
|
|
12759
|
+
variant: "primary"
|
|
12760
|
+
}
|
|
12761
|
+
});
|
|
12762
|
+
function Chips(props) {
|
|
12763
|
+
var variant = props.variant, size = props.size, count2 = props.count, className = props.className, label = props.label, disabled = props.disabled, selected = props.selected;
|
|
12764
|
+
return /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", {
|
|
12765
|
+
"data-disabled": disabled,
|
|
12766
|
+
"data-selected": selected,
|
|
12767
|
+
className: cn(chipsVariants({
|
|
12768
|
+
variant: variant,
|
|
12769
|
+
size: size
|
|
12770
|
+
}), className),
|
|
12771
|
+
children: [
|
|
12772
|
+
label,
|
|
12773
|
+
count2 && count2 > 0 ? /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", {
|
|
12774
|
+
className: "h-full pt-0.5 ml-1 font-medium text-xs leading-[1.3]",
|
|
12775
|
+
children: count2
|
|
12776
|
+
}) : null
|
|
12777
|
+
]
|
|
12778
|
+
});
|
|
12779
|
+
}
|
|
12741
12780
|
// src/components/toast/toast.tsx
|
|
12742
12781
|
var ToastPrimitives = __toESM(require("@radix-ui/react-toast"), 1);
|
|
12743
|
-
var
|
|
12782
|
+
var import_class_variance_authority20 = require("class-variance-authority");
|
|
12744
12783
|
var React40 = __toESM(require("react"), 1);
|
|
12745
12784
|
var import_XMarkIcon3 = __toESM(require("@heroicons/react/24/outline/esm/XMarkIcon"), 1);
|
|
12746
|
-
var
|
|
12785
|
+
var import_jsx_runtime57 = require("react/jsx-runtime");
|
|
12747
12786
|
var ToastProvider = ToastPrimitives.Provider;
|
|
12748
|
-
var viewportPositionVariants = (0,
|
|
12787
|
+
var viewportPositionVariants = (0, import_class_variance_authority20.cva)("fixed z-[1000001] flex max-h-screen w-full p-0 gap-2", {
|
|
12749
12788
|
variants: {
|
|
12750
12789
|
position: {
|
|
12751
12790
|
"top-left": "top-6 left-6 flex-col items-start",
|
|
@@ -12767,7 +12806,7 @@ var ToastViewport = React40.forwardRef(function(_param, ref) {
|
|
|
12767
12806
|
"className",
|
|
12768
12807
|
"position"
|
|
12769
12808
|
]);
|
|
12770
|
-
return /* @__PURE__ */ (0,
|
|
12809
|
+
return /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(ToastPrimitives.Viewport, _object_spread({
|
|
12771
12810
|
ref: ref,
|
|
12772
12811
|
className: cn(viewportPositionVariants({
|
|
12773
12812
|
position: position
|
|
@@ -12775,7 +12814,7 @@ var ToastViewport = React40.forwardRef(function(_param, ref) {
|
|
|
12775
12814
|
}, props));
|
|
12776
12815
|
});
|
|
12777
12816
|
ToastViewport.displayName = ToastPrimitives.Viewport.displayName;
|
|
12778
|
-
var toastVariants = (0,
|
|
12817
|
+
var toastVariants = (0, import_class_variance_authority20.cva)("group pointer-events-auto relative flex w-full items-center justify-between space-x-4 overflow-hidden rounded-sm border border-Colors-Border-Opaque p-6 pr-8 shadow-modal-default transition-all data-[swipe=cancel]:translate-x-0 data-[swipe=end]:translate-x-[var(--radix-toast-swipe-end-x)] data-[swipe=move]:translate-x-[var(--radix-toast-swipe-move-x)] data-[swipe=move]:transition-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[swipe=end]:animate-out data-[state=closed]:fade-out-80 max-w-md", {
|
|
12779
12818
|
variants: {
|
|
12780
12819
|
variant: {
|
|
12781
12820
|
info: "bg-Colors-Background-Normal-Primary-Default p-4",
|
|
@@ -12805,7 +12844,7 @@ var Toast = React40.forwardRef(function(_param, ref) {
|
|
|
12805
12844
|
"variant",
|
|
12806
12845
|
"position"
|
|
12807
12846
|
]);
|
|
12808
|
-
return /* @__PURE__ */ (0,
|
|
12847
|
+
return /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(ToastPrimitives.Root, _object_spread({
|
|
12809
12848
|
ref: ref,
|
|
12810
12849
|
className: cn(toastVariants({
|
|
12811
12850
|
variant: variant,
|
|
@@ -12819,7 +12858,7 @@ var ToastAction = React40.forwardRef(function(_param, ref) {
|
|
|
12819
12858
|
var className = _param.className, props = _object_without_properties(_param, [
|
|
12820
12859
|
"className"
|
|
12821
12860
|
]);
|
|
12822
|
-
return /* @__PURE__ */ (0,
|
|
12861
|
+
return /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(ToastPrimitives.Action, _object_spread({
|
|
12823
12862
|
ref: ref,
|
|
12824
12863
|
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)
|
|
12825
12864
|
}, props));
|
|
@@ -12829,12 +12868,12 @@ var ToastClose = React40.forwardRef(function(_param, ref) {
|
|
|
12829
12868
|
var className = _param.className, props = _object_without_properties(_param, [
|
|
12830
12869
|
"className"
|
|
12831
12870
|
]);
|
|
12832
|
-
return /* @__PURE__ */ (0,
|
|
12871
|
+
return /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(ToastPrimitives.Close, _object_spread_props(_object_spread({
|
|
12833
12872
|
ref: ref,
|
|
12834
12873
|
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),
|
|
12835
12874
|
"toast-close": ""
|
|
12836
12875
|
}, props), {
|
|
12837
|
-
children: /* @__PURE__ */ (0,
|
|
12876
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(import_XMarkIcon3.default, {
|
|
12838
12877
|
className: "h-5 w-5"
|
|
12839
12878
|
})
|
|
12840
12879
|
}));
|
|
@@ -12844,7 +12883,7 @@ var ToastTitle = React40.forwardRef(function(_param, ref) {
|
|
|
12844
12883
|
var className = _param.className, props = _object_without_properties(_param, [
|
|
12845
12884
|
"className"
|
|
12846
12885
|
]);
|
|
12847
|
-
return /* @__PURE__ */ (0,
|
|
12886
|
+
return /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(ToastPrimitives.Title, _object_spread({
|
|
12848
12887
|
ref: ref,
|
|
12849
12888
|
className: cn("text-sm font-semibold", className)
|
|
12850
12889
|
}, props));
|
|
@@ -12854,7 +12893,7 @@ var ToastDescription = React40.forwardRef(function(_param, ref) {
|
|
|
12854
12893
|
var className = _param.className, props = _object_without_properties(_param, [
|
|
12855
12894
|
"className"
|
|
12856
12895
|
]);
|
|
12857
|
-
return /* @__PURE__ */ (0,
|
|
12896
|
+
return /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(ToastPrimitives.Description, _object_spread({
|
|
12858
12897
|
ref: ref,
|
|
12859
12898
|
className: cn("text-sm opacity-90", className)
|
|
12860
12899
|
}, props));
|
|
@@ -12866,7 +12905,7 @@ var import_InformationCircleIcon2 = __toESM(require("@heroicons/react/24/outline
|
|
|
12866
12905
|
var import_XCircleIcon2 = __toESM(require("@heroicons/react/24/outline/esm/XCircleIcon"), 1);
|
|
12867
12906
|
// src/components/toast/use-toast.tsx
|
|
12868
12907
|
var React41 = __toESM(require("react"), 1);
|
|
12869
|
-
var
|
|
12908
|
+
var import_jsx_runtime58 = require("react/jsx-runtime");
|
|
12870
12909
|
var TOAST_LIMIT = 8;
|
|
12871
12910
|
var TOAST_REMOVE_DELAY = 1e3;
|
|
12872
12911
|
var count = 0;
|
|
@@ -12969,10 +13008,10 @@ function toast(_param) {
|
|
|
12969
13008
|
toast: _object_spread_props(_object_spread(_object_spread_props(_object_spread({}, props), {
|
|
12970
13009
|
position: position
|
|
12971
13010
|
}), actions && {
|
|
12972
|
-
action: /* @__PURE__ */ (0,
|
|
13011
|
+
action: /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)("div", {
|
|
12973
13012
|
className: "flex justify-start items-center gap-2",
|
|
12974
13013
|
children: [
|
|
12975
|
-
(actions === null || actions === void 0 ? void 0 : actions.dismissText) && /* @__PURE__ */ (0,
|
|
13014
|
+
(actions === null || actions === void 0 ? void 0 : actions.dismissText) && /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(Text, {
|
|
12976
13015
|
size: "sm",
|
|
12977
13016
|
weight: "medium",
|
|
12978
13017
|
color: "brand",
|
|
@@ -12982,13 +13021,13 @@ function toast(_param) {
|
|
|
12982
13021
|
},
|
|
12983
13022
|
children: actions === null || actions === void 0 ? void 0 : actions.dismissText
|
|
12984
13023
|
}),
|
|
12985
|
-
(actions === null || actions === void 0 ? void 0 : actions.view) && actions.viewUrl && /* @__PURE__ */ (0,
|
|
13024
|
+
(actions === null || actions === void 0 ? void 0 : actions.view) && actions.viewUrl && /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(link_default, {
|
|
12986
13025
|
href: actions.viewUrl,
|
|
12987
13026
|
target: "_blank",
|
|
12988
13027
|
rel: "noreferrer noopener",
|
|
12989
|
-
children: /* @__PURE__ */ (0,
|
|
13028
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)("div", {
|
|
12990
13029
|
className: "flex items-center gap-1.5",
|
|
12991
|
-
children: /* @__PURE__ */ (0,
|
|
13030
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(Text, {
|
|
12992
13031
|
size: "sm",
|
|
12993
13032
|
weight: "medium",
|
|
12994
13033
|
color: "default",
|
|
@@ -13039,7 +13078,7 @@ function useToast() {
|
|
|
13039
13078
|
// src/components/toast/toaster.tsx
|
|
13040
13079
|
var import_react15 = __toESM(require("react"), 1);
|
|
13041
13080
|
var import_outline3 = require("@heroicons/react/24/outline");
|
|
13042
|
-
var
|
|
13081
|
+
var import_jsx_runtime59 = require("react/jsx-runtime");
|
|
13043
13082
|
function Toaster() {
|
|
13044
13083
|
var _ref = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, _ref_position = _ref.position, position = _ref_position === void 0 ? "top-right" : _ref_position;
|
|
13045
13084
|
var toasts = useToast().toasts;
|
|
@@ -13076,19 +13115,19 @@ function Toaster() {
|
|
|
13076
13115
|
var renderIcon3 = function(variant2) {
|
|
13077
13116
|
switch(variant2){
|
|
13078
13117
|
case "info":
|
|
13079
|
-
return /* @__PURE__ */ (0,
|
|
13118
|
+
return /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_InformationCircleIcon2.default, {
|
|
13080
13119
|
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Info"
|
|
13081
13120
|
});
|
|
13082
13121
|
case "success":
|
|
13083
|
-
return /* @__PURE__ */ (0,
|
|
13122
|
+
return /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_CheckCircleIcon2.default, {
|
|
13084
13123
|
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Success"
|
|
13085
13124
|
});
|
|
13086
13125
|
case "warning":
|
|
13087
|
-
return /* @__PURE__ */ (0,
|
|
13126
|
+
return /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_outline3.ExclamationTriangleIcon, {
|
|
13088
13127
|
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Warning"
|
|
13089
13128
|
});
|
|
13090
13129
|
case "error":
|
|
13091
|
-
return /* @__PURE__ */ (0,
|
|
13130
|
+
return /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_XCircleIcon2.default, {
|
|
13092
13131
|
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Error"
|
|
13093
13132
|
});
|
|
13094
13133
|
}
|
|
@@ -13105,26 +13144,26 @@ function Toaster() {
|
|
|
13105
13144
|
return "bg-Colors-Background-Critical-Default";
|
|
13106
13145
|
}
|
|
13107
13146
|
};
|
|
13108
|
-
return /* @__PURE__ */ (0,
|
|
13147
|
+
return /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)(Toast, _object_spread_props(_object_spread({}, toast4), {
|
|
13109
13148
|
position: toastPosition,
|
|
13110
13149
|
children: [
|
|
13111
|
-
/* @__PURE__ */ (0,
|
|
13150
|
+
/* @__PURE__ */ (0, import_jsx_runtime59.jsx)("div", {
|
|
13112
13151
|
className: "flex flex-col gap-3",
|
|
13113
|
-
children: /* @__PURE__ */ (0,
|
|
13152
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("div", {
|
|
13114
13153
|
className: "flex items-start gap-3",
|
|
13115
13154
|
children: [
|
|
13116
|
-
/* @__PURE__ */ (0,
|
|
13155
|
+
/* @__PURE__ */ (0, import_jsx_runtime59.jsx)("div", {
|
|
13117
13156
|
className: cn("flex h-10 w-10 flex-shrink-0 flex-grow-0 items-center justify-center rounded-full", getBackgroundColor(variant)),
|
|
13118
13157
|
children: renderIcon3(variant)
|
|
13119
13158
|
}),
|
|
13120
|
-
/* @__PURE__ */ (0,
|
|
13159
|
+
/* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("div", {
|
|
13121
13160
|
className: "grid gap-1",
|
|
13122
13161
|
children: [
|
|
13123
|
-
title && /* @__PURE__ */ (0,
|
|
13162
|
+
title && /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(ToastTitle, {
|
|
13124
13163
|
className: "text-base text-Colors-Text-Default",
|
|
13125
13164
|
children: title
|
|
13126
13165
|
}),
|
|
13127
|
-
description && /* @__PURE__ */ (0,
|
|
13166
|
+
description && /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(ToastDescription, {
|
|
13128
13167
|
className: "text-sm text-Colors-Text-Subtle",
|
|
13129
13168
|
children: description
|
|
13130
13169
|
}),
|
|
@@ -13134,17 +13173,17 @@ function Toaster() {
|
|
|
13134
13173
|
]
|
|
13135
13174
|
})
|
|
13136
13175
|
}),
|
|
13137
|
-
/* @__PURE__ */ (0,
|
|
13176
|
+
/* @__PURE__ */ (0, import_jsx_runtime59.jsx)(ToastClose, {})
|
|
13138
13177
|
]
|
|
13139
13178
|
}), id);
|
|
13140
13179
|
};
|
|
13141
|
-
return /* @__PURE__ */ (0,
|
|
13180
|
+
return /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(ToastProvider, {
|
|
13142
13181
|
children: Object.entries(positionGroups).map(function(param) {
|
|
13143
13182
|
var _param = _sliced_to_array(param, 2), pos = _param[0], toastsForPosition = _param[1];
|
|
13144
|
-
return /* @__PURE__ */ (0,
|
|
13183
|
+
return /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)(import_react15.default.Fragment, {
|
|
13145
13184
|
children: [
|
|
13146
13185
|
toastsForPosition.map(renderToast),
|
|
13147
|
-
toastsForPosition.length > 0 && /* @__PURE__ */ (0,
|
|
13186
|
+
toastsForPosition.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(ToastViewport, {
|
|
13148
13187
|
position: pos
|
|
13149
13188
|
})
|
|
13150
13189
|
]
|
|
@@ -13153,7 +13192,7 @@ function Toaster() {
|
|
|
13153
13192
|
});
|
|
13154
13193
|
}
|
|
13155
13194
|
// src/components/swiper/index.tsx
|
|
13156
|
-
var
|
|
13195
|
+
var import_class_variance_authority21 = require("class-variance-authority");
|
|
13157
13196
|
var import_react16 = require("react");
|
|
13158
13197
|
var import_navigation = require("next/navigation");
|
|
13159
13198
|
var import_modules = require("swiper/modules");
|
|
@@ -13166,8 +13205,8 @@ var import_pagination = require("swiper/css/pagination");
|
|
|
13166
13205
|
// src/components/swiper/index.module.scss
|
|
13167
13206
|
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== */';
|
|
13168
13207
|
// src/components/swiper/index.tsx
|
|
13169
|
-
var
|
|
13170
|
-
var swiperVariants = (0,
|
|
13208
|
+
var import_jsx_runtime60 = require("react/jsx-runtime");
|
|
13209
|
+
var swiperVariants = (0, import_class_variance_authority21.cva)("", {
|
|
13171
13210
|
variants: {
|
|
13172
13211
|
rounded: {
|
|
13173
13212
|
none: "rounded-none",
|
|
@@ -13302,9 +13341,9 @@ function Swiper(props) {
|
|
|
13302
13341
|
}
|
|
13303
13342
|
}
|
|
13304
13343
|
};
|
|
13305
|
-
return /* @__PURE__ */ (0,
|
|
13344
|
+
return /* @__PURE__ */ (0, import_jsx_runtime60.jsx)("div", {
|
|
13306
13345
|
className: index_module_default.swiperBox,
|
|
13307
|
-
children: /* @__PURE__ */ (0,
|
|
13346
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(import_react17.Swiper, _object_spread_props(_object_spread({
|
|
13308
13347
|
observer: true,
|
|
13309
13348
|
observeParents: true
|
|
13310
13349
|
}, swiperConfigs), {
|
|
@@ -13314,9 +13353,9 @@ function Swiper(props) {
|
|
|
13314
13353
|
swiperRef.current = swiper;
|
|
13315
13354
|
},
|
|
13316
13355
|
children: swiperList.map(function(item, index) {
|
|
13317
|
-
return /* @__PURE__ */ (0,
|
|
13356
|
+
return /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(import_react17.SwiperSlide, {
|
|
13318
13357
|
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),
|
|
13319
|
-
children: /* @__PURE__ */ (0,
|
|
13358
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(Com, {
|
|
13320
13359
|
item: item,
|
|
13321
13360
|
index: index,
|
|
13322
13361
|
onClick: handleSlideItemClick,
|
|
@@ -13337,48 +13376,48 @@ var import_ExclamationCircleIcon = __toESM(require("@heroicons/react/24/solid/es
|
|
|
13337
13376
|
var import_InformationCircleIcon3 = __toESM(require("@heroicons/react/24/solid/esm/InformationCircleIcon"), 1);
|
|
13338
13377
|
var import_XCircleIcon3 = __toESM(require("@heroicons/react/24/solid/esm/XCircleIcon"), 1);
|
|
13339
13378
|
var import_react_hot_toast = require("react-hot-toast");
|
|
13340
|
-
var
|
|
13379
|
+
var import_jsx_runtime61 = require("react/jsx-runtime");
|
|
13341
13380
|
function CustomNotification(param) {
|
|
13342
13381
|
var tProps = param.tProps, customProps = param.customProps;
|
|
13343
13382
|
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;
|
|
13344
13383
|
var id = tProps.id;
|
|
13345
13384
|
var displayedContent = !isString(content) ? JSON.stringify(content) : content;
|
|
13346
|
-
return /* @__PURE__ */ (0,
|
|
13347
|
-
children: /* @__PURE__ */ (0,
|
|
13385
|
+
return /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("div", {
|
|
13386
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("div", {
|
|
13348
13387
|
id: id,
|
|
13349
13388
|
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]",
|
|
13350
|
-
children: /* @__PURE__ */ (0,
|
|
13389
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", {
|
|
13351
13390
|
className: "flex w-full items-center justify-center gap-2",
|
|
13352
13391
|
children: [
|
|
13353
|
-
loading && /* @__PURE__ */ (0,
|
|
13354
|
-
!loading && type && /* @__PURE__ */ (0,
|
|
13392
|
+
loading && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(Spinner, {}),
|
|
13393
|
+
!loading && type && /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", {
|
|
13355
13394
|
className: "flex flex-shrink-0 items-center",
|
|
13356
13395
|
children: [
|
|
13357
|
-
type === "info" && /* @__PURE__ */ (0,
|
|
13396
|
+
type === "info" && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(import_InformationCircleIcon3.default, {
|
|
13358
13397
|
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Info"
|
|
13359
13398
|
}),
|
|
13360
|
-
type === "success" && /* @__PURE__ */ (0,
|
|
13399
|
+
type === "success" && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(import_CheckCircleIcon3.default, {
|
|
13361
13400
|
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Success"
|
|
13362
13401
|
}),
|
|
13363
|
-
type === "warning" && /* @__PURE__ */ (0,
|
|
13402
|
+
type === "warning" && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(import_ExclamationCircleIcon.default, {
|
|
13364
13403
|
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Warning"
|
|
13365
13404
|
}),
|
|
13366
|
-
type === "error" && /* @__PURE__ */ (0,
|
|
13405
|
+
type === "error" && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(import_XCircleIcon3.default, {
|
|
13367
13406
|
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Error"
|
|
13368
13407
|
})
|
|
13369
13408
|
]
|
|
13370
13409
|
}),
|
|
13371
|
-
/* @__PURE__ */ (0,
|
|
13410
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("div", {
|
|
13372
13411
|
className: "flex flex-grow flex-col space-y-1 overflow-hidden",
|
|
13373
13412
|
children: [
|
|
13374
|
-
title && /* @__PURE__ */ (0,
|
|
13413
|
+
title && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(Text, {
|
|
13375
13414
|
size: "sm",
|
|
13376
13415
|
weight: "regular",
|
|
13377
13416
|
color: "default",
|
|
13378
13417
|
children: title
|
|
13379
13418
|
}),
|
|
13380
|
-
/* @__PURE__ */ (0,
|
|
13381
|
-
children: /* @__PURE__ */ (0,
|
|
13419
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)("div", {
|
|
13420
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(Text, {
|
|
13382
13421
|
size: "sm",
|
|
13383
13422
|
weight: "regular",
|
|
13384
13423
|
color: "default",
|
|
@@ -13387,16 +13426,16 @@ function CustomNotification(param) {
|
|
|
13387
13426
|
})
|
|
13388
13427
|
]
|
|
13389
13428
|
}),
|
|
13390
|
-
action && /* @__PURE__ */ (0,
|
|
13429
|
+
action && /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)(import_jsx_runtime61.Fragment, {
|
|
13391
13430
|
children: [
|
|
13392
|
-
/* @__PURE__ */ (0,
|
|
13431
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)(Separator, {
|
|
13393
13432
|
orientation: "vertical",
|
|
13394
13433
|
className: "h-3"
|
|
13395
13434
|
}),
|
|
13396
13435
|
action
|
|
13397
13436
|
]
|
|
13398
13437
|
}),
|
|
13399
|
-
isClosable && /* @__PURE__ */ (0,
|
|
13438
|
+
isClosable && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(IconButton, {
|
|
13400
13439
|
size: "sm",
|
|
13401
13440
|
variant: "plain",
|
|
13402
13441
|
icon: import_XMarkIcon4.default,
|
|
@@ -13413,14 +13452,14 @@ function CustomNotification(param) {
|
|
|
13413
13452
|
// src/common/hooks/useNotification.tsx
|
|
13414
13453
|
var import_react18 = require("react");
|
|
13415
13454
|
var import_react_hot_toast2 = require("react-hot-toast");
|
|
13416
|
-
var
|
|
13455
|
+
var import_jsx_runtime62 = require("react/jsx-runtime");
|
|
13417
13456
|
function useNotification() {
|
|
13418
13457
|
var addToast = (0, import_react18.useCallback)(function(config2, duration2) {
|
|
13419
13458
|
if (config2.id) {
|
|
13420
13459
|
import_react_hot_toast2.toast.remove(config2.id);
|
|
13421
13460
|
}
|
|
13422
13461
|
import_react_hot_toast2.toast.custom(function(t) {
|
|
13423
|
-
return /* @__PURE__ */ (0,
|
|
13462
|
+
return /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(CustomNotification, {
|
|
13424
13463
|
tProps: _object_spread_props(_object_spread({}, t), {
|
|
13425
13464
|
duration: duration2
|
|
13426
13465
|
}),
|
|
@@ -13481,7 +13520,7 @@ var Message = /*#__PURE__*/ function() {
|
|
|
13481
13520
|
}
|
|
13482
13521
|
var addToast = function() {
|
|
13483
13522
|
import_react_hot_toast2.toast.custom(function(t) {
|
|
13484
|
-
return /* @__PURE__ */ (0,
|
|
13523
|
+
return /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(CustomNotification, {
|
|
13485
13524
|
tProps: _object_spread_props(_object_spread({}, t), {
|
|
13486
13525
|
duration: duration2
|
|
13487
13526
|
}),
|
|
@@ -13538,10 +13577,10 @@ var Message = /*#__PURE__*/ function() {
|
|
|
13538
13577
|
}();
|
|
13539
13578
|
// src/components/icons/outline/ArrowLeftIcon.tsx
|
|
13540
13579
|
var React43 = __toESM(require("react"), 1);
|
|
13541
|
-
var
|
|
13580
|
+
var import_jsx_runtime63 = require("react/jsx-runtime");
|
|
13542
13581
|
var ArrowLeftIcon2 = React43.forwardRef(function(props, ref) {
|
|
13543
|
-
return /* @__PURE__ */ (0,
|
|
13544
|
-
children: /* @__PURE__ */ (0,
|
|
13582
|
+
return /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(Icon, _object_spread_props(_object_spread({}, props), {
|
|
13583
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("svg", {
|
|
13545
13584
|
ref: ref,
|
|
13546
13585
|
className: "w-full h-full",
|
|
13547
13586
|
viewBox: "0 0 24 24",
|
|
@@ -13549,7 +13588,7 @@ var ArrowLeftIcon2 = React43.forwardRef(function(props, ref) {
|
|
|
13549
13588
|
strokeWidth: "1.5",
|
|
13550
13589
|
stroke: "currentColor",
|
|
13551
13590
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13552
|
-
children: /* @__PURE__ */ (0,
|
|
13591
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("path", {
|
|
13553
13592
|
strokeLinecap: "round",
|
|
13554
13593
|
strokeLinejoin: "round",
|
|
13555
13594
|
d: "M10.5 19.5 3 12m0 0 7.5-7.5M3 12h18"
|
|
@@ -13559,10 +13598,10 @@ var ArrowLeftIcon2 = React43.forwardRef(function(props, ref) {
|
|
|
13559
13598
|
});
|
|
13560
13599
|
// src/components/icons/outline/ArrowUpTrayIcon.tsx
|
|
13561
13600
|
var React44 = __toESM(require("react"), 1);
|
|
13562
|
-
var
|
|
13601
|
+
var import_jsx_runtime64 = require("react/jsx-runtime");
|
|
13563
13602
|
var ArrowUpTrayIcon = React44.forwardRef(function(props, ref) {
|
|
13564
|
-
return /* @__PURE__ */ (0,
|
|
13565
|
-
children: /* @__PURE__ */ (0,
|
|
13603
|
+
return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(Icon, _object_spread_props(_object_spread({}, props), {
|
|
13604
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("svg", {
|
|
13566
13605
|
ref: ref,
|
|
13567
13606
|
className: "w-full h-full",
|
|
13568
13607
|
viewBox: "0 0 24 24",
|
|
@@ -13570,7 +13609,7 @@ var ArrowUpTrayIcon = React44.forwardRef(function(props, ref) {
|
|
|
13570
13609
|
strokeWidth: "1.5",
|
|
13571
13610
|
stroke: "currentColor",
|
|
13572
13611
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13573
|
-
children: /* @__PURE__ */ (0,
|
|
13612
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("path", {
|
|
13574
13613
|
strokeLinecap: "round",
|
|
13575
13614
|
strokeLinejoin: "round",
|
|
13576
13615
|
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"
|
|
@@ -13580,10 +13619,10 @@ var ArrowUpTrayIcon = React44.forwardRef(function(props, ref) {
|
|
|
13580
13619
|
});
|
|
13581
13620
|
// src/components/icons/outline/WindowIcon.tsx
|
|
13582
13621
|
var React45 = __toESM(require("react"), 1);
|
|
13583
|
-
var
|
|
13622
|
+
var import_jsx_runtime65 = require("react/jsx-runtime");
|
|
13584
13623
|
var WindowIcon = React45.forwardRef(function(props, ref) {
|
|
13585
|
-
return /* @__PURE__ */ (0,
|
|
13586
|
-
children: /* @__PURE__ */ (0,
|
|
13624
|
+
return /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(Icon, _object_spread_props(_object_spread({}, props), {
|
|
13625
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("svg", {
|
|
13587
13626
|
ref: ref,
|
|
13588
13627
|
className: "w-full h-full",
|
|
13589
13628
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -13591,7 +13630,7 @@ var WindowIcon = React45.forwardRef(function(props, ref) {
|
|
|
13591
13630
|
fill: "none",
|
|
13592
13631
|
strokeWidth: "1.5",
|
|
13593
13632
|
stroke: "currentColor",
|
|
13594
|
-
children: /* @__PURE__ */ (0,
|
|
13633
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("path", {
|
|
13595
13634
|
strokeLinecap: "round",
|
|
13596
13635
|
strokeLinejoin: "round",
|
|
13597
13636
|
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"
|
|
@@ -13601,20 +13640,20 @@ var WindowIcon = React45.forwardRef(function(props, ref) {
|
|
|
13601
13640
|
});
|
|
13602
13641
|
// src/components/icons/outline/CheckCircleIcon.tsx
|
|
13603
13642
|
var React46 = __toESM(require("react"), 1);
|
|
13604
|
-
var
|
|
13643
|
+
var import_jsx_runtime66 = require("react/jsx-runtime");
|
|
13605
13644
|
var CheckCircleIcon4 = React46.forwardRef(function(props, ref) {
|
|
13606
|
-
return /* @__PURE__ */ (0,
|
|
13607
|
-
children: /* @__PURE__ */ (0,
|
|
13645
|
+
return /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(Icon, _object_spread_props(_object_spread({}, props), {
|
|
13646
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)("svg", {
|
|
13608
13647
|
ref: ref,
|
|
13609
13648
|
className: "w-full h-full",
|
|
13610
13649
|
viewBox: "0 0 24 24",
|
|
13611
13650
|
fill: "currentColor",
|
|
13612
13651
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13613
13652
|
children: [
|
|
13614
|
-
/* @__PURE__ */ (0,
|
|
13653
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)("path", {
|
|
13615
13654
|
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"
|
|
13616
13655
|
}),
|
|
13617
|
-
/* @__PURE__ */ (0,
|
|
13656
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)("path", {
|
|
13618
13657
|
fillRule: "evenodd",
|
|
13619
13658
|
clipRule: "evenodd",
|
|
13620
13659
|
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"
|
|
@@ -13625,10 +13664,10 @@ var CheckCircleIcon4 = React46.forwardRef(function(props, ref) {
|
|
|
13625
13664
|
});
|
|
13626
13665
|
// src/components/icons/outline/PencilSquareIcon.tsx
|
|
13627
13666
|
var React47 = __toESM(require("react"), 1);
|
|
13628
|
-
var
|
|
13667
|
+
var import_jsx_runtime67 = require("react/jsx-runtime");
|
|
13629
13668
|
var PencilSquareIcon = React47.forwardRef(function(props, ref) {
|
|
13630
|
-
return /* @__PURE__ */ (0,
|
|
13631
|
-
children: /* @__PURE__ */ (0,
|
|
13669
|
+
return /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(Icon, _object_spread_props(_object_spread({}, props), {
|
|
13670
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("svg", {
|
|
13632
13671
|
ref: ref,
|
|
13633
13672
|
className: "w-full h-full",
|
|
13634
13673
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -13636,7 +13675,7 @@ var PencilSquareIcon = React47.forwardRef(function(props, ref) {
|
|
|
13636
13675
|
viewBox: "0 0 24 24",
|
|
13637
13676
|
strokeWidth: "1.5",
|
|
13638
13677
|
stroke: "currentColor",
|
|
13639
|
-
children: /* @__PURE__ */ (0,
|
|
13678
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("path", {
|
|
13640
13679
|
strokeLinecap: "round",
|
|
13641
13680
|
strokeLinejoin: "round",
|
|
13642
13681
|
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"
|
|
@@ -13646,34 +13685,34 @@ var PencilSquareIcon = React47.forwardRef(function(props, ref) {
|
|
|
13646
13685
|
});
|
|
13647
13686
|
// src/components/icons/outline/ConfigIcon.tsx
|
|
13648
13687
|
var React48 = __toESM(require("react"), 1);
|
|
13649
|
-
var
|
|
13688
|
+
var import_jsx_runtime68 = require("react/jsx-runtime");
|
|
13650
13689
|
var ConfigIcon = React48.forwardRef(function(props, ref) {
|
|
13651
|
-
return /* @__PURE__ */ (0,
|
|
13652
|
-
children: /* @__PURE__ */ (0,
|
|
13690
|
+
return /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(Icon, _object_spread_props(_object_spread({}, props), {
|
|
13691
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("svg", {
|
|
13653
13692
|
width: "18",
|
|
13654
13693
|
height: "18",
|
|
13655
13694
|
viewBox: "0 0 18 18",
|
|
13656
13695
|
fill: "none",
|
|
13657
13696
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13658
13697
|
className: "cursor-pointer",
|
|
13659
|
-
children: /* @__PURE__ */ (0,
|
|
13698
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("g", {
|
|
13660
13699
|
id: "wrapper",
|
|
13661
|
-
children: /* @__PURE__ */ (0,
|
|
13700
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("g", {
|
|
13662
13701
|
id: "Union",
|
|
13663
13702
|
children: [
|
|
13664
|
-
/* @__PURE__ */ (0,
|
|
13703
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)("path", {
|
|
13665
13704
|
fillRule: "evenodd",
|
|
13666
13705
|
clipRule: "evenodd",
|
|
13667
13706
|
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",
|
|
13668
13707
|
fill: "#6D7175"
|
|
13669
13708
|
}),
|
|
13670
|
-
/* @__PURE__ */ (0,
|
|
13709
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)("path", {
|
|
13671
13710
|
fillRule: "evenodd",
|
|
13672
13711
|
clipRule: "evenodd",
|
|
13673
13712
|
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",
|
|
13674
13713
|
fill: "#6D7175"
|
|
13675
13714
|
}),
|
|
13676
|
-
/* @__PURE__ */ (0,
|
|
13715
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)("path", {
|
|
13677
13716
|
fillRule: "evenodd",
|
|
13678
13717
|
clipRule: "evenodd",
|
|
13679
13718
|
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",
|
|
@@ -13687,16 +13726,16 @@ var ConfigIcon = React48.forwardRef(function(props, ref) {
|
|
|
13687
13726
|
});
|
|
13688
13727
|
// src/components/icons/solid/CaretDownIcon.tsx
|
|
13689
13728
|
var React49 = __toESM(require("react"), 1);
|
|
13690
|
-
var
|
|
13729
|
+
var import_jsx_runtime69 = require("react/jsx-runtime");
|
|
13691
13730
|
var CaretDownIcon = React49.forwardRef(function(props, ref) {
|
|
13692
|
-
return /* @__PURE__ */ (0,
|
|
13693
|
-
children: /* @__PURE__ */ (0,
|
|
13731
|
+
return /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(Icon, _object_spread_props(_object_spread({}, props), {
|
|
13732
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("svg", {
|
|
13694
13733
|
ref: ref,
|
|
13695
13734
|
className: "w-full h-full",
|
|
13696
13735
|
viewBox: "0 0 24 24",
|
|
13697
13736
|
fill: "currentColor",
|
|
13698
13737
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13699
|
-
children: /* @__PURE__ */ (0,
|
|
13738
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("path", {
|
|
13700
13739
|
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"
|
|
13701
13740
|
})
|
|
13702
13741
|
})
|
|
@@ -13704,20 +13743,20 @@ var CaretDownIcon = React49.forwardRef(function(props, ref) {
|
|
|
13704
13743
|
});
|
|
13705
13744
|
// src/components/icons/solid/CodeIcon.tsx
|
|
13706
13745
|
var React50 = __toESM(require("react"), 1);
|
|
13707
|
-
var
|
|
13746
|
+
var import_jsx_runtime70 = require("react/jsx-runtime");
|
|
13708
13747
|
var CodeIcon = React50.forwardRef(function(props, ref) {
|
|
13709
|
-
return /* @__PURE__ */ (0,
|
|
13710
|
-
children: /* @__PURE__ */ (0,
|
|
13748
|
+
return /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(Icon, _object_spread_props(_object_spread({}, props), {
|
|
13749
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)("svg", {
|
|
13711
13750
|
ref: ref,
|
|
13712
13751
|
className: "w-full h-full",
|
|
13713
13752
|
viewBox: "0 0 24 24",
|
|
13714
13753
|
fill: "currentColor",
|
|
13715
13754
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13716
13755
|
children: [
|
|
13717
|
-
/* @__PURE__ */ (0,
|
|
13756
|
+
/* @__PURE__ */ (0, import_jsx_runtime70.jsx)("path", {
|
|
13718
13757
|
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"
|
|
13719
13758
|
}),
|
|
13720
|
-
/* @__PURE__ */ (0,
|
|
13759
|
+
/* @__PURE__ */ (0, import_jsx_runtime70.jsx)("path", {
|
|
13721
13760
|
fillRule: "evenodd",
|
|
13722
13761
|
clipRule: "evenodd",
|
|
13723
13762
|
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"
|
|
@@ -13728,16 +13767,16 @@ var CodeIcon = React50.forwardRef(function(props, ref) {
|
|
|
13728
13767
|
});
|
|
13729
13768
|
// src/components/icons/solid/DragIcon.tsx
|
|
13730
13769
|
var React51 = __toESM(require("react"), 1);
|
|
13731
|
-
var
|
|
13770
|
+
var import_jsx_runtime71 = require("react/jsx-runtime");
|
|
13732
13771
|
var DragIcon = React51.forwardRef(function(props, ref) {
|
|
13733
|
-
return /* @__PURE__ */ (0,
|
|
13734
|
-
children: /* @__PURE__ */ (0,
|
|
13772
|
+
return /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(Icon, _object_spread_props(_object_spread({}, props), {
|
|
13773
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("svg", {
|
|
13735
13774
|
ref: ref,
|
|
13736
13775
|
className: "w-full h-full",
|
|
13737
13776
|
viewBox: "0 0 24 24",
|
|
13738
13777
|
fill: "currentColor",
|
|
13739
13778
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13740
|
-
children: /* @__PURE__ */ (0,
|
|
13779
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("path", {
|
|
13741
13780
|
fillRule: "evenodd",
|
|
13742
13781
|
clipRule: "evenodd",
|
|
13743
13782
|
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"
|
|
@@ -13747,21 +13786,21 @@ var DragIcon = React51.forwardRef(function(props, ref) {
|
|
|
13747
13786
|
});
|
|
13748
13787
|
// src/components/icons/solid/PhoneIcon.tsx
|
|
13749
13788
|
var React52 = __toESM(require("react"), 1);
|
|
13750
|
-
var
|
|
13789
|
+
var import_jsx_runtime72 = require("react/jsx-runtime");
|
|
13751
13790
|
var PhoneIcon = React52.forwardRef(function(props, ref) {
|
|
13752
|
-
return /* @__PURE__ */ (0,
|
|
13753
|
-
children: /* @__PURE__ */ (0,
|
|
13791
|
+
return /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(Icon, _object_spread_props(_object_spread({}, props), {
|
|
13792
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("svg", {
|
|
13754
13793
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13755
13794
|
width: "20",
|
|
13756
13795
|
height: "20",
|
|
13757
13796
|
viewBox: "0 0 20 20",
|
|
13758
13797
|
fill: "none",
|
|
13759
13798
|
children: [
|
|
13760
|
-
/* @__PURE__ */ (0,
|
|
13799
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsx)("path", {
|
|
13761
13800
|
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",
|
|
13762
13801
|
fill: "#3E5CFA"
|
|
13763
13802
|
}),
|
|
13764
|
-
/* @__PURE__ */ (0,
|
|
13803
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsx)("path", {
|
|
13765
13804
|
fillRule: "evenodd",
|
|
13766
13805
|
clipRule: "evenodd",
|
|
13767
13806
|
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",
|
|
@@ -13773,16 +13812,16 @@ var PhoneIcon = React52.forwardRef(function(props, ref) {
|
|
|
13773
13812
|
});
|
|
13774
13813
|
// src/components/icons/solid/RectangleGroupIcon.tsx
|
|
13775
13814
|
var React53 = __toESM(require("react"), 1);
|
|
13776
|
-
var
|
|
13815
|
+
var import_jsx_runtime73 = require("react/jsx-runtime");
|
|
13777
13816
|
var RectangleGroupIcon = React53.forwardRef(function(props, ref) {
|
|
13778
|
-
return /* @__PURE__ */ (0,
|
|
13779
|
-
children: /* @__PURE__ */ (0,
|
|
13817
|
+
return /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(Icon, _object_spread_props(_object_spread({}, props), {
|
|
13818
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("svg", {
|
|
13780
13819
|
ref: ref,
|
|
13781
13820
|
className: "w-full h-full",
|
|
13782
13821
|
viewBox: "0 0 24 24",
|
|
13783
13822
|
fill: "currentColor",
|
|
13784
13823
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13785
|
-
children: /* @__PURE__ */ (0,
|
|
13824
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("path", {
|
|
13786
13825
|
fillRule: "evenodd",
|
|
13787
13826
|
clipRule: "evenodd",
|
|
13788
13827
|
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"
|
|
@@ -13820,6 +13859,7 @@ var RectangleGroupIcon = React53.forwardRef(function(props, ref) {
|
|
|
13820
13859
|
CaretDownIcon: CaretDownIcon,
|
|
13821
13860
|
CheckCircleIcon: CheckCircleIcon,
|
|
13822
13861
|
Checkbox: Checkbox,
|
|
13862
|
+
Chips: Chips,
|
|
13823
13863
|
CodeIcon: CodeIcon,
|
|
13824
13864
|
Command: Command,
|
|
13825
13865
|
CommandDialog: CommandDialog,
|