@cloudwick/astral-ui-cli 1.0.0 → 2.0.0

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.
@@ -39,20 +39,20 @@ export default {
39
39
  "to": { opacity: "0" }
40
40
  },
41
41
  "panel-slide-in": {
42
- "from": { right: "-110vw" },
43
- "to": { right: "0" }
42
+ "from": { transform: "translateX(110vw)" },
43
+ "to": { transform: "translateX(0)" }
44
44
  },
45
45
  "panel-slide-in-rtl": {
46
- "from": { left: "-110vw" },
47
- "to": { left: "0" }
46
+ "from": { transform: "translateX(-110vw)" },
47
+ "to": { transform: "translateX(0)" }
48
48
  },
49
49
  "panel-slide-out": {
50
- "from": { right: "0" },
51
- "to": { right: "-110vw" }
50
+ "from": { transform: "translateX(0)" },
51
+ "to": { transform: "translateX(110vw)" }
52
52
  },
53
53
  "panel-slide-out-rtl": {
54
- "from": { left: "0" },
55
- "to": { left: "-110vw" }
54
+ "from": { transform: "translateX(0)" },
55
+ "to": { transform: "translateX(-110vw)" }
56
56
  }
57
57
  },
58
58
  colors: {
@@ -2,4 +2,3 @@ export * from "./numberUtils";
2
2
  export * from "./stringUtils";
3
3
  export * from "./findParentAttribute";
4
4
  export { debounce } from "./debounce";
5
- export { cn } from "./cn";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cloudwick/astral-ui-cli",
3
- "version": "1.0.0",
3
+ "version": "2.0.0",
4
4
  "description": "CLI for installing Astral UI components in any codebase",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -59,4 +59,4 @@
59
59
  "engines": {
60
60
  "node": ">=18.0.0"
61
61
  }
62
- }
62
+ }
@@ -1,13 +0,0 @@
1
- import { clsx, type ClassValue } from "clsx";
2
- import { twMerge } from "tailwind-merge";
3
-
4
- /**
5
- * Merges multiple class values into a single className string
6
- * Uses clsx for conditional classes and twMerge to handle Tailwind conflicts
7
- * @param inputs - Class values to merge
8
- * @returns Merged className string
9
- * @example cn("text-red-500", "bg-blue-500", isActive && "font-bold")
10
- */
11
- export function cn( ...inputs: ClassValue[]) {
12
- return twMerge( clsx( inputs ));
13
- }