@ttt-productions/ui-core 0.2.24 → 0.2.25
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/components/accordion.jsx +1 -1
- package/dist/components/accordion.jsx.map +1 -1
- package/dist/components/alert-dialog.jsx +2 -2
- package/dist/components/alert-dialog.jsx.map +1 -1
- package/dist/components/alert.jsx +1 -1
- package/dist/components/alert.jsx.map +1 -1
- package/dist/components/avatar.jsx +1 -1
- package/dist/components/avatar.jsx.map +1 -1
- package/dist/components/badge.jsx +1 -1
- package/dist/components/badge.jsx.map +1 -1
- package/dist/components/button.jsx +1 -1
- package/dist/components/button.jsx.map +1 -1
- package/dist/components/card.jsx +1 -1
- package/dist/components/card.jsx.map +1 -1
- package/dist/components/checkbox.jsx +1 -1
- package/dist/components/checkbox.jsx.map +1 -1
- package/dist/components/date-picker.jsx +2 -2
- package/dist/components/date-picker.jsx.map +1 -1
- package/dist/components/dialog.jsx +1 -1
- package/dist/components/dialog.jsx.map +1 -1
- package/dist/components/dropdown-menu.jsx +1 -1
- package/dist/components/dropdown-menu.jsx.map +1 -1
- package/dist/components/form.jsx +2 -2
- package/dist/components/form.jsx.map +1 -1
- package/dist/components/input.jsx +1 -1
- package/dist/components/input.jsx.map +1 -1
- package/dist/components/label.jsx +1 -1
- package/dist/components/label.jsx.map +1 -1
- package/dist/components/layout/screen-adaptive-view.jsx +2 -2
- package/dist/components/layout/screen-adaptive-view.jsx.map +1 -1
- package/dist/components/menubar.jsx +1 -1
- package/dist/components/menubar.jsx.map +1 -1
- package/dist/components/popover.jsx +1 -1
- package/dist/components/popover.jsx.map +1 -1
- package/dist/components/progress.jsx +1 -1
- package/dist/components/progress.jsx.map +1 -1
- package/dist/components/radio-group.jsx +1 -1
- package/dist/components/radio-group.jsx.map +1 -1
- package/dist/components/scroll-area.jsx +1 -1
- package/dist/components/scroll-area.jsx.map +1 -1
- package/dist/components/search-dropdown.jsx +3 -3
- package/dist/components/search-dropdown.jsx.map +1 -1
- package/dist/components/select.jsx +1 -1
- package/dist/components/select.jsx.map +1 -1
- package/dist/components/separator.jsx +1 -1
- package/dist/components/separator.jsx.map +1 -1
- package/dist/components/sheet.jsx +1 -1
- package/dist/components/sheet.jsx.map +1 -1
- package/dist/components/skeleton.jsx +1 -1
- package/dist/components/skeleton.jsx.map +1 -1
- package/dist/components/slider.jsx +1 -1
- package/dist/components/slider.jsx.map +1 -1
- package/dist/components/switch.jsx +1 -1
- package/dist/components/switch.jsx.map +1 -1
- package/dist/components/table.jsx +1 -1
- package/dist/components/table.jsx.map +1 -1
- package/dist/components/tabs.jsx +1 -1
- package/dist/components/tabs.jsx.map +1 -1
- package/dist/components/textarea.jsx +1 -1
- package/dist/components/textarea.jsx.map +1 -1
- package/dist/components/toast.jsx +1 -1
- package/dist/components/toast.jsx.map +1 -1
- package/dist/components/toaster.jsx +2 -2
- package/dist/components/toaster.jsx.map +1 -1
- package/dist/components/tooltip.jsx +1 -1
- package/dist/components/tooltip.jsx.map +1 -1
- package/dist/index.d.ts +37 -37
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +37 -37
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/accordion.tsx +1 -1
- package/src/components/alert-dialog.tsx +2 -2
- package/src/components/alert.tsx +1 -1
- package/src/components/avatar.tsx +1 -1
- package/src/components/badge.tsx +1 -1
- package/src/components/button.tsx +1 -1
- package/src/components/card.tsx +1 -1
- package/src/components/checkbox.tsx +1 -1
- package/src/components/date-picker.tsx +2 -2
- package/src/components/dialog.tsx +1 -1
- package/src/components/dropdown-menu.tsx +1 -1
- package/src/components/form.tsx +2 -2
- package/src/components/input.tsx +1 -1
- package/src/components/label.tsx +1 -1
- package/src/components/layout/screen-adaptive-view.tsx +2 -2
- package/src/components/menubar.tsx +1 -1
- package/src/components/popover.tsx +1 -1
- package/src/components/progress.tsx +1 -1
- package/src/components/radio-group.tsx +1 -1
- package/src/components/scroll-area.tsx +1 -1
- package/src/components/search-dropdown.tsx +3 -3
- package/src/components/select.tsx +1 -1
- package/src/components/separator.tsx +1 -1
- package/src/components/sheet.tsx +1 -1
- package/src/components/skeleton.tsx +1 -1
- package/src/components/slider.tsx +1 -1
- package/src/components/switch.tsx +1 -1
- package/src/components/table.tsx +1 -1
- package/src/components/tabs.tsx +1 -1
- package/src/components/textarea.tsx +1 -1
- package/src/components/toast.tsx +1 -1
- package/src/components/toaster.tsx +3 -3
- package/src/components/tooltip.tsx +1 -1
- package/src/index.ts +37 -37
|
@@ -3,7 +3,7 @@ import * as React from "react";
|
|
|
3
3
|
import * as SheetPrimitive from "@radix-ui/react-dialog";
|
|
4
4
|
import { cva } from "class-variance-authority";
|
|
5
5
|
import { X } from "lucide-react";
|
|
6
|
-
import { cn } from "../lib/utils";
|
|
6
|
+
import { cn } from "../lib/utils.js";
|
|
7
7
|
const Sheet = SheetPrimitive.Root;
|
|
8
8
|
const SheetTrigger = SheetPrimitive.Trigger;
|
|
9
9
|
const SheetClose = SheetPrimitive.Close;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sheet.jsx","sourceRoot":"","sources":["../../src/components/sheet.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,KAAK,cAAc,MAAM,wBAAwB,CAAA;AACxD,OAAO,EAAE,GAAG,EAAqB,MAAM,0BAA0B,CAAA;AACjE,OAAO,EAAE,CAAC,EAAE,MAAM,cAAc,CAAA;AAEhC,OAAO,EAAE,EAAE,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"sheet.jsx","sourceRoot":"","sources":["../../src/components/sheet.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import * as React from "react";
|
|
3
|
-
import { cn } from "../lib/utils";
|
|
3
|
+
import { cn } from "../lib/utils.js";
|
|
4
4
|
function Skeleton({ className, ...props }) {
|
|
5
5
|
return (<div className={cn("animate-pulse rounded-md bg-muted", className)} data-ai-hint="loading placeholder" {...props}/>);
|
|
6
6
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"skeleton.jsx","sourceRoot":"","sources":["../../src/components/skeleton.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,EAAE,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"skeleton.jsx","sourceRoot":"","sources":["../../src/components/skeleton.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,EAAE,EAAE,MAAM,iBAAiB,CAAA;AAEpC,SAAS,QAAQ,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAwC;IAC7E,OAAO,CACL,CAAC,GAAG,CACF,SAAS,CAAC,CAAC,EAAE,CAAC,mCAAmC,EAAE,SAAS,CAAC,CAAC,CAC9D,YAAY,CAAC,qBAAqB,CAClC,IAAI,KAAK,CAAC,EACV,CACH,CAAA;AACH,CAAC;AAED,OAAO,EAAE,QAAQ,EAAE,CAAA"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import * as React from "react";
|
|
3
3
|
import * as SliderPrimitive from "@radix-ui/react-slider";
|
|
4
|
-
import { cn } from "../lib/utils";
|
|
4
|
+
import { cn } from "../lib/utils.js";
|
|
5
5
|
const Slider = React.forwardRef(({ className, ...props }, ref) => (<SliderPrimitive.Root ref={ref} className={cn("relative flex w-full touch-none select-none items-center", className)} {...props}>
|
|
6
6
|
<SliderPrimitive.Track className="relative h-2 w-full grow overflow-hidden rounded-full bg-secondary">
|
|
7
7
|
<SliderPrimitive.Range className="absolute h-full bg-primary"/>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"slider.jsx","sourceRoot":"","sources":["../../src/components/slider.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,KAAK,eAAe,MAAM,wBAAwB,CAAA;AAEzD,OAAO,EAAE,EAAE,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"slider.jsx","sourceRoot":"","sources":["../../src/components/slider.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,KAAK,eAAe,MAAM,wBAAwB,CAAA;AAEzD,OAAO,EAAE,EAAE,EAAE,MAAM,iBAAiB,CAAA;AAEpC,MAAM,MAAM,GAAG,KAAK,CAAC,UAAU,CAG7B,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,CAAC,CAClC,CAAC,eAAe,CAAC,IAAI,CACnB,GAAG,CAAC,CAAC,GAAG,CAAC,CACT,SAAS,CAAC,CAAC,EAAE,CAAC,0DAA0D,EAAE,SAAS,CAAC,CAAC,CACrF,IAAI,KAAK,CAAC,CAEV;IAAA,CAAC,eAAe,CAAC,KAAK,CAAC,SAAS,CAAC,oEAAoE,CACnG;MAAA,CAAC,eAAe,CAAC,KAAK,CAAC,SAAS,CAAC,4BAA4B,EAC/D;IAAA,EAAE,eAAe,CAAC,KAAK,CACvB;IAAA,CAAC,eAAe,CAAC,KAAK,CAAC,SAAS,CAAC,gQAAgQ,EACnS;EAAA,EAAE,eAAe,CAAC,IAAI,CAAC,CACxB,CAAC,CAAA;AACF,MAAM,CAAC,WAAW,GAAG,eAAe,CAAC,IAAI,CAAC,WAAW,CAAA;AAErD,OAAO,EAAE,MAAM,EAAE,CAAA"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import * as React from "react";
|
|
3
3
|
import * as SwitchPrimitives from "@radix-ui/react-switch";
|
|
4
|
-
import { cn } from "../lib/utils";
|
|
4
|
+
import { cn } from "../lib/utils.js";
|
|
5
5
|
const Switch = React.forwardRef(({ className, ...props }, ref) => (<SwitchPrimitives.Root className={cn("peer inline-flex h-6 w-11 shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=unchecked]:bg-input", className)} {...props} ref={ref}>
|
|
6
6
|
<SwitchPrimitives.Thumb className={cn("pointer-events-none block h-5 w-5 rounded-full bg-background shadow-lg ring-0 transition-transform data-[state=checked]:translate-x-5 data-[state=unchecked]:translate-x-0")}/>
|
|
7
7
|
</SwitchPrimitives.Root>));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"switch.jsx","sourceRoot":"","sources":["../../src/components/switch.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,KAAK,gBAAgB,MAAM,wBAAwB,CAAA;AAE1D,OAAO,EAAE,EAAE,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"switch.jsx","sourceRoot":"","sources":["../../src/components/switch.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,KAAK,gBAAgB,MAAM,wBAAwB,CAAA;AAE1D,OAAO,EAAE,EAAE,EAAE,MAAM,iBAAiB,CAAA;AAEpC,MAAM,MAAM,GAAG,KAAK,CAAC,UAAU,CAG7B,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,CAAC,CAClC,CAAC,gBAAgB,CAAC,IAAI,CACpB,SAAS,CAAC,CAAC,EAAE,CACX,oXAAoX,EACpX,SAAS,CACV,CAAC,CACF,IAAI,KAAK,CAAC,CACV,GAAG,CAAC,CAAC,GAAG,CAAC,CAET;IAAA,CAAC,gBAAgB,CAAC,KAAK,CACrB,SAAS,CAAC,CAAC,EAAE,CACX,4KAA4K,CAC7K,CAAC,EAEN;EAAA,EAAE,gBAAgB,CAAC,IAAI,CAAC,CACzB,CAAC,CAAA;AACF,MAAM,CAAC,WAAW,GAAG,gBAAgB,CAAC,IAAI,CAAC,WAAW,CAAA;AAEtD,OAAO,EAAE,MAAM,EAAE,CAAA"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import * as React from "react";
|
|
3
|
-
import { cn } from "../lib/utils";
|
|
3
|
+
import { cn } from "../lib/utils.js";
|
|
4
4
|
const Table = React.forwardRef(({ className, ...props }, ref) => (<div className="relative w-full overflow-auto">
|
|
5
5
|
<table ref={ref} className={cn("w-full caption-bottom text-sm", className)} {...props}/>
|
|
6
6
|
</div>));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"table.jsx","sourceRoot":"","sources":["../../src/components/table.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,EAAE,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"table.jsx","sourceRoot":"","sources":["../../src/components/table.tsx"],"names":[],"mappings":"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"}
|
package/dist/components/tabs.jsx
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import * as React from "react";
|
|
3
3
|
import * as TabsPrimitive from "@radix-ui/react-tabs";
|
|
4
|
-
import { cn } from "../lib/utils";
|
|
4
|
+
import { cn } from "../lib/utils.js";
|
|
5
5
|
const Tabs = TabsPrimitive.Root;
|
|
6
6
|
const TabsList = React.forwardRef(({ className, ...props }, ref) => (<TabsPrimitive.List ref={ref} className={cn("inline-flex h-10 items-center justify-center rounded-md p-1 text-muted-foreground", className)} {...props}/>));
|
|
7
7
|
TabsList.displayName = TabsPrimitive.List.displayName;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tabs.jsx","sourceRoot":"","sources":["../../src/components/tabs.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,KAAK,aAAa,MAAM,sBAAsB,CAAA;AAErD,OAAO,EAAE,EAAE,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"tabs.jsx","sourceRoot":"","sources":["../../src/components/tabs.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,KAAK,aAAa,MAAM,sBAAsB,CAAA;AAErD,OAAO,EAAE,EAAE,EAAE,MAAM,iBAAiB,CAAA;AAEpC,MAAM,IAAI,GAAG,aAAa,CAAC,IAAI,CAAA;AAE/B,MAAM,QAAQ,GAAG,KAAK,CAAC,UAAU,CAG/B,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,CAAC,CAClC,CAAC,aAAa,CAAC,IAAI,CACjB,GAAG,CAAC,CAAC,GAAG,CAAC,CACT,SAAS,CAAC,CAAC,EAAE,CACX,mFAAmF,EACnF,SAAS,CACV,CAAC,CACF,IAAI,KAAK,CAAC,EACV,CACH,CAAC,CAAA;AACF,QAAQ,CAAC,WAAW,GAAG,aAAa,CAAC,IAAI,CAAC,WAAW,CAAA;AAErD,MAAM,WAAW,GAAG,KAAK,CAAC,UAAU,CAGlC,CAAC,EAAE,SAAS,EAAE,QAAQ,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,CAAC,CAC5C,CAAC,aAAa,CAAC,OAAO,CACpB,GAAG,CAAC,CAAC,GAAG,CAAC,CACT,SAAS,CAAC,CAAC,EAAE,CACX,gSAAgS,EAChS,mMAAmM,EACnM,+LAA+L,EAC/L,SAAS,CACV,CAAC,CACF,IAAI,KAAK,CAAC,CAEV;IAAA,CAAC,QAAQ,CACX;EAAA,EAAE,aAAa,CAAC,OAAO,CAAC,CACzB,CAAC,CAAA;AACF,WAAW,CAAC,WAAW,GAAG,aAAa,CAAC,OAAO,CAAC,WAAW,CAAA;AAE3D,MAAM,WAAW,GAAG,KAAK,CAAC,UAAU,CAGlC,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,CAAC,CAClC,CAAC,aAAa,CAAC,OAAO,CACpB,GAAG,CAAC,CAAC,GAAG,CAAC,CACT,SAAS,CAAC,CAAC,EAAE,CACX,iIAAiI,EACjI,SAAS,CACV,CAAC,CACF,IAAI,KAAK,CAAC,EACV,CACH,CAAC,CAAA;AACF,WAAW,CAAC,WAAW,GAAG,aAAa,CAAC,OAAO,CAAC,WAAW,CAAA;AAE3D,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,WAAW,EAAE,CAAA"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import * as React from "react";
|
|
3
|
-
import { cn } from "../lib/utils";
|
|
3
|
+
import { cn } from "../lib/utils.js";
|
|
4
4
|
const Textarea = React.forwardRef(({ className, ...props }, ref) => {
|
|
5
5
|
return (<textarea className={cn("flex min-h-[80px] w-full rounded-md border-2 border-border bg-background px-3 py-2 text-base ring-offset-background placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 md:text-sm", className)} ref={ref} {...props}/>);
|
|
6
6
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"textarea.jsx","sourceRoot":"","sources":["../../src/components/textarea.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,EAAE,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"textarea.jsx","sourceRoot":"","sources":["../../src/components/textarea.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,EAAE,EAAE,MAAM,iBAAiB,CAAA;AAEpC,MAAM,QAAQ,GAAG,KAAK,CAAC,UAAU,CAC/B,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE;IAC/B,OAAO,CACL,CAAC,QAAQ,CACP,SAAS,CAAC,CAAC,EAAE,CACX,sTAAsT,EACtT,SAAS,CACV,CAAC,CACF,GAAG,CAAC,CAAC,GAAG,CAAC,CACT,IAAI,KAAK,CAAC,EACV,CACH,CAAA;AACH,CAAC,CACF,CAAA;AACD,QAAQ,CAAC,WAAW,GAAG,UAAU,CAAA;AAEjC,OAAO,EAAE,QAAQ,EAAE,CAAA"}
|
|
@@ -2,7 +2,7 @@ import * as React from "react";
|
|
|
2
2
|
import * as ToastPrimitives from "@radix-ui/react-toast";
|
|
3
3
|
import { cva } from "class-variance-authority";
|
|
4
4
|
import { X } from "lucide-react";
|
|
5
|
-
import { cn } from "../lib/utils";
|
|
5
|
+
import { cn } from "../lib/utils.js";
|
|
6
6
|
/**
|
|
7
7
|
* ui-core Toasts are consumed by multiple apps.
|
|
8
8
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toast.jsx","sourceRoot":"","sources":["../../src/components/toast.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,eAAe,MAAM,uBAAuB,CAAC;AACzD,OAAO,EAAE,GAAG,EAAqB,MAAM,0BAA0B,CAAC;AAClE,OAAO,EAAE,CAAC,EAAE,MAAM,cAAc,CAAC;AAEjC,OAAO,EAAE,EAAE,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"toast.jsx","sourceRoot":"","sources":["../../src/components/toast.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { Toast, ToastClose, ToastDescription, ToastProvider, ToastTitle, ToastViewport } from "./toast";
|
|
3
|
-
import { useToast } from "../hooks/use-toast";
|
|
2
|
+
import { Toast, ToastClose, ToastDescription, ToastProvider, ToastTitle, ToastViewport } from "./toast.js";
|
|
3
|
+
import { useToast } from "../hooks/use-toast.js";
|
|
4
4
|
export function Toaster() {
|
|
5
5
|
const { toasts } = useToast();
|
|
6
6
|
return (<ToastProvider swipeDirection="right" swipeThreshold={32}>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toaster.jsx","sourceRoot":"","sources":["../../src/components/toaster.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,EAAE,KAAK,EAAE,UAAU,EAAE,gBAAgB,EAAE,aAAa,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"toaster.jsx","sourceRoot":"","sources":["../../src/components/toaster.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,EAAE,KAAK,EAAE,UAAU,EAAE,gBAAgB,EAAE,aAAa,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAC3G,OAAO,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAGjD,MAAM,UAAU,OAAO;IACrB,MAAM,EAAE,MAAM,EAAE,GAAG,QAAQ,EAAgC,CAAC;IAE5D,OAAO,CACL,CAAC,aAAa,CAAC,cAAc,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,EAAE,CAAC,CACvD;MAAA,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAe,EAAE,EAAE;YAC9B,MAAM,EAAE,EAAE,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,EAAE,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,IAAI,EAAE,YAAY,EAAE,GAAG,KAAK,EAAE,GAAG,CAAC,CAAC;YAE3G,MAAM,CAAC,GACL,OAAO,KAAK,OAAO,CAAC,CAAC,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,OAAO,IAAI,SAAS,CAAC,CAAC;YAE/D,OAAO,CACL,CAAC,KAAK,CACJ,GAAG,CAAC,CAAC,EAAE,CAAC,CACR,IAAI,CAAC,CAAC,IAAI,CAAC,CACX,YAAY,CAAC,CAAC,YAAY,CAAC,CAC3B,OAAO,CAAC,CAAC,CAAQ,CAAC,CAClB,QAAQ,CAAC,CAAC,QAAQ,IAAI,IAAI,CAAC,CAC3B,WAAW,CAAC,CAAC,WAAW,IAAI,IAAI,CAAC,CACjC,IAAK,KAAa,CAAC,CAEnB;YAAA,CAAC,GAAG,CAAC,SAAS,CAAC,kBAAkB,CAC/B;cAAA,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,SAAS,CAAC,WAAW,CAAC,CAAC,KAAK,CAAC,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC,IAAI,CACtE;cAAA,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,gBAAgB,CAAC,SAAS,CAAC,WAAW,CAAC,CAAC,WAAW,CAAC,EAAE,gBAAgB,CAAC,CAAC,CAAC,CAAC,IAAI,CAChG;YAAA,EAAE,GAAG,CACL;YAAA,CAAC,MAAM,CACP;YAAA,CAAC,UAAU,CAAC,AAAD,EACb;UAAA,EAAE,KAAK,CAAC,CACT,CAAC;QACJ,CAAC,CAAC,CAEF;;MAAA,CAAC,iDAAiD,CAClD;MAAA,CAAC,aAAa,CAAC,AAAD,EAChB;IAAA,EAAE,aAAa,CAAC,CACjB,CAAC;AACJ,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import * as React from "react";
|
|
3
3
|
import * as TooltipPrimitive from "@radix-ui/react-tooltip";
|
|
4
|
-
import { cn } from "../lib/utils";
|
|
4
|
+
import { cn } from "../lib/utils.js";
|
|
5
5
|
const TooltipProvider = TooltipPrimitive.Provider;
|
|
6
6
|
const Tooltip = TooltipPrimitive.Root;
|
|
7
7
|
const TooltipTrigger = TooltipPrimitive.Trigger;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tooltip.jsx","sourceRoot":"","sources":["../../src/components/tooltip.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,KAAK,gBAAgB,MAAM,yBAAyB,CAAA;AAE3D,OAAO,EAAE,EAAE,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"tooltip.jsx","sourceRoot":"","sources":["../../src/components/tooltip.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,KAAK,gBAAgB,MAAM,yBAAyB,CAAA;AAE3D,OAAO,EAAE,EAAE,EAAE,MAAM,iBAAiB,CAAA;AAEpC,MAAM,eAAe,GAAG,gBAAgB,CAAC,QAAQ,CAAA;AACjD,MAAM,OAAO,GAAG,gBAAgB,CAAC,IAAI,CAAA;AACrC,MAAM,cAAc,GAAG,gBAAgB,CAAC,OAAO,CAAA;AAE/C,MAAM,cAAc,GAAG,KAAK,CAAC,UAAU,CAGrC,CAAC,EAAE,SAAS,EAAE,UAAU,GAAG,CAAC,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,CAAC,CAClD,CAAC,gBAAgB,CAAC,OAAO,CACvB,GAAG,CAAC,CAAC,GAAG,CAAC,CACT,UAAU,CAAC,CAAC,UAAU,CAAC,CACvB,SAAS,CAAC,CAAC,EAAE,CACX,oYAAoY,EACpY,SAAS,CACV,CAAC,CACF,IAAI,KAAK,CAAC,EACV,CACH,CAAC,CAAA;AACF,cAAc,CAAC,WAAW,GAAG,gBAAgB,CAAC,OAAO,CAAC,WAAW,CAAA;AAEjE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,eAAe,EAAE,CAAA"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,38 +1,38 @@
|
|
|
1
|
-
export * from "./components/button";
|
|
2
|
-
export * from "./components/card";
|
|
3
|
-
export * from "./components/label";
|
|
4
|
-
export * from "./components/textarea";
|
|
5
|
-
export * from "./components/skeleton";
|
|
6
|
-
export * from "./components/dialog";
|
|
7
|
-
export * from "./components/popover";
|
|
8
|
-
export * from "./components/dropdown-menu";
|
|
9
|
-
export * from "./components/menubar";
|
|
10
|
-
export * from "./components/alert-dialog";
|
|
11
|
-
export * from "./components/alert";
|
|
12
|
-
export * from "./components/toast";
|
|
13
|
-
export * from "./components/toaster";
|
|
14
|
-
export * from "./hooks/use-toast";
|
|
15
|
-
export * from "./components/input";
|
|
16
|
-
export * from "./components/select";
|
|
17
|
-
export * from "./components/tabs";
|
|
18
|
-
export * from "./components/tooltip";
|
|
19
|
-
export * from "./components/form";
|
|
20
|
-
export * from "./components/checkbox";
|
|
21
|
-
export * from "./components/switch";
|
|
22
|
-
export * from "./components/badge";
|
|
23
|
-
export * from "./components/avatar";
|
|
24
|
-
export * from "./components/separator";
|
|
25
|
-
export * from "./components/accordion";
|
|
26
|
-
export * from "./components/radio-group";
|
|
27
|
-
export * from "./components/progress";
|
|
28
|
-
export * from "./components/slider";
|
|
29
|
-
export * from "./components/date-picker";
|
|
30
|
-
export * from "./components/scroll-area";
|
|
31
|
-
export * from "./components/table";
|
|
32
|
-
export * from "./components/sheet";
|
|
33
|
-
export * from "./components/collapsible";
|
|
34
|
-
export * from "./components/search-dropdown";
|
|
35
|
-
export * from "./components/layout/screen-adaptive-view";
|
|
36
|
-
export * from "./hooks/use-media-query";
|
|
37
|
-
export * from "./lib/utils";
|
|
1
|
+
export * from "./components/button.js";
|
|
2
|
+
export * from "./components/card.js";
|
|
3
|
+
export * from "./components/label.js";
|
|
4
|
+
export * from "./components/textarea.js";
|
|
5
|
+
export * from "./components/skeleton.js";
|
|
6
|
+
export * from "./components/dialog.js";
|
|
7
|
+
export * from "./components/popover.js";
|
|
8
|
+
export * from "./components/dropdown-menu.js";
|
|
9
|
+
export * from "./components/menubar.js";
|
|
10
|
+
export * from "./components/alert-dialog.js";
|
|
11
|
+
export * from "./components/alert.js";
|
|
12
|
+
export * from "./components/toast.js";
|
|
13
|
+
export * from "./components/toaster.js";
|
|
14
|
+
export * from "./hooks/use-toast.js";
|
|
15
|
+
export * from "./components/input.js";
|
|
16
|
+
export * from "./components/select.js";
|
|
17
|
+
export * from "./components/tabs.js";
|
|
18
|
+
export * from "./components/tooltip.js";
|
|
19
|
+
export * from "./components/form.js";
|
|
20
|
+
export * from "./components/checkbox.js";
|
|
21
|
+
export * from "./components/switch.js";
|
|
22
|
+
export * from "./components/badge.js";
|
|
23
|
+
export * from "./components/avatar.js";
|
|
24
|
+
export * from "./components/separator.js";
|
|
25
|
+
export * from "./components/accordion.js";
|
|
26
|
+
export * from "./components/radio-group.js";
|
|
27
|
+
export * from "./components/progress.js";
|
|
28
|
+
export * from "./components/slider.js";
|
|
29
|
+
export * from "./components/date-picker.js";
|
|
30
|
+
export * from "./components/scroll-area.js";
|
|
31
|
+
export * from "./components/table.js";
|
|
32
|
+
export * from "./components/sheet.js";
|
|
33
|
+
export * from "./components/collapsible.js";
|
|
34
|
+
export * from "./components/search-dropdown.js";
|
|
35
|
+
export * from "./components/layout/screen-adaptive-view.js";
|
|
36
|
+
export * from "./hooks/use-media-query.js";
|
|
37
|
+
export * from "./lib/utils.js";
|
|
38
38
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,wBAAwB,CAAC;AACvC,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC;AACtC,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,yBAAyB,CAAC;AACxC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,yBAAyB,CAAC;AACxC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,yBAAyB,CAAC;AACxC,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,sBAAsB,CAAC;AACrC,cAAc,yBAAyB,CAAC;AACxC,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,iCAAiC,CAAC;AAGhD,cAAc,6CAA6C,CAAC;AAG5D,cAAc,4BAA4B,CAAC;AAG3C,cAAc,gBAAgB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,42 +1,42 @@
|
|
|
1
1
|
// Export all components
|
|
2
|
-
export * from "./components/button";
|
|
3
|
-
export * from "./components/card";
|
|
4
|
-
export * from "./components/label";
|
|
5
|
-
export * from "./components/textarea";
|
|
6
|
-
export * from "./components/skeleton";
|
|
7
|
-
export * from "./components/dialog";
|
|
8
|
-
export * from "./components/popover";
|
|
9
|
-
export * from "./components/dropdown-menu";
|
|
10
|
-
export * from "./components/menubar";
|
|
11
|
-
export * from "./components/alert-dialog";
|
|
12
|
-
export * from "./components/alert";
|
|
13
|
-
export * from "./components/toast";
|
|
14
|
-
export * from "./components/toaster";
|
|
15
|
-
export * from "./hooks/use-toast";
|
|
16
|
-
export * from "./components/input";
|
|
17
|
-
export * from "./components/select";
|
|
18
|
-
export * from "./components/tabs";
|
|
19
|
-
export * from "./components/tooltip";
|
|
20
|
-
export * from "./components/form";
|
|
21
|
-
export * from "./components/checkbox";
|
|
22
|
-
export * from "./components/switch";
|
|
23
|
-
export * from "./components/badge";
|
|
24
|
-
export * from "./components/avatar";
|
|
25
|
-
export * from "./components/separator";
|
|
26
|
-
export * from "./components/accordion";
|
|
27
|
-
export * from "./components/radio-group";
|
|
28
|
-
export * from "./components/progress";
|
|
29
|
-
export * from "./components/slider";
|
|
30
|
-
export * from "./components/date-picker";
|
|
31
|
-
export * from "./components/scroll-area";
|
|
32
|
-
export * from "./components/table";
|
|
33
|
-
export * from "./components/sheet";
|
|
34
|
-
export * from "./components/collapsible";
|
|
35
|
-
export * from "./components/search-dropdown";
|
|
2
|
+
export * from "./components/button.js";
|
|
3
|
+
export * from "./components/card.js";
|
|
4
|
+
export * from "./components/label.js";
|
|
5
|
+
export * from "./components/textarea.js";
|
|
6
|
+
export * from "./components/skeleton.js";
|
|
7
|
+
export * from "./components/dialog.js";
|
|
8
|
+
export * from "./components/popover.js";
|
|
9
|
+
export * from "./components/dropdown-menu.js";
|
|
10
|
+
export * from "./components/menubar.js";
|
|
11
|
+
export * from "./components/alert-dialog.js";
|
|
12
|
+
export * from "./components/alert.js";
|
|
13
|
+
export * from "./components/toast.js";
|
|
14
|
+
export * from "./components/toaster.js";
|
|
15
|
+
export * from "./hooks/use-toast.js";
|
|
16
|
+
export * from "./components/input.js";
|
|
17
|
+
export * from "./components/select.js";
|
|
18
|
+
export * from "./components/tabs.js";
|
|
19
|
+
export * from "./components/tooltip.js";
|
|
20
|
+
export * from "./components/form.js";
|
|
21
|
+
export * from "./components/checkbox.js";
|
|
22
|
+
export * from "./components/switch.js";
|
|
23
|
+
export * from "./components/badge.js";
|
|
24
|
+
export * from "./components/avatar.js";
|
|
25
|
+
export * from "./components/separator.js";
|
|
26
|
+
export * from "./components/accordion.js";
|
|
27
|
+
export * from "./components/radio-group.js";
|
|
28
|
+
export * from "./components/progress.js";
|
|
29
|
+
export * from "./components/slider.js";
|
|
30
|
+
export * from "./components/date-picker.js";
|
|
31
|
+
export * from "./components/scroll-area.js";
|
|
32
|
+
export * from "./components/table.js";
|
|
33
|
+
export * from "./components/sheet.js";
|
|
34
|
+
export * from "./components/collapsible.js";
|
|
35
|
+
export * from "./components/search-dropdown.js";
|
|
36
36
|
// Layout
|
|
37
|
-
export * from "./components/layout/screen-adaptive-view";
|
|
37
|
+
export * from "./components/layout/screen-adaptive-view.js";
|
|
38
38
|
// Hooks
|
|
39
|
-
export * from "./hooks/use-media-query";
|
|
39
|
+
export * from "./hooks/use-media-query.js";
|
|
40
40
|
// Export utilities
|
|
41
|
-
export * from "./lib/utils";
|
|
41
|
+
export * from "./lib/utils.js";
|
|
42
42
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,wBAAwB;AACxB,cAAc,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,wBAAwB;AACxB,cAAc,wBAAwB,CAAC;AACvC,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC;AACtC,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,yBAAyB,CAAC;AACxC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,yBAAyB,CAAC;AACxC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,yBAAyB,CAAC;AACxC,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,sBAAsB,CAAC;AACrC,cAAc,yBAAyB,CAAC;AACxC,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,iCAAiC,CAAC;AAEhD,SAAS;AACT,cAAc,6CAA6C,CAAC;AAE5D,QAAQ;AACR,cAAc,4BAA4B,CAAC;AAE3C,mBAAmB;AACnB,cAAc,gBAAgB,CAAC"}
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@ import * as React from "react"
|
|
|
4
4
|
import * as AccordionPrimitive from "@radix-ui/react-accordion"
|
|
5
5
|
import { ChevronDown } from "lucide-react"
|
|
6
6
|
|
|
7
|
-
import { cn } from "../lib/utils"
|
|
7
|
+
import { cn } from "../lib/utils.js"
|
|
8
8
|
|
|
9
9
|
const Accordion = AccordionPrimitive.Root
|
|
10
10
|
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
import * as React from "react"
|
|
4
4
|
import * as AlertDialogPrimitive from "@radix-ui/react-alert-dialog"
|
|
5
5
|
|
|
6
|
-
import { cn } from "../lib/utils"
|
|
7
|
-
import { buttonVariants } from "./button"
|
|
6
|
+
import { cn } from "../lib/utils.js"
|
|
7
|
+
import { buttonVariants } from "./button.js"
|
|
8
8
|
|
|
9
9
|
const AlertDialog = AlertDialogPrimitive.Root
|
|
10
10
|
const AlertDialogTrigger = AlertDialogPrimitive.Trigger
|
package/src/components/alert.tsx
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from "react"
|
|
2
2
|
import { cva, type VariantProps } from "class-variance-authority"
|
|
3
3
|
|
|
4
|
-
import { cn } from "../lib/utils"
|
|
4
|
+
import { cn } from "../lib/utils.js"
|
|
5
5
|
|
|
6
6
|
const alertVariants = cva(
|
|
7
7
|
"relative w-full rounded-lg border p-4 [&>svg~*]:pl-7 [&>svg+div]:translate-y-[-3px] [&>svg]:absolute [&>svg]:left-4 [&>svg]:top-4 [&>svg]:text-foreground",
|
package/src/components/badge.tsx
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
import * as React from "react";
|
|
4
4
|
import { cva, type VariantProps } from "class-variance-authority";
|
|
5
5
|
|
|
6
|
-
import { cn } from "../lib/utils";
|
|
6
|
+
import { cn } from "../lib/utils.js";
|
|
7
7
|
|
|
8
8
|
const badgeVariants = cva(
|
|
9
9
|
"inline-flex items-center rounded-full border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2",
|
|
@@ -4,7 +4,7 @@ import * as React from "react"
|
|
|
4
4
|
import { Slot } from "@radix-ui/react-slot"
|
|
5
5
|
import { cva, type VariantProps } from "class-variance-authority"
|
|
6
6
|
|
|
7
|
-
import { cn } from "../lib/utils"
|
|
7
|
+
import { cn } from "../lib/utils.js"
|
|
8
8
|
|
|
9
9
|
const buttonVariants = cva(
|
|
10
10
|
"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-bold ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50",
|
package/src/components/card.tsx
CHANGED
|
@@ -4,7 +4,7 @@ import * as React from "react"
|
|
|
4
4
|
import * as CheckboxPrimitive from "@radix-ui/react-checkbox"
|
|
5
5
|
import { Check } from "lucide-react"
|
|
6
6
|
|
|
7
|
-
import { cn } from "../lib/utils"
|
|
7
|
+
import { cn } from "../lib/utils.js"
|
|
8
8
|
|
|
9
9
|
const Checkbox = React.forwardRef<
|
|
10
10
|
React.ElementRef<typeof CheckboxPrimitive.Root>,
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
import * as React from "react"
|
|
4
4
|
import { ChevronLeft, ChevronRight, ChevronUp, ChevronDown } from "lucide-react"
|
|
5
|
-
import { Button } from "./button"
|
|
6
|
-
import { cn } from "../lib/utils"
|
|
5
|
+
import { Button } from "./button.js"
|
|
6
|
+
import { cn } from "../lib/utils.js"
|
|
7
7
|
|
|
8
8
|
export interface DatePickerProps {
|
|
9
9
|
selected?: Date
|
|
@@ -4,7 +4,7 @@ import * as React from "react"
|
|
|
4
4
|
import * as DialogPrimitive from "@radix-ui/react-dialog"
|
|
5
5
|
import { X } from "lucide-react"
|
|
6
6
|
|
|
7
|
-
import { cn } from "../lib/utils"
|
|
7
|
+
import { cn } from "../lib/utils.js"
|
|
8
8
|
|
|
9
9
|
const Dialog = DialogPrimitive.Root
|
|
10
10
|
const DialogTrigger = DialogPrimitive.Trigger
|
|
@@ -4,7 +4,7 @@ import * as React from "react"
|
|
|
4
4
|
import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu"
|
|
5
5
|
import { Check, ChevronRight, Circle } from "lucide-react"
|
|
6
6
|
|
|
7
|
-
import { cn } from "../lib/utils"
|
|
7
|
+
import { cn } from "../lib/utils.js"
|
|
8
8
|
|
|
9
9
|
const DropdownMenu = DropdownMenuPrimitive.Root
|
|
10
10
|
const DropdownMenuTrigger = DropdownMenuPrimitive.Trigger
|
package/src/components/form.tsx
CHANGED
package/src/components/input.tsx
CHANGED
package/src/components/label.tsx
CHANGED
|
@@ -4,7 +4,7 @@ import * as React from "react"
|
|
|
4
4
|
import * as LabelPrimitive from "@radix-ui/react-label"
|
|
5
5
|
import { cva, type VariantProps } from "class-variance-authority"
|
|
6
6
|
|
|
7
|
-
import { cn } from "../lib/utils"
|
|
7
|
+
import { cn } from "../lib/utils.js"
|
|
8
8
|
|
|
9
9
|
const labelVariants = cva(
|
|
10
10
|
"text-sm font-bold leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
|
|
3
3
|
import * as React from "react";
|
|
4
|
-
import { cn } from "../../lib/utils";
|
|
5
|
-
import { useMediaQuery } from "../../hooks/use-media-query";
|
|
4
|
+
import { cn } from "../../lib/utils.js";
|
|
5
|
+
import { useMediaQuery } from "../../hooks/use-media-query.js";
|
|
6
6
|
|
|
7
7
|
export type MaxWidthOption =
|
|
8
8
|
| "none"
|
|
@@ -4,7 +4,7 @@ import * as React from "react"
|
|
|
4
4
|
import * as MenubarPrimitive from "@radix-ui/react-menubar"
|
|
5
5
|
import { Check, ChevronRight, Circle } from "lucide-react"
|
|
6
6
|
|
|
7
|
-
import { cn } from "../lib/utils"
|
|
7
|
+
import { cn } from "../lib/utils.js"
|
|
8
8
|
|
|
9
9
|
function MenubarMenu({ ...props }: React.ComponentProps<typeof MenubarPrimitive.Menu>) {
|
|
10
10
|
return <MenubarPrimitive.Menu {...props} />
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import * as React from "react"
|
|
4
4
|
import * as ProgressPrimitive from "@radix-ui/react-progress"
|
|
5
|
-
import { cn } from "../lib/utils"
|
|
5
|
+
import { cn } from "../lib/utils.js"
|
|
6
6
|
|
|
7
7
|
interface ProgressProps extends React.ComponentPropsWithoutRef<typeof ProgressPrimitive.Root> {
|
|
8
8
|
indicatorClassName?: string
|
|
@@ -4,7 +4,7 @@ import * as React from "react"
|
|
|
4
4
|
import * as RadioGroupPrimitive from "@radix-ui/react-radio-group"
|
|
5
5
|
import { Circle } from "lucide-react"
|
|
6
6
|
|
|
7
|
-
import { cn } from "../lib/utils"
|
|
7
|
+
import { cn } from "../lib/utils.js"
|
|
8
8
|
|
|
9
9
|
const RadioGroup = React.forwardRef<
|
|
10
10
|
React.ElementRef<typeof RadioGroupPrimitive.Root>,
|