@beyondcorp/beyond-ui 1.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.
@@ -0,0 +1,69 @@
1
+ export declare const defaultTheme: {
2
+ colors: {
3
+ primary: {
4
+ 50: string;
5
+ 100: string;
6
+ 200: string;
7
+ 300: string;
8
+ 400: string;
9
+ 500: string;
10
+ 600: string;
11
+ 700: string;
12
+ 800: string;
13
+ 900: string;
14
+ 950: string;
15
+ };
16
+ secondary: {
17
+ 50: string;
18
+ 100: string;
19
+ 200: string;
20
+ 300: string;
21
+ 400: string;
22
+ 500: string;
23
+ 600: string;
24
+ 700: string;
25
+ 800: string;
26
+ 900: string;
27
+ 950: string;
28
+ };
29
+ danger: {
30
+ 50: string;
31
+ 100: string;
32
+ 200: string;
33
+ 300: string;
34
+ 400: string;
35
+ 500: string;
36
+ 600: string;
37
+ 700: string;
38
+ 800: string;
39
+ 900: string;
40
+ 950: string;
41
+ };
42
+ success: {
43
+ 50: string;
44
+ 100: string;
45
+ 200: string;
46
+ 300: string;
47
+ 400: string;
48
+ 500: string;
49
+ 600: string;
50
+ 700: string;
51
+ 800: string;
52
+ 900: string;
53
+ 950: string;
54
+ };
55
+ warning: {
56
+ 50: string;
57
+ 100: string;
58
+ 200: string;
59
+ 300: string;
60
+ 400: string;
61
+ 500: string;
62
+ 600: string;
63
+ 700: string;
64
+ 800: string;
65
+ 900: string;
66
+ 950: string;
67
+ };
68
+ };
69
+ };
@@ -0,0 +1,3 @@
1
+ import { ClassValue } from 'clsx';
2
+
3
+ export declare function cn(...inputs: ClassValue[]): any;
package/package.json ADDED
@@ -0,0 +1,81 @@
1
+ {
2
+ "name": "@beyondcorp/beyond-ui",
3
+ "version": "1.0.0",
4
+ "description": "A comprehensive React UI component library built with TypeScript, TailwindCSS, and CVA",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "module": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "scripts": {
13
+ "dev": "vite",
14
+ "build": "tsc && vite build",
15
+ "build:lib": "tsc --project tsconfig.build.json && vite build --mode library",
16
+ "lint": "eslint .",
17
+ "preview": "vite preview",
18
+ "storybook": "storybook dev -p 6006",
19
+ "build-storybook": "storybook build",
20
+ "test": "jest",
21
+ "test:watch": "jest --watch",
22
+ "test:coverage": "jest --coverage",
23
+ "prepublishOnly": "npm run build:lib"
24
+ },
25
+ "keywords": [
26
+ "react",
27
+ "ui",
28
+ "components",
29
+ "tailwindcss",
30
+ "typescript",
31
+ "design-system"
32
+ ],
33
+ "author": "Beyond Corp",
34
+ "license": "MIT",
35
+ "peerDependencies": {
36
+ "react": ">=18.0.0",
37
+ "react-dom": ">=18.0.0",
38
+ "tailwindcss": ">=3.0.0"
39
+ },
40
+ "dependencies": {
41
+ "@radix-ui/react-slot": "^1.0.2",
42
+ "@types/prismjs": "^1.26.5",
43
+ "class-variance-authority": "^0.7.0",
44
+ "clsx": "^2.0.0",
45
+ "lucide-react": "^0.344.0",
46
+ "prismjs": "^1.30.0",
47
+ "react-hot-toast": "^2.4.1",
48
+ "recharts": "^2.8.0",
49
+ "tailwind-merge": "^2.2.0"
50
+ },
51
+ "devDependencies": {
52
+ "@eslint/js": "^9.9.1",
53
+ "@storybook/addon-actions": "^7.6.6",
54
+ "@storybook/addon-controls": "^7.6.6",
55
+ "@storybook/addon-docs": "^7.6.6",
56
+ "@storybook/addon-essentials": "^7.6.6",
57
+ "@storybook/blocks": "^7.6.6",
58
+ "@storybook/react": "^7.6.6",
59
+ "@storybook/react-vite": "^7.6.6",
60
+ "@testing-library/jest-dom": "^6.1.6",
61
+ "@testing-library/react": "^14.1.2",
62
+ "@testing-library/user-event": "^14.5.1",
63
+ "@types/react": "^18.3.5",
64
+ "@types/react-dom": "^18.3.0",
65
+ "@vitejs/plugin-react": "^4.3.1",
66
+ "autoprefixer": "^10.4.18",
67
+ "eslint": "^9.9.1",
68
+ "eslint-plugin-react-hooks": "^5.1.0-rc.0",
69
+ "eslint-plugin-react-refresh": "^0.4.11",
70
+ "globals": "^15.9.0",
71
+ "jest": "^29.7.0",
72
+ "jest-environment-jsdom": "^29.7.0",
73
+ "postcss": "^8.4.35",
74
+ "storybook": "^7.6.6",
75
+ "tailwindcss": "^3.4.1",
76
+ "typescript": "^5.5.3",
77
+ "typescript-eslint": "^8.3.0",
78
+ "vite": "^5.4.2",
79
+ "vite-plugin-dts": "^3.9.1"
80
+ }
81
+ }