@reinvented/design 1.2.0 → 1.2.1
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/package.json +1 -1
- package/src/components/ui/alert-dialog.tsx +1 -1
- package/src/components/ui/calendar.tsx +1 -1
- package/src/components/ui/carousel.tsx +1 -1
- package/src/components/ui/command.tsx +1 -1
- package/src/components/ui/form.tsx +1 -1
- package/src/components/ui/pagination.tsx +1 -1
- package/src/components/ui/toggle-group.tsx +1 -1
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@ import * as React from "react"
|
|
|
4
4
|
import * as AlertDialogPrimitive from "@radix-ui/react-alert-dialog"
|
|
5
5
|
|
|
6
6
|
import { cn } from '../../lib/utils'
|
|
7
|
-
import { buttonVariants } from './button
|
|
7
|
+
import { buttonVariants } from './button'
|
|
8
8
|
|
|
9
9
|
const AlertDialog = AlertDialogPrimitive.Root
|
|
10
10
|
|
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
import { DayButton, DayPicker, getDefaultClassNames } from "react-day-picker"
|
|
8
8
|
|
|
9
9
|
import { cn } from '../../lib/utils'
|
|
10
|
-
import { Button, buttonVariants } from './button
|
|
10
|
+
import { Button, buttonVariants } from './button'
|
|
11
11
|
|
|
12
12
|
function Calendar({
|
|
13
13
|
className,
|
|
@@ -7,7 +7,7 @@ import useEmblaCarousel, {
|
|
|
7
7
|
import { ArrowLeft, ArrowRight } from "lucide-react"
|
|
8
8
|
|
|
9
9
|
import { cn } from '../../lib/utils'
|
|
10
|
-
import { Button } from './button
|
|
10
|
+
import { Button } from './button'
|
|
11
11
|
|
|
12
12
|
type CarouselApi = UseEmblaCarouselType[1]
|
|
13
13
|
type UseCarouselParameters = Parameters<typeof useEmblaCarousel>
|
|
@@ -6,7 +6,7 @@ import { Command as CommandPrimitive } from "cmdk"
|
|
|
6
6
|
import { Search } from "lucide-react"
|
|
7
7
|
|
|
8
8
|
import { cn } from '../../lib/utils'
|
|
9
|
-
import { Dialog, DialogContent } from './dialog
|
|
9
|
+
import { Dialog, DialogContent } from './dialog'
|
|
10
10
|
|
|
11
11
|
const Command = React.forwardRef<
|
|
12
12
|
React.ElementRef<typeof CommandPrimitive>,
|
|
@@ -2,7 +2,7 @@ import * as React from "react"
|
|
|
2
2
|
import { ChevronLeft, ChevronRight, MoreHorizontal } from "lucide-react"
|
|
3
3
|
|
|
4
4
|
import { cn } from '../../lib/utils'
|
|
5
|
-
import { ButtonProps, buttonVariants } from './button
|
|
5
|
+
import { ButtonProps, buttonVariants } from './button'
|
|
6
6
|
|
|
7
7
|
const Pagination = ({ className, ...props }: React.ComponentProps<"nav">) => (
|
|
8
8
|
<nav
|
|
@@ -5,7 +5,7 @@ import * as ToggleGroupPrimitive from "@radix-ui/react-toggle-group"
|
|
|
5
5
|
import { type VariantProps } from "class-variance-authority"
|
|
6
6
|
|
|
7
7
|
import { cn } from '../../lib/utils'
|
|
8
|
-
import { toggleVariants } from './toggle
|
|
8
|
+
import { toggleVariants } from './toggle'
|
|
9
9
|
|
|
10
10
|
const ToggleGroupContext = React.createContext<
|
|
11
11
|
VariantProps<typeof toggleVariants>
|