@moontra/moonui-pro 2.2.8 → 2.2.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs
CHANGED
|
@@ -1924,7 +1924,7 @@ var MoonUIAspectRatioPro = t.forwardRef(({ className, variant, radius, ratio = 1
|
|
|
1924
1924
|
}
|
|
1925
1925
|
));
|
|
1926
1926
|
MoonUIAspectRatioPro.displayName = "AspectRatioPro";
|
|
1927
|
-
cva(
|
|
1927
|
+
var moonUIAvatarVariantsPro = cva(
|
|
1928
1928
|
"relative flex shrink-0 overflow-hidden",
|
|
1929
1929
|
{
|
|
1930
1930
|
variants: {
|
|
@@ -1962,11 +1962,11 @@ var MoonUIAvatarPro = t.forwardRef(({ className, size, radius, variant, ...props
|
|
|
1962
1962
|
AvatarPrimitive.Root,
|
|
1963
1963
|
{
|
|
1964
1964
|
ref,
|
|
1965
|
-
className: cn(
|
|
1965
|
+
className: cn(moonUIAvatarVariantsPro({ size, radius, variant }), className),
|
|
1966
1966
|
...props
|
|
1967
1967
|
}
|
|
1968
1968
|
));
|
|
1969
|
-
|
|
1969
|
+
MoonUIAvatarPro.displayName = AvatarPrimitive.Root.displayName;
|
|
1970
1970
|
var MoonUIAvatarImagePro = t.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1971
1971
|
AvatarPrimitive.Image,
|
|
1972
1972
|
{
|
|
@@ -1975,7 +1975,7 @@ var MoonUIAvatarImagePro = t.forwardRef(({ className, ...props }, ref) => /* @__
|
|
|
1975
1975
|
...props
|
|
1976
1976
|
}
|
|
1977
1977
|
));
|
|
1978
|
-
|
|
1978
|
+
MoonUIAvatarImagePro.displayName = AvatarPrimitive.Image.displayName;
|
|
1979
1979
|
var MoonUIAvatarFallbackPro = t.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1980
1980
|
AvatarPrimitive.Fallback,
|
|
1981
1981
|
{
|
|
@@ -1987,7 +1987,7 @@ var MoonUIAvatarFallbackPro = t.forwardRef(({ className, ...props }, ref) => /*
|
|
|
1987
1987
|
...props
|
|
1988
1988
|
}
|
|
1989
1989
|
));
|
|
1990
|
-
|
|
1990
|
+
MoonUIAvatarFallbackPro.displayName = AvatarPrimitive.Fallback.displayName;
|
|
1991
1991
|
var MoonUIAvatarGroup = t.forwardRef(
|
|
1992
1992
|
({ className, limit, avatars, overlapOffset = -8, ...props }, ref) => {
|
|
1993
1993
|
const visibleAvatars = limit ? avatars.slice(0, limit) : avatars;
|
|
@@ -2016,7 +2016,7 @@ var MoonUIAvatarGroup = t.forwardRef(
|
|
|
2016
2016
|
{
|
|
2017
2017
|
className: "relative z-0",
|
|
2018
2018
|
style: { marginLeft: `${overlapOffset}px` },
|
|
2019
|
-
children: /* @__PURE__ */ jsx(
|
|
2019
|
+
children: /* @__PURE__ */ jsx(MoonUIAvatarPro, { variant: "border", children: /* @__PURE__ */ jsxs(MoonUIAvatarFallbackPro, { children: [
|
|
2020
2020
|
"+",
|
|
2021
2021
|
remainingCount
|
|
2022
2022
|
] }) })
|
|
@@ -2504,7 +2504,7 @@ var moonUIButtonProVariants = cva(
|
|
|
2504
2504
|
}
|
|
2505
2505
|
}
|
|
2506
2506
|
);
|
|
2507
|
-
var
|
|
2507
|
+
var MoonUIButtonPro = t.forwardRef(
|
|
2508
2508
|
({
|
|
2509
2509
|
className,
|
|
2510
2510
|
variant,
|
|
@@ -2538,7 +2538,7 @@ var MoonUIButtonPro2 = t.forwardRef(
|
|
|
2538
2538
|
);
|
|
2539
2539
|
}
|
|
2540
2540
|
);
|
|
2541
|
-
|
|
2541
|
+
MoonUIButtonPro.displayName = "MoonUIButtonPro";
|
|
2542
2542
|
cva("", {
|
|
2543
2543
|
variants: {
|
|
2544
2544
|
hover: {
|
|
@@ -4620,7 +4620,7 @@ MoonUIInputPro.displayName = "MoonUIInputPro";
|
|
|
4620
4620
|
var moonUILabelVariantsPro = cva(
|
|
4621
4621
|
"text-sm font-medium leading-none text-gray-900 dark:text-gray-200 peer-disabled:cursor-not-allowed peer-disabled:opacity-70 dark:peer-disabled:opacity-60 transition-colors duration-200"
|
|
4622
4622
|
);
|
|
4623
|
-
var
|
|
4623
|
+
var MoonUILabelPro = t.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
4624
4624
|
LabelPrimitive.Root,
|
|
4625
4625
|
{
|
|
4626
4626
|
ref,
|
|
@@ -4628,7 +4628,7 @@ var MoonUILabelPro2 = t.forwardRef(({ className, ...props }, ref) => /* @__PURE_
|
|
|
4628
4628
|
...props
|
|
4629
4629
|
}
|
|
4630
4630
|
));
|
|
4631
|
-
|
|
4631
|
+
MoonUILabelPro.displayName = LabelPrimitive.Root.displayName;
|
|
4632
4632
|
var MoonUIPaginationPro = ({ className, ...props }) => /* @__PURE__ */ jsx(
|
|
4633
4633
|
"nav",
|
|
4634
4634
|
{
|
|
@@ -4813,7 +4813,7 @@ var MoonUIPopoverContentPro = t.forwardRef(({
|
|
|
4813
4813
|
}
|
|
4814
4814
|
)
|
|
4815
4815
|
] }));
|
|
4816
|
-
|
|
4816
|
+
MoonUIPopoverContentPro.displayName = PopoverPrimitive.Content.displayName;
|
|
4817
4817
|
function createContextScope2(scopeName, createContextScopeDeps = []) {
|
|
4818
4818
|
let defaultContexts = [];
|
|
4819
4819
|
function createContext32(rootComponentName, defaultContext) {
|
|
@@ -5355,7 +5355,7 @@ var moonUISeparatorVariantsPro = cva(
|
|
|
5355
5355
|
}
|
|
5356
5356
|
}
|
|
5357
5357
|
);
|
|
5358
|
-
var
|
|
5358
|
+
var MoonUISeparatorPro = t.forwardRef(
|
|
5359
5359
|
({
|
|
5360
5360
|
className,
|
|
5361
5361
|
orientation = "horizontal",
|
|
@@ -6532,7 +6532,7 @@ var AnimatedButton = t__default.forwardRef(
|
|
|
6532
6532
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
6533
6533
|
/* @__PURE__ */ jsx("h3", { className: "font-semibold text-sm mb-2", children: "Pro Feature" }),
|
|
6534
6534
|
/* @__PURE__ */ jsx("p", { className: "text-muted-foreground text-xs mb-4", children: "Animated Button is available exclusively to MoonUI Pro subscribers." }),
|
|
6535
|
-
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(
|
|
6535
|
+
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(MoonUIButtonPro, { size: "sm", children: [
|
|
6536
6536
|
/* @__PURE__ */ jsx(Sparkles, { className: "mr-2 h-4 w-4" }),
|
|
6537
6537
|
"Upgrade to Pro"
|
|
6538
6538
|
] }) })
|
|
@@ -6567,7 +6567,7 @@ var ErrorBoundaryInternal = class extends Component {
|
|
|
6567
6567
|
/* @__PURE__ */ jsx(MoonUICardDescriptionPro, { children: "An error occurred while rendering this component" })
|
|
6568
6568
|
] }),
|
|
6569
6569
|
/* @__PURE__ */ jsx(MoonUICardContentPro, { className: "text-center", children: /* @__PURE__ */ jsxs(
|
|
6570
|
-
|
|
6570
|
+
MoonUIButtonPro,
|
|
6571
6571
|
{
|
|
6572
6572
|
onClick: () => this.setState({ hasError: false, error: void 0 }),
|
|
6573
6573
|
className: "mt-4",
|
|
@@ -6590,7 +6590,7 @@ function ErrorBoundaryWrapper(props) {
|
|
|
6590
6590
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
6591
6591
|
/* @__PURE__ */ jsx("h3", { className: "font-semibold text-sm mb-2", children: "Pro Feature" }),
|
|
6592
6592
|
/* @__PURE__ */ jsx("p", { className: "text-muted-foreground text-xs mb-4", children: "Error Boundary is available exclusively to MoonUI Pro subscribers." }),
|
|
6593
|
-
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(
|
|
6593
|
+
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(MoonUIButtonPro, { size: "sm", children: [
|
|
6594
6594
|
/* @__PURE__ */ jsx(Sparkles, { className: "mr-2 h-4 w-4" }),
|
|
6595
6595
|
"Upgrade to Pro"
|
|
6596
6596
|
] }) })
|
|
@@ -6740,7 +6740,7 @@ var FloatingActionButton = t__default.forwardRef(
|
|
|
6740
6740
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
6741
6741
|
/* @__PURE__ */ jsx("h3", { className: "font-semibold text-sm mb-2", children: "Pro Feature" }),
|
|
6742
6742
|
/* @__PURE__ */ jsx("p", { className: "text-muted-foreground text-xs mb-4", children: "Floating Action Button is available exclusively to MoonUI Pro subscribers." }),
|
|
6743
|
-
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(
|
|
6743
|
+
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(MoonUIButtonPro, { size: "sm", children: [
|
|
6744
6744
|
/* @__PURE__ */ jsx(Sparkles, { className: "mr-2 h-4 w-4" }),
|
|
6745
6745
|
"Upgrade to Pro"
|
|
6746
6746
|
] }) })
|
|
@@ -6864,7 +6864,7 @@ var HoverCard3D = t__default.forwardRef(
|
|
|
6864
6864
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
6865
6865
|
/* @__PURE__ */ jsx("h3", { className: "font-semibold text-sm mb-2", children: "Pro Feature" }),
|
|
6866
6866
|
/* @__PURE__ */ jsx("p", { className: "text-muted-foreground text-xs mb-4", children: "3D Hover Card is available exclusively to MoonUI Pro subscribers." }),
|
|
6867
|
-
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(
|
|
6867
|
+
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(MoonUIButtonPro, { size: "sm", children: [
|
|
6868
6868
|
/* @__PURE__ */ jsx(Sparkles, { className: "mr-2 h-4 w-4" }),
|
|
6869
6869
|
"Upgrade to Pro"
|
|
6870
6870
|
] }) })
|
|
@@ -6986,7 +6986,7 @@ var MagneticButton = t__default.forwardRef(
|
|
|
6986
6986
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
6987
6987
|
/* @__PURE__ */ jsx("h3", { className: "font-semibold text-sm mb-2", children: "Pro Feature" }),
|
|
6988
6988
|
/* @__PURE__ */ jsx("p", { className: "text-muted-foreground text-xs mb-4", children: "Magnetic Button is available exclusively to MoonUI Pro subscribers." }),
|
|
6989
|
-
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(
|
|
6989
|
+
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(MoonUIButtonPro, { size: "sm", children: [
|
|
6990
6990
|
/* @__PURE__ */ jsx(Sparkles, { className: "mr-2 h-4 w-4" }),
|
|
6991
6991
|
"Upgrade to Pro"
|
|
6992
6992
|
] }) })
|
|
@@ -7107,7 +7107,7 @@ var PinchZoom = t__default.forwardRef(
|
|
|
7107
7107
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
7108
7108
|
/* @__PURE__ */ jsx("h3", { className: "font-semibold text-sm mb-2", children: "Pro Feature" }),
|
|
7109
7109
|
/* @__PURE__ */ jsx("p", { className: "text-muted-foreground text-xs mb-4", children: "Pinch Zoom is available exclusively to MoonUI Pro subscribers." }),
|
|
7110
|
-
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(
|
|
7110
|
+
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(MoonUIButtonPro, { size: "sm", children: [
|
|
7111
7111
|
/* @__PURE__ */ jsx(Sparkles, { className: "mr-2 h-4 w-4" }),
|
|
7112
7112
|
"Upgrade to Pro"
|
|
7113
7113
|
] }) })
|
|
@@ -7256,7 +7256,7 @@ var SpotlightCard = t__default.forwardRef(
|
|
|
7256
7256
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
7257
7257
|
/* @__PURE__ */ jsx("h3", { className: "font-semibold text-sm mb-2", children: "Pro Feature" }),
|
|
7258
7258
|
/* @__PURE__ */ jsx("p", { className: "text-muted-foreground text-xs mb-4", children: "Spotlight Card is available exclusively to MoonUI Pro subscribers." }),
|
|
7259
|
-
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(
|
|
7259
|
+
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(MoonUIButtonPro, { size: "sm", children: [
|
|
7260
7260
|
/* @__PURE__ */ jsx(Sparkles, { className: "mr-2 h-4 w-4" }),
|
|
7261
7261
|
"Upgrade to Pro"
|
|
7262
7262
|
] }) })
|
|
@@ -7408,7 +7408,7 @@ function EventDialog({
|
|
|
7408
7408
|
] }),
|
|
7409
7409
|
/* @__PURE__ */ jsxs("form", { onSubmit: handleSubmit, className: "space-y-4", children: [
|
|
7410
7410
|
/* @__PURE__ */ jsxs("div", { className: "space-y-2", children: [
|
|
7411
|
-
/* @__PURE__ */ jsx(
|
|
7411
|
+
/* @__PURE__ */ jsx(MoonUILabelPro, { htmlFor: "title", children: "Title *" }),
|
|
7412
7412
|
/* @__PURE__ */ jsx(
|
|
7413
7413
|
MoonUIInputPro,
|
|
7414
7414
|
{
|
|
@@ -7422,7 +7422,7 @@ function EventDialog({
|
|
|
7422
7422
|
errors.title && /* @__PURE__ */ jsx("p", { className: "text-sm text-red-500", children: errors.title })
|
|
7423
7423
|
] }),
|
|
7424
7424
|
/* @__PURE__ */ jsxs("div", { className: "space-y-2", children: [
|
|
7425
|
-
/* @__PURE__ */ jsx(
|
|
7425
|
+
/* @__PURE__ */ jsx(MoonUILabelPro, { htmlFor: "description", children: "Description" }),
|
|
7426
7426
|
/* @__PURE__ */ jsx(
|
|
7427
7427
|
MoonUITextareaPro,
|
|
7428
7428
|
{
|
|
@@ -7436,7 +7436,7 @@ function EventDialog({
|
|
|
7436
7436
|
] }),
|
|
7437
7437
|
/* @__PURE__ */ jsxs("div", { className: "grid grid-cols-3 gap-4", children: [
|
|
7438
7438
|
/* @__PURE__ */ jsxs("div", { className: "space-y-2", children: [
|
|
7439
|
-
/* @__PURE__ */ jsx(
|
|
7439
|
+
/* @__PURE__ */ jsx(MoonUILabelPro, { htmlFor: "date", children: "Date *" }),
|
|
7440
7440
|
/* @__PURE__ */ jsx(
|
|
7441
7441
|
MoonUIInputPro,
|
|
7442
7442
|
{
|
|
@@ -7450,7 +7450,7 @@ function EventDialog({
|
|
|
7450
7450
|
errors.date && /* @__PURE__ */ jsx("p", { className: "text-sm text-red-500", children: errors.date })
|
|
7451
7451
|
] }),
|
|
7452
7452
|
/* @__PURE__ */ jsxs("div", { className: "space-y-2", children: [
|
|
7453
|
-
/* @__PURE__ */ jsx(
|
|
7453
|
+
/* @__PURE__ */ jsx(MoonUILabelPro, { htmlFor: "startTime", children: "Start Time" }),
|
|
7454
7454
|
/* @__PURE__ */ jsx(
|
|
7455
7455
|
MoonUIInputPro,
|
|
7456
7456
|
{
|
|
@@ -7463,7 +7463,7 @@ function EventDialog({
|
|
|
7463
7463
|
)
|
|
7464
7464
|
] }),
|
|
7465
7465
|
/* @__PURE__ */ jsxs("div", { className: "space-y-2", children: [
|
|
7466
|
-
/* @__PURE__ */ jsx(
|
|
7466
|
+
/* @__PURE__ */ jsx(MoonUILabelPro, { htmlFor: "endTime", children: "End Time" }),
|
|
7467
7467
|
/* @__PURE__ */ jsx(
|
|
7468
7468
|
MoonUIInputPro,
|
|
7469
7469
|
{
|
|
@@ -7479,7 +7479,7 @@ function EventDialog({
|
|
|
7479
7479
|
] })
|
|
7480
7480
|
] }),
|
|
7481
7481
|
/* @__PURE__ */ jsxs("div", { className: "space-y-2", children: [
|
|
7482
|
-
/* @__PURE__ */ jsxs(
|
|
7482
|
+
/* @__PURE__ */ jsxs(MoonUILabelPro, { htmlFor: "location", className: "flex items-center gap-2", children: [
|
|
7483
7483
|
/* @__PURE__ */ jsx(MapPin, { className: "w-4 h-4" }),
|
|
7484
7484
|
"Location"
|
|
7485
7485
|
] }),
|
|
@@ -7495,7 +7495,7 @@ function EventDialog({
|
|
|
7495
7495
|
] }),
|
|
7496
7496
|
/* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
7497
7497
|
/* @__PURE__ */ jsxs("div", { className: "space-y-2", children: [
|
|
7498
|
-
/* @__PURE__ */ jsxs(
|
|
7498
|
+
/* @__PURE__ */ jsxs(MoonUILabelPro, { className: "flex items-center gap-2", children: [
|
|
7499
7499
|
/* @__PURE__ */ jsx(Type, { className: "w-4 h-4" }),
|
|
7500
7500
|
"Type"
|
|
7501
7501
|
] }),
|
|
@@ -7514,7 +7514,7 @@ function EventDialog({
|
|
|
7514
7514
|
] })
|
|
7515
7515
|
] }),
|
|
7516
7516
|
/* @__PURE__ */ jsxs("div", { className: "space-y-2", children: [
|
|
7517
|
-
/* @__PURE__ */ jsxs(
|
|
7517
|
+
/* @__PURE__ */ jsxs(MoonUILabelPro, { className: "flex items-center gap-2", children: [
|
|
7518
7518
|
/* @__PURE__ */ jsx(Palette, { className: "w-4 h-4" }),
|
|
7519
7519
|
"Color"
|
|
7520
7520
|
] }),
|
|
@@ -7545,7 +7545,7 @@ function EventDialog({
|
|
|
7545
7545
|
] })
|
|
7546
7546
|
] }),
|
|
7547
7547
|
/* @__PURE__ */ jsxs("div", { className: "space-y-2", children: [
|
|
7548
|
-
/* @__PURE__ */ jsx(
|
|
7548
|
+
/* @__PURE__ */ jsx(MoonUILabelPro, { htmlFor: "attendees", children: "Attendees" }),
|
|
7549
7549
|
/* @__PURE__ */ jsx(
|
|
7550
7550
|
MoonUIInputPro,
|
|
7551
7551
|
{
|
|
@@ -7558,7 +7558,7 @@ function EventDialog({
|
|
|
7558
7558
|
] }),
|
|
7559
7559
|
/* @__PURE__ */ jsxs(MoonUIDialogFooterPro, { className: "gap-2", children: [
|
|
7560
7560
|
mode === "edit" && onDelete && /* @__PURE__ */ jsx(
|
|
7561
|
-
|
|
7561
|
+
MoonUIButtonPro,
|
|
7562
7562
|
{
|
|
7563
7563
|
type: "button",
|
|
7564
7564
|
variant: "destructive",
|
|
@@ -7568,7 +7568,7 @@ function EventDialog({
|
|
|
7568
7568
|
}
|
|
7569
7569
|
),
|
|
7570
7570
|
/* @__PURE__ */ jsx(
|
|
7571
|
-
|
|
7571
|
+
MoonUIButtonPro,
|
|
7572
7572
|
{
|
|
7573
7573
|
type: "button",
|
|
7574
7574
|
variant: "outline",
|
|
@@ -7577,7 +7577,7 @@ function EventDialog({
|
|
|
7577
7577
|
children: "Cancel"
|
|
7578
7578
|
}
|
|
7579
7579
|
),
|
|
7580
|
-
/* @__PURE__ */ jsx(
|
|
7580
|
+
/* @__PURE__ */ jsx(MoonUIButtonPro, { type: "submit", disabled: isSubmitting, children: isSubmitting ? mode === "create" ? "Creating..." : "Saving..." : mode === "create" ? "Create Event" : "Save Changes" })
|
|
7581
7581
|
] })
|
|
7582
7582
|
] })
|
|
7583
7583
|
] }) });
|
|
@@ -7625,7 +7625,7 @@ function Calendar2({
|
|
|
7625
7625
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
7626
7626
|
/* @__PURE__ */ jsx("h3", { className: "font-semibold text-lg mb-2", children: "Pro Feature" }),
|
|
7627
7627
|
/* @__PURE__ */ jsx("p", { className: "text-muted-foreground text-sm mb-4", children: "Calendar is available exclusively to MoonUI Pro subscribers." }),
|
|
7628
|
-
/* @__PURE__ */ jsx("div", { className: "flex gap-3 justify-center", children: /* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(
|
|
7628
|
+
/* @__PURE__ */ jsx("div", { className: "flex gap-3 justify-center", children: /* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(MoonUIButtonPro, { size: "sm", children: [
|
|
7629
7629
|
/* @__PURE__ */ jsx(Sparkles, { className: "mr-2 h-4 w-4" }),
|
|
7630
7630
|
"Upgrade to Pro"
|
|
7631
7631
|
] }) }) })
|
|
@@ -7783,9 +7783,9 @@ function Calendar2({
|
|
|
7783
7783
|
] })
|
|
7784
7784
|
] }),
|
|
7785
7785
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
|
|
7786
|
-
/* @__PURE__ */ jsx(
|
|
7786
|
+
/* @__PURE__ */ jsx(MoonUIButtonPro, { variant: "outline", size: "sm", onClick: goToToday, children: "Today" }),
|
|
7787
7787
|
/* @__PURE__ */ jsx(
|
|
7788
|
-
|
|
7788
|
+
MoonUIButtonPro,
|
|
7789
7789
|
{
|
|
7790
7790
|
variant: "outline",
|
|
7791
7791
|
size: "sm",
|
|
@@ -7795,7 +7795,7 @@ function Calendar2({
|
|
|
7795
7795
|
}
|
|
7796
7796
|
),
|
|
7797
7797
|
/* @__PURE__ */ jsx(
|
|
7798
|
-
|
|
7798
|
+
MoonUIButtonPro,
|
|
7799
7799
|
{
|
|
7800
7800
|
variant: "outline",
|
|
7801
7801
|
size: "sm",
|
|
@@ -7857,7 +7857,7 @@ function Calendar2({
|
|
|
7857
7857
|
/* @__PURE__ */ jsx("span", { className: "truncate flex-1", children: event.title }),
|
|
7858
7858
|
showEventDetails && /* @__PURE__ */ jsxs("div", { className: "hidden group-hover:flex items-center gap-1 ml-1", children: [
|
|
7859
7859
|
/* @__PURE__ */ jsx(
|
|
7860
|
-
|
|
7860
|
+
MoonUIButtonPro,
|
|
7861
7861
|
{
|
|
7862
7862
|
variant: "ghost",
|
|
7863
7863
|
size: "sm",
|
|
@@ -7867,7 +7867,7 @@ function Calendar2({
|
|
|
7867
7867
|
}
|
|
7868
7868
|
),
|
|
7869
7869
|
/* @__PURE__ */ jsx(
|
|
7870
|
-
|
|
7870
|
+
MoonUIButtonPro,
|
|
7871
7871
|
{
|
|
7872
7872
|
variant: "ghost",
|
|
7873
7873
|
size: "sm",
|
|
@@ -7916,7 +7916,7 @@ function Calendar2({
|
|
|
7916
7916
|
/* @__PURE__ */ jsx("h5", { className: "font-medium", children: event.title }),
|
|
7917
7917
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-1", children: [
|
|
7918
7918
|
/* @__PURE__ */ jsx(
|
|
7919
|
-
|
|
7919
|
+
MoonUIButtonPro,
|
|
7920
7920
|
{
|
|
7921
7921
|
variant: "ghost",
|
|
7922
7922
|
size: "sm",
|
|
@@ -7925,7 +7925,7 @@ function Calendar2({
|
|
|
7925
7925
|
}
|
|
7926
7926
|
),
|
|
7927
7927
|
/* @__PURE__ */ jsx(
|
|
7928
|
-
|
|
7928
|
+
MoonUIButtonPro,
|
|
7929
7929
|
{
|
|
7930
7930
|
variant: "ghost",
|
|
7931
7931
|
size: "sm",
|
|
@@ -7962,7 +7962,7 @@ function Calendar2({
|
|
|
7962
7962
|
getEventsForDate(selectedDate).length === 0 && /* @__PURE__ */ jsxs("div", { className: "text-center py-4", children: [
|
|
7963
7963
|
/* @__PURE__ */ jsx("p", { className: "text-sm text-muted-foreground mb-2", children: "No events scheduled for this date" }),
|
|
7964
7964
|
/* @__PURE__ */ jsxs(
|
|
7965
|
-
|
|
7965
|
+
MoonUIButtonPro,
|
|
7966
7966
|
{
|
|
7967
7967
|
variant: "outline",
|
|
7968
7968
|
size: "sm",
|
|
@@ -8022,7 +8022,7 @@ function Kanban({
|
|
|
8022
8022
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
8023
8023
|
/* @__PURE__ */ jsx("h3", { className: "font-semibold text-lg mb-2", children: "Pro Feature" }),
|
|
8024
8024
|
/* @__PURE__ */ jsx("p", { className: "text-muted-foreground text-sm mb-4", children: "Kanban Board is available exclusively to MoonUI Pro subscribers." }),
|
|
8025
|
-
/* @__PURE__ */ jsx("div", { className: "flex gap-3 justify-center", children: /* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(
|
|
8025
|
+
/* @__PURE__ */ jsx("div", { className: "flex gap-3 justify-center", children: /* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(MoonUIButtonPro, { size: "sm", children: [
|
|
8026
8026
|
/* @__PURE__ */ jsx(Sparkles, { className: "mr-2 h-4 w-4" }),
|
|
8027
8027
|
"Upgrade to Pro"
|
|
8028
8028
|
] }) }) })
|
|
@@ -8147,7 +8147,7 @@ function Kanban({
|
|
|
8147
8147
|
/* @__PURE__ */ jsx(MoonUICardTitlePro, { className: "text-sm font-medium", children: column.title }),
|
|
8148
8148
|
/* @__PURE__ */ jsx(MoonUIBadgePro, { variant: "secondary", className: "text-xs", children: column.cards.length })
|
|
8149
8149
|
] }),
|
|
8150
|
-
/* @__PURE__ */ jsx(
|
|
8150
|
+
/* @__PURE__ */ jsx(MoonUIButtonPro, { variant: "ghost", size: "sm", children: /* @__PURE__ */ jsx(MoreHorizontal, { className: "h-4 w-4" }) })
|
|
8151
8151
|
] }),
|
|
8152
8152
|
column.limit && /* @__PURE__ */ jsx(MoonUICardDescriptionPro, { className: cn(
|
|
8153
8153
|
"text-xs",
|
|
@@ -8176,7 +8176,7 @@ function Kanban({
|
|
|
8176
8176
|
] }),
|
|
8177
8177
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-1 opacity-0 group-hover:opacity-100 transition-opacity", children: [
|
|
8178
8178
|
/* @__PURE__ */ jsx(
|
|
8179
|
-
|
|
8179
|
+
MoonUIButtonPro,
|
|
8180
8180
|
{
|
|
8181
8181
|
variant: "ghost",
|
|
8182
8182
|
size: "sm",
|
|
@@ -8186,7 +8186,7 @@ function Kanban({
|
|
|
8186
8186
|
}
|
|
8187
8187
|
),
|
|
8188
8188
|
/* @__PURE__ */ jsx(
|
|
8189
|
-
|
|
8189
|
+
MoonUIButtonPro,
|
|
8190
8190
|
{
|
|
8191
8191
|
variant: "ghost",
|
|
8192
8192
|
size: "sm",
|
|
@@ -8233,7 +8233,7 @@ function Kanban({
|
|
|
8233
8233
|
card.id
|
|
8234
8234
|
)),
|
|
8235
8235
|
onAddCard && /* @__PURE__ */ jsxs(
|
|
8236
|
-
|
|
8236
|
+
MoonUIButtonPro,
|
|
8237
8237
|
{
|
|
8238
8238
|
variant: "ghost",
|
|
8239
8239
|
size: "sm",
|
|
@@ -8253,7 +8253,7 @@ function Kanban({
|
|
|
8253
8253
|
);
|
|
8254
8254
|
}),
|
|
8255
8255
|
showAddColumn && onAddColumn && /* @__PURE__ */ jsx("div", { className: "flex-shrink-0 w-80", children: /* @__PURE__ */ jsxs(
|
|
8256
|
-
|
|
8256
|
+
MoonUIButtonPro,
|
|
8257
8257
|
{
|
|
8258
8258
|
variant: "outline",
|
|
8259
8259
|
onClick: onAddColumn,
|
|
@@ -46968,7 +46968,7 @@ function RichTextEditor({
|
|
|
46968
46968
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
46969
46969
|
/* @__PURE__ */ jsx("h3", { className: "font-semibold text-lg mb-2", children: "Pro Feature" }),
|
|
46970
46970
|
/* @__PURE__ */ jsx("p", { className: "text-muted-foreground text-sm mb-4", children: "Advanced Rich Text Editor is available exclusively to MoonUI Pro subscribers." }),
|
|
46971
|
-
/* @__PURE__ */ jsx("div", { className: "flex gap-3 justify-center", children: /* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(
|
|
46971
|
+
/* @__PURE__ */ jsx("div", { className: "flex gap-3 justify-center", children: /* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(MoonUIButtonPro, { size: "sm", children: [
|
|
46972
46972
|
/* @__PURE__ */ jsx(Sparkles, { className: "mr-2 h-4 w-4" }),
|
|
46973
46973
|
"Upgrade to Pro"
|
|
46974
46974
|
] }) }) })
|
|
@@ -47394,7 +47394,7 @@ function RichTextEditor({
|
|
|
47394
47394
|
(features.bold || features.italic || features.underline || features.strike || features.code) && (features.heading || features.align) && /* @__PURE__ */ jsx("div", { className: "w-px h-6 bg-border mx-1 shrink-0" }),
|
|
47395
47395
|
(features.heading || features.align) && /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-1 shrink-0", children: [
|
|
47396
47396
|
features.heading && /* @__PURE__ */ jsxs(MoonUIDropdownMenuPro, { children: [
|
|
47397
|
-
/* @__PURE__ */ jsx(MoonUIDropdownMenuTriggerPro, { asChild: true, children: /* @__PURE__ */ jsxs(
|
|
47397
|
+
/* @__PURE__ */ jsx(MoonUIDropdownMenuTriggerPro, { asChild: true, children: /* @__PURE__ */ jsxs(MoonUIButtonPro, { variant: "ghost", size: "sm", className: "h-8 px-2", disabled: isSourceView, children: [
|
|
47398
47398
|
/* @__PURE__ */ jsx(Type, { className: "w-4 h-4 mr-1" }),
|
|
47399
47399
|
/* @__PURE__ */ jsx(ChevronDown, { className: "w-3 h-3" })
|
|
47400
47400
|
] }) }),
|
|
@@ -47506,7 +47506,7 @@ function RichTextEditor({
|
|
|
47506
47506
|
features.color && /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-1 shrink-0", children: [
|
|
47507
47507
|
/* @__PURE__ */ jsxs(MoonUIPopoverPro, { children: [
|
|
47508
47508
|
/* @__PURE__ */ jsx(MoonUIPopoverTriggerPro, { asChild: true, children: /* @__PURE__ */ jsx(
|
|
47509
|
-
|
|
47509
|
+
MoonUIButtonPro,
|
|
47510
47510
|
{
|
|
47511
47511
|
variant: "ghost",
|
|
47512
47512
|
size: "sm",
|
|
@@ -47529,7 +47529,7 @@ function RichTextEditor({
|
|
|
47529
47529
|
] }),
|
|
47530
47530
|
/* @__PURE__ */ jsxs(MoonUIPopoverPro, { children: [
|
|
47531
47531
|
/* @__PURE__ */ jsx(MoonUIPopoverTriggerPro, { asChild: true, children: /* @__PURE__ */ jsx(
|
|
47532
|
-
|
|
47532
|
+
MoonUIButtonPro,
|
|
47533
47533
|
{
|
|
47534
47534
|
variant: "ghost",
|
|
47535
47535
|
size: "sm",
|
|
@@ -47580,7 +47580,7 @@ function RichTextEditor({
|
|
|
47580
47580
|
/* @__PURE__ */ jsx(MoonUIDialogDescriptionPro, { children: "Enter the URL for the link." })
|
|
47581
47581
|
] }),
|
|
47582
47582
|
/* @__PURE__ */ jsx("div", { className: "grid gap-4 py-4", children: /* @__PURE__ */ jsxs("div", { className: "grid gap-2", children: [
|
|
47583
|
-
/* @__PURE__ */ jsx(
|
|
47583
|
+
/* @__PURE__ */ jsx(MoonUILabelPro, { htmlFor: "url", children: "URL" }),
|
|
47584
47584
|
/* @__PURE__ */ jsx(
|
|
47585
47585
|
MoonUIInputPro,
|
|
47586
47586
|
{
|
|
@@ -47599,7 +47599,7 @@ function RichTextEditor({
|
|
|
47599
47599
|
] }) }),
|
|
47600
47600
|
/* @__PURE__ */ jsxs("div", { className: "flex justify-between", children: [
|
|
47601
47601
|
editor.isActive("link") && /* @__PURE__ */ jsx(
|
|
47602
|
-
|
|
47602
|
+
MoonUIButtonPro,
|
|
47603
47603
|
{
|
|
47604
47604
|
variant: "destructive",
|
|
47605
47605
|
onClick: () => {
|
|
@@ -47610,8 +47610,8 @@ function RichTextEditor({
|
|
|
47610
47610
|
}
|
|
47611
47611
|
),
|
|
47612
47612
|
/* @__PURE__ */ jsxs("div", { className: "ml-auto flex gap-2", children: [
|
|
47613
|
-
/* @__PURE__ */ jsx(
|
|
47614
|
-
/* @__PURE__ */ jsx(
|
|
47613
|
+
/* @__PURE__ */ jsx(MoonUIButtonPro, { variant: "outline", onClick: () => setIsLinkDialogOpen(false), children: "Cancel" }),
|
|
47614
|
+
/* @__PURE__ */ jsx(MoonUIButtonPro, { onClick: addLink, children: "Add Link" })
|
|
47615
47615
|
] })
|
|
47616
47616
|
] })
|
|
47617
47617
|
] })
|
|
@@ -47637,7 +47637,7 @@ function RichTextEditor({
|
|
|
47637
47637
|
/* @__PURE__ */ jsx(MoonUIDialogDescriptionPro, { children: "Enter the URL for the image." })
|
|
47638
47638
|
] }),
|
|
47639
47639
|
/* @__PURE__ */ jsx("div", { className: "grid gap-4 py-4", children: /* @__PURE__ */ jsxs("div", { className: "grid gap-2", children: [
|
|
47640
|
-
/* @__PURE__ */ jsx(
|
|
47640
|
+
/* @__PURE__ */ jsx(MoonUILabelPro, { htmlFor: "image-url", children: "Image URL" }),
|
|
47641
47641
|
/* @__PURE__ */ jsx(
|
|
47642
47642
|
MoonUIInputPro,
|
|
47643
47643
|
{
|
|
@@ -47655,8 +47655,8 @@ function RichTextEditor({
|
|
|
47655
47655
|
)
|
|
47656
47656
|
] }) }),
|
|
47657
47657
|
/* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
47658
|
-
/* @__PURE__ */ jsx(
|
|
47659
|
-
/* @__PURE__ */ jsx(
|
|
47658
|
+
/* @__PURE__ */ jsx(MoonUIButtonPro, { variant: "outline", onClick: () => setIsImageDialogOpen(false), children: "Cancel" }),
|
|
47659
|
+
/* @__PURE__ */ jsx(MoonUIButtonPro, { onClick: addImage, children: "Add Image" })
|
|
47660
47660
|
] })
|
|
47661
47661
|
] })
|
|
47662
47662
|
] }),
|
|
@@ -47679,7 +47679,7 @@ function RichTextEditor({
|
|
|
47679
47679
|
/* @__PURE__ */ jsxs("div", { className: "grid gap-4 py-4", children: [
|
|
47680
47680
|
/* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
47681
47681
|
/* @__PURE__ */ jsxs("div", { className: "grid gap-2", children: [
|
|
47682
|
-
/* @__PURE__ */ jsx(
|
|
47682
|
+
/* @__PURE__ */ jsx(MoonUILabelPro, { htmlFor: "rows", children: "Rows" }),
|
|
47683
47683
|
/* @__PURE__ */ jsx(
|
|
47684
47684
|
MoonUIInputPro,
|
|
47685
47685
|
{
|
|
@@ -47693,7 +47693,7 @@ function RichTextEditor({
|
|
|
47693
47693
|
)
|
|
47694
47694
|
] }),
|
|
47695
47695
|
/* @__PURE__ */ jsxs("div", { className: "grid gap-2", children: [
|
|
47696
|
-
/* @__PURE__ */ jsx(
|
|
47696
|
+
/* @__PURE__ */ jsx(MoonUILabelPro, { htmlFor: "cols", children: "Columns" }),
|
|
47697
47697
|
/* @__PURE__ */ jsx(
|
|
47698
47698
|
MoonUIInputPro,
|
|
47699
47699
|
{
|
|
@@ -47717,17 +47717,17 @@ function RichTextEditor({
|
|
|
47717
47717
|
className: "rounded border-gray-300"
|
|
47718
47718
|
}
|
|
47719
47719
|
),
|
|
47720
|
-
/* @__PURE__ */ jsx(
|
|
47720
|
+
/* @__PURE__ */ jsx(MoonUILabelPro, { htmlFor: "headerRow", className: "text-sm font-normal", children: "Include header row" })
|
|
47721
47721
|
] })
|
|
47722
47722
|
] }),
|
|
47723
47723
|
/* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
47724
|
-
/* @__PURE__ */ jsx(
|
|
47725
|
-
/* @__PURE__ */ jsx(
|
|
47724
|
+
/* @__PURE__ */ jsx(MoonUIButtonPro, { variant: "outline", onClick: () => setIsTableDialogOpen(false), children: "Cancel" }),
|
|
47725
|
+
/* @__PURE__ */ jsx(MoonUIButtonPro, { onClick: createTable2, children: "Create Table" })
|
|
47726
47726
|
] })
|
|
47727
47727
|
] })
|
|
47728
47728
|
] }),
|
|
47729
47729
|
/* @__PURE__ */ jsxs(MoonUIDropdownMenuPro, { children: [
|
|
47730
|
-
/* @__PURE__ */ jsx(MoonUIDropdownMenuTriggerPro, { asChild: true, children: /* @__PURE__ */ jsx(
|
|
47730
|
+
/* @__PURE__ */ jsx(MoonUIDropdownMenuTriggerPro, { asChild: true, children: /* @__PURE__ */ jsx(MoonUIButtonPro, { variant: "ghost", size: "sm", className: "h-8 px-1", children: /* @__PURE__ */ jsx(ChevronDown, { className: "w-3 h-3" }) }) }),
|
|
47731
47731
|
/* @__PURE__ */ jsxs(MoonUIDropdownMenuContentPro, { children: [
|
|
47732
47732
|
/* @__PURE__ */ jsx(MoonUIDropdownMenuItemPro, { onClick: () => editor.chain().focus().addColumnBefore().run(), children: "Add column before" }),
|
|
47733
47733
|
/* @__PURE__ */ jsx(MoonUIDropdownMenuItemPro, { onClick: () => editor.chain().focus().addColumnAfter().run(), children: "Add column after" }),
|
|
@@ -47786,7 +47786,7 @@ function RichTextEditor({
|
|
|
47786
47786
|
features.ai && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
47787
47787
|
/* @__PURE__ */ jsxs(MoonUIDropdownMenuPro, { children: [
|
|
47788
47788
|
/* @__PURE__ */ jsx(MoonUIDropdownMenuTriggerPro, { asChild: true, children: /* @__PURE__ */ jsxs(
|
|
47789
|
-
|
|
47789
|
+
MoonUIButtonPro,
|
|
47790
47790
|
{
|
|
47791
47791
|
variant: "ghost",
|
|
47792
47792
|
size: "sm",
|
|
@@ -47869,7 +47869,7 @@ function RichTextEditor({
|
|
|
47869
47869
|
] }),
|
|
47870
47870
|
/* @__PURE__ */ jsxs("div", { className: "grid gap-4 py-4", children: [
|
|
47871
47871
|
/* @__PURE__ */ jsxs("div", { className: "grid gap-2", children: [
|
|
47872
|
-
/* @__PURE__ */ jsx(
|
|
47872
|
+
/* @__PURE__ */ jsx(MoonUILabelPro, { htmlFor: "provider", children: "Provider" }),
|
|
47873
47873
|
/* @__PURE__ */ jsxs(
|
|
47874
47874
|
MoonUISelectPro,
|
|
47875
47875
|
{
|
|
@@ -47888,7 +47888,7 @@ function RichTextEditor({
|
|
|
47888
47888
|
)
|
|
47889
47889
|
] }),
|
|
47890
47890
|
/* @__PURE__ */ jsxs("div", { className: "grid gap-2", children: [
|
|
47891
|
-
/* @__PURE__ */ jsx(
|
|
47891
|
+
/* @__PURE__ */ jsx(MoonUILabelPro, { htmlFor: "apiKey", children: "API Key" }),
|
|
47892
47892
|
/* @__PURE__ */ jsx(
|
|
47893
47893
|
MoonUIInputPro,
|
|
47894
47894
|
{
|
|
@@ -47901,7 +47901,7 @@ function RichTextEditor({
|
|
|
47901
47901
|
)
|
|
47902
47902
|
] }),
|
|
47903
47903
|
/* @__PURE__ */ jsxs("div", { className: "grid gap-2", children: [
|
|
47904
|
-
/* @__PURE__ */ jsx(
|
|
47904
|
+
/* @__PURE__ */ jsx(MoonUILabelPro, { htmlFor: "model", children: "Model" }),
|
|
47905
47905
|
/* @__PURE__ */ jsxs(
|
|
47906
47906
|
MoonUISelectPro,
|
|
47907
47907
|
{
|
|
@@ -47934,7 +47934,7 @@ function RichTextEditor({
|
|
|
47934
47934
|
] }),
|
|
47935
47935
|
/* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
47936
47936
|
/* @__PURE__ */ jsxs("div", { className: "grid gap-2", children: [
|
|
47937
|
-
/* @__PURE__ */ jsx(
|
|
47937
|
+
/* @__PURE__ */ jsx(MoonUILabelPro, { htmlFor: "temperature", children: "Temperature" }),
|
|
47938
47938
|
/* @__PURE__ */ jsx(
|
|
47939
47939
|
MoonUIInputPro,
|
|
47940
47940
|
{
|
|
@@ -47949,7 +47949,7 @@ function RichTextEditor({
|
|
|
47949
47949
|
)
|
|
47950
47950
|
] }),
|
|
47951
47951
|
/* @__PURE__ */ jsxs("div", { className: "grid gap-2", children: [
|
|
47952
|
-
/* @__PURE__ */ jsx(
|
|
47952
|
+
/* @__PURE__ */ jsx(MoonUILabelPro, { htmlFor: "maxTokens", children: "Max Tokens" }),
|
|
47953
47953
|
/* @__PURE__ */ jsx(
|
|
47954
47954
|
MoonUIInputPro,
|
|
47955
47955
|
{
|
|
@@ -47964,7 +47964,7 @@ function RichTextEditor({
|
|
|
47964
47964
|
] })
|
|
47965
47965
|
] })
|
|
47966
47966
|
] }),
|
|
47967
|
-
/* @__PURE__ */ jsx("div", { className: "flex justify-end", children: /* @__PURE__ */ jsx(
|
|
47967
|
+
/* @__PURE__ */ jsx("div", { className: "flex justify-end", children: /* @__PURE__ */ jsx(MoonUIButtonPro, { onClick: () => {
|
|
47968
47968
|
setIsAiSettingsOpen(false);
|
|
47969
47969
|
toast({
|
|
47970
47970
|
title: "Settings saved",
|
|
@@ -47983,7 +47983,7 @@ function RichTextEditor({
|
|
|
47983
47983
|
] }),
|
|
47984
47984
|
/* @__PURE__ */ jsxs("div", { className: "grid gap-6 py-4", children: [
|
|
47985
47985
|
/* @__PURE__ */ jsxs("div", { className: "grid gap-3", children: [
|
|
47986
|
-
/* @__PURE__ */ jsx(
|
|
47986
|
+
/* @__PURE__ */ jsx(MoonUILabelPro, { htmlFor: "border-width", children: "Border Width" }),
|
|
47987
47987
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-4", children: [
|
|
47988
47988
|
/* @__PURE__ */ jsx(
|
|
47989
47989
|
MoonUISliderPro,
|
|
@@ -48004,7 +48004,7 @@ function RichTextEditor({
|
|
|
48004
48004
|
] })
|
|
48005
48005
|
] }),
|
|
48006
48006
|
/* @__PURE__ */ jsxs("div", { className: "grid gap-3", children: [
|
|
48007
|
-
/* @__PURE__ */ jsx(
|
|
48007
|
+
/* @__PURE__ */ jsx(MoonUILabelPro, { htmlFor: "border-color", children: "Border Color" }),
|
|
48008
48008
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
|
|
48009
48009
|
/* @__PURE__ */ jsx(
|
|
48010
48010
|
MoonUIColorPickerPro,
|
|
@@ -48020,7 +48020,7 @@ function RichTextEditor({
|
|
|
48020
48020
|
] })
|
|
48021
48021
|
] }),
|
|
48022
48022
|
/* @__PURE__ */ jsxs("div", { className: "grid gap-3", children: [
|
|
48023
|
-
/* @__PURE__ */ jsx(
|
|
48023
|
+
/* @__PURE__ */ jsx(MoonUILabelPro, { htmlFor: "border-style", children: "Border Style" }),
|
|
48024
48024
|
/* @__PURE__ */ jsxs(MoonUISelectPro, { value: tableBorderStyle, onValueChange: setTableBorderStyle, children: [
|
|
48025
48025
|
/* @__PURE__ */ jsx(MoonUISelectTriggerPro, { children: /* @__PURE__ */ jsx(MoonUISelectValuePro, {}) }),
|
|
48026
48026
|
/* @__PURE__ */ jsxs(MoonUISelectContentPro, { children: [
|
|
@@ -48036,7 +48036,7 @@ function RichTextEditor({
|
|
|
48036
48036
|
] })
|
|
48037
48037
|
] }),
|
|
48038
48038
|
/* @__PURE__ */ jsxs("div", { className: "grid gap-3", children: [
|
|
48039
|
-
/* @__PURE__ */ jsx(
|
|
48039
|
+
/* @__PURE__ */ jsx(MoonUILabelPro, { children: "Preview" }),
|
|
48040
48040
|
/* @__PURE__ */ jsx("div", { className: "p-4 bg-gray-50 dark:bg-gray-900 rounded-lg", children: /* @__PURE__ */ jsxs(
|
|
48041
48041
|
"table",
|
|
48042
48042
|
{
|
|
@@ -48098,8 +48098,8 @@ function RichTextEditor({
|
|
|
48098
48098
|
] })
|
|
48099
48099
|
] }),
|
|
48100
48100
|
/* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
48101
|
-
/* @__PURE__ */ jsx(
|
|
48102
|
-
/* @__PURE__ */ jsx(
|
|
48101
|
+
/* @__PURE__ */ jsx(MoonUIButtonPro, { variant: "outline", onClick: () => setIsTableBorderDialogOpen(false), children: "Cancel" }),
|
|
48102
|
+
/* @__PURE__ */ jsx(MoonUIButtonPro, { onClick: () => {
|
|
48103
48103
|
applyTableBorders(tableBorderWidth, tableBorderColor, tableBorderStyle);
|
|
48104
48104
|
setIsTableBorderDialogOpen(false);
|
|
48105
48105
|
toast({
|
|
@@ -49110,7 +49110,7 @@ function AdvancedChart({
|
|
|
49110
49110
|
if (error) {
|
|
49111
49111
|
return /* @__PURE__ */ jsx(MoonUICardPro, { className: cn("w-full", className), children: /* @__PURE__ */ jsx(MoonUICardContentPro, { className: "flex items-center justify-center", style: { height }, children: /* @__PURE__ */ jsxs("div", { className: "text-center", children: [
|
|
49112
49112
|
/* @__PURE__ */ jsx("p", { className: "text-destructive mb-2", children: error }),
|
|
49113
|
-
onRefresh && /* @__PURE__ */ jsxs(
|
|
49113
|
+
onRefresh && /* @__PURE__ */ jsxs(MoonUIButtonPro, { variant: "outline", onClick: onRefresh, children: [
|
|
49114
49114
|
/* @__PURE__ */ jsx(RefreshCw, { className: "mr-2 h-4 w-4" }),
|
|
49115
49115
|
"Retry"
|
|
49116
49116
|
] })
|
|
@@ -49139,10 +49139,10 @@ function AdvancedChart({
|
|
|
49139
49139
|
subtitle && /* @__PURE__ */ jsx("p", { className: "text-xs text-muted-foreground", children: subtitle })
|
|
49140
49140
|
] }),
|
|
49141
49141
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center space-x-1", children: [
|
|
49142
|
-
onRefresh && /* @__PURE__ */ jsx(
|
|
49143
|
-
/* @__PURE__ */ jsx(
|
|
49144
|
-
onExport && /* @__PURE__ */ jsx(
|
|
49145
|
-
/* @__PURE__ */ jsx(
|
|
49142
|
+
onRefresh && /* @__PURE__ */ jsx(MoonUIButtonPro, { variant: "ghost", size: "sm", onClick: onRefresh, children: /* @__PURE__ */ jsx(RefreshCw, { className: "h-4 w-4" }) }),
|
|
49143
|
+
/* @__PURE__ */ jsx(MoonUIButtonPro, { variant: "ghost", size: "sm", children: /* @__PURE__ */ jsx(Settings, { className: "h-4 w-4" }) }),
|
|
49144
|
+
onExport && /* @__PURE__ */ jsx(MoonUIButtonPro, { variant: "ghost", size: "sm", onClick: () => handleExport("png"), children: /* @__PURE__ */ jsx(Download, { className: "h-4 w-4" }) }),
|
|
49145
|
+
/* @__PURE__ */ jsx(MoonUIButtonPro, { variant: "ghost", size: "sm", onClick: () => setIsFullscreen(!isFullscreen), children: /* @__PURE__ */ jsx(Maximize2, { className: "h-4 w-4" }) })
|
|
49146
49146
|
] })
|
|
49147
49147
|
] }),
|
|
49148
49148
|
/* @__PURE__ */ jsx(MoonUICardContentPro, { children: responsive ? /* @__PURE__ */ jsx(ResponsiveContainer, { width: "100%", height, children: renderChart() }) : /* @__PURE__ */ jsx("div", { style: { width: "100%", height: `${height}px` }, children: renderChart() }) })
|
|
@@ -49260,7 +49260,7 @@ function Dashboard({
|
|
|
49260
49260
|
widget.description && /* @__PURE__ */ jsx(MoonUICardDescriptionPro, { className: "mt-1", children: widget.description })
|
|
49261
49261
|
] }),
|
|
49262
49262
|
/* @__PURE__ */ jsx(
|
|
49263
|
-
|
|
49263
|
+
MoonUIButtonPro,
|
|
49264
49264
|
{
|
|
49265
49265
|
variant: "ghost",
|
|
49266
49266
|
size: "sm",
|
|
@@ -49320,7 +49320,7 @@ function Dashboard({
|
|
|
49320
49320
|
/* @__PURE__ */ jsx("p", { className: "text-muted-foreground", children: description })
|
|
49321
49321
|
] }),
|
|
49322
49322
|
refreshable && /* @__PURE__ */ jsxs(
|
|
49323
|
-
|
|
49323
|
+
MoonUIButtonPro,
|
|
49324
49324
|
{
|
|
49325
49325
|
variant: "outline",
|
|
49326
49326
|
onClick: handleRefresh,
|
|
@@ -49335,15 +49335,15 @@ function Dashboard({
|
|
|
49335
49335
|
/* @__PURE__ */ jsx("div", { className: "grid gap-4 md:grid-cols-2 lg:grid-cols-4", children: displayMetrics.map(renderMetricCard) }),
|
|
49336
49336
|
widgets.length > 0 && /* @__PURE__ */ jsx("div", { className: "grid gap-4 md:grid-cols-2 lg:grid-cols-4", children: widgets.map(renderWidget) }),
|
|
49337
49337
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 pt-4 border-t", children: [
|
|
49338
|
-
/* @__PURE__ */ jsxs(
|
|
49338
|
+
/* @__PURE__ */ jsxs(MoonUIButtonPro, { variant: "outline", size: "sm", children: [
|
|
49339
49339
|
/* @__PURE__ */ jsx(Download, { className: "h-4 w-4 mr-2" }),
|
|
49340
49340
|
"Export Data"
|
|
49341
49341
|
] }),
|
|
49342
|
-
/* @__PURE__ */ jsxs(
|
|
49342
|
+
/* @__PURE__ */ jsxs(MoonUIButtonPro, { variant: "outline", size: "sm", children: [
|
|
49343
49343
|
/* @__PURE__ */ jsx(Calendar, { className: "h-4 w-4 mr-2" }),
|
|
49344
49344
|
"Schedule Report"
|
|
49345
49345
|
] }),
|
|
49346
|
-
/* @__PURE__ */ jsxs(
|
|
49346
|
+
/* @__PURE__ */ jsxs(MoonUIButtonPro, { variant: "outline", size: "sm", children: [
|
|
49347
49347
|
/* @__PURE__ */ jsx(Star, { className: "h-4 w-4 mr-2" }),
|
|
49348
49348
|
"Save View"
|
|
49349
49349
|
] })
|
|
@@ -49504,7 +49504,7 @@ var AdvancedFormsInternal = ({
|
|
|
49504
49504
|
transition: { delay: index * 0.1 },
|
|
49505
49505
|
className: "space-y-2",
|
|
49506
49506
|
children: [
|
|
49507
|
-
/* @__PURE__ */ jsx("div", { className: "flex items-center justify-between", children: /* @__PURE__ */ jsxs(
|
|
49507
|
+
/* @__PURE__ */ jsx("div", { className: "flex items-center justify-between", children: /* @__PURE__ */ jsxs(MoonUILabelPro, { htmlFor: field.name, className: "flex items-center gap-2", children: [
|
|
49508
49508
|
field.label,
|
|
49509
49509
|
field.required && /* @__PURE__ */ jsx("span", { className: "text-destructive", children: "*" }),
|
|
49510
49510
|
isTouched && !error && /* @__PURE__ */ jsx(CheckCircle, { className: "h-4 w-4 text-green-500" }),
|
|
@@ -49554,7 +49554,7 @@ var AdvancedFormsInternal = ({
|
|
|
49554
49554
|
}
|
|
49555
49555
|
),
|
|
49556
49556
|
/* @__PURE__ */ jsx(
|
|
49557
|
-
|
|
49557
|
+
MoonUIButtonPro,
|
|
49558
49558
|
{
|
|
49559
49559
|
type: "button",
|
|
49560
49560
|
variant: "ghost",
|
|
@@ -49601,7 +49601,7 @@ var AdvancedFormsInternal = ({
|
|
|
49601
49601
|
onCheckedChange: (checked) => setValue(field.name, checked)
|
|
49602
49602
|
}
|
|
49603
49603
|
),
|
|
49604
|
-
/* @__PURE__ */ jsx(
|
|
49604
|
+
/* @__PURE__ */ jsx(MoonUILabelPro, { htmlFor: field.name, className: "text-sm", children: field.placeholder || "Check this option" })
|
|
49605
49605
|
] }),
|
|
49606
49606
|
field.type === "switch" && /* @__PURE__ */ jsxs("div", { className: "flex items-center space-x-2", children: [
|
|
49607
49607
|
/* @__PURE__ */ jsx(
|
|
@@ -49612,7 +49612,7 @@ var AdvancedFormsInternal = ({
|
|
|
49612
49612
|
onCheckedChange: (checked) => setValue(field.name, checked)
|
|
49613
49613
|
}
|
|
49614
49614
|
),
|
|
49615
|
-
/* @__PURE__ */ jsx(
|
|
49615
|
+
/* @__PURE__ */ jsx(MoonUILabelPro, { htmlFor: field.name, className: "text-sm", children: field.placeholder || "Toggle this option" })
|
|
49616
49616
|
] }),
|
|
49617
49617
|
field.type === "file" && /* @__PURE__ */ jsxs("div", { className: "space-y-2", children: [
|
|
49618
49618
|
/* @__PURE__ */ jsx("div", { className: "flex items-center justify-center w-full", children: /* @__PURE__ */ jsxs(
|
|
@@ -49644,7 +49644,7 @@ var AdvancedFormsInternal = ({
|
|
|
49644
49644
|
uploadedFiles[field.name] && uploadedFiles[field.name].length > 0 && /* @__PURE__ */ jsx("div", { className: "space-y-2", children: uploadedFiles[field.name].map((file, index2) => /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between p-2 bg-muted rounded-md", children: [
|
|
49645
49645
|
/* @__PURE__ */ jsx("span", { className: "text-sm truncate", children: file.name }),
|
|
49646
49646
|
/* @__PURE__ */ jsx(
|
|
49647
|
-
|
|
49647
|
+
MoonUIButtonPro,
|
|
49648
49648
|
{
|
|
49649
49649
|
type: "button",
|
|
49650
49650
|
variant: "ghost",
|
|
@@ -49711,7 +49711,7 @@ var AdvancedFormsInternal = ({
|
|
|
49711
49711
|
" fields completed"
|
|
49712
49712
|
] }),
|
|
49713
49713
|
/* @__PURE__ */ jsx(
|
|
49714
|
-
|
|
49714
|
+
MoonUIButtonPro,
|
|
49715
49715
|
{
|
|
49716
49716
|
type: "submit",
|
|
49717
49717
|
disabled: isSubmitting || !isValid,
|
|
@@ -49738,7 +49738,7 @@ var AdvancedForms = ({ className, ...props }) => {
|
|
|
49738
49738
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
49739
49739
|
/* @__PURE__ */ jsx("h3", { className: "font-semibold text-sm mb-2", children: "Pro Feature" }),
|
|
49740
49740
|
/* @__PURE__ */ jsx("p", { className: "text-muted-foreground text-xs mb-4", children: "Advanced Forms is available exclusively to MoonUI Pro subscribers." }),
|
|
49741
|
-
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(
|
|
49741
|
+
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(MoonUIButtonPro, { size: "sm", children: [
|
|
49742
49742
|
/* @__PURE__ */ jsx(Sparkles, { className: "mr-2 h-4 w-4" }),
|
|
49743
49743
|
"Upgrade to Pro"
|
|
49744
49744
|
] }) })
|
|
@@ -49876,7 +49876,7 @@ var GitHubStarsInternal = ({
|
|
|
49876
49876
|
/* @__PURE__ */ jsx("h3", { className: "font-semibold", children: "Failed to load repositories" }),
|
|
49877
49877
|
/* @__PURE__ */ jsx("p", { className: "text-sm text-muted-foreground", children: error })
|
|
49878
49878
|
] }),
|
|
49879
|
-
/* @__PURE__ */ jsxs(
|
|
49879
|
+
/* @__PURE__ */ jsxs(MoonUIButtonPro, { onClick: fetchRepositories, variant: "outline", children: [
|
|
49880
49880
|
/* @__PURE__ */ jsx(RefreshCw, { className: "h-4 w-4 mr-2" }),
|
|
49881
49881
|
"Try Again"
|
|
49882
49882
|
] })
|
|
@@ -49903,7 +49903,7 @@ var GitHubStarsInternal = ({
|
|
|
49903
49903
|
" repos"
|
|
49904
49904
|
] }),
|
|
49905
49905
|
autoRefresh && /* @__PURE__ */ jsx(MoonUIBadgePro, { variant: "secondary", children: "Auto-refresh" }),
|
|
49906
|
-
/* @__PURE__ */ jsx(
|
|
49906
|
+
/* @__PURE__ */ jsx(MoonUIButtonPro, { onClick: fetchRepositories, variant: "outline", size: "sm", children: /* @__PURE__ */ jsx(RefreshCw, { className: "h-4 w-4" }) })
|
|
49907
49907
|
] })
|
|
49908
49908
|
] }),
|
|
49909
49909
|
/* @__PURE__ */ jsx("div", { className: cn(
|
|
@@ -49927,7 +49927,7 @@ var GitHubStarsInternal = ({
|
|
|
49927
49927
|
showOwner && /* @__PURE__ */ jsx("p", { className: "text-xs text-muted-foreground truncate", children: repo.owner.login })
|
|
49928
49928
|
] }),
|
|
49929
49929
|
/* @__PURE__ */ jsx(
|
|
49930
|
-
|
|
49930
|
+
MoonUIButtonPro,
|
|
49931
49931
|
{
|
|
49932
49932
|
variant: "ghost",
|
|
49933
49933
|
size: "sm",
|
|
@@ -49992,7 +49992,7 @@ var GitHubStars = ({ className, ...props }) => {
|
|
|
49992
49992
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
49993
49993
|
/* @__PURE__ */ jsx("h3", { className: "font-semibold text-sm mb-2", children: "Pro Feature" }),
|
|
49994
49994
|
/* @__PURE__ */ jsx("p", { className: "text-muted-foreground text-xs mb-4", children: "GitHub Stars is available exclusively to MoonUI Pro subscribers." }),
|
|
49995
|
-
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(
|
|
49995
|
+
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(MoonUIButtonPro, { size: "sm", children: [
|
|
49996
49996
|
/* @__PURE__ */ jsx(Sparkles, { className: "mr-2 h-4 w-4" }),
|
|
49997
49997
|
"Upgrade to Pro"
|
|
49998
49998
|
] }) })
|
|
@@ -50182,7 +50182,7 @@ var HealthCheckInternal = ({
|
|
|
50182
50182
|
/* @__PURE__ */ jsx("div", { className: "text-xs text-muted-foreground", children: "Uptime" })
|
|
50183
50183
|
] }),
|
|
50184
50184
|
/* @__PURE__ */ jsx(
|
|
50185
|
-
|
|
50185
|
+
MoonUIButtonPro,
|
|
50186
50186
|
{
|
|
50187
50187
|
onClick: checkAllEndpoints,
|
|
50188
50188
|
disabled: isChecking,
|
|
@@ -50285,7 +50285,7 @@ var HealthCheck = ({ className, ...props }) => {
|
|
|
50285
50285
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
50286
50286
|
/* @__PURE__ */ jsx("h3", { className: "font-semibold text-sm mb-2", children: "Pro Feature" }),
|
|
50287
50287
|
/* @__PURE__ */ jsx("p", { className: "text-muted-foreground text-xs mb-4", children: "Health Check is available exclusively to MoonUI Pro subscribers." }),
|
|
50288
|
-
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(
|
|
50288
|
+
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(MoonUIButtonPro, { size: "sm", children: [
|
|
50289
50289
|
/* @__PURE__ */ jsx(Sparkles, { className: "mr-2 h-4 w-4" }),
|
|
50290
50290
|
"Upgrade to Pro"
|
|
50291
50291
|
] }) })
|
|
@@ -50506,7 +50506,7 @@ var LazyComponent = ({ className, ...props }) => {
|
|
|
50506
50506
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
50507
50507
|
/* @__PURE__ */ jsx("h3", { className: "font-semibold text-sm mb-2", children: "Pro Feature" }),
|
|
50508
50508
|
/* @__PURE__ */ jsx("p", { className: "text-muted-foreground text-xs mb-4", children: "Lazy Component is available exclusively to MoonUI Pro subscribers." }),
|
|
50509
|
-
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(
|
|
50509
|
+
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(MoonUIButtonPro, { size: "sm", children: [
|
|
50510
50510
|
/* @__PURE__ */ jsx(Sparkles, { className: "mr-2 h-4 w-4" }),
|
|
50511
50511
|
"Upgrade to Pro"
|
|
50512
50512
|
] }) })
|
|
@@ -50673,7 +50673,7 @@ var OptimizedImageInternal = ({
|
|
|
50673
50673
|
children: [
|
|
50674
50674
|
/* @__PURE__ */ jsxs("div", { className: "absolute top-2 right-2 flex gap-2 opacity-0 group-hover:opacity-100 transition-opacity duration-200", children: [
|
|
50675
50675
|
showInfo && /* @__PURE__ */ jsx(
|
|
50676
|
-
|
|
50676
|
+
MoonUIButtonPro,
|
|
50677
50677
|
{
|
|
50678
50678
|
size: "sm",
|
|
50679
50679
|
variant: "secondary",
|
|
@@ -50683,7 +50683,7 @@ var OptimizedImageInternal = ({
|
|
|
50683
50683
|
}
|
|
50684
50684
|
),
|
|
50685
50685
|
showDownload && /* @__PURE__ */ jsx(
|
|
50686
|
-
|
|
50686
|
+
MoonUIButtonPro,
|
|
50687
50687
|
{
|
|
50688
50688
|
size: "sm",
|
|
50689
50689
|
variant: "secondary",
|
|
@@ -50693,7 +50693,7 @@ var OptimizedImageInternal = ({
|
|
|
50693
50693
|
}
|
|
50694
50694
|
),
|
|
50695
50695
|
showPreview && /* @__PURE__ */ jsx(
|
|
50696
|
-
|
|
50696
|
+
MoonUIButtonPro,
|
|
50697
50697
|
{
|
|
50698
50698
|
size: "sm",
|
|
50699
50699
|
variant: "secondary",
|
|
@@ -50745,7 +50745,7 @@ var OptimizedImageInternal = ({
|
|
|
50745
50745
|
/* @__PURE__ */ jsxs("div", { className: "absolute top-4 right-4 flex gap-2 z-10", children: [
|
|
50746
50746
|
showZoom && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
50747
50747
|
/* @__PURE__ */ jsx(
|
|
50748
|
-
|
|
50748
|
+
MoonUIButtonPro,
|
|
50749
50749
|
{
|
|
50750
50750
|
size: "sm",
|
|
50751
50751
|
variant: "secondary",
|
|
@@ -50759,7 +50759,7 @@ var OptimizedImageInternal = ({
|
|
|
50759
50759
|
"%"
|
|
50760
50760
|
] }),
|
|
50761
50761
|
/* @__PURE__ */ jsx(
|
|
50762
|
-
|
|
50762
|
+
MoonUIButtonPro,
|
|
50763
50763
|
{
|
|
50764
50764
|
size: "sm",
|
|
50765
50765
|
variant: "secondary",
|
|
@@ -50769,7 +50769,7 @@ var OptimizedImageInternal = ({
|
|
|
50769
50769
|
}
|
|
50770
50770
|
),
|
|
50771
50771
|
/* @__PURE__ */ jsx(
|
|
50772
|
-
|
|
50772
|
+
MoonUIButtonPro,
|
|
50773
50773
|
{
|
|
50774
50774
|
size: "sm",
|
|
50775
50775
|
variant: "secondary",
|
|
@@ -50779,7 +50779,7 @@ var OptimizedImageInternal = ({
|
|
|
50779
50779
|
)
|
|
50780
50780
|
] }),
|
|
50781
50781
|
/* @__PURE__ */ jsx(
|
|
50782
|
-
|
|
50782
|
+
MoonUIButtonPro,
|
|
50783
50783
|
{
|
|
50784
50784
|
size: "sm",
|
|
50785
50785
|
variant: "secondary",
|
|
@@ -50817,7 +50817,7 @@ var OptimizedImage = ({ className, ...props }) => {
|
|
|
50817
50817
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
50818
50818
|
/* @__PURE__ */ jsx("h3", { className: "font-semibold text-sm mb-2", children: "Pro Feature" }),
|
|
50819
50819
|
/* @__PURE__ */ jsx("p", { className: "text-muted-foreground text-xs mb-4", children: "Optimized Image is available exclusively to MoonUI Pro subscribers." }),
|
|
50820
|
-
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(
|
|
50820
|
+
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(MoonUIButtonPro, { size: "sm", children: [
|
|
50821
50821
|
/* @__PURE__ */ jsx(Sparkles, { className: "mr-2 h-4 w-4" }),
|
|
50822
50822
|
"Upgrade to Pro"
|
|
50823
50823
|
] }) })
|
|
@@ -51068,7 +51068,7 @@ var PerformanceDebuggerInternal = ({
|
|
|
51068
51068
|
};
|
|
51069
51069
|
if (!isVisible) {
|
|
51070
51070
|
return /* @__PURE__ */ jsxs(
|
|
51071
|
-
|
|
51071
|
+
MoonUIButtonPro,
|
|
51072
51072
|
{
|
|
51073
51073
|
variant: "outline",
|
|
51074
51074
|
size: "sm",
|
|
@@ -51096,7 +51096,7 @@ var PerformanceDebuggerInternal = ({
|
|
|
51096
51096
|
isCapturing ? "Live" : "Paused"
|
|
51097
51097
|
] }),
|
|
51098
51098
|
/* @__PURE__ */ jsx(
|
|
51099
|
-
|
|
51099
|
+
MoonUIButtonPro,
|
|
51100
51100
|
{
|
|
51101
51101
|
variant: "outline",
|
|
51102
51102
|
size: "sm",
|
|
@@ -51105,7 +51105,7 @@ var PerformanceDebuggerInternal = ({
|
|
|
51105
51105
|
}
|
|
51106
51106
|
),
|
|
51107
51107
|
/* @__PURE__ */ jsx(
|
|
51108
|
-
|
|
51108
|
+
MoonUIButtonPro,
|
|
51109
51109
|
{
|
|
51110
51110
|
variant: "outline",
|
|
51111
51111
|
size: "sm",
|
|
@@ -51114,7 +51114,7 @@ var PerformanceDebuggerInternal = ({
|
|
|
51114
51114
|
}
|
|
51115
51115
|
),
|
|
51116
51116
|
/* @__PURE__ */ jsx(
|
|
51117
|
-
|
|
51117
|
+
MoonUIButtonPro,
|
|
51118
51118
|
{
|
|
51119
51119
|
variant: "outline",
|
|
51120
51120
|
size: "sm",
|
|
@@ -51123,7 +51123,7 @@ var PerformanceDebuggerInternal = ({
|
|
|
51123
51123
|
}
|
|
51124
51124
|
),
|
|
51125
51125
|
/* @__PURE__ */ jsx(
|
|
51126
|
-
|
|
51126
|
+
MoonUIButtonPro,
|
|
51127
51127
|
{
|
|
51128
51128
|
variant: "ghost",
|
|
51129
51129
|
size: "sm",
|
|
@@ -51185,7 +51185,7 @@ var PerformanceDebuggerInternal = ({
|
|
|
51185
51185
|
entries.length,
|
|
51186
51186
|
" entries captured"
|
|
51187
51187
|
] }),
|
|
51188
|
-
/* @__PURE__ */ jsx(
|
|
51188
|
+
/* @__PURE__ */ jsx(MoonUIButtonPro, { variant: "outline", size: "sm", onClick: clearData, children: "Clear History" })
|
|
51189
51189
|
] }),
|
|
51190
51190
|
/* @__PURE__ */ jsx("div", { className: "space-y-2 max-h-96 overflow-y-auto", children: entries.map((entry, index) => /* @__PURE__ */ jsx(MoonUICardPro, { children: /* @__PURE__ */ jsxs(MoonUICardContentPro, { className: "p-4", children: [
|
|
51191
51191
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between mb-2", children: [
|
|
@@ -51249,7 +51249,7 @@ var PerformanceDebugger = ({ className, ...props }) => {
|
|
|
51249
51249
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
51250
51250
|
/* @__PURE__ */ jsx("h3", { className: "font-semibold text-sm mb-2", children: "Pro Feature" }),
|
|
51251
51251
|
/* @__PURE__ */ jsx("p", { className: "text-muted-foreground text-xs mb-4", children: "Performance Debugger is available exclusively to MoonUI Pro subscribers." }),
|
|
51252
|
-
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(
|
|
51252
|
+
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(MoonUIButtonPro, { size: "sm", children: [
|
|
51253
51253
|
/* @__PURE__ */ jsx(Sparkles, { className: "mr-2 h-4 w-4" }),
|
|
51254
51254
|
"Upgrade to Pro"
|
|
51255
51255
|
] }) })
|
|
@@ -51461,7 +51461,7 @@ var PerformanceMonitorInternal = ({
|
|
|
51461
51461
|
};
|
|
51462
51462
|
if (!isVisible) {
|
|
51463
51463
|
return /* @__PURE__ */ jsxs(
|
|
51464
|
-
|
|
51464
|
+
MoonUIButtonPro,
|
|
51465
51465
|
{
|
|
51466
51466
|
variant: "outline",
|
|
51467
51467
|
size: "sm",
|
|
@@ -51499,7 +51499,7 @@ var PerformanceMonitorInternal = ({
|
|
|
51499
51499
|
alerts.length
|
|
51500
51500
|
] }),
|
|
51501
51501
|
/* @__PURE__ */ jsx(
|
|
51502
|
-
|
|
51502
|
+
MoonUIButtonPro,
|
|
51503
51503
|
{
|
|
51504
51504
|
variant: "outline",
|
|
51505
51505
|
size: "sm",
|
|
@@ -51509,7 +51509,7 @@ var PerformanceMonitorInternal = ({
|
|
|
51509
51509
|
}
|
|
51510
51510
|
),
|
|
51511
51511
|
/* @__PURE__ */ jsx(
|
|
51512
|
-
|
|
51512
|
+
MoonUIButtonPro,
|
|
51513
51513
|
{
|
|
51514
51514
|
variant: "outline",
|
|
51515
51515
|
size: "sm",
|
|
@@ -51518,7 +51518,7 @@ var PerformanceMonitorInternal = ({
|
|
|
51518
51518
|
}
|
|
51519
51519
|
),
|
|
51520
51520
|
/* @__PURE__ */ jsx(
|
|
51521
|
-
|
|
51521
|
+
MoonUIButtonPro,
|
|
51522
51522
|
{
|
|
51523
51523
|
variant: "ghost",
|
|
51524
51524
|
size: "sm",
|
|
@@ -51750,7 +51750,7 @@ var PerformanceMonitorInternal = ({
|
|
|
51750
51750
|
" alerts"
|
|
51751
51751
|
] }),
|
|
51752
51752
|
/* @__PURE__ */ jsx(
|
|
51753
|
-
|
|
51753
|
+
MoonUIButtonPro,
|
|
51754
51754
|
{
|
|
51755
51755
|
variant: "outline",
|
|
51756
51756
|
size: "sm",
|
|
@@ -51845,7 +51845,7 @@ var PerformanceMonitor = ({ className, ...props }) => {
|
|
|
51845
51845
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
51846
51846
|
/* @__PURE__ */ jsx("h3", { className: "font-semibold text-sm mb-2", children: "Pro Feature" }),
|
|
51847
51847
|
/* @__PURE__ */ jsx("p", { className: "text-muted-foreground text-xs mb-4", children: "Performance Monitor is available exclusively to MoonUI Pro subscribers." }),
|
|
51848
|
-
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(
|
|
51848
|
+
/* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(MoonUIButtonPro, { size: "sm", children: [
|
|
51849
51849
|
/* @__PURE__ */ jsx(Sparkles, { className: "mr-2 h-4 w-4" }),
|
|
51850
51850
|
"Upgrade to Pro"
|
|
51851
51851
|
] }) })
|
|
@@ -51895,7 +51895,7 @@ function FileUpload({
|
|
|
51895
51895
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
51896
51896
|
/* @__PURE__ */ jsx("h3", { className: "font-semibold text-lg mb-2", children: "Pro Feature" }),
|
|
51897
51897
|
/* @__PURE__ */ jsx("p", { className: "text-muted-foreground text-sm mb-4", children: "File Upload is available exclusively to MoonUI Pro subscribers." }),
|
|
51898
|
-
/* @__PURE__ */ jsx("div", { className: "flex gap-3 justify-center", children: /* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(
|
|
51898
|
+
/* @__PURE__ */ jsx("div", { className: "flex gap-3 justify-center", children: /* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(MoonUIButtonPro, { size: "sm", children: [
|
|
51899
51899
|
/* @__PURE__ */ jsx(Sparkles, { className: "mr-2 h-4 w-4" }),
|
|
51900
51900
|
"Upgrade to Pro"
|
|
51901
51901
|
] }) }) })
|
|
@@ -52077,9 +52077,9 @@ function FileUpload({
|
|
|
52077
52077
|
uploadedFile.error && /* @__PURE__ */ jsx("p", { className: "text-xs text-destructive mt-1", children: uploadedFile.error })
|
|
52078
52078
|
] }),
|
|
52079
52079
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-1", children: [
|
|
52080
|
-
uploadedFile.status === "success" && showPreview && uploadedFile.file.type.startsWith("image/") && /* @__PURE__ */ jsx(
|
|
52080
|
+
uploadedFile.status === "success" && showPreview && uploadedFile.file.type.startsWith("image/") && /* @__PURE__ */ jsx(MoonUIButtonPro, { variant: "ghost", size: "sm", children: /* @__PURE__ */ jsx(Download, { className: "h-4 w-4" }) }),
|
|
52081
52081
|
/* @__PURE__ */ jsx(
|
|
52082
|
-
|
|
52082
|
+
MoonUIButtonPro,
|
|
52083
52083
|
{
|
|
52084
52084
|
variant: "ghost",
|
|
52085
52085
|
size: "sm",
|
|
@@ -52121,7 +52121,7 @@ function DataTable({
|
|
|
52121
52121
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
52122
52122
|
/* @__PURE__ */ jsx("h3", { className: "font-semibold text-lg mb-2", children: "Pro Feature" }),
|
|
52123
52123
|
/* @__PURE__ */ jsx("p", { className: "text-muted-foreground text-sm mb-4", children: "Data Table is available exclusively to MoonUI Pro subscribers." }),
|
|
52124
|
-
/* @__PURE__ */ jsx("div", { className: "flex gap-3 justify-center", children: /* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(
|
|
52124
|
+
/* @__PURE__ */ jsx("div", { className: "flex gap-3 justify-center", children: /* @__PURE__ */ jsx("a", { href: "/pricing", children: /* @__PURE__ */ jsxs(MoonUIButtonPro, { size: "sm", children: [
|
|
52125
52125
|
/* @__PURE__ */ jsx(Sparkles, { className: "mr-2 h-4 w-4" }),
|
|
52126
52126
|
"Upgrade to Pro"
|
|
52127
52127
|
] }) }) })
|
|
@@ -52196,17 +52196,17 @@ function DataTable({
|
|
|
52196
52196
|
}
|
|
52197
52197
|
)
|
|
52198
52198
|
] }),
|
|
52199
|
-
filterable && /* @__PURE__ */ jsxs(
|
|
52199
|
+
filterable && /* @__PURE__ */ jsxs(MoonUIButtonPro, { variant: "outline", size: "sm", children: [
|
|
52200
52200
|
/* @__PURE__ */ jsx(Filter, { className: "mr-2 h-4 w-4" }),
|
|
52201
52201
|
"Filters"
|
|
52202
52202
|
] })
|
|
52203
52203
|
] }),
|
|
52204
52204
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center space-x-2", children: [
|
|
52205
|
-
exportable && /* @__PURE__ */ jsxs(
|
|
52205
|
+
exportable && /* @__PURE__ */ jsxs(MoonUIButtonPro, { variant: "outline", size: "sm", onClick: handleExport, children: [
|
|
52206
52206
|
/* @__PURE__ */ jsx(Download, { className: "mr-2 h-4 w-4" }),
|
|
52207
52207
|
"Export"
|
|
52208
52208
|
] }),
|
|
52209
|
-
/* @__PURE__ */ jsxs(
|
|
52209
|
+
/* @__PURE__ */ jsxs(MoonUIButtonPro, { variant: "outline", size: "sm", children: [
|
|
52210
52210
|
/* @__PURE__ */ jsx(Settings, { className: "mr-2 h-4 w-4" }),
|
|
52211
52211
|
"Columns"
|
|
52212
52212
|
] })
|
|
@@ -52276,7 +52276,7 @@ function DataTable({
|
|
|
52276
52276
|
] }),
|
|
52277
52277
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center space-x-2", children: [
|
|
52278
52278
|
/* @__PURE__ */ jsx(
|
|
52279
|
-
|
|
52279
|
+
MoonUIButtonPro,
|
|
52280
52280
|
{
|
|
52281
52281
|
variant: "outline",
|
|
52282
52282
|
className: "hidden h-8 w-8 p-0 lg:flex",
|
|
@@ -52286,7 +52286,7 @@ function DataTable({
|
|
|
52286
52286
|
}
|
|
52287
52287
|
),
|
|
52288
52288
|
/* @__PURE__ */ jsx(
|
|
52289
|
-
|
|
52289
|
+
MoonUIButtonPro,
|
|
52290
52290
|
{
|
|
52291
52291
|
variant: "outline",
|
|
52292
52292
|
className: "h-8 w-8 p-0",
|
|
@@ -52296,7 +52296,7 @@ function DataTable({
|
|
|
52296
52296
|
}
|
|
52297
52297
|
),
|
|
52298
52298
|
/* @__PURE__ */ jsx(
|
|
52299
|
-
|
|
52299
|
+
MoonUIButtonPro,
|
|
52300
52300
|
{
|
|
52301
52301
|
variant: "outline",
|
|
52302
52302
|
className: "h-8 w-8 p-0",
|
|
@@ -52306,7 +52306,7 @@ function DataTable({
|
|
|
52306
52306
|
}
|
|
52307
52307
|
),
|
|
52308
52308
|
/* @__PURE__ */ jsx(
|
|
52309
|
-
|
|
52309
|
+
MoonUIButtonPro,
|
|
52310
52310
|
{
|
|
52311
52311
|
variant: "outline",
|
|
52312
52312
|
className: "hidden h-8 w-8 p-0 lg:flex",
|
|
@@ -53219,4 +53219,4 @@ var BadgePro = t__default.forwardRef(({
|
|
|
53219
53219
|
});
|
|
53220
53220
|
BadgePro.displayName = "BadgePro";
|
|
53221
53221
|
|
|
53222
|
-
export { MoonUIAccordionPro as Accordion, MoonUIAccordionContentPro as AccordionContent, MoonUIAccordionItemPro as AccordionItem, MoonUIAccordionTriggerPro as AccordionTrigger, AdvancedChart, AdvancedForms, MoonUIAlertPro as Alert, MoonUIAlertDescriptionPro as AlertDescription, MoonUIAlertTitlePro as AlertTitle, AnimatedButton, MoonUIAspectRatioPro as AspectRatio, MoonUIAvatarPro as Avatar, MoonUIAvatarFallbackPro as AvatarFallback, MoonUIAvatarImagePro as AvatarImage, MoonUIBadgePro as Badge, MoonUIBreadcrumbPro as Breadcrumb, MoonUIBreadcrumbEllipsisPro as BreadcrumbEllipsis, MoonUIBreadcrumbItemPro as BreadcrumbItem, MoonUIBreadcrumbLinkPro as BreadcrumbLink, MoonUIBreadcrumbListPro as BreadcrumbList, MoonUIBreadcrumbPagePro as BreadcrumbPage, MoonUIBreadcrumbSeparatorPro as BreadcrumbSeparator,
|
|
53222
|
+
export { MoonUIAccordionPro as Accordion, MoonUIAccordionContentPro as AccordionContent, MoonUIAccordionItemPro as AccordionItem, MoonUIAccordionTriggerPro as AccordionTrigger, AdvancedChart, AdvancedForms, MoonUIAlertPro as Alert, MoonUIAlertDescriptionPro as AlertDescription, MoonUIAlertTitlePro as AlertTitle, AnimatedButton, MoonUIAspectRatioPro as AspectRatio, MoonUIAvatarPro as Avatar, MoonUIAvatarFallbackPro as AvatarFallback, MoonUIAvatarImagePro as AvatarImage, MoonUIBadgePro as Badge, MoonUIBreadcrumbPro as Breadcrumb, MoonUIBreadcrumbEllipsisPro as BreadcrumbEllipsis, MoonUIBreadcrumbItemPro as BreadcrumbItem, MoonUIBreadcrumbLinkPro as BreadcrumbLink, MoonUIBreadcrumbListPro as BreadcrumbList, MoonUIBreadcrumbPagePro as BreadcrumbPage, MoonUIBreadcrumbSeparatorPro as BreadcrumbSeparator, MoonUIButtonPro as Button, Calendar2 as Calendar, MoonUICardPro as Card, MoonUICardContentPro as CardContent, MoonUICardDescriptionPro as CardDescription, MoonUICardFooterPro as CardFooter, MoonUICardHeaderPro as CardHeader, MoonUICardTitlePro as CardTitle, MoonUICheckboxPro as Checkbox, MoonUICollapsiblePro as Collapsible, MoonUICollapsibleContentPro as CollapsibleContent, MoonUICollapsibleTriggerPro as CollapsibleTrigger, MoonUIColorPickerPro as ColorPicker, MoonUICommandPro as Command, MoonUICommandDialogPro as CommandDialog, MoonUICommandEmptyPro as CommandEmpty, MoonUICommandGroupPro as CommandGroup, MoonUICommandInputPro as CommandInput, MoonUICommandItemPro as CommandItem, MoonUICommandListPro as CommandList, MoonUICommandSeparatorPro as CommandSeparator, MoonUICommandShortcutPro as CommandShortcut, Dashboard, DataTable, MoonUIDialogPro as Dialog, MoonUIDialogClosePro as DialogClose, MoonUIDialogContentPro as DialogContent, MoonUIDialogDescriptionPro as DialogDescription, MoonUIDialogFooterPro as DialogFooter, MoonUIDialogHeaderPro as DialogHeader, MoonUIDialogTitlePro as DialogTitle, MoonUIDialogTriggerPro as DialogTrigger, DraggableList, MoonUIDropdownMenuPro as DropdownMenu, MoonUIDropdownMenuCheckboxItemPro as DropdownMenuCheckboxItem, MoonUIDropdownMenuContentPro as DropdownMenuContent, MoonUIDropdownMenuGroupPro as DropdownMenuGroup, MoonUIDropdownMenuItemPro as DropdownMenuItem, MoonUIDropdownMenuLabelPro as DropdownMenuLabel, MoonUIDropdownMenuPortalPro as DropdownMenuPortal, MoonUIDropdownMenuRadioGroupPro as DropdownMenuRadioGroup, MoonUIDropdownMenuRadioItemPro as DropdownMenuRadioItem, MoonUIDropdownMenuSeparatorPro as DropdownMenuSeparator, MoonUIDropdownMenuShortcutPro as DropdownMenuShortcut, MoonUIDropdownMenuSubPro as DropdownMenuSub, MoonUIDropdownMenuSubContentPro as DropdownMenuSubContent, MoonUIDropdownMenuSubTriggerPro as DropdownMenuSubTrigger, MoonUIDropdownMenuTriggerPro as DropdownMenuTrigger, enhanced_exports as Enhanced, ErrorBoundary, FileUpload, FloatingActionButton, GitHubStars, HealthCheck, HoverCard3D, MoonUIInputPro as Input, Kanban, MoonUILabelPro as Label, LazyComponent, LazyImage, LazyList, MagneticButton, MemoryAnalytics, MemoryEfficientData, MoonUIAccordionContentPro, MoonUIAccordionItemPro, MoonUIAccordionPro, MoonUIAccordionTriggerPro, MoonUIAlertDescriptionPro, MoonUIAlertPro, MoonUIAlertTitlePro, MoonUIAspectRatioPro, MoonUIAvatarFallbackPro, MoonUIAvatarImagePro, MoonUIAvatarPro, MoonUIBadgePro, MoonUIBreadcrumbEllipsisPro, MoonUIBreadcrumbItemPro, MoonUIBreadcrumbLinkPro, MoonUIBreadcrumbListPro, MoonUIBreadcrumbPagePro, MoonUIBreadcrumbPro, MoonUIBreadcrumbSeparatorPro, MoonUIButtonPro, MoonUICardContentPro, MoonUICardDescriptionPro, MoonUICardFooterPro, MoonUICardHeaderPro, MoonUICardPro, MoonUICardTitlePro, MoonUICheckboxPro, MoonUICollapsibleContentPro, MoonUICollapsiblePro, MoonUICollapsibleTriggerPro, MoonUIColorPickerPro, MoonUICommandDialogPro, MoonUICommandEmptyPro, MoonUICommandGroupPro, MoonUICommandInputPro, MoonUICommandItemPro, MoonUICommandListPro, MoonUICommandPro, MoonUICommandSeparatorPro, MoonUICommandShortcutPro, MoonUIDialogClosePro, MoonUIDialogContentPro, MoonUIDialogDescriptionPro, MoonUIDialogFooterPro, MoonUIDialogHeaderPro, MoonUIDialogPro, MoonUIDialogTitlePro, MoonUIDialogTriggerPro, MoonUIDropdownMenuCheckboxItemPro, MoonUIDropdownMenuContentPro, MoonUIDropdownMenuGroupPro, MoonUIDropdownMenuItemPro, MoonUIDropdownMenuLabelPro, MoonUIDropdownMenuPortalPro, MoonUIDropdownMenuPro, MoonUIDropdownMenuRadioGroupPro, MoonUIDropdownMenuRadioItemPro, MoonUIDropdownMenuSeparatorPro, MoonUIDropdownMenuShortcutPro, MoonUIDropdownMenuSubContentPro, MoonUIDropdownMenuSubPro, MoonUIDropdownMenuSubTriggerPro, MoonUIDropdownMenuTriggerPro, MoonUIInputPro, MoonUILabelPro, MoonUIPaginationContentPro, MoonUIPaginationEllipsisPro, MoonUIPaginationItemPro, MoonUIPaginationLinkPro, MoonUIPaginationNextPro, MoonUIPaginationPreviousPro, MoonUIPaginationPro, MoonUIPopoverContentPro, MoonUIPopoverPro, MoonUIPopoverTriggerPro, MoonUIProgressPro, MoonUIRadioGroupContextPro, MoonUIRadioGroupItemPro, MoonUIRadioGroupPro, MoonUIRadioItemWithLabelPro, MoonUIRadioLabelPro, MoonUISelectContentPro, MoonUISelectGroupPro, MoonUISelectItemPro, MoonUISelectLabelPro, MoonUISelectPro, MoonUISelectSeparatorPro, MoonUISelectTriggerPro, MoonUISelectValuePro, MoonUISeparatorPro, MoonUISkeleton, MoonUISliderPro, MoonUISwitchPro, MoonUITableBodyPro, MoonUITableCaptionPro, MoonUITableCellPro, MoonUITableFooterPro, MoonUITableHeadPro, MoonUITableHeaderPro, MoonUITablePro, MoonUITableRowPro, MoonUITabsContentPro, MoonUITabsListPro, MoonUITabsPro, MoonUITabsTriggerPro, MoonUITextareaPro, MoonUIToastPro, MoonUITogglePro, MoonUITooltipContentPro, MoonUITooltipPro, MoonUITooltipProviderPro, MoonUITooltipTriggerPro, MoonUIalertVariantsPro, MoonUIaspectRatioVariantsPro, MoonUIbreadcrumbVariantsPro, MoonUIcollapsibleContentVariantsPro, MoonUIcollapsibleTriggerVariantsPro, MoonUIcommandVariantsPro, MoonUIradioGroupItemVariantsPro, MoonUItableVariantsPro, MoonUItoggleVariantsPro, OptimizedImage, MoonUIPaginationPro as Pagination, MoonUIPaginationContentPro as PaginationContent, MoonUIPaginationEllipsisPro as PaginationEllipsis, MoonUIPaginationItemPro as PaginationItem, MoonUIPaginationLinkPro as PaginationLink, MoonUIPaginationNextPro as PaginationNext, MoonUIPaginationPreviousPro as PaginationPrevious, PerformanceDebugger, PerformanceMonitor, PinchZoom, MoonUIPopoverPro as Popover, MoonUIPopoverContentPro as PopoverContent, MoonUIPopoverTriggerPro as PopoverTrigger, MoonUIProgressPro as Progress, MoonUIRadioGroupPro as RadioGroup, MoonUIRadioGroupContextPro as RadioGroupContext, MoonUIRadioGroupItemPro as RadioGroupItem, MoonUIRadioItemWithLabelPro as RadioItemWithLabel, MoonUIRadioLabelPro as RadioLabel, RichTextEditor, MoonUISelectPro as Select, MoonUISelectContentPro as SelectContent, MoonUISelectGroupPro as SelectGroup, MoonUISelectItemPro as SelectItem, MoonUISelectLabelPro as SelectLabel, MoonUISelectSeparatorPro as SelectSeparator, MoonUISelectTriggerPro as SelectTrigger, MoonUISelectValuePro as SelectValue, SelectableVirtualList, MoonUISeparatorPro as Separator, MoonUISkeleton as Skeleton, MoonUISliderPro as Slider, SpotlightCard, SwipeableCard, MoonUISwitchPro as Switch, MoonUITablePro as Table, MoonUITableBodyPro as TableBody, MoonUITableCaptionPro as TableCaption, MoonUITableCellPro as TableCell, MoonUITableFooterPro as TableFooter, MoonUITableHeadPro as TableHead, MoonUITableHeaderPro as TableHeader, MoonUITableRowPro as TableRow, MoonUITabsPro as Tabs, MoonUITabsContentPro as TabsContent, MoonUITabsListPro as TabsList, MoonUITabsTriggerPro as TabsTrigger, MoonUITextareaPro as Textarea, Timeline, MoonUIToastPro as Toast, MoonUITogglePro as Toggle, MoonUITooltipPro as Tooltip, MoonUITooltipContentPro as TooltipContent, MoonUITooltipProviderPro as TooltipProvider, MoonUITooltipTriggerPro as TooltipTrigger, VirtualList, MoonUIalertVariantsPro as alertVariants, animatedButtonVariants, MoonUIaspectRatioVariantsPro as aspectRatioVariants, moonUIBadgeVariantsPro as badgeVariants, MoonUIbreadcrumbVariantsPro as breadcrumbVariants, moonUIButtonProVariants as buttonVariants, cn, MoonUIcollapsibleContentVariantsPro as collapsibleContentVariants, MoonUIcollapsibleTriggerVariantsPro as collapsibleTriggerVariants, MoonUIcommandVariantsPro as commandVariants, moonUIBadgeVariantsPro, moonUIButtonProVariants, moonUISeparatorVariantsPro, MoonUIradioGroupItemVariantsPro as radioGroupItemVariants, moonUISeparatorVariantsPro as separatorVariants, MoonUItableVariantsPro as tableVariants, MoonUItoggleVariantsPro as toggleVariants, useStreamingData, useVirtualList };
|