crm-project-ui 0.1.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.
- package/README.md +73 -0
- package/dist/crm-ui.cjs.js +59 -0
- package/dist/crm-ui.cjs.js.map +1 -0
- package/dist/crm-ui.css +1 -0
- package/dist/crm-ui.es.js +21263 -0
- package/dist/crm-ui.es.js.map +1 -0
- package/dist/vite.svg +1 -0
- package/package.json +131 -0
package/dist/vite.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
|
package/package.json
ADDED
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "crm-project-ui",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"description": "UI Component Library for CRM",
|
|
6
|
+
"author": "Vitor Gabriel Silva <vitorgabrielsbo1460@gmail.com>",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"react",
|
|
10
|
+
"ui",
|
|
11
|
+
"components",
|
|
12
|
+
"crm"
|
|
13
|
+
],
|
|
14
|
+
"type": "module",
|
|
15
|
+
"main": "./dist/crm-ui.cjs.js",
|
|
16
|
+
"module": "./dist/crm-ui.es.js",
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"exports": {
|
|
19
|
+
".": {
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
21
|
+
"import": "./dist/crm-ui.es.js",
|
|
22
|
+
"require": "./dist/crm-ui.cjs.js"
|
|
23
|
+
},
|
|
24
|
+
"./index.css": {
|
|
25
|
+
"import": "./dist/crm-ui.css",
|
|
26
|
+
"default": "./dist/crm-ui.css"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"sideEffects": false,
|
|
30
|
+
"files": [
|
|
31
|
+
"dist"
|
|
32
|
+
],
|
|
33
|
+
"scripts": {
|
|
34
|
+
"dev": "vite",
|
|
35
|
+
"build": "tsc -p tsconfig.app.json && vite build",
|
|
36
|
+
"lint": "eslint .",
|
|
37
|
+
"preview": "vite preview",
|
|
38
|
+
"test:watch": "vitest",
|
|
39
|
+
"test:watch:headless": "vitest --browser.headless"
|
|
40
|
+
},
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"react": "^19.2.0",
|
|
43
|
+
"react-dom": "^19.2.0"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@eslint/js": "^9.39.1",
|
|
47
|
+
"@tailwindcss/postcss": "^4.1.18",
|
|
48
|
+
"@types/node": "^24.10.1",
|
|
49
|
+
"@types/react": "^19.2.5",
|
|
50
|
+
"@types/react-dom": "^19.2.3",
|
|
51
|
+
"@typescript-eslint/eslint-plugin": "^8.31.0",
|
|
52
|
+
"@typescript-eslint/parser": "^8.31.0",
|
|
53
|
+
"@vitejs/plugin-react-swc": "^4.2.2",
|
|
54
|
+
"autoprefixer": "^10.4.23",
|
|
55
|
+
"eslint": "^9.39.1",
|
|
56
|
+
"eslint-config-prettier": "^10.1.2",
|
|
57
|
+
"eslint-plugin-import": "^2.31.0",
|
|
58
|
+
"eslint-plugin-import-helpers": "^2.0.1",
|
|
59
|
+
"eslint-plugin-perfectionist": "^4.12.3",
|
|
60
|
+
"eslint-plugin-prettier": "^5.2.6",
|
|
61
|
+
"eslint-plugin-promise": "^7.2.1",
|
|
62
|
+
"eslint-plugin-react": "^7.37.5",
|
|
63
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
64
|
+
"eslint-plugin-react-refresh": "^0.4.24",
|
|
65
|
+
"eslint-plugin-svg-jsx": "^1.2.4",
|
|
66
|
+
"eslint-plugin-unused-imports": "^4.1.4",
|
|
67
|
+
"globals": "^16.5.0",
|
|
68
|
+
"postcss": "link:tailwindcss\\postcss",
|
|
69
|
+
"prettier": "^3.5.3",
|
|
70
|
+
"prettier-plugin-tailwindcss": "^0.6.11",
|
|
71
|
+
"react-dom": "^19.2.0",
|
|
72
|
+
"tailwindcss": "^4.1.18",
|
|
73
|
+
"tsup": "^8.5.1",
|
|
74
|
+
"tw-animate-css": "^1.4.0",
|
|
75
|
+
"typescript": "~5.9.3",
|
|
76
|
+
"typescript-eslint": "^8.46.4",
|
|
77
|
+
"vite": "^7.2.4",
|
|
78
|
+
"vitest": "^4.0.17",
|
|
79
|
+
"vitest-browser-react": "^2.0.2"
|
|
80
|
+
},
|
|
81
|
+
"dependencies": {
|
|
82
|
+
"@hookform/resolvers": "^5.2.2",
|
|
83
|
+
"@radix-ui/react-accordion": "^1.2.12",
|
|
84
|
+
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
85
|
+
"@radix-ui/react-aspect-ratio": "^1.1.8",
|
|
86
|
+
"@radix-ui/react-avatar": "^1.1.11",
|
|
87
|
+
"@radix-ui/react-checkbox": "^1.3.3",
|
|
88
|
+
"@radix-ui/react-collapsible": "^1.1.12",
|
|
89
|
+
"@radix-ui/react-context-menu": "^2.2.16",
|
|
90
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
91
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
92
|
+
"@radix-ui/react-hover-card": "^1.1.15",
|
|
93
|
+
"@radix-ui/react-label": "^2.1.8",
|
|
94
|
+
"@radix-ui/react-menubar": "^1.1.16",
|
|
95
|
+
"@radix-ui/react-navigation-menu": "^1.2.14",
|
|
96
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
97
|
+
"@radix-ui/react-progress": "^1.1.8",
|
|
98
|
+
"@radix-ui/react-radio-group": "^1.3.8",
|
|
99
|
+
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
100
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
101
|
+
"@radix-ui/react-separator": "^1.1.8",
|
|
102
|
+
"@radix-ui/react-slider": "^1.3.6",
|
|
103
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
104
|
+
"@radix-ui/react-switch": "^1.2.6",
|
|
105
|
+
"@radix-ui/react-tabs": "^1.1.13",
|
|
106
|
+
"@radix-ui/react-toggle": "^1.1.10",
|
|
107
|
+
"@radix-ui/react-toggle-group": "^1.1.11",
|
|
108
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
109
|
+
"@tailwindcss/vite": "^4.1.18",
|
|
110
|
+
"@vitest/browser": "^4.0.17",
|
|
111
|
+
"@vitest/browser-playwright": "^4.0.17",
|
|
112
|
+
"class-variance-authority": "^0.7.1",
|
|
113
|
+
"clsx": "^2.1.1",
|
|
114
|
+
"cmdk": "^1.1.1",
|
|
115
|
+
"date-fns": "^4.1.0",
|
|
116
|
+
"embla-carousel-react": "^8.6.0",
|
|
117
|
+
"input-otp": "^1.4.2",
|
|
118
|
+
"lucide-react": "^0.562.0",
|
|
119
|
+
"next-themes": "^0.4.6",
|
|
120
|
+
"react-day-picker": "^9.13.0",
|
|
121
|
+
"react-hook-form": "^7.71.1",
|
|
122
|
+
"react-resizable-panels": "^4.4.1",
|
|
123
|
+
"recharts": "2.15.4",
|
|
124
|
+
"sonner": "^2.0.7",
|
|
125
|
+
"tailwind-merge": "^3.4.0",
|
|
126
|
+
"tailwindcss-animate": "^1.0.7",
|
|
127
|
+
"usehooks-ts": "^3.1.1",
|
|
128
|
+
"vaul": "^1.1.2",
|
|
129
|
+
"zod": "^4.3.5"
|
|
130
|
+
}
|
|
131
|
+
}
|