@umituz/atomic-next 2.0.2 → 2.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/dist/index.d.mts +82 -84
- package/dist/index.d.ts +82 -84
- package/dist/index.js +400 -543
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +400 -543
- package/dist/index.mjs.map +1 -1
- package/package.json +12 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/atomic-next",
|
|
3
|
-
"version": "2.0
|
|
4
|
-
"description": "A
|
|
3
|
+
"version": "2.1.0",
|
|
4
|
+
"description": "A professional atomic design system for Next.js — 15+ accessible components, full design tokens, dark mode, TypeScript-first. Built for production at scale.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"LICENSE"
|
|
20
20
|
],
|
|
21
21
|
"scripts": {
|
|
22
|
-
"build": "tsup",
|
|
22
|
+
"build": "tsup && node -e \"const fs=require('fs');['dist/index.js','dist/index.mjs'].forEach(f=>{const c='\\\"use client\\\";\\n'+fs.readFileSync(f,'utf8');fs.writeFileSync(f,c);})\";",
|
|
23
23
|
"dev": "tsup --watch",
|
|
24
24
|
"lint": "eslint src --ext .ts,.tsx",
|
|
25
25
|
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
@@ -36,7 +36,15 @@
|
|
|
36
36
|
"design-system",
|
|
37
37
|
"ui-components",
|
|
38
38
|
"tailwindcss",
|
|
39
|
-
"radix-ui"
|
|
39
|
+
"radix-ui",
|
|
40
|
+
"accessibility",
|
|
41
|
+
"wcag",
|
|
42
|
+
"dark-mode",
|
|
43
|
+
"component-library",
|
|
44
|
+
"css-variables",
|
|
45
|
+
"theming",
|
|
46
|
+
"server-components",
|
|
47
|
+
"client-components"
|
|
40
48
|
],
|
|
41
49
|
"author": "Ümit UZ <umit@umituz.com>",
|
|
42
50
|
"license": "MIT",
|