@dinachi/cli 0.3.0 → 0.3.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/dist/index.js CHANGED
@@ -95,7 +95,7 @@ function getComponentRegistry() {
95
95
  { name: "index.ts" }
96
96
  ],
97
97
  dependencies: [
98
- "@base-ui-components/react/alert-dialog",
98
+ "@base-ui-components/react",
99
99
  "lucide-react"
100
100
  ],
101
101
  utilityDependencies: ["cn"]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dinachi/cli",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "CLI for adding Dinachi UI components to your project",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -1,6 +1,6 @@
1
1
  // @ts-nocheck
2
2
  import * as React from "react"
3
- import { AlertDialog as BaseAlertDialog } from "@base-ui-components/react/alert-dialog"
3
+ import { AlertDialog as BaseAlertDialog } from "@base-ui-components/react"
4
4
  import { cn } from "@/lib/utils"
5
5
 
6
6
  const AlertDialog = BaseAlertDialog.Root
@@ -1,4 +1,5 @@
1
1
  // @ts-nocheck
2
+ "use client"
2
3
  import * as React from "react"
3
4
  import { Dialog as BaseDialog } from "@base-ui-components/react/dialog"
4
5
  import { cn } from "@/lib/utils"