@snapcall/design-system 1.15.0 → 1.16.0
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.d.mts +42 -7
- package/dist/index.d.ts +42 -7
- package/dist/index.js +557 -252
- package/dist/index.mjs +568 -274
- package/dist/tailwind.css +1 -1
- package/package.json +44 -41
package/dist/index.mjs
CHANGED
|
@@ -205,15 +205,6 @@ Button.displayName = "Button";
|
|
|
205
205
|
import { jsx as jsx4, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
206
206
|
var AlertDialog = AlertDialogPrimitive.Root;
|
|
207
207
|
var AlertDialogTrigger = AlertDialogPrimitive.Trigger;
|
|
208
|
-
var AlertDialogPortal = (_a) => {
|
|
209
|
-
var _b = _a, {
|
|
210
|
-
className
|
|
211
|
-
} = _b, props = __objRest(_b, [
|
|
212
|
-
"className"
|
|
213
|
-
]);
|
|
214
|
-
return /* @__PURE__ */ jsx4(AlertDialogPrimitive.Portal, __spreadValues({ className: cn(className) }, props));
|
|
215
|
-
};
|
|
216
|
-
AlertDialogPortal.displayName = AlertDialogPrimitive.Portal.displayName;
|
|
217
208
|
var AlertDialogOverlay = React3.forwardRef((_a, ref) => {
|
|
218
209
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
219
210
|
return /* @__PURE__ */ jsx4(
|
|
@@ -231,14 +222,14 @@ var AlertDialogOverlay = React3.forwardRef((_a, ref) => {
|
|
|
231
222
|
AlertDialogOverlay.displayName = AlertDialogPrimitive.Overlay.displayName;
|
|
232
223
|
var AlertDialogContent = React3.forwardRef((_a, ref) => {
|
|
233
224
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
234
|
-
return /* @__PURE__ */ jsxs2(
|
|
225
|
+
return /* @__PURE__ */ jsxs2(AlertDialogPrimitive.Portal, { children: [
|
|
235
226
|
/* @__PURE__ */ jsx4(AlertDialogOverlay, {}),
|
|
236
227
|
/* @__PURE__ */ jsx4(
|
|
237
228
|
AlertDialogPrimitive.Content,
|
|
238
229
|
__spreadValues({
|
|
239
230
|
ref,
|
|
240
231
|
className: cn(
|
|
241
|
-
"fixed left-[50%] top-[50%] z-50 grid w-full max-w-[400px] translate-x-[-50%] translate-y-[-50%] gap-6 border bg-white p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%]
|
|
232
|
+
"fixed left-[50%] top-[50%] z-50 grid w-full max-w-[400px] translate-x-[-50%] translate-y-[-50%] gap-6 border bg-white p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] rounded-xl md:w-full",
|
|
242
233
|
className
|
|
243
234
|
)
|
|
244
235
|
}, props)
|
|
@@ -255,10 +246,7 @@ var AlertDialogHeader = (_a) => {
|
|
|
255
246
|
return /* @__PURE__ */ jsx4(
|
|
256
247
|
"div",
|
|
257
248
|
__spreadValues({
|
|
258
|
-
className: cn(
|
|
259
|
-
"flex flex-col space-y-5 text-center sm:text-left",
|
|
260
|
-
className
|
|
261
|
-
)
|
|
249
|
+
className: cn("flex flex-col space-y-5 text-left", className)
|
|
262
250
|
}, props)
|
|
263
251
|
);
|
|
264
252
|
};
|
|
@@ -51793,13 +51781,209 @@ function Calendar(_a) {
|
|
|
51793
51781
|
}
|
|
51794
51782
|
Calendar.displayName = "Calendar";
|
|
51795
51783
|
|
|
51796
|
-
// src/components/
|
|
51784
|
+
// src/components/Carousel/Carousel.tsx
|
|
51797
51785
|
import * as React5 from "react";
|
|
51798
|
-
import
|
|
51799
|
-
import { jsx as jsx1230 } from "react/jsx-runtime";
|
|
51800
|
-
var
|
|
51786
|
+
import useEmblaCarousel from "embla-carousel-react";
|
|
51787
|
+
import { jsx as jsx1230, jsxs as jsxs1010 } from "react/jsx-runtime";
|
|
51788
|
+
var CarouselContext = React5.createContext(null);
|
|
51789
|
+
function useCarousel() {
|
|
51790
|
+
const context = React5.useContext(CarouselContext);
|
|
51791
|
+
if (!context) {
|
|
51792
|
+
throw new Error("useCarousel must be used within a <Carousel />");
|
|
51793
|
+
}
|
|
51794
|
+
return context;
|
|
51795
|
+
}
|
|
51796
|
+
var Carousel = React5.forwardRef(
|
|
51797
|
+
(_a, ref) => {
|
|
51798
|
+
var _b = _a, {
|
|
51799
|
+
orientation = "horizontal",
|
|
51800
|
+
opts,
|
|
51801
|
+
setApi,
|
|
51802
|
+
plugins,
|
|
51803
|
+
className,
|
|
51804
|
+
children
|
|
51805
|
+
} = _b, props = __objRest(_b, [
|
|
51806
|
+
"orientation",
|
|
51807
|
+
"opts",
|
|
51808
|
+
"setApi",
|
|
51809
|
+
"plugins",
|
|
51810
|
+
"className",
|
|
51811
|
+
"children"
|
|
51812
|
+
]);
|
|
51813
|
+
const [carouselRef, api] = useEmblaCarousel(
|
|
51814
|
+
__spreadProps(__spreadValues({}, opts), {
|
|
51815
|
+
axis: orientation === "horizontal" ? "x" : "y"
|
|
51816
|
+
}),
|
|
51817
|
+
plugins
|
|
51818
|
+
);
|
|
51819
|
+
const [canScrollPrev, setCanScrollPrev] = React5.useState(false);
|
|
51820
|
+
const [canScrollNext, setCanScrollNext] = React5.useState(false);
|
|
51821
|
+
const onSelect = React5.useCallback((api2) => {
|
|
51822
|
+
if (!api2) {
|
|
51823
|
+
return;
|
|
51824
|
+
}
|
|
51825
|
+
setCanScrollPrev(api2.canScrollPrev());
|
|
51826
|
+
setCanScrollNext(api2.canScrollNext());
|
|
51827
|
+
}, []);
|
|
51828
|
+
const scrollPrev = React5.useCallback(() => {
|
|
51829
|
+
api == null ? void 0 : api.scrollPrev();
|
|
51830
|
+
}, [api]);
|
|
51831
|
+
const scrollNext = React5.useCallback(() => {
|
|
51832
|
+
api == null ? void 0 : api.scrollNext();
|
|
51833
|
+
}, [api]);
|
|
51834
|
+
const handleKeyDown = React5.useCallback(
|
|
51835
|
+
(event) => {
|
|
51836
|
+
if (event.key === "ArrowLeft") {
|
|
51837
|
+
event.preventDefault();
|
|
51838
|
+
scrollPrev();
|
|
51839
|
+
} else if (event.key === "ArrowRight") {
|
|
51840
|
+
event.preventDefault();
|
|
51841
|
+
scrollNext();
|
|
51842
|
+
}
|
|
51843
|
+
},
|
|
51844
|
+
[scrollPrev, scrollNext]
|
|
51845
|
+
);
|
|
51846
|
+
React5.useEffect(() => {
|
|
51847
|
+
if (!api || !setApi) {
|
|
51848
|
+
return;
|
|
51849
|
+
}
|
|
51850
|
+
setApi(api);
|
|
51851
|
+
}, [api, setApi]);
|
|
51852
|
+
React5.useEffect(() => {
|
|
51853
|
+
if (!api) {
|
|
51854
|
+
return;
|
|
51855
|
+
}
|
|
51856
|
+
onSelect(api);
|
|
51857
|
+
api.on("reInit", onSelect);
|
|
51858
|
+
api.on("select", onSelect);
|
|
51859
|
+
return () => {
|
|
51860
|
+
api == null ? void 0 : api.off("select", onSelect);
|
|
51861
|
+
};
|
|
51862
|
+
}, [api, onSelect]);
|
|
51863
|
+
return /* @__PURE__ */ jsx1230(
|
|
51864
|
+
CarouselContext.Provider,
|
|
51865
|
+
{
|
|
51866
|
+
value: {
|
|
51867
|
+
carouselRef,
|
|
51868
|
+
api,
|
|
51869
|
+
opts,
|
|
51870
|
+
orientation: orientation || ((opts == null ? void 0 : opts.axis) === "y" ? "vertical" : "horizontal"),
|
|
51871
|
+
scrollPrev,
|
|
51872
|
+
scrollNext,
|
|
51873
|
+
canScrollPrev,
|
|
51874
|
+
canScrollNext
|
|
51875
|
+
},
|
|
51876
|
+
children: /* @__PURE__ */ jsx1230(
|
|
51877
|
+
"div",
|
|
51878
|
+
__spreadProps(__spreadValues({
|
|
51879
|
+
ref,
|
|
51880
|
+
onKeyDownCapture: handleKeyDown,
|
|
51881
|
+
className: cn("relative", className),
|
|
51882
|
+
role: "region",
|
|
51883
|
+
"aria-roledescription": "carousel"
|
|
51884
|
+
}, props), {
|
|
51885
|
+
children
|
|
51886
|
+
})
|
|
51887
|
+
)
|
|
51888
|
+
}
|
|
51889
|
+
);
|
|
51890
|
+
}
|
|
51891
|
+
);
|
|
51892
|
+
Carousel.displayName = "Carousel";
|
|
51893
|
+
var CarouselContent = React5.forwardRef((_a, ref) => {
|
|
51894
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
51895
|
+
const { carouselRef, orientation } = useCarousel();
|
|
51896
|
+
return /* @__PURE__ */ jsx1230("div", { ref: carouselRef, className: "overflow-hidden", children: /* @__PURE__ */ jsx1230(
|
|
51897
|
+
"div",
|
|
51898
|
+
__spreadValues({
|
|
51899
|
+
ref,
|
|
51900
|
+
className: cn(
|
|
51901
|
+
"flex",
|
|
51902
|
+
orientation === "horizontal" ? "-ml-4" : "-mt-4 flex-col",
|
|
51903
|
+
className
|
|
51904
|
+
)
|
|
51905
|
+
}, props)
|
|
51906
|
+
) });
|
|
51907
|
+
});
|
|
51908
|
+
CarouselContent.displayName = "CarouselContent";
|
|
51909
|
+
var CarouselItem = React5.forwardRef((_a, ref) => {
|
|
51801
51910
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
51911
|
+
const { orientation } = useCarousel();
|
|
51802
51912
|
return /* @__PURE__ */ jsx1230(
|
|
51913
|
+
"div",
|
|
51914
|
+
__spreadValues({
|
|
51915
|
+
ref,
|
|
51916
|
+
role: "group",
|
|
51917
|
+
"aria-roledescription": "slide",
|
|
51918
|
+
className: cn(
|
|
51919
|
+
"min-w-0 shrink-0 grow-0 basis-full",
|
|
51920
|
+
orientation === "horizontal" ? "pl-4" : "pt-4",
|
|
51921
|
+
className
|
|
51922
|
+
)
|
|
51923
|
+
}, props)
|
|
51924
|
+
);
|
|
51925
|
+
});
|
|
51926
|
+
CarouselItem.displayName = "CarouselItem";
|
|
51927
|
+
var CarouselPrevious = React5.forwardRef((_a, ref) => {
|
|
51928
|
+
var _b = _a, { className, variant = "outline" } = _b, props = __objRest(_b, ["className", "variant"]);
|
|
51929
|
+
const { orientation, scrollPrev, canScrollPrev } = useCarousel();
|
|
51930
|
+
return /* @__PURE__ */ jsxs1010(
|
|
51931
|
+
Button,
|
|
51932
|
+
__spreadProps(__spreadValues({
|
|
51933
|
+
ref,
|
|
51934
|
+
variant,
|
|
51935
|
+
size: "sm",
|
|
51936
|
+
icon: true,
|
|
51937
|
+
className: cn(
|
|
51938
|
+
"absolute",
|
|
51939
|
+
orientation === "horizontal" ? "-left-12 top-1/2 -translate-y-1/2" : "-top-12 left-1/2 -translate-x-1/2",
|
|
51940
|
+
className
|
|
51941
|
+
),
|
|
51942
|
+
disabled: !canScrollPrev,
|
|
51943
|
+
onClick: scrollPrev
|
|
51944
|
+
}, props), {
|
|
51945
|
+
children: [
|
|
51946
|
+
orientation === "horizontal" ? /* @__PURE__ */ jsx1230(ArrowLeftIcon, { size: 16 }) : /* @__PURE__ */ jsx1230(ArrowUpIcon, { size: 16 }),
|
|
51947
|
+
/* @__PURE__ */ jsx1230("span", { className: "sr-only", children: "Previous slide" })
|
|
51948
|
+
]
|
|
51949
|
+
})
|
|
51950
|
+
);
|
|
51951
|
+
});
|
|
51952
|
+
CarouselPrevious.displayName = "CarouselPrevious";
|
|
51953
|
+
var CarouselNext = React5.forwardRef((_a, ref) => {
|
|
51954
|
+
var _b = _a, { className, variant = "outline" } = _b, props = __objRest(_b, ["className", "variant"]);
|
|
51955
|
+
const { orientation, scrollNext, canScrollNext } = useCarousel();
|
|
51956
|
+
return /* @__PURE__ */ jsxs1010(
|
|
51957
|
+
Button,
|
|
51958
|
+
__spreadProps(__spreadValues({
|
|
51959
|
+
ref,
|
|
51960
|
+
variant,
|
|
51961
|
+
size: "sm",
|
|
51962
|
+
icon: true,
|
|
51963
|
+
className: cn(
|
|
51964
|
+
"absolute",
|
|
51965
|
+
orientation === "horizontal" ? "-right-12 top-1/2 -translate-y-1/2" : "-bottom-12 left-1/2 -translate-x-1/2",
|
|
51966
|
+
className
|
|
51967
|
+
),
|
|
51968
|
+
disabled: !canScrollNext,
|
|
51969
|
+
onClick: scrollNext
|
|
51970
|
+
}, props), {
|
|
51971
|
+
children: [
|
|
51972
|
+
orientation === "horizontal" ? /* @__PURE__ */ jsx1230(ArrowRightIcon, { size: 16 }) : /* @__PURE__ */ jsx1230(ArrowDownIcon, { size: 16 }),
|
|
51973
|
+
/* @__PURE__ */ jsx1230("span", { className: "sr-only", children: "Next slide" })
|
|
51974
|
+
]
|
|
51975
|
+
})
|
|
51976
|
+
);
|
|
51977
|
+
});
|
|
51978
|
+
CarouselNext.displayName = "CarouselNext";
|
|
51979
|
+
|
|
51980
|
+
// src/components/Checkbox/Checkbox.tsx
|
|
51981
|
+
import * as React6 from "react";
|
|
51982
|
+
import * as CheckboxPrimitive from "@radix-ui/react-checkbox";
|
|
51983
|
+
import { jsx as jsx1231 } from "react/jsx-runtime";
|
|
51984
|
+
var Checkbox = React6.forwardRef((_a, ref) => {
|
|
51985
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
51986
|
+
return /* @__PURE__ */ jsx1231(
|
|
51803
51987
|
CheckboxPrimitive.Root,
|
|
51804
51988
|
__spreadProps(__spreadValues({
|
|
51805
51989
|
className: cn(
|
|
@@ -51808,20 +51992,20 @@ var Checkbox = React5.forwardRef((_a, ref) => {
|
|
|
51808
51992
|
)
|
|
51809
51993
|
}, props), {
|
|
51810
51994
|
ref,
|
|
51811
|
-
children: /* @__PURE__ */
|
|
51995
|
+
children: /* @__PURE__ */ jsx1231(CheckboxPrimitive.Indicator, { children: /* @__PURE__ */ jsx1231(CheckIcon, { size: 10, className: "text-white" }) })
|
|
51812
51996
|
})
|
|
51813
51997
|
);
|
|
51814
51998
|
});
|
|
51815
51999
|
Checkbox.displayName = CheckboxPrimitive.Root.displayName;
|
|
51816
52000
|
|
|
51817
52001
|
// src/components/Command/Command.tsx
|
|
51818
|
-
import * as
|
|
51819
|
-
import { useState } from "react";
|
|
52002
|
+
import * as React7 from "react";
|
|
52003
|
+
import { useState as useState2 } from "react";
|
|
51820
52004
|
import { Command as CommandPrimitive } from "cmdk";
|
|
51821
|
-
import { jsx as
|
|
51822
|
-
var Command =
|
|
52005
|
+
import { jsx as jsx1232, jsxs as jsxs1011 } from "react/jsx-runtime";
|
|
52006
|
+
var Command = React7.forwardRef((_a, ref) => {
|
|
51823
52007
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
51824
|
-
return /* @__PURE__ */
|
|
52008
|
+
return /* @__PURE__ */ jsx1232(
|
|
51825
52009
|
CommandPrimitive,
|
|
51826
52010
|
__spreadValues({
|
|
51827
52011
|
ref,
|
|
@@ -51833,21 +52017,21 @@ var Command = React6.forwardRef((_a, ref) => {
|
|
|
51833
52017
|
);
|
|
51834
52018
|
});
|
|
51835
52019
|
Command.displayName = CommandPrimitive.displayName;
|
|
51836
|
-
var CommandInput =
|
|
52020
|
+
var CommandInput = React7.forwardRef((_a, ref) => {
|
|
51837
52021
|
var _b = _a, { className, value, onValueChange } = _b, props = __objRest(_b, ["className", "value", "onValueChange"]);
|
|
51838
|
-
const [val, setVal] =
|
|
52022
|
+
const [val, setVal] = useState2(value);
|
|
51839
52023
|
const clearInput = () => {
|
|
51840
52024
|
setVal("");
|
|
51841
52025
|
onValueChange && onValueChange("");
|
|
51842
52026
|
};
|
|
51843
|
-
return /* @__PURE__ */
|
|
52027
|
+
return /* @__PURE__ */ jsxs1011(
|
|
51844
52028
|
"div",
|
|
51845
52029
|
{
|
|
51846
52030
|
className: "flex items-center gap-2 px-3 border-b border-gray-200",
|
|
51847
52031
|
"cmdk-input-wrapper": "",
|
|
51848
52032
|
children: [
|
|
51849
|
-
/* @__PURE__ */
|
|
51850
|
-
/* @__PURE__ */
|
|
52033
|
+
/* @__PURE__ */ jsx1232(SearchMdIcon, { size: 16, className: "text-gray-900 shrink-0" }),
|
|
52034
|
+
/* @__PURE__ */ jsx1232(
|
|
51851
52035
|
CommandPrimitive.Input,
|
|
51852
52036
|
__spreadValues({
|
|
51853
52037
|
ref,
|
|
@@ -51862,7 +52046,7 @@ var CommandInput = React6.forwardRef((_a, ref) => {
|
|
|
51862
52046
|
}
|
|
51863
52047
|
}, props)
|
|
51864
52048
|
),
|
|
51865
|
-
value !== "" && /* @__PURE__ */
|
|
52049
|
+
value !== "" && /* @__PURE__ */ jsx1232(Button, { variant: "ghostGray", size: "xs", icon: true, className: "-mr-2", children: /* @__PURE__ */ jsx1232(
|
|
51866
52050
|
XCloseIcon,
|
|
51867
52051
|
{
|
|
51868
52052
|
size: "16",
|
|
@@ -51877,9 +52061,9 @@ var CommandInput = React6.forwardRef((_a, ref) => {
|
|
|
51877
52061
|
);
|
|
51878
52062
|
});
|
|
51879
52063
|
CommandInput.displayName = CommandPrimitive.Input.displayName;
|
|
51880
|
-
var CommandList =
|
|
52064
|
+
var CommandList = React7.forwardRef((_a, ref) => {
|
|
51881
52065
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
51882
|
-
return /* @__PURE__ */
|
|
52066
|
+
return /* @__PURE__ */ jsx1232(
|
|
51883
52067
|
CommandPrimitive.List,
|
|
51884
52068
|
__spreadValues({
|
|
51885
52069
|
ref,
|
|
@@ -51891,33 +52075,33 @@ var CommandList = React6.forwardRef((_a, ref) => {
|
|
|
51891
52075
|
);
|
|
51892
52076
|
});
|
|
51893
52077
|
CommandList.displayName = CommandPrimitive.List.displayName;
|
|
51894
|
-
var CommandEmpty =
|
|
52078
|
+
var CommandEmpty = React7.forwardRef((_a, ref) => {
|
|
51895
52079
|
var _b = _a, { children, title, description } = _b, props = __objRest(_b, ["children", "title", "description"]);
|
|
51896
|
-
return /* @__PURE__ */
|
|
52080
|
+
return /* @__PURE__ */ jsxs1011(
|
|
51897
52081
|
CommandPrimitive.Empty,
|
|
51898
52082
|
__spreadProps(__spreadValues({
|
|
51899
52083
|
ref,
|
|
51900
52084
|
className: "flex flex-col gap-4 p-4 text-center"
|
|
51901
52085
|
}, props), {
|
|
51902
52086
|
children: [
|
|
51903
|
-
(title || description) && /* @__PURE__ */
|
|
51904
|
-
title && /* @__PURE__ */
|
|
51905
|
-
description && /* @__PURE__ */
|
|
52087
|
+
(title || description) && /* @__PURE__ */ jsxs1011("div", { className: "flex flex-col gap-1", children: [
|
|
52088
|
+
title && /* @__PURE__ */ jsx1232("span", { className: "text-sm font-medium text-gray-1000", children: title }),
|
|
52089
|
+
description && /* @__PURE__ */ jsx1232("span", { className: "text-sm font-normal text-gray-700", children: description })
|
|
51906
52090
|
] }),
|
|
51907
|
-
children && /* @__PURE__ */
|
|
52091
|
+
children && /* @__PURE__ */ jsx1232("div", { children })
|
|
51908
52092
|
]
|
|
51909
52093
|
})
|
|
51910
52094
|
);
|
|
51911
52095
|
});
|
|
51912
52096
|
CommandEmpty.displayName = CommandPrimitive.Empty.displayName;
|
|
51913
|
-
var CommandLoading =
|
|
52097
|
+
var CommandLoading = React7.forwardRef((_a, ref) => {
|
|
51914
52098
|
var _b = _a, { children } = _b, props = __objRest(_b, ["children"]);
|
|
51915
|
-
return /* @__PURE__ */
|
|
52099
|
+
return /* @__PURE__ */ jsx1232(CommandPrimitive.Loading, __spreadProps(__spreadValues({ ref }, props), { children: /* @__PURE__ */ jsx1232("div", { className: "flex justify-center p-4 text-center", children: /* @__PURE__ */ jsx1232(SpinnerIcon, { className: "text-blue-700 animate-spin" }) }) }));
|
|
51916
52100
|
});
|
|
51917
52101
|
CommandLoading.displayName = CommandPrimitive.Loading.displayName;
|
|
51918
|
-
var CommandGroup =
|
|
52102
|
+
var CommandGroup = React7.forwardRef((_a, ref) => {
|
|
51919
52103
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
51920
|
-
return /* @__PURE__ */
|
|
52104
|
+
return /* @__PURE__ */ jsx1232(
|
|
51921
52105
|
CommandPrimitive.Group,
|
|
51922
52106
|
__spreadValues({
|
|
51923
52107
|
ref,
|
|
@@ -51929,9 +52113,9 @@ var CommandGroup = React6.forwardRef((_a, ref) => {
|
|
|
51929
52113
|
);
|
|
51930
52114
|
});
|
|
51931
52115
|
CommandGroup.displayName = CommandPrimitive.Group.displayName;
|
|
51932
|
-
var CommandSeparator =
|
|
52116
|
+
var CommandSeparator = React7.forwardRef((_a, ref) => {
|
|
51933
52117
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
51934
|
-
return /* @__PURE__ */
|
|
52118
|
+
return /* @__PURE__ */ jsx1232(
|
|
51935
52119
|
CommandPrimitive.Separator,
|
|
51936
52120
|
__spreadValues({
|
|
51937
52121
|
ref,
|
|
@@ -51940,10 +52124,10 @@ var CommandSeparator = React6.forwardRef((_a, ref) => {
|
|
|
51940
52124
|
);
|
|
51941
52125
|
});
|
|
51942
52126
|
CommandSeparator.displayName = CommandPrimitive.Separator.displayName;
|
|
51943
|
-
var CommandItem =
|
|
52127
|
+
var CommandItem = React7.forwardRef(
|
|
51944
52128
|
(_a, ref) => {
|
|
51945
52129
|
var _b = _a, { icon, checkbox, className, checked, children, description } = _b, props = __objRest(_b, ["icon", "checkbox", "className", "checked", "children", "description"]);
|
|
51946
|
-
return /* @__PURE__ */
|
|
52130
|
+
return /* @__PURE__ */ jsxs1011(
|
|
51947
52131
|
CommandPrimitive.Item,
|
|
51948
52132
|
__spreadProps(__spreadValues({
|
|
51949
52133
|
ref,
|
|
@@ -51953,15 +52137,15 @@ var CommandItem = React6.forwardRef(
|
|
|
51953
52137
|
)
|
|
51954
52138
|
}, props), {
|
|
51955
52139
|
children: [
|
|
51956
|
-
/* @__PURE__ */
|
|
51957
|
-
checkbox && /* @__PURE__ */
|
|
51958
|
-
icon &&
|
|
52140
|
+
/* @__PURE__ */ jsxs1011("div", { className: "flex items-center gap-2", children: [
|
|
52141
|
+
checkbox && /* @__PURE__ */ jsx1232(Checkbox, { checked }),
|
|
52142
|
+
icon && React7.cloneElement(icon, {
|
|
51959
52143
|
size: 16,
|
|
51960
52144
|
className: cn("flex-shrink-0", icon.props.className)
|
|
51961
52145
|
}),
|
|
51962
52146
|
children
|
|
51963
52147
|
] }),
|
|
51964
|
-
description && /* @__PURE__ */
|
|
52148
|
+
description && /* @__PURE__ */ jsx1232("div", { className: "text-xs text-gray-700", children: description })
|
|
51965
52149
|
]
|
|
51966
52150
|
})
|
|
51967
52151
|
);
|
|
@@ -51970,9 +52154,9 @@ var CommandItem = React6.forwardRef(
|
|
|
51970
52154
|
CommandItem.displayName = CommandPrimitive.Item.displayName;
|
|
51971
52155
|
|
|
51972
52156
|
// src/components/CreatableSelect/CreatableSelect.tsx
|
|
51973
|
-
import { useCallback, useRef, useState as
|
|
52157
|
+
import { useCallback as useCallback2, useRef, useState as useState3 } from "react";
|
|
51974
52158
|
import { Command as CommandPrimitive2 } from "cmdk";
|
|
51975
|
-
import { jsx as
|
|
52159
|
+
import { jsx as jsx1233, jsxs as jsxs1012 } from "react/jsx-runtime";
|
|
51976
52160
|
function CreatableSelect(_a) {
|
|
51977
52161
|
var _b = _a, {
|
|
51978
52162
|
isLoading,
|
|
@@ -51998,15 +52182,15 @@ function CreatableSelect(_a) {
|
|
|
51998
52182
|
"getItemProps"
|
|
51999
52183
|
]);
|
|
52000
52184
|
const inputRef = useRef(null);
|
|
52001
|
-
const [open, setOpen] =
|
|
52002
|
-
const [inputValue, setInputValue] =
|
|
52003
|
-
const handleUnselect =
|
|
52185
|
+
const [open, setOpen] = useState3(false);
|
|
52186
|
+
const [inputValue, setInputValue] = useState3("");
|
|
52187
|
+
const handleUnselect = useCallback2(
|
|
52004
52188
|
(selected) => {
|
|
52005
52189
|
onValueChanged(value.filter((s) => s !== selected));
|
|
52006
52190
|
},
|
|
52007
52191
|
[onValueChanged, value]
|
|
52008
52192
|
);
|
|
52009
|
-
const handleKeyDown =
|
|
52193
|
+
const handleKeyDown = useCallback2(
|
|
52010
52194
|
(e) => {
|
|
52011
52195
|
const input = inputRef.current;
|
|
52012
52196
|
if (input) {
|
|
@@ -52037,13 +52221,13 @@ function CreatableSelect(_a) {
|
|
|
52037
52221
|
if (!inputValue && !items && open) {
|
|
52038
52222
|
setOpen(false);
|
|
52039
52223
|
}
|
|
52040
|
-
return /* @__PURE__ */
|
|
52224
|
+
return /* @__PURE__ */ jsxs1012(
|
|
52041
52225
|
Command,
|
|
52042
52226
|
{
|
|
52043
52227
|
onKeyDown: handleKeyDown,
|
|
52044
52228
|
className: "overflow-visible bg-transparent",
|
|
52045
52229
|
children: [
|
|
52046
|
-
/* @__PURE__ */
|
|
52230
|
+
/* @__PURE__ */ jsx1233(
|
|
52047
52231
|
"div",
|
|
52048
52232
|
{
|
|
52049
52233
|
className: cn(
|
|
@@ -52052,10 +52236,10 @@ function CreatableSelect(_a) {
|
|
|
52052
52236
|
"border-red-700 focus-within:border-gray-200 focus-within:outline-red-700": !!props["data-has-error"]
|
|
52053
52237
|
}
|
|
52054
52238
|
),
|
|
52055
|
-
children: /* @__PURE__ */
|
|
52056
|
-
multiple && value.map((it) => /* @__PURE__ */
|
|
52239
|
+
children: /* @__PURE__ */ jsxs1012("div", { className: "flex flex-wrap w-full gap-1", children: [
|
|
52240
|
+
multiple && value.map((it) => /* @__PURE__ */ jsxs1012(Badge, { color: "blue", children: [
|
|
52057
52241
|
it,
|
|
52058
|
-
/* @__PURE__ */
|
|
52242
|
+
/* @__PURE__ */ jsx1233(
|
|
52059
52243
|
"button",
|
|
52060
52244
|
{
|
|
52061
52245
|
className: "ml-1 rounded-full outline-none ring-offset-background focus:ring-2 focus:ring-ring focus:ring-offset-2",
|
|
@@ -52065,12 +52249,12 @@ function CreatableSelect(_a) {
|
|
|
52065
52249
|
e.stopPropagation();
|
|
52066
52250
|
},
|
|
52067
52251
|
onClick: () => handleUnselect(it),
|
|
52068
|
-
children: /* @__PURE__ */
|
|
52252
|
+
children: /* @__PURE__ */ jsx1233(XCloseIcon, { size: 12, className: "text-current" })
|
|
52069
52253
|
}
|
|
52070
52254
|
)
|
|
52071
52255
|
] }, it)),
|
|
52072
|
-
!multiple && value.map((it) => /* @__PURE__ */
|
|
52073
|
-
/* @__PURE__ */
|
|
52256
|
+
!multiple && value.map((it) => /* @__PURE__ */ jsx1233("span", { className: "text-sm", children: it }, it)),
|
|
52257
|
+
/* @__PURE__ */ jsx1233(
|
|
52074
52258
|
CommandPrimitive2.Input,
|
|
52075
52259
|
{
|
|
52076
52260
|
ref: inputRef,
|
|
@@ -52100,10 +52284,10 @@ function CreatableSelect(_a) {
|
|
|
52100
52284
|
] })
|
|
52101
52285
|
}
|
|
52102
52286
|
),
|
|
52103
|
-
/* @__PURE__ */
|
|
52287
|
+
/* @__PURE__ */ jsx1233("div", { className: "relative", children: open && /* @__PURE__ */ jsx1233("div", { className: "absolute z-50 w-full bg-white border rounded-md shadow-md outline-none top-2 text-gray-1000 animate-in", children: isLoading ? /* @__PURE__ */ jsx1233(CommandLoading, {}) : selectables && selectables.length < 1 ? /* @__PURE__ */ jsx1233("span", { className: "flex flex-col gap-4 p-4 text-center text-gray-700", children: nothingFoundLabel }) : /* @__PURE__ */ jsxs1012(CommandList, { className: "h-full max-h-[180px] overflow-auto", children: [
|
|
52104
52288
|
items && (selectables == null ? void 0 : selectables.map((it) => {
|
|
52105
52289
|
const itemProps = getItemProps(it);
|
|
52106
|
-
return /* @__PURE__ */
|
|
52290
|
+
return /* @__PURE__ */ jsx1233(
|
|
52107
52291
|
CommandItem,
|
|
52108
52292
|
__spreadValues({
|
|
52109
52293
|
onMouseDown: (e) => {
|
|
@@ -52121,7 +52305,7 @@ function CreatableSelect(_a) {
|
|
|
52121
52305
|
it[valueKey]
|
|
52122
52306
|
);
|
|
52123
52307
|
})),
|
|
52124
|
-
inputValue && !value.includes(inputValue) && /* @__PURE__ */
|
|
52308
|
+
inputValue && !value.includes(inputValue) && /* @__PURE__ */ jsx1233(
|
|
52125
52309
|
CommandItem,
|
|
52126
52310
|
{
|
|
52127
52311
|
value: inputValue,
|
|
@@ -52144,23 +52328,14 @@ function CreatableSelect(_a) {
|
|
|
52144
52328
|
}
|
|
52145
52329
|
|
|
52146
52330
|
// src/components/Dialog/Dialog.tsx
|
|
52147
|
-
import * as
|
|
52331
|
+
import * as React9 from "react";
|
|
52148
52332
|
import * as DialogPrimitive from "@radix-ui/react-dialog";
|
|
52149
|
-
import { jsx as
|
|
52333
|
+
import { jsx as jsx1234, jsxs as jsxs1013 } from "react/jsx-runtime";
|
|
52150
52334
|
var Dialog = DialogPrimitive.Root;
|
|
52151
52335
|
var DialogTrigger = DialogPrimitive.Trigger;
|
|
52152
|
-
var
|
|
52153
|
-
var _b = _a, {
|
|
52154
|
-
className
|
|
52155
|
-
} = _b, props = __objRest(_b, [
|
|
52156
|
-
"className"
|
|
52157
|
-
]);
|
|
52158
|
-
return /* @__PURE__ */ jsx1233(DialogPrimitive.Portal, __spreadValues({ className: cn(className) }, props));
|
|
52159
|
-
};
|
|
52160
|
-
DialogPortal.displayName = DialogPrimitive.Portal.displayName;
|
|
52161
|
-
var DialogOverlay = React8.forwardRef((_a, ref) => {
|
|
52336
|
+
var DialogOverlay = React9.forwardRef((_a, ref) => {
|
|
52162
52337
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
52163
|
-
return /* @__PURE__ */
|
|
52338
|
+
return /* @__PURE__ */ jsx1234(
|
|
52164
52339
|
DialogPrimitive.Overlay,
|
|
52165
52340
|
__spreadValues({
|
|
52166
52341
|
ref,
|
|
@@ -52172,11 +52347,11 @@ var DialogOverlay = React8.forwardRef((_a, ref) => {
|
|
|
52172
52347
|
);
|
|
52173
52348
|
});
|
|
52174
52349
|
DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
|
|
52175
|
-
var DialogContent =
|
|
52350
|
+
var DialogContent = React9.forwardRef((_a, ref) => {
|
|
52176
52351
|
var _b = _a, { className, children, bottomSheet = false } = _b, props = __objRest(_b, ["className", "children", "bottomSheet"]);
|
|
52177
|
-
return /* @__PURE__ */
|
|
52178
|
-
/* @__PURE__ */
|
|
52179
|
-
/* @__PURE__ */
|
|
52352
|
+
return /* @__PURE__ */ jsxs1013(DialogPrimitive.Portal, { children: [
|
|
52353
|
+
/* @__PURE__ */ jsx1234(DialogOverlay, {}),
|
|
52354
|
+
/* @__PURE__ */ jsxs1013(
|
|
52180
52355
|
DialogPrimitive.Content,
|
|
52181
52356
|
__spreadProps(__spreadValues({
|
|
52182
52357
|
ref,
|
|
@@ -52186,14 +52361,14 @@ var DialogContent = React8.forwardRef((_a, ref) => {
|
|
|
52186
52361
|
"top-auto bottom-0 translate-y-0 ease-[cubic-bezier(0.075,0.82,0.165,1)] data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=open]:slide-in-from-bottom-[100%] data-[state=closed]:slide-out-to-bottom-[100%] data-[state=open]:slide-in-from-left-[50%] data-[state=closed]:slide-out-to-left-[50%] rounded-t-3xl": bottomSheet
|
|
52187
52362
|
},
|
|
52188
52363
|
{
|
|
52189
|
-
"duration-200 rounded-
|
|
52364
|
+
"duration-200 rounded-xl data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%]": !bottomSheet
|
|
52190
52365
|
},
|
|
52191
52366
|
className
|
|
52192
52367
|
)
|
|
52193
52368
|
}, props), {
|
|
52194
52369
|
children: [
|
|
52195
52370
|
children,
|
|
52196
|
-
/* @__PURE__ */
|
|
52371
|
+
/* @__PURE__ */ jsxs1013(
|
|
52197
52372
|
DialogPrimitive.Close,
|
|
52198
52373
|
{
|
|
52199
52374
|
className: cn(
|
|
@@ -52202,8 +52377,8 @@ var DialogContent = React8.forwardRef((_a, ref) => {
|
|
|
52202
52377
|
"absolute right-6 top-6"
|
|
52203
52378
|
),
|
|
52204
52379
|
children: [
|
|
52205
|
-
/* @__PURE__ */
|
|
52206
|
-
/* @__PURE__ */
|
|
52380
|
+
/* @__PURE__ */ jsx1234(XCloseIcon, { className: "w-3 h-3" }),
|
|
52381
|
+
/* @__PURE__ */ jsx1234("span", { className: "sr-only", children: "Close" })
|
|
52207
52382
|
]
|
|
52208
52383
|
}
|
|
52209
52384
|
)
|
|
@@ -52219,13 +52394,10 @@ var DialogHeader = (_a) => {
|
|
|
52219
52394
|
} = _b, props = __objRest(_b, [
|
|
52220
52395
|
"className"
|
|
52221
52396
|
]);
|
|
52222
|
-
return /* @__PURE__ */
|
|
52397
|
+
return /* @__PURE__ */ jsx1234(
|
|
52223
52398
|
"div",
|
|
52224
52399
|
__spreadValues({
|
|
52225
|
-
className: cn(
|
|
52226
|
-
"flex flex-col space-y-1.5 text-center sm:text-left",
|
|
52227
|
-
className
|
|
52228
|
-
)
|
|
52400
|
+
className: cn("flex flex-col space-y-1.5 text-left", className)
|
|
52229
52401
|
}, props)
|
|
52230
52402
|
);
|
|
52231
52403
|
};
|
|
@@ -52236,7 +52408,7 @@ var DialogFooter = (_a) => {
|
|
|
52236
52408
|
} = _b, props = __objRest(_b, [
|
|
52237
52409
|
"className"
|
|
52238
52410
|
]);
|
|
52239
|
-
return /* @__PURE__ */
|
|
52411
|
+
return /* @__PURE__ */ jsx1234(
|
|
52240
52412
|
"div",
|
|
52241
52413
|
__spreadValues({
|
|
52242
52414
|
className: cn(
|
|
@@ -52247,9 +52419,9 @@ var DialogFooter = (_a) => {
|
|
|
52247
52419
|
);
|
|
52248
52420
|
};
|
|
52249
52421
|
DialogFooter.displayName = "DialogFooter";
|
|
52250
|
-
var DialogTitle =
|
|
52422
|
+
var DialogTitle = React9.forwardRef((_a, ref) => {
|
|
52251
52423
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
52252
|
-
return /* @__PURE__ */
|
|
52424
|
+
return /* @__PURE__ */ jsx1234(
|
|
52253
52425
|
DialogPrimitive.Title,
|
|
52254
52426
|
__spreadValues({
|
|
52255
52427
|
ref,
|
|
@@ -52258,9 +52430,9 @@ var DialogTitle = React8.forwardRef((_a, ref) => {
|
|
|
52258
52430
|
);
|
|
52259
52431
|
});
|
|
52260
52432
|
DialogTitle.displayName = DialogPrimitive.Title.displayName;
|
|
52261
|
-
var DialogDescription =
|
|
52433
|
+
var DialogDescription = React9.forwardRef((_a, ref) => {
|
|
52262
52434
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
52263
|
-
return /* @__PURE__ */
|
|
52435
|
+
return /* @__PURE__ */ jsx1234(
|
|
52264
52436
|
DialogPrimitive.Description,
|
|
52265
52437
|
__spreadValues({
|
|
52266
52438
|
ref,
|
|
@@ -52271,9 +52443,9 @@ var DialogDescription = React8.forwardRef((_a, ref) => {
|
|
|
52271
52443
|
DialogDescription.displayName = DialogPrimitive.Description.displayName;
|
|
52272
52444
|
|
|
52273
52445
|
// src/components/DropdownMenu/DropdownMenu.tsx
|
|
52274
|
-
import
|
|
52446
|
+
import React10 from "react";
|
|
52275
52447
|
import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
|
|
52276
|
-
import { jsx as
|
|
52448
|
+
import { jsx as jsx1235, jsxs as jsxs1014 } from "react/jsx-runtime";
|
|
52277
52449
|
var DropdownMenu = DropdownMenuPrimitive.Root;
|
|
52278
52450
|
var DropdownMenuItemBase = ({
|
|
52279
52451
|
icon,
|
|
@@ -52285,7 +52457,7 @@ var DropdownMenuItemBase = ({
|
|
|
52285
52457
|
description,
|
|
52286
52458
|
hasSubNav
|
|
52287
52459
|
}) => {
|
|
52288
|
-
return /* @__PURE__ */
|
|
52460
|
+
return /* @__PURE__ */ jsxs1014(
|
|
52289
52461
|
"div",
|
|
52290
52462
|
{
|
|
52291
52463
|
className: cn(
|
|
@@ -52294,9 +52466,9 @@ var DropdownMenuItemBase = ({
|
|
|
52294
52466
|
className
|
|
52295
52467
|
),
|
|
52296
52468
|
children: [
|
|
52297
|
-
/* @__PURE__ */
|
|
52298
|
-
checkbox && /* @__PURE__ */
|
|
52299
|
-
icon &&
|
|
52469
|
+
/* @__PURE__ */ jsxs1014("div", { className: "flex items-center gap-2", children: [
|
|
52470
|
+
checkbox && /* @__PURE__ */ jsx1235(Checkbox, { checked }),
|
|
52471
|
+
icon && React10.cloneElement(icon, {
|
|
52300
52472
|
size: 16,
|
|
52301
52473
|
className: cn(
|
|
52302
52474
|
"flex-shrink-0",
|
|
@@ -52304,15 +52476,15 @@ var DropdownMenuItemBase = ({
|
|
|
52304
52476
|
icon.props.className
|
|
52305
52477
|
)
|
|
52306
52478
|
}),
|
|
52307
|
-
/* @__PURE__ */
|
|
52308
|
-
hasSubNav && /* @__PURE__ */
|
|
52479
|
+
/* @__PURE__ */ jsx1235("span", { className: "flex gap-2 grow", children }),
|
|
52480
|
+
hasSubNav && /* @__PURE__ */ jsx1235("div", { className: "inline-flex items-center justify-end", children: /* @__PURE__ */ jsx1235(ChevronRightIcon, { size: 16, className: "text-gray-1000" }) })
|
|
52309
52481
|
] }),
|
|
52310
|
-
description && /* @__PURE__ */
|
|
52482
|
+
description && /* @__PURE__ */ jsx1235("div", { className: "text-xs text-gray-700", children: description })
|
|
52311
52483
|
]
|
|
52312
52484
|
}
|
|
52313
52485
|
);
|
|
52314
52486
|
};
|
|
52315
|
-
var DropdownMenuCheckboxItem =
|
|
52487
|
+
var DropdownMenuCheckboxItem = React10.forwardRef(
|
|
52316
52488
|
(_a, forwardedRef) => {
|
|
52317
52489
|
var _b = _a, { className, children, checked, icon, description, destructive } = _b, props = __objRest(_b, ["className", "children", "checked", "icon", "description", "destructive"]);
|
|
52318
52490
|
const extraProps = {
|
|
@@ -52322,20 +52494,20 @@ var DropdownMenuCheckboxItem = React9.forwardRef(
|
|
|
52322
52494
|
checked,
|
|
52323
52495
|
className
|
|
52324
52496
|
};
|
|
52325
|
-
return /* @__PURE__ */
|
|
52497
|
+
return /* @__PURE__ */ jsx1235(
|
|
52326
52498
|
DropdownMenuPrimitive.CheckboxItem,
|
|
52327
52499
|
__spreadProps(__spreadValues({
|
|
52328
52500
|
checked
|
|
52329
52501
|
}, props), {
|
|
52330
52502
|
ref: forwardedRef,
|
|
52331
52503
|
className: "outline-none select-none group",
|
|
52332
|
-
children: /* @__PURE__ */
|
|
52504
|
+
children: /* @__PURE__ */ jsx1235(DropdownMenuItemBase, __spreadProps(__spreadValues({ checkbox: true }, extraProps), { children }))
|
|
52333
52505
|
})
|
|
52334
52506
|
);
|
|
52335
52507
|
}
|
|
52336
52508
|
);
|
|
52337
52509
|
DropdownMenuCheckboxItem.displayName = DropdownMenuPrimitive.CheckboxItem.displayName;
|
|
52338
|
-
var DropdownMenuContent =
|
|
52510
|
+
var DropdownMenuContent = React10.forwardRef(
|
|
52339
52511
|
(_a, forwardedRef) => {
|
|
52340
52512
|
var _b = _a, {
|
|
52341
52513
|
children,
|
|
@@ -52350,7 +52522,7 @@ var DropdownMenuContent = React9.forwardRef(
|
|
|
52350
52522
|
"sideOffset",
|
|
52351
52523
|
"align"
|
|
52352
52524
|
]);
|
|
52353
|
-
return /* @__PURE__ */
|
|
52525
|
+
return /* @__PURE__ */ jsx1235(
|
|
52354
52526
|
DropdownMenuPrimitive.Content,
|
|
52355
52527
|
__spreadProps(__spreadValues({
|
|
52356
52528
|
className: cn(
|
|
@@ -52369,7 +52541,7 @@ var DropdownMenuContent = React9.forwardRef(
|
|
|
52369
52541
|
);
|
|
52370
52542
|
DropdownMenuContent.displayName = DropdownMenuPrimitive.Content.displayName;
|
|
52371
52543
|
var DropdownMenuGroup = DropdownMenuPrimitive.Group;
|
|
52372
|
-
var DropdownMenuItem =
|
|
52544
|
+
var DropdownMenuItem = React10.forwardRef(
|
|
52373
52545
|
(_a, forwardedRef) => {
|
|
52374
52546
|
var _b = _a, { className, children, icon, description, destructive } = _b, props = __objRest(_b, ["className", "children", "icon", "description", "destructive"]);
|
|
52375
52547
|
const extraProps = {
|
|
@@ -52378,20 +52550,20 @@ var DropdownMenuItem = React9.forwardRef(
|
|
|
52378
52550
|
icon,
|
|
52379
52551
|
className
|
|
52380
52552
|
};
|
|
52381
|
-
return /* @__PURE__ */
|
|
52553
|
+
return /* @__PURE__ */ jsx1235(
|
|
52382
52554
|
DropdownMenuPrimitive.Item,
|
|
52383
52555
|
__spreadProps(__spreadValues({}, props), {
|
|
52384
52556
|
ref: forwardedRef,
|
|
52385
52557
|
className: "outline-none select-none group",
|
|
52386
|
-
children: /* @__PURE__ */
|
|
52558
|
+
children: /* @__PURE__ */ jsx1235(DropdownMenuItemBase, __spreadProps(__spreadValues({}, extraProps), { children }))
|
|
52387
52559
|
})
|
|
52388
52560
|
);
|
|
52389
52561
|
}
|
|
52390
52562
|
);
|
|
52391
52563
|
DropdownMenuItem.displayName = DropdownMenuPrimitive.Item.displayName;
|
|
52392
|
-
var DropdownMenuLabel =
|
|
52564
|
+
var DropdownMenuLabel = React10.forwardRef((_a, forwardedRef) => {
|
|
52393
52565
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
52394
|
-
return /* @__PURE__ */
|
|
52566
|
+
return /* @__PURE__ */ jsx1235(
|
|
52395
52567
|
DropdownMenuPrimitive.Label,
|
|
52396
52568
|
__spreadProps(__spreadValues({
|
|
52397
52569
|
className: cn(
|
|
@@ -52406,7 +52578,7 @@ var DropdownMenuLabel = React9.forwardRef((_a, forwardedRef) => {
|
|
|
52406
52578
|
DropdownMenuLabel.displayName = DropdownMenuPrimitive.Label.displayName;
|
|
52407
52579
|
var DropdownMenuPortal = DropdownMenuPrimitive.Portal;
|
|
52408
52580
|
var DropdownMenuRadioGroup = DropdownMenuPrimitive.RadioGroup;
|
|
52409
|
-
var DropdownMenuRadioItem =
|
|
52581
|
+
var DropdownMenuRadioItem = React10.forwardRef(
|
|
52410
52582
|
(_a, forwardedRef) => {
|
|
52411
52583
|
var _b = _a, { className, children, icon, description, destructive } = _b, props = __objRest(_b, ["className", "children", "icon", "description", "destructive"]);
|
|
52412
52584
|
const extraProps = {
|
|
@@ -52415,20 +52587,20 @@ var DropdownMenuRadioItem = React9.forwardRef(
|
|
|
52415
52587
|
icon,
|
|
52416
52588
|
className
|
|
52417
52589
|
};
|
|
52418
|
-
return /* @__PURE__ */
|
|
52590
|
+
return /* @__PURE__ */ jsx1235(
|
|
52419
52591
|
DropdownMenuPrimitive.RadioItem,
|
|
52420
52592
|
__spreadProps(__spreadValues({}, props), {
|
|
52421
52593
|
ref: forwardedRef,
|
|
52422
52594
|
className: "outline-none select-none group",
|
|
52423
|
-
children: /* @__PURE__ */
|
|
52595
|
+
children: /* @__PURE__ */ jsx1235(DropdownMenuItemBase, __spreadProps(__spreadValues({}, extraProps), { children }))
|
|
52424
52596
|
})
|
|
52425
52597
|
);
|
|
52426
52598
|
}
|
|
52427
52599
|
);
|
|
52428
52600
|
DropdownMenuRadioItem.displayName = DropdownMenuPrimitive.RadioItem.displayName;
|
|
52429
|
-
var DropdownMenuSeparator =
|
|
52601
|
+
var DropdownMenuSeparator = React10.forwardRef((_a, forwardedRef) => {
|
|
52430
52602
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
52431
|
-
return /* @__PURE__ */
|
|
52603
|
+
return /* @__PURE__ */ jsx1235(
|
|
52432
52604
|
DropdownMenuPrimitive.Separator,
|
|
52433
52605
|
__spreadProps(__spreadValues({
|
|
52434
52606
|
className: cn("my-1 border-b border-gray-200", className)
|
|
@@ -52439,9 +52611,9 @@ var DropdownMenuSeparator = React9.forwardRef((_a, forwardedRef) => {
|
|
|
52439
52611
|
});
|
|
52440
52612
|
DropdownMenuSeparator.displayName = DropdownMenuPrimitive.Separator.displayName;
|
|
52441
52613
|
var DropdownMenuSub = DropdownMenuPrimitive.Sub;
|
|
52442
|
-
var DropdownMenuSubContent =
|
|
52614
|
+
var DropdownMenuSubContent = React10.forwardRef((_a, forwardedRef) => {
|
|
52443
52615
|
var _b = _a, { children, className, sideOffset = 8 } = _b, props = __objRest(_b, ["children", "className", "sideOffset"]);
|
|
52444
|
-
return /* @__PURE__ */
|
|
52616
|
+
return /* @__PURE__ */ jsx1235(
|
|
52445
52617
|
DropdownMenuPrimitive.SubContent,
|
|
52446
52618
|
__spreadProps(__spreadValues({
|
|
52447
52619
|
className: cn(
|
|
@@ -52456,7 +52628,7 @@ var DropdownMenuSubContent = React9.forwardRef((_a, forwardedRef) => {
|
|
|
52456
52628
|
);
|
|
52457
52629
|
});
|
|
52458
52630
|
DropdownMenuSubContent.displayName = DropdownMenuPrimitive.SubContent.displayName;
|
|
52459
|
-
var DropdownMenuSubTrigger =
|
|
52631
|
+
var DropdownMenuSubTrigger = React10.forwardRef(
|
|
52460
52632
|
(_a, forwardedRef) => {
|
|
52461
52633
|
var _b = _a, { className, children, icon, description, destructive } = _b, props = __objRest(_b, ["className", "children", "icon", "description", "destructive"]);
|
|
52462
52634
|
const extraProps = {
|
|
@@ -52465,12 +52637,12 @@ var DropdownMenuSubTrigger = React9.forwardRef(
|
|
|
52465
52637
|
icon,
|
|
52466
52638
|
className
|
|
52467
52639
|
};
|
|
52468
|
-
return /* @__PURE__ */
|
|
52640
|
+
return /* @__PURE__ */ jsx1235(
|
|
52469
52641
|
DropdownMenuPrimitive.SubTrigger,
|
|
52470
52642
|
__spreadProps(__spreadValues({}, props), {
|
|
52471
52643
|
ref: forwardedRef,
|
|
52472
52644
|
className: "outline-none select-none group",
|
|
52473
|
-
children: /* @__PURE__ */
|
|
52645
|
+
children: /* @__PURE__ */ jsx1235(DropdownMenuItemBase, __spreadProps(__spreadValues({ hasSubNav: true }, extraProps), { children }))
|
|
52474
52646
|
})
|
|
52475
52647
|
);
|
|
52476
52648
|
}
|
|
@@ -52479,16 +52651,16 @@ DropdownMenuSubTrigger.displayName = DropdownMenuPrimitive.SubTrigger.displayNam
|
|
|
52479
52651
|
var DropdownMenuTrigger = DropdownMenuPrimitive.Trigger;
|
|
52480
52652
|
|
|
52481
52653
|
// src/components/FilterButton/FilterButton.tsx
|
|
52482
|
-
import
|
|
52483
|
-
import { Fragment, jsx as
|
|
52484
|
-
var FilterButton =
|
|
52654
|
+
import React11 from "react";
|
|
52655
|
+
import { Fragment, jsx as jsx1236, jsxs as jsxs1015 } from "react/jsx-runtime";
|
|
52656
|
+
var FilterButton = React11.forwardRef(
|
|
52485
52657
|
(_a, ref) => {
|
|
52486
52658
|
var _b = _a, { selectedCount, children, size = "sm", variant = "outline" } = _b, props = __objRest(_b, ["selectedCount", "children", "size", "variant"]);
|
|
52487
|
-
return /* @__PURE__ */
|
|
52659
|
+
return /* @__PURE__ */ jsxs1015(Button, __spreadProps(__spreadValues({ ref, variant, size }, props), { children: [
|
|
52488
52660
|
children,
|
|
52489
|
-
selectedCount !== void 0 && selectedCount > 0 && /* @__PURE__ */
|
|
52490
|
-
/* @__PURE__ */
|
|
52491
|
-
/* @__PURE__ */
|
|
52661
|
+
selectedCount !== void 0 && selectedCount > 0 && /* @__PURE__ */ jsxs1015(Fragment, { children: [
|
|
52662
|
+
/* @__PURE__ */ jsx1236("span", { className: "h-4 border-l border-gray-200" }),
|
|
52663
|
+
/* @__PURE__ */ jsx1236(Badge, { variant: "fill", color: "blue", children: selectedCount })
|
|
52492
52664
|
] })
|
|
52493
52665
|
] }));
|
|
52494
52666
|
}
|
|
@@ -52496,7 +52668,7 @@ var FilterButton = React10.forwardRef(
|
|
|
52496
52668
|
FilterButton.displayName = "FilterButton";
|
|
52497
52669
|
|
|
52498
52670
|
// src/components/Form/Form.tsx
|
|
52499
|
-
import * as
|
|
52671
|
+
import * as React13 from "react";
|
|
52500
52672
|
import { Slot as Slot2 } from "@radix-ui/react-slot";
|
|
52501
52673
|
import {
|
|
52502
52674
|
Controller,
|
|
@@ -52505,12 +52677,12 @@ import {
|
|
|
52505
52677
|
} from "react-hook-form";
|
|
52506
52678
|
|
|
52507
52679
|
// src/components/Label/Label.tsx
|
|
52508
|
-
import * as
|
|
52680
|
+
import * as React12 from "react";
|
|
52509
52681
|
import * as LabelPrimitive from "@radix-ui/react-label";
|
|
52510
|
-
import { jsx as
|
|
52511
|
-
var Label2 =
|
|
52682
|
+
import { jsx as jsx1237 } from "react/jsx-runtime";
|
|
52683
|
+
var Label2 = React12.forwardRef((_a, ref) => {
|
|
52512
52684
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
52513
|
-
return /* @__PURE__ */
|
|
52685
|
+
return /* @__PURE__ */ jsx1237(
|
|
52514
52686
|
LabelPrimitive.Root,
|
|
52515
52687
|
__spreadValues({
|
|
52516
52688
|
ref,
|
|
@@ -52524,24 +52696,24 @@ var Label2 = React11.forwardRef((_a, ref) => {
|
|
|
52524
52696
|
Label2.displayName = LabelPrimitive.Root.displayName;
|
|
52525
52697
|
|
|
52526
52698
|
// src/components/Form/Form.tsx
|
|
52527
|
-
import { jsx as
|
|
52699
|
+
import { jsx as jsx1238 } from "react/jsx-runtime";
|
|
52528
52700
|
var Form = FormProvider;
|
|
52529
|
-
var FormFieldContext =
|
|
52701
|
+
var FormFieldContext = React13.createContext(
|
|
52530
52702
|
{}
|
|
52531
52703
|
);
|
|
52532
52704
|
var FormField = (_a) => {
|
|
52533
52705
|
var props = __objRest(_a, []);
|
|
52534
|
-
return /* @__PURE__ */
|
|
52706
|
+
return /* @__PURE__ */ jsx1238(
|
|
52535
52707
|
FormFieldContext.Provider,
|
|
52536
52708
|
{
|
|
52537
52709
|
value: { name: props.name, isDisabled: props.disabled },
|
|
52538
|
-
children: /* @__PURE__ */
|
|
52710
|
+
children: /* @__PURE__ */ jsx1238(Controller, __spreadValues({}, props))
|
|
52539
52711
|
}
|
|
52540
52712
|
);
|
|
52541
52713
|
};
|
|
52542
52714
|
var useFormField = () => {
|
|
52543
|
-
const fieldContext =
|
|
52544
|
-
const itemContext =
|
|
52715
|
+
const fieldContext = React13.useContext(FormFieldContext);
|
|
52716
|
+
const itemContext = React13.useContext(FormItemContext);
|
|
52545
52717
|
const { getFieldState, formState } = useFormContext();
|
|
52546
52718
|
const fieldState = getFieldState(fieldContext.name, formState);
|
|
52547
52719
|
if (!fieldContext) {
|
|
@@ -52557,13 +52729,13 @@ var useFormField = () => {
|
|
|
52557
52729
|
formMessageId: `${id}-form-item-message`
|
|
52558
52730
|
}, fieldState);
|
|
52559
52731
|
};
|
|
52560
|
-
var FormItemContext =
|
|
52732
|
+
var FormItemContext = React13.createContext(
|
|
52561
52733
|
{}
|
|
52562
52734
|
);
|
|
52563
|
-
var FormItem =
|
|
52735
|
+
var FormItem = React13.forwardRef((_a, ref) => {
|
|
52564
52736
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
52565
|
-
const id =
|
|
52566
|
-
return /* @__PURE__ */
|
|
52737
|
+
const id = React13.useId();
|
|
52738
|
+
return /* @__PURE__ */ jsx1238(FormItemContext.Provider, { value: { id }, children: /* @__PURE__ */ jsx1238(
|
|
52567
52739
|
"div",
|
|
52568
52740
|
__spreadValues({
|
|
52569
52741
|
ref,
|
|
@@ -52572,10 +52744,10 @@ var FormItem = React12.forwardRef((_a, ref) => {
|
|
|
52572
52744
|
) });
|
|
52573
52745
|
});
|
|
52574
52746
|
FormItem.displayName = "FormItem";
|
|
52575
|
-
var FormLabel =
|
|
52747
|
+
var FormLabel = React13.forwardRef((_a, ref) => {
|
|
52576
52748
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
52577
52749
|
const { isDisabled, formItemId } = useFormField();
|
|
52578
|
-
return /* @__PURE__ */
|
|
52750
|
+
return /* @__PURE__ */ jsx1238(
|
|
52579
52751
|
Label2,
|
|
52580
52752
|
__spreadValues({
|
|
52581
52753
|
ref,
|
|
@@ -52585,10 +52757,10 @@ var FormLabel = React12.forwardRef((_a, ref) => {
|
|
|
52585
52757
|
);
|
|
52586
52758
|
});
|
|
52587
52759
|
FormLabel.displayName = "FormLabel";
|
|
52588
|
-
var FormControl =
|
|
52760
|
+
var FormControl = React13.forwardRef((_a, ref) => {
|
|
52589
52761
|
var props = __objRest(_a, []);
|
|
52590
52762
|
const { error, isDisabled, formItemId, formDescriptionId, formMessageId } = useFormField();
|
|
52591
|
-
return /* @__PURE__ */
|
|
52763
|
+
return /* @__PURE__ */ jsx1238(
|
|
52592
52764
|
Slot2,
|
|
52593
52765
|
__spreadValues({
|
|
52594
52766
|
ref,
|
|
@@ -52601,10 +52773,10 @@ var FormControl = React12.forwardRef((_a, ref) => {
|
|
|
52601
52773
|
);
|
|
52602
52774
|
});
|
|
52603
52775
|
FormControl.displayName = "FormControl";
|
|
52604
|
-
var FormDescription =
|
|
52776
|
+
var FormDescription = React13.forwardRef((_a, ref) => {
|
|
52605
52777
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
52606
52778
|
const { formDescriptionId, isDisabled } = useFormField();
|
|
52607
|
-
return /* @__PURE__ */
|
|
52779
|
+
return /* @__PURE__ */ jsx1238(
|
|
52608
52780
|
"p",
|
|
52609
52781
|
__spreadValues({
|
|
52610
52782
|
ref,
|
|
@@ -52618,12 +52790,12 @@ var FormDescription = React12.forwardRef((_a, ref) => {
|
|
|
52618
52790
|
);
|
|
52619
52791
|
});
|
|
52620
52792
|
FormDescription.displayName = "FormDescription";
|
|
52621
|
-
var FormMessage =
|
|
52793
|
+
var FormMessage = React13.forwardRef((_a, ref) => {
|
|
52622
52794
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
52623
52795
|
const { error, isDisabled, formMessageId } = useFormField();
|
|
52624
52796
|
const body = error ? String(error == null ? void 0 : error.message) : children;
|
|
52625
52797
|
const textColorClassName = error ? "text-red-700" : "text-gray-700";
|
|
52626
|
-
return /* @__PURE__ */
|
|
52798
|
+
return /* @__PURE__ */ jsx1238(
|
|
52627
52799
|
"p",
|
|
52628
52800
|
__spreadProps(__spreadValues({
|
|
52629
52801
|
ref,
|
|
@@ -52642,10 +52814,10 @@ var FormMessage = React12.forwardRef((_a, ref) => {
|
|
|
52642
52814
|
FormMessage.displayName = "FormMessage";
|
|
52643
52815
|
|
|
52644
52816
|
// src/components/Input/Input.tsx
|
|
52645
|
-
import * as
|
|
52817
|
+
import * as React14 from "react";
|
|
52646
52818
|
import { Slot as Slot3 } from "@radix-ui/react-slot";
|
|
52647
|
-
import { jsx as
|
|
52648
|
-
var Input =
|
|
52819
|
+
import { jsx as jsx1239, jsxs as jsxs1016 } from "react/jsx-runtime";
|
|
52820
|
+
var Input = React14.forwardRef(
|
|
52649
52821
|
(_a, ref) => {
|
|
52650
52822
|
var _b = _a, {
|
|
52651
52823
|
className,
|
|
@@ -52663,8 +52835,8 @@ var Input = React13.forwardRef(
|
|
|
52663
52835
|
"suffixEnchancer"
|
|
52664
52836
|
]);
|
|
52665
52837
|
const isDisabled = !!props["data-is-disabled"] || disabled;
|
|
52666
|
-
return /* @__PURE__ */
|
|
52667
|
-
/* @__PURE__ */
|
|
52838
|
+
return /* @__PURE__ */ jsxs1016("div", { className: "flex gap-2", children: [
|
|
52839
|
+
/* @__PURE__ */ jsxs1016(
|
|
52668
52840
|
"div",
|
|
52669
52841
|
{
|
|
52670
52842
|
className: cn(
|
|
@@ -52676,7 +52848,7 @@ var Input = React13.forwardRef(
|
|
|
52676
52848
|
className
|
|
52677
52849
|
),
|
|
52678
52850
|
children: [
|
|
52679
|
-
prefixEnchancer && /* @__PURE__ */
|
|
52851
|
+
prefixEnchancer && /* @__PURE__ */ jsx1239(
|
|
52680
52852
|
Slot3,
|
|
52681
52853
|
{
|
|
52682
52854
|
className: cn(
|
|
@@ -52686,7 +52858,7 @@ var Input = React13.forwardRef(
|
|
|
52686
52858
|
children: prefixEnchancer
|
|
52687
52859
|
}
|
|
52688
52860
|
),
|
|
52689
|
-
/* @__PURE__ */
|
|
52861
|
+
/* @__PURE__ */ jsx1239(
|
|
52690
52862
|
"input",
|
|
52691
52863
|
__spreadProps(__spreadValues({}, props), {
|
|
52692
52864
|
disabled: isDisabled,
|
|
@@ -52695,7 +52867,7 @@ var Input = React13.forwardRef(
|
|
|
52695
52867
|
ref
|
|
52696
52868
|
})
|
|
52697
52869
|
),
|
|
52698
|
-
suffixEnchancer && /* @__PURE__ */
|
|
52870
|
+
suffixEnchancer && /* @__PURE__ */ jsx1239(
|
|
52699
52871
|
Slot3,
|
|
52700
52872
|
{
|
|
52701
52873
|
className: cn(
|
|
@@ -52708,7 +52880,7 @@ var Input = React13.forwardRef(
|
|
|
52708
52880
|
]
|
|
52709
52881
|
}
|
|
52710
52882
|
),
|
|
52711
|
-
button &&
|
|
52883
|
+
button && React14.cloneElement(button, {
|
|
52712
52884
|
size: "sm",
|
|
52713
52885
|
disabled: isDisabled,
|
|
52714
52886
|
className: cn("flex-shrink-0", button.props.className)
|
|
@@ -52719,7 +52891,7 @@ var Input = React13.forwardRef(
|
|
|
52719
52891
|
Input.displayName = "Input";
|
|
52720
52892
|
|
|
52721
52893
|
// src/components/Pagination/Pagination.tsx
|
|
52722
|
-
import { jsx as
|
|
52894
|
+
import { jsx as jsx1240, jsxs as jsxs1017 } from "react/jsx-runtime";
|
|
52723
52895
|
var PaginationPageChoice = /* @__PURE__ */ ((PaginationPageChoice2) => {
|
|
52724
52896
|
PaginationPageChoice2["FIRST"] = "FIRST";
|
|
52725
52897
|
PaginationPageChoice2["PREVIOUS"] = "PREVIOUS";
|
|
@@ -52735,12 +52907,12 @@ var Pagination = ({
|
|
|
52735
52907
|
onPageChange,
|
|
52736
52908
|
className
|
|
52737
52909
|
}) => {
|
|
52738
|
-
return /* @__PURE__ */
|
|
52739
|
-
totalRowsCaption && /* @__PURE__ */
|
|
52740
|
-
/* @__PURE__ */
|
|
52741
|
-
currentPageCation && /* @__PURE__ */
|
|
52742
|
-
/* @__PURE__ */
|
|
52743
|
-
/* @__PURE__ */
|
|
52910
|
+
return /* @__PURE__ */ jsxs1017("div", { className: cn("flex items-center justify-between px-2", className), children: [
|
|
52911
|
+
totalRowsCaption && /* @__PURE__ */ jsx1240("div", { className: "flex-1 text-sm text-gray-700", children: totalRowsCaption }),
|
|
52912
|
+
/* @__PURE__ */ jsxs1017("div", { className: "flex items-center gap-4", children: [
|
|
52913
|
+
currentPageCation && /* @__PURE__ */ jsx1240("div", { className: "flex items-center justify-center text-sm font-medium text-gray-1000", children: currentPageCation }),
|
|
52914
|
+
/* @__PURE__ */ jsxs1017("div", { className: "flex items-center gap-2", children: [
|
|
52915
|
+
/* @__PURE__ */ jsx1240(
|
|
52744
52916
|
Button,
|
|
52745
52917
|
{
|
|
52746
52918
|
variant: "outline",
|
|
@@ -52748,10 +52920,10 @@ var Pagination = ({
|
|
|
52748
52920
|
size: "sm",
|
|
52749
52921
|
onClick: () => onPageChange("FIRST" /* FIRST */),
|
|
52750
52922
|
disabled: !previousPageAvailable,
|
|
52751
|
-
children: /* @__PURE__ */
|
|
52923
|
+
children: /* @__PURE__ */ jsx1240(ChevronLeftDoubleIcon, { size: "16" })
|
|
52752
52924
|
}
|
|
52753
52925
|
),
|
|
52754
|
-
/* @__PURE__ */
|
|
52926
|
+
/* @__PURE__ */ jsx1240(
|
|
52755
52927
|
Button,
|
|
52756
52928
|
{
|
|
52757
52929
|
variant: "outline",
|
|
@@ -52759,10 +52931,10 @@ var Pagination = ({
|
|
|
52759
52931
|
size: "sm",
|
|
52760
52932
|
onClick: () => onPageChange("PREVIOUS" /* PREVIOUS */),
|
|
52761
52933
|
disabled: !previousPageAvailable,
|
|
52762
|
-
children: /* @__PURE__ */
|
|
52934
|
+
children: /* @__PURE__ */ jsx1240(ChevronLeftIcon, { size: "16" })
|
|
52763
52935
|
}
|
|
52764
52936
|
),
|
|
52765
|
-
/* @__PURE__ */
|
|
52937
|
+
/* @__PURE__ */ jsx1240(
|
|
52766
52938
|
Button,
|
|
52767
52939
|
{
|
|
52768
52940
|
variant: "outline",
|
|
@@ -52770,10 +52942,10 @@ var Pagination = ({
|
|
|
52770
52942
|
size: "sm",
|
|
52771
52943
|
onClick: () => onPageChange("NEXT" /* NEXT */),
|
|
52772
52944
|
disabled: !nextPageAvailable,
|
|
52773
|
-
children: /* @__PURE__ */
|
|
52945
|
+
children: /* @__PURE__ */ jsx1240(ChevronRightIcon, { size: "16" })
|
|
52774
52946
|
}
|
|
52775
52947
|
),
|
|
52776
|
-
/* @__PURE__ */
|
|
52948
|
+
/* @__PURE__ */ jsx1240(
|
|
52777
52949
|
Button,
|
|
52778
52950
|
{
|
|
52779
52951
|
variant: "outline",
|
|
@@ -52781,7 +52953,7 @@ var Pagination = ({
|
|
|
52781
52953
|
size: "sm",
|
|
52782
52954
|
onClick: () => onPageChange("LAST" /* LAST */),
|
|
52783
52955
|
disabled: !nextPageAvailable,
|
|
52784
|
-
children: /* @__PURE__ */
|
|
52956
|
+
children: /* @__PURE__ */ jsx1240(ChevronRightDoubleIcon, { size: "16" })
|
|
52785
52957
|
}
|
|
52786
52958
|
)
|
|
52787
52959
|
] })
|
|
@@ -52790,14 +52962,14 @@ var Pagination = ({
|
|
|
52790
52962
|
};
|
|
52791
52963
|
|
|
52792
52964
|
// src/components/Popover/Popover.tsx
|
|
52793
|
-
import * as
|
|
52965
|
+
import * as React15 from "react";
|
|
52794
52966
|
import * as PopoverPrimitive from "@radix-ui/react-popover";
|
|
52795
|
-
import { jsx as
|
|
52967
|
+
import { jsx as jsx1241 } from "react/jsx-runtime";
|
|
52796
52968
|
var Popover = PopoverPrimitive.Root;
|
|
52797
52969
|
var PopoverTrigger = PopoverPrimitive.Trigger;
|
|
52798
|
-
var PopoverContent =
|
|
52970
|
+
var PopoverContent = React15.forwardRef((_a, ref) => {
|
|
52799
52971
|
var _b = _a, { className, align = "center", sideOffset = 4 } = _b, props = __objRest(_b, ["className", "align", "sideOffset"]);
|
|
52800
|
-
return /* @__PURE__ */
|
|
52972
|
+
return /* @__PURE__ */ jsx1241(PopoverPrimitive.Portal, { children: /* @__PURE__ */ jsx1241(
|
|
52801
52973
|
PopoverPrimitive.Content,
|
|
52802
52974
|
__spreadValues({
|
|
52803
52975
|
ref,
|
|
@@ -52813,16 +52985,16 @@ var PopoverContent = React14.forwardRef((_a, ref) => {
|
|
|
52813
52985
|
PopoverContent.displayName = PopoverPrimitive.Content.displayName;
|
|
52814
52986
|
|
|
52815
52987
|
// src/components/Select/Select.tsx
|
|
52816
|
-
import * as
|
|
52988
|
+
import * as React16 from "react";
|
|
52817
52989
|
import * as SelectPrimitive from "@radix-ui/react-select";
|
|
52818
|
-
import { jsx as
|
|
52990
|
+
import { jsx as jsx1242, jsxs as jsxs1018 } from "react/jsx-runtime";
|
|
52819
52991
|
var Select = SelectPrimitive.Root;
|
|
52820
52992
|
var SelectGroup = SelectPrimitive.Group;
|
|
52821
52993
|
var SelectValue = SelectPrimitive.Value;
|
|
52822
|
-
var SelectTrigger =
|
|
52994
|
+
var SelectTrigger = React16.forwardRef((_a, ref) => {
|
|
52823
52995
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
52824
52996
|
const isDisabled = props["data-is-disabled"];
|
|
52825
|
-
return /* @__PURE__ */
|
|
52997
|
+
return /* @__PURE__ */ jsxs1018(
|
|
52826
52998
|
SelectPrimitive.Trigger,
|
|
52827
52999
|
__spreadProps(__spreadValues({
|
|
52828
53000
|
ref,
|
|
@@ -52839,15 +53011,15 @@ var SelectTrigger = React15.forwardRef((_a, ref) => {
|
|
|
52839
53011
|
}, props), {
|
|
52840
53012
|
children: [
|
|
52841
53013
|
children,
|
|
52842
|
-
/* @__PURE__ */
|
|
53014
|
+
/* @__PURE__ */ jsx1242(SelectPrimitive.Icon, { asChild: true, children: /* @__PURE__ */ jsx1242(ChevronSelectorVerticalIcon, { size: "16", className: "w-4 h-4 opacity-50" }) })
|
|
52843
53015
|
]
|
|
52844
53016
|
})
|
|
52845
53017
|
);
|
|
52846
53018
|
});
|
|
52847
53019
|
SelectTrigger.displayName = SelectPrimitive.Trigger.displayName;
|
|
52848
|
-
var SelectContent =
|
|
53020
|
+
var SelectContent = React16.forwardRef((_a, ref) => {
|
|
52849
53021
|
var _b = _a, { className, children, position = "popper" } = _b, props = __objRest(_b, ["className", "children", "position"]);
|
|
52850
|
-
return /* @__PURE__ */
|
|
53022
|
+
return /* @__PURE__ */ jsx1242(SelectPrimitive.Portal, { children: /* @__PURE__ */ jsx1242(
|
|
52851
53023
|
SelectPrimitive.Content,
|
|
52852
53024
|
__spreadProps(__spreadValues({
|
|
52853
53025
|
ref,
|
|
@@ -52858,7 +53030,7 @@ var SelectContent = React15.forwardRef((_a, ref) => {
|
|
|
52858
53030
|
),
|
|
52859
53031
|
position
|
|
52860
53032
|
}, props), {
|
|
52861
|
-
children: /* @__PURE__ */
|
|
53033
|
+
children: /* @__PURE__ */ jsx1242(
|
|
52862
53034
|
SelectPrimitive.Viewport,
|
|
52863
53035
|
{
|
|
52864
53036
|
className: cn(
|
|
@@ -52872,9 +53044,9 @@ var SelectContent = React15.forwardRef((_a, ref) => {
|
|
|
52872
53044
|
) });
|
|
52873
53045
|
});
|
|
52874
53046
|
SelectContent.displayName = SelectPrimitive.Content.displayName;
|
|
52875
|
-
var SelectLabel =
|
|
53047
|
+
var SelectLabel = React16.forwardRef((_a, ref) => {
|
|
52876
53048
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
52877
|
-
return /* @__PURE__ */
|
|
53049
|
+
return /* @__PURE__ */ jsx1242(
|
|
52878
53050
|
SelectPrimitive.Label,
|
|
52879
53051
|
__spreadValues({
|
|
52880
53052
|
ref,
|
|
@@ -52883,9 +53055,9 @@ var SelectLabel = React15.forwardRef((_a, ref) => {
|
|
|
52883
53055
|
);
|
|
52884
53056
|
});
|
|
52885
53057
|
SelectLabel.displayName = SelectPrimitive.Label.displayName;
|
|
52886
|
-
var SelectItem =
|
|
53058
|
+
var SelectItem = React16.forwardRef((_a, ref) => {
|
|
52887
53059
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
52888
|
-
return /* @__PURE__ */
|
|
53060
|
+
return /* @__PURE__ */ jsx1242(
|
|
52889
53061
|
SelectPrimitive.Item,
|
|
52890
53062
|
__spreadProps(__spreadValues({
|
|
52891
53063
|
ref,
|
|
@@ -52894,14 +53066,14 @@ var SelectItem = React15.forwardRef((_a, ref) => {
|
|
|
52894
53066
|
className
|
|
52895
53067
|
)
|
|
52896
53068
|
}, props), {
|
|
52897
|
-
children: /* @__PURE__ */
|
|
53069
|
+
children: /* @__PURE__ */ jsx1242(SelectPrimitive.ItemText, { children })
|
|
52898
53070
|
})
|
|
52899
53071
|
);
|
|
52900
53072
|
});
|
|
52901
53073
|
SelectItem.displayName = SelectPrimitive.Item.displayName;
|
|
52902
|
-
var SelectSeparator =
|
|
53074
|
+
var SelectSeparator = React16.forwardRef((_a, ref) => {
|
|
52903
53075
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
52904
|
-
return /* @__PURE__ */
|
|
53076
|
+
return /* @__PURE__ */ jsx1242(
|
|
52905
53077
|
SelectPrimitive.Separator,
|
|
52906
53078
|
__spreadValues({
|
|
52907
53079
|
ref,
|
|
@@ -52911,13 +53083,124 @@ var SelectSeparator = React15.forwardRef((_a, ref) => {
|
|
|
52911
53083
|
});
|
|
52912
53084
|
SelectSeparator.displayName = SelectPrimitive.Separator.displayName;
|
|
52913
53085
|
|
|
53086
|
+
// src/components/Sheet/Sheet.tsx
|
|
53087
|
+
import * as React17 from "react";
|
|
53088
|
+
import * as SheetPrimitive from "@radix-ui/react-dialog";
|
|
53089
|
+
import { cva as cva4 } from "class-variance-authority";
|
|
53090
|
+
import { jsx as jsx1243, jsxs as jsxs1019 } from "react/jsx-runtime";
|
|
53091
|
+
var Sheet = SheetPrimitive.Root;
|
|
53092
|
+
var SheetTrigger = SheetPrimitive.Trigger;
|
|
53093
|
+
var SheetClose = React17.forwardRef((_a, ref) => {
|
|
53094
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
53095
|
+
return /* @__PURE__ */ jsx1243(SheetPrimitive.Close, __spreadProps(__spreadValues({}, props), { ref, asChild: true, children: /* @__PURE__ */ jsx1243(Button, { size: "sm", variant: "secondary", icon: true, children: /* @__PURE__ */ jsx1243(XCloseIcon, { size: 16 }) }) }));
|
|
53096
|
+
});
|
|
53097
|
+
SheetClose.displayName = SheetPrimitive.Close.displayName;
|
|
53098
|
+
var SheetPortal = SheetPrimitive.Portal;
|
|
53099
|
+
var SheetOverlay = React17.forwardRef((_a, ref) => {
|
|
53100
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
53101
|
+
return /* @__PURE__ */ jsx1243(
|
|
53102
|
+
SheetPrimitive.Overlay,
|
|
53103
|
+
__spreadProps(__spreadValues({
|
|
53104
|
+
className: cn(
|
|
53105
|
+
"fixed inset-0 z-50 bg-gray-1000/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
|
|
53106
|
+
className
|
|
53107
|
+
)
|
|
53108
|
+
}, props), {
|
|
53109
|
+
ref
|
|
53110
|
+
})
|
|
53111
|
+
);
|
|
53112
|
+
});
|
|
53113
|
+
SheetOverlay.displayName = SheetPrimitive.Overlay.displayName;
|
|
53114
|
+
var sheetVariants = cva4(
|
|
53115
|
+
"fixed z-50 gap-4 bg-white p-6 shadow-sm border-gray-200 xl:rounded-none transition ease-in-out data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:duration-300 data-[state=open]:duration-500",
|
|
53116
|
+
{
|
|
53117
|
+
variants: {
|
|
53118
|
+
side: {
|
|
53119
|
+
top: "inset-x-0 top-0 border-b rounded-b-3xl data-[state=closed]:slide-out-to-top data-[state=open]:slide-in-from-top",
|
|
53120
|
+
bottom: "inset-x-0 bottom-0 border-t rounded-t-3xl data-[state=closed]:slide-out-to-bottom data-[state=open]:slide-in-from-bottom",
|
|
53121
|
+
left: "inset-y-0 left-0 h-full w-3/4 border-r data-[state=closed]:slide-out-to-left data-[state=open]:slide-in-from-left sm:max-w-sm",
|
|
53122
|
+
right: "inset-y-0 right-0 h-full w-3/4 border-l data-[state=closed]:slide-out-to-right data-[state=open]:slide-in-from-right sm:max-w-sm"
|
|
53123
|
+
}
|
|
53124
|
+
},
|
|
53125
|
+
defaultVariants: {
|
|
53126
|
+
side: "right"
|
|
53127
|
+
}
|
|
53128
|
+
}
|
|
53129
|
+
);
|
|
53130
|
+
var SheetContent = React17.forwardRef(
|
|
53131
|
+
(_a, ref) => {
|
|
53132
|
+
var _b = _a, {
|
|
53133
|
+
side = "right",
|
|
53134
|
+
className,
|
|
53135
|
+
children,
|
|
53136
|
+
container,
|
|
53137
|
+
overlay = true
|
|
53138
|
+
} = _b, props = __objRest(_b, [
|
|
53139
|
+
"side",
|
|
53140
|
+
"className",
|
|
53141
|
+
"children",
|
|
53142
|
+
"container",
|
|
53143
|
+
"overlay"
|
|
53144
|
+
]);
|
|
53145
|
+
return /* @__PURE__ */ jsxs1019(SheetPortal, { container, children: [
|
|
53146
|
+
overlay && /* @__PURE__ */ jsx1243(SheetOverlay, { className: cn({ absolute: Boolean(container) }) }),
|
|
53147
|
+
/* @__PURE__ */ jsx1243(
|
|
53148
|
+
SheetPrimitive.Content,
|
|
53149
|
+
__spreadProps(__spreadValues({
|
|
53150
|
+
ref,
|
|
53151
|
+
className: cn(
|
|
53152
|
+
"flex flex-col gap-6",
|
|
53153
|
+
sheetVariants({ side }),
|
|
53154
|
+
{ absolute: Boolean(container) },
|
|
53155
|
+
className
|
|
53156
|
+
),
|
|
53157
|
+
onInteractOutside: (event) => {
|
|
53158
|
+
if (!overlay) {
|
|
53159
|
+
event.preventDefault();
|
|
53160
|
+
}
|
|
53161
|
+
}
|
|
53162
|
+
}, props), {
|
|
53163
|
+
children
|
|
53164
|
+
})
|
|
53165
|
+
)
|
|
53166
|
+
] });
|
|
53167
|
+
}
|
|
53168
|
+
);
|
|
53169
|
+
SheetContent.displayName = SheetPrimitive.Content.displayName;
|
|
53170
|
+
var SheetHeader = (_a) => {
|
|
53171
|
+
var _b = _a, {
|
|
53172
|
+
className
|
|
53173
|
+
} = _b, props = __objRest(_b, [
|
|
53174
|
+
"className"
|
|
53175
|
+
]);
|
|
53176
|
+
return /* @__PURE__ */ jsx1243("div", __spreadValues({ className: cn("flex justify-between", className) }, props));
|
|
53177
|
+
};
|
|
53178
|
+
SheetHeader.displayName = "SheetHeader";
|
|
53179
|
+
var SheetTitle = React17.forwardRef((_a, ref) => {
|
|
53180
|
+
var _b = _a, { className, icon } = _b, props = __objRest(_b, ["className", "icon"]);
|
|
53181
|
+
return /* @__PURE__ */ jsxs1019("div", { className: "flex gap-3 items-center p-2 overflow-hidden", children: [
|
|
53182
|
+
icon && React17.cloneElement(icon, {
|
|
53183
|
+
size: 18,
|
|
53184
|
+
className: cn("shrink-0", icon.props.className)
|
|
53185
|
+
}),
|
|
53186
|
+
/* @__PURE__ */ jsx1243(
|
|
53187
|
+
SheetPrimitive.Title,
|
|
53188
|
+
__spreadValues({
|
|
53189
|
+
ref,
|
|
53190
|
+
className: cn("text-md font-semibold text-gray-1000 truncate", className)
|
|
53191
|
+
}, props)
|
|
53192
|
+
)
|
|
53193
|
+
] });
|
|
53194
|
+
});
|
|
53195
|
+
SheetTitle.displayName = SheetPrimitive.Title.displayName;
|
|
53196
|
+
|
|
52914
53197
|
// src/components/Switch/Switch.tsx
|
|
52915
|
-
import * as
|
|
53198
|
+
import * as React18 from "react";
|
|
52916
53199
|
import * as SwitchPrimitive from "@radix-ui/react-switch";
|
|
52917
|
-
import { jsx as
|
|
52918
|
-
var Switch =
|
|
53200
|
+
import { jsx as jsx1244 } from "react/jsx-runtime";
|
|
53201
|
+
var Switch = React18.forwardRef((_a, ref) => {
|
|
52919
53202
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
52920
|
-
return /* @__PURE__ */
|
|
53203
|
+
return /* @__PURE__ */ jsx1244(
|
|
52921
53204
|
SwitchPrimitive.Root,
|
|
52922
53205
|
__spreadProps(__spreadValues({
|
|
52923
53206
|
className: cn(
|
|
@@ -52926,18 +53209,18 @@ var Switch = React16.forwardRef((_a, ref) => {
|
|
|
52926
53209
|
)
|
|
52927
53210
|
}, props), {
|
|
52928
53211
|
ref,
|
|
52929
|
-
children: /* @__PURE__ */
|
|
53212
|
+
children: /* @__PURE__ */ jsx1244(SwitchPrimitive.Thumb, { className: "inline-block w-4 h-4 bg-gray-600 rounded-full translate-x-0.5 data-[state=checked]:translate-x-5 data-[state=checked]:bg-white transition-transform ease-linear will-change-transform" })
|
|
52930
53213
|
})
|
|
52931
53214
|
);
|
|
52932
53215
|
});
|
|
52933
53216
|
Switch.displayName = SwitchPrimitive.Root.displayName;
|
|
52934
53217
|
|
|
52935
53218
|
// src/components/Table/Table.tsx
|
|
52936
|
-
import * as
|
|
52937
|
-
import { jsx as
|
|
52938
|
-
var Table =
|
|
53219
|
+
import * as React19 from "react";
|
|
53220
|
+
import { jsx as jsx1245, jsxs as jsxs1020 } from "react/jsx-runtime";
|
|
53221
|
+
var Table = React19.forwardRef((_a, ref) => {
|
|
52939
53222
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
52940
|
-
return /* @__PURE__ */
|
|
53223
|
+
return /* @__PURE__ */ jsx1245("div", { className: "w-full overflow-auto border rounded-lg", children: /* @__PURE__ */ jsx1245(
|
|
52941
53224
|
"table",
|
|
52942
53225
|
__spreadValues({
|
|
52943
53226
|
ref,
|
|
@@ -52946,9 +53229,9 @@ var Table = React17.forwardRef((_a, ref) => {
|
|
|
52946
53229
|
) });
|
|
52947
53230
|
});
|
|
52948
53231
|
Table.displayName = "Table";
|
|
52949
|
-
var TableHeader =
|
|
53232
|
+
var TableHeader = React19.forwardRef((_a, ref) => {
|
|
52950
53233
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
52951
|
-
return /* @__PURE__ */
|
|
53234
|
+
return /* @__PURE__ */ jsx1245(
|
|
52952
53235
|
"thead",
|
|
52953
53236
|
__spreadValues({
|
|
52954
53237
|
ref,
|
|
@@ -52957,9 +53240,9 @@ var TableHeader = React17.forwardRef((_a, ref) => {
|
|
|
52957
53240
|
);
|
|
52958
53241
|
});
|
|
52959
53242
|
TableHeader.displayName = "TableHeader";
|
|
52960
|
-
var TableBody =
|
|
53243
|
+
var TableBody = React19.forwardRef((_a, ref) => {
|
|
52961
53244
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
52962
|
-
return /* @__PURE__ */
|
|
53245
|
+
return /* @__PURE__ */ jsx1245(
|
|
52963
53246
|
"tbody",
|
|
52964
53247
|
__spreadValues({
|
|
52965
53248
|
ref,
|
|
@@ -52971,9 +53254,9 @@ var TableBody = React17.forwardRef((_a, ref) => {
|
|
|
52971
53254
|
);
|
|
52972
53255
|
});
|
|
52973
53256
|
TableBody.displayName = "TableBody";
|
|
52974
|
-
var TableRow =
|
|
53257
|
+
var TableRow = React19.forwardRef((_a, ref) => {
|
|
52975
53258
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
52976
|
-
return /* @__PURE__ */
|
|
53259
|
+
return /* @__PURE__ */ jsx1245(
|
|
52977
53260
|
"tr",
|
|
52978
53261
|
__spreadValues({
|
|
52979
53262
|
ref,
|
|
@@ -52985,9 +53268,9 @@ var TableRow = React17.forwardRef((_a, ref) => {
|
|
|
52985
53268
|
);
|
|
52986
53269
|
});
|
|
52987
53270
|
TableRow.displayName = "TableRow";
|
|
52988
|
-
var TableHead =
|
|
53271
|
+
var TableHead = React19.forwardRef((_a, ref) => {
|
|
52989
53272
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
52990
|
-
return /* @__PURE__ */
|
|
53273
|
+
return /* @__PURE__ */ jsx1245(
|
|
52991
53274
|
"th",
|
|
52992
53275
|
__spreadValues({
|
|
52993
53276
|
ref,
|
|
@@ -52999,9 +53282,9 @@ var TableHead = React17.forwardRef((_a, ref) => {
|
|
|
52999
53282
|
);
|
|
53000
53283
|
});
|
|
53001
53284
|
TableHead.displayName = "TableHead";
|
|
53002
|
-
var TableCell =
|
|
53285
|
+
var TableCell = React19.forwardRef((_a, ref) => {
|
|
53003
53286
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
53004
|
-
return /* @__PURE__ */
|
|
53287
|
+
return /* @__PURE__ */ jsx1245(
|
|
53005
53288
|
"td",
|
|
53006
53289
|
__spreadValues({
|
|
53007
53290
|
ref,
|
|
@@ -53013,18 +53296,18 @@ var TableCell = React17.forwardRef((_a, ref) => {
|
|
|
53013
53296
|
);
|
|
53014
53297
|
});
|
|
53015
53298
|
TableCell.displayName = "TableCell";
|
|
53016
|
-
var TableEmpty =
|
|
53299
|
+
var TableEmpty = React19.forwardRef((_a, ref) => {
|
|
53017
53300
|
var _b = _a, { className, title, description, children } = _b, props = __objRest(_b, ["className", "title", "description", "children"]);
|
|
53018
|
-
return /* @__PURE__ */
|
|
53301
|
+
return /* @__PURE__ */ jsxs1020(
|
|
53019
53302
|
"div",
|
|
53020
53303
|
__spreadProps(__spreadValues({
|
|
53021
53304
|
ref,
|
|
53022
53305
|
className: cn("flex flex-col gap-6 items-center py-12", className)
|
|
53023
53306
|
}, props), {
|
|
53024
53307
|
children: [
|
|
53025
|
-
title && /* @__PURE__ */
|
|
53026
|
-
description && /* @__PURE__ */
|
|
53027
|
-
/* @__PURE__ */
|
|
53308
|
+
title && /* @__PURE__ */ jsx1245("span", { className: "text-lg font-semibold text-gray-1000", children: title }),
|
|
53309
|
+
description && /* @__PURE__ */ jsx1245("span", { className: "text-sm font-normal text-gray-900", children: description }),
|
|
53310
|
+
/* @__PURE__ */ jsx1245("div", { children })
|
|
53028
53311
|
]
|
|
53029
53312
|
})
|
|
53030
53313
|
);
|
|
@@ -53032,13 +53315,13 @@ var TableEmpty = React17.forwardRef((_a, ref) => {
|
|
|
53032
53315
|
TableEmpty.displayName = "TableEmpty";
|
|
53033
53316
|
|
|
53034
53317
|
// src/components/Tabs/Tabs.tsx
|
|
53035
|
-
import * as
|
|
53318
|
+
import * as React20 from "react";
|
|
53036
53319
|
import * as TabsPrimitive from "@radix-ui/react-tabs";
|
|
53037
|
-
import { jsx as
|
|
53320
|
+
import { jsx as jsx1246 } from "react/jsx-runtime";
|
|
53038
53321
|
var Tabs = TabsPrimitive.Root;
|
|
53039
|
-
var TabsList =
|
|
53322
|
+
var TabsList = React20.forwardRef((_a, ref) => {
|
|
53040
53323
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
53041
|
-
return /* @__PURE__ */
|
|
53324
|
+
return /* @__PURE__ */ jsx1246(
|
|
53042
53325
|
TabsPrimitive.List,
|
|
53043
53326
|
__spreadValues({
|
|
53044
53327
|
ref,
|
|
@@ -53050,9 +53333,9 @@ var TabsList = React18.forwardRef((_a, ref) => {
|
|
|
53050
53333
|
);
|
|
53051
53334
|
});
|
|
53052
53335
|
TabsList.displayName = TabsPrimitive.List.displayName;
|
|
53053
|
-
var TabsTrigger =
|
|
53336
|
+
var TabsTrigger = React20.forwardRef((_a, ref) => {
|
|
53054
53337
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
53055
|
-
return /* @__PURE__ */
|
|
53338
|
+
return /* @__PURE__ */ jsx1246(
|
|
53056
53339
|
TabsPrimitive.Trigger,
|
|
53057
53340
|
__spreadValues({
|
|
53058
53341
|
ref,
|
|
@@ -53067,9 +53350,9 @@ var TabsTrigger = React18.forwardRef((_a, ref) => {
|
|
|
53067
53350
|
);
|
|
53068
53351
|
});
|
|
53069
53352
|
TabsTrigger.displayName = TabsPrimitive.Trigger.displayName;
|
|
53070
|
-
var TabsContent =
|
|
53353
|
+
var TabsContent = React20.forwardRef((_a, ref) => {
|
|
53071
53354
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
53072
|
-
return /* @__PURE__ */
|
|
53355
|
+
return /* @__PURE__ */ jsx1246(
|
|
53073
53356
|
TabsPrimitive.Content,
|
|
53074
53357
|
__spreadValues({
|
|
53075
53358
|
ref,
|
|
@@ -53083,13 +53366,13 @@ var TabsContent = React18.forwardRef((_a, ref) => {
|
|
|
53083
53366
|
TabsContent.displayName = TabsPrimitive.Content.displayName;
|
|
53084
53367
|
|
|
53085
53368
|
// src/components/Textarea/Textarea.tsx
|
|
53086
|
-
import * as
|
|
53087
|
-
import { jsx as
|
|
53088
|
-
var Textarea =
|
|
53369
|
+
import * as React21 from "react";
|
|
53370
|
+
import { jsx as jsx1247 } from "react/jsx-runtime";
|
|
53371
|
+
var Textarea = React21.forwardRef(
|
|
53089
53372
|
(_a, ref) => {
|
|
53090
53373
|
var _b = _a, { className, disabled } = _b, props = __objRest(_b, ["className", "disabled"]);
|
|
53091
53374
|
const isDisabled = !!props["data-is-disabled"] || disabled;
|
|
53092
|
-
return /* @__PURE__ */
|
|
53375
|
+
return /* @__PURE__ */ jsx1247("div", { className: "flex gap-2", children: /* @__PURE__ */ jsx1247(
|
|
53093
53376
|
"div",
|
|
53094
53377
|
{
|
|
53095
53378
|
className: cn(
|
|
@@ -53100,7 +53383,7 @@ var Textarea = React19.forwardRef(
|
|
|
53100
53383
|
},
|
|
53101
53384
|
className
|
|
53102
53385
|
),
|
|
53103
|
-
children: /* @__PURE__ */
|
|
53386
|
+
children: /* @__PURE__ */ jsx1247(
|
|
53104
53387
|
"textarea",
|
|
53105
53388
|
__spreadProps(__spreadValues({}, props), {
|
|
53106
53389
|
disabled: isDisabled,
|
|
@@ -53115,14 +53398,14 @@ var Textarea = React19.forwardRef(
|
|
|
53115
53398
|
Textarea.displayName = "Textarea";
|
|
53116
53399
|
|
|
53117
53400
|
// src/components/Toaster/Toast.tsx
|
|
53118
|
-
import * as
|
|
53401
|
+
import * as React22 from "react";
|
|
53119
53402
|
import * as ToastPrimitives from "@radix-ui/react-toast";
|
|
53120
|
-
import { cva as
|
|
53121
|
-
import { jsx as
|
|
53403
|
+
import { cva as cva5 } from "class-variance-authority";
|
|
53404
|
+
import { jsx as jsx1248 } from "react/jsx-runtime";
|
|
53122
53405
|
var ToastProvider = ToastPrimitives.Provider;
|
|
53123
|
-
var ToastViewport =
|
|
53406
|
+
var ToastViewport = React22.forwardRef((_a, ref) => {
|
|
53124
53407
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
53125
|
-
return /* @__PURE__ */
|
|
53408
|
+
return /* @__PURE__ */ jsx1248(
|
|
53126
53409
|
ToastPrimitives.Viewport,
|
|
53127
53410
|
__spreadValues({
|
|
53128
53411
|
ref,
|
|
@@ -53134,7 +53417,7 @@ var ToastViewport = React20.forwardRef((_a, ref) => {
|
|
|
53134
53417
|
);
|
|
53135
53418
|
});
|
|
53136
53419
|
ToastViewport.displayName = ToastPrimitives.Viewport.displayName;
|
|
53137
|
-
var toastVariants =
|
|
53420
|
+
var toastVariants = cva5(
|
|
53138
53421
|
"group pointer-events-auto relative flex w-full shadow-sm items-center justify-between gap-4 overflow-hidden rounded-md px-4 py-2 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 data-[state=closed]:fade-out data-[state=open]:slide-in-from-top-full data-[state=open]:sm:slide-in-from-bottom-full",
|
|
53139
53422
|
{
|
|
53140
53423
|
variants: {
|
|
@@ -53148,9 +53431,9 @@ var toastVariants = cva4(
|
|
|
53148
53431
|
}
|
|
53149
53432
|
}
|
|
53150
53433
|
);
|
|
53151
|
-
var Toast =
|
|
53434
|
+
var Toast = React22.forwardRef((_a, ref) => {
|
|
53152
53435
|
var _b = _a, { className, variant } = _b, props = __objRest(_b, ["className", "variant"]);
|
|
53153
|
-
return /* @__PURE__ */
|
|
53436
|
+
return /* @__PURE__ */ jsx1248(
|
|
53154
53437
|
ToastPrimitives.Root,
|
|
53155
53438
|
__spreadValues({
|
|
53156
53439
|
ref,
|
|
@@ -53159,28 +53442,28 @@ var Toast = React20.forwardRef((_a, ref) => {
|
|
|
53159
53442
|
);
|
|
53160
53443
|
});
|
|
53161
53444
|
Toast.displayName = ToastPrimitives.Root.displayName;
|
|
53162
|
-
var ToastAction =
|
|
53445
|
+
var ToastAction = React22.forwardRef((_a, ref) => {
|
|
53163
53446
|
var _b = _a, { className, altText } = _b, props = __objRest(_b, ["className", "altText"]);
|
|
53164
|
-
return /* @__PURE__ */
|
|
53447
|
+
return /* @__PURE__ */ jsx1248(ToastPrimitives.Action, { altText, ref, asChild: true, children: /* @__PURE__ */ jsx1248(Button, __spreadValues({ size: "xs" }, props)) });
|
|
53165
53448
|
});
|
|
53166
53449
|
ToastAction.displayName = ToastPrimitives.Action.displayName;
|
|
53167
|
-
var ToastClose =
|
|
53450
|
+
var ToastClose = React22.forwardRef((_a, ref) => {
|
|
53168
53451
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
53169
|
-
return /* @__PURE__ */
|
|
53452
|
+
return /* @__PURE__ */ jsx1248(
|
|
53170
53453
|
ToastPrimitives.Close,
|
|
53171
53454
|
__spreadProps(__spreadValues({
|
|
53172
53455
|
ref,
|
|
53173
53456
|
className: cn("focus:outline-none focus:ring-1", className),
|
|
53174
53457
|
"toast-close": ""
|
|
53175
53458
|
}, props), {
|
|
53176
|
-
children: /* @__PURE__ */
|
|
53459
|
+
children: /* @__PURE__ */ jsx1248(XCloseIcon, { className: "text-white", size: 16 })
|
|
53177
53460
|
})
|
|
53178
53461
|
);
|
|
53179
53462
|
});
|
|
53180
53463
|
ToastClose.displayName = ToastPrimitives.Close.displayName;
|
|
53181
|
-
var ToastTitle =
|
|
53464
|
+
var ToastTitle = React22.forwardRef((_a, ref) => {
|
|
53182
53465
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
53183
|
-
return /* @__PURE__ */
|
|
53466
|
+
return /* @__PURE__ */ jsx1248(
|
|
53184
53467
|
ToastPrimitives.Title,
|
|
53185
53468
|
__spreadValues({
|
|
53186
53469
|
ref,
|
|
@@ -53189,9 +53472,9 @@ var ToastTitle = React20.forwardRef((_a, ref) => {
|
|
|
53189
53472
|
);
|
|
53190
53473
|
});
|
|
53191
53474
|
ToastTitle.displayName = ToastPrimitives.Title.displayName;
|
|
53192
|
-
var ToastDescription =
|
|
53475
|
+
var ToastDescription = React22.forwardRef((_a, ref) => {
|
|
53193
53476
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
53194
|
-
return /* @__PURE__ */
|
|
53477
|
+
return /* @__PURE__ */ jsx1248(
|
|
53195
53478
|
ToastPrimitives.Description,
|
|
53196
53479
|
__spreadValues({
|
|
53197
53480
|
ref,
|
|
@@ -53202,10 +53485,10 @@ var ToastDescription = React20.forwardRef((_a, ref) => {
|
|
|
53202
53485
|
ToastDescription.displayName = ToastPrimitives.Description.displayName;
|
|
53203
53486
|
|
|
53204
53487
|
// src/components/Toaster/Toaster.tsx
|
|
53205
|
-
import
|
|
53488
|
+
import React24 from "react";
|
|
53206
53489
|
|
|
53207
53490
|
// src/components/Toaster/useToast.tsx
|
|
53208
|
-
import * as
|
|
53491
|
+
import * as React23 from "react";
|
|
53209
53492
|
var TOAST_LIMIT = 3;
|
|
53210
53493
|
var TOAST_REMOVE_DELAY = 1e6;
|
|
53211
53494
|
var count = 0;
|
|
@@ -53314,8 +53597,8 @@ var toast = (parentId) => (_a) => {
|
|
|
53314
53597
|
};
|
|
53315
53598
|
};
|
|
53316
53599
|
function useToast({ toasterId = "default" } = {}) {
|
|
53317
|
-
const [state, setState] =
|
|
53318
|
-
|
|
53600
|
+
const [state, setState] = React23.useState(memoryState);
|
|
53601
|
+
React23.useEffect(() => {
|
|
53319
53602
|
listeners.push(setState);
|
|
53320
53603
|
return () => {
|
|
53321
53604
|
const index = listeners.indexOf(setState);
|
|
@@ -53331,7 +53614,7 @@ function useToast({ toasterId = "default" } = {}) {
|
|
|
53331
53614
|
}
|
|
53332
53615
|
|
|
53333
53616
|
// src/components/Toaster/Toaster.tsx
|
|
53334
|
-
import { jsx as
|
|
53617
|
+
import { jsx as jsx1249, jsxs as jsxs1021 } from "react/jsx-runtime";
|
|
53335
53618
|
var ToastContent = ({
|
|
53336
53619
|
title,
|
|
53337
53620
|
description,
|
|
@@ -53339,19 +53622,19 @@ var ToastContent = ({
|
|
|
53339
53622
|
actions,
|
|
53340
53623
|
hideClose
|
|
53341
53624
|
}) => {
|
|
53342
|
-
return /* @__PURE__ */
|
|
53343
|
-
/* @__PURE__ */
|
|
53344
|
-
/* @__PURE__ */
|
|
53345
|
-
icon &&
|
|
53625
|
+
return /* @__PURE__ */ jsxs1021("div", { className: "flex flex-col gap-2", children: [
|
|
53626
|
+
/* @__PURE__ */ jsxs1021("div", { className: "flex items-center gap-4", children: [
|
|
53627
|
+
/* @__PURE__ */ jsxs1021("div", { className: "flex items-center flex-grow gap-2", children: [
|
|
53628
|
+
icon && React24.cloneElement(icon, {
|
|
53346
53629
|
size: 16,
|
|
53347
53630
|
className: cn("shrink-0", icon.props.className)
|
|
53348
53631
|
}),
|
|
53349
|
-
title && /* @__PURE__ */
|
|
53632
|
+
title && /* @__PURE__ */ jsx1249(ToastTitle, { children: title })
|
|
53350
53633
|
] }),
|
|
53351
53634
|
actions,
|
|
53352
|
-
!hideClose && /* @__PURE__ */
|
|
53635
|
+
!hideClose && /* @__PURE__ */ jsx1249(ToastClose, {})
|
|
53353
53636
|
] }),
|
|
53354
|
-
description && /* @__PURE__ */
|
|
53637
|
+
description && /* @__PURE__ */ jsx1249(ToastDescription, { children: description })
|
|
53355
53638
|
] });
|
|
53356
53639
|
};
|
|
53357
53640
|
function Toaster(_a) {
|
|
@@ -53363,7 +53646,7 @@ function Toaster(_a) {
|
|
|
53363
53646
|
"toasterId"
|
|
53364
53647
|
]);
|
|
53365
53648
|
const { toasts } = useToast({ toasterId });
|
|
53366
|
-
return /* @__PURE__ */
|
|
53649
|
+
return /* @__PURE__ */ jsxs1021(ToastProvider, __spreadProps(__spreadValues({}, props), { children: [
|
|
53367
53650
|
toasts.filter((t) => t.parentId === toasterId).map(
|
|
53368
53651
|
(_a2) => {
|
|
53369
53652
|
var _b2 = _a2, {
|
|
@@ -53383,7 +53666,7 @@ function Toaster(_a) {
|
|
|
53383
53666
|
"icon",
|
|
53384
53667
|
"hideClose"
|
|
53385
53668
|
]);
|
|
53386
|
-
return /* @__PURE__ */
|
|
53669
|
+
return /* @__PURE__ */ jsx1249(Toast, __spreadProps(__spreadValues({}, props2), { children: /* @__PURE__ */ jsx1249(
|
|
53387
53670
|
ToastContent,
|
|
53388
53671
|
{
|
|
53389
53672
|
title,
|
|
@@ -53395,27 +53678,27 @@ function Toaster(_a) {
|
|
|
53395
53678
|
) }), id);
|
|
53396
53679
|
}
|
|
53397
53680
|
),
|
|
53398
|
-
/* @__PURE__ */
|
|
53681
|
+
/* @__PURE__ */ jsx1249(ToastViewport, { className })
|
|
53399
53682
|
] }));
|
|
53400
53683
|
}
|
|
53401
53684
|
|
|
53402
53685
|
// src/components/Tooltip/Tooltip.tsx
|
|
53403
|
-
import * as
|
|
53686
|
+
import * as React25 from "react";
|
|
53404
53687
|
import * as TooltipPrimitive from "@radix-ui/react-tooltip";
|
|
53405
|
-
import { jsx as
|
|
53688
|
+
import { jsx as jsx1250 } from "react/jsx-runtime";
|
|
53406
53689
|
var TooltipProvider = (_a) => {
|
|
53407
53690
|
var _b = _a, {
|
|
53408
53691
|
delayDuration = 0
|
|
53409
53692
|
} = _b, props = __objRest(_b, [
|
|
53410
53693
|
"delayDuration"
|
|
53411
53694
|
]);
|
|
53412
|
-
return /* @__PURE__ */
|
|
53695
|
+
return /* @__PURE__ */ jsx1250(TooltipPrimitive.Provider, __spreadValues({ delayDuration }, props));
|
|
53413
53696
|
};
|
|
53414
53697
|
var Tooltip = TooltipPrimitive.Root;
|
|
53415
53698
|
var TooltipTrigger = TooltipPrimitive.Trigger;
|
|
53416
|
-
var TooltipContent =
|
|
53699
|
+
var TooltipContent = React25.forwardRef((_a, ref) => {
|
|
53417
53700
|
var _b = _a, { className, sideOffset = 4 } = _b, props = __objRest(_b, ["className", "sideOffset"]);
|
|
53418
|
-
return /* @__PURE__ */
|
|
53701
|
+
return /* @__PURE__ */ jsx1250(
|
|
53419
53702
|
TooltipPrimitive.Content,
|
|
53420
53703
|
__spreadValues({
|
|
53421
53704
|
ref,
|
|
@@ -53666,6 +53949,11 @@ export {
|
|
|
53666
53949
|
CameraPlusIcon,
|
|
53667
53950
|
Car1Icon,
|
|
53668
53951
|
Car2Icon,
|
|
53952
|
+
Carousel,
|
|
53953
|
+
CarouselContent,
|
|
53954
|
+
CarouselItem,
|
|
53955
|
+
CarouselNext,
|
|
53956
|
+
CarouselPrevious,
|
|
53669
53957
|
Certificate1Icon,
|
|
53670
53958
|
Certificate2Icon,
|
|
53671
53959
|
ChartBreakoutCircleIcon,
|
|
@@ -54495,6 +54783,12 @@ export {
|
|
|
54495
54783
|
Share7Icon,
|
|
54496
54784
|
ShareArrowIcon,
|
|
54497
54785
|
ShareIcon,
|
|
54786
|
+
Sheet,
|
|
54787
|
+
SheetClose,
|
|
54788
|
+
SheetContent,
|
|
54789
|
+
SheetHeader,
|
|
54790
|
+
SheetTitle,
|
|
54791
|
+
SheetTrigger,
|
|
54498
54792
|
Shield1Icon,
|
|
54499
54793
|
Shield2Icon,
|
|
54500
54794
|
Shield3Icon,
|