@agenticindiedev/ui 0.3.7 → 0.3.8
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 +6 -4
- package/dist/index.cjs +15 -15
- package/dist/index.d.ts +7 -2
- package/dist/index.js +2800 -2792
- package/dist/themes/dark.scss +3 -1
- package/dist/themes/light.scss +3 -1
- package/package.json +4 -2
package/dist/themes/dark.scss
CHANGED
|
@@ -5,11 +5,13 @@
|
|
|
5
5
|
* Import it in your app's SCSS file alongside Tailwind CSS v4:
|
|
6
6
|
*
|
|
7
7
|
* @use 'tailwindcss';
|
|
8
|
-
* @use '@agenticindiedev/ui/themes/dark
|
|
8
|
+
* @use '@agenticindiedev/ui/themes/dark' as *;
|
|
9
9
|
*
|
|
10
10
|
* You can then add custom @theme blocks to override or extend these variables.
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
+
@source '../**/*.{js,cjs}';
|
|
14
|
+
|
|
13
15
|
:root {
|
|
14
16
|
--background: 222.2 47.4% 11.2%;
|
|
15
17
|
--foreground: 210 40% 98%;
|
package/dist/themes/light.scss
CHANGED
|
@@ -5,11 +5,13 @@
|
|
|
5
5
|
* Import it in your app's SCSS file alongside Tailwind CSS v4:
|
|
6
6
|
*
|
|
7
7
|
* @use 'tailwindcss';
|
|
8
|
-
* @use '@agenticindiedev/ui/themes/light
|
|
8
|
+
* @use '@agenticindiedev/ui/themes/light' as *;
|
|
9
9
|
*
|
|
10
10
|
* You can then add custom @theme blocks to override or extend these variables.
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
+
@source '../**/*.{js,cjs}';
|
|
14
|
+
|
|
13
15
|
:root {
|
|
14
16
|
--background: 0 0% 98%;
|
|
15
17
|
--foreground: 222.2 47.4% 11.2%;
|
package/package.json
CHANGED
|
@@ -101,7 +101,9 @@
|
|
|
101
101
|
"packageManager": "bun@1.1.14",
|
|
102
102
|
"peerDependencies": {
|
|
103
103
|
"react": "18.0.0 || ^19.0.0",
|
|
104
|
-
"react-dom": "18.0.0 || ^19.0.0"
|
|
104
|
+
"react-dom": "18.0.0 || ^19.0.0",
|
|
105
|
+
"tailwindcss": ">=4.0.0 <5",
|
|
106
|
+
"@tailwindcss/postcss": ">=4.0.0 <5"
|
|
105
107
|
},
|
|
106
108
|
"publishConfig": {
|
|
107
109
|
"access": "public",
|
|
@@ -141,5 +143,5 @@
|
|
|
141
143
|
],
|
|
142
144
|
"type": "module",
|
|
143
145
|
"types": "./dist/index.d.ts",
|
|
144
|
-
"version": "0.3.
|
|
146
|
+
"version": "0.3.8"
|
|
145
147
|
}
|