@agenticindiedev/ui 0.3.0 → 0.3.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/dist/index.cjs +14 -14
- package/dist/index.js +2080 -2082
- package/dist/styles.css +666 -49
- package/package.json +6 -6
package/package.json
CHANGED
|
@@ -74,13 +74,13 @@
|
|
|
74
74
|
},
|
|
75
75
|
"exports": {
|
|
76
76
|
".": {
|
|
77
|
-
"types": "./dist/index.d.ts",
|
|
78
77
|
"import": "./dist/index.js",
|
|
79
|
-
"require": "./dist/index.cjs"
|
|
78
|
+
"require": "./dist/index.cjs",
|
|
79
|
+
"types": "./dist/index.d.ts"
|
|
80
80
|
},
|
|
81
81
|
"./styles.css": "./dist/styles.css",
|
|
82
|
-
"./
|
|
83
|
-
"./
|
|
82
|
+
"./tailwind.preset": "./dist/tailwind.preset.js",
|
|
83
|
+
"./themes/*": "./dist/themes/*.scss"
|
|
84
84
|
},
|
|
85
85
|
"files": [
|
|
86
86
|
"dist"
|
|
@@ -123,8 +123,8 @@
|
|
|
123
123
|
"build-storybook": "storybook build",
|
|
124
124
|
"build:css": "bunx postcss ./src/styles/globals.scss -o ./dist/styles.css --verbose",
|
|
125
125
|
"build:lib": "./scripts/build-lib.sh",
|
|
126
|
-
"build:themes": "node scripts/build-themes.mjs",
|
|
127
126
|
"build:preset": "node scripts/build-preset.mjs",
|
|
127
|
+
"build:themes": "node scripts/build-themes.mjs",
|
|
128
128
|
"deploy:storybook": "bun run build-storybook",
|
|
129
129
|
"dev": "storybook dev -p 6006",
|
|
130
130
|
"format:check": "prettier --check .",
|
|
@@ -146,5 +146,5 @@
|
|
|
146
146
|
],
|
|
147
147
|
"type": "module",
|
|
148
148
|
"types": "./dist/index.d.ts",
|
|
149
|
-
"version": "0.3.
|
|
149
|
+
"version": "0.3.2"
|
|
150
150
|
}
|