@andreagiugni/tailwind-dashboard-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.
Files changed (66) hide show
  1. package/LICENSE +22 -0
  2. package/README.md +282 -0
  3. package/dist/Editor-uOYxR3HX.d.cts +53 -0
  4. package/dist/Editor-uOYxR3HX.d.ts +53 -0
  5. package/dist/chunk-4OETC46A.js +353 -0
  6. package/dist/chunk-4OETC46A.js.map +1 -0
  7. package/dist/chunk-7OWZKV75.js +420 -0
  8. package/dist/chunk-7OWZKV75.js.map +1 -0
  9. package/dist/chunk-BGA7AECV.cjs +152 -0
  10. package/dist/chunk-BGA7AECV.cjs.map +1 -0
  11. package/dist/chunk-HT7SQXRF.cjs +85 -0
  12. package/dist/chunk-HT7SQXRF.cjs.map +1 -0
  13. package/dist/chunk-HZQZC5CK.js +124 -0
  14. package/dist/chunk-HZQZC5CK.js.map +1 -0
  15. package/dist/chunk-MEU4PMP5.js +146 -0
  16. package/dist/chunk-MEU4PMP5.js.map +1 -0
  17. package/dist/chunk-MYOOZFHK.cjs +430 -0
  18. package/dist/chunk-MYOOZFHK.cjs.map +1 -0
  19. package/dist/chunk-OSIOO5AE.cjs +130 -0
  20. package/dist/chunk-OSIOO5AE.cjs.map +1 -0
  21. package/dist/chunk-R66LONPQ.js +83 -0
  22. package/dist/chunk-R66LONPQ.js.map +1 -0
  23. package/dist/chunk-W7SNEBD7.cjs +362 -0
  24. package/dist/chunk-W7SNEBD7.cjs.map +1 -0
  25. package/dist/chunk-YERNSNT4.cjs +13 -0
  26. package/dist/chunk-YERNSNT4.cjs.map +1 -0
  27. package/dist/chunk-ZLIYUUA4.js +11 -0
  28. package/dist/chunk-ZLIYUUA4.js.map +1 -0
  29. package/dist/components/Calendar/Calendar.cjs +14 -0
  30. package/dist/components/Calendar/Calendar.cjs.map +1 -0
  31. package/dist/components/Calendar/Calendar.d.cts +12 -0
  32. package/dist/components/Calendar/Calendar.d.ts +12 -0
  33. package/dist/components/Calendar/Calendar.js +5 -0
  34. package/dist/components/Calendar/Calendar.js.map +1 -0
  35. package/dist/components/Charts/BarChart.cjs +13 -0
  36. package/dist/components/Charts/BarChart.cjs.map +1 -0
  37. package/dist/components/Charts/BarChart.d.cts +13 -0
  38. package/dist/components/Charts/BarChart.d.ts +13 -0
  39. package/dist/components/Charts/BarChart.js +4 -0
  40. package/dist/components/Charts/BarChart.js.map +1 -0
  41. package/dist/components/Charts/LineChart.cjs +13 -0
  42. package/dist/components/Charts/LineChart.cjs.map +1 -0
  43. package/dist/components/Charts/LineChart.d.cts +13 -0
  44. package/dist/components/Charts/LineChart.d.ts +13 -0
  45. package/dist/components/Charts/LineChart.js +4 -0
  46. package/dist/components/Charts/LineChart.js.map +1 -0
  47. package/dist/components/Editor/Editor.cjs +14 -0
  48. package/dist/components/Editor/Editor.cjs.map +1 -0
  49. package/dist/components/Editor/Editor.d.cts +3 -0
  50. package/dist/components/Editor/Editor.d.ts +3 -0
  51. package/dist/components/Editor/Editor.js +5 -0
  52. package/dist/components/Editor/Editor.js.map +1 -0
  53. package/dist/components/Map/CountryMap.cjs +13 -0
  54. package/dist/components/Map/CountryMap.cjs.map +1 -0
  55. package/dist/components/Map/CountryMap.d.cts +13 -0
  56. package/dist/components/Map/CountryMap.d.ts +13 -0
  57. package/dist/components/Map/CountryMap.js +4 -0
  58. package/dist/components/Map/CountryMap.js.map +1 -0
  59. package/dist/index.cjs +2896 -0
  60. package/dist/index.cjs.map +1 -0
  61. package/dist/index.d.cts +573 -0
  62. package/dist/index.d.ts +573 -0
  63. package/dist/index.js +2816 -0
  64. package/dist/index.js.map +1 -0
  65. package/package.json +134 -0
  66. package/src/theme.css +784 -0
