adminium 1.0.1 → 1.0.2
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 +82 -30
- package/dist/index.cjs +4360 -880
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +607 -29
- package/dist/index.d.ts +607 -29
- package/dist/index.js +4212 -884
- package/dist/index.js.map +1 -1
- package/dist/styles/adminium.css +5219 -0
- package/dist/styles/config.reui.css +108 -0
- package/dist/styles/global.css +17 -2814
- package/package.json +28 -4
- package/dist/styles/global.d.cts +0 -2
- package/dist/styles/global.d.ts +0 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "adminium",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
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",
|
|
@@ -11,13 +11,16 @@
|
|
|
11
11
|
"files": [
|
|
12
12
|
"dist"
|
|
13
13
|
],
|
|
14
|
+
"sideEffects": [
|
|
15
|
+
"*.css"
|
|
16
|
+
],
|
|
14
17
|
"exports": {
|
|
15
18
|
".": {
|
|
16
19
|
"types": "./dist/index.d.ts",
|
|
17
20
|
"import": "./dist/index.js",
|
|
18
21
|
"require": "./dist/index.cjs"
|
|
19
22
|
},
|
|
20
|
-
"./styles": "./dist/styles/
|
|
23
|
+
"./styles": "./dist/styles/global.css",
|
|
21
24
|
"./styles/*": "./dist/styles/*"
|
|
22
25
|
},
|
|
23
26
|
"scripts": {
|
|
@@ -26,11 +29,15 @@
|
|
|
26
29
|
"build:next": "next build",
|
|
27
30
|
"start": "next start",
|
|
28
31
|
"lint": "eslint",
|
|
29
|
-
"build": "tsup",
|
|
32
|
+
"build": "tsup && mkdirp dist/styles && npx postcss src/styles/global.css -o dist/styles/adminium.css && cpy --flat src/styles/global.css src/styles/config.reui.css dist/styles",
|
|
30
33
|
"dev:lib": "tsup --watch",
|
|
31
34
|
"clean": "rm -rf dist",
|
|
32
35
|
"prepublishOnly": "npm run build",
|
|
33
36
|
"typecheck": "tsc --noEmit",
|
|
37
|
+
"test": "jest",
|
|
38
|
+
"test:watch": "jest --watch",
|
|
39
|
+
"test:coverage": "jest --coverage",
|
|
40
|
+
"test:ci": "jest --ci --coverage --reporters=default",
|
|
34
41
|
"storybook": "storybook dev -p 6006",
|
|
35
42
|
"build-storybook": "storybook build",
|
|
36
43
|
"prepare": "husky"
|
|
@@ -46,8 +53,10 @@
|
|
|
46
53
|
]
|
|
47
54
|
},
|
|
48
55
|
"peerDependencies": {
|
|
56
|
+
"@tanstack/react-table": "^8.0.0",
|
|
49
57
|
"react": ">=19.0.0",
|
|
50
58
|
"react-dom": ">=19.0.0",
|
|
59
|
+
"react-hook-form": "^7.0.0",
|
|
51
60
|
"tailwindcss": ">=4.0.0"
|
|
52
61
|
},
|
|
53
62
|
"dependencies": {
|
|
@@ -56,6 +65,7 @@
|
|
|
56
65
|
"@dnd-kit/modifiers": "^9.0.0",
|
|
57
66
|
"@dnd-kit/sortable": "^10.0.0",
|
|
58
67
|
"@headless-tree/core": "^1.2.0",
|
|
68
|
+
"@tanstack/react-table": "^8.21.3",
|
|
59
69
|
"@testing-library/dom": "^10.4.1",
|
|
60
70
|
"class-variance-authority": "^0.7.1",
|
|
61
71
|
"clsx": "^2.1.1",
|
|
@@ -66,7 +76,7 @@
|
|
|
66
76
|
"input-otp": "^1.4.2",
|
|
67
77
|
"lucide-react": "^0.562.0",
|
|
68
78
|
"motion": "^12.23.26",
|
|
69
|
-
"next": "16.1.
|
|
79
|
+
"next": "16.1.5",
|
|
70
80
|
"radix-ui": "^1.4.3",
|
|
71
81
|
"react-aria-components": "^1.10.1",
|
|
72
82
|
"react-aspect-ratio": "^1.1.9",
|
|
@@ -85,23 +95,37 @@
|
|
|
85
95
|
"@storybook/addon-vitest": "^10.1.10",
|
|
86
96
|
"@storybook/nextjs-vite": "^10.1.10",
|
|
87
97
|
"@tailwindcss/postcss": "^4",
|
|
98
|
+
"@tanstack/react-table": "^8.21.3",
|
|
99
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
100
|
+
"@testing-library/react": "^16.3.2",
|
|
101
|
+
"@testing-library/user-event": "^14.6.1",
|
|
102
|
+
"@types/jest-axe": "^3.5.9",
|
|
88
103
|
"@types/node": "^20",
|
|
89
104
|
"@types/react": "^19.1.8",
|
|
90
105
|
"@types/react-dom": "^19.1.6",
|
|
91
106
|
"@vitest/browser-playwright": "^4.0.16",
|
|
92
107
|
"@vitest/coverage-v8": "^4.0.16",
|
|
93
108
|
"babel-plugin-react-compiler": "1.0.0",
|
|
109
|
+
"cpy-cli": "^5.0.0",
|
|
94
110
|
"eslint": "^9.39.2",
|
|
95
111
|
"eslint-config-next": "^16.1.1",
|
|
96
112
|
"eslint-config-prettier": "^10.1.8",
|
|
97
113
|
"eslint-plugin-storybook": "^10.1.10",
|
|
98
114
|
"husky": "^9.1.7",
|
|
115
|
+
"jest": "^30.2.0",
|
|
116
|
+
"jest-axe": "^10.0.0",
|
|
117
|
+
"jest-environment-jsdom": "^30.2.0",
|
|
99
118
|
"lint-staged": "^16.2.7",
|
|
119
|
+
"mkdirp": "^3.0.1",
|
|
100
120
|
"playwright": "^1.57.0",
|
|
121
|
+
"postcss": "^8.5.6",
|
|
122
|
+
"postcss-cli": "^11.0.0",
|
|
101
123
|
"prettier": "^3.7.4",
|
|
102
124
|
"prettier-plugin-tailwindcss": "^0.7.2",
|
|
125
|
+
"react-hook-form": "^7.71.1",
|
|
103
126
|
"storybook": "^10.1.10",
|
|
104
127
|
"tailwindcss": "^4",
|
|
128
|
+
"ts-node": "^10.9.2",
|
|
105
129
|
"tsup": "^8.4.0",
|
|
106
130
|
"tw-animate-css": "^1.4.0",
|
|
107
131
|
"typescript": "^5.8.3",
|
package/dist/styles/global.d.cts
DELETED
package/dist/styles/global.d.ts
DELETED