adminium 1.0.0 → 1.0.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.
@@ -0,0 +1,2 @@
1
+
2
+ export { }
@@ -0,0 +1,2 @@
1
+
2
+ export { }
package/package.json CHANGED
@@ -1,31 +1,24 @@
1
1
  {
2
2
  "name": "adminium",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Metronic UI Component Library - A beautiful, reusable React component library built with Tailwind CSS",
5
5
  "author": "linkedunion",
6
6
  "license": "MIT",
7
7
  "type": "module",
8
- "main": "dist/index.js",
9
- "module": "dist/index.esm.js",
10
- "types": "dist/index.d.ts",
11
- "style": "dist/styles/global.css",
8
+ "main": "./dist/index.cjs",
9
+ "module": "./dist/index.js",
10
+ "types": "./dist/index.d.ts",
12
11
  "files": [
13
- "dist",
14
- "src/styles/global.css"
12
+ "dist"
15
13
  ],
16
14
  "exports": {
17
15
  ".": {
18
- "import": {
19
- "types": "./dist/index.d.ts",
20
- "default": "./dist/index.js"
21
- },
22
- "require": {
23
- "types": "./dist/index.d.cts",
24
- "default": "./dist/index.cjs"
25
- }
16
+ "types": "./dist/index.d.ts",
17
+ "import": "./dist/index.js",
18
+ "require": "./dist/index.cjs"
26
19
  },
27
- "./styles": "./src/styles/theme.css",
28
- "./styles/*": "./src/styles/*"
20
+ "./styles": "./dist/styles/theme.css",
21
+ "./styles/*": "./dist/styles/*"
29
22
  },
30
23
  "scripts": {
31
24
  "dev": "next dev",
@@ -34,7 +27,6 @@
34
27
  "start": "next start",
35
28
  "lint": "eslint",
36
29
  "build": "tsup",
37
- "build:lib": "tsup",
38
30
  "dev:lib": "tsup --watch",
39
31
  "clean": "rm -rf dist",
40
32
  "prepublishOnly": "npm run build",
@@ -54,8 +46,8 @@
54
46
  ]
55
47
  },
56
48
  "peerDependencies": {
57
- "react": ">=18.0.0",
58
- "react-dom": ">=18.0.0",
49
+ "react": ">=19.0.0",
50
+ "react-dom": ">=19.0.0",
59
51
  "tailwindcss": ">=4.0.0"
60
52
  },
61
53
  "dependencies": {
@@ -76,11 +68,9 @@
76
68
  "motion": "^12.23.26",
77
69
  "next": "16.1.1",
78
70
  "radix-ui": "^1.4.3",
79
- "react": "19.2.3",
80
71
  "react-aria-components": "^1.10.1",
81
72
  "react-aspect-ratio": "^1.1.9",
82
73
  "react-day-picker": "^9.7.0",
83
- "react-dom": "19.2.3",
84
74
  "react-resizable-panels": "^3.0.3",
85
75
  "recharts": "2.15.1",
86
76
  "sonner": "^2.0.5",
@@ -1,20 +0,0 @@
1
- /* Tailwind Core */
2
- @import "tailwindcss";
3
-
4
- /* ReUI Configs */
5
- @import "./config.reui.css";
6
-
7
- /** Global Styles **/
8
- @layer base {
9
- * {
10
- @apply border-border;
11
- }
12
-
13
- *:focus-visible {
14
- @apply outline-ring rounded-xs shadow-none outline-2 outline-offset-3 transition-none!;
15
- }
16
- }
17
-
18
- /** Dark/Light Theme Variant **/
19
- @custom-variant dark (&:is(.dark *));
20
- @custom-variant light (&:not(.dark *));