adminium 1.0.1 → 1.0.3
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 +6737 -887
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +914 -28
- package/dist/index.d.ts +914 -28
- package/dist/index.js +6500 -888
- package/dist/index.js.map +1 -1
- package/dist/styles/adminium.css +6238 -0
- package/dist/styles/config.reui.css +108 -0
- package/dist/styles/global.css +73 -2805
- package/package.json +29 -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.3",
|
|
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,9 +65,11 @@
|
|
|
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",
|
|
72
|
+
"cmdk": "^1.1.1",
|
|
62
73
|
"date-fns": "^4.1.0",
|
|
63
74
|
"embla-carousel": "8.6.0",
|
|
64
75
|
"embla-carousel-autoplay": "8.6.0",
|
|
@@ -66,7 +77,7 @@
|
|
|
66
77
|
"input-otp": "^1.4.2",
|
|
67
78
|
"lucide-react": "^0.562.0",
|
|
68
79
|
"motion": "^12.23.26",
|
|
69
|
-
"next": "16.1.
|
|
80
|
+
"next": "16.1.5",
|
|
70
81
|
"radix-ui": "^1.4.3",
|
|
71
82
|
"react-aria-components": "^1.10.1",
|
|
72
83
|
"react-aspect-ratio": "^1.1.9",
|
|
@@ -85,23 +96,37 @@
|
|
|
85
96
|
"@storybook/addon-vitest": "^10.1.10",
|
|
86
97
|
"@storybook/nextjs-vite": "^10.1.10",
|
|
87
98
|
"@tailwindcss/postcss": "^4",
|
|
99
|
+
"@tanstack/react-table": "^8.21.3",
|
|
100
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
101
|
+
"@testing-library/react": "^16.3.2",
|
|
102
|
+
"@testing-library/user-event": "^14.6.1",
|
|
103
|
+
"@types/jest-axe": "^3.5.9",
|
|
88
104
|
"@types/node": "^20",
|
|
89
105
|
"@types/react": "^19.1.8",
|
|
90
106
|
"@types/react-dom": "^19.1.6",
|
|
91
107
|
"@vitest/browser-playwright": "^4.0.16",
|
|
92
108
|
"@vitest/coverage-v8": "^4.0.16",
|
|
93
109
|
"babel-plugin-react-compiler": "1.0.0",
|
|
110
|
+
"cpy-cli": "^5.0.0",
|
|
94
111
|
"eslint": "^9.39.2",
|
|
95
112
|
"eslint-config-next": "^16.1.1",
|
|
96
113
|
"eslint-config-prettier": "^10.1.8",
|
|
97
114
|
"eslint-plugin-storybook": "^10.1.10",
|
|
98
115
|
"husky": "^9.1.7",
|
|
116
|
+
"jest": "^30.2.0",
|
|
117
|
+
"jest-axe": "^10.0.0",
|
|
118
|
+
"jest-environment-jsdom": "^30.2.0",
|
|
99
119
|
"lint-staged": "^16.2.7",
|
|
120
|
+
"mkdirp": "^3.0.1",
|
|
100
121
|
"playwright": "^1.57.0",
|
|
122
|
+
"postcss": "^8.5.6",
|
|
123
|
+
"postcss-cli": "^11.0.0",
|
|
101
124
|
"prettier": "^3.7.4",
|
|
102
125
|
"prettier-plugin-tailwindcss": "^0.7.2",
|
|
126
|
+
"react-hook-form": "^7.71.1",
|
|
103
127
|
"storybook": "^10.1.10",
|
|
104
128
|
"tailwindcss": "^4",
|
|
129
|
+
"ts-node": "^10.9.2",
|
|
105
130
|
"tsup": "^8.4.0",
|
|
106
131
|
"tw-animate-css": "^1.4.0",
|
|
107
132
|
"typescript": "^5.8.3",
|
package/dist/styles/global.d.cts
DELETED
package/dist/styles/global.d.ts
DELETED