package/package.json ADDED
@@ -0,0 +1,134 @@
1
+ {
2
+ "name": "@andreagiugni/tailwind-dashboard-ui",
3
+ "version": "0.1.0",
4
+ "description": "Reusable React + Tailwind CSS v4 dashboard components extracted from TailAdmin.",
5
+ "author": "Andrea Giugni",
6
+ "license": "MIT",
7
+ "type": "module",
8
+ "publishConfig": {
9
+ "access": "public"
10
+ },
11
+ "sideEffects": [
12
+ "**/*.css"
13
+ ],
14
+ "files": [
15
+ "dist",
16
+ "src/theme.css"
17
+ ],
18
+ "exports": {
19
+ ".": {
20
+ "types": "./dist/index.d.ts",
21
+ "import": "./dist/index.js",
22
+ "require": "./dist/index.cjs"
23
+ },
24
+ "./theme.css": "./src/theme.css"
25
+ },
26
+ "scripts": {
27
+ "build": "tsup",
28
+ "dev": "tsup --watch",
29
+ "typecheck": "tsc --noEmit",
30
+ "test": "vitest run",
31
+ "prepublishOnly": "npm run build"
32
+ },
33
+ "dependencies": {
34
+ "clsx": "^2.1.1",
35
+ "flatpickr": "^4.6.13",
36
+ "tailwind-merge": "^2.6.0"
37
+ },
38
+ "peerDependencies": {
39
+ "@fullcalendar/core": "^6",
40
+ "@fullcalendar/daygrid": "^6",
41
+ "@fullcalendar/interaction": "^6",
42
+ "@fullcalendar/list": "^6",
43
+ "@fullcalendar/react": "^6",
44
+ "@fullcalendar/timegrid": "^6",
45
+ "@react-jvectormap/core": "^1",
46
+ "@react-jvectormap/world": "^1",
47
+ "@tiptap/extension-link": "^2",
48
+ "@tiptap/extension-placeholder": "^2",
49
+ "@tiptap/pm": "^2",
50
+ "@tiptap/react": "^2",
51
+ "@tiptap/starter-kit": "^2",
52
+ "apexcharts": "^4",
53
+ "react": "^18 || ^19",
54
+ "react-apexcharts": "^1.8.0",
55
+ "react-dom": "^18 || ^19",
56
+ "tailwindcss": "^4"
57
+ },
58
+ "peerDependenciesMeta": {
59
+ "apexcharts": {
60
+ "optional": true
61
+ },
62
+ "react-apexcharts": {
63
+ "optional": true
64
+ },
65
+ "@fullcalendar/core": {
66
+ "optional": true
67
+ },
68
+ "@fullcalendar/react": {
69
+ "optional": true
70
+ },
71
+ "@fullcalendar/daygrid": {
72
+ "optional": true
73
+ },
74
+ "@fullcalendar/timegrid": {
75
+ "optional": true
76
+ },
77
+ "@fullcalendar/list": {
78
+ "optional": true
79
+ },
80
+ "@fullcalendar/interaction": {
81
+ "optional": true
82
+ },
83
+ "@react-jvectormap/core": {
84
+ "optional": true
85
+ },
86
+ "@react-jvectormap/world": {
87
+ "optional": true
88
+ },
89
+ "@tiptap/react": {
90
+ "optional": true
91
+ },
92
+ "@tiptap/pm": {
93
+ "optional": true
94
+ },
95
+ "@tiptap/starter-kit": {
96
+ "optional": true
97
+ },
98
+ "@tiptap/extension-link": {
99
+ "optional": true
100
+ },
101
+ "@tiptap/extension-placeholder": {
102
+ "optional": true
103
+ }
104
+ },
105
+ "devDependencies": {
106
+ "@fullcalendar/core": "^6.1.19",
107
+ "@fullcalendar/daygrid": "^6.1.19",
108
+ "@fullcalendar/interaction": "^6.1.19",
109
+ "@fullcalendar/list": "^6.1.19",
110
+ "@fullcalendar/react": "^6.1.19",
111
+ "@fullcalendar/timegrid": "^6.1.19",
112
+ "@react-jvectormap/core": "^1.0.4",
113
+ "@react-jvectormap/world": "^1.1.2",
114
+ "@testing-library/dom": "^10.4.1",
115
+ "@testing-library/jest-dom": "^6.4.0",
116
+ "@testing-library/react": "^16.0.0",
117
+ "@tiptap/extension-link": "^2.27.2",
118
+ "@tiptap/extension-placeholder": "^2.27.2",
119
+ "@tiptap/pm": "^2.27.2",
120
+ "@tiptap/react": "^2.27.2",
121
+ "@tiptap/starter-kit": "^2.27.2",
122
+ "@types/react": "^19.2.1",
123
+ "@types/react-dom": "^19.2.1",
124
+ "apexcharts": "^4.7.0",
125
+ "jsdom": "^25.0.0",
126
+ "react": "^19.2.0",
127
+ "react-apexcharts": "^1.8.0",
128
+ "react-dom": "^19.2.0",
129
+ "tailwindcss": "^4.1.17",
130
+ "tsup": "^8.3.0",
131
+ "typescript": "^5.9.3",
132
+ "vitest": "^2.1.0"
133
+ }
134
+ }