shadcn-ui-react 0.2.7 → 0.3.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/README.md +215 -91
- package/dist/index.cjs +889 -892
- package/dist/index.d.cts +102 -68
- package/dist/index.d.ts +102 -68
- package/dist/index.js +862 -861
- package/dist/style.css +213 -57
- package/package.json +76 -57
package/dist/index.cjs
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __create = Object.create;
|
|
2
3
|
var __defProp = Object.defineProperty;
|
|
3
4
|
var __defProps = Object.defineProperties;
|
|
@@ -290,11 +291,6 @@ __export(index_exports, {
|
|
|
290
291
|
});
|
|
291
292
|
module.exports = __toCommonJS(index_exports);
|
|
292
293
|
|
|
293
|
-
// src/components/accordion.tsx
|
|
294
|
-
var AccordionPrimitive = __toESM(require("@radix-ui/react-accordion"), 1);
|
|
295
|
-
var import_react_icons = require("@radix-ui/react-icons");
|
|
296
|
-
var React = __toESM(require("react"), 1);
|
|
297
|
-
|
|
298
294
|
// src/utils/utils.ts
|
|
299
295
|
var import_clsx = require("clsx");
|
|
300
296
|
var import_tailwind_merge = require("tailwind-merge");
|
|
@@ -302,7 +298,10 @@ function cn(...inputs) {
|
|
|
302
298
|
return (0, import_tailwind_merge.twMerge)((0, import_clsx.clsx)(inputs));
|
|
303
299
|
}
|
|
304
300
|
|
|
305
|
-
// src/components/accordion.tsx
|
|
301
|
+
// src/components/Accordion/accordion.tsx
|
|
302
|
+
var AccordionPrimitive = __toESM(require("@radix-ui/react-accordion"), 1);
|
|
303
|
+
var import_react_icons = require("@radix-ui/react-icons");
|
|
304
|
+
var React = __toESM(require("react"), 1);
|
|
306
305
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
307
306
|
var Accordion = AccordionPrimitive.Root;
|
|
308
307
|
var AccordionItem = React.forwardRef((_a, ref) => {
|
|
@@ -577,10 +576,11 @@ var BreadcrumbEllipsis = (_a) => {
|
|
|
577
576
|
};
|
|
578
577
|
BreadcrumbEllipsis.displayName = "BreadcrumbElipssis";
|
|
579
578
|
|
|
580
|
-
// src/components/button.tsx
|
|
579
|
+
// src/components/Button/button.tsx
|
|
581
580
|
var import_react_slot2 = require("@radix-ui/react-slot");
|
|
582
581
|
var import_class_variance_authority3 = require("class-variance-authority");
|
|
583
582
|
var React5 = __toESM(require("react"), 1);
|
|
583
|
+
var import_lucide_react = require("lucide-react");
|
|
584
584
|
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
585
585
|
var buttonVariants = (0, import_class_variance_authority3.cva)(
|
|
586
586
|
"inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50",
|
|
@@ -609,21 +609,47 @@ var buttonVariants = (0, import_class_variance_authority3.cva)(
|
|
|
609
609
|
);
|
|
610
610
|
var Button = React5.forwardRef(
|
|
611
611
|
(_a, ref) => {
|
|
612
|
-
var _b = _a, {
|
|
612
|
+
var _b = _a, {
|
|
613
|
+
className,
|
|
614
|
+
variant,
|
|
615
|
+
size,
|
|
616
|
+
asChild = false,
|
|
617
|
+
loading = false,
|
|
618
|
+
loaderClassName,
|
|
619
|
+
children
|
|
620
|
+
} = _b, props = __objRest(_b, [
|
|
621
|
+
"className",
|
|
622
|
+
"variant",
|
|
623
|
+
"size",
|
|
624
|
+
"asChild",
|
|
625
|
+
"loading",
|
|
626
|
+
"loaderClassName",
|
|
627
|
+
"children"
|
|
628
|
+
]);
|
|
613
629
|
const Comp = asChild ? import_react_slot2.Slot : "button";
|
|
614
|
-
return /* @__PURE__ */ (0, import_jsx_runtime6.
|
|
630
|
+
return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
|
|
615
631
|
Comp,
|
|
616
|
-
__spreadValues({
|
|
617
|
-
className: cn(
|
|
618
|
-
|
|
619
|
-
|
|
632
|
+
__spreadProps(__spreadValues({
|
|
633
|
+
className: cn(
|
|
634
|
+
buttonVariants({ variant, size }),
|
|
635
|
+
className,
|
|
636
|
+
loading && "relative"
|
|
637
|
+
),
|
|
638
|
+
ref,
|
|
639
|
+
disabled: loading || props.disabled
|
|
640
|
+
}, props), {
|
|
641
|
+
children: [
|
|
642
|
+
loading ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(import_lucide_react.Loader2, { className: cn(loaderClassName, "animate-spin mr-2") }) : null,
|
|
643
|
+
children
|
|
644
|
+
]
|
|
645
|
+
})
|
|
620
646
|
);
|
|
621
647
|
}
|
|
622
648
|
);
|
|
623
649
|
Button.displayName = "Button";
|
|
624
650
|
|
|
625
651
|
// node_modules/react-day-picker/dist/esm/DayPicker.js
|
|
626
|
-
var
|
|
652
|
+
var import_react32 = __toESM(require("react"), 1);
|
|
627
653
|
|
|
628
654
|
// node_modules/react-day-picker/dist/esm/UI.js
|
|
629
655
|
var UI;
|
|
@@ -668,6 +694,17 @@ var SelectionState;
|
|
|
668
694
|
SelectionState2["range_start"] = "range_start";
|
|
669
695
|
SelectionState2["selected"] = "selected";
|
|
670
696
|
})(SelectionState || (SelectionState = {}));
|
|
697
|
+
var Animation;
|
|
698
|
+
(function(Animation2) {
|
|
699
|
+
Animation2["weeks_before_enter"] = "weeks_before_enter";
|
|
700
|
+
Animation2["weeks_before_exit"] = "weeks_before_exit";
|
|
701
|
+
Animation2["weeks_after_enter"] = "weeks_after_enter";
|
|
702
|
+
Animation2["weeks_after_exit"] = "weeks_after_exit";
|
|
703
|
+
Animation2["caption_after_enter"] = "caption_after_enter";
|
|
704
|
+
Animation2["caption_after_exit"] = "caption_after_exit";
|
|
705
|
+
Animation2["caption_before_enter"] = "caption_before_enter";
|
|
706
|
+
Animation2["caption_before_exit"] = "caption_before_exit";
|
|
707
|
+
})(Animation || (Animation = {}));
|
|
671
708
|
|
|
672
709
|
// node_modules/@date-fns/tz/constants/index.js
|
|
673
710
|
var constructFromSymbol = Symbol.for("constructDateFrom");
|
|
@@ -944,8 +981,8 @@ function getDefaultOptions() {
|
|
|
944
981
|
// node_modules/date-fns/startOfWeek.js
|
|
945
982
|
function startOfWeek(date, options) {
|
|
946
983
|
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
947
|
-
const
|
|
948
|
-
const weekStartsOn = (_h = (_g = (_d = (_c = options == null ? void 0 : options.weekStartsOn) != null ? _c : (_b = (_a = options == null ? void 0 : options.locale) == null ? void 0 : _a.options) == null ? void 0 : _b.weekStartsOn) != null ? _d :
|
|
984
|
+
const defaultOptions2 = getDefaultOptions();
|
|
985
|
+
const weekStartsOn = (_h = (_g = (_d = (_c = options == null ? void 0 : options.weekStartsOn) != null ? _c : (_b = (_a = options == null ? void 0 : options.locale) == null ? void 0 : _a.options) == null ? void 0 : _b.weekStartsOn) != null ? _d : defaultOptions2.weekStartsOn) != null ? _g : (_f = (_e = defaultOptions2.locale) == null ? void 0 : _e.options) == null ? void 0 : _f.weekStartsOn) != null ? _h : 0;
|
|
949
986
|
const _date = toDate(date, options == null ? void 0 : options.in);
|
|
950
987
|
const day = _date.getDay();
|
|
951
988
|
const diff = (day < weekStartsOn ? 7 : 0) + day - weekStartsOn;
|
|
@@ -1171,8 +1208,8 @@ function startOfYear(date, options) {
|
|
|
1171
1208
|
// node_modules/date-fns/endOfWeek.js
|
|
1172
1209
|
function endOfWeek(date, options) {
|
|
1173
1210
|
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
1174
|
-
const
|
|
1175
|
-
const weekStartsOn = (_h = (_g = (_d = (_c = options == null ? void 0 : options.weekStartsOn) != null ? _c : (_b = (_a = options == null ? void 0 : options.locale) == null ? void 0 : _a.options) == null ? void 0 : _b.weekStartsOn) != null ? _d :
|
|
1211
|
+
const defaultOptions2 = getDefaultOptions();
|
|
1212
|
+
const weekStartsOn = (_h = (_g = (_d = (_c = options == null ? void 0 : options.weekStartsOn) != null ? _c : (_b = (_a = options == null ? void 0 : options.locale) == null ? void 0 : _a.options) == null ? void 0 : _b.weekStartsOn) != null ? _d : defaultOptions2.weekStartsOn) != null ? _g : (_f = (_e = defaultOptions2.locale) == null ? void 0 : _e.options) == null ? void 0 : _f.weekStartsOn) != null ? _h : 0;
|
|
1176
1213
|
const _date = toDate(date, options == null ? void 0 : options.in);
|
|
1177
1214
|
const day = _date.getDay();
|
|
1178
1215
|
const diff = (day < weekStartsOn ? -7 : 0) + 6 - (day - weekStartsOn);
|
|
@@ -1715,8 +1752,8 @@ function getWeekYear(date, options) {
|
|
|
1715
1752
|
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
1716
1753
|
const _date = toDate(date, options == null ? void 0 : options.in);
|
|
1717
1754
|
const year = _date.getFullYear();
|
|
1718
|
-
const
|
|
1719
|
-
const firstWeekContainsDate = (_h = (_g = (_d = (_c = options == null ? void 0 : options.firstWeekContainsDate) != null ? _c : (_b = (_a = options == null ? void 0 : options.locale) == null ? void 0 : _a.options) == null ? void 0 : _b.firstWeekContainsDate) != null ? _d :
|
|
1755
|
+
const defaultOptions2 = getDefaultOptions();
|
|
1756
|
+
const firstWeekContainsDate = (_h = (_g = (_d = (_c = options == null ? void 0 : options.firstWeekContainsDate) != null ? _c : (_b = (_a = options == null ? void 0 : options.locale) == null ? void 0 : _a.options) == null ? void 0 : _b.firstWeekContainsDate) != null ? _d : defaultOptions2.firstWeekContainsDate) != null ? _g : (_f = (_e = defaultOptions2.locale) == null ? void 0 : _e.options) == null ? void 0 : _f.firstWeekContainsDate) != null ? _h : 1;
|
|
1720
1757
|
const firstWeekOfNextYear = constructFrom((options == null ? void 0 : options.in) || date, 0);
|
|
1721
1758
|
firstWeekOfNextYear.setFullYear(year + 1, 0, firstWeekContainsDate);
|
|
1722
1759
|
firstWeekOfNextYear.setHours(0, 0, 0, 0);
|
|
@@ -1737,8 +1774,8 @@ function getWeekYear(date, options) {
|
|
|
1737
1774
|
// node_modules/date-fns/startOfWeekYear.js
|
|
1738
1775
|
function startOfWeekYear(date, options) {
|
|
1739
1776
|
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
1740
|
-
const
|
|
1741
|
-
const firstWeekContainsDate = (_h = (_g = (_d = (_c = options == null ? void 0 : options.firstWeekContainsDate) != null ? _c : (_b = (_a = options == null ? void 0 : options.locale) == null ? void 0 : _a.options) == null ? void 0 : _b.firstWeekContainsDate) != null ? _d :
|
|
1777
|
+
const defaultOptions2 = getDefaultOptions();
|
|
1778
|
+
const firstWeekContainsDate = (_h = (_g = (_d = (_c = options == null ? void 0 : options.firstWeekContainsDate) != null ? _c : (_b = (_a = options == null ? void 0 : options.locale) == null ? void 0 : _a.options) == null ? void 0 : _b.firstWeekContainsDate) != null ? _d : defaultOptions2.firstWeekContainsDate) != null ? _g : (_f = (_e = defaultOptions2.locale) == null ? void 0 : _e.options) == null ? void 0 : _f.firstWeekContainsDate) != null ? _h : 1;
|
|
1742
1779
|
const year = getWeekYear(date, options);
|
|
1743
1780
|
const firstWeek = constructFrom((options == null ? void 0 : options.in) || date, 0);
|
|
1744
1781
|
firstWeek.setFullYear(year, 0, firstWeekContainsDate);
|
|
@@ -2552,10 +2589,10 @@ var doubleQuoteRegExp = /''/g;
|
|
|
2552
2589
|
var unescapedLatinCharacterRegExp = /[a-zA-Z]/;
|
|
2553
2590
|
function format(date, formatStr, options) {
|
|
2554
2591
|
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p, _q, _r;
|
|
2555
|
-
const
|
|
2556
|
-
const locale = (_b = (_a = options == null ? void 0 : options.locale) != null ? _a :
|
|
2557
|
-
const firstWeekContainsDate = (_j = (_i = (_f = (_e = options == null ? void 0 : options.firstWeekContainsDate) != null ? _e : (_d = (_c = options == null ? void 0 : options.locale) == null ? void 0 : _c.options) == null ? void 0 : _d.firstWeekContainsDate) != null ? _f :
|
|
2558
|
-
const weekStartsOn = (_r = (_q = (_n = (_m = options == null ? void 0 : options.weekStartsOn) != null ? _m : (_l = (_k = options == null ? void 0 : options.locale) == null ? void 0 : _k.options) == null ? void 0 : _l.weekStartsOn) != null ? _n :
|
|
2592
|
+
const defaultOptions2 = getDefaultOptions();
|
|
2593
|
+
const locale = (_b = (_a = options == null ? void 0 : options.locale) != null ? _a : defaultOptions2.locale) != null ? _b : enUS;
|
|
2594
|
+
const firstWeekContainsDate = (_j = (_i = (_f = (_e = options == null ? void 0 : options.firstWeekContainsDate) != null ? _e : (_d = (_c = options == null ? void 0 : options.locale) == null ? void 0 : _c.options) == null ? void 0 : _d.firstWeekContainsDate) != null ? _f : defaultOptions2.firstWeekContainsDate) != null ? _i : (_h = (_g = defaultOptions2.locale) == null ? void 0 : _g.options) == null ? void 0 : _h.firstWeekContainsDate) != null ? _j : 1;
|
|
2595
|
+
const weekStartsOn = (_r = (_q = (_n = (_m = options == null ? void 0 : options.weekStartsOn) != null ? _m : (_l = (_k = options == null ? void 0 : options.locale) == null ? void 0 : _k.options) == null ? void 0 : _l.weekStartsOn) != null ? _n : defaultOptions2.weekStartsOn) != null ? _q : (_p = (_o = defaultOptions2.locale) == null ? void 0 : _o.options) == null ? void 0 : _p.weekStartsOn) != null ? _r : 0;
|
|
2559
2596
|
const originalDate = toDate(date, options == null ? void 0 : options.in);
|
|
2560
2597
|
if (!isValid(originalDate)) {
|
|
2561
2598
|
throw new RangeError("Invalid time value");
|
|
@@ -2747,140 +2784,140 @@ var DateLib = class {
|
|
|
2747
2784
|
return new Date(year, monthIndex, date);
|
|
2748
2785
|
};
|
|
2749
2786
|
this.addDays = (date, amount) => {
|
|
2750
|
-
var _a
|
|
2751
|
-
return (
|
|
2787
|
+
var _a;
|
|
2788
|
+
return ((_a = this.overrides) == null ? void 0 : _a.addDays) ? this.overrides.addDays(date, amount) : addDays(date, amount);
|
|
2752
2789
|
};
|
|
2753
2790
|
this.addMonths = (date, amount) => {
|
|
2754
|
-
var _a
|
|
2755
|
-
return (
|
|
2791
|
+
var _a;
|
|
2792
|
+
return ((_a = this.overrides) == null ? void 0 : _a.addMonths) ? this.overrides.addMonths(date, amount) : addMonths(date, amount);
|
|
2756
2793
|
};
|
|
2757
2794
|
this.addWeeks = (date, amount) => {
|
|
2758
|
-
var _a
|
|
2759
|
-
return (
|
|
2795
|
+
var _a;
|
|
2796
|
+
return ((_a = this.overrides) == null ? void 0 : _a.addWeeks) ? this.overrides.addWeeks(date, amount) : addWeeks(date, amount);
|
|
2760
2797
|
};
|
|
2761
2798
|
this.addYears = (date, amount) => {
|
|
2762
|
-
var _a
|
|
2763
|
-
return (
|
|
2799
|
+
var _a;
|
|
2800
|
+
return ((_a = this.overrides) == null ? void 0 : _a.addYears) ? this.overrides.addYears(date, amount) : addYears(date, amount);
|
|
2764
2801
|
};
|
|
2765
2802
|
this.differenceInCalendarDays = (dateLeft, dateRight) => {
|
|
2766
|
-
var _a
|
|
2767
|
-
return (
|
|
2803
|
+
var _a;
|
|
2804
|
+
return ((_a = this.overrides) == null ? void 0 : _a.differenceInCalendarDays) ? this.overrides.differenceInCalendarDays(dateLeft, dateRight) : differenceInCalendarDays(dateLeft, dateRight);
|
|
2768
2805
|
};
|
|
2769
2806
|
this.differenceInCalendarMonths = (dateLeft, dateRight) => {
|
|
2770
|
-
var _a
|
|
2771
|
-
return (
|
|
2807
|
+
var _a;
|
|
2808
|
+
return ((_a = this.overrides) == null ? void 0 : _a.differenceInCalendarMonths) ? this.overrides.differenceInCalendarMonths(dateLeft, dateRight) : differenceInCalendarMonths(dateLeft, dateRight);
|
|
2772
2809
|
};
|
|
2773
2810
|
this.eachMonthOfInterval = (interval) => {
|
|
2774
|
-
var _a
|
|
2775
|
-
return (
|
|
2811
|
+
var _a;
|
|
2812
|
+
return ((_a = this.overrides) == null ? void 0 : _a.eachMonthOfInterval) ? this.overrides.eachMonthOfInterval(interval) : eachMonthOfInterval(interval);
|
|
2776
2813
|
};
|
|
2777
|
-
this.endOfBroadcastWeek = (date
|
|
2778
|
-
var _a
|
|
2779
|
-
return (
|
|
2814
|
+
this.endOfBroadcastWeek = (date) => {
|
|
2815
|
+
var _a;
|
|
2816
|
+
return ((_a = this.overrides) == null ? void 0 : _a.endOfBroadcastWeek) ? this.overrides.endOfBroadcastWeek(date, this) : endOfBroadcastWeek(date, this);
|
|
2780
2817
|
};
|
|
2781
2818
|
this.endOfISOWeek = (date) => {
|
|
2782
|
-
var _a
|
|
2783
|
-
return (
|
|
2819
|
+
var _a;
|
|
2820
|
+
return ((_a = this.overrides) == null ? void 0 : _a.endOfISOWeek) ? this.overrides.endOfISOWeek(date) : endOfISOWeek(date);
|
|
2784
2821
|
};
|
|
2785
2822
|
this.endOfMonth = (date) => {
|
|
2786
|
-
var _a
|
|
2787
|
-
return (
|
|
2823
|
+
var _a;
|
|
2824
|
+
return ((_a = this.overrides) == null ? void 0 : _a.endOfMonth) ? this.overrides.endOfMonth(date) : endOfMonth(date);
|
|
2788
2825
|
};
|
|
2789
|
-
this.endOfWeek = (date
|
|
2790
|
-
var _a
|
|
2791
|
-
return (
|
|
2826
|
+
this.endOfWeek = (date) => {
|
|
2827
|
+
var _a;
|
|
2828
|
+
return ((_a = this.overrides) == null ? void 0 : _a.endOfWeek) ? this.overrides.endOfWeek(date, this.options) : endOfWeek(date, this.options);
|
|
2792
2829
|
};
|
|
2793
2830
|
this.endOfYear = (date) => {
|
|
2794
|
-
var _a
|
|
2795
|
-
return (
|
|
2831
|
+
var _a;
|
|
2832
|
+
return ((_a = this.overrides) == null ? void 0 : _a.endOfYear) ? this.overrides.endOfYear(date) : endOfYear(date);
|
|
2796
2833
|
};
|
|
2797
|
-
this.format = (date, formatStr
|
|
2798
|
-
var _a
|
|
2799
|
-
const formatted = (
|
|
2834
|
+
this.format = (date, formatStr) => {
|
|
2835
|
+
var _a;
|
|
2836
|
+
const formatted = ((_a = this.overrides) == null ? void 0 : _a.format) ? this.overrides.format(date, formatStr, this.options) : format(date, formatStr, this.options);
|
|
2800
2837
|
if (this.options.numerals && this.options.numerals !== "latn") {
|
|
2801
2838
|
return this.replaceDigits(formatted);
|
|
2802
2839
|
}
|
|
2803
2840
|
return formatted;
|
|
2804
2841
|
};
|
|
2805
2842
|
this.getISOWeek = (date) => {
|
|
2806
|
-
var _a
|
|
2807
|
-
return (
|
|
2843
|
+
var _a;
|
|
2844
|
+
return ((_a = this.overrides) == null ? void 0 : _a.getISOWeek) ? this.overrides.getISOWeek(date) : getISOWeek(date);
|
|
2808
2845
|
};
|
|
2809
2846
|
this.getMonth = (date) => {
|
|
2810
|
-
var _a
|
|
2811
|
-
return (
|
|
2847
|
+
var _a;
|
|
2848
|
+
return ((_a = this.overrides) == null ? void 0 : _a.getMonth) ? this.overrides.getMonth(date, this.options) : getMonth(date, this.options);
|
|
2812
2849
|
};
|
|
2813
2850
|
this.getYear = (date) => {
|
|
2814
|
-
var _a
|
|
2815
|
-
return (
|
|
2851
|
+
var _a;
|
|
2852
|
+
return ((_a = this.overrides) == null ? void 0 : _a.getYear) ? this.overrides.getYear(date, this.options) : getYear(date, this.options);
|
|
2816
2853
|
};
|
|
2817
|
-
this.getWeek = (date
|
|
2818
|
-
var _a
|
|
2819
|
-
return (
|
|
2854
|
+
this.getWeek = (date) => {
|
|
2855
|
+
var _a;
|
|
2856
|
+
return ((_a = this.overrides) == null ? void 0 : _a.getWeek) ? this.overrides.getWeek(date, this.options) : getWeek(date, this.options);
|
|
2820
2857
|
};
|
|
2821
2858
|
this.isAfter = (date, dateToCompare) => {
|
|
2822
|
-
var _a
|
|
2823
|
-
return (
|
|
2859
|
+
var _a;
|
|
2860
|
+
return ((_a = this.overrides) == null ? void 0 : _a.isAfter) ? this.overrides.isAfter(date, dateToCompare) : isAfter(date, dateToCompare);
|
|
2824
2861
|
};
|
|
2825
2862
|
this.isBefore = (date, dateToCompare) => {
|
|
2826
|
-
var _a
|
|
2827
|
-
return (
|
|
2863
|
+
var _a;
|
|
2864
|
+
return ((_a = this.overrides) == null ? void 0 : _a.isBefore) ? this.overrides.isBefore(date, dateToCompare) : isBefore(date, dateToCompare);
|
|
2828
2865
|
};
|
|
2829
2866
|
this.isDate = (value) => {
|
|
2830
|
-
var _a
|
|
2831
|
-
return (
|
|
2867
|
+
var _a;
|
|
2868
|
+
return ((_a = this.overrides) == null ? void 0 : _a.isDate) ? this.overrides.isDate(value) : isDate(value);
|
|
2832
2869
|
};
|
|
2833
2870
|
this.isSameDay = (dateLeft, dateRight) => {
|
|
2834
|
-
var _a
|
|
2835
|
-
return (
|
|
2871
|
+
var _a;
|
|
2872
|
+
return ((_a = this.overrides) == null ? void 0 : _a.isSameDay) ? this.overrides.isSameDay(dateLeft, dateRight) : isSameDay(dateLeft, dateRight);
|
|
2836
2873
|
};
|
|
2837
2874
|
this.isSameMonth = (dateLeft, dateRight) => {
|
|
2838
|
-
var _a
|
|
2839
|
-
return (
|
|
2875
|
+
var _a;
|
|
2876
|
+
return ((_a = this.overrides) == null ? void 0 : _a.isSameMonth) ? this.overrides.isSameMonth(dateLeft, dateRight) : isSameMonth(dateLeft, dateRight);
|
|
2840
2877
|
};
|
|
2841
2878
|
this.isSameYear = (dateLeft, dateRight) => {
|
|
2842
|
-
var _a
|
|
2843
|
-
return (
|
|
2879
|
+
var _a;
|
|
2880
|
+
return ((_a = this.overrides) == null ? void 0 : _a.isSameYear) ? this.overrides.isSameYear(dateLeft, dateRight) : isSameYear(dateLeft, dateRight);
|
|
2844
2881
|
};
|
|
2845
2882
|
this.max = (dates) => {
|
|
2846
|
-
var _a
|
|
2847
|
-
return (
|
|
2883
|
+
var _a;
|
|
2884
|
+
return ((_a = this.overrides) == null ? void 0 : _a.max) ? this.overrides.max(dates) : max(dates);
|
|
2848
2885
|
};
|
|
2849
2886
|
this.min = (dates) => {
|
|
2850
|
-
var _a
|
|
2851
|
-
return (
|
|
2887
|
+
var _a;
|
|
2888
|
+
return ((_a = this.overrides) == null ? void 0 : _a.min) ? this.overrides.min(dates) : min(dates);
|
|
2852
2889
|
};
|
|
2853
2890
|
this.setMonth = (date, month) => {
|
|
2854
|
-
var _a
|
|
2855
|
-
return (
|
|
2891
|
+
var _a;
|
|
2892
|
+
return ((_a = this.overrides) == null ? void 0 : _a.setMonth) ? this.overrides.setMonth(date, month) : setMonth(date, month);
|
|
2856
2893
|
};
|
|
2857
2894
|
this.setYear = (date, year) => {
|
|
2858
|
-
var _a
|
|
2859
|
-
return (
|
|
2895
|
+
var _a;
|
|
2896
|
+
return ((_a = this.overrides) == null ? void 0 : _a.setYear) ? this.overrides.setYear(date, year) : setYear(date, year);
|
|
2860
2897
|
};
|
|
2861
|
-
this.startOfBroadcastWeek = (date
|
|
2862
|
-
var _a
|
|
2863
|
-
return (
|
|
2898
|
+
this.startOfBroadcastWeek = (date) => {
|
|
2899
|
+
var _a;
|
|
2900
|
+
return ((_a = this.overrides) == null ? void 0 : _a.startOfBroadcastWeek) ? this.overrides.startOfBroadcastWeek(date, this) : startOfBroadcastWeek(date, this);
|
|
2864
2901
|
};
|
|
2865
2902
|
this.startOfDay = (date) => {
|
|
2866
|
-
var _a
|
|
2867
|
-
return (
|
|
2903
|
+
var _a;
|
|
2904
|
+
return ((_a = this.overrides) == null ? void 0 : _a.startOfDay) ? this.overrides.startOfDay(date) : startOfDay(date);
|
|
2868
2905
|
};
|
|
2869
2906
|
this.startOfISOWeek = (date) => {
|
|
2870
|
-
var _a
|
|
2871
|
-
return (
|
|
2907
|
+
var _a;
|
|
2908
|
+
return ((_a = this.overrides) == null ? void 0 : _a.startOfISOWeek) ? this.overrides.startOfISOWeek(date) : startOfISOWeek(date);
|
|
2872
2909
|
};
|
|
2873
2910
|
this.startOfMonth = (date) => {
|
|
2874
|
-
var _a
|
|
2875
|
-
return (
|
|
2911
|
+
var _a;
|
|
2912
|
+
return ((_a = this.overrides) == null ? void 0 : _a.startOfMonth) ? this.overrides.startOfMonth(date) : startOfMonth(date);
|
|
2876
2913
|
};
|
|
2877
2914
|
this.startOfWeek = (date) => {
|
|
2878
|
-
var _a
|
|
2879
|
-
return (
|
|
2915
|
+
var _a;
|
|
2916
|
+
return ((_a = this.overrides) == null ? void 0 : _a.startOfWeek) ? this.overrides.startOfWeek(date, this.options) : startOfWeek(date, this.options);
|
|
2880
2917
|
};
|
|
2881
2918
|
this.startOfYear = (date) => {
|
|
2882
|
-
var _a
|
|
2883
|
-
return (
|
|
2919
|
+
var _a;
|
|
2920
|
+
return ((_a = this.overrides) == null ? void 0 : _a.startOfYear) ? this.overrides.startOfYear(date) : startOfYear(date);
|
|
2884
2921
|
};
|
|
2885
2922
|
this.options = __spreadValues({ locale: enUS }, options);
|
|
2886
2923
|
this.overrides = overrides;
|
|
@@ -2991,7 +3028,7 @@ function Chevron(props) {
|
|
|
2991
3028
|
orientation === "up" && import_react3.default.createElement("polygon", { points: "6.77 17 12.5 11.43 18.24 17 20 15.28 12.5 8 5 15.28" }),
|
|
2992
3029
|
orientation === "down" && import_react3.default.createElement("polygon", { points: "6.77 8 12.5 13.57 18.24 8 20 9.72 12.5 17 5 9.72" }),
|
|
2993
3030
|
orientation === "left" && import_react3.default.createElement("polygon", { points: "16 18.112 9.81111111 12 16 5.87733333 14.0888889 4 6 12 14.0888889 20" }),
|
|
2994
|
-
orientation === "right" && import_react3.default.createElement("polygon", { points: "8 18.
|
|
3031
|
+
orientation === "right" && import_react3.default.createElement("polygon", { points: "8 18.112 14.18888889 12 8 5.87733333 9.91111111 4 18 12 9.91111111 20" })
|
|
2995
3032
|
);
|
|
2996
3033
|
}
|
|
2997
3034
|
|
|
@@ -3097,17 +3134,27 @@ var import_react15 = __toESM(require("react"), 1);
|
|
|
3097
3134
|
function Nav(props) {
|
|
3098
3135
|
const _a = props, { onPreviousClick, onNextClick, previousMonth, nextMonth } = _a, navProps = __objRest(_a, ["onPreviousClick", "onNextClick", "previousMonth", "nextMonth"]);
|
|
3099
3136
|
const { components, classNames, labels: { labelPrevious: labelPrevious2, labelNext: labelNext2 } } = useDayPicker();
|
|
3137
|
+
const handleNextClick = (0, import_react15.useCallback)((e) => {
|
|
3138
|
+
if (nextMonth) {
|
|
3139
|
+
onNextClick == null ? void 0 : onNextClick(e);
|
|
3140
|
+
}
|
|
3141
|
+
}, [nextMonth, onNextClick]);
|
|
3142
|
+
const handlePreviousClick = (0, import_react15.useCallback)((e) => {
|
|
3143
|
+
if (previousMonth) {
|
|
3144
|
+
onPreviousClick == null ? void 0 : onPreviousClick(e);
|
|
3145
|
+
}
|
|
3146
|
+
}, [previousMonth, onPreviousClick]);
|
|
3100
3147
|
return import_react15.default.createElement(
|
|
3101
3148
|
"nav",
|
|
3102
3149
|
__spreadValues({}, navProps),
|
|
3103
3150
|
import_react15.default.createElement(
|
|
3104
3151
|
components.PreviousMonthButton,
|
|
3105
|
-
{ type: "button", className: classNames[UI.PreviousMonthButton], tabIndex: previousMonth ? void 0 : -1, disabled: previousMonth ? void 0 : true, "aria-label": labelPrevious2(previousMonth), onClick:
|
|
3152
|
+
{ type: "button", className: classNames[UI.PreviousMonthButton], tabIndex: previousMonth ? void 0 : -1, "aria-disabled": previousMonth ? void 0 : true, "aria-label": labelPrevious2(previousMonth), onClick: handlePreviousClick },
|
|
3106
3153
|
import_react15.default.createElement(components.Chevron, { disabled: previousMonth ? void 0 : true, className: classNames[UI.Chevron], orientation: "left" })
|
|
3107
3154
|
),
|
|
3108
3155
|
import_react15.default.createElement(
|
|
3109
3156
|
components.NextMonthButton,
|
|
3110
|
-
{ type: "button", className: classNames[UI.NextMonthButton], tabIndex: nextMonth ? void 0 : -1, disabled: nextMonth ? void 0 : true, "aria-label": labelNext2(nextMonth), onClick:
|
|
3157
|
+
{ type: "button", className: classNames[UI.NextMonthButton], tabIndex: nextMonth ? void 0 : -1, "aria-disabled": nextMonth ? void 0 : true, "aria-label": labelNext2(nextMonth), onClick: handleNextClick },
|
|
3111
3158
|
import_react15.default.createElement(components.Chevron, { disabled: nextMonth ? void 0 : true, orientation: "right", className: classNames[UI.Chevron] })
|
|
3112
3159
|
)
|
|
3113
3160
|
);
|
|
@@ -3136,7 +3183,8 @@ function PreviousMonthButton(props) {
|
|
|
3136
3183
|
// node_modules/react-day-picker/dist/esm/components/Root.js
|
|
3137
3184
|
var import_react19 = __toESM(require("react"), 1);
|
|
3138
3185
|
function Root4(props) {
|
|
3139
|
-
|
|
3186
|
+
const _a = props, { rootRef } = _a, rest = __objRest(_a, ["rootRef"]);
|
|
3187
|
+
return import_react19.default.createElement("div", __spreadProps(__spreadValues({}, rest), { ref: rootRef }));
|
|
3140
3188
|
}
|
|
3141
3189
|
|
|
3142
3190
|
// node_modules/react-day-picker/dist/esm/components/Select.js
|
|
@@ -3229,6 +3277,9 @@ function getDefaultClassNames() {
|
|
|
3229
3277
|
for (const key in SelectionState) {
|
|
3230
3278
|
classNames[SelectionState[key]] = `rdp-${SelectionState[key]}`;
|
|
3231
3279
|
}
|
|
3280
|
+
for (const key in Animation) {
|
|
3281
|
+
classNames[Animation[key]] = `rdp-${Animation[key]}`;
|
|
3282
|
+
}
|
|
3232
3283
|
return classNames;
|
|
3233
3284
|
}
|
|
3234
3285
|
|
|
@@ -3443,8 +3494,139 @@ function labelYearDropdown(options) {
|
|
|
3443
3494
|
return "Choose the Year";
|
|
3444
3495
|
}
|
|
3445
3496
|
|
|
3497
|
+
// node_modules/react-day-picker/dist/esm/useAnimation.js
|
|
3498
|
+
var import_react28 = require("react");
|
|
3499
|
+
var asHtmlElement = (element) => {
|
|
3500
|
+
if (element instanceof HTMLElement)
|
|
3501
|
+
return element;
|
|
3502
|
+
return null;
|
|
3503
|
+
};
|
|
3504
|
+
var queryMonthEls = (element) => {
|
|
3505
|
+
var _a;
|
|
3506
|
+
return [
|
|
3507
|
+
...(_a = element.querySelectorAll("[data-animated-month]")) != null ? _a : []
|
|
3508
|
+
];
|
|
3509
|
+
};
|
|
3510
|
+
var queryMonthEl = (element) => asHtmlElement(element.querySelector("[data-animated-month]"));
|
|
3511
|
+
var queryCaptionEl = (element) => asHtmlElement(element.querySelector("[data-animated-caption]"));
|
|
3512
|
+
var queryWeeksEl = (element) => asHtmlElement(element.querySelector("[data-animated-weeks]"));
|
|
3513
|
+
var queryNavEl = (element) => asHtmlElement(element.querySelector("[data-animated-nav]"));
|
|
3514
|
+
var queryWeekdaysEl = (element) => asHtmlElement(element.querySelector("[data-animated-weekdays]"));
|
|
3515
|
+
function useAnimation(rootElRef, enabled, { classNames, months, focused, dateLib }) {
|
|
3516
|
+
const previousRootElSnapshotRef = (0, import_react28.useRef)(null);
|
|
3517
|
+
const previousMonthsRef = (0, import_react28.useRef)(months);
|
|
3518
|
+
const animatingRef = (0, import_react28.useRef)(false);
|
|
3519
|
+
(0, import_react28.useLayoutEffect)(() => {
|
|
3520
|
+
const previousMonths = previousMonthsRef.current;
|
|
3521
|
+
previousMonthsRef.current = months;
|
|
3522
|
+
if (!enabled || !rootElRef.current || // safety check because the ref can be set to anything by consumers
|
|
3523
|
+
!(rootElRef.current instanceof HTMLElement) || // validation required for the animation to work as expected
|
|
3524
|
+
months.length === 0 || previousMonths.length === 0 || months.length !== previousMonths.length) {
|
|
3525
|
+
return;
|
|
3526
|
+
}
|
|
3527
|
+
const isSameMonth2 = dateLib.isSameMonth(months[0].date, previousMonths[0].date);
|
|
3528
|
+
const isAfterPreviousMonth = dateLib.isAfter(months[0].date, previousMonths[0].date);
|
|
3529
|
+
const captionAnimationClass = isAfterPreviousMonth ? classNames[Animation.caption_after_enter] : classNames[Animation.caption_before_enter];
|
|
3530
|
+
const weeksAnimationClass = isAfterPreviousMonth ? classNames[Animation.weeks_after_enter] : classNames[Animation.weeks_before_enter];
|
|
3531
|
+
const previousRootElSnapshot = previousRootElSnapshotRef.current;
|
|
3532
|
+
const rootElSnapshot = rootElRef.current.cloneNode(true);
|
|
3533
|
+
if (rootElSnapshot instanceof HTMLElement) {
|
|
3534
|
+
const currentMonthElsSnapshot = queryMonthEls(rootElSnapshot);
|
|
3535
|
+
currentMonthElsSnapshot.forEach((currentMonthElSnapshot) => {
|
|
3536
|
+
if (!(currentMonthElSnapshot instanceof HTMLElement))
|
|
3537
|
+
return;
|
|
3538
|
+
const previousMonthElSnapshot = queryMonthEl(currentMonthElSnapshot);
|
|
3539
|
+
if (previousMonthElSnapshot && currentMonthElSnapshot.contains(previousMonthElSnapshot)) {
|
|
3540
|
+
currentMonthElSnapshot.removeChild(previousMonthElSnapshot);
|
|
3541
|
+
}
|
|
3542
|
+
const captionEl = queryCaptionEl(currentMonthElSnapshot);
|
|
3543
|
+
if (captionEl) {
|
|
3544
|
+
captionEl.classList.remove(captionAnimationClass);
|
|
3545
|
+
}
|
|
3546
|
+
const weeksEl = queryWeeksEl(currentMonthElSnapshot);
|
|
3547
|
+
if (weeksEl) {
|
|
3548
|
+
weeksEl.classList.remove(weeksAnimationClass);
|
|
3549
|
+
}
|
|
3550
|
+
});
|
|
3551
|
+
previousRootElSnapshotRef.current = rootElSnapshot;
|
|
3552
|
+
} else {
|
|
3553
|
+
previousRootElSnapshotRef.current = null;
|
|
3554
|
+
}
|
|
3555
|
+
if (animatingRef.current || isSameMonth2 || // skip animation if a day is focused because it can cause issues to the animation and is better for a11y
|
|
3556
|
+
focused) {
|
|
3557
|
+
return;
|
|
3558
|
+
}
|
|
3559
|
+
const previousMonthEls = previousRootElSnapshot instanceof HTMLElement ? queryMonthEls(previousRootElSnapshot) : [];
|
|
3560
|
+
const currentMonthEls = queryMonthEls(rootElRef.current);
|
|
3561
|
+
if (currentMonthEls && currentMonthEls.every((el) => el instanceof HTMLElement) && previousMonthEls && previousMonthEls.every((el) => el instanceof HTMLElement)) {
|
|
3562
|
+
animatingRef.current = true;
|
|
3563
|
+
const cleanUpFunctions = [];
|
|
3564
|
+
rootElRef.current.style.isolation = "isolate";
|
|
3565
|
+
const navEl = queryNavEl(rootElRef.current);
|
|
3566
|
+
if (navEl) {
|
|
3567
|
+
navEl.style.zIndex = "1";
|
|
3568
|
+
}
|
|
3569
|
+
currentMonthEls.forEach((currentMonthEl, index) => {
|
|
3570
|
+
const previousMonthEl = previousMonthEls[index];
|
|
3571
|
+
if (!previousMonthEl) {
|
|
3572
|
+
return;
|
|
3573
|
+
}
|
|
3574
|
+
currentMonthEl.style.position = "relative";
|
|
3575
|
+
currentMonthEl.style.overflow = "hidden";
|
|
3576
|
+
const captionEl = queryCaptionEl(currentMonthEl);
|
|
3577
|
+
if (captionEl) {
|
|
3578
|
+
captionEl.classList.add(captionAnimationClass);
|
|
3579
|
+
}
|
|
3580
|
+
const weeksEl = queryWeeksEl(currentMonthEl);
|
|
3581
|
+
if (weeksEl) {
|
|
3582
|
+
weeksEl.classList.add(weeksAnimationClass);
|
|
3583
|
+
}
|
|
3584
|
+
const cleanUp = () => {
|
|
3585
|
+
animatingRef.current = false;
|
|
3586
|
+
if (rootElRef.current) {
|
|
3587
|
+
rootElRef.current.style.isolation = "";
|
|
3588
|
+
}
|
|
3589
|
+
if (navEl) {
|
|
3590
|
+
navEl.style.zIndex = "";
|
|
3591
|
+
}
|
|
3592
|
+
if (captionEl) {
|
|
3593
|
+
captionEl.classList.remove(captionAnimationClass);
|
|
3594
|
+
}
|
|
3595
|
+
if (weeksEl) {
|
|
3596
|
+
weeksEl.classList.remove(weeksAnimationClass);
|
|
3597
|
+
}
|
|
3598
|
+
currentMonthEl.style.position = "";
|
|
3599
|
+
currentMonthEl.style.overflow = "";
|
|
3600
|
+
if (currentMonthEl.contains(previousMonthEl)) {
|
|
3601
|
+
currentMonthEl.removeChild(previousMonthEl);
|
|
3602
|
+
}
|
|
3603
|
+
};
|
|
3604
|
+
cleanUpFunctions.push(cleanUp);
|
|
3605
|
+
previousMonthEl.style.pointerEvents = "none";
|
|
3606
|
+
previousMonthEl.style.position = "absolute";
|
|
3607
|
+
previousMonthEl.style.overflow = "hidden";
|
|
3608
|
+
previousMonthEl.setAttribute("aria-hidden", "true");
|
|
3609
|
+
const previousWeekdaysEl = queryWeekdaysEl(previousMonthEl);
|
|
3610
|
+
if (previousWeekdaysEl) {
|
|
3611
|
+
previousWeekdaysEl.style.opacity = "0";
|
|
3612
|
+
}
|
|
3613
|
+
const previousCaptionEl = queryCaptionEl(previousMonthEl);
|
|
3614
|
+
if (previousCaptionEl) {
|
|
3615
|
+
previousCaptionEl.classList.add(isAfterPreviousMonth ? classNames[Animation.caption_before_exit] : classNames[Animation.caption_after_exit]);
|
|
3616
|
+
previousCaptionEl.addEventListener("animationend", cleanUp);
|
|
3617
|
+
}
|
|
3618
|
+
const previousWeeksEl = queryWeeksEl(previousMonthEl);
|
|
3619
|
+
if (previousWeeksEl) {
|
|
3620
|
+
previousWeeksEl.classList.add(isAfterPreviousMonth ? classNames[Animation.weeks_before_exit] : classNames[Animation.weeks_after_exit]);
|
|
3621
|
+
}
|
|
3622
|
+
currentMonthEl.insertBefore(previousMonthEl, currentMonthEl.firstChild);
|
|
3623
|
+
});
|
|
3624
|
+
}
|
|
3625
|
+
});
|
|
3626
|
+
}
|
|
3627
|
+
|
|
3446
3628
|
// node_modules/react-day-picker/dist/esm/useCalendar.js
|
|
3447
|
-
var
|
|
3629
|
+
var import_react30 = require("react");
|
|
3448
3630
|
|
|
3449
3631
|
// node_modules/react-day-picker/dist/esm/helpers/getDates.js
|
|
3450
3632
|
function getDates(displayMonths, maxDate, props, dateLib) {
|
|
@@ -3504,7 +3686,7 @@ function getDisplayMonths(firstDisplayedMonth, calendarEndMonth, props, dateLib)
|
|
|
3504
3686
|
|
|
3505
3687
|
// node_modules/react-day-picker/dist/esm/helpers/getInitialMonth.js
|
|
3506
3688
|
function getInitialMonth(props, dateLib) {
|
|
3507
|
-
const { month, defaultMonth, today = dateLib.today(), numberOfMonths = 1, endMonth, startMonth } = props;
|
|
3689
|
+
const { month, defaultMonth, today = dateLib.today(), numberOfMonths = 1, endMonth, startMonth, timeZone } = props;
|
|
3508
3690
|
let initialMonth = month || defaultMonth || today;
|
|
3509
3691
|
const { differenceInCalendarMonths: differenceInCalendarMonths2, addMonths: addMonths2, startOfMonth: startOfMonth2 } = dateLib;
|
|
3510
3692
|
if (endMonth && differenceInCalendarMonths2(endMonth, initialMonth) < 0) {
|
|
@@ -3514,6 +3696,7 @@ function getInitialMonth(props, dateLib) {
|
|
|
3514
3696
|
if (startMonth && differenceInCalendarMonths2(initialMonth, startMonth) < 0) {
|
|
3515
3697
|
initialMonth = startMonth;
|
|
3516
3698
|
}
|
|
3699
|
+
initialMonth = timeZone ? new TZDate(initialMonth, timeZone) : initialMonth;
|
|
3517
3700
|
return startOfMonth2(initialMonth);
|
|
3518
3701
|
}
|
|
3519
3702
|
|
|
@@ -3675,9 +3858,9 @@ function getWeeks(months) {
|
|
|
3675
3858
|
}
|
|
3676
3859
|
|
|
3677
3860
|
// node_modules/react-day-picker/dist/esm/helpers/useControlledValue.js
|
|
3678
|
-
var
|
|
3861
|
+
var import_react29 = require("react");
|
|
3679
3862
|
function useControlledValue(defaultValue, controlledValue) {
|
|
3680
|
-
const [uncontrolledValue, setValue] = (0,
|
|
3863
|
+
const [uncontrolledValue, setValue] = (0, import_react29.useState)(defaultValue);
|
|
3681
3864
|
const value = controlledValue === void 0 ? uncontrolledValue : controlledValue;
|
|
3682
3865
|
return [value, setValue];
|
|
3683
3866
|
}
|
|
@@ -3692,7 +3875,7 @@ function useCalendar(props, dateLib) {
|
|
|
3692
3875
|
// initialMonth is always computed from props.month if provided
|
|
3693
3876
|
props.month ? initialMonth : void 0
|
|
3694
3877
|
);
|
|
3695
|
-
(0,
|
|
3878
|
+
(0, import_react30.useEffect)(() => {
|
|
3696
3879
|
const newInitialMonth = getInitialMonth(props, dateLib);
|
|
3697
3880
|
setFirstMonth(newInitialMonth);
|
|
3698
3881
|
}, [props.timeZone]);
|
|
@@ -3740,38 +3923,42 @@ function useCalendar(props, dateLib) {
|
|
|
3740
3923
|
}
|
|
3741
3924
|
|
|
3742
3925
|
// node_modules/react-day-picker/dist/esm/useFocus.js
|
|
3743
|
-
var
|
|
3926
|
+
var import_react31 = require("react");
|
|
3744
3927
|
|
|
3745
3928
|
// node_modules/react-day-picker/dist/esm/helpers/calculateFocusTarget.js
|
|
3929
|
+
var FocusTargetPriority;
|
|
3930
|
+
(function(FocusTargetPriority2) {
|
|
3931
|
+
FocusTargetPriority2[FocusTargetPriority2["Today"] = 0] = "Today";
|
|
3932
|
+
FocusTargetPriority2[FocusTargetPriority2["Selected"] = 1] = "Selected";
|
|
3933
|
+
FocusTargetPriority2[FocusTargetPriority2["LastFocused"] = 2] = "LastFocused";
|
|
3934
|
+
FocusTargetPriority2[FocusTargetPriority2["FocusedModifier"] = 3] = "FocusedModifier";
|
|
3935
|
+
})(FocusTargetPriority || (FocusTargetPriority = {}));
|
|
3936
|
+
function isFocusableDay(modifiers) {
|
|
3937
|
+
return !modifiers[DayFlag.disabled] && !modifiers[DayFlag.hidden] && !modifiers[DayFlag.outside];
|
|
3938
|
+
}
|
|
3746
3939
|
function calculateFocusTarget(days, getModifiers, isSelected, lastFocused) {
|
|
3747
3940
|
let focusTarget;
|
|
3748
|
-
let
|
|
3749
|
-
|
|
3750
|
-
while (index < days.length && !found) {
|
|
3751
|
-
const day = days[index];
|
|
3941
|
+
let foundFocusTargetPriority = -1;
|
|
3942
|
+
for (const day of days) {
|
|
3752
3943
|
const modifiers = getModifiers(day);
|
|
3753
|
-
if (
|
|
3754
|
-
if (modifiers[DayFlag.focused]) {
|
|
3944
|
+
if (isFocusableDay(modifiers)) {
|
|
3945
|
+
if (modifiers[DayFlag.focused] && foundFocusTargetPriority < FocusTargetPriority.FocusedModifier) {
|
|
3755
3946
|
focusTarget = day;
|
|
3756
|
-
|
|
3757
|
-
} else if (lastFocused == null ? void 0 : lastFocused.isEqualTo(day)) {
|
|
3947
|
+
foundFocusTargetPriority = FocusTargetPriority.FocusedModifier;
|
|
3948
|
+
} else if ((lastFocused == null ? void 0 : lastFocused.isEqualTo(day)) && foundFocusTargetPriority < FocusTargetPriority.LastFocused) {
|
|
3758
3949
|
focusTarget = day;
|
|
3759
|
-
|
|
3760
|
-
} else if (isSelected(day.date)) {
|
|
3950
|
+
foundFocusTargetPriority = FocusTargetPriority.LastFocused;
|
|
3951
|
+
} else if (isSelected(day.date) && foundFocusTargetPriority < FocusTargetPriority.Selected) {
|
|
3761
3952
|
focusTarget = day;
|
|
3762
|
-
|
|
3763
|
-
} else if (modifiers[DayFlag.today]) {
|
|
3953
|
+
foundFocusTargetPriority = FocusTargetPriority.Selected;
|
|
3954
|
+
} else if (modifiers[DayFlag.today] && foundFocusTargetPriority < FocusTargetPriority.Today) {
|
|
3764
3955
|
focusTarget = day;
|
|
3765
|
-
|
|
3956
|
+
foundFocusTargetPriority = FocusTargetPriority.Today;
|
|
3766
3957
|
}
|
|
3767
3958
|
}
|
|
3768
|
-
index++;
|
|
3769
3959
|
}
|
|
3770
3960
|
if (!focusTarget) {
|
|
3771
|
-
focusTarget = days.find((day) =>
|
|
3772
|
-
const m = getModifiers(day);
|
|
3773
|
-
return !m[DayFlag.disabled] && !m[DayFlag.hidden] && !m[DayFlag.outside];
|
|
3774
|
-
});
|
|
3961
|
+
focusTarget = days.find((day) => isFocusableDay(getModifiers(day)));
|
|
3775
3962
|
}
|
|
3776
3963
|
return focusTarget;
|
|
3777
3964
|
}
|
|
@@ -3914,9 +4101,9 @@ function getNextFocus(moveBy, moveDir, refDay, calendarStartMonth, calendarEndMo
|
|
|
3914
4101
|
// node_modules/react-day-picker/dist/esm/useFocus.js
|
|
3915
4102
|
function useFocus(props, calendar, getModifiers, isSelected, dateLib) {
|
|
3916
4103
|
const { autoFocus } = props;
|
|
3917
|
-
const [lastFocused, setLastFocused] = (0,
|
|
4104
|
+
const [lastFocused, setLastFocused] = (0, import_react31.useState)();
|
|
3918
4105
|
const focusTarget = calculateFocusTarget(calendar.days, getModifiers, isSelected || (() => false), lastFocused);
|
|
3919
|
-
const [focusedDay, setFocused] = (0,
|
|
4106
|
+
const [focusedDay, setFocused] = (0, import_react31.useState)(autoFocus ? focusTarget : void 0);
|
|
3920
4107
|
const blur = () => {
|
|
3921
4108
|
setLastFocused(focusedDay);
|
|
3922
4109
|
setFocused(void 0);
|
|
@@ -4253,7 +4440,7 @@ function useSelection(props, dateLib) {
|
|
|
4253
4440
|
// node_modules/react-day-picker/dist/esm/DayPicker.js
|
|
4254
4441
|
function DayPicker(props) {
|
|
4255
4442
|
var _a;
|
|
4256
|
-
const { components, formatters: formatters2, labels, dateLib, locale, classNames } = (0,
|
|
4443
|
+
const { components, formatters: formatters2, labels, dateLib, locale, classNames } = (0, import_react32.useMemo)(() => {
|
|
4257
4444
|
const locale2 = __spreadValues(__spreadValues({}, enUS), props.locale);
|
|
4258
4445
|
const dateLib2 = new DateLib({
|
|
4259
4446
|
locale: locale2,
|
|
@@ -4295,36 +4482,36 @@ function DayPicker(props) {
|
|
|
4295
4482
|
const { isSelected, select, selected: selectedValue } = (_a = useSelection(props, dateLib)) != null ? _a : {};
|
|
4296
4483
|
const { blur, focused, isFocusTarget, moveFocus, setFocused } = useFocus(props, calendar, getModifiers, isSelected != null ? isSelected : () => false, dateLib);
|
|
4297
4484
|
const { labelDayButton: labelDayButton2, labelGridcell: labelGridcell2, labelGrid: labelGrid2, labelMonthDropdown: labelMonthDropdown2, labelNav: labelNav2, labelWeekday: labelWeekday2, labelWeekNumber: labelWeekNumber2, labelWeekNumberHeader: labelWeekNumberHeader2, labelYearDropdown: labelYearDropdown2 } = labels;
|
|
4298
|
-
const weekdays = (0,
|
|
4485
|
+
const weekdays = (0, import_react32.useMemo)(() => getWeekdays(dateLib, props.ISOWeek), [dateLib, props.ISOWeek]);
|
|
4299
4486
|
const isInteractive = mode !== void 0 || onDayClick !== void 0;
|
|
4300
|
-
const handlePreviousClick = (0,
|
|
4487
|
+
const handlePreviousClick = (0, import_react32.useCallback)(() => {
|
|
4301
4488
|
if (!previousMonth)
|
|
4302
4489
|
return;
|
|
4303
4490
|
goToMonth(previousMonth);
|
|
4304
4491
|
onPrevClick == null ? void 0 : onPrevClick(previousMonth);
|
|
4305
4492
|
}, [previousMonth, goToMonth, onPrevClick]);
|
|
4306
|
-
const handleNextClick = (0,
|
|
4493
|
+
const handleNextClick = (0, import_react32.useCallback)(() => {
|
|
4307
4494
|
if (!nextMonth)
|
|
4308
4495
|
return;
|
|
4309
4496
|
goToMonth(nextMonth);
|
|
4310
4497
|
onNextClick == null ? void 0 : onNextClick(nextMonth);
|
|
4311
4498
|
}, [goToMonth, nextMonth, onNextClick]);
|
|
4312
|
-
const handleDayClick = (0,
|
|
4499
|
+
const handleDayClick = (0, import_react32.useCallback)((day, m) => (e) => {
|
|
4313
4500
|
e.preventDefault();
|
|
4314
4501
|
e.stopPropagation();
|
|
4315
4502
|
setFocused(day);
|
|
4316
4503
|
select == null ? void 0 : select(day.date, m, e);
|
|
4317
4504
|
onDayClick == null ? void 0 : onDayClick(day.date, m, e);
|
|
4318
4505
|
}, [select, onDayClick, setFocused]);
|
|
4319
|
-
const handleDayFocus = (0,
|
|
4506
|
+
const handleDayFocus = (0, import_react32.useCallback)((day, m) => (e) => {
|
|
4320
4507
|
setFocused(day);
|
|
4321
4508
|
onDayFocus == null ? void 0 : onDayFocus(day.date, m, e);
|
|
4322
4509
|
}, [onDayFocus, setFocused]);
|
|
4323
|
-
const handleDayBlur = (0,
|
|
4510
|
+
const handleDayBlur = (0, import_react32.useCallback)((day, m) => (e) => {
|
|
4324
4511
|
blur();
|
|
4325
4512
|
onDayBlur == null ? void 0 : onDayBlur(day.date, m, e);
|
|
4326
4513
|
}, [blur, onDayBlur]);
|
|
4327
|
-
const handleDayKeyDown = (0,
|
|
4514
|
+
const handleDayKeyDown = (0, import_react32.useCallback)((day, modifiers) => (e) => {
|
|
4328
4515
|
const keyMap = {
|
|
4329
4516
|
ArrowLeft: ["day", props.dir === "rtl" ? "after" : "before"],
|
|
4330
4517
|
ArrowRight: ["day", props.dir === "rtl" ? "before" : "after"],
|
|
@@ -4343,27 +4530,34 @@ function DayPicker(props) {
|
|
|
4343
4530
|
}
|
|
4344
4531
|
onDayKeyDown == null ? void 0 : onDayKeyDown(day.date, modifiers, e);
|
|
4345
4532
|
}, [moveFocus, onDayKeyDown, props.dir]);
|
|
4346
|
-
const handleDayMouseEnter = (0,
|
|
4533
|
+
const handleDayMouseEnter = (0, import_react32.useCallback)((day, modifiers) => (e) => {
|
|
4347
4534
|
onDayMouseEnter == null ? void 0 : onDayMouseEnter(day.date, modifiers, e);
|
|
4348
4535
|
}, [onDayMouseEnter]);
|
|
4349
|
-
const handleDayMouseLeave = (0,
|
|
4536
|
+
const handleDayMouseLeave = (0, import_react32.useCallback)((day, modifiers) => (e) => {
|
|
4350
4537
|
onDayMouseLeave == null ? void 0 : onDayMouseLeave(day.date, modifiers, e);
|
|
4351
4538
|
}, [onDayMouseLeave]);
|
|
4352
|
-
const handleMonthChange = (0,
|
|
4539
|
+
const handleMonthChange = (0, import_react32.useCallback)((date) => (e) => {
|
|
4353
4540
|
const selectedMonth = Number(e.target.value);
|
|
4354
4541
|
const month = dateLib.setMonth(dateLib.startOfMonth(date), selectedMonth);
|
|
4355
4542
|
goToMonth(month);
|
|
4356
4543
|
}, [dateLib, goToMonth]);
|
|
4357
|
-
const handleYearChange = (0,
|
|
4544
|
+
const handleYearChange = (0, import_react32.useCallback)((date) => (e) => {
|
|
4358
4545
|
const selectedYear = Number(e.target.value);
|
|
4359
4546
|
const month = dateLib.setYear(dateLib.startOfMonth(date), selectedYear);
|
|
4360
4547
|
goToMonth(month);
|
|
4361
4548
|
}, [dateLib, goToMonth]);
|
|
4362
|
-
const { className, style } = (0,
|
|
4549
|
+
const { className, style } = (0, import_react32.useMemo)(() => ({
|
|
4363
4550
|
className: [classNames[UI.Root], props.className].filter(Boolean).join(" "),
|
|
4364
4551
|
style: __spreadValues(__spreadValues({}, styles == null ? void 0 : styles[UI.Root]), props.style)
|
|
4365
4552
|
}), [classNames, props.className, props.style, styles]);
|
|
4366
4553
|
const dataAttributes = getDataAttributes(props);
|
|
4554
|
+
const rootElRef = (0, import_react32.useRef)(null);
|
|
4555
|
+
useAnimation(rootElRef, Boolean(props.animate), {
|
|
4556
|
+
classNames,
|
|
4557
|
+
months,
|
|
4558
|
+
focused,
|
|
4559
|
+
dateLib
|
|
4560
|
+
});
|
|
4367
4561
|
const contextValue = {
|
|
4368
4562
|
dayPickerProps: props,
|
|
4369
4563
|
selected: selectedValue,
|
|
@@ -4380,49 +4574,61 @@ function DayPicker(props) {
|
|
|
4380
4574
|
labels,
|
|
4381
4575
|
formatters: formatters2
|
|
4382
4576
|
};
|
|
4383
|
-
return
|
|
4577
|
+
return import_react32.default.createElement(
|
|
4384
4578
|
dayPickerContext.Provider,
|
|
4385
4579
|
{ value: contextValue },
|
|
4386
|
-
|
|
4580
|
+
import_react32.default.createElement(
|
|
4387
4581
|
components.Root,
|
|
4388
|
-
__spreadValues({ className, style, dir: props.dir, id: props.id, lang: props.lang, nonce: props.nonce, title: props.title, role: props.role, "aria-label": props["aria-label"] }, dataAttributes),
|
|
4389
|
-
|
|
4582
|
+
__spreadValues({ rootRef: props.animate ? rootElRef : void 0, className, style, dir: props.dir, id: props.id, lang: props.lang, nonce: props.nonce, title: props.title, role: props.role, "aria-label": props["aria-label"] }, dataAttributes),
|
|
4583
|
+
import_react32.default.createElement(
|
|
4390
4584
|
components.Months,
|
|
4391
4585
|
{ className: classNames[UI.Months], style: styles == null ? void 0 : styles[UI.Months] },
|
|
4392
|
-
!props.hideNavigation &&
|
|
4586
|
+
!props.hideNavigation && import_react32.default.createElement(components.Nav, { "data-animated-nav": props.animate ? "true" : void 0, className: classNames[UI.Nav], style: styles == null ? void 0 : styles[UI.Nav], "aria-label": labelNav2(), onPreviousClick: handlePreviousClick, onNextClick: handleNextClick, previousMonth, nextMonth }),
|
|
4393
4587
|
months.map((calendarMonth, displayIndex) => {
|
|
4394
4588
|
const dropdownMonths = getMonthOptions(calendarMonth.date, navStart, navEnd, formatters2, dateLib);
|
|
4395
4589
|
const dropdownYears = getYearOptions(navStart, navEnd, formatters2, dateLib);
|
|
4396
|
-
return
|
|
4590
|
+
return import_react32.default.createElement(
|
|
4397
4591
|
components.Month,
|
|
4398
|
-
{ className: classNames[UI.Month], style: styles == null ? void 0 : styles[UI.Month], key: displayIndex, displayIndex, calendarMonth },
|
|
4399
|
-
|
|
4592
|
+
{ "data-animated-month": props.animate ? "true" : void 0, className: classNames[UI.Month], style: styles == null ? void 0 : styles[UI.Month], key: displayIndex, displayIndex, calendarMonth },
|
|
4593
|
+
import_react32.default.createElement(components.MonthCaption, { "data-animated-caption": props.animate ? "true" : void 0, className: classNames[UI.MonthCaption], style: styles == null ? void 0 : styles[UI.MonthCaption], calendarMonth, displayIndex }, (captionLayout == null ? void 0 : captionLayout.startsWith("dropdown")) ? import_react32.default.createElement(
|
|
4400
4594
|
components.DropdownNav,
|
|
4401
4595
|
{ className: classNames[UI.Dropdowns], style: styles == null ? void 0 : styles[UI.Dropdowns] },
|
|
4402
|
-
captionLayout === "dropdown" || captionLayout === "dropdown-months" ?
|
|
4403
|
-
captionLayout === "dropdown" || captionLayout === "dropdown-years" ?
|
|
4404
|
-
|
|
4405
|
-
|
|
4596
|
+
captionLayout === "dropdown" || captionLayout === "dropdown-months" ? import_react32.default.createElement(components.MonthsDropdown, { className: classNames[UI.MonthsDropdown], "aria-label": labelMonthDropdown2(), classNames, components, disabled: Boolean(props.disableNavigation), onChange: handleMonthChange(calendarMonth.date), options: dropdownMonths, style: styles == null ? void 0 : styles[UI.Dropdown], value: dateLib.getMonth(calendarMonth.date) }) : import_react32.default.createElement("span", null, formatMonthDropdown2(calendarMonth.date, dateLib)),
|
|
4597
|
+
captionLayout === "dropdown" || captionLayout === "dropdown-years" ? import_react32.default.createElement(components.YearsDropdown, { className: classNames[UI.YearsDropdown], "aria-label": labelYearDropdown2(dateLib.options), classNames, components, disabled: Boolean(props.disableNavigation), onChange: handleYearChange(calendarMonth.date), options: dropdownYears, style: styles == null ? void 0 : styles[UI.Dropdown], value: dateLib.getYear(calendarMonth.date) }) : import_react32.default.createElement("span", null, formatYearDropdown2(calendarMonth.date, dateLib)),
|
|
4598
|
+
import_react32.default.createElement("span", { role: "status", "aria-live": "polite", style: {
|
|
4599
|
+
border: 0,
|
|
4600
|
+
clip: "rect(0 0 0 0)",
|
|
4601
|
+
height: "1px",
|
|
4602
|
+
margin: "-1px",
|
|
4603
|
+
overflow: "hidden",
|
|
4604
|
+
padding: 0,
|
|
4605
|
+
position: "absolute",
|
|
4606
|
+
width: "1px",
|
|
4607
|
+
whiteSpace: "nowrap",
|
|
4608
|
+
wordWrap: "normal"
|
|
4609
|
+
} }, formatCaption2(calendarMonth.date, dateLib.options, dateLib))
|
|
4610
|
+
) : import_react32.default.createElement(components.CaptionLabel, { className: classNames[UI.CaptionLabel], role: "status", "aria-live": "polite" }, formatCaption2(calendarMonth.date, dateLib.options, dateLib))),
|
|
4611
|
+
import_react32.default.createElement(
|
|
4406
4612
|
components.MonthGrid,
|
|
4407
4613
|
{ role: "grid", "aria-multiselectable": mode === "multiple" || mode === "range", "aria-label": labelGrid2(calendarMonth.date, dateLib.options, dateLib) || void 0, className: classNames[UI.MonthGrid], style: styles == null ? void 0 : styles[UI.MonthGrid] },
|
|
4408
|
-
!props.hideWeekdays &&
|
|
4614
|
+
!props.hideWeekdays && import_react32.default.createElement(
|
|
4409
4615
|
components.Weekdays,
|
|
4410
|
-
{ className: classNames[UI.Weekdays], style: styles == null ? void 0 : styles[UI.Weekdays] },
|
|
4411
|
-
showWeekNumber &&
|
|
4412
|
-
weekdays.map((weekday, i) =>
|
|
4616
|
+
{ "data-animated-weekdays": props.animate ? "true" : void 0, className: classNames[UI.Weekdays], style: styles == null ? void 0 : styles[UI.Weekdays] },
|
|
4617
|
+
showWeekNumber && import_react32.default.createElement(components.WeekNumberHeader, { "aria-label": labelWeekNumberHeader2(dateLib.options), className: classNames[UI.WeekNumberHeader], style: styles == null ? void 0 : styles[UI.WeekNumberHeader], scope: "col" }, formatWeekNumberHeader2()),
|
|
4618
|
+
weekdays.map((weekday, i) => import_react32.default.createElement(components.Weekday, { "aria-label": labelWeekday2(weekday, dateLib.options, dateLib), className: classNames[UI.Weekday], key: i, style: styles == null ? void 0 : styles[UI.Weekday], scope: "col" }, formatWeekdayName2(weekday, dateLib.options, dateLib)))
|
|
4413
4619
|
),
|
|
4414
|
-
|
|
4415
|
-
return
|
|
4620
|
+
import_react32.default.createElement(components.Weeks, { "data-animated-weeks": props.animate ? "true" : void 0, className: classNames[UI.Weeks], style: styles == null ? void 0 : styles[UI.Weeks] }, calendarMonth.weeks.map((week, weekIndex) => {
|
|
4621
|
+
return import_react32.default.createElement(
|
|
4416
4622
|
components.Week,
|
|
4417
4623
|
{ className: classNames[UI.Week], key: week.weekNumber, style: styles == null ? void 0 : styles[UI.Week], week },
|
|
4418
|
-
showWeekNumber &&
|
|
4624
|
+
showWeekNumber && import_react32.default.createElement(components.WeekNumber, { week, style: styles == null ? void 0 : styles[UI.WeekNumber], "aria-label": labelWeekNumber2(week.weekNumber, {
|
|
4419
4625
|
locale
|
|
4420
4626
|
}), className: classNames[UI.WeekNumber], scope: "row", role: "rowheader" }, formatWeekNumber2(week.weekNumber)),
|
|
4421
4627
|
week.days.map((day) => {
|
|
4422
4628
|
const { date } = day;
|
|
4423
4629
|
const modifiers = getModifiers(day);
|
|
4424
4630
|
modifiers[DayFlag.focused] = !modifiers.hidden && Boolean(focused == null ? void 0 : focused.isEqualTo(day));
|
|
4425
|
-
modifiers[SelectionState.selected] =
|
|
4631
|
+
modifiers[SelectionState.selected] = (isSelected == null ? void 0 : isSelected(date)) || modifiers.selected;
|
|
4426
4632
|
if (isDateRange(selectedValue)) {
|
|
4427
4633
|
const { from, to } = selectedValue;
|
|
4428
4634
|
modifiers[SelectionState.range_start] = Boolean(from && to && dateLib.isSameDay(date, from));
|
|
@@ -4432,7 +4638,7 @@ function DayPicker(props) {
|
|
|
4432
4638
|
const style2 = getStyleForModifiers(modifiers, styles, props.modifiersStyles);
|
|
4433
4639
|
const className2 = getClassNamesForModifiers(modifiers, classNames, props.modifiersClassNames);
|
|
4434
4640
|
const ariaLabel = !isInteractive && !modifiers.hidden ? labelGridcell2(date, modifiers, dateLib.options, dateLib) : void 0;
|
|
4435
|
-
return
|
|
4641
|
+
return import_react32.default.createElement(components.Day, { key: `${dateLib.format(date, "yyyy-MM-dd")}_${dateLib.format(day.displayMonth, "yyyy-MM")}`, day, modifiers, className: className2.join(" "), style: style2, role: "gridcell", "aria-selected": modifiers.selected || void 0, "aria-label": ariaLabel, "data-day": dateLib.format(date, "yyyy-MM-dd"), "data-month": day.outside ? dateLib.format(date, "yyyy-MM") : void 0, "data-selected": modifiers.selected || void 0, "data-disabled": modifiers.disabled || void 0, "data-hidden": modifiers.hidden || void 0, "data-outside": day.outside || void 0, "data-focused": modifiers.focused || void 0, "data-today": modifiers.today || void 0 }, !modifiers.hidden && isInteractive ? import_react32.default.createElement(components.DayButton, { className: classNames[UI.DayButton], style: styles == null ? void 0 : styles[UI.DayButton], type: "button", day, modifiers, disabled: modifiers.disabled || void 0, tabIndex: isFocusTarget(day) ? 0 : -1, "aria-label": labelDayButton2(date, modifiers, dateLib.options, dateLib), onClick: handleDayClick(day, modifiers), onBlur: handleDayBlur(day, modifiers), onFocus: handleDayFocus(day, modifiers), onKeyDown: handleDayKeyDown(day, modifiers), onMouseEnter: handleDayMouseEnter(day, modifiers), onMouseLeave: handleDayMouseLeave(day, modifiers) }, formatDay2(date, dateLib.options, dateLib)) : !modifiers.hidden && formatDay2(day.date, dateLib.options, dateLib));
|
|
4436
4642
|
})
|
|
4437
4643
|
);
|
|
4438
4644
|
}))
|
|
@@ -4440,7 +4646,7 @@ function DayPicker(props) {
|
|
|
4440
4646
|
);
|
|
4441
4647
|
})
|
|
4442
4648
|
),
|
|
4443
|
-
props.footer &&
|
|
4649
|
+
props.footer && import_react32.default.createElement(components.Footer, { className: classNames[UI.Footer], style: styles == null ? void 0 : styles[UI.Footer], role: "status", "aria-live": "polite" }, props.footer)
|
|
4444
4650
|
)
|
|
4445
4651
|
);
|
|
4446
4652
|
}
|
|
@@ -5443,327 +5649,35 @@ var DropdownMenuShortcut = (_a) => {
|
|
|
5443
5649
|
};
|
|
5444
5650
|
DropdownMenuShortcut.displayName = "DropdownMenuShortcut";
|
|
5445
5651
|
|
|
5446
|
-
// src/components/form.tsx
|
|
5447
|
-
var
|
|
5448
|
-
var
|
|
5449
|
-
|
|
5450
|
-
|
|
5451
|
-
|
|
5452
|
-
|
|
5453
|
-
|
|
5454
|
-
|
|
5455
|
-
|
|
5456
|
-
|
|
5457
|
-
|
|
5458
|
-
var getNodeParentName = (name) => name.substring(0, name.search(/\.\d+(\.|$)/)) || name;
|
|
5459
|
-
var isNameInFieldArray = (names, name) => names.has(getNodeParentName(name));
|
|
5460
|
-
var isPlainObject = (tempObject) => {
|
|
5461
|
-
const prototypeCopy = tempObject.constructor && tempObject.constructor.prototype;
|
|
5462
|
-
return isObject(prototypeCopy) && prototypeCopy.hasOwnProperty("isPrototypeOf");
|
|
5463
|
-
};
|
|
5464
|
-
var isWeb = typeof window !== "undefined" && typeof window.HTMLElement !== "undefined" && typeof document !== "undefined";
|
|
5465
|
-
function cloneObject(data) {
|
|
5466
|
-
let copy;
|
|
5467
|
-
const isArray = Array.isArray(data);
|
|
5468
|
-
const isFileListInstance = typeof FileList !== "undefined" ? data instanceof FileList : false;
|
|
5469
|
-
if (data instanceof Date) {
|
|
5470
|
-
copy = new Date(data);
|
|
5471
|
-
} else if (data instanceof Set) {
|
|
5472
|
-
copy = new Set(data);
|
|
5473
|
-
} else if (!(isWeb && (data instanceof Blob || isFileListInstance)) && (isArray || isObject(data))) {
|
|
5474
|
-
copy = isArray ? [] : {};
|
|
5475
|
-
if (!isArray && !isPlainObject(data)) {
|
|
5476
|
-
copy = data;
|
|
5477
|
-
} else {
|
|
5478
|
-
for (const key in data) {
|
|
5479
|
-
if (data.hasOwnProperty(key)) {
|
|
5480
|
-
copy[key] = cloneObject(data[key]);
|
|
5481
|
-
}
|
|
5482
|
-
}
|
|
5483
|
-
}
|
|
5484
|
-
} else {
|
|
5485
|
-
return data;
|
|
5486
|
-
}
|
|
5487
|
-
return copy;
|
|
5488
|
-
}
|
|
5489
|
-
var compact = (value) => Array.isArray(value) ? value.filter(Boolean) : [];
|
|
5490
|
-
var isUndefined = (val) => val === void 0;
|
|
5491
|
-
var get = (object, path, defaultValue) => {
|
|
5492
|
-
if (!path || !isObject(object)) {
|
|
5493
|
-
return defaultValue;
|
|
5494
|
-
}
|
|
5495
|
-
const result = compact(path.split(/[,[\].]+?/)).reduce((result2, key) => isNullOrUndefined(result2) ? result2 : result2[key], object);
|
|
5496
|
-
return isUndefined(result) || result === object ? isUndefined(object[path]) ? defaultValue : object[path] : result;
|
|
5497
|
-
};
|
|
5498
|
-
var isBoolean = (value) => typeof value === "boolean";
|
|
5499
|
-
var isKey = (value) => /^\w*$/.test(value);
|
|
5500
|
-
var stringToPath = (input) => compact(input.replace(/["|']|\]/g, "").split(/\.|\[/));
|
|
5501
|
-
var set = (object, path, value) => {
|
|
5502
|
-
let index = -1;
|
|
5503
|
-
const tempPath = isKey(path) ? [path] : stringToPath(path);
|
|
5504
|
-
const length = tempPath.length;
|
|
5505
|
-
const lastIndex = length - 1;
|
|
5506
|
-
while (++index < length) {
|
|
5507
|
-
const key = tempPath[index];
|
|
5508
|
-
let newValue = value;
|
|
5509
|
-
if (index !== lastIndex) {
|
|
5510
|
-
const objValue = object[key];
|
|
5511
|
-
newValue = isObject(objValue) || Array.isArray(objValue) ? objValue : !isNaN(+tempPath[index + 1]) ? [] : {};
|
|
5512
|
-
}
|
|
5513
|
-
if (key === "__proto__" || key === "constructor" || key === "prototype") {
|
|
5514
|
-
return;
|
|
5515
|
-
}
|
|
5516
|
-
object[key] = newValue;
|
|
5517
|
-
object = object[key];
|
|
5518
|
-
}
|
|
5519
|
-
return object;
|
|
5520
|
-
};
|
|
5521
|
-
var EVENTS = {
|
|
5522
|
-
BLUR: "blur",
|
|
5523
|
-
FOCUS_OUT: "focusout",
|
|
5524
|
-
CHANGE: "change"
|
|
5525
|
-
};
|
|
5526
|
-
var VALIDATION_MODE = {
|
|
5527
|
-
onBlur: "onBlur",
|
|
5528
|
-
onChange: "onChange",
|
|
5529
|
-
onSubmit: "onSubmit",
|
|
5530
|
-
onTouched: "onTouched",
|
|
5531
|
-
all: "all"
|
|
5532
|
-
};
|
|
5533
|
-
var HookFormContext = import_react32.default.createContext(null);
|
|
5534
|
-
var useFormContext = () => import_react32.default.useContext(HookFormContext);
|
|
5535
|
-
var FormProvider = (props) => {
|
|
5536
|
-
const _a = props, { children } = _a, data = __objRest(_a, ["children"]);
|
|
5537
|
-
return import_react32.default.createElement(HookFormContext.Provider, { value: data }, children);
|
|
5538
|
-
};
|
|
5539
|
-
var getProxyFormState = (formState, control, localProxyFormState, isRoot = true) => {
|
|
5540
|
-
const result = {
|
|
5541
|
-
defaultValues: control._defaultValues
|
|
5542
|
-
};
|
|
5543
|
-
for (const key in formState) {
|
|
5544
|
-
Object.defineProperty(result, key, {
|
|
5545
|
-
get: () => {
|
|
5546
|
-
const _key = key;
|
|
5547
|
-
if (control._proxyFormState[_key] !== VALIDATION_MODE.all) {
|
|
5548
|
-
control._proxyFormState[_key] = !isRoot || VALIDATION_MODE.all;
|
|
5549
|
-
}
|
|
5550
|
-
localProxyFormState && (localProxyFormState[_key] = true);
|
|
5551
|
-
return formState[_key];
|
|
5552
|
-
}
|
|
5553
|
-
});
|
|
5554
|
-
}
|
|
5555
|
-
return result;
|
|
5556
|
-
};
|
|
5557
|
-
var isEmptyObject = (value) => isObject(value) && !Object.keys(value).length;
|
|
5558
|
-
var shouldRenderFormState = (formStateData, _proxyFormState, updateFormState, isRoot) => {
|
|
5559
|
-
updateFormState(formStateData);
|
|
5560
|
-
const _a = formStateData, { name } = _a, formState = __objRest(_a, ["name"]);
|
|
5561
|
-
return isEmptyObject(formState) || Object.keys(formState).length >= Object.keys(_proxyFormState).length || Object.keys(formState).find((key) => _proxyFormState[key] === (!isRoot || VALIDATION_MODE.all));
|
|
5562
|
-
};
|
|
5563
|
-
var convertToArrayPayload = (value) => Array.isArray(value) ? value : [value];
|
|
5564
|
-
var shouldSubscribeByName = (name, signalName, exact) => !name || !signalName || name === signalName || convertToArrayPayload(name).some((currentName) => currentName && (exact ? currentName === signalName : currentName.startsWith(signalName) || signalName.startsWith(currentName)));
|
|
5565
|
-
function useSubscribe(props) {
|
|
5566
|
-
const _props = import_react32.default.useRef(props);
|
|
5567
|
-
_props.current = props;
|
|
5568
|
-
import_react32.default.useEffect(() => {
|
|
5569
|
-
const subscription = !props.disabled && _props.current.subject && _props.current.subject.subscribe({
|
|
5570
|
-
next: _props.current.next
|
|
5571
|
-
});
|
|
5572
|
-
return () => {
|
|
5573
|
-
subscription && subscription.unsubscribe();
|
|
5574
|
-
};
|
|
5575
|
-
}, [props.disabled]);
|
|
5576
|
-
}
|
|
5577
|
-
function useFormState(props) {
|
|
5578
|
-
const methods = useFormContext();
|
|
5579
|
-
const { control = methods.control, disabled, name, exact } = props || {};
|
|
5580
|
-
const [formState, updateFormState] = import_react32.default.useState(control._formState);
|
|
5581
|
-
const _mounted = import_react32.default.useRef(true);
|
|
5582
|
-
const _localProxyFormState = import_react32.default.useRef({
|
|
5583
|
-
isDirty: false,
|
|
5584
|
-
isLoading: false,
|
|
5585
|
-
dirtyFields: false,
|
|
5586
|
-
touchedFields: false,
|
|
5587
|
-
validatingFields: false,
|
|
5588
|
-
isValidating: false,
|
|
5589
|
-
isValid: false,
|
|
5590
|
-
errors: false
|
|
5591
|
-
});
|
|
5592
|
-
const _name = import_react32.default.useRef(name);
|
|
5593
|
-
_name.current = name;
|
|
5594
|
-
useSubscribe({
|
|
5595
|
-
disabled,
|
|
5596
|
-
next: (value) => _mounted.current && shouldSubscribeByName(_name.current, value.name, exact) && shouldRenderFormState(value, _localProxyFormState.current, control._updateFormState) && updateFormState(__spreadValues(__spreadValues({}, control._formState), value)),
|
|
5597
|
-
subject: control._subjects.state
|
|
5598
|
-
});
|
|
5599
|
-
import_react32.default.useEffect(() => {
|
|
5600
|
-
_mounted.current = true;
|
|
5601
|
-
_localProxyFormState.current.isValid && control._updateValid(true);
|
|
5602
|
-
return () => {
|
|
5603
|
-
_mounted.current = false;
|
|
5604
|
-
};
|
|
5605
|
-
}, [control]);
|
|
5606
|
-
return import_react32.default.useMemo(() => getProxyFormState(formState, control, _localProxyFormState.current, false), [formState, control]);
|
|
5607
|
-
}
|
|
5608
|
-
var isString = (value) => typeof value === "string";
|
|
5609
|
-
var generateWatchOutput = (names, _names, formValues, isGlobal, defaultValue) => {
|
|
5610
|
-
if (isString(names)) {
|
|
5611
|
-
isGlobal && _names.watch.add(names);
|
|
5612
|
-
return get(formValues, names, defaultValue);
|
|
5613
|
-
}
|
|
5614
|
-
if (Array.isArray(names)) {
|
|
5615
|
-
return names.map((fieldName) => (isGlobal && _names.watch.add(fieldName), get(formValues, fieldName)));
|
|
5616
|
-
}
|
|
5617
|
-
isGlobal && (_names.watchAll = true);
|
|
5618
|
-
return formValues;
|
|
5619
|
-
};
|
|
5620
|
-
function useWatch(props) {
|
|
5621
|
-
const methods = useFormContext();
|
|
5622
|
-
const { control = methods.control, name, defaultValue, disabled, exact } = props || {};
|
|
5623
|
-
const _name = import_react32.default.useRef(name);
|
|
5624
|
-
_name.current = name;
|
|
5625
|
-
useSubscribe({
|
|
5626
|
-
disabled,
|
|
5627
|
-
subject: control._subjects.values,
|
|
5628
|
-
next: (formState) => {
|
|
5629
|
-
if (shouldSubscribeByName(_name.current, formState.name, exact)) {
|
|
5630
|
-
updateValue(cloneObject(generateWatchOutput(_name.current, control._names, formState.values || control._formValues, false, defaultValue)));
|
|
5631
|
-
}
|
|
5632
|
-
}
|
|
5633
|
-
});
|
|
5634
|
-
const [value, updateValue] = import_react32.default.useState(control._getWatch(name, defaultValue));
|
|
5635
|
-
import_react32.default.useEffect(() => control._removeUnmounted());
|
|
5636
|
-
return value;
|
|
5637
|
-
}
|
|
5638
|
-
function useController(props) {
|
|
5639
|
-
const methods = useFormContext();
|
|
5640
|
-
const { name, disabled, control = methods.control, shouldUnregister } = props;
|
|
5641
|
-
const isArrayField = isNameInFieldArray(control._names.array, name);
|
|
5642
|
-
const value = useWatch({
|
|
5643
|
-
control,
|
|
5644
|
-
name,
|
|
5645
|
-
defaultValue: get(control._formValues, name, get(control._defaultValues, name, props.defaultValue)),
|
|
5646
|
-
exact: true
|
|
5647
|
-
});
|
|
5648
|
-
const formState = useFormState({
|
|
5649
|
-
control,
|
|
5650
|
-
name,
|
|
5651
|
-
exact: true
|
|
5652
|
-
});
|
|
5653
|
-
const _registerProps = import_react32.default.useRef(control.register(name, __spreadValues(__spreadProps(__spreadValues({}, props.rules), {
|
|
5654
|
-
value
|
|
5655
|
-
}), isBoolean(props.disabled) ? { disabled: props.disabled } : {})));
|
|
5656
|
-
const fieldState = import_react32.default.useMemo(() => Object.defineProperties({}, {
|
|
5657
|
-
invalid: {
|
|
5658
|
-
enumerable: true,
|
|
5659
|
-
get: () => !!get(formState.errors, name)
|
|
5660
|
-
},
|
|
5661
|
-
isDirty: {
|
|
5662
|
-
enumerable: true,
|
|
5663
|
-
get: () => !!get(formState.dirtyFields, name)
|
|
5664
|
-
},
|
|
5665
|
-
isTouched: {
|
|
5666
|
-
enumerable: true,
|
|
5667
|
-
get: () => !!get(formState.touchedFields, name)
|
|
5668
|
-
},
|
|
5669
|
-
isValidating: {
|
|
5670
|
-
enumerable: true,
|
|
5671
|
-
get: () => !!get(formState.validatingFields, name)
|
|
5672
|
-
},
|
|
5673
|
-
error: {
|
|
5674
|
-
enumerable: true,
|
|
5675
|
-
get: () => get(formState.errors, name)
|
|
5676
|
-
}
|
|
5677
|
-
}), [formState, name]);
|
|
5678
|
-
const field = import_react32.default.useMemo(() => __spreadProps(__spreadValues({
|
|
5679
|
-
name,
|
|
5680
|
-
value
|
|
5681
|
-
}, isBoolean(disabled) || formState.disabled ? { disabled: formState.disabled || disabled } : {}), {
|
|
5682
|
-
onChange: (event) => _registerProps.current.onChange({
|
|
5683
|
-
target: {
|
|
5684
|
-
value: getEventValue(event),
|
|
5685
|
-
name
|
|
5686
|
-
},
|
|
5687
|
-
type: EVENTS.CHANGE
|
|
5688
|
-
}),
|
|
5689
|
-
onBlur: () => _registerProps.current.onBlur({
|
|
5690
|
-
target: {
|
|
5691
|
-
value: get(control._formValues, name),
|
|
5692
|
-
name
|
|
5693
|
-
},
|
|
5694
|
-
type: EVENTS.BLUR
|
|
5695
|
-
}),
|
|
5696
|
-
ref: (elm) => {
|
|
5697
|
-
const field2 = get(control._fields, name);
|
|
5698
|
-
if (field2 && elm) {
|
|
5699
|
-
field2._f.ref = {
|
|
5700
|
-
focus: () => elm.focus(),
|
|
5701
|
-
select: () => elm.select(),
|
|
5702
|
-
setCustomValidity: (message2) => elm.setCustomValidity(message2),
|
|
5703
|
-
reportValidity: () => elm.reportValidity()
|
|
5704
|
-
};
|
|
5705
|
-
}
|
|
5706
|
-
}
|
|
5707
|
-
}), [
|
|
5708
|
-
name,
|
|
5709
|
-
control._formValues,
|
|
5710
|
-
disabled,
|
|
5711
|
-
formState.disabled,
|
|
5712
|
-
value,
|
|
5713
|
-
control._fields
|
|
5714
|
-
]);
|
|
5715
|
-
import_react32.default.useEffect(() => {
|
|
5716
|
-
const _shouldUnregisterField = control._options.shouldUnregister || shouldUnregister;
|
|
5717
|
-
const updateMounted = (name2, value2) => {
|
|
5718
|
-
const field2 = get(control._fields, name2);
|
|
5719
|
-
if (field2 && field2._f) {
|
|
5720
|
-
field2._f.mount = value2;
|
|
5721
|
-
}
|
|
5722
|
-
};
|
|
5723
|
-
updateMounted(name, true);
|
|
5724
|
-
if (_shouldUnregisterField) {
|
|
5725
|
-
const value2 = cloneObject(get(control._options.defaultValues, name));
|
|
5726
|
-
set(control._defaultValues, name, value2);
|
|
5727
|
-
if (isUndefined(get(control._formValues, name))) {
|
|
5728
|
-
set(control._formValues, name, value2);
|
|
5729
|
-
}
|
|
5730
|
-
}
|
|
5731
|
-
!isArrayField && control.register(name);
|
|
5732
|
-
return () => {
|
|
5733
|
-
(isArrayField ? _shouldUnregisterField && !control._state.action : _shouldUnregisterField) ? control.unregister(name) : updateMounted(name, false);
|
|
5734
|
-
};
|
|
5735
|
-
}, [name, control, isArrayField, shouldUnregister]);
|
|
5736
|
-
import_react32.default.useEffect(() => {
|
|
5737
|
-
control._updateDisabledField({
|
|
5738
|
-
disabled,
|
|
5739
|
-
fields: control._fields,
|
|
5740
|
-
name
|
|
5741
|
-
});
|
|
5742
|
-
}, [disabled, name, control]);
|
|
5743
|
-
return import_react32.default.useMemo(() => ({
|
|
5744
|
-
field,
|
|
5745
|
-
formState,
|
|
5746
|
-
fieldState
|
|
5747
|
-
}), [field, formState, fieldState]);
|
|
5748
|
-
}
|
|
5749
|
-
var Controller = (props) => props.render(useController(props));
|
|
5750
|
-
var defaultOptions2 = {
|
|
5751
|
-
mode: VALIDATION_MODE.onSubmit,
|
|
5752
|
-
reValidateMode: VALIDATION_MODE.onChange,
|
|
5753
|
-
shouldFocusError: true
|
|
5652
|
+
// src/components/Form/form.tsx
|
|
5653
|
+
var import_react_hook_form = require("react-hook-form");
|
|
5654
|
+
var import_jsx_runtime16 = require("react/jsx-runtime");
|
|
5655
|
+
var Form = ({
|
|
5656
|
+
children,
|
|
5657
|
+
methods,
|
|
5658
|
+
onSubmit = () => {
|
|
5659
|
+
},
|
|
5660
|
+
onError,
|
|
5661
|
+
formProps = {}
|
|
5662
|
+
}) => {
|
|
5663
|
+
return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(import_react_hook_form.FormProvider, __spreadProps(__spreadValues({}, methods), { children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("form", __spreadProps(__spreadValues({ onSubmit: methods.handleSubmit(onSubmit, onError) }, formProps), { children })) }));
|
|
5754
5664
|
};
|
|
5755
5665
|
|
|
5756
|
-
// src/components/
|
|
5666
|
+
// src/components/Form/form-field.tsx
|
|
5667
|
+
var import_react_hook_form2 = require("react-hook-form");
|
|
5668
|
+
var import_react33 = __toESM(require("react"), 1);
|
|
5669
|
+
|
|
5670
|
+
// src/components/Label/label.tsx
|
|
5757
5671
|
var LabelPrimitive = __toESM(require("@radix-ui/react-label"), 1);
|
|
5758
5672
|
var import_class_variance_authority4 = require("class-variance-authority");
|
|
5759
|
-
var
|
|
5760
|
-
var
|
|
5673
|
+
var React41 = __toESM(require("react"), 1);
|
|
5674
|
+
var import_jsx_runtime17 = require("react/jsx-runtime");
|
|
5761
5675
|
var labelVariants = (0, import_class_variance_authority4.cva)(
|
|
5762
5676
|
"text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
|
|
5763
5677
|
);
|
|
5764
|
-
var Label3 =
|
|
5678
|
+
var Label3 = React41.forwardRef((_a, ref) => {
|
|
5765
5679
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5766
|
-
return /* @__PURE__ */ (0,
|
|
5680
|
+
return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
5767
5681
|
LabelPrimitive.Root,
|
|
5768
5682
|
__spreadValues({
|
|
5769
5683
|
ref,
|
|
@@ -5773,46 +5687,113 @@ var Label3 = React42.forwardRef((_a, ref) => {
|
|
|
5773
5687
|
});
|
|
5774
5688
|
Label3.displayName = LabelPrimitive.Root.displayName;
|
|
5775
5689
|
|
|
5776
|
-
// src/components/form.tsx
|
|
5777
|
-
var
|
|
5778
|
-
|
|
5779
|
-
|
|
5780
|
-
|
|
5690
|
+
// src/components/Form/form-field.tsx
|
|
5691
|
+
var import_react_slot3 = require("@radix-ui/react-slot");
|
|
5692
|
+
|
|
5693
|
+
// src/components/input.tsx
|
|
5694
|
+
var React42 = __toESM(require("react"), 1);
|
|
5695
|
+
var import_jsx_runtime18 = require("react/jsx-runtime");
|
|
5696
|
+
var Input = React42.forwardRef(
|
|
5697
|
+
(_a, ref) => {
|
|
5698
|
+
var _b = _a, { className, type } = _b, props = __objRest(_b, ["className", "type"]);
|
|
5699
|
+
return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
5700
|
+
"input",
|
|
5701
|
+
__spreadValues({
|
|
5702
|
+
type,
|
|
5703
|
+
className: cn(
|
|
5704
|
+
"flex h-9 w-full rounded-md border border-input bg-transparent px-3 py-1 text-sm shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50",
|
|
5705
|
+
className
|
|
5706
|
+
),
|
|
5707
|
+
ref
|
|
5708
|
+
}, props)
|
|
5709
|
+
);
|
|
5710
|
+
}
|
|
5711
|
+
);
|
|
5712
|
+
Input.displayName = "Input";
|
|
5713
|
+
|
|
5714
|
+
// src/components/Form/form-field.tsx
|
|
5715
|
+
var import_jsx_runtime19 = require("react/jsx-runtime");
|
|
5716
|
+
var FormFieldContext = import_react33.default.createContext(
|
|
5717
|
+
null
|
|
5781
5718
|
);
|
|
5782
5719
|
var FormField = (_a) => {
|
|
5783
|
-
var
|
|
5784
|
-
|
|
5785
|
-
|
|
5786
|
-
|
|
5787
|
-
|
|
5788
|
-
|
|
5789
|
-
|
|
5790
|
-
|
|
5791
|
-
|
|
5792
|
-
|
|
5793
|
-
|
|
5794
|
-
|
|
5795
|
-
|
|
5796
|
-
|
|
5797
|
-
|
|
5798
|
-
|
|
5799
|
-
|
|
5800
|
-
|
|
5801
|
-
|
|
5720
|
+
var _b = _a, {
|
|
5721
|
+
name,
|
|
5722
|
+
control,
|
|
5723
|
+
label,
|
|
5724
|
+
placeholder,
|
|
5725
|
+
required,
|
|
5726
|
+
className = "px-4 py-6 shadow-inner drop-shadow-xl",
|
|
5727
|
+
labelClassName,
|
|
5728
|
+
messageClassName,
|
|
5729
|
+
requiredClassName,
|
|
5730
|
+
rules,
|
|
5731
|
+
shouldUnregister,
|
|
5732
|
+
defaultValue,
|
|
5733
|
+
onChange
|
|
5734
|
+
} = _b, inputProps = __objRest(_b, [
|
|
5735
|
+
"name",
|
|
5736
|
+
"control",
|
|
5737
|
+
"label",
|
|
5738
|
+
"placeholder",
|
|
5739
|
+
"required",
|
|
5740
|
+
"className",
|
|
5741
|
+
"labelClassName",
|
|
5742
|
+
"messageClassName",
|
|
5743
|
+
"requiredClassName",
|
|
5744
|
+
"rules",
|
|
5745
|
+
"shouldUnregister",
|
|
5746
|
+
"defaultValue",
|
|
5747
|
+
"onChange"
|
|
5748
|
+
]);
|
|
5749
|
+
var _a2;
|
|
5750
|
+
const {
|
|
5751
|
+
formState: { errors }
|
|
5752
|
+
} = (0, import_react_hook_form2.useFormContext)();
|
|
5753
|
+
const fieldError = (_a2 = errors[name]) == null ? void 0 : _a2.message;
|
|
5754
|
+
return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(FormFieldContext.Provider, { value: { name }, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
5755
|
+
import_react_hook_form2.Controller,
|
|
5756
|
+
{
|
|
5757
|
+
control,
|
|
5758
|
+
name,
|
|
5759
|
+
rules,
|
|
5760
|
+
shouldUnregister,
|
|
5761
|
+
defaultValue,
|
|
5762
|
+
render: ({ field }) => /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(FormItem, { children: [
|
|
5763
|
+
label && /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(FormLabel, { className: labelClassName, children: [
|
|
5764
|
+
label,
|
|
5765
|
+
required && /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("span", { className: cn("text-red-500", requiredClassName), children: "*" })
|
|
5766
|
+
] }),
|
|
5767
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)(FormControl, { children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
5768
|
+
Input,
|
|
5769
|
+
__spreadProps(__spreadValues(__spreadValues({}, field), inputProps), {
|
|
5770
|
+
onChange: (e) => {
|
|
5771
|
+
field.onChange(e);
|
|
5772
|
+
onChange == null ? void 0 : onChange(e.target.value);
|
|
5773
|
+
},
|
|
5774
|
+
placeholder,
|
|
5775
|
+
required,
|
|
5776
|
+
className
|
|
5777
|
+
})
|
|
5778
|
+
) }),
|
|
5779
|
+
fieldError && /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(FormMessage, { className: messageClassName, children: fieldError })
|
|
5780
|
+
] })
|
|
5781
|
+
}
|
|
5782
|
+
) });
|
|
5802
5783
|
};
|
|
5803
|
-
var FormItemContext =
|
|
5784
|
+
var FormItemContext = import_react33.default.createContext(
|
|
5804
5785
|
{}
|
|
5805
5786
|
);
|
|
5806
|
-
var FormItem =
|
|
5787
|
+
var FormItem = import_react33.default.forwardRef((_a, ref) => {
|
|
5807
5788
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5808
|
-
const id =
|
|
5809
|
-
return /* @__PURE__ */ (0,
|
|
5789
|
+
const id = import_react33.default.useId();
|
|
5790
|
+
return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(FormItemContext.Provider, { value: { id }, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", __spreadValues({ ref, className: cn("space-y-2", className) }, props)) });
|
|
5810
5791
|
});
|
|
5811
5792
|
FormItem.displayName = "FormItem";
|
|
5812
|
-
var FormLabel =
|
|
5793
|
+
var FormLabel = import_react33.default.forwardRef((_a, ref) => {
|
|
5813
5794
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5814
5795
|
const { error, formItemId } = useFormField();
|
|
5815
|
-
return /* @__PURE__ */ (0,
|
|
5796
|
+
return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
5816
5797
|
Label3,
|
|
5817
5798
|
__spreadValues({
|
|
5818
5799
|
ref,
|
|
@@ -5822,24 +5803,51 @@ var FormLabel = React43.forwardRef((_a, ref) => {
|
|
|
5822
5803
|
);
|
|
5823
5804
|
});
|
|
5824
5805
|
FormLabel.displayName = "FormLabel";
|
|
5825
|
-
var
|
|
5826
|
-
|
|
5827
|
-
const
|
|
5828
|
-
|
|
5829
|
-
|
|
5830
|
-
|
|
5831
|
-
|
|
5832
|
-
id:
|
|
5833
|
-
|
|
5834
|
-
|
|
5835
|
-
|
|
5836
|
-
|
|
5837
|
-
}
|
|
5838
|
-
|
|
5839
|
-
|
|
5806
|
+
var useFormField = () => {
|
|
5807
|
+
const fieldContext = import_react33.default.useContext(FormFieldContext);
|
|
5808
|
+
const itemContext = import_react33.default.useContext(FormItemContext);
|
|
5809
|
+
const { getFieldState, formState } = (0, import_react_hook_form2.useFormContext)();
|
|
5810
|
+
if (!fieldContext) {
|
|
5811
|
+
const { id: id2 } = itemContext;
|
|
5812
|
+
return {
|
|
5813
|
+
id: itemContext.id,
|
|
5814
|
+
formItemId: `${id2}-form-item`,
|
|
5815
|
+
formDescriptionId: `${id2}-form-item-description`,
|
|
5816
|
+
formMessageId: `${id2}-form-item-message`,
|
|
5817
|
+
error: null
|
|
5818
|
+
};
|
|
5819
|
+
}
|
|
5820
|
+
const fieldState = getFieldState(fieldContext.name, formState);
|
|
5821
|
+
if (!fieldContext) {
|
|
5822
|
+
throw new Error("useFormField should be used within <FormField>");
|
|
5823
|
+
}
|
|
5824
|
+
const { id } = itemContext;
|
|
5825
|
+
return __spreadValues({
|
|
5826
|
+
id,
|
|
5827
|
+
name: fieldContext.name,
|
|
5828
|
+
formItemId: `${id}-form-item`,
|
|
5829
|
+
formDescriptionId: `${id}-form-item-description`,
|
|
5830
|
+
formMessageId: `${id}-form-item-message`
|
|
5831
|
+
}, fieldState);
|
|
5832
|
+
};
|
|
5833
|
+
var FormControl = import_react33.default.forwardRef((_a, ref) => {
|
|
5834
|
+
var props = __objRest(_a, []);
|
|
5835
|
+
const { error, formItemId, formDescriptionId, formMessageId } = useFormField();
|
|
5836
|
+
return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
5837
|
+
import_react_slot3.Slot,
|
|
5838
|
+
__spreadValues({
|
|
5839
|
+
ref,
|
|
5840
|
+
id: formItemId,
|
|
5841
|
+
"aria-describedby": !error ? `${formDescriptionId}` : `${formDescriptionId} ${formMessageId}`,
|
|
5842
|
+
"aria-invalid": !!error
|
|
5843
|
+
}, props)
|
|
5844
|
+
);
|
|
5845
|
+
});
|
|
5846
|
+
FormControl.displayName = "FormControl";
|
|
5847
|
+
var FormDescription = import_react33.default.forwardRef((_a, ref) => {
|
|
5840
5848
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5841
5849
|
const { formDescriptionId } = useFormField();
|
|
5842
|
-
return /* @__PURE__ */ (0,
|
|
5850
|
+
return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
5843
5851
|
"p",
|
|
5844
5852
|
__spreadValues({
|
|
5845
5853
|
ref,
|
|
@@ -5849,14 +5857,14 @@ var FormDescription = React43.forwardRef((_a, ref) => {
|
|
|
5849
5857
|
);
|
|
5850
5858
|
});
|
|
5851
5859
|
FormDescription.displayName = "FormDescription";
|
|
5852
|
-
var FormMessage =
|
|
5860
|
+
var FormMessage = import_react33.default.forwardRef((_a, ref) => {
|
|
5853
5861
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
5854
5862
|
const { error, formMessageId } = useFormField();
|
|
5855
5863
|
const body = error ? String(error == null ? void 0 : error.message) : children;
|
|
5856
5864
|
if (!body) {
|
|
5857
5865
|
return null;
|
|
5858
5866
|
}
|
|
5859
|
-
return /* @__PURE__ */ (0,
|
|
5867
|
+
return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
5860
5868
|
"p",
|
|
5861
5869
|
__spreadProps(__spreadValues({
|
|
5862
5870
|
ref,
|
|
@@ -5872,12 +5880,12 @@ FormMessage.displayName = "FormMessage";
|
|
|
5872
5880
|
// src/components/hover-card.tsx
|
|
5873
5881
|
var HoverCardPrimitive = __toESM(require("@radix-ui/react-hover-card"), 1);
|
|
5874
5882
|
var React44 = __toESM(require("react"), 1);
|
|
5875
|
-
var
|
|
5883
|
+
var import_jsx_runtime20 = require("react/jsx-runtime");
|
|
5876
5884
|
var HoverCard = HoverCardPrimitive.Root;
|
|
5877
5885
|
var HoverCardTrigger = HoverCardPrimitive.Trigger;
|
|
5878
5886
|
var HoverCardContent = React44.forwardRef((_a, ref) => {
|
|
5879
5887
|
var _b = _a, { className, align = "center", sideOffset = 4 } = _b, props = __objRest(_b, ["className", "align", "sideOffset"]);
|
|
5880
|
-
return /* @__PURE__ */ (0,
|
|
5888
|
+
return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
5881
5889
|
HoverCardPrimitive.Content,
|
|
5882
5890
|
__spreadValues({
|
|
5883
5891
|
ref,
|
|
@@ -5894,67 +5902,46 @@ HoverCardContent.displayName = HoverCardPrimitive.Content.displayName;
|
|
|
5894
5902
|
|
|
5895
5903
|
// src/components/icons.tsx
|
|
5896
5904
|
var icon = __toESM(require("lucide-react"), 1);
|
|
5897
|
-
var
|
|
5905
|
+
var import_lucide_react2 = require("lucide-react");
|
|
5898
5906
|
var IconsApp = __spreadValues({
|
|
5899
|
-
dashboard:
|
|
5900
|
-
logo:
|
|
5901
|
-
login:
|
|
5902
|
-
close:
|
|
5903
|
-
profile:
|
|
5904
|
-
spinner:
|
|
5905
|
-
kanban:
|
|
5906
|
-
chevronLeft:
|
|
5907
|
-
chevronRight:
|
|
5908
|
-
trash:
|
|
5909
|
-
employee:
|
|
5910
|
-
post:
|
|
5911
|
-
page:
|
|
5912
|
-
media:
|
|
5913
|
-
settings:
|
|
5914
|
-
billing:
|
|
5915
|
-
ellipsis:
|
|
5916
|
-
add:
|
|
5917
|
-
warning:
|
|
5918
|
-
user:
|
|
5919
|
-
arrowRight:
|
|
5920
|
-
help:
|
|
5921
|
-
pizza:
|
|
5922
|
-
sun:
|
|
5923
|
-
moon:
|
|
5924
|
-
laptop:
|
|
5925
|
-
check:
|
|
5907
|
+
dashboard: import_lucide_react2.LayoutDashboardIcon,
|
|
5908
|
+
logo: import_lucide_react2.Command,
|
|
5909
|
+
login: import_lucide_react2.LogIn,
|
|
5910
|
+
close: import_lucide_react2.X,
|
|
5911
|
+
profile: import_lucide_react2.User2Icon,
|
|
5912
|
+
spinner: import_lucide_react2.Loader2,
|
|
5913
|
+
kanban: import_lucide_react2.CircuitBoardIcon,
|
|
5914
|
+
chevronLeft: import_lucide_react2.ChevronLeft,
|
|
5915
|
+
chevronRight: import_lucide_react2.ChevronRight,
|
|
5916
|
+
trash: import_lucide_react2.Trash,
|
|
5917
|
+
employee: import_lucide_react2.UserX2Icon,
|
|
5918
|
+
post: import_lucide_react2.FileText,
|
|
5919
|
+
page: import_lucide_react2.File,
|
|
5920
|
+
media: import_lucide_react2.Image,
|
|
5921
|
+
settings: import_lucide_react2.Settings,
|
|
5922
|
+
billing: import_lucide_react2.CreditCard,
|
|
5923
|
+
ellipsis: import_lucide_react2.MoreVertical,
|
|
5924
|
+
add: import_lucide_react2.Plus,
|
|
5925
|
+
warning: import_lucide_react2.AlertTriangle,
|
|
5926
|
+
user: import_lucide_react2.User,
|
|
5927
|
+
arrowRight: import_lucide_react2.ArrowRight,
|
|
5928
|
+
help: import_lucide_react2.HelpCircle,
|
|
5929
|
+
pizza: import_lucide_react2.Pizza,
|
|
5930
|
+
sun: import_lucide_react2.SunMedium,
|
|
5931
|
+
moon: import_lucide_react2.Moon,
|
|
5932
|
+
laptop: import_lucide_react2.Laptop,
|
|
5933
|
+
check: import_lucide_react2.Check
|
|
5926
5934
|
}, icon);
|
|
5927
5935
|
var Icons = IconsApp;
|
|
5928
5936
|
|
|
5929
|
-
// src/components/input.tsx
|
|
5930
|
-
var React45 = __toESM(require("react"), 1);
|
|
5931
|
-
var import_jsx_runtime19 = require("react/jsx-runtime");
|
|
5932
|
-
var Input = React45.forwardRef(
|
|
5933
|
-
(_a, ref) => {
|
|
5934
|
-
var _b = _a, { className, type } = _b, props = __objRest(_b, ["className", "type"]);
|
|
5935
|
-
return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
5936
|
-
"input",
|
|
5937
|
-
__spreadValues({
|
|
5938
|
-
type,
|
|
5939
|
-
className: cn(
|
|
5940
|
-
"flex h-9 w-full rounded-md border border-input bg-transparent px-3 py-1 text-sm shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50",
|
|
5941
|
-
className
|
|
5942
|
-
),
|
|
5943
|
-
ref
|
|
5944
|
-
}, props)
|
|
5945
|
-
);
|
|
5946
|
-
}
|
|
5947
|
-
);
|
|
5948
|
-
Input.displayName = "Input";
|
|
5949
|
-
|
|
5950
5937
|
// src/components/input-otp.tsx
|
|
5951
5938
|
var import_react_icons9 = require("@radix-ui/react-icons");
|
|
5952
5939
|
var import_input_otp = require("input-otp");
|
|
5953
|
-
var
|
|
5954
|
-
var
|
|
5955
|
-
var InputOTP =
|
|
5940
|
+
var React45 = __toESM(require("react"), 1);
|
|
5941
|
+
var import_jsx_runtime21 = require("react/jsx-runtime");
|
|
5942
|
+
var InputOTP = React45.forwardRef((_a, ref) => {
|
|
5956
5943
|
var _b = _a, { className, containerClassName } = _b, props = __objRest(_b, ["className", "containerClassName"]);
|
|
5957
|
-
return /* @__PURE__ */ (0,
|
|
5944
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
5958
5945
|
import_input_otp.OTPInput,
|
|
5959
5946
|
__spreadValues({
|
|
5960
5947
|
ref,
|
|
@@ -5967,16 +5954,16 @@ var InputOTP = React46.forwardRef((_a, ref) => {
|
|
|
5967
5954
|
);
|
|
5968
5955
|
});
|
|
5969
5956
|
InputOTP.displayName = "InputOTP";
|
|
5970
|
-
var InputOTPGroup =
|
|
5957
|
+
var InputOTPGroup = React45.forwardRef((_a, ref) => {
|
|
5971
5958
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5972
|
-
return /* @__PURE__ */ (0,
|
|
5959
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", __spreadValues({ ref, className: cn("flex items-center", className) }, props));
|
|
5973
5960
|
});
|
|
5974
5961
|
InputOTPGroup.displayName = "InputOTPGroup";
|
|
5975
|
-
var InputOTPSlot =
|
|
5962
|
+
var InputOTPSlot = React45.forwardRef((_a, ref) => {
|
|
5976
5963
|
var _b = _a, { index, className } = _b, props = __objRest(_b, ["index", "className"]);
|
|
5977
|
-
const inputOTPContext =
|
|
5964
|
+
const inputOTPContext = React45.useContext(import_input_otp.OTPInputContext);
|
|
5978
5965
|
const { char, hasFakeCaret, isActive } = inputOTPContext.slots[index];
|
|
5979
|
-
return /* @__PURE__ */ (0,
|
|
5966
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
|
|
5980
5967
|
"div",
|
|
5981
5968
|
__spreadProps(__spreadValues({
|
|
5982
5969
|
ref,
|
|
@@ -5988,31 +5975,31 @@ var InputOTPSlot = React46.forwardRef((_a, ref) => {
|
|
|
5988
5975
|
}, props), {
|
|
5989
5976
|
children: [
|
|
5990
5977
|
char,
|
|
5991
|
-
hasFakeCaret && /* @__PURE__ */ (0,
|
|
5978
|
+
hasFakeCaret && /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "pointer-events-none absolute inset-0 flex items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "animate-caret-blink h-4 w-px bg-foreground duration-1000" }) })
|
|
5992
5979
|
]
|
|
5993
5980
|
})
|
|
5994
5981
|
);
|
|
5995
5982
|
});
|
|
5996
5983
|
InputOTPSlot.displayName = "InputOTPSlot";
|
|
5997
|
-
var InputOTPSeparator =
|
|
5984
|
+
var InputOTPSeparator = React45.forwardRef((_a, ref) => {
|
|
5998
5985
|
var props = __objRest(_a, []);
|
|
5999
|
-
return /* @__PURE__ */ (0,
|
|
5986
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", __spreadProps(__spreadValues({ ref, role: "separator" }, props), { children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(import_react_icons9.DashIcon, {}) }));
|
|
6000
5987
|
});
|
|
6001
5988
|
InputOTPSeparator.displayName = "InputOTPSeparator";
|
|
6002
5989
|
|
|
6003
5990
|
// src/components/menubar.tsx
|
|
6004
5991
|
var import_react_icons10 = require("@radix-ui/react-icons");
|
|
6005
5992
|
var MenubarPrimitive = __toESM(require("@radix-ui/react-menubar"), 1);
|
|
6006
|
-
var
|
|
6007
|
-
var
|
|
5993
|
+
var React46 = __toESM(require("react"), 1);
|
|
5994
|
+
var import_jsx_runtime22 = require("react/jsx-runtime");
|
|
6008
5995
|
var MenubarMenu = MenubarPrimitive.Menu;
|
|
6009
5996
|
var MenubarGroup = MenubarPrimitive.Group;
|
|
6010
5997
|
var MenubarPortal = MenubarPrimitive.Portal;
|
|
6011
5998
|
var MenubarSub = MenubarPrimitive.Sub;
|
|
6012
5999
|
var MenubarRadioGroup = MenubarPrimitive.RadioGroup;
|
|
6013
|
-
var Menubar =
|
|
6000
|
+
var Menubar = React46.forwardRef((_a, ref) => {
|
|
6014
6001
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6015
|
-
return /* @__PURE__ */ (0,
|
|
6002
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
6016
6003
|
MenubarPrimitive.Root,
|
|
6017
6004
|
__spreadValues({
|
|
6018
6005
|
ref,
|
|
@@ -6024,9 +6011,9 @@ var Menubar = React47.forwardRef((_a, ref) => {
|
|
|
6024
6011
|
);
|
|
6025
6012
|
});
|
|
6026
6013
|
Menubar.displayName = MenubarPrimitive.Root.displayName;
|
|
6027
|
-
var MenubarTrigger =
|
|
6014
|
+
var MenubarTrigger = React46.forwardRef((_a, ref) => {
|
|
6028
6015
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6029
|
-
return /* @__PURE__ */ (0,
|
|
6016
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
6030
6017
|
MenubarPrimitive.Trigger,
|
|
6031
6018
|
__spreadValues({
|
|
6032
6019
|
ref,
|
|
@@ -6038,9 +6025,9 @@ var MenubarTrigger = React47.forwardRef((_a, ref) => {
|
|
|
6038
6025
|
);
|
|
6039
6026
|
});
|
|
6040
6027
|
MenubarTrigger.displayName = MenubarPrimitive.Trigger.displayName;
|
|
6041
|
-
var MenubarSubTrigger =
|
|
6028
|
+
var MenubarSubTrigger = React46.forwardRef((_a, ref) => {
|
|
6042
6029
|
var _b = _a, { className, inset, children } = _b, props = __objRest(_b, ["className", "inset", "children"]);
|
|
6043
|
-
return /* @__PURE__ */ (0,
|
|
6030
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
|
|
6044
6031
|
MenubarPrimitive.SubTrigger,
|
|
6045
6032
|
__spreadProps(__spreadValues({
|
|
6046
6033
|
ref,
|
|
@@ -6052,15 +6039,15 @@ var MenubarSubTrigger = React47.forwardRef((_a, ref) => {
|
|
|
6052
6039
|
}, props), {
|
|
6053
6040
|
children: [
|
|
6054
6041
|
children,
|
|
6055
|
-
/* @__PURE__ */ (0,
|
|
6042
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)(import_react_icons10.ChevronRightIcon, { className: "ml-auto h-4 w-4" })
|
|
6056
6043
|
]
|
|
6057
6044
|
})
|
|
6058
6045
|
);
|
|
6059
6046
|
});
|
|
6060
6047
|
MenubarSubTrigger.displayName = MenubarPrimitive.SubTrigger.displayName;
|
|
6061
|
-
var MenubarSubContent =
|
|
6048
|
+
var MenubarSubContent = React46.forwardRef((_a, ref) => {
|
|
6062
6049
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6063
|
-
return /* @__PURE__ */ (0,
|
|
6050
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
6064
6051
|
MenubarPrimitive.SubContent,
|
|
6065
6052
|
__spreadValues({
|
|
6066
6053
|
ref,
|
|
@@ -6072,10 +6059,10 @@ var MenubarSubContent = React47.forwardRef((_a, ref) => {
|
|
|
6072
6059
|
);
|
|
6073
6060
|
});
|
|
6074
6061
|
MenubarSubContent.displayName = MenubarPrimitive.SubContent.displayName;
|
|
6075
|
-
var MenubarContent =
|
|
6062
|
+
var MenubarContent = React46.forwardRef(
|
|
6076
6063
|
(_a, ref) => {
|
|
6077
6064
|
var _b = _a, { className, align = "start", alignOffset = -4, sideOffset = 8 } = _b, props = __objRest(_b, ["className", "align", "alignOffset", "sideOffset"]);
|
|
6078
|
-
return /* @__PURE__ */ (0,
|
|
6065
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(MenubarPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
6079
6066
|
MenubarPrimitive.Content,
|
|
6080
6067
|
__spreadValues({
|
|
6081
6068
|
ref,
|
|
@@ -6091,9 +6078,9 @@ var MenubarContent = React47.forwardRef(
|
|
|
6091
6078
|
}
|
|
6092
6079
|
);
|
|
6093
6080
|
MenubarContent.displayName = MenubarPrimitive.Content.displayName;
|
|
6094
|
-
var MenubarItem =
|
|
6081
|
+
var MenubarItem = React46.forwardRef((_a, ref) => {
|
|
6095
6082
|
var _b = _a, { className, inset } = _b, props = __objRest(_b, ["className", "inset"]);
|
|
6096
|
-
return /* @__PURE__ */ (0,
|
|
6083
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
6097
6084
|
MenubarPrimitive.Item,
|
|
6098
6085
|
__spreadValues({
|
|
6099
6086
|
ref,
|
|
@@ -6106,9 +6093,9 @@ var MenubarItem = React47.forwardRef((_a, ref) => {
|
|
|
6106
6093
|
);
|
|
6107
6094
|
});
|
|
6108
6095
|
MenubarItem.displayName = MenubarPrimitive.Item.displayName;
|
|
6109
|
-
var MenubarCheckboxItem =
|
|
6096
|
+
var MenubarCheckboxItem = React46.forwardRef((_a, ref) => {
|
|
6110
6097
|
var _b = _a, { className, children, checked } = _b, props = __objRest(_b, ["className", "children", "checked"]);
|
|
6111
|
-
return /* @__PURE__ */ (0,
|
|
6098
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
|
|
6112
6099
|
MenubarPrimitive.CheckboxItem,
|
|
6113
6100
|
__spreadProps(__spreadValues({
|
|
6114
6101
|
ref,
|
|
@@ -6119,16 +6106,16 @@ var MenubarCheckboxItem = React47.forwardRef((_a, ref) => {
|
|
|
6119
6106
|
checked
|
|
6120
6107
|
}, props), {
|
|
6121
6108
|
children: [
|
|
6122
|
-
/* @__PURE__ */ (0,
|
|
6109
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(MenubarPrimitive.ItemIndicator, { children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(import_react_icons10.CheckIcon, { className: "h-4 w-4" }) }) }),
|
|
6123
6110
|
children
|
|
6124
6111
|
]
|
|
6125
6112
|
})
|
|
6126
6113
|
);
|
|
6127
6114
|
});
|
|
6128
6115
|
MenubarCheckboxItem.displayName = MenubarPrimitive.CheckboxItem.displayName;
|
|
6129
|
-
var MenubarRadioItem =
|
|
6116
|
+
var MenubarRadioItem = React46.forwardRef((_a, ref) => {
|
|
6130
6117
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
6131
|
-
return /* @__PURE__ */ (0,
|
|
6118
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
|
|
6132
6119
|
MenubarPrimitive.RadioItem,
|
|
6133
6120
|
__spreadProps(__spreadValues({
|
|
6134
6121
|
ref,
|
|
@@ -6138,16 +6125,16 @@ var MenubarRadioItem = React47.forwardRef((_a, ref) => {
|
|
|
6138
6125
|
)
|
|
6139
6126
|
}, props), {
|
|
6140
6127
|
children: [
|
|
6141
|
-
/* @__PURE__ */ (0,
|
|
6128
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(MenubarPrimitive.ItemIndicator, { children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(import_react_icons10.DotFilledIcon, { className: "h-4 w-4 fill-current" }) }) }),
|
|
6142
6129
|
children
|
|
6143
6130
|
]
|
|
6144
6131
|
})
|
|
6145
6132
|
);
|
|
6146
6133
|
});
|
|
6147
6134
|
MenubarRadioItem.displayName = MenubarPrimitive.RadioItem.displayName;
|
|
6148
|
-
var MenubarLabel =
|
|
6135
|
+
var MenubarLabel = React46.forwardRef((_a, ref) => {
|
|
6149
6136
|
var _b = _a, { className, inset } = _b, props = __objRest(_b, ["className", "inset"]);
|
|
6150
|
-
return /* @__PURE__ */ (0,
|
|
6137
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
6151
6138
|
MenubarPrimitive.Label,
|
|
6152
6139
|
__spreadValues({
|
|
6153
6140
|
ref,
|
|
@@ -6160,9 +6147,9 @@ var MenubarLabel = React47.forwardRef((_a, ref) => {
|
|
|
6160
6147
|
);
|
|
6161
6148
|
});
|
|
6162
6149
|
MenubarLabel.displayName = MenubarPrimitive.Label.displayName;
|
|
6163
|
-
var MenubarSeparator =
|
|
6150
|
+
var MenubarSeparator = React46.forwardRef((_a, ref) => {
|
|
6164
6151
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6165
|
-
return /* @__PURE__ */ (0,
|
|
6152
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
6166
6153
|
MenubarPrimitive.Separator,
|
|
6167
6154
|
__spreadValues({
|
|
6168
6155
|
ref,
|
|
@@ -6177,7 +6164,7 @@ var MenubarShortcut = (_a) => {
|
|
|
6177
6164
|
} = _b, props = __objRest(_b, [
|
|
6178
6165
|
"className"
|
|
6179
6166
|
]);
|
|
6180
|
-
return /* @__PURE__ */ (0,
|
|
6167
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
6181
6168
|
"span",
|
|
6182
6169
|
__spreadValues({
|
|
6183
6170
|
className: cn(
|
|
@@ -6190,7 +6177,7 @@ var MenubarShortcut = (_a) => {
|
|
|
6190
6177
|
MenubarShortcut.displayname = "MenubarShortcut";
|
|
6191
6178
|
|
|
6192
6179
|
// src/components/modal.tsx
|
|
6193
|
-
var
|
|
6180
|
+
var import_jsx_runtime23 = require("react/jsx-runtime");
|
|
6194
6181
|
var Modal = ({
|
|
6195
6182
|
title,
|
|
6196
6183
|
description,
|
|
@@ -6204,12 +6191,12 @@ var Modal = ({
|
|
|
6204
6191
|
onClose();
|
|
6205
6192
|
}
|
|
6206
6193
|
};
|
|
6207
|
-
return /* @__PURE__ */ (0,
|
|
6208
|
-
/* @__PURE__ */ (0,
|
|
6209
|
-
/* @__PURE__ */ (0,
|
|
6210
|
-
/* @__PURE__ */ (0,
|
|
6194
|
+
return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Dialog, { open: isOpen, onOpenChange: onChange, children: /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(DialogContent, { className, children: [
|
|
6195
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(DialogHeader, { children: [
|
|
6196
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)(DialogTitle, { children: title }),
|
|
6197
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)(DialogDescription, { children: description })
|
|
6211
6198
|
] }),
|
|
6212
|
-
/* @__PURE__ */ (0,
|
|
6199
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("div", { children })
|
|
6213
6200
|
] }) });
|
|
6214
6201
|
};
|
|
6215
6202
|
|
|
@@ -6217,11 +6204,11 @@ var Modal = ({
|
|
|
6217
6204
|
var import_react_icons11 = require("@radix-ui/react-icons");
|
|
6218
6205
|
var NavigationMenuPrimitive = __toESM(require("@radix-ui/react-navigation-menu"), 1);
|
|
6219
6206
|
var import_class_variance_authority5 = require("class-variance-authority");
|
|
6220
|
-
var
|
|
6221
|
-
var
|
|
6222
|
-
var NavigationMenu =
|
|
6207
|
+
var React47 = __toESM(require("react"), 1);
|
|
6208
|
+
var import_jsx_runtime24 = require("react/jsx-runtime");
|
|
6209
|
+
var NavigationMenu = React47.forwardRef((_a, ref) => {
|
|
6223
6210
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
6224
|
-
return /* @__PURE__ */ (0,
|
|
6211
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
|
|
6225
6212
|
NavigationMenuPrimitive.Root,
|
|
6226
6213
|
__spreadProps(__spreadValues({
|
|
6227
6214
|
ref,
|
|
@@ -6232,15 +6219,15 @@ var NavigationMenu = React48.forwardRef((_a, ref) => {
|
|
|
6232
6219
|
}, props), {
|
|
6233
6220
|
children: [
|
|
6234
6221
|
children,
|
|
6235
|
-
/* @__PURE__ */ (0,
|
|
6222
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)(NavigationMenuViewport, {})
|
|
6236
6223
|
]
|
|
6237
6224
|
})
|
|
6238
6225
|
);
|
|
6239
6226
|
});
|
|
6240
6227
|
NavigationMenu.displayName = NavigationMenuPrimitive.Root.displayName;
|
|
6241
|
-
var NavigationMenuList =
|
|
6228
|
+
var NavigationMenuList = React47.forwardRef((_a, ref) => {
|
|
6242
6229
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6243
|
-
return /* @__PURE__ */ (0,
|
|
6230
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
6244
6231
|
NavigationMenuPrimitive.List,
|
|
6245
6232
|
__spreadValues({
|
|
6246
6233
|
ref,
|
|
@@ -6256,9 +6243,9 @@ var NavigationMenuItem = NavigationMenuPrimitive.Item;
|
|
|
6256
6243
|
var navigationMenuTriggerStyle = (0, import_class_variance_authority5.cva)(
|
|
6257
6244
|
"group inline-flex h-9 w-max items-center justify-center rounded-md bg-background px-4 py-2 text-sm font-medium transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground focus:outline-none disabled:pointer-events-none disabled:opacity-50 data-[active]:bg-accent/50 data-[state=open]:bg-accent/50"
|
|
6258
6245
|
);
|
|
6259
|
-
var NavigationMenuTrigger =
|
|
6246
|
+
var NavigationMenuTrigger = React47.forwardRef((_a, ref) => {
|
|
6260
6247
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
6261
|
-
return /* @__PURE__ */ (0,
|
|
6248
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
|
|
6262
6249
|
NavigationMenuPrimitive.Trigger,
|
|
6263
6250
|
__spreadProps(__spreadValues({
|
|
6264
6251
|
ref,
|
|
@@ -6267,7 +6254,7 @@ var NavigationMenuTrigger = React48.forwardRef((_a, ref) => {
|
|
|
6267
6254
|
children: [
|
|
6268
6255
|
children,
|
|
6269
6256
|
" ",
|
|
6270
|
-
/* @__PURE__ */ (0,
|
|
6257
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
6271
6258
|
import_react_icons11.ChevronDownIcon,
|
|
6272
6259
|
{
|
|
6273
6260
|
className: "relative top-[1px] ml-1 h-3 w-3 transition duration-300 group-data-[state=open]:rotate-180",
|
|
@@ -6279,9 +6266,9 @@ var NavigationMenuTrigger = React48.forwardRef((_a, ref) => {
|
|
|
6279
6266
|
);
|
|
6280
6267
|
});
|
|
6281
6268
|
NavigationMenuTrigger.displayName = NavigationMenuPrimitive.Trigger.displayName;
|
|
6282
|
-
var NavigationMenuContent =
|
|
6269
|
+
var NavigationMenuContent = React47.forwardRef((_a, ref) => {
|
|
6283
6270
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6284
|
-
return /* @__PURE__ */ (0,
|
|
6271
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
6285
6272
|
NavigationMenuPrimitive.Content,
|
|
6286
6273
|
__spreadValues({
|
|
6287
6274
|
ref,
|
|
@@ -6294,9 +6281,9 @@ var NavigationMenuContent = React48.forwardRef((_a, ref) => {
|
|
|
6294
6281
|
});
|
|
6295
6282
|
NavigationMenuContent.displayName = NavigationMenuPrimitive.Content.displayName;
|
|
6296
6283
|
var NavigationMenuLink = NavigationMenuPrimitive.Link;
|
|
6297
|
-
var NavigationMenuViewport =
|
|
6284
|
+
var NavigationMenuViewport = React47.forwardRef((_a, ref) => {
|
|
6298
6285
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6299
|
-
return /* @__PURE__ */ (0,
|
|
6286
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { className: cn("absolute left-0 top-full flex justify-center"), children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
6300
6287
|
NavigationMenuPrimitive.Viewport,
|
|
6301
6288
|
__spreadValues({
|
|
6302
6289
|
className: cn(
|
|
@@ -6308,9 +6295,9 @@ var NavigationMenuViewport = React48.forwardRef((_a, ref) => {
|
|
|
6308
6295
|
) });
|
|
6309
6296
|
});
|
|
6310
6297
|
NavigationMenuViewport.displayName = NavigationMenuPrimitive.Viewport.displayName;
|
|
6311
|
-
var NavigationMenuIndicator =
|
|
6298
|
+
var NavigationMenuIndicator = React47.forwardRef((_a, ref) => {
|
|
6312
6299
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6313
|
-
return /* @__PURE__ */ (0,
|
|
6300
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
6314
6301
|
NavigationMenuPrimitive.Indicator,
|
|
6315
6302
|
__spreadProps(__spreadValues({
|
|
6316
6303
|
ref,
|
|
@@ -6319,7 +6306,7 @@ var NavigationMenuIndicator = React48.forwardRef((_a, ref) => {
|
|
|
6319
6306
|
className
|
|
6320
6307
|
)
|
|
6321
6308
|
}, props), {
|
|
6322
|
-
children: /* @__PURE__ */ (0,
|
|
6309
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { className: "relative top-[60%] h-2 w-2 rotate-45 rounded-tl-sm bg-border shadow-md" })
|
|
6323
6310
|
})
|
|
6324
6311
|
);
|
|
6325
6312
|
});
|
|
@@ -6327,12 +6314,12 @@ NavigationMenuIndicator.displayName = NavigationMenuPrimitive.Indicator.displayN
|
|
|
6327
6314
|
|
|
6328
6315
|
// src/components/pagination.tsx
|
|
6329
6316
|
var import_react_icons12 = require("@radix-ui/react-icons");
|
|
6330
|
-
var
|
|
6331
|
-
var
|
|
6332
|
-
var
|
|
6317
|
+
var React48 = __toESM(require("react"), 1);
|
|
6318
|
+
var import_lucide_react3 = require("lucide-react");
|
|
6319
|
+
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
6333
6320
|
var Pagination = (_a) => {
|
|
6334
6321
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6335
|
-
return /* @__PURE__ */ (0,
|
|
6322
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
6336
6323
|
"nav",
|
|
6337
6324
|
__spreadValues({
|
|
6338
6325
|
role: "navigation",
|
|
@@ -6342,9 +6329,9 @@ var Pagination = (_a) => {
|
|
|
6342
6329
|
);
|
|
6343
6330
|
};
|
|
6344
6331
|
Pagination.displayName = "Pagination";
|
|
6345
|
-
var PaginationContent =
|
|
6332
|
+
var PaginationContent = React48.forwardRef((_a, ref) => {
|
|
6346
6333
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6347
|
-
return /* @__PURE__ */ (0,
|
|
6334
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
6348
6335
|
"ul",
|
|
6349
6336
|
__spreadValues({
|
|
6350
6337
|
ref,
|
|
@@ -6353,9 +6340,9 @@ var PaginationContent = React49.forwardRef((_a, ref) => {
|
|
|
6353
6340
|
);
|
|
6354
6341
|
});
|
|
6355
6342
|
PaginationContent.displayName = "PaginationContent";
|
|
6356
|
-
var PaginationItem =
|
|
6343
|
+
var PaginationItem = React48.forwardRef((_a, ref) => {
|
|
6357
6344
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6358
|
-
return /* @__PURE__ */ (0,
|
|
6345
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("li", __spreadValues({ ref, className: cn("", className) }, props));
|
|
6359
6346
|
});
|
|
6360
6347
|
PaginationItem.displayName = "PaginationItem";
|
|
6361
6348
|
var PaginationLink = (_a) => {
|
|
@@ -6368,7 +6355,7 @@ var PaginationLink = (_a) => {
|
|
|
6368
6355
|
"isActive",
|
|
6369
6356
|
"size"
|
|
6370
6357
|
]);
|
|
6371
|
-
return /* @__PURE__ */ (0,
|
|
6358
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
6372
6359
|
"a",
|
|
6373
6360
|
__spreadValues({
|
|
6374
6361
|
"aria-current": isActive ? "page" : void 0,
|
|
@@ -6389,7 +6376,7 @@ var PaginationPreviousLast = (_a) => {
|
|
|
6389
6376
|
} = _b, props = __objRest(_b, [
|
|
6390
6377
|
"className"
|
|
6391
6378
|
]);
|
|
6392
|
-
return /* @__PURE__ */ (0,
|
|
6379
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
|
6393
6380
|
PaginationLink,
|
|
6394
6381
|
__spreadProps(__spreadValues({
|
|
6395
6382
|
"aria-label": "Go to previous page",
|
|
@@ -6397,8 +6384,8 @@ var PaginationPreviousLast = (_a) => {
|
|
|
6397
6384
|
className: cn("gap-1 pl-2.5", className)
|
|
6398
6385
|
}, props), {
|
|
6399
6386
|
children: [
|
|
6400
|
-
/* @__PURE__ */ (0,
|
|
6401
|
-
/* @__PURE__ */ (0,
|
|
6387
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)(import_lucide_react3.ChevronLeft, { className: "h-4 w-4" }),
|
|
6388
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { className: "sr-only", children: "Previous Last" })
|
|
6402
6389
|
]
|
|
6403
6390
|
})
|
|
6404
6391
|
);
|
|
@@ -6410,7 +6397,7 @@ var PaginationPrevious = (_a) => {
|
|
|
6410
6397
|
} = _b, props = __objRest(_b, [
|
|
6411
6398
|
"className"
|
|
6412
6399
|
]);
|
|
6413
|
-
return /* @__PURE__ */ (0,
|
|
6400
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
|
6414
6401
|
PaginationLink,
|
|
6415
6402
|
__spreadProps(__spreadValues({
|
|
6416
6403
|
"aria-label": "Go to previous page",
|
|
@@ -6418,8 +6405,8 @@ var PaginationPrevious = (_a) => {
|
|
|
6418
6405
|
className: cn("gap-1 pl-2.5", className)
|
|
6419
6406
|
}, props), {
|
|
6420
6407
|
children: [
|
|
6421
|
-
/* @__PURE__ */ (0,
|
|
6422
|
-
/* @__PURE__ */ (0,
|
|
6408
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)(import_react_icons12.ChevronLeftIcon, { className: "h-4 w-4" }),
|
|
6409
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { children: "Previous" })
|
|
6423
6410
|
]
|
|
6424
6411
|
})
|
|
6425
6412
|
);
|
|
@@ -6431,7 +6418,7 @@ var PaginationNext = (_a) => {
|
|
|
6431
6418
|
} = _b, props = __objRest(_b, [
|
|
6432
6419
|
"className"
|
|
6433
6420
|
]);
|
|
6434
|
-
return /* @__PURE__ */ (0,
|
|
6421
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
|
6435
6422
|
PaginationLink,
|
|
6436
6423
|
__spreadProps(__spreadValues({
|
|
6437
6424
|
"aria-label": "Go to next page",
|
|
@@ -6439,8 +6426,8 @@ var PaginationNext = (_a) => {
|
|
|
6439
6426
|
className: cn("gap-1 pr-2.5", className)
|
|
6440
6427
|
}, props), {
|
|
6441
6428
|
children: [
|
|
6442
|
-
/* @__PURE__ */ (0,
|
|
6443
|
-
/* @__PURE__ */ (0,
|
|
6429
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { children: "Next" }),
|
|
6430
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)(import_react_icons12.ChevronRightIcon, { className: "h-4 w-4" })
|
|
6444
6431
|
]
|
|
6445
6432
|
})
|
|
6446
6433
|
);
|
|
@@ -6452,7 +6439,7 @@ var PaginationNextLast = (_a) => {
|
|
|
6452
6439
|
} = _b, props = __objRest(_b, [
|
|
6453
6440
|
"className"
|
|
6454
6441
|
]);
|
|
6455
|
-
return /* @__PURE__ */ (0,
|
|
6442
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
|
6456
6443
|
PaginationLink,
|
|
6457
6444
|
__spreadProps(__spreadValues({
|
|
6458
6445
|
"aria-label": "Go to next page",
|
|
@@ -6460,8 +6447,8 @@ var PaginationNextLast = (_a) => {
|
|
|
6460
6447
|
className: cn("gap-1 pr-2.5", className)
|
|
6461
6448
|
}, props), {
|
|
6462
6449
|
children: [
|
|
6463
|
-
/* @__PURE__ */ (0,
|
|
6464
|
-
/* @__PURE__ */ (0,
|
|
6450
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { className: "sr-only", children: "Next Last" }),
|
|
6451
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)(import_lucide_react3.ChevronRight, { className: "h-4 w-4" })
|
|
6465
6452
|
]
|
|
6466
6453
|
})
|
|
6467
6454
|
);
|
|
@@ -6473,15 +6460,15 @@ var PaginationEllipsis = (_a) => {
|
|
|
6473
6460
|
} = _b, props = __objRest(_b, [
|
|
6474
6461
|
"className"
|
|
6475
6462
|
]);
|
|
6476
|
-
return /* @__PURE__ */ (0,
|
|
6463
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
|
6477
6464
|
"span",
|
|
6478
6465
|
__spreadProps(__spreadValues({
|
|
6479
6466
|
"aria-hidden": true,
|
|
6480
6467
|
className: cn("flex h-9 w-9 items-center justify-center", className)
|
|
6481
6468
|
}, props), {
|
|
6482
6469
|
children: [
|
|
6483
|
-
/* @__PURE__ */ (0,
|
|
6484
|
-
/* @__PURE__ */ (0,
|
|
6470
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)(import_react_icons12.DotsHorizontalIcon, { className: "h-4 w-4" }),
|
|
6471
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { className: "sr-only", children: "More pages" })
|
|
6485
6472
|
]
|
|
6486
6473
|
})
|
|
6487
6474
|
);
|
|
@@ -6490,14 +6477,14 @@ PaginationEllipsis.displayName = "PaginationEllipsis";
|
|
|
6490
6477
|
|
|
6491
6478
|
// src/components/popover.tsx
|
|
6492
6479
|
var PopoverPrimitive = __toESM(require("@radix-ui/react-popover"), 1);
|
|
6493
|
-
var
|
|
6494
|
-
var
|
|
6480
|
+
var React49 = __toESM(require("react"), 1);
|
|
6481
|
+
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
6495
6482
|
var Popover = PopoverPrimitive.Root;
|
|
6496
6483
|
var PopoverTrigger = PopoverPrimitive.Trigger;
|
|
6497
6484
|
var PopoverAnchor = PopoverPrimitive.Anchor;
|
|
6498
|
-
var PopoverContent =
|
|
6485
|
+
var PopoverContent = React49.forwardRef((_a, ref) => {
|
|
6499
6486
|
var _b = _a, { className, align = "center", sideOffset = 4 } = _b, props = __objRest(_b, ["className", "align", "sideOffset"]);
|
|
6500
|
-
return /* @__PURE__ */ (0,
|
|
6487
|
+
return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(PopoverPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
6501
6488
|
PopoverPrimitive.Content,
|
|
6502
6489
|
__spreadValues({
|
|
6503
6490
|
ref,
|
|
@@ -6514,11 +6501,11 @@ PopoverContent.displayName = PopoverPrimitive.Content.displayName;
|
|
|
6514
6501
|
|
|
6515
6502
|
// src/components/progress.tsx
|
|
6516
6503
|
var ProgressPrimitive = __toESM(require("@radix-ui/react-progress"), 1);
|
|
6517
|
-
var
|
|
6518
|
-
var
|
|
6519
|
-
var Progress =
|
|
6504
|
+
var React50 = __toESM(require("react"), 1);
|
|
6505
|
+
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
6506
|
+
var Progress = React50.forwardRef((_a, ref) => {
|
|
6520
6507
|
var _b = _a, { className, value } = _b, props = __objRest(_b, ["className", "value"]);
|
|
6521
|
-
return /* @__PURE__ */ (0,
|
|
6508
|
+
return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
6522
6509
|
ProgressPrimitive.Root,
|
|
6523
6510
|
__spreadProps(__spreadValues({
|
|
6524
6511
|
ref,
|
|
@@ -6527,7 +6514,7 @@ var Progress = React51.forwardRef((_a, ref) => {
|
|
|
6527
6514
|
className
|
|
6528
6515
|
)
|
|
6529
6516
|
}, props), {
|
|
6530
|
-
children: /* @__PURE__ */ (0,
|
|
6517
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
6531
6518
|
ProgressPrimitive.Indicator,
|
|
6532
6519
|
{
|
|
6533
6520
|
className: "h-full w-full flex-1 bg-primary transition-all",
|
|
@@ -6542,11 +6529,11 @@ Progress.displayName = ProgressPrimitive.Root.displayName;
|
|
|
6542
6529
|
// src/components/radio-group.tsx
|
|
6543
6530
|
var import_react_icons13 = require("@radix-ui/react-icons");
|
|
6544
6531
|
var RadioGroupPrimitive = __toESM(require("@radix-ui/react-radio-group"), 1);
|
|
6545
|
-
var
|
|
6546
|
-
var
|
|
6547
|
-
var RadioGroup4 =
|
|
6532
|
+
var React51 = __toESM(require("react"), 1);
|
|
6533
|
+
var import_jsx_runtime28 = require("react/jsx-runtime");
|
|
6534
|
+
var RadioGroup4 = React51.forwardRef((_a, ref) => {
|
|
6548
6535
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6549
|
-
return /* @__PURE__ */ (0,
|
|
6536
|
+
return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
6550
6537
|
RadioGroupPrimitive.Root,
|
|
6551
6538
|
__spreadProps(__spreadValues({
|
|
6552
6539
|
className: cn("grid gap-2", className)
|
|
@@ -6556,9 +6543,9 @@ var RadioGroup4 = React52.forwardRef((_a, ref) => {
|
|
|
6556
6543
|
);
|
|
6557
6544
|
});
|
|
6558
6545
|
RadioGroup4.displayName = RadioGroupPrimitive.Root.displayName;
|
|
6559
|
-
var RadioGroupItem =
|
|
6546
|
+
var RadioGroupItem = React51.forwardRef((_a, ref) => {
|
|
6560
6547
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6561
|
-
return /* @__PURE__ */ (0,
|
|
6548
|
+
return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
6562
6549
|
RadioGroupPrimitive.Item,
|
|
6563
6550
|
__spreadProps(__spreadValues({
|
|
6564
6551
|
ref,
|
|
@@ -6567,7 +6554,7 @@ var RadioGroupItem = React52.forwardRef((_a, ref) => {
|
|
|
6567
6554
|
className
|
|
6568
6555
|
)
|
|
6569
6556
|
}, props), {
|
|
6570
|
-
children: /* @__PURE__ */ (0,
|
|
6557
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(RadioGroupPrimitive.Indicator, { className: "flex items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(import_react_icons13.CheckIcon, { className: "h-3.5 w-3.5 fill-primary" }) })
|
|
6571
6558
|
})
|
|
6572
6559
|
);
|
|
6573
6560
|
});
|
|
@@ -6576,14 +6563,14 @@ RadioGroupItem.displayName = RadioGroupPrimitive.Item.displayName;
|
|
|
6576
6563
|
// src/components/resizable.tsx
|
|
6577
6564
|
var import_react_icons14 = require("@radix-ui/react-icons");
|
|
6578
6565
|
var ResizablePrimitive = __toESM(require("react-resizable-panels"), 1);
|
|
6579
|
-
var
|
|
6566
|
+
var import_jsx_runtime29 = require("react/jsx-runtime");
|
|
6580
6567
|
var ResizablePanelGroup = (_a) => {
|
|
6581
6568
|
var _b = _a, {
|
|
6582
6569
|
className
|
|
6583
6570
|
} = _b, props = __objRest(_b, [
|
|
6584
6571
|
"className"
|
|
6585
6572
|
]);
|
|
6586
|
-
return /* @__PURE__ */ (0,
|
|
6573
|
+
return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
6587
6574
|
ResizablePrimitive.PanelGroup,
|
|
6588
6575
|
__spreadValues({
|
|
6589
6576
|
className: cn(
|
|
@@ -6602,7 +6589,7 @@ var ResizableHandle = (_a) => {
|
|
|
6602
6589
|
"withHandle",
|
|
6603
6590
|
"className"
|
|
6604
6591
|
]);
|
|
6605
|
-
return /* @__PURE__ */ (0,
|
|
6592
|
+
return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
6606
6593
|
ResizablePrimitive.PanelResizeHandle,
|
|
6607
6594
|
__spreadProps(__spreadValues({
|
|
6608
6595
|
className: cn(
|
|
@@ -6610,35 +6597,35 @@ var ResizableHandle = (_a) => {
|
|
|
6610
6597
|
className
|
|
6611
6598
|
)
|
|
6612
6599
|
}, props), {
|
|
6613
|
-
children: withHandle && /* @__PURE__ */ (0,
|
|
6600
|
+
children: withHandle && /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("div", { className: "z-10 flex h-4 w-3 items-center justify-center rounded-sm border bg-border", children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(import_react_icons14.DragHandleDots2Icon, { className: "h-2.5 w-2.5" }) })
|
|
6614
6601
|
})
|
|
6615
6602
|
);
|
|
6616
6603
|
};
|
|
6617
6604
|
|
|
6618
6605
|
// src/components/scroll-area.tsx
|
|
6619
6606
|
var ScrollAreaPrimitive = __toESM(require("@radix-ui/react-scroll-area"), 1);
|
|
6620
|
-
var
|
|
6621
|
-
var
|
|
6622
|
-
var ScrollArea =
|
|
6607
|
+
var React52 = __toESM(require("react"), 1);
|
|
6608
|
+
var import_jsx_runtime30 = require("react/jsx-runtime");
|
|
6609
|
+
var ScrollArea = React52.forwardRef((_a, ref) => {
|
|
6623
6610
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
6624
|
-
return /* @__PURE__ */ (0,
|
|
6611
|
+
return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
|
|
6625
6612
|
ScrollAreaPrimitive.Root,
|
|
6626
6613
|
__spreadProps(__spreadValues({
|
|
6627
6614
|
ref,
|
|
6628
6615
|
className: cn("relative overflow-hidden", className)
|
|
6629
6616
|
}, props), {
|
|
6630
6617
|
children: [
|
|
6631
|
-
/* @__PURE__ */ (0,
|
|
6632
|
-
/* @__PURE__ */ (0,
|
|
6633
|
-
/* @__PURE__ */ (0,
|
|
6618
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)(ScrollAreaPrimitive.Viewport, { className: "h-full w-full rounded-[inherit]", children }),
|
|
6619
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)(ScrollBar, {}),
|
|
6620
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)(ScrollAreaPrimitive.Corner, {})
|
|
6634
6621
|
]
|
|
6635
6622
|
})
|
|
6636
6623
|
);
|
|
6637
6624
|
});
|
|
6638
6625
|
ScrollArea.displayName = ScrollAreaPrimitive.Root.displayName;
|
|
6639
|
-
var ScrollBar =
|
|
6626
|
+
var ScrollBar = React52.forwardRef((_a, ref) => {
|
|
6640
6627
|
var _b = _a, { className, orientation = "vertical" } = _b, props = __objRest(_b, ["className", "orientation"]);
|
|
6641
|
-
return /* @__PURE__ */ (0,
|
|
6628
|
+
return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
6642
6629
|
ScrollAreaPrimitive.ScrollAreaScrollbar,
|
|
6643
6630
|
__spreadProps(__spreadValues({
|
|
6644
6631
|
ref,
|
|
@@ -6650,23 +6637,59 @@ var ScrollBar = React53.forwardRef((_a, ref) => {
|
|
|
6650
6637
|
className
|
|
6651
6638
|
)
|
|
6652
6639
|
}, props), {
|
|
6653
|
-
children: /* @__PURE__ */ (0,
|
|
6640
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(ScrollAreaPrimitive.ScrollAreaThumb, { className: "relative flex-1 rounded-full bg-border" })
|
|
6654
6641
|
})
|
|
6655
6642
|
);
|
|
6656
6643
|
});
|
|
6657
6644
|
ScrollBar.displayName = ScrollAreaPrimitive.ScrollAreaScrollbar.displayName;
|
|
6658
6645
|
|
|
6646
|
+
// src/components/search-input.tsx
|
|
6647
|
+
var import_react34 = __toESM(require("react"), 1);
|
|
6648
|
+
var import_use_debounce = require("use-debounce");
|
|
6649
|
+
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
6650
|
+
function SearchInput({
|
|
6651
|
+
value,
|
|
6652
|
+
placeholder,
|
|
6653
|
+
className,
|
|
6654
|
+
debounceTime = 750,
|
|
6655
|
+
onSearch
|
|
6656
|
+
}) {
|
|
6657
|
+
const [searchTerm, setSearchTerm] = import_react34.default.useState(value);
|
|
6658
|
+
const [debouncedValue] = (0, import_use_debounce.useDebounce)(searchTerm, debounceTime);
|
|
6659
|
+
const handleSettingSearchParams = (0, import_react34.useCallback)((newSearchValue) => {
|
|
6660
|
+
if (newSearchValue === "" || newSearchValue === void 0 || !newSearchValue) {
|
|
6661
|
+
onSearch(newSearchValue);
|
|
6662
|
+
return;
|
|
6663
|
+
}
|
|
6664
|
+
}, []);
|
|
6665
|
+
import_react34.default.useEffect(() => {
|
|
6666
|
+
handleSettingSearchParams(debouncedValue);
|
|
6667
|
+
}, [debouncedValue, handleSettingSearchParams]);
|
|
6668
|
+
import_react34.default.useEffect(() => {
|
|
6669
|
+
setSearchTerm(value);
|
|
6670
|
+
}, [value]);
|
|
6671
|
+
return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
6672
|
+
Input,
|
|
6673
|
+
{
|
|
6674
|
+
placeholder: placeholder || `Search...`,
|
|
6675
|
+
value: searchTerm,
|
|
6676
|
+
onChange: (event) => setSearchTerm(event.target.value),
|
|
6677
|
+
className: cn("w-full md:max-w-sm", className)
|
|
6678
|
+
}
|
|
6679
|
+
);
|
|
6680
|
+
}
|
|
6681
|
+
|
|
6659
6682
|
// src/components/select.tsx
|
|
6660
6683
|
var import_react_icons15 = require("@radix-ui/react-icons");
|
|
6661
6684
|
var SelectPrimitive = __toESM(require("@radix-ui/react-select"), 1);
|
|
6662
6685
|
var React54 = __toESM(require("react"), 1);
|
|
6663
|
-
var
|
|
6686
|
+
var import_jsx_runtime32 = require("react/jsx-runtime");
|
|
6664
6687
|
var Select2 = SelectPrimitive.Root;
|
|
6665
6688
|
var SelectGroup = SelectPrimitive.Group;
|
|
6666
6689
|
var SelectValue = SelectPrimitive.Value;
|
|
6667
6690
|
var SelectTrigger = React54.forwardRef((_a, ref) => {
|
|
6668
6691
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
6669
|
-
return /* @__PURE__ */ (0,
|
|
6692
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
|
|
6670
6693
|
SelectPrimitive.Trigger,
|
|
6671
6694
|
__spreadProps(__spreadValues({
|
|
6672
6695
|
ref,
|
|
@@ -6677,7 +6700,7 @@ var SelectTrigger = React54.forwardRef((_a, ref) => {
|
|
|
6677
6700
|
}, props), {
|
|
6678
6701
|
children: [
|
|
6679
6702
|
children,
|
|
6680
|
-
/* @__PURE__ */ (0,
|
|
6703
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)(SelectPrimitive.Icon, { asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_react_icons15.CaretSortIcon, { className: "h-4 w-4 opacity-50" }) })
|
|
6681
6704
|
]
|
|
6682
6705
|
})
|
|
6683
6706
|
);
|
|
@@ -6685,7 +6708,7 @@ var SelectTrigger = React54.forwardRef((_a, ref) => {
|
|
|
6685
6708
|
SelectTrigger.displayName = SelectPrimitive.Trigger.displayName;
|
|
6686
6709
|
var SelectScrollUpButton = React54.forwardRef((_a, ref) => {
|
|
6687
6710
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6688
|
-
return /* @__PURE__ */ (0,
|
|
6711
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
6689
6712
|
SelectPrimitive.ScrollUpButton,
|
|
6690
6713
|
__spreadProps(__spreadValues({
|
|
6691
6714
|
ref,
|
|
@@ -6694,14 +6717,14 @@ var SelectScrollUpButton = React54.forwardRef((_a, ref) => {
|
|
|
6694
6717
|
className
|
|
6695
6718
|
)
|
|
6696
6719
|
}, props), {
|
|
6697
|
-
children: /* @__PURE__ */ (0,
|
|
6720
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_react_icons15.ChevronUpIcon, {})
|
|
6698
6721
|
})
|
|
6699
6722
|
);
|
|
6700
6723
|
});
|
|
6701
6724
|
SelectScrollUpButton.displayName = SelectPrimitive.ScrollUpButton.displayName;
|
|
6702
6725
|
var SelectScrollDownButton = React54.forwardRef((_a, ref) => {
|
|
6703
6726
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6704
|
-
return /* @__PURE__ */ (0,
|
|
6727
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
6705
6728
|
SelectPrimitive.ScrollDownButton,
|
|
6706
6729
|
__spreadProps(__spreadValues({
|
|
6707
6730
|
ref,
|
|
@@ -6710,14 +6733,14 @@ var SelectScrollDownButton = React54.forwardRef((_a, ref) => {
|
|
|
6710
6733
|
className
|
|
6711
6734
|
)
|
|
6712
6735
|
}, props), {
|
|
6713
|
-
children: /* @__PURE__ */ (0,
|
|
6736
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_react_icons15.ChevronDownIcon, {})
|
|
6714
6737
|
})
|
|
6715
6738
|
);
|
|
6716
6739
|
});
|
|
6717
6740
|
SelectScrollDownButton.displayName = SelectPrimitive.ScrollDownButton.displayName;
|
|
6718
6741
|
var SelectContent = React54.forwardRef((_a, ref) => {
|
|
6719
6742
|
var _b = _a, { className, children, position = "popper" } = _b, props = __objRest(_b, ["className", "children", "position"]);
|
|
6720
|
-
return /* @__PURE__ */ (0,
|
|
6743
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(SelectPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
|
|
6721
6744
|
SelectPrimitive.Content,
|
|
6722
6745
|
__spreadProps(__spreadValues({
|
|
6723
6746
|
ref,
|
|
@@ -6729,8 +6752,8 @@ var SelectContent = React54.forwardRef((_a, ref) => {
|
|
|
6729
6752
|
position
|
|
6730
6753
|
}, props), {
|
|
6731
6754
|
children: [
|
|
6732
|
-
/* @__PURE__ */ (0,
|
|
6733
|
-
/* @__PURE__ */ (0,
|
|
6755
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)(SelectScrollUpButton, {}),
|
|
6756
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
6734
6757
|
SelectPrimitive.Viewport,
|
|
6735
6758
|
{
|
|
6736
6759
|
className: cn(
|
|
@@ -6740,7 +6763,7 @@ var SelectContent = React54.forwardRef((_a, ref) => {
|
|
|
6740
6763
|
children
|
|
6741
6764
|
}
|
|
6742
6765
|
),
|
|
6743
|
-
/* @__PURE__ */ (0,
|
|
6766
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)(SelectScrollDownButton, {})
|
|
6744
6767
|
]
|
|
6745
6768
|
})
|
|
6746
6769
|
) });
|
|
@@ -6748,7 +6771,7 @@ var SelectContent = React54.forwardRef((_a, ref) => {
|
|
|
6748
6771
|
SelectContent.displayName = SelectPrimitive.Content.displayName;
|
|
6749
6772
|
var SelectLabel = React54.forwardRef((_a, ref) => {
|
|
6750
6773
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6751
|
-
return /* @__PURE__ */ (0,
|
|
6774
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
6752
6775
|
SelectPrimitive.Label,
|
|
6753
6776
|
__spreadValues({
|
|
6754
6777
|
ref,
|
|
@@ -6759,7 +6782,7 @@ var SelectLabel = React54.forwardRef((_a, ref) => {
|
|
|
6759
6782
|
SelectLabel.displayName = SelectPrimitive.Label.displayName;
|
|
6760
6783
|
var SelectItem = React54.forwardRef((_a, ref) => {
|
|
6761
6784
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
6762
|
-
return /* @__PURE__ */ (0,
|
|
6785
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
|
|
6763
6786
|
SelectPrimitive.Item,
|
|
6764
6787
|
__spreadProps(__spreadValues({
|
|
6765
6788
|
ref,
|
|
@@ -6769,8 +6792,8 @@ var SelectItem = React54.forwardRef((_a, ref) => {
|
|
|
6769
6792
|
)
|
|
6770
6793
|
}, props), {
|
|
6771
6794
|
children: [
|
|
6772
|
-
/* @__PURE__ */ (0,
|
|
6773
|
-
/* @__PURE__ */ (0,
|
|
6795
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("span", { className: "absolute right-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(SelectPrimitive.ItemIndicator, { children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_react_icons15.CheckIcon, { className: "h-4 w-4" }) }) }),
|
|
6796
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)(SelectPrimitive.ItemText, { children })
|
|
6774
6797
|
]
|
|
6775
6798
|
})
|
|
6776
6799
|
);
|
|
@@ -6778,7 +6801,7 @@ var SelectItem = React54.forwardRef((_a, ref) => {
|
|
|
6778
6801
|
SelectItem.displayName = SelectPrimitive.Item.displayName;
|
|
6779
6802
|
var SelectSeparator = React54.forwardRef((_a, ref) => {
|
|
6780
6803
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6781
|
-
return /* @__PURE__ */ (0,
|
|
6804
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
6782
6805
|
SelectPrimitive.Separator,
|
|
6783
6806
|
__spreadValues({
|
|
6784
6807
|
ref,
|
|
@@ -6791,11 +6814,11 @@ SelectSeparator.displayName = SelectPrimitive.Separator.displayName;
|
|
|
6791
6814
|
// src/components/separator.tsx
|
|
6792
6815
|
var SeparatorPrimitive = __toESM(require("@radix-ui/react-separator"), 1);
|
|
6793
6816
|
var React55 = __toESM(require("react"), 1);
|
|
6794
|
-
var
|
|
6817
|
+
var import_jsx_runtime33 = require("react/jsx-runtime");
|
|
6795
6818
|
var Separator5 = React55.forwardRef(
|
|
6796
6819
|
(_a, ref) => {
|
|
6797
6820
|
var _b = _a, { className, orientation = "horizontal", decorative = true } = _b, props = __objRest(_b, ["className", "orientation", "decorative"]);
|
|
6798
|
-
return /* @__PURE__ */ (0,
|
|
6821
|
+
return /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
6799
6822
|
SeparatorPrimitive.Root,
|
|
6800
6823
|
__spreadValues({
|
|
6801
6824
|
ref,
|
|
@@ -6817,14 +6840,14 @@ var SheetPrimitive = __toESM(require("@radix-ui/react-dialog"), 1);
|
|
|
6817
6840
|
var import_react_icons16 = require("@radix-ui/react-icons");
|
|
6818
6841
|
var import_class_variance_authority6 = require("class-variance-authority");
|
|
6819
6842
|
var React56 = __toESM(require("react"), 1);
|
|
6820
|
-
var
|
|
6843
|
+
var import_jsx_runtime34 = require("react/jsx-runtime");
|
|
6821
6844
|
var Sheet = SheetPrimitive.Root;
|
|
6822
6845
|
var SheetTrigger = SheetPrimitive.Trigger;
|
|
6823
6846
|
var SheetClose = SheetPrimitive.Close;
|
|
6824
6847
|
var SheetPortal = SheetPrimitive.Portal;
|
|
6825
6848
|
var SheetOverlay = React56.forwardRef((_a, ref) => {
|
|
6826
6849
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6827
|
-
return /* @__PURE__ */ (0,
|
|
6850
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
6828
6851
|
SheetPrimitive.Overlay,
|
|
6829
6852
|
__spreadProps(__spreadValues({
|
|
6830
6853
|
className: cn(
|
|
@@ -6855,9 +6878,9 @@ var sheetVariants = (0, import_class_variance_authority6.cva)(
|
|
|
6855
6878
|
);
|
|
6856
6879
|
var SheetContent = React56.forwardRef((_a, ref) => {
|
|
6857
6880
|
var _b = _a, { side = "right", className, children } = _b, props = __objRest(_b, ["side", "className", "children"]);
|
|
6858
|
-
return /* @__PURE__ */ (0,
|
|
6859
|
-
/* @__PURE__ */ (0,
|
|
6860
|
-
/* @__PURE__ */ (0,
|
|
6881
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(SheetPortal, { children: [
|
|
6882
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(SheetOverlay, {}),
|
|
6883
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(
|
|
6861
6884
|
SheetPrimitive.Content,
|
|
6862
6885
|
__spreadProps(__spreadValues({
|
|
6863
6886
|
ref,
|
|
@@ -6865,9 +6888,9 @@ var SheetContent = React56.forwardRef((_a, ref) => {
|
|
|
6865
6888
|
}, props), {
|
|
6866
6889
|
children: [
|
|
6867
6890
|
children,
|
|
6868
|
-
/* @__PURE__ */ (0,
|
|
6869
|
-
/* @__PURE__ */ (0,
|
|
6870
|
-
/* @__PURE__ */ (0,
|
|
6891
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(SheetPrimitive.Close, { className: "absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-secondary", children: [
|
|
6892
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(import_react_icons16.Cross2Icon, { className: "h-4 w-4" }),
|
|
6893
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("span", { className: "sr-only", children: "Close" })
|
|
6871
6894
|
] })
|
|
6872
6895
|
]
|
|
6873
6896
|
})
|
|
@@ -6881,7 +6904,7 @@ var SheetHeader = (_a) => {
|
|
|
6881
6904
|
} = _b, props = __objRest(_b, [
|
|
6882
6905
|
"className"
|
|
6883
6906
|
]);
|
|
6884
|
-
return /* @__PURE__ */ (0,
|
|
6907
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
6885
6908
|
"div",
|
|
6886
6909
|
__spreadValues({
|
|
6887
6910
|
className: cn(
|
|
@@ -6898,7 +6921,7 @@ var SheetFooter = (_a) => {
|
|
|
6898
6921
|
} = _b, props = __objRest(_b, [
|
|
6899
6922
|
"className"
|
|
6900
6923
|
]);
|
|
6901
|
-
return /* @__PURE__ */ (0,
|
|
6924
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
6902
6925
|
"div",
|
|
6903
6926
|
__spreadValues({
|
|
6904
6927
|
className: cn(
|
|
@@ -6911,7 +6934,7 @@ var SheetFooter = (_a) => {
|
|
|
6911
6934
|
SheetFooter.displayName = "SheetFooter";
|
|
6912
6935
|
var SheetTitle = React56.forwardRef((_a, ref) => {
|
|
6913
6936
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6914
|
-
return /* @__PURE__ */ (0,
|
|
6937
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
6915
6938
|
SheetPrimitive.Title,
|
|
6916
6939
|
__spreadValues({
|
|
6917
6940
|
ref,
|
|
@@ -6922,7 +6945,7 @@ var SheetTitle = React56.forwardRef((_a, ref) => {
|
|
|
6922
6945
|
SheetTitle.displayName = SheetPrimitive.Title.displayName;
|
|
6923
6946
|
var SheetDescription = React56.forwardRef((_a, ref) => {
|
|
6924
6947
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6925
|
-
return /* @__PURE__ */ (0,
|
|
6948
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
6926
6949
|
SheetPrimitive.Description,
|
|
6927
6950
|
__spreadValues({
|
|
6928
6951
|
ref,
|
|
@@ -6933,14 +6956,14 @@ var SheetDescription = React56.forwardRef((_a, ref) => {
|
|
|
6933
6956
|
SheetDescription.displayName = SheetPrimitive.Description.displayName;
|
|
6934
6957
|
|
|
6935
6958
|
// src/components/skeleton.tsx
|
|
6936
|
-
var
|
|
6959
|
+
var import_jsx_runtime35 = require("react/jsx-runtime");
|
|
6937
6960
|
function Skeleton(_a) {
|
|
6938
6961
|
var _b = _a, {
|
|
6939
6962
|
className
|
|
6940
6963
|
} = _b, props = __objRest(_b, [
|
|
6941
6964
|
"className"
|
|
6942
6965
|
]);
|
|
6943
|
-
return /* @__PURE__ */ (0,
|
|
6966
|
+
return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
6944
6967
|
"div",
|
|
6945
6968
|
__spreadValues({
|
|
6946
6969
|
className: cn("animate-pulse rounded-md bg-primary/10", className)
|
|
@@ -6951,10 +6974,10 @@ function Skeleton(_a) {
|
|
|
6951
6974
|
// src/components/slider.tsx
|
|
6952
6975
|
var SliderPrimitive = __toESM(require("@radix-ui/react-slider"), 1);
|
|
6953
6976
|
var React57 = __toESM(require("react"), 1);
|
|
6954
|
-
var
|
|
6977
|
+
var import_jsx_runtime36 = require("react/jsx-runtime");
|
|
6955
6978
|
var Slider = React57.forwardRef((_a, ref) => {
|
|
6956
6979
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6957
|
-
return /* @__PURE__ */ (0,
|
|
6980
|
+
return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
|
|
6958
6981
|
SliderPrimitive.Root,
|
|
6959
6982
|
__spreadProps(__spreadValues({
|
|
6960
6983
|
ref,
|
|
@@ -6964,8 +6987,8 @@ var Slider = React57.forwardRef((_a, ref) => {
|
|
|
6964
6987
|
)
|
|
6965
6988
|
}, props), {
|
|
6966
6989
|
children: [
|
|
6967
|
-
/* @__PURE__ */ (0,
|
|
6968
|
-
/* @__PURE__ */ (0,
|
|
6990
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)(SliderPrimitive.Track, { className: "relative h-1.5 w-full grow overflow-hidden rounded-full bg-primary/20", children: /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(SliderPrimitive.Range, { className: "absolute h-full bg-primary" }) }),
|
|
6991
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)(SliderPrimitive.Thumb, { className: "block h-4 w-4 rounded-full border border-primary/50 bg-background shadow transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50" })
|
|
6969
6992
|
]
|
|
6970
6993
|
})
|
|
6971
6994
|
);
|
|
@@ -6975,11 +6998,11 @@ Slider.displayName = SliderPrimitive.Root.displayName;
|
|
|
6975
6998
|
// src/components/sonner.tsx
|
|
6976
6999
|
var import_next_themes = require("next-themes");
|
|
6977
7000
|
var import_sonner = require("sonner");
|
|
6978
|
-
var
|
|
7001
|
+
var import_jsx_runtime37 = require("react/jsx-runtime");
|
|
6979
7002
|
var Toaster = (_a) => {
|
|
6980
7003
|
var props = __objRest(_a, []);
|
|
6981
7004
|
const { theme = "system" } = (0, import_next_themes.useTheme)();
|
|
6982
|
-
return /* @__PURE__ */ (0,
|
|
7005
|
+
return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
6983
7006
|
import_sonner.Toaster,
|
|
6984
7007
|
__spreadValues({
|
|
6985
7008
|
theme,
|
|
@@ -6999,10 +7022,10 @@ var Toaster = (_a) => {
|
|
|
6999
7022
|
// src/components/switch.tsx
|
|
7000
7023
|
var SwitchPrimitives = __toESM(require("@radix-ui/react-switch"), 1);
|
|
7001
7024
|
var React58 = __toESM(require("react"), 1);
|
|
7002
|
-
var
|
|
7025
|
+
var import_jsx_runtime38 = require("react/jsx-runtime");
|
|
7003
7026
|
var Switch = React58.forwardRef((_a, ref) => {
|
|
7004
7027
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7005
|
-
return /* @__PURE__ */ (0,
|
|
7028
|
+
return /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
7006
7029
|
SwitchPrimitives.Root,
|
|
7007
7030
|
__spreadProps(__spreadValues({
|
|
7008
7031
|
className: cn(
|
|
@@ -7011,7 +7034,7 @@ var Switch = React58.forwardRef((_a, ref) => {
|
|
|
7011
7034
|
)
|
|
7012
7035
|
}, props), {
|
|
7013
7036
|
ref,
|
|
7014
|
-
children: /* @__PURE__ */ (0,
|
|
7037
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
7015
7038
|
SwitchPrimitives.Thumb,
|
|
7016
7039
|
{
|
|
7017
7040
|
className: cn(
|
|
@@ -7026,10 +7049,10 @@ Switch.displayName = SwitchPrimitives.Root.displayName;
|
|
|
7026
7049
|
|
|
7027
7050
|
// src/components/table.tsx
|
|
7028
7051
|
var React59 = __toESM(require("react"), 1);
|
|
7029
|
-
var
|
|
7052
|
+
var import_jsx_runtime39 = require("react/jsx-runtime");
|
|
7030
7053
|
var Table = React59.forwardRef((_a, ref) => {
|
|
7031
7054
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7032
|
-
return /* @__PURE__ */ (0,
|
|
7055
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { className: "relative w-full overflow-auto", children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
7033
7056
|
"table",
|
|
7034
7057
|
__spreadValues({
|
|
7035
7058
|
ref,
|
|
@@ -7040,12 +7063,12 @@ var Table = React59.forwardRef((_a, ref) => {
|
|
|
7040
7063
|
Table.displayName = "Table";
|
|
7041
7064
|
var TableHeader = React59.forwardRef((_a, ref) => {
|
|
7042
7065
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7043
|
-
return /* @__PURE__ */ (0,
|
|
7066
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("thead", __spreadValues({ ref, className: cn("[&_tr]:border-b", className) }, props));
|
|
7044
7067
|
});
|
|
7045
7068
|
TableHeader.displayName = "TableHeader";
|
|
7046
7069
|
var TableBody = React59.forwardRef((_a, ref) => {
|
|
7047
7070
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7048
|
-
return /* @__PURE__ */ (0,
|
|
7071
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
7049
7072
|
"tbody",
|
|
7050
7073
|
__spreadValues({
|
|
7051
7074
|
ref,
|
|
@@ -7056,7 +7079,7 @@ var TableBody = React59.forwardRef((_a, ref) => {
|
|
|
7056
7079
|
TableBody.displayName = "TableBody";
|
|
7057
7080
|
var TableFooter = React59.forwardRef((_a, ref) => {
|
|
7058
7081
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7059
|
-
return /* @__PURE__ */ (0,
|
|
7082
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
7060
7083
|
"tfoot",
|
|
7061
7084
|
__spreadValues({
|
|
7062
7085
|
ref,
|
|
@@ -7070,7 +7093,7 @@ var TableFooter = React59.forwardRef((_a, ref) => {
|
|
|
7070
7093
|
TableFooter.displayName = "TableFooter";
|
|
7071
7094
|
var TableRow = React59.forwardRef((_a, ref) => {
|
|
7072
7095
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7073
|
-
return /* @__PURE__ */ (0,
|
|
7096
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
7074
7097
|
"tr",
|
|
7075
7098
|
__spreadValues({
|
|
7076
7099
|
ref,
|
|
@@ -7084,7 +7107,7 @@ var TableRow = React59.forwardRef((_a, ref) => {
|
|
|
7084
7107
|
TableRow.displayName = "TableRow";
|
|
7085
7108
|
var TableHead = React59.forwardRef((_a, ref) => {
|
|
7086
7109
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7087
|
-
return /* @__PURE__ */ (0,
|
|
7110
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
7088
7111
|
"th",
|
|
7089
7112
|
__spreadValues({
|
|
7090
7113
|
ref,
|
|
@@ -7098,7 +7121,7 @@ var TableHead = React59.forwardRef((_a, ref) => {
|
|
|
7098
7121
|
TableHead.displayName = "TableHead";
|
|
7099
7122
|
var TableCell = React59.forwardRef((_a, ref) => {
|
|
7100
7123
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7101
|
-
return /* @__PURE__ */ (0,
|
|
7124
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
7102
7125
|
"td",
|
|
7103
7126
|
__spreadValues({
|
|
7104
7127
|
ref,
|
|
@@ -7112,7 +7135,7 @@ var TableCell = React59.forwardRef((_a, ref) => {
|
|
|
7112
7135
|
TableCell.displayName = "TableCell";
|
|
7113
7136
|
var TableCaption = React59.forwardRef((_a, ref) => {
|
|
7114
7137
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7115
|
-
return /* @__PURE__ */ (0,
|
|
7138
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
7116
7139
|
"caption",
|
|
7117
7140
|
__spreadValues({
|
|
7118
7141
|
ref,
|
|
@@ -7125,11 +7148,11 @@ TableCaption.displayName = "TableCaption";
|
|
|
7125
7148
|
// src/components/tabs.tsx
|
|
7126
7149
|
var TabsPrimitive = __toESM(require("@radix-ui/react-tabs"), 1);
|
|
7127
7150
|
var React60 = __toESM(require("react"), 1);
|
|
7128
|
-
var
|
|
7151
|
+
var import_jsx_runtime40 = require("react/jsx-runtime");
|
|
7129
7152
|
var Tabs = TabsPrimitive.Root;
|
|
7130
7153
|
var TabsList = React60.forwardRef((_a, ref) => {
|
|
7131
7154
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7132
|
-
return /* @__PURE__ */ (0,
|
|
7155
|
+
return /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
7133
7156
|
TabsPrimitive.List,
|
|
7134
7157
|
__spreadValues({
|
|
7135
7158
|
ref,
|
|
@@ -7143,7 +7166,7 @@ var TabsList = React60.forwardRef((_a, ref) => {
|
|
|
7143
7166
|
TabsList.displayName = TabsPrimitive.List.displayName;
|
|
7144
7167
|
var TabsTrigger = React60.forwardRef((_a, ref) => {
|
|
7145
7168
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7146
|
-
return /* @__PURE__ */ (0,
|
|
7169
|
+
return /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
7147
7170
|
TabsPrimitive.Trigger,
|
|
7148
7171
|
__spreadValues({
|
|
7149
7172
|
ref,
|
|
@@ -7157,7 +7180,7 @@ var TabsTrigger = React60.forwardRef((_a, ref) => {
|
|
|
7157
7180
|
TabsTrigger.displayName = TabsPrimitive.Trigger.displayName;
|
|
7158
7181
|
var TabsContent = React60.forwardRef((_a, ref) => {
|
|
7159
7182
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7160
|
-
return /* @__PURE__ */ (0,
|
|
7183
|
+
return /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
7161
7184
|
TabsPrimitive.Content,
|
|
7162
7185
|
__spreadValues({
|
|
7163
7186
|
ref,
|
|
@@ -7172,11 +7195,11 @@ TabsContent.displayName = TabsPrimitive.Content.displayName;
|
|
|
7172
7195
|
|
|
7173
7196
|
// src/components/textarea.tsx
|
|
7174
7197
|
var React61 = __toESM(require("react"), 1);
|
|
7175
|
-
var
|
|
7198
|
+
var import_jsx_runtime41 = require("react/jsx-runtime");
|
|
7176
7199
|
var Textarea = React61.forwardRef(
|
|
7177
7200
|
(_a, ref) => {
|
|
7178
7201
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7179
|
-
return /* @__PURE__ */ (0,
|
|
7202
|
+
return /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
7180
7203
|
"textarea",
|
|
7181
7204
|
__spreadValues({
|
|
7182
7205
|
className: cn(
|
|
@@ -7195,11 +7218,11 @@ var import_react_icons17 = require("@radix-ui/react-icons");
|
|
|
7195
7218
|
var ToastPrimitives = __toESM(require("@radix-ui/react-toast"), 1);
|
|
7196
7219
|
var import_class_variance_authority7 = require("class-variance-authority");
|
|
7197
7220
|
var React62 = __toESM(require("react"), 1);
|
|
7198
|
-
var
|
|
7221
|
+
var import_jsx_runtime42 = require("react/jsx-runtime");
|
|
7199
7222
|
var ToastProvider = ToastPrimitives.Provider;
|
|
7200
7223
|
var ToastViewport = React62.forwardRef((_a, ref) => {
|
|
7201
7224
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7202
|
-
return /* @__PURE__ */ (0,
|
|
7225
|
+
return /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
7203
7226
|
ToastPrimitives.Viewport,
|
|
7204
7227
|
__spreadValues({
|
|
7205
7228
|
ref,
|
|
@@ -7227,7 +7250,7 @@ var toastVariants = (0, import_class_variance_authority7.cva)(
|
|
|
7227
7250
|
);
|
|
7228
7251
|
var Toast = React62.forwardRef((_a, ref) => {
|
|
7229
7252
|
var _b = _a, { className, variant } = _b, props = __objRest(_b, ["className", "variant"]);
|
|
7230
|
-
return /* @__PURE__ */ (0,
|
|
7253
|
+
return /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
7231
7254
|
ToastPrimitives.Root,
|
|
7232
7255
|
__spreadValues({
|
|
7233
7256
|
ref,
|
|
@@ -7238,7 +7261,7 @@ var Toast = React62.forwardRef((_a, ref) => {
|
|
|
7238
7261
|
Toast.displayName = ToastPrimitives.Root.displayName;
|
|
7239
7262
|
var ToastAction = React62.forwardRef((_a, ref) => {
|
|
7240
7263
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7241
|
-
return /* @__PURE__ */ (0,
|
|
7264
|
+
return /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
7242
7265
|
ToastPrimitives.Action,
|
|
7243
7266
|
__spreadValues({
|
|
7244
7267
|
ref,
|
|
@@ -7252,7 +7275,7 @@ var ToastAction = React62.forwardRef((_a, ref) => {
|
|
|
7252
7275
|
ToastAction.displayName = ToastPrimitives.Action.displayName;
|
|
7253
7276
|
var ToastClose = React62.forwardRef((_a, ref) => {
|
|
7254
7277
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7255
|
-
return /* @__PURE__ */ (0,
|
|
7278
|
+
return /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
7256
7279
|
ToastPrimitives.Close,
|
|
7257
7280
|
__spreadProps(__spreadValues({
|
|
7258
7281
|
ref,
|
|
@@ -7262,14 +7285,14 @@ var ToastClose = React62.forwardRef((_a, ref) => {
|
|
|
7262
7285
|
),
|
|
7263
7286
|
"toast-close": ""
|
|
7264
7287
|
}, props), {
|
|
7265
|
-
children: /* @__PURE__ */ (0,
|
|
7288
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(import_react_icons17.Cross2Icon, { className: "h-4 w-4" })
|
|
7266
7289
|
})
|
|
7267
7290
|
);
|
|
7268
7291
|
});
|
|
7269
7292
|
ToastClose.displayName = ToastPrimitives.Close.displayName;
|
|
7270
7293
|
var ToastTitle = React62.forwardRef((_a, ref) => {
|
|
7271
7294
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7272
|
-
return /* @__PURE__ */ (0,
|
|
7295
|
+
return /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
7273
7296
|
ToastPrimitives.Title,
|
|
7274
7297
|
__spreadValues({
|
|
7275
7298
|
ref,
|
|
@@ -7280,7 +7303,7 @@ var ToastTitle = React62.forwardRef((_a, ref) => {
|
|
|
7280
7303
|
ToastTitle.displayName = ToastPrimitives.Title.displayName;
|
|
7281
7304
|
var ToastDescription = React62.forwardRef((_a, ref) => {
|
|
7282
7305
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7283
|
-
return /* @__PURE__ */ (0,
|
|
7306
|
+
return /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
7284
7307
|
ToastPrimitives.Description,
|
|
7285
7308
|
__spreadValues({
|
|
7286
7309
|
ref,
|
|
@@ -7294,7 +7317,7 @@ ToastDescription.displayName = ToastPrimitives.Description.displayName;
|
|
|
7294
7317
|
var TogglePrimitive = __toESM(require("@radix-ui/react-toggle"), 1);
|
|
7295
7318
|
var import_class_variance_authority8 = require("class-variance-authority");
|
|
7296
7319
|
var React63 = __toESM(require("react"), 1);
|
|
7297
|
-
var
|
|
7320
|
+
var import_jsx_runtime43 = require("react/jsx-runtime");
|
|
7298
7321
|
var toggleVariants = (0, import_class_variance_authority8.cva)(
|
|
7299
7322
|
"inline-flex items-center justify-center rounded-md text-sm font-medium transition-colors hover:bg-muted hover:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 data-[state=on]:bg-accent data-[state=on]:text-accent-foreground",
|
|
7300
7323
|
{
|
|
@@ -7317,7 +7340,7 @@ var toggleVariants = (0, import_class_variance_authority8.cva)(
|
|
|
7317
7340
|
);
|
|
7318
7341
|
var Toggle = React63.forwardRef((_a, ref) => {
|
|
7319
7342
|
var _b = _a, { className, variant, size } = _b, props = __objRest(_b, ["className", "variant", "size"]);
|
|
7320
|
-
return /* @__PURE__ */ (0,
|
|
7343
|
+
return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
|
|
7321
7344
|
TogglePrimitive.Root,
|
|
7322
7345
|
__spreadValues({
|
|
7323
7346
|
ref,
|
|
@@ -7330,20 +7353,20 @@ Toggle.displayName = TogglePrimitive.Root.displayName;
|
|
|
7330
7353
|
// src/components/toggle-group.tsx
|
|
7331
7354
|
var ToggleGroupPrimitive = __toESM(require("@radix-ui/react-toggle-group"), 1);
|
|
7332
7355
|
var React64 = __toESM(require("react"), 1);
|
|
7333
|
-
var
|
|
7356
|
+
var import_jsx_runtime44 = require("react/jsx-runtime");
|
|
7334
7357
|
var ToggleGroupContext = React64.createContext({
|
|
7335
7358
|
size: "default",
|
|
7336
7359
|
variant: "default"
|
|
7337
7360
|
});
|
|
7338
7361
|
var ToggleGroup = React64.forwardRef((_a, ref) => {
|
|
7339
7362
|
var _b = _a, { className, variant, size, children } = _b, props = __objRest(_b, ["className", "variant", "size", "children"]);
|
|
7340
|
-
return /* @__PURE__ */ (0,
|
|
7363
|
+
return /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
|
|
7341
7364
|
ToggleGroupPrimitive.Root,
|
|
7342
7365
|
__spreadProps(__spreadValues({
|
|
7343
7366
|
ref,
|
|
7344
7367
|
className: cn("flex items-center justify-center gap-1", className)
|
|
7345
7368
|
}, props), {
|
|
7346
|
-
children: /* @__PURE__ */ (0,
|
|
7369
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(ToggleGroupContext.Provider, { value: { variant, size }, children })
|
|
7347
7370
|
})
|
|
7348
7371
|
);
|
|
7349
7372
|
});
|
|
@@ -7351,7 +7374,7 @@ ToggleGroup.displayName = ToggleGroupPrimitive.Root.displayName;
|
|
|
7351
7374
|
var ToggleGroupItem = React64.forwardRef((_a, ref) => {
|
|
7352
7375
|
var _b = _a, { className, children, variant, size } = _b, props = __objRest(_b, ["className", "children", "variant", "size"]);
|
|
7353
7376
|
const context = React64.useContext(ToggleGroupContext);
|
|
7354
|
-
return /* @__PURE__ */ (0,
|
|
7377
|
+
return /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
|
|
7355
7378
|
ToggleGroupPrimitive.Item,
|
|
7356
7379
|
__spreadProps(__spreadValues({
|
|
7357
7380
|
ref,
|
|
@@ -7372,13 +7395,13 @@ ToggleGroupItem.displayName = ToggleGroupPrimitive.Item.displayName;
|
|
|
7372
7395
|
// src/components/tooltip.tsx
|
|
7373
7396
|
var TooltipPrimitive = __toESM(require("@radix-ui/react-tooltip"), 1);
|
|
7374
7397
|
var React65 = __toESM(require("react"), 1);
|
|
7375
|
-
var
|
|
7398
|
+
var import_jsx_runtime45 = require("react/jsx-runtime");
|
|
7376
7399
|
var TooltipProvider = TooltipPrimitive.Provider;
|
|
7377
7400
|
var Tooltip = TooltipPrimitive.Root;
|
|
7378
7401
|
var TooltipTrigger = TooltipPrimitive.Trigger;
|
|
7379
7402
|
var TooltipContent = React65.forwardRef((_a, ref) => {
|
|
7380
7403
|
var _b = _a, { className, sideOffset = 4 } = _b, props = __objRest(_b, ["className", "sideOffset"]);
|
|
7381
|
-
return /* @__PURE__ */ (0,
|
|
7404
|
+
return /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
|
|
7382
7405
|
TooltipPrimitive.Content,
|
|
7383
7406
|
__spreadValues({
|
|
7384
7407
|
ref,
|
|
@@ -7504,44 +7527,8 @@ function useToast() {
|
|
|
7504
7527
|
});
|
|
7505
7528
|
}
|
|
7506
7529
|
|
|
7507
|
-
// src/components/search-input.tsx
|
|
7508
|
-
var import_react33 = __toESM(require("react"), 1);
|
|
7509
|
-
var import_use_debounce = require("use-debounce");
|
|
7510
|
-
var import_jsx_runtime44 = require("react/jsx-runtime");
|
|
7511
|
-
function SearchInput({
|
|
7512
|
-
value,
|
|
7513
|
-
placeholder,
|
|
7514
|
-
className,
|
|
7515
|
-
debounceTime = 750,
|
|
7516
|
-
onSearch
|
|
7517
|
-
}) {
|
|
7518
|
-
const [searchTerm, setSearchTerm] = import_react33.default.useState(value);
|
|
7519
|
-
const [debouncedValue] = (0, import_use_debounce.useDebounce)(searchTerm, debounceTime);
|
|
7520
|
-
const handleSettingSearchParams = (0, import_react33.useCallback)((newSearchValue) => {
|
|
7521
|
-
if (newSearchValue === "" || newSearchValue === void 0 || !newSearchValue) {
|
|
7522
|
-
onSearch(newSearchValue);
|
|
7523
|
-
return;
|
|
7524
|
-
}
|
|
7525
|
-
}, []);
|
|
7526
|
-
import_react33.default.useEffect(() => {
|
|
7527
|
-
handleSettingSearchParams(debouncedValue);
|
|
7528
|
-
}, [debouncedValue, handleSettingSearchParams]);
|
|
7529
|
-
import_react33.default.useEffect(() => {
|
|
7530
|
-
setSearchTerm(value);
|
|
7531
|
-
}, [value]);
|
|
7532
|
-
return /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
|
|
7533
|
-
Input,
|
|
7534
|
-
{
|
|
7535
|
-
placeholder: placeholder || `Search...`,
|
|
7536
|
-
value: searchTerm,
|
|
7537
|
-
onChange: (event) => setSearchTerm(event.target.value),
|
|
7538
|
-
className: cn("w-full md:max-w-sm", className)
|
|
7539
|
-
}
|
|
7540
|
-
);
|
|
7541
|
-
}
|
|
7542
|
-
|
|
7543
7530
|
// src/shared/alert-modal.tsx
|
|
7544
|
-
var
|
|
7531
|
+
var import_jsx_runtime46 = require("react/jsx-runtime");
|
|
7545
7532
|
var AlertModal = ({
|
|
7546
7533
|
isOpen,
|
|
7547
7534
|
onClose,
|
|
@@ -7554,7 +7541,7 @@ var AlertModal = ({
|
|
|
7554
7541
|
className,
|
|
7555
7542
|
children
|
|
7556
7543
|
}) => {
|
|
7557
|
-
return /* @__PURE__ */ (0,
|
|
7544
|
+
return /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
|
|
7558
7545
|
Modal,
|
|
7559
7546
|
{
|
|
7560
7547
|
title,
|
|
@@ -7562,71 +7549,31 @@ var AlertModal = ({
|
|
|
7562
7549
|
isOpen,
|
|
7563
7550
|
onClose,
|
|
7564
7551
|
className,
|
|
7565
|
-
children: children ? children : /* @__PURE__ */ (0,
|
|
7566
|
-
/* @__PURE__ */ (0,
|
|
7567
|
-
/* @__PURE__ */ (0,
|
|
7552
|
+
children: children ? children : /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)("div", { className: "flex w-full items-center justify-end space-x-2 pt-6", children: [
|
|
7553
|
+
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)(Button, { disabled: loading, variant: "outline", onClick: onClose, children: cancelText }),
|
|
7554
|
+
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)(Button, { disabled: loading, variant: "destructive", onClick: onConfirm, children: confirmText })
|
|
7568
7555
|
] })
|
|
7569
7556
|
}
|
|
7570
7557
|
);
|
|
7571
7558
|
};
|
|
7572
7559
|
|
|
7573
7560
|
// src/shared/breadcrumbs.tsx
|
|
7574
|
-
var
|
|
7575
|
-
var
|
|
7576
|
-
var
|
|
7561
|
+
var import_lucide_react4 = require("lucide-react");
|
|
7562
|
+
var import_react35 = require("react");
|
|
7563
|
+
var import_jsx_runtime47 = require("react/jsx-runtime");
|
|
7577
7564
|
function Breadcrumbs({ items, className, classNameList }) {
|
|
7578
|
-
return /* @__PURE__ */ (0,
|
|
7579
|
-
index !== items.length - 1 && /* @__PURE__ */ (0,
|
|
7580
|
-
index < items.length - 1 && /* @__PURE__ */ (0,
|
|
7581
|
-
index === items.length - 1 && /* @__PURE__ */ (0,
|
|
7565
|
+
return /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(Breadcrumb, { className, children: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(BreadcrumbList, { className: classNameList, children: items.map((item, index) => /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(import_react35.Fragment, { children: [
|
|
7566
|
+
index !== items.length - 1 && /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(BreadcrumbItem, { className: item.className, children: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(BreadcrumbLink, { href: item.link, children: item.title }) }),
|
|
7567
|
+
index < items.length - 1 && /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(BreadcrumbSeparator, { children: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(import_lucide_react4.Slash, {}) }),
|
|
7568
|
+
index === items.length - 1 && /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(BreadcrumbPage, { children: item.title })
|
|
7582
7569
|
] }, item.title)) }) });
|
|
7583
7570
|
}
|
|
7584
7571
|
|
|
7585
|
-
// src/shared/data-table-skeleton.tsx
|
|
7586
|
-
var import_jsx_runtime47 = require("react/jsx-runtime");
|
|
7587
|
-
function DataTableSkeleton({
|
|
7588
|
-
columnCount,
|
|
7589
|
-
rowCount = 10,
|
|
7590
|
-
searchableColumnCount = 0,
|
|
7591
|
-
filterableColumnCount = 0,
|
|
7592
|
-
showViewOptions = true
|
|
7593
|
-
}) {
|
|
7594
|
-
return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { className: "w-full space-y-3 overflow-auto", children: [
|
|
7595
|
-
/* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { className: "flex w-full items-center justify-between space-x-2 overflow-auto p-1", children: [
|
|
7596
|
-
/* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { className: "flex flex-1 items-center space-x-2 space-y-4", children: [
|
|
7597
|
-
searchableColumnCount > 0 ? Array.from({ length: searchableColumnCount }).map((_, i) => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(Skeleton, { className: "h-10 w-[150px] lg:w-[250px]" }, i)) : null,
|
|
7598
|
-
filterableColumnCount > 0 ? Array.from({ length: filterableColumnCount }).map((_, i) => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(Skeleton, { className: "h-10 w-[70px] border-dashed" }, i)) : null
|
|
7599
|
-
] }),
|
|
7600
|
-
showViewOptions ? /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(Skeleton, { className: "ml-auto hidden h-7 w-[70px] lg:flex" }) : null
|
|
7601
|
-
] }),
|
|
7602
|
-
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: "rounded-md border", children: /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(Table, { children: [
|
|
7603
|
-
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)(TableHeader, { children: Array.from({ length: 1 }).map((_, i) => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(TableRow, { className: "hover:bg-transparent", children: Array.from({ length: columnCount }).map((_2, i2) => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(TableHead, { children: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(Skeleton, { className: "h-6 w-full" }) }, i2)) }, i)) }),
|
|
7604
|
-
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)(TableBody, { children: Array.from({ length: rowCount }).map((_, i) => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(TableRow, { className: "hover:bg-transparent", children: Array.from({ length: columnCount }).map((_2, i2) => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(TableCell, { children: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(Skeleton, { className: "h-6 w-full" }) }, i2)) }, i)) })
|
|
7605
|
-
] }) }),
|
|
7606
|
-
/* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { className: "flex w-full flex-col items-center justify-between gap-4 overflow-auto px-2 py-1 sm:flex-row sm:gap-8", children: [
|
|
7607
|
-
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: "flex-1", children: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(Skeleton, { className: "h-8 w-40" }) }),
|
|
7608
|
-
/* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { className: "flex flex-col items-center gap-4 sm:flex-row sm:gap-6 lg:gap-8", children: [
|
|
7609
|
-
/* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { className: "flex items-center space-x-2", children: [
|
|
7610
|
-
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)(Skeleton, { className: "h-8 w-24" }),
|
|
7611
|
-
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)(Skeleton, { className: "h-8 w-[70px]" })
|
|
7612
|
-
] }),
|
|
7613
|
-
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: "flex w-[100px] items-center justify-center text-sm font-medium", children: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(Skeleton, { className: "h-8 w-20" }) }),
|
|
7614
|
-
/* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { className: "flex items-center space-x-2", children: [
|
|
7615
|
-
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)(Skeleton, { className: "hidden size-8 lg:block" }),
|
|
7616
|
-
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)(Skeleton, { className: "size-8" }),
|
|
7617
|
-
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)(Skeleton, { className: "size-8" }),
|
|
7618
|
-
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)(Skeleton, { className: "hidden size-8 lg:block" })
|
|
7619
|
-
] })
|
|
7620
|
-
] })
|
|
7621
|
-
] })
|
|
7622
|
-
] });
|
|
7623
|
-
}
|
|
7624
|
-
|
|
7625
7572
|
// src/shared/data-table.tsx
|
|
7626
|
-
var
|
|
7573
|
+
var import_react36 = __toESM(require("react"), 1);
|
|
7627
7574
|
var import_react_icons18 = require("@radix-ui/react-icons");
|
|
7628
7575
|
var import_react_table = require("@tanstack/react-table");
|
|
7629
|
-
var
|
|
7576
|
+
var import_lucide_react5 = require("lucide-react");
|
|
7630
7577
|
var import_jsx_runtime48 = require("react/jsx-runtime");
|
|
7631
7578
|
function DataTable({
|
|
7632
7579
|
columns,
|
|
@@ -7638,6 +7585,8 @@ function DataTable({
|
|
|
7638
7585
|
rowPerPageLabel = "Rows per page",
|
|
7639
7586
|
ofLabel = "of",
|
|
7640
7587
|
pageLabel = "Page",
|
|
7588
|
+
isRowsSelected = true,
|
|
7589
|
+
rowsSelectedLabel = "row(s) selected",
|
|
7641
7590
|
className,
|
|
7642
7591
|
emptyData,
|
|
7643
7592
|
bodyClassName,
|
|
@@ -7646,9 +7595,10 @@ function DataTable({
|
|
|
7646
7595
|
rowClassName,
|
|
7647
7596
|
tableClassName,
|
|
7648
7597
|
onPageChange,
|
|
7649
|
-
onClick
|
|
7598
|
+
onClick,
|
|
7599
|
+
onPageSizeChange
|
|
7650
7600
|
}) {
|
|
7651
|
-
const [pagination, setPagination] =
|
|
7601
|
+
const [pagination, setPagination] = import_react36.default.useState({
|
|
7652
7602
|
pageIndex: Math.max(page - 1, 0),
|
|
7653
7603
|
pageSize: perPage
|
|
7654
7604
|
});
|
|
@@ -7669,11 +7619,11 @@ function DataTable({
|
|
|
7669
7619
|
onClick(row);
|
|
7670
7620
|
}
|
|
7671
7621
|
};
|
|
7672
|
-
(0,
|
|
7622
|
+
(0, import_react36.useEffect)(() => {
|
|
7673
7623
|
if (onPageChange) {
|
|
7674
|
-
onPageChange(pagination.pageIndex);
|
|
7624
|
+
onPageChange(pagination.pageIndex + 1);
|
|
7675
7625
|
}
|
|
7676
|
-
}, [pagination
|
|
7626
|
+
}, [pagination]);
|
|
7677
7627
|
return /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)(import_jsx_runtime48.Fragment, { children: [
|
|
7678
7628
|
/* @__PURE__ */ (0, import_jsx_runtime48.jsxs)(
|
|
7679
7629
|
ScrollArea,
|
|
@@ -7715,21 +7665,28 @@ function DataTable({
|
|
|
7715
7665
|
),
|
|
7716
7666
|
/* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("div", { className: "flex flex-col items-center justify-end gap-2 space-x-2 py-4 sm:flex-row", children: [
|
|
7717
7667
|
/* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("div", { className: "flex w-full items-center justify-between", children: [
|
|
7718
|
-
/* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("div", { className: "text-muted-foreground flex-1 text-sm", children: [
|
|
7668
|
+
isRowsSelected ? /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("div", { className: "text-muted-foreground flex-1 text-sm", children: [
|
|
7719
7669
|
table.getFilteredSelectedRowModel().rows.length,
|
|
7720
7670
|
" ",
|
|
7721
7671
|
ofLabel,
|
|
7722
7672
|
" ",
|
|
7723
7673
|
table.getFilteredRowModel().rows.length,
|
|
7724
|
-
"
|
|
7725
|
-
] }),
|
|
7674
|
+
" " + rowsSelectedLabel
|
|
7675
|
+
] }) : null,
|
|
7726
7676
|
/* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("div", { className: "flex items-center space-x-2", children: [
|
|
7727
7677
|
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("p", { className: "text-sm font-medium whitespace-nowrap", children: rowPerPageLabel }),
|
|
7728
7678
|
/* @__PURE__ */ (0, import_jsx_runtime48.jsxs)(
|
|
7729
7679
|
Select2,
|
|
7730
7680
|
{
|
|
7731
7681
|
value: `${pagination.pageSize}`,
|
|
7732
|
-
onValueChange: (value) =>
|
|
7682
|
+
onValueChange: (value) => {
|
|
7683
|
+
const newSize = Number(value);
|
|
7684
|
+
setPagination(__spreadProps(__spreadValues({}, pagination), {
|
|
7685
|
+
pageSize: newSize,
|
|
7686
|
+
pageIndex: 0
|
|
7687
|
+
}));
|
|
7688
|
+
if (onPageSizeChange) onPageSizeChange(newSize);
|
|
7689
|
+
},
|
|
7733
7690
|
children: [
|
|
7734
7691
|
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)(SelectTrigger, { className: "h-8 w-[70px]", children: /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(SelectValue, { placeholder: pagination.pageSize }) }),
|
|
7735
7692
|
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)(SelectContent, { side: "top", children: pageSizeOptions.map((size) => /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(SelectItem, { value: `${size}`, children: size }, size)) })
|
|
@@ -7770,7 +7727,7 @@ function DataTable({
|
|
|
7770
7727
|
pageIndex: pagination.pageIndex - 1
|
|
7771
7728
|
})),
|
|
7772
7729
|
disabled: pagination.pageIndex === 0,
|
|
7773
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
|
|
7730
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(import_lucide_react5.ChevronLeftIcon, { className: "h-4 w-4" })
|
|
7774
7731
|
}
|
|
7775
7732
|
),
|
|
7776
7733
|
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
|
|
@@ -7783,7 +7740,7 @@ function DataTable({
|
|
|
7783
7740
|
pageIndex: pagination.pageIndex + 1
|
|
7784
7741
|
})),
|
|
7785
7742
|
disabled: pagination.pageIndex + 1 >= pageCount,
|
|
7786
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
|
|
7743
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(import_lucide_react5.ChevronRightIcon, { className: "h-4 w-4" })
|
|
7787
7744
|
}
|
|
7788
7745
|
),
|
|
7789
7746
|
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
|
|
@@ -7803,12 +7760,52 @@ function DataTable({
|
|
|
7803
7760
|
] });
|
|
7804
7761
|
}
|
|
7805
7762
|
|
|
7763
|
+
// src/shared/data-table-skeleton.tsx
|
|
7764
|
+
var import_jsx_runtime49 = require("react/jsx-runtime");
|
|
7765
|
+
function DataTableSkeleton({
|
|
7766
|
+
columnCount,
|
|
7767
|
+
rowCount = 10,
|
|
7768
|
+
searchableColumnCount = 0,
|
|
7769
|
+
filterableColumnCount = 0,
|
|
7770
|
+
showViewOptions = true
|
|
7771
|
+
}) {
|
|
7772
|
+
return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: "w-full space-y-3 overflow-auto", children: [
|
|
7773
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: "flex w-full items-center justify-between space-x-2 overflow-auto p-1", children: [
|
|
7774
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: "flex flex-1 items-center space-x-2 space-y-4", children: [
|
|
7775
|
+
searchableColumnCount > 0 ? Array.from({ length: searchableColumnCount }).map((_, i) => /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(Skeleton, { className: "h-10 w-[150px] lg:w-[250px]" }, i)) : null,
|
|
7776
|
+
filterableColumnCount > 0 ? Array.from({ length: filterableColumnCount }).map((_, i) => /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(Skeleton, { className: "h-10 w-[70px] border-dashed" }, i)) : null
|
|
7777
|
+
] }),
|
|
7778
|
+
showViewOptions ? /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(Skeleton, { className: "ml-auto hidden h-7 w-[70px] lg:flex" }) : null
|
|
7779
|
+
] }),
|
|
7780
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)("div", { className: "rounded-md border", children: /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(Table, { children: [
|
|
7781
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)(TableHeader, { children: Array.from({ length: 1 }).map((_, i) => /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(TableRow, { className: "hover:bg-transparent", children: Array.from({ length: columnCount }).map((_2, i2) => /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(TableHead, { children: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(Skeleton, { className: "h-6 w-full" }) }, i2)) }, i)) }),
|
|
7782
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)(TableBody, { children: Array.from({ length: rowCount }).map((_, i) => /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(TableRow, { className: "hover:bg-transparent", children: Array.from({ length: columnCount }).map((_2, i2) => /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(TableCell, { children: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(Skeleton, { className: "h-6 w-full" }) }, i2)) }, i)) })
|
|
7783
|
+
] }) }),
|
|
7784
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: "flex w-full flex-col items-center justify-between gap-4 overflow-auto px-2 py-1 sm:flex-row sm:gap-8", children: [
|
|
7785
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)("div", { className: "flex-1", children: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(Skeleton, { className: "h-8 w-40" }) }),
|
|
7786
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: "flex flex-col items-center gap-4 sm:flex-row sm:gap-6 lg:gap-8", children: [
|
|
7787
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: "flex items-center space-x-2", children: [
|
|
7788
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)(Skeleton, { className: "h-8 w-24" }),
|
|
7789
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)(Skeleton, { className: "h-8 w-[70px]" })
|
|
7790
|
+
] }),
|
|
7791
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)("div", { className: "flex w-[100px] items-center justify-center text-sm font-medium", children: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(Skeleton, { className: "h-8 w-20" }) }),
|
|
7792
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: "flex items-center space-x-2", children: [
|
|
7793
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)(Skeleton, { className: "hidden size-8 lg:block" }),
|
|
7794
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)(Skeleton, { className: "size-8" }),
|
|
7795
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)(Skeleton, { className: "size-8" }),
|
|
7796
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)(Skeleton, { className: "hidden size-8 lg:block" })
|
|
7797
|
+
] })
|
|
7798
|
+
] })
|
|
7799
|
+
] })
|
|
7800
|
+
] });
|
|
7801
|
+
}
|
|
7802
|
+
|
|
7806
7803
|
// src/shared/fileupload.tsx
|
|
7807
7804
|
var import_react_icons19 = require("@radix-ui/react-icons");
|
|
7808
|
-
var
|
|
7809
|
-
var
|
|
7805
|
+
var import_lucide_react6 = require("lucide-react");
|
|
7806
|
+
var import_react37 = require("react");
|
|
7810
7807
|
var import_react_dropzone = require("react-dropzone");
|
|
7811
|
-
var
|
|
7808
|
+
var import_jsx_runtime50 = require("react/jsx-runtime");
|
|
7812
7809
|
function FileUpload({
|
|
7813
7810
|
onChange,
|
|
7814
7811
|
value,
|
|
@@ -7826,18 +7823,18 @@ function FileUpload({
|
|
|
7826
7823
|
const onUpdateFile = (newFiles) => {
|
|
7827
7824
|
onChange(newFiles);
|
|
7828
7825
|
};
|
|
7829
|
-
return /* @__PURE__ */ (0,
|
|
7826
|
+
return /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("div", { className: cn("flex items-center justify-center", className), children: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
|
|
7830
7827
|
"div",
|
|
7831
7828
|
{
|
|
7832
7829
|
className: cn(
|
|
7833
7830
|
"relative h-36 w-36 overflow-hidden rounded-full bg-gray-200 shadow-2xl ",
|
|
7834
7831
|
classNameContent
|
|
7835
7832
|
),
|
|
7836
|
-
children: /* @__PURE__ */ (0,
|
|
7837
|
-
/* @__PURE__ */ (0,
|
|
7838
|
-
value && !!value.length ? /* @__PURE__ */ (0,
|
|
7839
|
-
/* @__PURE__ */ (0,
|
|
7840
|
-
/* @__PURE__ */ (0,
|
|
7833
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("div", __spreadProps(__spreadValues({}, getRootProps({ className: "dropzone cursor-pointer" })), { children: [
|
|
7834
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("input", __spreadValues({}, getInputProps())),
|
|
7835
|
+
value && !!value.length ? /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(ImagePreview, { file: value[0] }) : /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(import_react_icons19.AvatarIcon, { className: "h-36 w-36 text-gray-100" }),
|
|
7836
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("p", { className: "absolute -bottom-5 left-1/2 flex w-full -translate-x-1/2 -translate-y-1/2 transform flex-col items-center justify-center bg-gray-300 bg-opacity-50 py-1 text-xs font-normal text-muted-foreground ", children: [
|
|
7837
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)(import_lucide_react6.CameraIcon, { className: "h-4 w-4 text-muted-foreground" }),
|
|
7841
7838
|
label
|
|
7842
7839
|
] })
|
|
7843
7840
|
] }))
|
|
@@ -7845,15 +7842,15 @@ function FileUpload({
|
|
|
7845
7842
|
) });
|
|
7846
7843
|
}
|
|
7847
7844
|
function ImagePreview({ file }) {
|
|
7848
|
-
const [objectUrl, setObjectUrl] = (0,
|
|
7849
|
-
(0,
|
|
7845
|
+
const [objectUrl, setObjectUrl] = (0, import_react37.useState)(null);
|
|
7846
|
+
(0, import_react37.useEffect)(() => {
|
|
7850
7847
|
const url = URL.createObjectURL(file);
|
|
7851
7848
|
setObjectUrl(url);
|
|
7852
7849
|
return () => {
|
|
7853
7850
|
URL.revokeObjectURL(url);
|
|
7854
7851
|
};
|
|
7855
7852
|
}, [file]);
|
|
7856
|
-
return objectUrl ? /* @__PURE__ */ (0,
|
|
7853
|
+
return objectUrl ? /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
|
|
7857
7854
|
"img",
|
|
7858
7855
|
{
|
|
7859
7856
|
src: objectUrl,
|
|
@@ -7864,19 +7861,19 @@ function ImagePreview({ file }) {
|
|
|
7864
7861
|
}
|
|
7865
7862
|
|
|
7866
7863
|
// src/shared/heading.tsx
|
|
7867
|
-
var
|
|
7864
|
+
var import_jsx_runtime51 = require("react/jsx-runtime");
|
|
7868
7865
|
function Heading({ title, description, className }) {
|
|
7869
|
-
return /* @__PURE__ */ (0,
|
|
7870
|
-
/* @__PURE__ */ (0,
|
|
7871
|
-
/* @__PURE__ */ (0,
|
|
7866
|
+
return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)("div", { className, children: [
|
|
7867
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)("h2", { className: "text-xl font-bold tracking-tight text-primary sm:text-3xl", children: title }),
|
|
7868
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)("p", { className: "text-sm text-muted-foreground", children: description })
|
|
7872
7869
|
] });
|
|
7873
7870
|
}
|
|
7874
7871
|
|
|
7875
7872
|
// src/shared/page-head.tsx
|
|
7876
7873
|
var import_react_helmet_next = require("react-helmet-next");
|
|
7877
|
-
var
|
|
7874
|
+
var import_jsx_runtime52 = require("react/jsx-runtime");
|
|
7878
7875
|
function PageHead({ title = "shadcn-ui-react" }) {
|
|
7879
|
-
return /* @__PURE__ */ (0,
|
|
7876
|
+
return /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(import_react_helmet_next.Helmet, { children: /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)("title", { children: [
|
|
7880
7877
|
" ",
|
|
7881
7878
|
title,
|
|
7882
7879
|
" "
|
|
@@ -7884,7 +7881,7 @@ function PageHead({ title = "shadcn-ui-react" }) {
|
|
|
7884
7881
|
}
|
|
7885
7882
|
|
|
7886
7883
|
// src/shared/pagination-section.tsx
|
|
7887
|
-
var
|
|
7884
|
+
var import_jsx_runtime53 = require("react/jsx-runtime");
|
|
7888
7885
|
function PaginationSection({
|
|
7889
7886
|
totalPosts,
|
|
7890
7887
|
postsPerPage,
|
|
@@ -7922,17 +7919,17 @@ function PaginationSection({
|
|
|
7922
7919
|
}
|
|
7923
7920
|
};
|
|
7924
7921
|
const renderPages = () => {
|
|
7925
|
-
const renderedPages = activePages.map((page, idx) => /* @__PURE__ */ (0,
|
|
7922
|
+
const renderedPages = activePages.map((page, idx) => /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
7926
7923
|
PaginationItem,
|
|
7927
7924
|
{
|
|
7928
7925
|
className: currentPage === page ? "rounded-md bg-primary" : "",
|
|
7929
|
-
children: /* @__PURE__ */ (0,
|
|
7926
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(PaginationLink, { onClick: () => setCurrentPage(page), size: void 0, children: page })
|
|
7930
7927
|
},
|
|
7931
7928
|
idx
|
|
7932
7929
|
));
|
|
7933
7930
|
if (activePages[0] > 1) {
|
|
7934
7931
|
renderedPages.unshift(
|
|
7935
|
-
/* @__PURE__ */ (0,
|
|
7932
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
7936
7933
|
PaginationEllipsis,
|
|
7937
7934
|
{
|
|
7938
7935
|
onClick: () => setCurrentPage(activePages[0] - 1)
|
|
@@ -7943,7 +7940,7 @@ function PaginationSection({
|
|
|
7943
7940
|
}
|
|
7944
7941
|
if (activePages[activePages.length - 1] < pageNumbers.length) {
|
|
7945
7942
|
renderedPages.push(
|
|
7946
|
-
/* @__PURE__ */ (0,
|
|
7943
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
7947
7944
|
PaginationEllipsis,
|
|
7948
7945
|
{
|
|
7949
7946
|
onClick: () => setCurrentPage(activePages[activePages.length - 1] + 1)
|
|
@@ -7954,21 +7951,21 @@ function PaginationSection({
|
|
|
7954
7951
|
}
|
|
7955
7952
|
return renderedPages;
|
|
7956
7953
|
};
|
|
7957
|
-
return /* @__PURE__ */ (0,
|
|
7958
|
-
/* @__PURE__ */ (0,
|
|
7959
|
-
/* @__PURE__ */ (0,
|
|
7954
|
+
return /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: "p-4", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Pagination, { children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(PaginationContent, { children: [
|
|
7955
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(PaginationItem, { children: [
|
|
7956
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
7960
7957
|
PaginationPreviousLast,
|
|
7961
7958
|
{
|
|
7962
7959
|
onClick: handlePrevPageLast,
|
|
7963
7960
|
size: void 0
|
|
7964
7961
|
}
|
|
7965
7962
|
),
|
|
7966
|
-
/* @__PURE__ */ (0,
|
|
7963
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)(PaginationPrevious, { onClick: handlePrevPage, size: void 0 })
|
|
7967
7964
|
] }),
|
|
7968
7965
|
renderPages(),
|
|
7969
|
-
/* @__PURE__ */ (0,
|
|
7970
|
-
/* @__PURE__ */ (0,
|
|
7971
|
-
/* @__PURE__ */ (0,
|
|
7966
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(PaginationItem, { children: [
|
|
7967
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)(PaginationNext, { onClick: handleNextPage, size: void 0 }),
|
|
7968
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)(PaginationNextLast, { onClick: handleNextPageLast, size: void 0 })
|
|
7972
7969
|
] })
|
|
7973
7970
|
] }) }) });
|
|
7974
7971
|
}
|