@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reinvented/design",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "type": "module",
5
5
  "main": "./src/index.ts",
6
6
  "exports": {
@@ -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>,
@@ -11,7 +11,7 @@ import {
11
11
  } from "react-hook-form"
12
12
 
13
13
  import { cn } from '../../lib/utils'
14
- import { Label } from './label"
14
+ import { Label } from './label'
15
15
 
16
16
  const Form = FormProvider
17
17
 
@@ -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>