shadcn-ui-react 0.2.7 → 0.2.8
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 +60 -64
- package/dist/index.cjs +794 -834
- package/dist/index.d.cts +95 -66
- package/dist/index.d.ts +95 -66
- package/dist/index.js +763 -799
- package/dist/style.css +198 -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) => {
|
|
@@ -623,7 +622,7 @@ var Button = React5.forwardRef(
|
|
|
623
622
|
Button.displayName = "Button";
|
|
624
623
|
|
|
625
624
|
// node_modules/react-day-picker/dist/esm/DayPicker.js
|
|
626
|
-
var
|
|
625
|
+
var import_react32 = __toESM(require("react"), 1);
|
|
627
626
|
|
|
628
627
|
// node_modules/react-day-picker/dist/esm/UI.js
|
|
629
628
|
var UI;
|
|
@@ -668,6 +667,17 @@ var SelectionState;
|
|
|
668
667
|
SelectionState2["range_start"] = "range_start";
|
|
669
668
|
SelectionState2["selected"] = "selected";
|
|
670
669
|
})(SelectionState || (SelectionState = {}));
|
|
670
|
+
var Animation;
|
|
671
|
+
(function(Animation2) {
|
|
672
|
+
Animation2["weeks_before_enter"] = "weeks_before_enter";
|
|
673
|
+
Animation2["weeks_before_exit"] = "weeks_before_exit";
|
|
674
|
+
Animation2["weeks_after_enter"] = "weeks_after_enter";
|
|
675
|
+
Animation2["weeks_after_exit"] = "weeks_after_exit";
|
|
676
|
+
Animation2["caption_after_enter"] = "caption_after_enter";
|
|
677
|
+
Animation2["caption_after_exit"] = "caption_after_exit";
|
|
678
|
+
Animation2["caption_before_enter"] = "caption_before_enter";
|
|
679
|
+
Animation2["caption_before_exit"] = "caption_before_exit";
|
|
680
|
+
})(Animation || (Animation = {}));
|
|
671
681
|
|
|
672
682
|
// node_modules/@date-fns/tz/constants/index.js
|
|
673
683
|
var constructFromSymbol = Symbol.for("constructDateFrom");
|
|
@@ -944,8 +954,8 @@ function getDefaultOptions() {
|
|
|
944
954
|
// node_modules/date-fns/startOfWeek.js
|
|
945
955
|
function startOfWeek(date, options) {
|
|
946
956
|
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 :
|
|
957
|
+
const defaultOptions2 = getDefaultOptions();
|
|
958
|
+
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
959
|
const _date = toDate(date, options == null ? void 0 : options.in);
|
|
950
960
|
const day = _date.getDay();
|
|
951
961
|
const diff = (day < weekStartsOn ? 7 : 0) + day - weekStartsOn;
|
|
@@ -1171,8 +1181,8 @@ function startOfYear(date, options) {
|
|
|
1171
1181
|
// node_modules/date-fns/endOfWeek.js
|
|
1172
1182
|
function endOfWeek(date, options) {
|
|
1173
1183
|
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 :
|
|
1184
|
+
const defaultOptions2 = getDefaultOptions();
|
|
1185
|
+
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
1186
|
const _date = toDate(date, options == null ? void 0 : options.in);
|
|
1177
1187
|
const day = _date.getDay();
|
|
1178
1188
|
const diff = (day < weekStartsOn ? -7 : 0) + 6 - (day - weekStartsOn);
|
|
@@ -1715,8 +1725,8 @@ function getWeekYear(date, options) {
|
|
|
1715
1725
|
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
1716
1726
|
const _date = toDate(date, options == null ? void 0 : options.in);
|
|
1717
1727
|
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 :
|
|
1728
|
+
const defaultOptions2 = getDefaultOptions();
|
|
1729
|
+
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
1730
|
const firstWeekOfNextYear = constructFrom((options == null ? void 0 : options.in) || date, 0);
|
|
1721
1731
|
firstWeekOfNextYear.setFullYear(year + 1, 0, firstWeekContainsDate);
|
|
1722
1732
|
firstWeekOfNextYear.setHours(0, 0, 0, 0);
|
|
@@ -1737,8 +1747,8 @@ function getWeekYear(date, options) {
|
|
|
1737
1747
|
// node_modules/date-fns/startOfWeekYear.js
|
|
1738
1748
|
function startOfWeekYear(date, options) {
|
|
1739
1749
|
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 :
|
|
1750
|
+
const defaultOptions2 = getDefaultOptions();
|
|
1751
|
+
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
1752
|
const year = getWeekYear(date, options);
|
|
1743
1753
|
const firstWeek = constructFrom((options == null ? void 0 : options.in) || date, 0);
|
|
1744
1754
|
firstWeek.setFullYear(year, 0, firstWeekContainsDate);
|
|
@@ -2552,10 +2562,10 @@ var doubleQuoteRegExp = /''/g;
|
|
|
2552
2562
|
var unescapedLatinCharacterRegExp = /[a-zA-Z]/;
|
|
2553
2563
|
function format(date, formatStr, options) {
|
|
2554
2564
|
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 :
|
|
2565
|
+
const defaultOptions2 = getDefaultOptions();
|
|
2566
|
+
const locale = (_b = (_a = options == null ? void 0 : options.locale) != null ? _a : defaultOptions2.locale) != null ? _b : enUS;
|
|
2567
|
+
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;
|
|
2568
|
+
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
2569
|
const originalDate = toDate(date, options == null ? void 0 : options.in);
|
|
2560
2570
|
if (!isValid(originalDate)) {
|
|
2561
2571
|
throw new RangeError("Invalid time value");
|
|
@@ -2747,140 +2757,140 @@ var DateLib = class {
|
|
|
2747
2757
|
return new Date(year, monthIndex, date);
|
|
2748
2758
|
};
|
|
2749
2759
|
this.addDays = (date, amount) => {
|
|
2750
|
-
var _a
|
|
2751
|
-
return (
|
|
2760
|
+
var _a;
|
|
2761
|
+
return ((_a = this.overrides) == null ? void 0 : _a.addDays) ? this.overrides.addDays(date, amount) : addDays(date, amount);
|
|
2752
2762
|
};
|
|
2753
2763
|
this.addMonths = (date, amount) => {
|
|
2754
|
-
var _a
|
|
2755
|
-
return (
|
|
2764
|
+
var _a;
|
|
2765
|
+
return ((_a = this.overrides) == null ? void 0 : _a.addMonths) ? this.overrides.addMonths(date, amount) : addMonths(date, amount);
|
|
2756
2766
|
};
|
|
2757
2767
|
this.addWeeks = (date, amount) => {
|
|
2758
|
-
var _a
|
|
2759
|
-
return (
|
|
2768
|
+
var _a;
|
|
2769
|
+
return ((_a = this.overrides) == null ? void 0 : _a.addWeeks) ? this.overrides.addWeeks(date, amount) : addWeeks(date, amount);
|
|
2760
2770
|
};
|
|
2761
2771
|
this.addYears = (date, amount) => {
|
|
2762
|
-
var _a
|
|
2763
|
-
return (
|
|
2772
|
+
var _a;
|
|
2773
|
+
return ((_a = this.overrides) == null ? void 0 : _a.addYears) ? this.overrides.addYears(date, amount) : addYears(date, amount);
|
|
2764
2774
|
};
|
|
2765
2775
|
this.differenceInCalendarDays = (dateLeft, dateRight) => {
|
|
2766
|
-
var _a
|
|
2767
|
-
return (
|
|
2776
|
+
var _a;
|
|
2777
|
+
return ((_a = this.overrides) == null ? void 0 : _a.differenceInCalendarDays) ? this.overrides.differenceInCalendarDays(dateLeft, dateRight) : differenceInCalendarDays(dateLeft, dateRight);
|
|
2768
2778
|
};
|
|
2769
2779
|
this.differenceInCalendarMonths = (dateLeft, dateRight) => {
|
|
2770
|
-
var _a
|
|
2771
|
-
return (
|
|
2780
|
+
var _a;
|
|
2781
|
+
return ((_a = this.overrides) == null ? void 0 : _a.differenceInCalendarMonths) ? this.overrides.differenceInCalendarMonths(dateLeft, dateRight) : differenceInCalendarMonths(dateLeft, dateRight);
|
|
2772
2782
|
};
|
|
2773
2783
|
this.eachMonthOfInterval = (interval) => {
|
|
2774
|
-
var _a
|
|
2775
|
-
return (
|
|
2784
|
+
var _a;
|
|
2785
|
+
return ((_a = this.overrides) == null ? void 0 : _a.eachMonthOfInterval) ? this.overrides.eachMonthOfInterval(interval) : eachMonthOfInterval(interval);
|
|
2776
2786
|
};
|
|
2777
|
-
this.endOfBroadcastWeek = (date
|
|
2778
|
-
var _a
|
|
2779
|
-
return (
|
|
2787
|
+
this.endOfBroadcastWeek = (date) => {
|
|
2788
|
+
var _a;
|
|
2789
|
+
return ((_a = this.overrides) == null ? void 0 : _a.endOfBroadcastWeek) ? this.overrides.endOfBroadcastWeek(date, this) : endOfBroadcastWeek(date, this);
|
|
2780
2790
|
};
|
|
2781
2791
|
this.endOfISOWeek = (date) => {
|
|
2782
|
-
var _a
|
|
2783
|
-
return (
|
|
2792
|
+
var _a;
|
|
2793
|
+
return ((_a = this.overrides) == null ? void 0 : _a.endOfISOWeek) ? this.overrides.endOfISOWeek(date) : endOfISOWeek(date);
|
|
2784
2794
|
};
|
|
2785
2795
|
this.endOfMonth = (date) => {
|
|
2786
|
-
var _a
|
|
2787
|
-
return (
|
|
2796
|
+
var _a;
|
|
2797
|
+
return ((_a = this.overrides) == null ? void 0 : _a.endOfMonth) ? this.overrides.endOfMonth(date) : endOfMonth(date);
|
|
2788
2798
|
};
|
|
2789
|
-
this.endOfWeek = (date
|
|
2790
|
-
var _a
|
|
2791
|
-
return (
|
|
2799
|
+
this.endOfWeek = (date) => {
|
|
2800
|
+
var _a;
|
|
2801
|
+
return ((_a = this.overrides) == null ? void 0 : _a.endOfWeek) ? this.overrides.endOfWeek(date, this.options) : endOfWeek(date, this.options);
|
|
2792
2802
|
};
|
|
2793
2803
|
this.endOfYear = (date) => {
|
|
2794
|
-
var _a
|
|
2795
|
-
return (
|
|
2804
|
+
var _a;
|
|
2805
|
+
return ((_a = this.overrides) == null ? void 0 : _a.endOfYear) ? this.overrides.endOfYear(date) : endOfYear(date);
|
|
2796
2806
|
};
|
|
2797
|
-
this.format = (date, formatStr
|
|
2798
|
-
var _a
|
|
2799
|
-
const formatted = (
|
|
2807
|
+
this.format = (date, formatStr) => {
|
|
2808
|
+
var _a;
|
|
2809
|
+
const formatted = ((_a = this.overrides) == null ? void 0 : _a.format) ? this.overrides.format(date, formatStr, this.options) : format(date, formatStr, this.options);
|
|
2800
2810
|
if (this.options.numerals && this.options.numerals !== "latn") {
|
|
2801
2811
|
return this.replaceDigits(formatted);
|
|
2802
2812
|
}
|
|
2803
2813
|
return formatted;
|
|
2804
2814
|
};
|
|
2805
2815
|
this.getISOWeek = (date) => {
|
|
2806
|
-
var _a
|
|
2807
|
-
return (
|
|
2816
|
+
var _a;
|
|
2817
|
+
return ((_a = this.overrides) == null ? void 0 : _a.getISOWeek) ? this.overrides.getISOWeek(date) : getISOWeek(date);
|
|
2808
2818
|
};
|
|
2809
2819
|
this.getMonth = (date) => {
|
|
2810
|
-
var _a
|
|
2811
|
-
return (
|
|
2820
|
+
var _a;
|
|
2821
|
+
return ((_a = this.overrides) == null ? void 0 : _a.getMonth) ? this.overrides.getMonth(date, this.options) : getMonth(date, this.options);
|
|
2812
2822
|
};
|
|
2813
2823
|
this.getYear = (date) => {
|
|
2814
|
-
var _a
|
|
2815
|
-
return (
|
|
2824
|
+
var _a;
|
|
2825
|
+
return ((_a = this.overrides) == null ? void 0 : _a.getYear) ? this.overrides.getYear(date, this.options) : getYear(date, this.options);
|
|
2816
2826
|
};
|
|
2817
|
-
this.getWeek = (date
|
|
2818
|
-
var _a
|
|
2819
|
-
return (
|
|
2827
|
+
this.getWeek = (date) => {
|
|
2828
|
+
var _a;
|
|
2829
|
+
return ((_a = this.overrides) == null ? void 0 : _a.getWeek) ? this.overrides.getWeek(date, this.options) : getWeek(date, this.options);
|
|
2820
2830
|
};
|
|
2821
2831
|
this.isAfter = (date, dateToCompare) => {
|
|
2822
|
-
var _a
|
|
2823
|
-
return (
|
|
2832
|
+
var _a;
|
|
2833
|
+
return ((_a = this.overrides) == null ? void 0 : _a.isAfter) ? this.overrides.isAfter(date, dateToCompare) : isAfter(date, dateToCompare);
|
|
2824
2834
|
};
|
|
2825
2835
|
this.isBefore = (date, dateToCompare) => {
|
|
2826
|
-
var _a
|
|
2827
|
-
return (
|
|
2836
|
+
var _a;
|
|
2837
|
+
return ((_a = this.overrides) == null ? void 0 : _a.isBefore) ? this.overrides.isBefore(date, dateToCompare) : isBefore(date, dateToCompare);
|
|
2828
2838
|
};
|
|
2829
2839
|
this.isDate = (value) => {
|
|
2830
|
-
var _a
|
|
2831
|
-
return (
|
|
2840
|
+
var _a;
|
|
2841
|
+
return ((_a = this.overrides) == null ? void 0 : _a.isDate) ? this.overrides.isDate(value) : isDate(value);
|
|
2832
2842
|
};
|
|
2833
2843
|
this.isSameDay = (dateLeft, dateRight) => {
|
|
2834
|
-
var _a
|
|
2835
|
-
return (
|
|
2844
|
+
var _a;
|
|
2845
|
+
return ((_a = this.overrides) == null ? void 0 : _a.isSameDay) ? this.overrides.isSameDay(dateLeft, dateRight) : isSameDay(dateLeft, dateRight);
|
|
2836
2846
|
};
|
|
2837
2847
|
this.isSameMonth = (dateLeft, dateRight) => {
|
|
2838
|
-
var _a
|
|
2839
|
-
return (
|
|
2848
|
+
var _a;
|
|
2849
|
+
return ((_a = this.overrides) == null ? void 0 : _a.isSameMonth) ? this.overrides.isSameMonth(dateLeft, dateRight) : isSameMonth(dateLeft, dateRight);
|
|
2840
2850
|
};
|
|
2841
2851
|
this.isSameYear = (dateLeft, dateRight) => {
|
|
2842
|
-
var _a
|
|
2843
|
-
return (
|
|
2852
|
+
var _a;
|
|
2853
|
+
return ((_a = this.overrides) == null ? void 0 : _a.isSameYear) ? this.overrides.isSameYear(dateLeft, dateRight) : isSameYear(dateLeft, dateRight);
|
|
2844
2854
|
};
|
|
2845
2855
|
this.max = (dates) => {
|
|
2846
|
-
var _a
|
|
2847
|
-
return (
|
|
2856
|
+
var _a;
|
|
2857
|
+
return ((_a = this.overrides) == null ? void 0 : _a.max) ? this.overrides.max(dates) : max(dates);
|
|
2848
2858
|
};
|
|
2849
2859
|
this.min = (dates) => {
|
|
2850
|
-
var _a
|
|
2851
|
-
return (
|
|
2860
|
+
var _a;
|
|
2861
|
+
return ((_a = this.overrides) == null ? void 0 : _a.min) ? this.overrides.min(dates) : min(dates);
|
|
2852
2862
|
};
|
|
2853
2863
|
this.setMonth = (date, month) => {
|
|
2854
|
-
var _a
|
|
2855
|
-
return (
|
|
2864
|
+
var _a;
|
|
2865
|
+
return ((_a = this.overrides) == null ? void 0 : _a.setMonth) ? this.overrides.setMonth(date, month) : setMonth(date, month);
|
|
2856
2866
|
};
|
|
2857
2867
|
this.setYear = (date, year) => {
|
|
2858
|
-
var _a
|
|
2859
|
-
return (
|
|
2868
|
+
var _a;
|
|
2869
|
+
return ((_a = this.overrides) == null ? void 0 : _a.setYear) ? this.overrides.setYear(date, year) : setYear(date, year);
|
|
2860
2870
|
};
|
|
2861
|
-
this.startOfBroadcastWeek = (date
|
|
2862
|
-
var _a
|
|
2863
|
-
return (
|
|
2871
|
+
this.startOfBroadcastWeek = (date) => {
|
|
2872
|
+
var _a;
|
|
2873
|
+
return ((_a = this.overrides) == null ? void 0 : _a.startOfBroadcastWeek) ? this.overrides.startOfBroadcastWeek(date, this) : startOfBroadcastWeek(date, this);
|
|
2864
2874
|
};
|
|
2865
2875
|
this.startOfDay = (date) => {
|
|
2866
|
-
var _a
|
|
2867
|
-
return (
|
|
2876
|
+
var _a;
|
|
2877
|
+
return ((_a = this.overrides) == null ? void 0 : _a.startOfDay) ? this.overrides.startOfDay(date) : startOfDay(date);
|
|
2868
2878
|
};
|
|
2869
2879
|
this.startOfISOWeek = (date) => {
|
|
2870
|
-
var _a
|
|
2871
|
-
return (
|
|
2880
|
+
var _a;
|
|
2881
|
+
return ((_a = this.overrides) == null ? void 0 : _a.startOfISOWeek) ? this.overrides.startOfISOWeek(date) : startOfISOWeek(date);
|
|
2872
2882
|
};
|
|
2873
2883
|
this.startOfMonth = (date) => {
|
|
2874
|
-
var _a
|
|
2875
|
-
return (
|
|
2884
|
+
var _a;
|
|
2885
|
+
return ((_a = this.overrides) == null ? void 0 : _a.startOfMonth) ? this.overrides.startOfMonth(date) : startOfMonth(date);
|
|
2876
2886
|
};
|
|
2877
2887
|
this.startOfWeek = (date) => {
|
|
2878
|
-
var _a
|
|
2879
|
-
return (
|
|
2888
|
+
var _a;
|
|
2889
|
+
return ((_a = this.overrides) == null ? void 0 : _a.startOfWeek) ? this.overrides.startOfWeek(date, this.options) : startOfWeek(date, this.options);
|
|
2880
2890
|
};
|
|
2881
2891
|
this.startOfYear = (date) => {
|
|
2882
|
-
var _a
|
|
2883
|
-
return (
|
|
2892
|
+
var _a;
|
|
2893
|
+
return ((_a = this.overrides) == null ? void 0 : _a.startOfYear) ? this.overrides.startOfYear(date) : startOfYear(date);
|
|
2884
2894
|
};
|
|
2885
2895
|
this.options = __spreadValues({ locale: enUS }, options);
|
|
2886
2896
|
this.overrides = overrides;
|
|
@@ -2991,7 +3001,7 @@ function Chevron(props) {
|
|
|
2991
3001
|
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
3002
|
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
3003
|
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.
|
|
3004
|
+
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
3005
|
);
|
|
2996
3006
|
}
|
|
2997
3007
|
|
|
@@ -3097,17 +3107,27 @@ var import_react15 = __toESM(require("react"), 1);
|
|
|
3097
3107
|
function Nav(props) {
|
|
3098
3108
|
const _a = props, { onPreviousClick, onNextClick, previousMonth, nextMonth } = _a, navProps = __objRest(_a, ["onPreviousClick", "onNextClick", "previousMonth", "nextMonth"]);
|
|
3099
3109
|
const { components, classNames, labels: { labelPrevious: labelPrevious2, labelNext: labelNext2 } } = useDayPicker();
|
|
3110
|
+
const handleNextClick = (0, import_react15.useCallback)((e) => {
|
|
3111
|
+
if (nextMonth) {
|
|
3112
|
+
onNextClick == null ? void 0 : onNextClick(e);
|
|
3113
|
+
}
|
|
3114
|
+
}, [nextMonth, onNextClick]);
|
|
3115
|
+
const handlePreviousClick = (0, import_react15.useCallback)((e) => {
|
|
3116
|
+
if (previousMonth) {
|
|
3117
|
+
onPreviousClick == null ? void 0 : onPreviousClick(e);
|
|
3118
|
+
}
|
|
3119
|
+
}, [previousMonth, onPreviousClick]);
|
|
3100
3120
|
return import_react15.default.createElement(
|
|
3101
3121
|
"nav",
|
|
3102
3122
|
__spreadValues({}, navProps),
|
|
3103
3123
|
import_react15.default.createElement(
|
|
3104
3124
|
components.PreviousMonthButton,
|
|
3105
|
-
{ type: "button", className: classNames[UI.PreviousMonthButton], tabIndex: previousMonth ? void 0 : -1, disabled: previousMonth ? void 0 : true, "aria-label": labelPrevious2(previousMonth), onClick:
|
|
3125
|
+
{ type: "button", className: classNames[UI.PreviousMonthButton], tabIndex: previousMonth ? void 0 : -1, "aria-disabled": previousMonth ? void 0 : true, "aria-label": labelPrevious2(previousMonth), onClick: handlePreviousClick },
|
|
3106
3126
|
import_react15.default.createElement(components.Chevron, { disabled: previousMonth ? void 0 : true, className: classNames[UI.Chevron], orientation: "left" })
|
|
3107
3127
|
),
|
|
3108
3128
|
import_react15.default.createElement(
|
|
3109
3129
|
components.NextMonthButton,
|
|
3110
|
-
{ type: "button", className: classNames[UI.NextMonthButton], tabIndex: nextMonth ? void 0 : -1, disabled: nextMonth ? void 0 : true, "aria-label": labelNext2(nextMonth), onClick:
|
|
3130
|
+
{ type: "button", className: classNames[UI.NextMonthButton], tabIndex: nextMonth ? void 0 : -1, "aria-disabled": nextMonth ? void 0 : true, "aria-label": labelNext2(nextMonth), onClick: handleNextClick },
|
|
3111
3131
|
import_react15.default.createElement(components.Chevron, { disabled: nextMonth ? void 0 : true, orientation: "right", className: classNames[UI.Chevron] })
|
|
3112
3132
|
)
|
|
3113
3133
|
);
|
|
@@ -3136,7 +3156,8 @@ function PreviousMonthButton(props) {
|
|
|
3136
3156
|
// node_modules/react-day-picker/dist/esm/components/Root.js
|
|
3137
3157
|
var import_react19 = __toESM(require("react"), 1);
|
|
3138
3158
|
function Root4(props) {
|
|
3139
|
-
|
|
3159
|
+
const _a = props, { rootRef } = _a, rest = __objRest(_a, ["rootRef"]);
|
|
3160
|
+
return import_react19.default.createElement("div", __spreadProps(__spreadValues({}, rest), { ref: rootRef }));
|
|
3140
3161
|
}
|
|
3141
3162
|
|
|
3142
3163
|
// node_modules/react-day-picker/dist/esm/components/Select.js
|
|
@@ -3229,6 +3250,9 @@ function getDefaultClassNames() {
|
|
|
3229
3250
|
for (const key in SelectionState) {
|
|
3230
3251
|
classNames[SelectionState[key]] = `rdp-${SelectionState[key]}`;
|
|
3231
3252
|
}
|
|
3253
|
+
for (const key in Animation) {
|
|
3254
|
+
classNames[Animation[key]] = `rdp-${Animation[key]}`;
|
|
3255
|
+
}
|
|
3232
3256
|
return classNames;
|
|
3233
3257
|
}
|
|
3234
3258
|
|
|
@@ -3443,8 +3467,139 @@ function labelYearDropdown(options) {
|
|
|
3443
3467
|
return "Choose the Year";
|
|
3444
3468
|
}
|
|
3445
3469
|
|
|
3470
|
+
// node_modules/react-day-picker/dist/esm/useAnimation.js
|
|
3471
|
+
var import_react28 = require("react");
|
|
3472
|
+
var asHtmlElement = (element) => {
|
|
3473
|
+
if (element instanceof HTMLElement)
|
|
3474
|
+
return element;
|
|
3475
|
+
return null;
|
|
3476
|
+
};
|
|
3477
|
+
var queryMonthEls = (element) => {
|
|
3478
|
+
var _a;
|
|
3479
|
+
return [
|
|
3480
|
+
...(_a = element.querySelectorAll("[data-animated-month]")) != null ? _a : []
|
|
3481
|
+
];
|
|
3482
|
+
};
|
|
3483
|
+
var queryMonthEl = (element) => asHtmlElement(element.querySelector("[data-animated-month]"));
|
|
3484
|
+
var queryCaptionEl = (element) => asHtmlElement(element.querySelector("[data-animated-caption]"));
|
|
3485
|
+
var queryWeeksEl = (element) => asHtmlElement(element.querySelector("[data-animated-weeks]"));
|
|
3486
|
+
var queryNavEl = (element) => asHtmlElement(element.querySelector("[data-animated-nav]"));
|
|
3487
|
+
var queryWeekdaysEl = (element) => asHtmlElement(element.querySelector("[data-animated-weekdays]"));
|
|
3488
|
+
function useAnimation(rootElRef, enabled, { classNames, months, focused, dateLib }) {
|
|
3489
|
+
const previousRootElSnapshotRef = (0, import_react28.useRef)(null);
|
|
3490
|
+
const previousMonthsRef = (0, import_react28.useRef)(months);
|
|
3491
|
+
const animatingRef = (0, import_react28.useRef)(false);
|
|
3492
|
+
(0, import_react28.useLayoutEffect)(() => {
|
|
3493
|
+
const previousMonths = previousMonthsRef.current;
|
|
3494
|
+
previousMonthsRef.current = months;
|
|
3495
|
+
if (!enabled || !rootElRef.current || // safety check because the ref can be set to anything by consumers
|
|
3496
|
+
!(rootElRef.current instanceof HTMLElement) || // validation required for the animation to work as expected
|
|
3497
|
+
months.length === 0 || previousMonths.length === 0 || months.length !== previousMonths.length) {
|
|
3498
|
+
return;
|
|
3499
|
+
}
|
|
3500
|
+
const isSameMonth2 = dateLib.isSameMonth(months[0].date, previousMonths[0].date);
|
|
3501
|
+
const isAfterPreviousMonth = dateLib.isAfter(months[0].date, previousMonths[0].date);
|
|
3502
|
+
const captionAnimationClass = isAfterPreviousMonth ? classNames[Animation.caption_after_enter] : classNames[Animation.caption_before_enter];
|
|
3503
|
+
const weeksAnimationClass = isAfterPreviousMonth ? classNames[Animation.weeks_after_enter] : classNames[Animation.weeks_before_enter];
|
|
3504
|
+
const previousRootElSnapshot = previousRootElSnapshotRef.current;
|
|
3505
|
+
const rootElSnapshot = rootElRef.current.cloneNode(true);
|
|
3506
|
+
if (rootElSnapshot instanceof HTMLElement) {
|
|
3507
|
+
const currentMonthElsSnapshot = queryMonthEls(rootElSnapshot);
|
|
3508
|
+
currentMonthElsSnapshot.forEach((currentMonthElSnapshot) => {
|
|
3509
|
+
if (!(currentMonthElSnapshot instanceof HTMLElement))
|
|
3510
|
+
return;
|
|
3511
|
+
const previousMonthElSnapshot = queryMonthEl(currentMonthElSnapshot);
|
|
3512
|
+
if (previousMonthElSnapshot && currentMonthElSnapshot.contains(previousMonthElSnapshot)) {
|
|
3513
|
+
currentMonthElSnapshot.removeChild(previousMonthElSnapshot);
|
|
3514
|
+
}
|
|
3515
|
+
const captionEl = queryCaptionEl(currentMonthElSnapshot);
|
|
3516
|
+
if (captionEl) {
|
|
3517
|
+
captionEl.classList.remove(captionAnimationClass);
|
|
3518
|
+
}
|
|
3519
|
+
const weeksEl = queryWeeksEl(currentMonthElSnapshot);
|
|
3520
|
+
if (weeksEl) {
|
|
3521
|
+
weeksEl.classList.remove(weeksAnimationClass);
|
|
3522
|
+
}
|
|
3523
|
+
});
|
|
3524
|
+
previousRootElSnapshotRef.current = rootElSnapshot;
|
|
3525
|
+
} else {
|
|
3526
|
+
previousRootElSnapshotRef.current = null;
|
|
3527
|
+
}
|
|
3528
|
+
if (animatingRef.current || isSameMonth2 || // skip animation if a day is focused because it can cause issues to the animation and is better for a11y
|
|
3529
|
+
focused) {
|
|
3530
|
+
return;
|
|
3531
|
+
}
|
|
3532
|
+
const previousMonthEls = previousRootElSnapshot instanceof HTMLElement ? queryMonthEls(previousRootElSnapshot) : [];
|
|
3533
|
+
const currentMonthEls = queryMonthEls(rootElRef.current);
|
|
3534
|
+
if (currentMonthEls && currentMonthEls.every((el) => el instanceof HTMLElement) && previousMonthEls && previousMonthEls.every((el) => el instanceof HTMLElement)) {
|
|
3535
|
+
animatingRef.current = true;
|
|
3536
|
+
const cleanUpFunctions = [];
|
|
3537
|
+
rootElRef.current.style.isolation = "isolate";
|
|
3538
|
+
const navEl = queryNavEl(rootElRef.current);
|
|
3539
|
+
if (navEl) {
|
|
3540
|
+
navEl.style.zIndex = "1";
|
|
3541
|
+
}
|
|
3542
|
+
currentMonthEls.forEach((currentMonthEl, index) => {
|
|
3543
|
+
const previousMonthEl = previousMonthEls[index];
|
|
3544
|
+
if (!previousMonthEl) {
|
|
3545
|
+
return;
|
|
3546
|
+
}
|
|
3547
|
+
currentMonthEl.style.position = "relative";
|
|
3548
|
+
currentMonthEl.style.overflow = "hidden";
|
|
3549
|
+
const captionEl = queryCaptionEl(currentMonthEl);
|
|
3550
|
+
if (captionEl) {
|
|
3551
|
+
captionEl.classList.add(captionAnimationClass);
|
|
3552
|
+
}
|
|
3553
|
+
const weeksEl = queryWeeksEl(currentMonthEl);
|
|
3554
|
+
if (weeksEl) {
|
|
3555
|
+
weeksEl.classList.add(weeksAnimationClass);
|
|
3556
|
+
}
|
|
3557
|
+
const cleanUp = () => {
|
|
3558
|
+
animatingRef.current = false;
|
|
3559
|
+
if (rootElRef.current) {
|
|
3560
|
+
rootElRef.current.style.isolation = "";
|
|
3561
|
+
}
|
|
3562
|
+
if (navEl) {
|
|
3563
|
+
navEl.style.zIndex = "";
|
|
3564
|
+
}
|
|
3565
|
+
if (captionEl) {
|
|
3566
|
+
captionEl.classList.remove(captionAnimationClass);
|
|
3567
|
+
}
|
|
3568
|
+
if (weeksEl) {
|
|
3569
|
+
weeksEl.classList.remove(weeksAnimationClass);
|
|
3570
|
+
}
|
|
3571
|
+
currentMonthEl.style.position = "";
|
|
3572
|
+
currentMonthEl.style.overflow = "";
|
|
3573
|
+
if (currentMonthEl.contains(previousMonthEl)) {
|
|
3574
|
+
currentMonthEl.removeChild(previousMonthEl);
|
|
3575
|
+
}
|
|
3576
|
+
};
|
|
3577
|
+
cleanUpFunctions.push(cleanUp);
|
|
3578
|
+
previousMonthEl.style.pointerEvents = "none";
|
|
3579
|
+
previousMonthEl.style.position = "absolute";
|
|
3580
|
+
previousMonthEl.style.overflow = "hidden";
|
|
3581
|
+
previousMonthEl.setAttribute("aria-hidden", "true");
|
|
3582
|
+
const previousWeekdaysEl = queryWeekdaysEl(previousMonthEl);
|
|
3583
|
+
if (previousWeekdaysEl) {
|
|
3584
|
+
previousWeekdaysEl.style.opacity = "0";
|
|
3585
|
+
}
|
|
3586
|
+
const previousCaptionEl = queryCaptionEl(previousMonthEl);
|
|
3587
|
+
if (previousCaptionEl) {
|
|
3588
|
+
previousCaptionEl.classList.add(isAfterPreviousMonth ? classNames[Animation.caption_before_exit] : classNames[Animation.caption_after_exit]);
|
|
3589
|
+
previousCaptionEl.addEventListener("animationend", cleanUp);
|
|
3590
|
+
}
|
|
3591
|
+
const previousWeeksEl = queryWeeksEl(previousMonthEl);
|
|
3592
|
+
if (previousWeeksEl) {
|
|
3593
|
+
previousWeeksEl.classList.add(isAfterPreviousMonth ? classNames[Animation.weeks_before_exit] : classNames[Animation.weeks_after_exit]);
|
|
3594
|
+
}
|
|
3595
|
+
currentMonthEl.insertBefore(previousMonthEl, currentMonthEl.firstChild);
|
|
3596
|
+
});
|
|
3597
|
+
}
|
|
3598
|
+
});
|
|
3599
|
+
}
|
|
3600
|
+
|
|
3446
3601
|
// node_modules/react-day-picker/dist/esm/useCalendar.js
|
|
3447
|
-
var
|
|
3602
|
+
var import_react30 = require("react");
|
|
3448
3603
|
|
|
3449
3604
|
// node_modules/react-day-picker/dist/esm/helpers/getDates.js
|
|
3450
3605
|
function getDates(displayMonths, maxDate, props, dateLib) {
|
|
@@ -3504,7 +3659,7 @@ function getDisplayMonths(firstDisplayedMonth, calendarEndMonth, props, dateLib)
|
|
|
3504
3659
|
|
|
3505
3660
|
// node_modules/react-day-picker/dist/esm/helpers/getInitialMonth.js
|
|
3506
3661
|
function getInitialMonth(props, dateLib) {
|
|
3507
|
-
const { month, defaultMonth, today = dateLib.today(), numberOfMonths = 1, endMonth, startMonth } = props;
|
|
3662
|
+
const { month, defaultMonth, today = dateLib.today(), numberOfMonths = 1, endMonth, startMonth, timeZone } = props;
|
|
3508
3663
|
let initialMonth = month || defaultMonth || today;
|
|
3509
3664
|
const { differenceInCalendarMonths: differenceInCalendarMonths2, addMonths: addMonths2, startOfMonth: startOfMonth2 } = dateLib;
|
|
3510
3665
|
if (endMonth && differenceInCalendarMonths2(endMonth, initialMonth) < 0) {
|
|
@@ -3514,6 +3669,7 @@ function getInitialMonth(props, dateLib) {
|
|
|
3514
3669
|
if (startMonth && differenceInCalendarMonths2(initialMonth, startMonth) < 0) {
|
|
3515
3670
|
initialMonth = startMonth;
|
|
3516
3671
|
}
|
|
3672
|
+
initialMonth = timeZone ? new TZDate(initialMonth, timeZone) : initialMonth;
|
|
3517
3673
|
return startOfMonth2(initialMonth);
|
|
3518
3674
|
}
|
|
3519
3675
|
|
|
@@ -3675,9 +3831,9 @@ function getWeeks(months) {
|
|
|
3675
3831
|
}
|
|
3676
3832
|
|
|
3677
3833
|
// node_modules/react-day-picker/dist/esm/helpers/useControlledValue.js
|
|
3678
|
-
var
|
|
3834
|
+
var import_react29 = require("react");
|
|
3679
3835
|
function useControlledValue(defaultValue, controlledValue) {
|
|
3680
|
-
const [uncontrolledValue, setValue] = (0,
|
|
3836
|
+
const [uncontrolledValue, setValue] = (0, import_react29.useState)(defaultValue);
|
|
3681
3837
|
const value = controlledValue === void 0 ? uncontrolledValue : controlledValue;
|
|
3682
3838
|
return [value, setValue];
|
|
3683
3839
|
}
|
|
@@ -3692,7 +3848,7 @@ function useCalendar(props, dateLib) {
|
|
|
3692
3848
|
// initialMonth is always computed from props.month if provided
|
|
3693
3849
|
props.month ? initialMonth : void 0
|
|
3694
3850
|
);
|
|
3695
|
-
(0,
|
|
3851
|
+
(0, import_react30.useEffect)(() => {
|
|
3696
3852
|
const newInitialMonth = getInitialMonth(props, dateLib);
|
|
3697
3853
|
setFirstMonth(newInitialMonth);
|
|
3698
3854
|
}, [props.timeZone]);
|
|
@@ -3740,38 +3896,42 @@ function useCalendar(props, dateLib) {
|
|
|
3740
3896
|
}
|
|
3741
3897
|
|
|
3742
3898
|
// node_modules/react-day-picker/dist/esm/useFocus.js
|
|
3743
|
-
var
|
|
3899
|
+
var import_react31 = require("react");
|
|
3744
3900
|
|
|
3745
3901
|
// node_modules/react-day-picker/dist/esm/helpers/calculateFocusTarget.js
|
|
3902
|
+
var FocusTargetPriority;
|
|
3903
|
+
(function(FocusTargetPriority2) {
|
|
3904
|
+
FocusTargetPriority2[FocusTargetPriority2["Today"] = 0] = "Today";
|
|
3905
|
+
FocusTargetPriority2[FocusTargetPriority2["Selected"] = 1] = "Selected";
|
|
3906
|
+
FocusTargetPriority2[FocusTargetPriority2["LastFocused"] = 2] = "LastFocused";
|
|
3907
|
+
FocusTargetPriority2[FocusTargetPriority2["FocusedModifier"] = 3] = "FocusedModifier";
|
|
3908
|
+
})(FocusTargetPriority || (FocusTargetPriority = {}));
|
|
3909
|
+
function isFocusableDay(modifiers) {
|
|
3910
|
+
return !modifiers[DayFlag.disabled] && !modifiers[DayFlag.hidden] && !modifiers[DayFlag.outside];
|
|
3911
|
+
}
|
|
3746
3912
|
function calculateFocusTarget(days, getModifiers, isSelected, lastFocused) {
|
|
3747
3913
|
let focusTarget;
|
|
3748
|
-
let
|
|
3749
|
-
|
|
3750
|
-
while (index < days.length && !found) {
|
|
3751
|
-
const day = days[index];
|
|
3914
|
+
let foundFocusTargetPriority = -1;
|
|
3915
|
+
for (const day of days) {
|
|
3752
3916
|
const modifiers = getModifiers(day);
|
|
3753
|
-
if (
|
|
3754
|
-
if (modifiers[DayFlag.focused]) {
|
|
3917
|
+
if (isFocusableDay(modifiers)) {
|
|
3918
|
+
if (modifiers[DayFlag.focused] && foundFocusTargetPriority < FocusTargetPriority.FocusedModifier) {
|
|
3755
3919
|
focusTarget = day;
|
|
3756
|
-
|
|
3757
|
-
} else if (lastFocused == null ? void 0 : lastFocused.isEqualTo(day)) {
|
|
3920
|
+
foundFocusTargetPriority = FocusTargetPriority.FocusedModifier;
|
|
3921
|
+
} else if ((lastFocused == null ? void 0 : lastFocused.isEqualTo(day)) && foundFocusTargetPriority < FocusTargetPriority.LastFocused) {
|
|
3758
3922
|
focusTarget = day;
|
|
3759
|
-
|
|
3760
|
-
} else if (isSelected(day.date)) {
|
|
3923
|
+
foundFocusTargetPriority = FocusTargetPriority.LastFocused;
|
|
3924
|
+
} else if (isSelected(day.date) && foundFocusTargetPriority < FocusTargetPriority.Selected) {
|
|
3761
3925
|
focusTarget = day;
|
|
3762
|
-
|
|
3763
|
-
} else if (modifiers[DayFlag.today]) {
|
|
3926
|
+
foundFocusTargetPriority = FocusTargetPriority.Selected;
|
|
3927
|
+
} else if (modifiers[DayFlag.today] && foundFocusTargetPriority < FocusTargetPriority.Today) {
|
|
3764
3928
|
focusTarget = day;
|
|
3765
|
-
|
|
3929
|
+
foundFocusTargetPriority = FocusTargetPriority.Today;
|
|
3766
3930
|
}
|
|
3767
3931
|
}
|
|
3768
|
-
index++;
|
|
3769
3932
|
}
|
|
3770
3933
|
if (!focusTarget) {
|
|
3771
|
-
focusTarget = days.find((day) =>
|
|
3772
|
-
const m = getModifiers(day);
|
|
3773
|
-
return !m[DayFlag.disabled] && !m[DayFlag.hidden] && !m[DayFlag.outside];
|
|
3774
|
-
});
|
|
3934
|
+
focusTarget = days.find((day) => isFocusableDay(getModifiers(day)));
|
|
3775
3935
|
}
|
|
3776
3936
|
return focusTarget;
|
|
3777
3937
|
}
|
|
@@ -3914,9 +4074,9 @@ function getNextFocus(moveBy, moveDir, refDay, calendarStartMonth, calendarEndMo
|
|
|
3914
4074
|
// node_modules/react-day-picker/dist/esm/useFocus.js
|
|
3915
4075
|
function useFocus(props, calendar, getModifiers, isSelected, dateLib) {
|
|
3916
4076
|
const { autoFocus } = props;
|
|
3917
|
-
const [lastFocused, setLastFocused] = (0,
|
|
4077
|
+
const [lastFocused, setLastFocused] = (0, import_react31.useState)();
|
|
3918
4078
|
const focusTarget = calculateFocusTarget(calendar.days, getModifiers, isSelected || (() => false), lastFocused);
|
|
3919
|
-
const [focusedDay, setFocused] = (0,
|
|
4079
|
+
const [focusedDay, setFocused] = (0, import_react31.useState)(autoFocus ? focusTarget : void 0);
|
|
3920
4080
|
const blur = () => {
|
|
3921
4081
|
setLastFocused(focusedDay);
|
|
3922
4082
|
setFocused(void 0);
|
|
@@ -4253,7 +4413,7 @@ function useSelection(props, dateLib) {
|
|
|
4253
4413
|
// node_modules/react-day-picker/dist/esm/DayPicker.js
|
|
4254
4414
|
function DayPicker(props) {
|
|
4255
4415
|
var _a;
|
|
4256
|
-
const { components, formatters: formatters2, labels, dateLib, locale, classNames } = (0,
|
|
4416
|
+
const { components, formatters: formatters2, labels, dateLib, locale, classNames } = (0, import_react32.useMemo)(() => {
|
|
4257
4417
|
const locale2 = __spreadValues(__spreadValues({}, enUS), props.locale);
|
|
4258
4418
|
const dateLib2 = new DateLib({
|
|
4259
4419
|
locale: locale2,
|
|
@@ -4295,36 +4455,36 @@ function DayPicker(props) {
|
|
|
4295
4455
|
const { isSelected, select, selected: selectedValue } = (_a = useSelection(props, dateLib)) != null ? _a : {};
|
|
4296
4456
|
const { blur, focused, isFocusTarget, moveFocus, setFocused } = useFocus(props, calendar, getModifiers, isSelected != null ? isSelected : () => false, dateLib);
|
|
4297
4457
|
const { labelDayButton: labelDayButton2, labelGridcell: labelGridcell2, labelGrid: labelGrid2, labelMonthDropdown: labelMonthDropdown2, labelNav: labelNav2, labelWeekday: labelWeekday2, labelWeekNumber: labelWeekNumber2, labelWeekNumberHeader: labelWeekNumberHeader2, labelYearDropdown: labelYearDropdown2 } = labels;
|
|
4298
|
-
const weekdays = (0,
|
|
4458
|
+
const weekdays = (0, import_react32.useMemo)(() => getWeekdays(dateLib, props.ISOWeek), [dateLib, props.ISOWeek]);
|
|
4299
4459
|
const isInteractive = mode !== void 0 || onDayClick !== void 0;
|
|
4300
|
-
const handlePreviousClick = (0,
|
|
4460
|
+
const handlePreviousClick = (0, import_react32.useCallback)(() => {
|
|
4301
4461
|
if (!previousMonth)
|
|
4302
4462
|
return;
|
|
4303
4463
|
goToMonth(previousMonth);
|
|
4304
4464
|
onPrevClick == null ? void 0 : onPrevClick(previousMonth);
|
|
4305
4465
|
}, [previousMonth, goToMonth, onPrevClick]);
|
|
4306
|
-
const handleNextClick = (0,
|
|
4466
|
+
const handleNextClick = (0, import_react32.useCallback)(() => {
|
|
4307
4467
|
if (!nextMonth)
|
|
4308
4468
|
return;
|
|
4309
4469
|
goToMonth(nextMonth);
|
|
4310
4470
|
onNextClick == null ? void 0 : onNextClick(nextMonth);
|
|
4311
4471
|
}, [goToMonth, nextMonth, onNextClick]);
|
|
4312
|
-
const handleDayClick = (0,
|
|
4472
|
+
const handleDayClick = (0, import_react32.useCallback)((day, m) => (e) => {
|
|
4313
4473
|
e.preventDefault();
|
|
4314
4474
|
e.stopPropagation();
|
|
4315
4475
|
setFocused(day);
|
|
4316
4476
|
select == null ? void 0 : select(day.date, m, e);
|
|
4317
4477
|
onDayClick == null ? void 0 : onDayClick(day.date, m, e);
|
|
4318
4478
|
}, [select, onDayClick, setFocused]);
|
|
4319
|
-
const handleDayFocus = (0,
|
|
4479
|
+
const handleDayFocus = (0, import_react32.useCallback)((day, m) => (e) => {
|
|
4320
4480
|
setFocused(day);
|
|
4321
4481
|
onDayFocus == null ? void 0 : onDayFocus(day.date, m, e);
|
|
4322
4482
|
}, [onDayFocus, setFocused]);
|
|
4323
|
-
const handleDayBlur = (0,
|
|
4483
|
+
const handleDayBlur = (0, import_react32.useCallback)((day, m) => (e) => {
|
|
4324
4484
|
blur();
|
|
4325
4485
|
onDayBlur == null ? void 0 : onDayBlur(day.date, m, e);
|
|
4326
4486
|
}, [blur, onDayBlur]);
|
|
4327
|
-
const handleDayKeyDown = (0,
|
|
4487
|
+
const handleDayKeyDown = (0, import_react32.useCallback)((day, modifiers) => (e) => {
|
|
4328
4488
|
const keyMap = {
|
|
4329
4489
|
ArrowLeft: ["day", props.dir === "rtl" ? "after" : "before"],
|
|
4330
4490
|
ArrowRight: ["day", props.dir === "rtl" ? "before" : "after"],
|
|
@@ -4343,27 +4503,34 @@ function DayPicker(props) {
|
|
|
4343
4503
|
}
|
|
4344
4504
|
onDayKeyDown == null ? void 0 : onDayKeyDown(day.date, modifiers, e);
|
|
4345
4505
|
}, [moveFocus, onDayKeyDown, props.dir]);
|
|
4346
|
-
const handleDayMouseEnter = (0,
|
|
4506
|
+
const handleDayMouseEnter = (0, import_react32.useCallback)((day, modifiers) => (e) => {
|
|
4347
4507
|
onDayMouseEnter == null ? void 0 : onDayMouseEnter(day.date, modifiers, e);
|
|
4348
4508
|
}, [onDayMouseEnter]);
|
|
4349
|
-
const handleDayMouseLeave = (0,
|
|
4509
|
+
const handleDayMouseLeave = (0, import_react32.useCallback)((day, modifiers) => (e) => {
|
|
4350
4510
|
onDayMouseLeave == null ? void 0 : onDayMouseLeave(day.date, modifiers, e);
|
|
4351
4511
|
}, [onDayMouseLeave]);
|
|
4352
|
-
const handleMonthChange = (0,
|
|
4512
|
+
const handleMonthChange = (0, import_react32.useCallback)((date) => (e) => {
|
|
4353
4513
|
const selectedMonth = Number(e.target.value);
|
|
4354
4514
|
const month = dateLib.setMonth(dateLib.startOfMonth(date), selectedMonth);
|
|
4355
4515
|
goToMonth(month);
|
|
4356
4516
|
}, [dateLib, goToMonth]);
|
|
4357
|
-
const handleYearChange = (0,
|
|
4517
|
+
const handleYearChange = (0, import_react32.useCallback)((date) => (e) => {
|
|
4358
4518
|
const selectedYear = Number(e.target.value);
|
|
4359
4519
|
const month = dateLib.setYear(dateLib.startOfMonth(date), selectedYear);
|
|
4360
4520
|
goToMonth(month);
|
|
4361
4521
|
}, [dateLib, goToMonth]);
|
|
4362
|
-
const { className, style } = (0,
|
|
4522
|
+
const { className, style } = (0, import_react32.useMemo)(() => ({
|
|
4363
4523
|
className: [classNames[UI.Root], props.className].filter(Boolean).join(" "),
|
|
4364
4524
|
style: __spreadValues(__spreadValues({}, styles == null ? void 0 : styles[UI.Root]), props.style)
|
|
4365
4525
|
}), [classNames, props.className, props.style, styles]);
|
|
4366
4526
|
const dataAttributes = getDataAttributes(props);
|
|
4527
|
+
const rootElRef = (0, import_react32.useRef)(null);
|
|
4528
|
+
useAnimation(rootElRef, Boolean(props.animate), {
|
|
4529
|
+
classNames,
|
|
4530
|
+
months,
|
|
4531
|
+
focused,
|
|
4532
|
+
dateLib
|
|
4533
|
+
});
|
|
4367
4534
|
const contextValue = {
|
|
4368
4535
|
dayPickerProps: props,
|
|
4369
4536
|
selected: selectedValue,
|
|
@@ -4380,49 +4547,61 @@ function DayPicker(props) {
|
|
|
4380
4547
|
labels,
|
|
4381
4548
|
formatters: formatters2
|
|
4382
4549
|
};
|
|
4383
|
-
return
|
|
4550
|
+
return import_react32.default.createElement(
|
|
4384
4551
|
dayPickerContext.Provider,
|
|
4385
4552
|
{ value: contextValue },
|
|
4386
|
-
|
|
4553
|
+
import_react32.default.createElement(
|
|
4387
4554
|
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
|
-
|
|
4555
|
+
__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),
|
|
4556
|
+
import_react32.default.createElement(
|
|
4390
4557
|
components.Months,
|
|
4391
4558
|
{ className: classNames[UI.Months], style: styles == null ? void 0 : styles[UI.Months] },
|
|
4392
|
-
!props.hideNavigation &&
|
|
4559
|
+
!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
4560
|
months.map((calendarMonth, displayIndex) => {
|
|
4394
4561
|
const dropdownMonths = getMonthOptions(calendarMonth.date, navStart, navEnd, formatters2, dateLib);
|
|
4395
4562
|
const dropdownYears = getYearOptions(navStart, navEnd, formatters2, dateLib);
|
|
4396
|
-
return
|
|
4563
|
+
return import_react32.default.createElement(
|
|
4397
4564
|
components.Month,
|
|
4398
|
-
{ className: classNames[UI.Month], style: styles == null ? void 0 : styles[UI.Month], key: displayIndex, displayIndex, calendarMonth },
|
|
4399
|
-
|
|
4565
|
+
{ "data-animated-month": props.animate ? "true" : void 0, className: classNames[UI.Month], style: styles == null ? void 0 : styles[UI.Month], key: displayIndex, displayIndex, calendarMonth },
|
|
4566
|
+
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
4567
|
components.DropdownNav,
|
|
4401
4568
|
{ 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
|
-
|
|
4569
|
+
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)),
|
|
4570
|
+
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)),
|
|
4571
|
+
import_react32.default.createElement("span", { role: "status", "aria-live": "polite", style: {
|
|
4572
|
+
border: 0,
|
|
4573
|
+
clip: "rect(0 0 0 0)",
|
|
4574
|
+
height: "1px",
|
|
4575
|
+
margin: "-1px",
|
|
4576
|
+
overflow: "hidden",
|
|
4577
|
+
padding: 0,
|
|
4578
|
+
position: "absolute",
|
|
4579
|
+
width: "1px",
|
|
4580
|
+
whiteSpace: "nowrap",
|
|
4581
|
+
wordWrap: "normal"
|
|
4582
|
+
} }, formatCaption2(calendarMonth.date, dateLib.options, dateLib))
|
|
4583
|
+
) : import_react32.default.createElement(components.CaptionLabel, { className: classNames[UI.CaptionLabel], role: "status", "aria-live": "polite" }, formatCaption2(calendarMonth.date, dateLib.options, dateLib))),
|
|
4584
|
+
import_react32.default.createElement(
|
|
4406
4585
|
components.MonthGrid,
|
|
4407
4586
|
{ 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 &&
|
|
4587
|
+
!props.hideWeekdays && import_react32.default.createElement(
|
|
4409
4588
|
components.Weekdays,
|
|
4410
|
-
{ className: classNames[UI.Weekdays], style: styles == null ? void 0 : styles[UI.Weekdays] },
|
|
4411
|
-
showWeekNumber &&
|
|
4412
|
-
weekdays.map((weekday, i) =>
|
|
4589
|
+
{ "data-animated-weekdays": props.animate ? "true" : void 0, className: classNames[UI.Weekdays], style: styles == null ? void 0 : styles[UI.Weekdays] },
|
|
4590
|
+
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()),
|
|
4591
|
+
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
4592
|
),
|
|
4414
|
-
|
|
4415
|
-
return
|
|
4593
|
+
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) => {
|
|
4594
|
+
return import_react32.default.createElement(
|
|
4416
4595
|
components.Week,
|
|
4417
4596
|
{ className: classNames[UI.Week], key: week.weekNumber, style: styles == null ? void 0 : styles[UI.Week], week },
|
|
4418
|
-
showWeekNumber &&
|
|
4597
|
+
showWeekNumber && import_react32.default.createElement(components.WeekNumber, { week, style: styles == null ? void 0 : styles[UI.WeekNumber], "aria-label": labelWeekNumber2(week.weekNumber, {
|
|
4419
4598
|
locale
|
|
4420
4599
|
}), className: classNames[UI.WeekNumber], scope: "row", role: "rowheader" }, formatWeekNumber2(week.weekNumber)),
|
|
4421
4600
|
week.days.map((day) => {
|
|
4422
4601
|
const { date } = day;
|
|
4423
4602
|
const modifiers = getModifiers(day);
|
|
4424
4603
|
modifiers[DayFlag.focused] = !modifiers.hidden && Boolean(focused == null ? void 0 : focused.isEqualTo(day));
|
|
4425
|
-
modifiers[SelectionState.selected] =
|
|
4604
|
+
modifiers[SelectionState.selected] = (isSelected == null ? void 0 : isSelected(date)) || modifiers.selected;
|
|
4426
4605
|
if (isDateRange(selectedValue)) {
|
|
4427
4606
|
const { from, to } = selectedValue;
|
|
4428
4607
|
modifiers[SelectionState.range_start] = Boolean(from && to && dateLib.isSameDay(date, from));
|
|
@@ -4432,7 +4611,7 @@ function DayPicker(props) {
|
|
|
4432
4611
|
const style2 = getStyleForModifiers(modifiers, styles, props.modifiersStyles);
|
|
4433
4612
|
const className2 = getClassNamesForModifiers(modifiers, classNames, props.modifiersClassNames);
|
|
4434
4613
|
const ariaLabel = !isInteractive && !modifiers.hidden ? labelGridcell2(date, modifiers, dateLib.options, dateLib) : void 0;
|
|
4435
|
-
return
|
|
4614
|
+
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
4615
|
})
|
|
4437
4616
|
);
|
|
4438
4617
|
}))
|
|
@@ -4440,7 +4619,7 @@ function DayPicker(props) {
|
|
|
4440
4619
|
);
|
|
4441
4620
|
})
|
|
4442
4621
|
),
|
|
4443
|
-
props.footer &&
|
|
4622
|
+
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
4623
|
)
|
|
4445
4624
|
);
|
|
4446
4625
|
}
|
|
@@ -5443,327 +5622,35 @@ var DropdownMenuShortcut = (_a) => {
|
|
|
5443
5622
|
};
|
|
5444
5623
|
DropdownMenuShortcut.displayName = "DropdownMenuShortcut";
|
|
5445
5624
|
|
|
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
|
|
5625
|
+
// src/components/Form/form.tsx
|
|
5626
|
+
var import_react_hook_form = require("react-hook-form");
|
|
5627
|
+
var import_jsx_runtime16 = require("react/jsx-runtime");
|
|
5628
|
+
var Form = ({
|
|
5629
|
+
children,
|
|
5630
|
+
methods,
|
|
5631
|
+
onSubmit = () => {
|
|
5632
|
+
},
|
|
5633
|
+
onError,
|
|
5634
|
+
formProps = {}
|
|
5635
|
+
}) => {
|
|
5636
|
+
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
5637
|
};
|
|
5755
5638
|
|
|
5756
|
-
// src/components/
|
|
5639
|
+
// src/components/Form/form-field.tsx
|
|
5640
|
+
var import_react_hook_form2 = require("react-hook-form");
|
|
5641
|
+
var import_react33 = __toESM(require("react"), 1);
|
|
5642
|
+
|
|
5643
|
+
// src/components/Label/label.tsx
|
|
5757
5644
|
var LabelPrimitive = __toESM(require("@radix-ui/react-label"), 1);
|
|
5758
5645
|
var import_class_variance_authority4 = require("class-variance-authority");
|
|
5759
|
-
var
|
|
5760
|
-
var
|
|
5646
|
+
var React41 = __toESM(require("react"), 1);
|
|
5647
|
+
var import_jsx_runtime17 = require("react/jsx-runtime");
|
|
5761
5648
|
var labelVariants = (0, import_class_variance_authority4.cva)(
|
|
5762
5649
|
"text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
|
|
5763
5650
|
);
|
|
5764
|
-
var Label3 =
|
|
5651
|
+
var Label3 = React41.forwardRef((_a, ref) => {
|
|
5765
5652
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5766
|
-
return /* @__PURE__ */ (0,
|
|
5653
|
+
return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
5767
5654
|
LabelPrimitive.Root,
|
|
5768
5655
|
__spreadValues({
|
|
5769
5656
|
ref,
|
|
@@ -5773,46 +5660,113 @@ var Label3 = React42.forwardRef((_a, ref) => {
|
|
|
5773
5660
|
});
|
|
5774
5661
|
Label3.displayName = LabelPrimitive.Root.displayName;
|
|
5775
5662
|
|
|
5776
|
-
// src/components/form.tsx
|
|
5777
|
-
var
|
|
5778
|
-
|
|
5779
|
-
|
|
5780
|
-
|
|
5663
|
+
// src/components/Form/form-field.tsx
|
|
5664
|
+
var import_react_slot3 = require("@radix-ui/react-slot");
|
|
5665
|
+
|
|
5666
|
+
// src/components/input.tsx
|
|
5667
|
+
var React42 = __toESM(require("react"), 1);
|
|
5668
|
+
var import_jsx_runtime18 = require("react/jsx-runtime");
|
|
5669
|
+
var Input = React42.forwardRef(
|
|
5670
|
+
(_a, ref) => {
|
|
5671
|
+
var _b = _a, { className, type } = _b, props = __objRest(_b, ["className", "type"]);
|
|
5672
|
+
return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
5673
|
+
"input",
|
|
5674
|
+
__spreadValues({
|
|
5675
|
+
type,
|
|
5676
|
+
className: cn(
|
|
5677
|
+
"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",
|
|
5678
|
+
className
|
|
5679
|
+
),
|
|
5680
|
+
ref
|
|
5681
|
+
}, props)
|
|
5682
|
+
);
|
|
5683
|
+
}
|
|
5684
|
+
);
|
|
5685
|
+
Input.displayName = "Input";
|
|
5686
|
+
|
|
5687
|
+
// src/components/Form/form-field.tsx
|
|
5688
|
+
var import_jsx_runtime19 = require("react/jsx-runtime");
|
|
5689
|
+
var FormFieldContext = import_react33.default.createContext(
|
|
5690
|
+
null
|
|
5781
5691
|
);
|
|
5782
5692
|
var FormField = (_a) => {
|
|
5783
|
-
var
|
|
5784
|
-
|
|
5785
|
-
|
|
5786
|
-
|
|
5787
|
-
|
|
5788
|
-
|
|
5789
|
-
|
|
5790
|
-
|
|
5791
|
-
|
|
5792
|
-
|
|
5793
|
-
|
|
5794
|
-
|
|
5795
|
-
|
|
5796
|
-
|
|
5797
|
-
|
|
5798
|
-
|
|
5799
|
-
|
|
5800
|
-
|
|
5801
|
-
|
|
5693
|
+
var _b = _a, {
|
|
5694
|
+
name,
|
|
5695
|
+
control,
|
|
5696
|
+
label,
|
|
5697
|
+
placeholder,
|
|
5698
|
+
required,
|
|
5699
|
+
className = "px-4 py-6 shadow-inner drop-shadow-xl",
|
|
5700
|
+
classNameLabel,
|
|
5701
|
+
classNameMessage,
|
|
5702
|
+
classNameRequired,
|
|
5703
|
+
rules,
|
|
5704
|
+
shouldUnregister,
|
|
5705
|
+
defaultValue,
|
|
5706
|
+
onChange
|
|
5707
|
+
} = _b, inputProps = __objRest(_b, [
|
|
5708
|
+
"name",
|
|
5709
|
+
"control",
|
|
5710
|
+
"label",
|
|
5711
|
+
"placeholder",
|
|
5712
|
+
"required",
|
|
5713
|
+
"className",
|
|
5714
|
+
"classNameLabel",
|
|
5715
|
+
"classNameMessage",
|
|
5716
|
+
"classNameRequired",
|
|
5717
|
+
"rules",
|
|
5718
|
+
"shouldUnregister",
|
|
5719
|
+
"defaultValue",
|
|
5720
|
+
"onChange"
|
|
5721
|
+
]);
|
|
5722
|
+
var _a2;
|
|
5723
|
+
const {
|
|
5724
|
+
formState: { errors }
|
|
5725
|
+
} = (0, import_react_hook_form2.useFormContext)();
|
|
5726
|
+
const fieldError = (_a2 = errors[name]) == null ? void 0 : _a2.message;
|
|
5727
|
+
return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(FormFieldContext.Provider, { value: { name }, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
5728
|
+
import_react_hook_form2.Controller,
|
|
5729
|
+
{
|
|
5730
|
+
control,
|
|
5731
|
+
name,
|
|
5732
|
+
rules,
|
|
5733
|
+
shouldUnregister,
|
|
5734
|
+
defaultValue,
|
|
5735
|
+
render: ({ field }) => /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(FormItem, { children: [
|
|
5736
|
+
label && /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(FormLabel, { className: classNameLabel, children: [
|
|
5737
|
+
label,
|
|
5738
|
+
required && /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("span", { className: cn("text-red-500", classNameRequired), children: "*" })
|
|
5739
|
+
] }),
|
|
5740
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)(FormControl, { children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
5741
|
+
Input,
|
|
5742
|
+
__spreadProps(__spreadValues(__spreadValues({}, field), inputProps), {
|
|
5743
|
+
onChange: (e) => {
|
|
5744
|
+
field.onChange(e);
|
|
5745
|
+
onChange == null ? void 0 : onChange(e.target.value);
|
|
5746
|
+
},
|
|
5747
|
+
placeholder,
|
|
5748
|
+
required,
|
|
5749
|
+
className
|
|
5750
|
+
})
|
|
5751
|
+
) }),
|
|
5752
|
+
fieldError && /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(FormMessage, { className: classNameMessage, children: fieldError })
|
|
5753
|
+
] })
|
|
5754
|
+
}
|
|
5755
|
+
) });
|
|
5802
5756
|
};
|
|
5803
|
-
var FormItemContext =
|
|
5757
|
+
var FormItemContext = import_react33.default.createContext(
|
|
5804
5758
|
{}
|
|
5805
5759
|
);
|
|
5806
|
-
var FormItem =
|
|
5760
|
+
var FormItem = import_react33.default.forwardRef((_a, ref) => {
|
|
5807
5761
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5808
|
-
const id =
|
|
5809
|
-
return /* @__PURE__ */ (0,
|
|
5762
|
+
const id = import_react33.default.useId();
|
|
5763
|
+
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
5764
|
});
|
|
5811
5765
|
FormItem.displayName = "FormItem";
|
|
5812
|
-
var FormLabel =
|
|
5766
|
+
var FormLabel = import_react33.default.forwardRef((_a, ref) => {
|
|
5813
5767
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5814
5768
|
const { error, formItemId } = useFormField();
|
|
5815
|
-
return /* @__PURE__ */ (0,
|
|
5769
|
+
return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
5816
5770
|
Label3,
|
|
5817
5771
|
__spreadValues({
|
|
5818
5772
|
ref,
|
|
@@ -5822,10 +5776,37 @@ var FormLabel = React43.forwardRef((_a, ref) => {
|
|
|
5822
5776
|
);
|
|
5823
5777
|
});
|
|
5824
5778
|
FormLabel.displayName = "FormLabel";
|
|
5825
|
-
var
|
|
5779
|
+
var useFormField = () => {
|
|
5780
|
+
const fieldContext = import_react33.default.useContext(FormFieldContext);
|
|
5781
|
+
const itemContext = import_react33.default.useContext(FormItemContext);
|
|
5782
|
+
const { getFieldState, formState } = (0, import_react_hook_form2.useFormContext)();
|
|
5783
|
+
if (!fieldContext) {
|
|
5784
|
+
const { id: id2 } = itemContext;
|
|
5785
|
+
return {
|
|
5786
|
+
id: itemContext.id,
|
|
5787
|
+
formItemId: `${id2}-form-item`,
|
|
5788
|
+
formDescriptionId: `${id2}-form-item-description`,
|
|
5789
|
+
formMessageId: `${id2}-form-item-message`,
|
|
5790
|
+
error: null
|
|
5791
|
+
};
|
|
5792
|
+
}
|
|
5793
|
+
const fieldState = getFieldState(fieldContext.name, formState);
|
|
5794
|
+
if (!fieldContext) {
|
|
5795
|
+
throw new Error("useFormField should be used within <FormField>");
|
|
5796
|
+
}
|
|
5797
|
+
const { id } = itemContext;
|
|
5798
|
+
return __spreadValues({
|
|
5799
|
+
id,
|
|
5800
|
+
name: fieldContext.name,
|
|
5801
|
+
formItemId: `${id}-form-item`,
|
|
5802
|
+
formDescriptionId: `${id}-form-item-description`,
|
|
5803
|
+
formMessageId: `${id}-form-item-message`
|
|
5804
|
+
}, fieldState);
|
|
5805
|
+
};
|
|
5806
|
+
var FormControl = import_react33.default.forwardRef((_a, ref) => {
|
|
5826
5807
|
var props = __objRest(_a, []);
|
|
5827
5808
|
const { error, formItemId, formDescriptionId, formMessageId } = useFormField();
|
|
5828
|
-
return /* @__PURE__ */ (0,
|
|
5809
|
+
return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
5829
5810
|
import_react_slot3.Slot,
|
|
5830
5811
|
__spreadValues({
|
|
5831
5812
|
ref,
|
|
@@ -5836,10 +5817,10 @@ var FormControl = React43.forwardRef((_a, ref) => {
|
|
|
5836
5817
|
);
|
|
5837
5818
|
});
|
|
5838
5819
|
FormControl.displayName = "FormControl";
|
|
5839
|
-
var FormDescription =
|
|
5820
|
+
var FormDescription = import_react33.default.forwardRef((_a, ref) => {
|
|
5840
5821
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5841
5822
|
const { formDescriptionId } = useFormField();
|
|
5842
|
-
return /* @__PURE__ */ (0,
|
|
5823
|
+
return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
5843
5824
|
"p",
|
|
5844
5825
|
__spreadValues({
|
|
5845
5826
|
ref,
|
|
@@ -5849,14 +5830,14 @@ var FormDescription = React43.forwardRef((_a, ref) => {
|
|
|
5849
5830
|
);
|
|
5850
5831
|
});
|
|
5851
5832
|
FormDescription.displayName = "FormDescription";
|
|
5852
|
-
var FormMessage =
|
|
5833
|
+
var FormMessage = import_react33.default.forwardRef((_a, ref) => {
|
|
5853
5834
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
5854
5835
|
const { error, formMessageId } = useFormField();
|
|
5855
5836
|
const body = error ? String(error == null ? void 0 : error.message) : children;
|
|
5856
5837
|
if (!body) {
|
|
5857
5838
|
return null;
|
|
5858
5839
|
}
|
|
5859
|
-
return /* @__PURE__ */ (0,
|
|
5840
|
+
return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
5860
5841
|
"p",
|
|
5861
5842
|
__spreadProps(__spreadValues({
|
|
5862
5843
|
ref,
|
|
@@ -5872,12 +5853,12 @@ FormMessage.displayName = "FormMessage";
|
|
|
5872
5853
|
// src/components/hover-card.tsx
|
|
5873
5854
|
var HoverCardPrimitive = __toESM(require("@radix-ui/react-hover-card"), 1);
|
|
5874
5855
|
var React44 = __toESM(require("react"), 1);
|
|
5875
|
-
var
|
|
5856
|
+
var import_jsx_runtime20 = require("react/jsx-runtime");
|
|
5876
5857
|
var HoverCard = HoverCardPrimitive.Root;
|
|
5877
5858
|
var HoverCardTrigger = HoverCardPrimitive.Trigger;
|
|
5878
5859
|
var HoverCardContent = React44.forwardRef((_a, ref) => {
|
|
5879
5860
|
var _b = _a, { className, align = "center", sideOffset = 4 } = _b, props = __objRest(_b, ["className", "align", "sideOffset"]);
|
|
5880
|
-
return /* @__PURE__ */ (0,
|
|
5861
|
+
return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
5881
5862
|
HoverCardPrimitive.Content,
|
|
5882
5863
|
__spreadValues({
|
|
5883
5864
|
ref,
|
|
@@ -5926,35 +5907,14 @@ var IconsApp = __spreadValues({
|
|
|
5926
5907
|
}, icon);
|
|
5927
5908
|
var Icons = IconsApp;
|
|
5928
5909
|
|
|
5929
|
-
// src/components/input.tsx
|
|
5910
|
+
// src/components/input-otp.tsx
|
|
5911
|
+
var import_react_icons9 = require("@radix-ui/react-icons");
|
|
5912
|
+
var import_input_otp = require("input-otp");
|
|
5930
5913
|
var React45 = __toESM(require("react"), 1);
|
|
5931
|
-
var
|
|
5932
|
-
var
|
|
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
|
-
// src/components/input-otp.tsx
|
|
5951
|
-
var import_react_icons9 = require("@radix-ui/react-icons");
|
|
5952
|
-
var import_input_otp = require("input-otp");
|
|
5953
|
-
var React46 = __toESM(require("react"), 1);
|
|
5954
|
-
var import_jsx_runtime20 = require("react/jsx-runtime");
|
|
5955
|
-
var InputOTP = React46.forwardRef((_a, ref) => {
|
|
5914
|
+
var import_jsx_runtime21 = require("react/jsx-runtime");
|
|
5915
|
+
var InputOTP = React45.forwardRef((_a, ref) => {
|
|
5956
5916
|
var _b = _a, { className, containerClassName } = _b, props = __objRest(_b, ["className", "containerClassName"]);
|
|
5957
|
-
return /* @__PURE__ */ (0,
|
|
5917
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
5958
5918
|
import_input_otp.OTPInput,
|
|
5959
5919
|
__spreadValues({
|
|
5960
5920
|
ref,
|
|
@@ -5967,16 +5927,16 @@ var InputOTP = React46.forwardRef((_a, ref) => {
|
|
|
5967
5927
|
);
|
|
5968
5928
|
});
|
|
5969
5929
|
InputOTP.displayName = "InputOTP";
|
|
5970
|
-
var InputOTPGroup =
|
|
5930
|
+
var InputOTPGroup = React45.forwardRef((_a, ref) => {
|
|
5971
5931
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5972
|
-
return /* @__PURE__ */ (0,
|
|
5932
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", __spreadValues({ ref, className: cn("flex items-center", className) }, props));
|
|
5973
5933
|
});
|
|
5974
5934
|
InputOTPGroup.displayName = "InputOTPGroup";
|
|
5975
|
-
var InputOTPSlot =
|
|
5935
|
+
var InputOTPSlot = React45.forwardRef((_a, ref) => {
|
|
5976
5936
|
var _b = _a, { index, className } = _b, props = __objRest(_b, ["index", "className"]);
|
|
5977
|
-
const inputOTPContext =
|
|
5937
|
+
const inputOTPContext = React45.useContext(import_input_otp.OTPInputContext);
|
|
5978
5938
|
const { char, hasFakeCaret, isActive } = inputOTPContext.slots[index];
|
|
5979
|
-
return /* @__PURE__ */ (0,
|
|
5939
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
|
|
5980
5940
|
"div",
|
|
5981
5941
|
__spreadProps(__spreadValues({
|
|
5982
5942
|
ref,
|
|
@@ -5988,31 +5948,31 @@ var InputOTPSlot = React46.forwardRef((_a, ref) => {
|
|
|
5988
5948
|
}, props), {
|
|
5989
5949
|
children: [
|
|
5990
5950
|
char,
|
|
5991
|
-
hasFakeCaret && /* @__PURE__ */ (0,
|
|
5951
|
+
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
5952
|
]
|
|
5993
5953
|
})
|
|
5994
5954
|
);
|
|
5995
5955
|
});
|
|
5996
5956
|
InputOTPSlot.displayName = "InputOTPSlot";
|
|
5997
|
-
var InputOTPSeparator =
|
|
5957
|
+
var InputOTPSeparator = React45.forwardRef((_a, ref) => {
|
|
5998
5958
|
var props = __objRest(_a, []);
|
|
5999
|
-
return /* @__PURE__ */ (0,
|
|
5959
|
+
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
5960
|
});
|
|
6001
5961
|
InputOTPSeparator.displayName = "InputOTPSeparator";
|
|
6002
5962
|
|
|
6003
5963
|
// src/components/menubar.tsx
|
|
6004
5964
|
var import_react_icons10 = require("@radix-ui/react-icons");
|
|
6005
5965
|
var MenubarPrimitive = __toESM(require("@radix-ui/react-menubar"), 1);
|
|
6006
|
-
var
|
|
6007
|
-
var
|
|
5966
|
+
var React46 = __toESM(require("react"), 1);
|
|
5967
|
+
var import_jsx_runtime22 = require("react/jsx-runtime");
|
|
6008
5968
|
var MenubarMenu = MenubarPrimitive.Menu;
|
|
6009
5969
|
var MenubarGroup = MenubarPrimitive.Group;
|
|
6010
5970
|
var MenubarPortal = MenubarPrimitive.Portal;
|
|
6011
5971
|
var MenubarSub = MenubarPrimitive.Sub;
|
|
6012
5972
|
var MenubarRadioGroup = MenubarPrimitive.RadioGroup;
|
|
6013
|
-
var Menubar =
|
|
5973
|
+
var Menubar = React46.forwardRef((_a, ref) => {
|
|
6014
5974
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6015
|
-
return /* @__PURE__ */ (0,
|
|
5975
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
6016
5976
|
MenubarPrimitive.Root,
|
|
6017
5977
|
__spreadValues({
|
|
6018
5978
|
ref,
|
|
@@ -6024,9 +5984,9 @@ var Menubar = React47.forwardRef((_a, ref) => {
|
|
|
6024
5984
|
);
|
|
6025
5985
|
});
|
|
6026
5986
|
Menubar.displayName = MenubarPrimitive.Root.displayName;
|
|
6027
|
-
var MenubarTrigger =
|
|
5987
|
+
var MenubarTrigger = React46.forwardRef((_a, ref) => {
|
|
6028
5988
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6029
|
-
return /* @__PURE__ */ (0,
|
|
5989
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
6030
5990
|
MenubarPrimitive.Trigger,
|
|
6031
5991
|
__spreadValues({
|
|
6032
5992
|
ref,
|
|
@@ -6038,9 +5998,9 @@ var MenubarTrigger = React47.forwardRef((_a, ref) => {
|
|
|
6038
5998
|
);
|
|
6039
5999
|
});
|
|
6040
6000
|
MenubarTrigger.displayName = MenubarPrimitive.Trigger.displayName;
|
|
6041
|
-
var MenubarSubTrigger =
|
|
6001
|
+
var MenubarSubTrigger = React46.forwardRef((_a, ref) => {
|
|
6042
6002
|
var _b = _a, { className, inset, children } = _b, props = __objRest(_b, ["className", "inset", "children"]);
|
|
6043
|
-
return /* @__PURE__ */ (0,
|
|
6003
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
|
|
6044
6004
|
MenubarPrimitive.SubTrigger,
|
|
6045
6005
|
__spreadProps(__spreadValues({
|
|
6046
6006
|
ref,
|
|
@@ -6052,15 +6012,15 @@ var MenubarSubTrigger = React47.forwardRef((_a, ref) => {
|
|
|
6052
6012
|
}, props), {
|
|
6053
6013
|
children: [
|
|
6054
6014
|
children,
|
|
6055
|
-
/* @__PURE__ */ (0,
|
|
6015
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)(import_react_icons10.ChevronRightIcon, { className: "ml-auto h-4 w-4" })
|
|
6056
6016
|
]
|
|
6057
6017
|
})
|
|
6058
6018
|
);
|
|
6059
6019
|
});
|
|
6060
6020
|
MenubarSubTrigger.displayName = MenubarPrimitive.SubTrigger.displayName;
|
|
6061
|
-
var MenubarSubContent =
|
|
6021
|
+
var MenubarSubContent = React46.forwardRef((_a, ref) => {
|
|
6062
6022
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6063
|
-
return /* @__PURE__ */ (0,
|
|
6023
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
6064
6024
|
MenubarPrimitive.SubContent,
|
|
6065
6025
|
__spreadValues({
|
|
6066
6026
|
ref,
|
|
@@ -6072,10 +6032,10 @@ var MenubarSubContent = React47.forwardRef((_a, ref) => {
|
|
|
6072
6032
|
);
|
|
6073
6033
|
});
|
|
6074
6034
|
MenubarSubContent.displayName = MenubarPrimitive.SubContent.displayName;
|
|
6075
|
-
var MenubarContent =
|
|
6035
|
+
var MenubarContent = React46.forwardRef(
|
|
6076
6036
|
(_a, ref) => {
|
|
6077
6037
|
var _b = _a, { className, align = "start", alignOffset = -4, sideOffset = 8 } = _b, props = __objRest(_b, ["className", "align", "alignOffset", "sideOffset"]);
|
|
6078
|
-
return /* @__PURE__ */ (0,
|
|
6038
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(MenubarPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
6079
6039
|
MenubarPrimitive.Content,
|
|
6080
6040
|
__spreadValues({
|
|
6081
6041
|
ref,
|
|
@@ -6091,9 +6051,9 @@ var MenubarContent = React47.forwardRef(
|
|
|
6091
6051
|
}
|
|
6092
6052
|
);
|
|
6093
6053
|
MenubarContent.displayName = MenubarPrimitive.Content.displayName;
|
|
6094
|
-
var MenubarItem =
|
|
6054
|
+
var MenubarItem = React46.forwardRef((_a, ref) => {
|
|
6095
6055
|
var _b = _a, { className, inset } = _b, props = __objRest(_b, ["className", "inset"]);
|
|
6096
|
-
return /* @__PURE__ */ (0,
|
|
6056
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
6097
6057
|
MenubarPrimitive.Item,
|
|
6098
6058
|
__spreadValues({
|
|
6099
6059
|
ref,
|
|
@@ -6106,9 +6066,9 @@ var MenubarItem = React47.forwardRef((_a, ref) => {
|
|
|
6106
6066
|
);
|
|
6107
6067
|
});
|
|
6108
6068
|
MenubarItem.displayName = MenubarPrimitive.Item.displayName;
|
|
6109
|
-
var MenubarCheckboxItem =
|
|
6069
|
+
var MenubarCheckboxItem = React46.forwardRef((_a, ref) => {
|
|
6110
6070
|
var _b = _a, { className, children, checked } = _b, props = __objRest(_b, ["className", "children", "checked"]);
|
|
6111
|
-
return /* @__PURE__ */ (0,
|
|
6071
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
|
|
6112
6072
|
MenubarPrimitive.CheckboxItem,
|
|
6113
6073
|
__spreadProps(__spreadValues({
|
|
6114
6074
|
ref,
|
|
@@ -6119,16 +6079,16 @@ var MenubarCheckboxItem = React47.forwardRef((_a, ref) => {
|
|
|
6119
6079
|
checked
|
|
6120
6080
|
}, props), {
|
|
6121
6081
|
children: [
|
|
6122
|
-
/* @__PURE__ */ (0,
|
|
6082
|
+
/* @__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
6083
|
children
|
|
6124
6084
|
]
|
|
6125
6085
|
})
|
|
6126
6086
|
);
|
|
6127
6087
|
});
|
|
6128
6088
|
MenubarCheckboxItem.displayName = MenubarPrimitive.CheckboxItem.displayName;
|
|
6129
|
-
var MenubarRadioItem =
|
|
6089
|
+
var MenubarRadioItem = React46.forwardRef((_a, ref) => {
|
|
6130
6090
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
6131
|
-
return /* @__PURE__ */ (0,
|
|
6091
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
|
|
6132
6092
|
MenubarPrimitive.RadioItem,
|
|
6133
6093
|
__spreadProps(__spreadValues({
|
|
6134
6094
|
ref,
|
|
@@ -6138,16 +6098,16 @@ var MenubarRadioItem = React47.forwardRef((_a, ref) => {
|
|
|
6138
6098
|
)
|
|
6139
6099
|
}, props), {
|
|
6140
6100
|
children: [
|
|
6141
|
-
/* @__PURE__ */ (0,
|
|
6101
|
+
/* @__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
6102
|
children
|
|
6143
6103
|
]
|
|
6144
6104
|
})
|
|
6145
6105
|
);
|
|
6146
6106
|
});
|
|
6147
6107
|
MenubarRadioItem.displayName = MenubarPrimitive.RadioItem.displayName;
|
|
6148
|
-
var MenubarLabel =
|
|
6108
|
+
var MenubarLabel = React46.forwardRef((_a, ref) => {
|
|
6149
6109
|
var _b = _a, { className, inset } = _b, props = __objRest(_b, ["className", "inset"]);
|
|
6150
|
-
return /* @__PURE__ */ (0,
|
|
6110
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
6151
6111
|
MenubarPrimitive.Label,
|
|
6152
6112
|
__spreadValues({
|
|
6153
6113
|
ref,
|
|
@@ -6160,9 +6120,9 @@ var MenubarLabel = React47.forwardRef((_a, ref) => {
|
|
|
6160
6120
|
);
|
|
6161
6121
|
});
|
|
6162
6122
|
MenubarLabel.displayName = MenubarPrimitive.Label.displayName;
|
|
6163
|
-
var MenubarSeparator =
|
|
6123
|
+
var MenubarSeparator = React46.forwardRef((_a, ref) => {
|
|
6164
6124
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6165
|
-
return /* @__PURE__ */ (0,
|
|
6125
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
6166
6126
|
MenubarPrimitive.Separator,
|
|
6167
6127
|
__spreadValues({
|
|
6168
6128
|
ref,
|
|
@@ -6177,7 +6137,7 @@ var MenubarShortcut = (_a) => {
|
|
|
6177
6137
|
} = _b, props = __objRest(_b, [
|
|
6178
6138
|
"className"
|
|
6179
6139
|
]);
|
|
6180
|
-
return /* @__PURE__ */ (0,
|
|
6140
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
6181
6141
|
"span",
|
|
6182
6142
|
__spreadValues({
|
|
6183
6143
|
className: cn(
|
|
@@ -6190,7 +6150,7 @@ var MenubarShortcut = (_a) => {
|
|
|
6190
6150
|
MenubarShortcut.displayname = "MenubarShortcut";
|
|
6191
6151
|
|
|
6192
6152
|
// src/components/modal.tsx
|
|
6193
|
-
var
|
|
6153
|
+
var import_jsx_runtime23 = require("react/jsx-runtime");
|
|
6194
6154
|
var Modal = ({
|
|
6195
6155
|
title,
|
|
6196
6156
|
description,
|
|
@@ -6204,12 +6164,12 @@ var Modal = ({
|
|
|
6204
6164
|
onClose();
|
|
6205
6165
|
}
|
|
6206
6166
|
};
|
|
6207
|
-
return /* @__PURE__ */ (0,
|
|
6208
|
-
/* @__PURE__ */ (0,
|
|
6209
|
-
/* @__PURE__ */ (0,
|
|
6210
|
-
/* @__PURE__ */ (0,
|
|
6167
|
+
return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Dialog, { open: isOpen, onOpenChange: onChange, children: /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(DialogContent, { className, children: [
|
|
6168
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(DialogHeader, { children: [
|
|
6169
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)(DialogTitle, { children: title }),
|
|
6170
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)(DialogDescription, { children: description })
|
|
6211
6171
|
] }),
|
|
6212
|
-
/* @__PURE__ */ (0,
|
|
6172
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("div", { children })
|
|
6213
6173
|
] }) });
|
|
6214
6174
|
};
|
|
6215
6175
|
|
|
@@ -6217,11 +6177,11 @@ var Modal = ({
|
|
|
6217
6177
|
var import_react_icons11 = require("@radix-ui/react-icons");
|
|
6218
6178
|
var NavigationMenuPrimitive = __toESM(require("@radix-ui/react-navigation-menu"), 1);
|
|
6219
6179
|
var import_class_variance_authority5 = require("class-variance-authority");
|
|
6220
|
-
var
|
|
6221
|
-
var
|
|
6222
|
-
var NavigationMenu =
|
|
6180
|
+
var React47 = __toESM(require("react"), 1);
|
|
6181
|
+
var import_jsx_runtime24 = require("react/jsx-runtime");
|
|
6182
|
+
var NavigationMenu = React47.forwardRef((_a, ref) => {
|
|
6223
6183
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
6224
|
-
return /* @__PURE__ */ (0,
|
|
6184
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
|
|
6225
6185
|
NavigationMenuPrimitive.Root,
|
|
6226
6186
|
__spreadProps(__spreadValues({
|
|
6227
6187
|
ref,
|
|
@@ -6232,15 +6192,15 @@ var NavigationMenu = React48.forwardRef((_a, ref) => {
|
|
|
6232
6192
|
}, props), {
|
|
6233
6193
|
children: [
|
|
6234
6194
|
children,
|
|
6235
|
-
/* @__PURE__ */ (0,
|
|
6195
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)(NavigationMenuViewport, {})
|
|
6236
6196
|
]
|
|
6237
6197
|
})
|
|
6238
6198
|
);
|
|
6239
6199
|
});
|
|
6240
6200
|
NavigationMenu.displayName = NavigationMenuPrimitive.Root.displayName;
|
|
6241
|
-
var NavigationMenuList =
|
|
6201
|
+
var NavigationMenuList = React47.forwardRef((_a, ref) => {
|
|
6242
6202
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6243
|
-
return /* @__PURE__ */ (0,
|
|
6203
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
6244
6204
|
NavigationMenuPrimitive.List,
|
|
6245
6205
|
__spreadValues({
|
|
6246
6206
|
ref,
|
|
@@ -6256,9 +6216,9 @@ var NavigationMenuItem = NavigationMenuPrimitive.Item;
|
|
|
6256
6216
|
var navigationMenuTriggerStyle = (0, import_class_variance_authority5.cva)(
|
|
6257
6217
|
"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
6218
|
);
|
|
6259
|
-
var NavigationMenuTrigger =
|
|
6219
|
+
var NavigationMenuTrigger = React47.forwardRef((_a, ref) => {
|
|
6260
6220
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
6261
|
-
return /* @__PURE__ */ (0,
|
|
6221
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
|
|
6262
6222
|
NavigationMenuPrimitive.Trigger,
|
|
6263
6223
|
__spreadProps(__spreadValues({
|
|
6264
6224
|
ref,
|
|
@@ -6267,7 +6227,7 @@ var NavigationMenuTrigger = React48.forwardRef((_a, ref) => {
|
|
|
6267
6227
|
children: [
|
|
6268
6228
|
children,
|
|
6269
6229
|
" ",
|
|
6270
|
-
/* @__PURE__ */ (0,
|
|
6230
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
6271
6231
|
import_react_icons11.ChevronDownIcon,
|
|
6272
6232
|
{
|
|
6273
6233
|
className: "relative top-[1px] ml-1 h-3 w-3 transition duration-300 group-data-[state=open]:rotate-180",
|
|
@@ -6279,9 +6239,9 @@ var NavigationMenuTrigger = React48.forwardRef((_a, ref) => {
|
|
|
6279
6239
|
);
|
|
6280
6240
|
});
|
|
6281
6241
|
NavigationMenuTrigger.displayName = NavigationMenuPrimitive.Trigger.displayName;
|
|
6282
|
-
var NavigationMenuContent =
|
|
6242
|
+
var NavigationMenuContent = React47.forwardRef((_a, ref) => {
|
|
6283
6243
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6284
|
-
return /* @__PURE__ */ (0,
|
|
6244
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
6285
6245
|
NavigationMenuPrimitive.Content,
|
|
6286
6246
|
__spreadValues({
|
|
6287
6247
|
ref,
|
|
@@ -6294,9 +6254,9 @@ var NavigationMenuContent = React48.forwardRef((_a, ref) => {
|
|
|
6294
6254
|
});
|
|
6295
6255
|
NavigationMenuContent.displayName = NavigationMenuPrimitive.Content.displayName;
|
|
6296
6256
|
var NavigationMenuLink = NavigationMenuPrimitive.Link;
|
|
6297
|
-
var NavigationMenuViewport =
|
|
6257
|
+
var NavigationMenuViewport = React47.forwardRef((_a, ref) => {
|
|
6298
6258
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6299
|
-
return /* @__PURE__ */ (0,
|
|
6259
|
+
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
6260
|
NavigationMenuPrimitive.Viewport,
|
|
6301
6261
|
__spreadValues({
|
|
6302
6262
|
className: cn(
|
|
@@ -6308,9 +6268,9 @@ var NavigationMenuViewport = React48.forwardRef((_a, ref) => {
|
|
|
6308
6268
|
) });
|
|
6309
6269
|
});
|
|
6310
6270
|
NavigationMenuViewport.displayName = NavigationMenuPrimitive.Viewport.displayName;
|
|
6311
|
-
var NavigationMenuIndicator =
|
|
6271
|
+
var NavigationMenuIndicator = React47.forwardRef((_a, ref) => {
|
|
6312
6272
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6313
|
-
return /* @__PURE__ */ (0,
|
|
6273
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
6314
6274
|
NavigationMenuPrimitive.Indicator,
|
|
6315
6275
|
__spreadProps(__spreadValues({
|
|
6316
6276
|
ref,
|
|
@@ -6319,7 +6279,7 @@ var NavigationMenuIndicator = React48.forwardRef((_a, ref) => {
|
|
|
6319
6279
|
className
|
|
6320
6280
|
)
|
|
6321
6281
|
}, props), {
|
|
6322
|
-
children: /* @__PURE__ */ (0,
|
|
6282
|
+
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
6283
|
})
|
|
6324
6284
|
);
|
|
6325
6285
|
});
|
|
@@ -6327,12 +6287,12 @@ NavigationMenuIndicator.displayName = NavigationMenuPrimitive.Indicator.displayN
|
|
|
6327
6287
|
|
|
6328
6288
|
// src/components/pagination.tsx
|
|
6329
6289
|
var import_react_icons12 = require("@radix-ui/react-icons");
|
|
6330
|
-
var
|
|
6290
|
+
var React48 = __toESM(require("react"), 1);
|
|
6331
6291
|
var import_lucide_react2 = require("lucide-react");
|
|
6332
|
-
var
|
|
6292
|
+
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
6333
6293
|
var Pagination = (_a) => {
|
|
6334
6294
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6335
|
-
return /* @__PURE__ */ (0,
|
|
6295
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
6336
6296
|
"nav",
|
|
6337
6297
|
__spreadValues({
|
|
6338
6298
|
role: "navigation",
|
|
@@ -6342,9 +6302,9 @@ var Pagination = (_a) => {
|
|
|
6342
6302
|
);
|
|
6343
6303
|
};
|
|
6344
6304
|
Pagination.displayName = "Pagination";
|
|
6345
|
-
var PaginationContent =
|
|
6305
|
+
var PaginationContent = React48.forwardRef((_a, ref) => {
|
|
6346
6306
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6347
|
-
return /* @__PURE__ */ (0,
|
|
6307
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
6348
6308
|
"ul",
|
|
6349
6309
|
__spreadValues({
|
|
6350
6310
|
ref,
|
|
@@ -6353,9 +6313,9 @@ var PaginationContent = React49.forwardRef((_a, ref) => {
|
|
|
6353
6313
|
);
|
|
6354
6314
|
});
|
|
6355
6315
|
PaginationContent.displayName = "PaginationContent";
|
|
6356
|
-
var PaginationItem =
|
|
6316
|
+
var PaginationItem = React48.forwardRef((_a, ref) => {
|
|
6357
6317
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6358
|
-
return /* @__PURE__ */ (0,
|
|
6318
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("li", __spreadValues({ ref, className: cn("", className) }, props));
|
|
6359
6319
|
});
|
|
6360
6320
|
PaginationItem.displayName = "PaginationItem";
|
|
6361
6321
|
var PaginationLink = (_a) => {
|
|
@@ -6368,7 +6328,7 @@ var PaginationLink = (_a) => {
|
|
|
6368
6328
|
"isActive",
|
|
6369
6329
|
"size"
|
|
6370
6330
|
]);
|
|
6371
|
-
return /* @__PURE__ */ (0,
|
|
6331
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
6372
6332
|
"a",
|
|
6373
6333
|
__spreadValues({
|
|
6374
6334
|
"aria-current": isActive ? "page" : void 0,
|
|
@@ -6389,7 +6349,7 @@ var PaginationPreviousLast = (_a) => {
|
|
|
6389
6349
|
} = _b, props = __objRest(_b, [
|
|
6390
6350
|
"className"
|
|
6391
6351
|
]);
|
|
6392
|
-
return /* @__PURE__ */ (0,
|
|
6352
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
|
6393
6353
|
PaginationLink,
|
|
6394
6354
|
__spreadProps(__spreadValues({
|
|
6395
6355
|
"aria-label": "Go to previous page",
|
|
@@ -6397,8 +6357,8 @@ var PaginationPreviousLast = (_a) => {
|
|
|
6397
6357
|
className: cn("gap-1 pl-2.5", className)
|
|
6398
6358
|
}, props), {
|
|
6399
6359
|
children: [
|
|
6400
|
-
/* @__PURE__ */ (0,
|
|
6401
|
-
/* @__PURE__ */ (0,
|
|
6360
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)(import_lucide_react2.ChevronLeft, { className: "h-4 w-4" }),
|
|
6361
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { className: "sr-only", children: "Previous Last" })
|
|
6402
6362
|
]
|
|
6403
6363
|
})
|
|
6404
6364
|
);
|
|
@@ -6410,7 +6370,7 @@ var PaginationPrevious = (_a) => {
|
|
|
6410
6370
|
} = _b, props = __objRest(_b, [
|
|
6411
6371
|
"className"
|
|
6412
6372
|
]);
|
|
6413
|
-
return /* @__PURE__ */ (0,
|
|
6373
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
|
6414
6374
|
PaginationLink,
|
|
6415
6375
|
__spreadProps(__spreadValues({
|
|
6416
6376
|
"aria-label": "Go to previous page",
|
|
@@ -6418,8 +6378,8 @@ var PaginationPrevious = (_a) => {
|
|
|
6418
6378
|
className: cn("gap-1 pl-2.5", className)
|
|
6419
6379
|
}, props), {
|
|
6420
6380
|
children: [
|
|
6421
|
-
/* @__PURE__ */ (0,
|
|
6422
|
-
/* @__PURE__ */ (0,
|
|
6381
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)(import_react_icons12.ChevronLeftIcon, { className: "h-4 w-4" }),
|
|
6382
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { children: "Previous" })
|
|
6423
6383
|
]
|
|
6424
6384
|
})
|
|
6425
6385
|
);
|
|
@@ -6431,7 +6391,7 @@ var PaginationNext = (_a) => {
|
|
|
6431
6391
|
} = _b, props = __objRest(_b, [
|
|
6432
6392
|
"className"
|
|
6433
6393
|
]);
|
|
6434
|
-
return /* @__PURE__ */ (0,
|
|
6394
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
|
6435
6395
|
PaginationLink,
|
|
6436
6396
|
__spreadProps(__spreadValues({
|
|
6437
6397
|
"aria-label": "Go to next page",
|
|
@@ -6439,8 +6399,8 @@ var PaginationNext = (_a) => {
|
|
|
6439
6399
|
className: cn("gap-1 pr-2.5", className)
|
|
6440
6400
|
}, props), {
|
|
6441
6401
|
children: [
|
|
6442
|
-
/* @__PURE__ */ (0,
|
|
6443
|
-
/* @__PURE__ */ (0,
|
|
6402
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { children: "Next" }),
|
|
6403
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)(import_react_icons12.ChevronRightIcon, { className: "h-4 w-4" })
|
|
6444
6404
|
]
|
|
6445
6405
|
})
|
|
6446
6406
|
);
|
|
@@ -6452,7 +6412,7 @@ var PaginationNextLast = (_a) => {
|
|
|
6452
6412
|
} = _b, props = __objRest(_b, [
|
|
6453
6413
|
"className"
|
|
6454
6414
|
]);
|
|
6455
|
-
return /* @__PURE__ */ (0,
|
|
6415
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
|
6456
6416
|
PaginationLink,
|
|
6457
6417
|
__spreadProps(__spreadValues({
|
|
6458
6418
|
"aria-label": "Go to next page",
|
|
@@ -6460,8 +6420,8 @@ var PaginationNextLast = (_a) => {
|
|
|
6460
6420
|
className: cn("gap-1 pr-2.5", className)
|
|
6461
6421
|
}, props), {
|
|
6462
6422
|
children: [
|
|
6463
|
-
/* @__PURE__ */ (0,
|
|
6464
|
-
/* @__PURE__ */ (0,
|
|
6423
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { className: "sr-only", children: "Next Last" }),
|
|
6424
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)(import_lucide_react2.ChevronRight, { className: "h-4 w-4" })
|
|
6465
6425
|
]
|
|
6466
6426
|
})
|
|
6467
6427
|
);
|
|
@@ -6473,15 +6433,15 @@ var PaginationEllipsis = (_a) => {
|
|
|
6473
6433
|
} = _b, props = __objRest(_b, [
|
|
6474
6434
|
"className"
|
|
6475
6435
|
]);
|
|
6476
|
-
return /* @__PURE__ */ (0,
|
|
6436
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
|
6477
6437
|
"span",
|
|
6478
6438
|
__spreadProps(__spreadValues({
|
|
6479
6439
|
"aria-hidden": true,
|
|
6480
6440
|
className: cn("flex h-9 w-9 items-center justify-center", className)
|
|
6481
6441
|
}, props), {
|
|
6482
6442
|
children: [
|
|
6483
|
-
/* @__PURE__ */ (0,
|
|
6484
|
-
/* @__PURE__ */ (0,
|
|
6443
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)(import_react_icons12.DotsHorizontalIcon, { className: "h-4 w-4" }),
|
|
6444
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { className: "sr-only", children: "More pages" })
|
|
6485
6445
|
]
|
|
6486
6446
|
})
|
|
6487
6447
|
);
|
|
@@ -6490,14 +6450,14 @@ PaginationEllipsis.displayName = "PaginationEllipsis";
|
|
|
6490
6450
|
|
|
6491
6451
|
// src/components/popover.tsx
|
|
6492
6452
|
var PopoverPrimitive = __toESM(require("@radix-ui/react-popover"), 1);
|
|
6493
|
-
var
|
|
6494
|
-
var
|
|
6453
|
+
var React49 = __toESM(require("react"), 1);
|
|
6454
|
+
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
6495
6455
|
var Popover = PopoverPrimitive.Root;
|
|
6496
6456
|
var PopoverTrigger = PopoverPrimitive.Trigger;
|
|
6497
6457
|
var PopoverAnchor = PopoverPrimitive.Anchor;
|
|
6498
|
-
var PopoverContent =
|
|
6458
|
+
var PopoverContent = React49.forwardRef((_a, ref) => {
|
|
6499
6459
|
var _b = _a, { className, align = "center", sideOffset = 4 } = _b, props = __objRest(_b, ["className", "align", "sideOffset"]);
|
|
6500
|
-
return /* @__PURE__ */ (0,
|
|
6460
|
+
return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(PopoverPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
6501
6461
|
PopoverPrimitive.Content,
|
|
6502
6462
|
__spreadValues({
|
|
6503
6463
|
ref,
|
|
@@ -6514,11 +6474,11 @@ PopoverContent.displayName = PopoverPrimitive.Content.displayName;
|
|
|
6514
6474
|
|
|
6515
6475
|
// src/components/progress.tsx
|
|
6516
6476
|
var ProgressPrimitive = __toESM(require("@radix-ui/react-progress"), 1);
|
|
6517
|
-
var
|
|
6518
|
-
var
|
|
6519
|
-
var Progress =
|
|
6477
|
+
var React50 = __toESM(require("react"), 1);
|
|
6478
|
+
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
6479
|
+
var Progress = React50.forwardRef((_a, ref) => {
|
|
6520
6480
|
var _b = _a, { className, value } = _b, props = __objRest(_b, ["className", "value"]);
|
|
6521
|
-
return /* @__PURE__ */ (0,
|
|
6481
|
+
return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
6522
6482
|
ProgressPrimitive.Root,
|
|
6523
6483
|
__spreadProps(__spreadValues({
|
|
6524
6484
|
ref,
|
|
@@ -6527,7 +6487,7 @@ var Progress = React51.forwardRef((_a, ref) => {
|
|
|
6527
6487
|
className
|
|
6528
6488
|
)
|
|
6529
6489
|
}, props), {
|
|
6530
|
-
children: /* @__PURE__ */ (0,
|
|
6490
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
6531
6491
|
ProgressPrimitive.Indicator,
|
|
6532
6492
|
{
|
|
6533
6493
|
className: "h-full w-full flex-1 bg-primary transition-all",
|
|
@@ -6542,11 +6502,11 @@ Progress.displayName = ProgressPrimitive.Root.displayName;
|
|
|
6542
6502
|
// src/components/radio-group.tsx
|
|
6543
6503
|
var import_react_icons13 = require("@radix-ui/react-icons");
|
|
6544
6504
|
var RadioGroupPrimitive = __toESM(require("@radix-ui/react-radio-group"), 1);
|
|
6545
|
-
var
|
|
6546
|
-
var
|
|
6547
|
-
var RadioGroup4 =
|
|
6505
|
+
var React51 = __toESM(require("react"), 1);
|
|
6506
|
+
var import_jsx_runtime28 = require("react/jsx-runtime");
|
|
6507
|
+
var RadioGroup4 = React51.forwardRef((_a, ref) => {
|
|
6548
6508
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6549
|
-
return /* @__PURE__ */ (0,
|
|
6509
|
+
return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
6550
6510
|
RadioGroupPrimitive.Root,
|
|
6551
6511
|
__spreadProps(__spreadValues({
|
|
6552
6512
|
className: cn("grid gap-2", className)
|
|
@@ -6556,9 +6516,9 @@ var RadioGroup4 = React52.forwardRef((_a, ref) => {
|
|
|
6556
6516
|
);
|
|
6557
6517
|
});
|
|
6558
6518
|
RadioGroup4.displayName = RadioGroupPrimitive.Root.displayName;
|
|
6559
|
-
var RadioGroupItem =
|
|
6519
|
+
var RadioGroupItem = React51.forwardRef((_a, ref) => {
|
|
6560
6520
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6561
|
-
return /* @__PURE__ */ (0,
|
|
6521
|
+
return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
6562
6522
|
RadioGroupPrimitive.Item,
|
|
6563
6523
|
__spreadProps(__spreadValues({
|
|
6564
6524
|
ref,
|
|
@@ -6567,7 +6527,7 @@ var RadioGroupItem = React52.forwardRef((_a, ref) => {
|
|
|
6567
6527
|
className
|
|
6568
6528
|
)
|
|
6569
6529
|
}, props), {
|
|
6570
|
-
children: /* @__PURE__ */ (0,
|
|
6530
|
+
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
6531
|
})
|
|
6572
6532
|
);
|
|
6573
6533
|
});
|
|
@@ -6576,14 +6536,14 @@ RadioGroupItem.displayName = RadioGroupPrimitive.Item.displayName;
|
|
|
6576
6536
|
// src/components/resizable.tsx
|
|
6577
6537
|
var import_react_icons14 = require("@radix-ui/react-icons");
|
|
6578
6538
|
var ResizablePrimitive = __toESM(require("react-resizable-panels"), 1);
|
|
6579
|
-
var
|
|
6539
|
+
var import_jsx_runtime29 = require("react/jsx-runtime");
|
|
6580
6540
|
var ResizablePanelGroup = (_a) => {
|
|
6581
6541
|
var _b = _a, {
|
|
6582
6542
|
className
|
|
6583
6543
|
} = _b, props = __objRest(_b, [
|
|
6584
6544
|
"className"
|
|
6585
6545
|
]);
|
|
6586
|
-
return /* @__PURE__ */ (0,
|
|
6546
|
+
return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
6587
6547
|
ResizablePrimitive.PanelGroup,
|
|
6588
6548
|
__spreadValues({
|
|
6589
6549
|
className: cn(
|
|
@@ -6602,7 +6562,7 @@ var ResizableHandle = (_a) => {
|
|
|
6602
6562
|
"withHandle",
|
|
6603
6563
|
"className"
|
|
6604
6564
|
]);
|
|
6605
|
-
return /* @__PURE__ */ (0,
|
|
6565
|
+
return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
6606
6566
|
ResizablePrimitive.PanelResizeHandle,
|
|
6607
6567
|
__spreadProps(__spreadValues({
|
|
6608
6568
|
className: cn(
|
|
@@ -6610,35 +6570,35 @@ var ResizableHandle = (_a) => {
|
|
|
6610
6570
|
className
|
|
6611
6571
|
)
|
|
6612
6572
|
}, props), {
|
|
6613
|
-
children: withHandle && /* @__PURE__ */ (0,
|
|
6573
|
+
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
6574
|
})
|
|
6615
6575
|
);
|
|
6616
6576
|
};
|
|
6617
6577
|
|
|
6618
6578
|
// src/components/scroll-area.tsx
|
|
6619
6579
|
var ScrollAreaPrimitive = __toESM(require("@radix-ui/react-scroll-area"), 1);
|
|
6620
|
-
var
|
|
6621
|
-
var
|
|
6622
|
-
var ScrollArea =
|
|
6580
|
+
var React52 = __toESM(require("react"), 1);
|
|
6581
|
+
var import_jsx_runtime30 = require("react/jsx-runtime");
|
|
6582
|
+
var ScrollArea = React52.forwardRef((_a, ref) => {
|
|
6623
6583
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
6624
|
-
return /* @__PURE__ */ (0,
|
|
6584
|
+
return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
|
|
6625
6585
|
ScrollAreaPrimitive.Root,
|
|
6626
6586
|
__spreadProps(__spreadValues({
|
|
6627
6587
|
ref,
|
|
6628
6588
|
className: cn("relative overflow-hidden", className)
|
|
6629
6589
|
}, props), {
|
|
6630
6590
|
children: [
|
|
6631
|
-
/* @__PURE__ */ (0,
|
|
6632
|
-
/* @__PURE__ */ (0,
|
|
6633
|
-
/* @__PURE__ */ (0,
|
|
6591
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)(ScrollAreaPrimitive.Viewport, { className: "h-full w-full rounded-[inherit]", children }),
|
|
6592
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)(ScrollBar, {}),
|
|
6593
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)(ScrollAreaPrimitive.Corner, {})
|
|
6634
6594
|
]
|
|
6635
6595
|
})
|
|
6636
6596
|
);
|
|
6637
6597
|
});
|
|
6638
6598
|
ScrollArea.displayName = ScrollAreaPrimitive.Root.displayName;
|
|
6639
|
-
var ScrollBar =
|
|
6599
|
+
var ScrollBar = React52.forwardRef((_a, ref) => {
|
|
6640
6600
|
var _b = _a, { className, orientation = "vertical" } = _b, props = __objRest(_b, ["className", "orientation"]);
|
|
6641
|
-
return /* @__PURE__ */ (0,
|
|
6601
|
+
return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
6642
6602
|
ScrollAreaPrimitive.ScrollAreaScrollbar,
|
|
6643
6603
|
__spreadProps(__spreadValues({
|
|
6644
6604
|
ref,
|
|
@@ -6650,23 +6610,59 @@ var ScrollBar = React53.forwardRef((_a, ref) => {
|
|
|
6650
6610
|
className
|
|
6651
6611
|
)
|
|
6652
6612
|
}, props), {
|
|
6653
|
-
children: /* @__PURE__ */ (0,
|
|
6613
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(ScrollAreaPrimitive.ScrollAreaThumb, { className: "relative flex-1 rounded-full bg-border" })
|
|
6654
6614
|
})
|
|
6655
6615
|
);
|
|
6656
6616
|
});
|
|
6657
6617
|
ScrollBar.displayName = ScrollAreaPrimitive.ScrollAreaScrollbar.displayName;
|
|
6658
6618
|
|
|
6619
|
+
// src/components/search-input.tsx
|
|
6620
|
+
var import_react34 = __toESM(require("react"), 1);
|
|
6621
|
+
var import_use_debounce = require("use-debounce");
|
|
6622
|
+
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
6623
|
+
function SearchInput({
|
|
6624
|
+
value,
|
|
6625
|
+
placeholder,
|
|
6626
|
+
className,
|
|
6627
|
+
debounceTime = 750,
|
|
6628
|
+
onSearch
|
|
6629
|
+
}) {
|
|
6630
|
+
const [searchTerm, setSearchTerm] = import_react34.default.useState(value);
|
|
6631
|
+
const [debouncedValue] = (0, import_use_debounce.useDebounce)(searchTerm, debounceTime);
|
|
6632
|
+
const handleSettingSearchParams = (0, import_react34.useCallback)((newSearchValue) => {
|
|
6633
|
+
if (newSearchValue === "" || newSearchValue === void 0 || !newSearchValue) {
|
|
6634
|
+
onSearch(newSearchValue);
|
|
6635
|
+
return;
|
|
6636
|
+
}
|
|
6637
|
+
}, []);
|
|
6638
|
+
import_react34.default.useEffect(() => {
|
|
6639
|
+
handleSettingSearchParams(debouncedValue);
|
|
6640
|
+
}, [debouncedValue, handleSettingSearchParams]);
|
|
6641
|
+
import_react34.default.useEffect(() => {
|
|
6642
|
+
setSearchTerm(value);
|
|
6643
|
+
}, [value]);
|
|
6644
|
+
return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
6645
|
+
Input,
|
|
6646
|
+
{
|
|
6647
|
+
placeholder: placeholder || `Search...`,
|
|
6648
|
+
value: searchTerm,
|
|
6649
|
+
onChange: (event) => setSearchTerm(event.target.value),
|
|
6650
|
+
className: cn("w-full md:max-w-sm", className)
|
|
6651
|
+
}
|
|
6652
|
+
);
|
|
6653
|
+
}
|
|
6654
|
+
|
|
6659
6655
|
// src/components/select.tsx
|
|
6660
6656
|
var import_react_icons15 = require("@radix-ui/react-icons");
|
|
6661
6657
|
var SelectPrimitive = __toESM(require("@radix-ui/react-select"), 1);
|
|
6662
6658
|
var React54 = __toESM(require("react"), 1);
|
|
6663
|
-
var
|
|
6659
|
+
var import_jsx_runtime32 = require("react/jsx-runtime");
|
|
6664
6660
|
var Select2 = SelectPrimitive.Root;
|
|
6665
6661
|
var SelectGroup = SelectPrimitive.Group;
|
|
6666
6662
|
var SelectValue = SelectPrimitive.Value;
|
|
6667
6663
|
var SelectTrigger = React54.forwardRef((_a, ref) => {
|
|
6668
6664
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
6669
|
-
return /* @__PURE__ */ (0,
|
|
6665
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
|
|
6670
6666
|
SelectPrimitive.Trigger,
|
|
6671
6667
|
__spreadProps(__spreadValues({
|
|
6672
6668
|
ref,
|
|
@@ -6677,7 +6673,7 @@ var SelectTrigger = React54.forwardRef((_a, ref) => {
|
|
|
6677
6673
|
}, props), {
|
|
6678
6674
|
children: [
|
|
6679
6675
|
children,
|
|
6680
|
-
/* @__PURE__ */ (0,
|
|
6676
|
+
/* @__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
6677
|
]
|
|
6682
6678
|
})
|
|
6683
6679
|
);
|
|
@@ -6685,7 +6681,7 @@ var SelectTrigger = React54.forwardRef((_a, ref) => {
|
|
|
6685
6681
|
SelectTrigger.displayName = SelectPrimitive.Trigger.displayName;
|
|
6686
6682
|
var SelectScrollUpButton = React54.forwardRef((_a, ref) => {
|
|
6687
6683
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6688
|
-
return /* @__PURE__ */ (0,
|
|
6684
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
6689
6685
|
SelectPrimitive.ScrollUpButton,
|
|
6690
6686
|
__spreadProps(__spreadValues({
|
|
6691
6687
|
ref,
|
|
@@ -6694,14 +6690,14 @@ var SelectScrollUpButton = React54.forwardRef((_a, ref) => {
|
|
|
6694
6690
|
className
|
|
6695
6691
|
)
|
|
6696
6692
|
}, props), {
|
|
6697
|
-
children: /* @__PURE__ */ (0,
|
|
6693
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_react_icons15.ChevronUpIcon, {})
|
|
6698
6694
|
})
|
|
6699
6695
|
);
|
|
6700
6696
|
});
|
|
6701
6697
|
SelectScrollUpButton.displayName = SelectPrimitive.ScrollUpButton.displayName;
|
|
6702
6698
|
var SelectScrollDownButton = React54.forwardRef((_a, ref) => {
|
|
6703
6699
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6704
|
-
return /* @__PURE__ */ (0,
|
|
6700
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
6705
6701
|
SelectPrimitive.ScrollDownButton,
|
|
6706
6702
|
__spreadProps(__spreadValues({
|
|
6707
6703
|
ref,
|
|
@@ -6710,14 +6706,14 @@ var SelectScrollDownButton = React54.forwardRef((_a, ref) => {
|
|
|
6710
6706
|
className
|
|
6711
6707
|
)
|
|
6712
6708
|
}, props), {
|
|
6713
|
-
children: /* @__PURE__ */ (0,
|
|
6709
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_react_icons15.ChevronDownIcon, {})
|
|
6714
6710
|
})
|
|
6715
6711
|
);
|
|
6716
6712
|
});
|
|
6717
6713
|
SelectScrollDownButton.displayName = SelectPrimitive.ScrollDownButton.displayName;
|
|
6718
6714
|
var SelectContent = React54.forwardRef((_a, ref) => {
|
|
6719
6715
|
var _b = _a, { className, children, position = "popper" } = _b, props = __objRest(_b, ["className", "children", "position"]);
|
|
6720
|
-
return /* @__PURE__ */ (0,
|
|
6716
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(SelectPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
|
|
6721
6717
|
SelectPrimitive.Content,
|
|
6722
6718
|
__spreadProps(__spreadValues({
|
|
6723
6719
|
ref,
|
|
@@ -6729,8 +6725,8 @@ var SelectContent = React54.forwardRef((_a, ref) => {
|
|
|
6729
6725
|
position
|
|
6730
6726
|
}, props), {
|
|
6731
6727
|
children: [
|
|
6732
|
-
/* @__PURE__ */ (0,
|
|
6733
|
-
/* @__PURE__ */ (0,
|
|
6728
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)(SelectScrollUpButton, {}),
|
|
6729
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
6734
6730
|
SelectPrimitive.Viewport,
|
|
6735
6731
|
{
|
|
6736
6732
|
className: cn(
|
|
@@ -6740,7 +6736,7 @@ var SelectContent = React54.forwardRef((_a, ref) => {
|
|
|
6740
6736
|
children
|
|
6741
6737
|
}
|
|
6742
6738
|
),
|
|
6743
|
-
/* @__PURE__ */ (0,
|
|
6739
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)(SelectScrollDownButton, {})
|
|
6744
6740
|
]
|
|
6745
6741
|
})
|
|
6746
6742
|
) });
|
|
@@ -6748,7 +6744,7 @@ var SelectContent = React54.forwardRef((_a, ref) => {
|
|
|
6748
6744
|
SelectContent.displayName = SelectPrimitive.Content.displayName;
|
|
6749
6745
|
var SelectLabel = React54.forwardRef((_a, ref) => {
|
|
6750
6746
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6751
|
-
return /* @__PURE__ */ (0,
|
|
6747
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
6752
6748
|
SelectPrimitive.Label,
|
|
6753
6749
|
__spreadValues({
|
|
6754
6750
|
ref,
|
|
@@ -6759,7 +6755,7 @@ var SelectLabel = React54.forwardRef((_a, ref) => {
|
|
|
6759
6755
|
SelectLabel.displayName = SelectPrimitive.Label.displayName;
|
|
6760
6756
|
var SelectItem = React54.forwardRef((_a, ref) => {
|
|
6761
6757
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
6762
|
-
return /* @__PURE__ */ (0,
|
|
6758
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
|
|
6763
6759
|
SelectPrimitive.Item,
|
|
6764
6760
|
__spreadProps(__spreadValues({
|
|
6765
6761
|
ref,
|
|
@@ -6769,8 +6765,8 @@ var SelectItem = React54.forwardRef((_a, ref) => {
|
|
|
6769
6765
|
)
|
|
6770
6766
|
}, props), {
|
|
6771
6767
|
children: [
|
|
6772
|
-
/* @__PURE__ */ (0,
|
|
6773
|
-
/* @__PURE__ */ (0,
|
|
6768
|
+
/* @__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" }) }) }),
|
|
6769
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)(SelectPrimitive.ItemText, { children })
|
|
6774
6770
|
]
|
|
6775
6771
|
})
|
|
6776
6772
|
);
|
|
@@ -6778,7 +6774,7 @@ var SelectItem = React54.forwardRef((_a, ref) => {
|
|
|
6778
6774
|
SelectItem.displayName = SelectPrimitive.Item.displayName;
|
|
6779
6775
|
var SelectSeparator = React54.forwardRef((_a, ref) => {
|
|
6780
6776
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6781
|
-
return /* @__PURE__ */ (0,
|
|
6777
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
6782
6778
|
SelectPrimitive.Separator,
|
|
6783
6779
|
__spreadValues({
|
|
6784
6780
|
ref,
|
|
@@ -6791,11 +6787,11 @@ SelectSeparator.displayName = SelectPrimitive.Separator.displayName;
|
|
|
6791
6787
|
// src/components/separator.tsx
|
|
6792
6788
|
var SeparatorPrimitive = __toESM(require("@radix-ui/react-separator"), 1);
|
|
6793
6789
|
var React55 = __toESM(require("react"), 1);
|
|
6794
|
-
var
|
|
6790
|
+
var import_jsx_runtime33 = require("react/jsx-runtime");
|
|
6795
6791
|
var Separator5 = React55.forwardRef(
|
|
6796
6792
|
(_a, ref) => {
|
|
6797
6793
|
var _b = _a, { className, orientation = "horizontal", decorative = true } = _b, props = __objRest(_b, ["className", "orientation", "decorative"]);
|
|
6798
|
-
return /* @__PURE__ */ (0,
|
|
6794
|
+
return /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
6799
6795
|
SeparatorPrimitive.Root,
|
|
6800
6796
|
__spreadValues({
|
|
6801
6797
|
ref,
|
|
@@ -6817,14 +6813,14 @@ var SheetPrimitive = __toESM(require("@radix-ui/react-dialog"), 1);
|
|
|
6817
6813
|
var import_react_icons16 = require("@radix-ui/react-icons");
|
|
6818
6814
|
var import_class_variance_authority6 = require("class-variance-authority");
|
|
6819
6815
|
var React56 = __toESM(require("react"), 1);
|
|
6820
|
-
var
|
|
6816
|
+
var import_jsx_runtime34 = require("react/jsx-runtime");
|
|
6821
6817
|
var Sheet = SheetPrimitive.Root;
|
|
6822
6818
|
var SheetTrigger = SheetPrimitive.Trigger;
|
|
6823
6819
|
var SheetClose = SheetPrimitive.Close;
|
|
6824
6820
|
var SheetPortal = SheetPrimitive.Portal;
|
|
6825
6821
|
var SheetOverlay = React56.forwardRef((_a, ref) => {
|
|
6826
6822
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6827
|
-
return /* @__PURE__ */ (0,
|
|
6823
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
6828
6824
|
SheetPrimitive.Overlay,
|
|
6829
6825
|
__spreadProps(__spreadValues({
|
|
6830
6826
|
className: cn(
|
|
@@ -6855,9 +6851,9 @@ var sheetVariants = (0, import_class_variance_authority6.cva)(
|
|
|
6855
6851
|
);
|
|
6856
6852
|
var SheetContent = React56.forwardRef((_a, ref) => {
|
|
6857
6853
|
var _b = _a, { side = "right", className, children } = _b, props = __objRest(_b, ["side", "className", "children"]);
|
|
6858
|
-
return /* @__PURE__ */ (0,
|
|
6859
|
-
/* @__PURE__ */ (0,
|
|
6860
|
-
/* @__PURE__ */ (0,
|
|
6854
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(SheetPortal, { children: [
|
|
6855
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(SheetOverlay, {}),
|
|
6856
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(
|
|
6861
6857
|
SheetPrimitive.Content,
|
|
6862
6858
|
__spreadProps(__spreadValues({
|
|
6863
6859
|
ref,
|
|
@@ -6865,9 +6861,9 @@ var SheetContent = React56.forwardRef((_a, ref) => {
|
|
|
6865
6861
|
}, props), {
|
|
6866
6862
|
children: [
|
|
6867
6863
|
children,
|
|
6868
|
-
/* @__PURE__ */ (0,
|
|
6869
|
-
/* @__PURE__ */ (0,
|
|
6870
|
-
/* @__PURE__ */ (0,
|
|
6864
|
+
/* @__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: [
|
|
6865
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(import_react_icons16.Cross2Icon, { className: "h-4 w-4" }),
|
|
6866
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("span", { className: "sr-only", children: "Close" })
|
|
6871
6867
|
] })
|
|
6872
6868
|
]
|
|
6873
6869
|
})
|
|
@@ -6881,7 +6877,7 @@ var SheetHeader = (_a) => {
|
|
|
6881
6877
|
} = _b, props = __objRest(_b, [
|
|
6882
6878
|
"className"
|
|
6883
6879
|
]);
|
|
6884
|
-
return /* @__PURE__ */ (0,
|
|
6880
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
6885
6881
|
"div",
|
|
6886
6882
|
__spreadValues({
|
|
6887
6883
|
className: cn(
|
|
@@ -6898,7 +6894,7 @@ var SheetFooter = (_a) => {
|
|
|
6898
6894
|
} = _b, props = __objRest(_b, [
|
|
6899
6895
|
"className"
|
|
6900
6896
|
]);
|
|
6901
|
-
return /* @__PURE__ */ (0,
|
|
6897
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
6902
6898
|
"div",
|
|
6903
6899
|
__spreadValues({
|
|
6904
6900
|
className: cn(
|
|
@@ -6911,7 +6907,7 @@ var SheetFooter = (_a) => {
|
|
|
6911
6907
|
SheetFooter.displayName = "SheetFooter";
|
|
6912
6908
|
var SheetTitle = React56.forwardRef((_a, ref) => {
|
|
6913
6909
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6914
|
-
return /* @__PURE__ */ (0,
|
|
6910
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
6915
6911
|
SheetPrimitive.Title,
|
|
6916
6912
|
__spreadValues({
|
|
6917
6913
|
ref,
|
|
@@ -6922,7 +6918,7 @@ var SheetTitle = React56.forwardRef((_a, ref) => {
|
|
|
6922
6918
|
SheetTitle.displayName = SheetPrimitive.Title.displayName;
|
|
6923
6919
|
var SheetDescription = React56.forwardRef((_a, ref) => {
|
|
6924
6920
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6925
|
-
return /* @__PURE__ */ (0,
|
|
6921
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
6926
6922
|
SheetPrimitive.Description,
|
|
6927
6923
|
__spreadValues({
|
|
6928
6924
|
ref,
|
|
@@ -6933,14 +6929,14 @@ var SheetDescription = React56.forwardRef((_a, ref) => {
|
|
|
6933
6929
|
SheetDescription.displayName = SheetPrimitive.Description.displayName;
|
|
6934
6930
|
|
|
6935
6931
|
// src/components/skeleton.tsx
|
|
6936
|
-
var
|
|
6932
|
+
var import_jsx_runtime35 = require("react/jsx-runtime");
|
|
6937
6933
|
function Skeleton(_a) {
|
|
6938
6934
|
var _b = _a, {
|
|
6939
6935
|
className
|
|
6940
6936
|
} = _b, props = __objRest(_b, [
|
|
6941
6937
|
"className"
|
|
6942
6938
|
]);
|
|
6943
|
-
return /* @__PURE__ */ (0,
|
|
6939
|
+
return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
6944
6940
|
"div",
|
|
6945
6941
|
__spreadValues({
|
|
6946
6942
|
className: cn("animate-pulse rounded-md bg-primary/10", className)
|
|
@@ -6951,10 +6947,10 @@ function Skeleton(_a) {
|
|
|
6951
6947
|
// src/components/slider.tsx
|
|
6952
6948
|
var SliderPrimitive = __toESM(require("@radix-ui/react-slider"), 1);
|
|
6953
6949
|
var React57 = __toESM(require("react"), 1);
|
|
6954
|
-
var
|
|
6950
|
+
var import_jsx_runtime36 = require("react/jsx-runtime");
|
|
6955
6951
|
var Slider = React57.forwardRef((_a, ref) => {
|
|
6956
6952
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
6957
|
-
return /* @__PURE__ */ (0,
|
|
6953
|
+
return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
|
|
6958
6954
|
SliderPrimitive.Root,
|
|
6959
6955
|
__spreadProps(__spreadValues({
|
|
6960
6956
|
ref,
|
|
@@ -6964,8 +6960,8 @@ var Slider = React57.forwardRef((_a, ref) => {
|
|
|
6964
6960
|
)
|
|
6965
6961
|
}, props), {
|
|
6966
6962
|
children: [
|
|
6967
|
-
/* @__PURE__ */ (0,
|
|
6968
|
-
/* @__PURE__ */ (0,
|
|
6963
|
+
/* @__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" }) }),
|
|
6964
|
+
/* @__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
6965
|
]
|
|
6970
6966
|
})
|
|
6971
6967
|
);
|
|
@@ -6975,11 +6971,11 @@ Slider.displayName = SliderPrimitive.Root.displayName;
|
|
|
6975
6971
|
// src/components/sonner.tsx
|
|
6976
6972
|
var import_next_themes = require("next-themes");
|
|
6977
6973
|
var import_sonner = require("sonner");
|
|
6978
|
-
var
|
|
6974
|
+
var import_jsx_runtime37 = require("react/jsx-runtime");
|
|
6979
6975
|
var Toaster = (_a) => {
|
|
6980
6976
|
var props = __objRest(_a, []);
|
|
6981
6977
|
const { theme = "system" } = (0, import_next_themes.useTheme)();
|
|
6982
|
-
return /* @__PURE__ */ (0,
|
|
6978
|
+
return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
6983
6979
|
import_sonner.Toaster,
|
|
6984
6980
|
__spreadValues({
|
|
6985
6981
|
theme,
|
|
@@ -6999,10 +6995,10 @@ var Toaster = (_a) => {
|
|
|
6999
6995
|
// src/components/switch.tsx
|
|
7000
6996
|
var SwitchPrimitives = __toESM(require("@radix-ui/react-switch"), 1);
|
|
7001
6997
|
var React58 = __toESM(require("react"), 1);
|
|
7002
|
-
var
|
|
6998
|
+
var import_jsx_runtime38 = require("react/jsx-runtime");
|
|
7003
6999
|
var Switch = React58.forwardRef((_a, ref) => {
|
|
7004
7000
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7005
|
-
return /* @__PURE__ */ (0,
|
|
7001
|
+
return /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
7006
7002
|
SwitchPrimitives.Root,
|
|
7007
7003
|
__spreadProps(__spreadValues({
|
|
7008
7004
|
className: cn(
|
|
@@ -7011,7 +7007,7 @@ var Switch = React58.forwardRef((_a, ref) => {
|
|
|
7011
7007
|
)
|
|
7012
7008
|
}, props), {
|
|
7013
7009
|
ref,
|
|
7014
|
-
children: /* @__PURE__ */ (0,
|
|
7010
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
7015
7011
|
SwitchPrimitives.Thumb,
|
|
7016
7012
|
{
|
|
7017
7013
|
className: cn(
|
|
@@ -7026,10 +7022,10 @@ Switch.displayName = SwitchPrimitives.Root.displayName;
|
|
|
7026
7022
|
|
|
7027
7023
|
// src/components/table.tsx
|
|
7028
7024
|
var React59 = __toESM(require("react"), 1);
|
|
7029
|
-
var
|
|
7025
|
+
var import_jsx_runtime39 = require("react/jsx-runtime");
|
|
7030
7026
|
var Table = React59.forwardRef((_a, ref) => {
|
|
7031
7027
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7032
|
-
return /* @__PURE__ */ (0,
|
|
7028
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { className: "relative w-full overflow-auto", children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
7033
7029
|
"table",
|
|
7034
7030
|
__spreadValues({
|
|
7035
7031
|
ref,
|
|
@@ -7040,12 +7036,12 @@ var Table = React59.forwardRef((_a, ref) => {
|
|
|
7040
7036
|
Table.displayName = "Table";
|
|
7041
7037
|
var TableHeader = React59.forwardRef((_a, ref) => {
|
|
7042
7038
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7043
|
-
return /* @__PURE__ */ (0,
|
|
7039
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("thead", __spreadValues({ ref, className: cn("[&_tr]:border-b", className) }, props));
|
|
7044
7040
|
});
|
|
7045
7041
|
TableHeader.displayName = "TableHeader";
|
|
7046
7042
|
var TableBody = React59.forwardRef((_a, ref) => {
|
|
7047
7043
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7048
|
-
return /* @__PURE__ */ (0,
|
|
7044
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
7049
7045
|
"tbody",
|
|
7050
7046
|
__spreadValues({
|
|
7051
7047
|
ref,
|
|
@@ -7056,7 +7052,7 @@ var TableBody = React59.forwardRef((_a, ref) => {
|
|
|
7056
7052
|
TableBody.displayName = "TableBody";
|
|
7057
7053
|
var TableFooter = React59.forwardRef((_a, ref) => {
|
|
7058
7054
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7059
|
-
return /* @__PURE__ */ (0,
|
|
7055
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
7060
7056
|
"tfoot",
|
|
7061
7057
|
__spreadValues({
|
|
7062
7058
|
ref,
|
|
@@ -7070,7 +7066,7 @@ var TableFooter = React59.forwardRef((_a, ref) => {
|
|
|
7070
7066
|
TableFooter.displayName = "TableFooter";
|
|
7071
7067
|
var TableRow = React59.forwardRef((_a, ref) => {
|
|
7072
7068
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7073
|
-
return /* @__PURE__ */ (0,
|
|
7069
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
7074
7070
|
"tr",
|
|
7075
7071
|
__spreadValues({
|
|
7076
7072
|
ref,
|
|
@@ -7084,7 +7080,7 @@ var TableRow = React59.forwardRef((_a, ref) => {
|
|
|
7084
7080
|
TableRow.displayName = "TableRow";
|
|
7085
7081
|
var TableHead = React59.forwardRef((_a, ref) => {
|
|
7086
7082
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7087
|
-
return /* @__PURE__ */ (0,
|
|
7083
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
7088
7084
|
"th",
|
|
7089
7085
|
__spreadValues({
|
|
7090
7086
|
ref,
|
|
@@ -7098,7 +7094,7 @@ var TableHead = React59.forwardRef((_a, ref) => {
|
|
|
7098
7094
|
TableHead.displayName = "TableHead";
|
|
7099
7095
|
var TableCell = React59.forwardRef((_a, ref) => {
|
|
7100
7096
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7101
|
-
return /* @__PURE__ */ (0,
|
|
7097
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
7102
7098
|
"td",
|
|
7103
7099
|
__spreadValues({
|
|
7104
7100
|
ref,
|
|
@@ -7112,7 +7108,7 @@ var TableCell = React59.forwardRef((_a, ref) => {
|
|
|
7112
7108
|
TableCell.displayName = "TableCell";
|
|
7113
7109
|
var TableCaption = React59.forwardRef((_a, ref) => {
|
|
7114
7110
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7115
|
-
return /* @__PURE__ */ (0,
|
|
7111
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
7116
7112
|
"caption",
|
|
7117
7113
|
__spreadValues({
|
|
7118
7114
|
ref,
|
|
@@ -7125,11 +7121,11 @@ TableCaption.displayName = "TableCaption";
|
|
|
7125
7121
|
// src/components/tabs.tsx
|
|
7126
7122
|
var TabsPrimitive = __toESM(require("@radix-ui/react-tabs"), 1);
|
|
7127
7123
|
var React60 = __toESM(require("react"), 1);
|
|
7128
|
-
var
|
|
7124
|
+
var import_jsx_runtime40 = require("react/jsx-runtime");
|
|
7129
7125
|
var Tabs = TabsPrimitive.Root;
|
|
7130
7126
|
var TabsList = React60.forwardRef((_a, ref) => {
|
|
7131
7127
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7132
|
-
return /* @__PURE__ */ (0,
|
|
7128
|
+
return /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
7133
7129
|
TabsPrimitive.List,
|
|
7134
7130
|
__spreadValues({
|
|
7135
7131
|
ref,
|
|
@@ -7143,7 +7139,7 @@ var TabsList = React60.forwardRef((_a, ref) => {
|
|
|
7143
7139
|
TabsList.displayName = TabsPrimitive.List.displayName;
|
|
7144
7140
|
var TabsTrigger = React60.forwardRef((_a, ref) => {
|
|
7145
7141
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7146
|
-
return /* @__PURE__ */ (0,
|
|
7142
|
+
return /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
7147
7143
|
TabsPrimitive.Trigger,
|
|
7148
7144
|
__spreadValues({
|
|
7149
7145
|
ref,
|
|
@@ -7157,7 +7153,7 @@ var TabsTrigger = React60.forwardRef((_a, ref) => {
|
|
|
7157
7153
|
TabsTrigger.displayName = TabsPrimitive.Trigger.displayName;
|
|
7158
7154
|
var TabsContent = React60.forwardRef((_a, ref) => {
|
|
7159
7155
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7160
|
-
return /* @__PURE__ */ (0,
|
|
7156
|
+
return /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
7161
7157
|
TabsPrimitive.Content,
|
|
7162
7158
|
__spreadValues({
|
|
7163
7159
|
ref,
|
|
@@ -7172,11 +7168,11 @@ TabsContent.displayName = TabsPrimitive.Content.displayName;
|
|
|
7172
7168
|
|
|
7173
7169
|
// src/components/textarea.tsx
|
|
7174
7170
|
var React61 = __toESM(require("react"), 1);
|
|
7175
|
-
var
|
|
7171
|
+
var import_jsx_runtime41 = require("react/jsx-runtime");
|
|
7176
7172
|
var Textarea = React61.forwardRef(
|
|
7177
7173
|
(_a, ref) => {
|
|
7178
7174
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7179
|
-
return /* @__PURE__ */ (0,
|
|
7175
|
+
return /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
7180
7176
|
"textarea",
|
|
7181
7177
|
__spreadValues({
|
|
7182
7178
|
className: cn(
|
|
@@ -7195,11 +7191,11 @@ var import_react_icons17 = require("@radix-ui/react-icons");
|
|
|
7195
7191
|
var ToastPrimitives = __toESM(require("@radix-ui/react-toast"), 1);
|
|
7196
7192
|
var import_class_variance_authority7 = require("class-variance-authority");
|
|
7197
7193
|
var React62 = __toESM(require("react"), 1);
|
|
7198
|
-
var
|
|
7194
|
+
var import_jsx_runtime42 = require("react/jsx-runtime");
|
|
7199
7195
|
var ToastProvider = ToastPrimitives.Provider;
|
|
7200
7196
|
var ToastViewport = React62.forwardRef((_a, ref) => {
|
|
7201
7197
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7202
|
-
return /* @__PURE__ */ (0,
|
|
7198
|
+
return /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
7203
7199
|
ToastPrimitives.Viewport,
|
|
7204
7200
|
__spreadValues({
|
|
7205
7201
|
ref,
|
|
@@ -7227,7 +7223,7 @@ var toastVariants = (0, import_class_variance_authority7.cva)(
|
|
|
7227
7223
|
);
|
|
7228
7224
|
var Toast = React62.forwardRef((_a, ref) => {
|
|
7229
7225
|
var _b = _a, { className, variant } = _b, props = __objRest(_b, ["className", "variant"]);
|
|
7230
|
-
return /* @__PURE__ */ (0,
|
|
7226
|
+
return /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
7231
7227
|
ToastPrimitives.Root,
|
|
7232
7228
|
__spreadValues({
|
|
7233
7229
|
ref,
|
|
@@ -7238,7 +7234,7 @@ var Toast = React62.forwardRef((_a, ref) => {
|
|
|
7238
7234
|
Toast.displayName = ToastPrimitives.Root.displayName;
|
|
7239
7235
|
var ToastAction = React62.forwardRef((_a, ref) => {
|
|
7240
7236
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7241
|
-
return /* @__PURE__ */ (0,
|
|
7237
|
+
return /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
7242
7238
|
ToastPrimitives.Action,
|
|
7243
7239
|
__spreadValues({
|
|
7244
7240
|
ref,
|
|
@@ -7252,7 +7248,7 @@ var ToastAction = React62.forwardRef((_a, ref) => {
|
|
|
7252
7248
|
ToastAction.displayName = ToastPrimitives.Action.displayName;
|
|
7253
7249
|
var ToastClose = React62.forwardRef((_a, ref) => {
|
|
7254
7250
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7255
|
-
return /* @__PURE__ */ (0,
|
|
7251
|
+
return /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
7256
7252
|
ToastPrimitives.Close,
|
|
7257
7253
|
__spreadProps(__spreadValues({
|
|
7258
7254
|
ref,
|
|
@@ -7262,14 +7258,14 @@ var ToastClose = React62.forwardRef((_a, ref) => {
|
|
|
7262
7258
|
),
|
|
7263
7259
|
"toast-close": ""
|
|
7264
7260
|
}, props), {
|
|
7265
|
-
children: /* @__PURE__ */ (0,
|
|
7261
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(import_react_icons17.Cross2Icon, { className: "h-4 w-4" })
|
|
7266
7262
|
})
|
|
7267
7263
|
);
|
|
7268
7264
|
});
|
|
7269
7265
|
ToastClose.displayName = ToastPrimitives.Close.displayName;
|
|
7270
7266
|
var ToastTitle = React62.forwardRef((_a, ref) => {
|
|
7271
7267
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7272
|
-
return /* @__PURE__ */ (0,
|
|
7268
|
+
return /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
7273
7269
|
ToastPrimitives.Title,
|
|
7274
7270
|
__spreadValues({
|
|
7275
7271
|
ref,
|
|
@@ -7280,7 +7276,7 @@ var ToastTitle = React62.forwardRef((_a, ref) => {
|
|
|
7280
7276
|
ToastTitle.displayName = ToastPrimitives.Title.displayName;
|
|
7281
7277
|
var ToastDescription = React62.forwardRef((_a, ref) => {
|
|
7282
7278
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
7283
|
-
return /* @__PURE__ */ (0,
|
|
7279
|
+
return /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
7284
7280
|
ToastPrimitives.Description,
|
|
7285
7281
|
__spreadValues({
|
|
7286
7282
|
ref,
|
|
@@ -7294,7 +7290,7 @@ ToastDescription.displayName = ToastPrimitives.Description.displayName;
|
|
|
7294
7290
|
var TogglePrimitive = __toESM(require("@radix-ui/react-toggle"), 1);
|
|
7295
7291
|
var import_class_variance_authority8 = require("class-variance-authority");
|
|
7296
7292
|
var React63 = __toESM(require("react"), 1);
|
|
7297
|
-
var
|
|
7293
|
+
var import_jsx_runtime43 = require("react/jsx-runtime");
|
|
7298
7294
|
var toggleVariants = (0, import_class_variance_authority8.cva)(
|
|
7299
7295
|
"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
7296
|
{
|
|
@@ -7317,7 +7313,7 @@ var toggleVariants = (0, import_class_variance_authority8.cva)(
|
|
|
7317
7313
|
);
|
|
7318
7314
|
var Toggle = React63.forwardRef((_a, ref) => {
|
|
7319
7315
|
var _b = _a, { className, variant, size } = _b, props = __objRest(_b, ["className", "variant", "size"]);
|
|
7320
|
-
return /* @__PURE__ */ (0,
|
|
7316
|
+
return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
|
|
7321
7317
|
TogglePrimitive.Root,
|
|
7322
7318
|
__spreadValues({
|
|
7323
7319
|
ref,
|
|
@@ -7330,20 +7326,20 @@ Toggle.displayName = TogglePrimitive.Root.displayName;
|
|
|
7330
7326
|
// src/components/toggle-group.tsx
|
|
7331
7327
|
var ToggleGroupPrimitive = __toESM(require("@radix-ui/react-toggle-group"), 1);
|
|
7332
7328
|
var React64 = __toESM(require("react"), 1);
|
|
7333
|
-
var
|
|
7329
|
+
var import_jsx_runtime44 = require("react/jsx-runtime");
|
|
7334
7330
|
var ToggleGroupContext = React64.createContext({
|
|
7335
7331
|
size: "default",
|
|
7336
7332
|
variant: "default"
|
|
7337
7333
|
});
|
|
7338
7334
|
var ToggleGroup = React64.forwardRef((_a, ref) => {
|
|
7339
7335
|
var _b = _a, { className, variant, size, children } = _b, props = __objRest(_b, ["className", "variant", "size", "children"]);
|
|
7340
|
-
return /* @__PURE__ */ (0,
|
|
7336
|
+
return /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
|
|
7341
7337
|
ToggleGroupPrimitive.Root,
|
|
7342
7338
|
__spreadProps(__spreadValues({
|
|
7343
7339
|
ref,
|
|
7344
7340
|
className: cn("flex items-center justify-center gap-1", className)
|
|
7345
7341
|
}, props), {
|
|
7346
|
-
children: /* @__PURE__ */ (0,
|
|
7342
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(ToggleGroupContext.Provider, { value: { variant, size }, children })
|
|
7347
7343
|
})
|
|
7348
7344
|
);
|
|
7349
7345
|
});
|
|
@@ -7351,7 +7347,7 @@ ToggleGroup.displayName = ToggleGroupPrimitive.Root.displayName;
|
|
|
7351
7347
|
var ToggleGroupItem = React64.forwardRef((_a, ref) => {
|
|
7352
7348
|
var _b = _a, { className, children, variant, size } = _b, props = __objRest(_b, ["className", "children", "variant", "size"]);
|
|
7353
7349
|
const context = React64.useContext(ToggleGroupContext);
|
|
7354
|
-
return /* @__PURE__ */ (0,
|
|
7350
|
+
return /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
|
|
7355
7351
|
ToggleGroupPrimitive.Item,
|
|
7356
7352
|
__spreadProps(__spreadValues({
|
|
7357
7353
|
ref,
|
|
@@ -7372,13 +7368,13 @@ ToggleGroupItem.displayName = ToggleGroupPrimitive.Item.displayName;
|
|
|
7372
7368
|
// src/components/tooltip.tsx
|
|
7373
7369
|
var TooltipPrimitive = __toESM(require("@radix-ui/react-tooltip"), 1);
|
|
7374
7370
|
var React65 = __toESM(require("react"), 1);
|
|
7375
|
-
var
|
|
7371
|
+
var import_jsx_runtime45 = require("react/jsx-runtime");
|
|
7376
7372
|
var TooltipProvider = TooltipPrimitive.Provider;
|
|
7377
7373
|
var Tooltip = TooltipPrimitive.Root;
|
|
7378
7374
|
var TooltipTrigger = TooltipPrimitive.Trigger;
|
|
7379
7375
|
var TooltipContent = React65.forwardRef((_a, ref) => {
|
|
7380
7376
|
var _b = _a, { className, sideOffset = 4 } = _b, props = __objRest(_b, ["className", "sideOffset"]);
|
|
7381
|
-
return /* @__PURE__ */ (0,
|
|
7377
|
+
return /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
|
|
7382
7378
|
TooltipPrimitive.Content,
|
|
7383
7379
|
__spreadValues({
|
|
7384
7380
|
ref,
|
|
@@ -7504,44 +7500,8 @@ function useToast() {
|
|
|
7504
7500
|
});
|
|
7505
7501
|
}
|
|
7506
7502
|
|
|
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
7503
|
// src/shared/alert-modal.tsx
|
|
7544
|
-
var
|
|
7504
|
+
var import_jsx_runtime46 = require("react/jsx-runtime");
|
|
7545
7505
|
var AlertModal = ({
|
|
7546
7506
|
isOpen,
|
|
7547
7507
|
onClose,
|
|
@@ -7554,7 +7514,7 @@ var AlertModal = ({
|
|
|
7554
7514
|
className,
|
|
7555
7515
|
children
|
|
7556
7516
|
}) => {
|
|
7557
|
-
return /* @__PURE__ */ (0,
|
|
7517
|
+
return /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
|
|
7558
7518
|
Modal,
|
|
7559
7519
|
{
|
|
7560
7520
|
title,
|
|
@@ -7562,9 +7522,9 @@ var AlertModal = ({
|
|
|
7562
7522
|
isOpen,
|
|
7563
7523
|
onClose,
|
|
7564
7524
|
className,
|
|
7565
|
-
children: children ? children : /* @__PURE__ */ (0,
|
|
7566
|
-
/* @__PURE__ */ (0,
|
|
7567
|
-
/* @__PURE__ */ (0,
|
|
7525
|
+
children: children ? children : /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)("div", { className: "flex w-full items-center justify-end space-x-2 pt-6", children: [
|
|
7526
|
+
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)(Button, { disabled: loading, variant: "outline", onClick: onClose, children: cancelText }),
|
|
7527
|
+
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)(Button, { disabled: loading, variant: "destructive", onClick: onConfirm, children: confirmText })
|
|
7568
7528
|
] })
|
|
7569
7529
|
}
|
|
7570
7530
|
);
|
|
@@ -7572,58 +7532,18 @@ var AlertModal = ({
|
|
|
7572
7532
|
|
|
7573
7533
|
// src/shared/breadcrumbs.tsx
|
|
7574
7534
|
var import_lucide_react3 = require("lucide-react");
|
|
7575
|
-
var
|
|
7576
|
-
var
|
|
7535
|
+
var import_react35 = require("react");
|
|
7536
|
+
var import_jsx_runtime47 = require("react/jsx-runtime");
|
|
7577
7537
|
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,
|
|
7538
|
+
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: [
|
|
7539
|
+
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 }) }),
|
|
7540
|
+
index < items.length - 1 && /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(BreadcrumbSeparator, { children: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(import_lucide_react3.Slash, {}) }),
|
|
7541
|
+
index === items.length - 1 && /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(BreadcrumbPage, { children: item.title })
|
|
7582
7542
|
] }, item.title)) }) });
|
|
7583
7543
|
}
|
|
7584
7544
|
|
|
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
7545
|
// src/shared/data-table.tsx
|
|
7626
|
-
var
|
|
7546
|
+
var import_react36 = __toESM(require("react"), 1);
|
|
7627
7547
|
var import_react_icons18 = require("@radix-ui/react-icons");
|
|
7628
7548
|
var import_react_table = require("@tanstack/react-table");
|
|
7629
7549
|
var import_lucide_react4 = require("lucide-react");
|
|
@@ -7648,7 +7568,7 @@ function DataTable({
|
|
|
7648
7568
|
onPageChange,
|
|
7649
7569
|
onClick
|
|
7650
7570
|
}) {
|
|
7651
|
-
const [pagination, setPagination] =
|
|
7571
|
+
const [pagination, setPagination] = import_react36.default.useState({
|
|
7652
7572
|
pageIndex: Math.max(page - 1, 0),
|
|
7653
7573
|
pageSize: perPage
|
|
7654
7574
|
});
|
|
@@ -7669,7 +7589,7 @@ function DataTable({
|
|
|
7669
7589
|
onClick(row);
|
|
7670
7590
|
}
|
|
7671
7591
|
};
|
|
7672
|
-
(0,
|
|
7592
|
+
(0, import_react36.useEffect)(() => {
|
|
7673
7593
|
if (onPageChange) {
|
|
7674
7594
|
onPageChange(pagination.pageIndex);
|
|
7675
7595
|
}
|
|
@@ -7803,12 +7723,52 @@ function DataTable({
|
|
|
7803
7723
|
] });
|
|
7804
7724
|
}
|
|
7805
7725
|
|
|
7726
|
+
// src/shared/data-table-skeleton.tsx
|
|
7727
|
+
var import_jsx_runtime49 = require("react/jsx-runtime");
|
|
7728
|
+
function DataTableSkeleton({
|
|
7729
|
+
columnCount,
|
|
7730
|
+
rowCount = 10,
|
|
7731
|
+
searchableColumnCount = 0,
|
|
7732
|
+
filterableColumnCount = 0,
|
|
7733
|
+
showViewOptions = true
|
|
7734
|
+
}) {
|
|
7735
|
+
return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: "w-full space-y-3 overflow-auto", children: [
|
|
7736
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: "flex w-full items-center justify-between space-x-2 overflow-auto p-1", children: [
|
|
7737
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: "flex flex-1 items-center space-x-2 space-y-4", children: [
|
|
7738
|
+
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,
|
|
7739
|
+
filterableColumnCount > 0 ? Array.from({ length: filterableColumnCount }).map((_, i) => /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(Skeleton, { className: "h-10 w-[70px] border-dashed" }, i)) : null
|
|
7740
|
+
] }),
|
|
7741
|
+
showViewOptions ? /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(Skeleton, { className: "ml-auto hidden h-7 w-[70px] lg:flex" }) : null
|
|
7742
|
+
] }),
|
|
7743
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)("div", { className: "rounded-md border", children: /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(Table, { children: [
|
|
7744
|
+
/* @__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)) }),
|
|
7745
|
+
/* @__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)) })
|
|
7746
|
+
] }) }),
|
|
7747
|
+
/* @__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: [
|
|
7748
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)("div", { className: "flex-1", children: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(Skeleton, { className: "h-8 w-40" }) }),
|
|
7749
|
+
/* @__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: [
|
|
7750
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: "flex items-center space-x-2", children: [
|
|
7751
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)(Skeleton, { className: "h-8 w-24" }),
|
|
7752
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)(Skeleton, { className: "h-8 w-[70px]" })
|
|
7753
|
+
] }),
|
|
7754
|
+
/* @__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" }) }),
|
|
7755
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: "flex items-center space-x-2", children: [
|
|
7756
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)(Skeleton, { className: "hidden size-8 lg:block" }),
|
|
7757
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)(Skeleton, { className: "size-8" }),
|
|
7758
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)(Skeleton, { className: "size-8" }),
|
|
7759
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)(Skeleton, { className: "hidden size-8 lg:block" })
|
|
7760
|
+
] })
|
|
7761
|
+
] })
|
|
7762
|
+
] })
|
|
7763
|
+
] });
|
|
7764
|
+
}
|
|
7765
|
+
|
|
7806
7766
|
// src/shared/fileupload.tsx
|
|
7807
7767
|
var import_react_icons19 = require("@radix-ui/react-icons");
|
|
7808
7768
|
var import_lucide_react5 = require("lucide-react");
|
|
7809
|
-
var
|
|
7769
|
+
var import_react37 = require("react");
|
|
7810
7770
|
var import_react_dropzone = require("react-dropzone");
|
|
7811
|
-
var
|
|
7771
|
+
var import_jsx_runtime50 = require("react/jsx-runtime");
|
|
7812
7772
|
function FileUpload({
|
|
7813
7773
|
onChange,
|
|
7814
7774
|
value,
|
|
@@ -7826,18 +7786,18 @@ function FileUpload({
|
|
|
7826
7786
|
const onUpdateFile = (newFiles) => {
|
|
7827
7787
|
onChange(newFiles);
|
|
7828
7788
|
};
|
|
7829
|
-
return /* @__PURE__ */ (0,
|
|
7789
|
+
return /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("div", { className: cn("flex items-center justify-center", className), children: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
|
|
7830
7790
|
"div",
|
|
7831
7791
|
{
|
|
7832
7792
|
className: cn(
|
|
7833
7793
|
"relative h-36 w-36 overflow-hidden rounded-full bg-gray-200 shadow-2xl ",
|
|
7834
7794
|
classNameContent
|
|
7835
7795
|
),
|
|
7836
|
-
children: /* @__PURE__ */ (0,
|
|
7837
|
-
/* @__PURE__ */ (0,
|
|
7838
|
-
value && !!value.length ? /* @__PURE__ */ (0,
|
|
7839
|
-
/* @__PURE__ */ (0,
|
|
7840
|
-
/* @__PURE__ */ (0,
|
|
7796
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("div", __spreadProps(__spreadValues({}, getRootProps({ className: "dropzone cursor-pointer" })), { children: [
|
|
7797
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("input", __spreadValues({}, getInputProps())),
|
|
7798
|
+
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" }),
|
|
7799
|
+
/* @__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: [
|
|
7800
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)(import_lucide_react5.CameraIcon, { className: "h-4 w-4 text-muted-foreground" }),
|
|
7841
7801
|
label
|
|
7842
7802
|
] })
|
|
7843
7803
|
] }))
|
|
@@ -7845,15 +7805,15 @@ function FileUpload({
|
|
|
7845
7805
|
) });
|
|
7846
7806
|
}
|
|
7847
7807
|
function ImagePreview({ file }) {
|
|
7848
|
-
const [objectUrl, setObjectUrl] = (0,
|
|
7849
|
-
(0,
|
|
7808
|
+
const [objectUrl, setObjectUrl] = (0, import_react37.useState)(null);
|
|
7809
|
+
(0, import_react37.useEffect)(() => {
|
|
7850
7810
|
const url = URL.createObjectURL(file);
|
|
7851
7811
|
setObjectUrl(url);
|
|
7852
7812
|
return () => {
|
|
7853
7813
|
URL.revokeObjectURL(url);
|
|
7854
7814
|
};
|
|
7855
7815
|
}, [file]);
|
|
7856
|
-
return objectUrl ? /* @__PURE__ */ (0,
|
|
7816
|
+
return objectUrl ? /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
|
|
7857
7817
|
"img",
|
|
7858
7818
|
{
|
|
7859
7819
|
src: objectUrl,
|
|
@@ -7864,19 +7824,19 @@ function ImagePreview({ file }) {
|
|
|
7864
7824
|
}
|
|
7865
7825
|
|
|
7866
7826
|
// src/shared/heading.tsx
|
|
7867
|
-
var
|
|
7827
|
+
var import_jsx_runtime51 = require("react/jsx-runtime");
|
|
7868
7828
|
function Heading({ title, description, className }) {
|
|
7869
|
-
return /* @__PURE__ */ (0,
|
|
7870
|
-
/* @__PURE__ */ (0,
|
|
7871
|
-
/* @__PURE__ */ (0,
|
|
7829
|
+
return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)("div", { className, children: [
|
|
7830
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)("h2", { className: "text-xl font-bold tracking-tight text-primary sm:text-3xl", children: title }),
|
|
7831
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)("p", { className: "text-sm text-muted-foreground", children: description })
|
|
7872
7832
|
] });
|
|
7873
7833
|
}
|
|
7874
7834
|
|
|
7875
7835
|
// src/shared/page-head.tsx
|
|
7876
7836
|
var import_react_helmet_next = require("react-helmet-next");
|
|
7877
|
-
var
|
|
7837
|
+
var import_jsx_runtime52 = require("react/jsx-runtime");
|
|
7878
7838
|
function PageHead({ title = "shadcn-ui-react" }) {
|
|
7879
|
-
return /* @__PURE__ */ (0,
|
|
7839
|
+
return /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(import_react_helmet_next.Helmet, { children: /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)("title", { children: [
|
|
7880
7840
|
" ",
|
|
7881
7841
|
title,
|
|
7882
7842
|
" "
|
|
@@ -7884,7 +7844,7 @@ function PageHead({ title = "shadcn-ui-react" }) {
|
|
|
7884
7844
|
}
|
|
7885
7845
|
|
|
7886
7846
|
// src/shared/pagination-section.tsx
|
|
7887
|
-
var
|
|
7847
|
+
var import_jsx_runtime53 = require("react/jsx-runtime");
|
|
7888
7848
|
function PaginationSection({
|
|
7889
7849
|
totalPosts,
|
|
7890
7850
|
postsPerPage,
|
|
@@ -7922,17 +7882,17 @@ function PaginationSection({
|
|
|
7922
7882
|
}
|
|
7923
7883
|
};
|
|
7924
7884
|
const renderPages = () => {
|
|
7925
|
-
const renderedPages = activePages.map((page, idx) => /* @__PURE__ */ (0,
|
|
7885
|
+
const renderedPages = activePages.map((page, idx) => /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
7926
7886
|
PaginationItem,
|
|
7927
7887
|
{
|
|
7928
7888
|
className: currentPage === page ? "rounded-md bg-primary" : "",
|
|
7929
|
-
children: /* @__PURE__ */ (0,
|
|
7889
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(PaginationLink, { onClick: () => setCurrentPage(page), size: void 0, children: page })
|
|
7930
7890
|
},
|
|
7931
7891
|
idx
|
|
7932
7892
|
));
|
|
7933
7893
|
if (activePages[0] > 1) {
|
|
7934
7894
|
renderedPages.unshift(
|
|
7935
|
-
/* @__PURE__ */ (0,
|
|
7895
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
7936
7896
|
PaginationEllipsis,
|
|
7937
7897
|
{
|
|
7938
7898
|
onClick: () => setCurrentPage(activePages[0] - 1)
|
|
@@ -7943,7 +7903,7 @@ function PaginationSection({
|
|
|
7943
7903
|
}
|
|
7944
7904
|
if (activePages[activePages.length - 1] < pageNumbers.length) {
|
|
7945
7905
|
renderedPages.push(
|
|
7946
|
-
/* @__PURE__ */ (0,
|
|
7906
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
7947
7907
|
PaginationEllipsis,
|
|
7948
7908
|
{
|
|
7949
7909
|
onClick: () => setCurrentPage(activePages[activePages.length - 1] + 1)
|
|
@@ -7954,21 +7914,21 @@ function PaginationSection({
|
|
|
7954
7914
|
}
|
|
7955
7915
|
return renderedPages;
|
|
7956
7916
|
};
|
|
7957
|
-
return /* @__PURE__ */ (0,
|
|
7958
|
-
/* @__PURE__ */ (0,
|
|
7959
|
-
/* @__PURE__ */ (0,
|
|
7917
|
+
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: [
|
|
7918
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(PaginationItem, { children: [
|
|
7919
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
7960
7920
|
PaginationPreviousLast,
|
|
7961
7921
|
{
|
|
7962
7922
|
onClick: handlePrevPageLast,
|
|
7963
7923
|
size: void 0
|
|
7964
7924
|
}
|
|
7965
7925
|
),
|
|
7966
|
-
/* @__PURE__ */ (0,
|
|
7926
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)(PaginationPrevious, { onClick: handlePrevPage, size: void 0 })
|
|
7967
7927
|
] }),
|
|
7968
7928
|
renderPages(),
|
|
7969
|
-
/* @__PURE__ */ (0,
|
|
7970
|
-
/* @__PURE__ */ (0,
|
|
7971
|
-
/* @__PURE__ */ (0,
|
|
7929
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(PaginationItem, { children: [
|
|
7930
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)(PaginationNext, { onClick: handleNextPage, size: void 0 }),
|
|
7931
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)(PaginationNextLast, { onClick: handleNextPageLast, size: void 0 })
|
|
7972
7932
|
] })
|
|
7973
7933
|
] }) }) });
|
|
7974
7934
|
}
|