@stacksjs/ui 0.48.3 → 0.49.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/unocss.mjs +4 -0
- package/package.json +11 -11
package/dist/unocss.mjs
CHANGED
|
@@ -6,7 +6,9 @@ const config = defineConfig({
|
|
|
6
6
|
shortcuts: ui.shortcuts,
|
|
7
7
|
presets: [
|
|
8
8
|
presetWind(),
|
|
9
|
+
// allows for Tailwind utility classes
|
|
9
10
|
presetForms(),
|
|
11
|
+
// allows for form Tailwind's form styling
|
|
10
12
|
presetTypography(),
|
|
11
13
|
presetIcons({
|
|
12
14
|
prefix: "i-",
|
|
@@ -19,7 +21,9 @@ const config = defineConfig({
|
|
|
19
21
|
}),
|
|
20
22
|
presetWebFonts({
|
|
21
23
|
provider: "bunny",
|
|
24
|
+
// privacy-friendly Google Web Fonts proxy
|
|
22
25
|
fonts: {
|
|
26
|
+
// these will extend the default theme
|
|
23
27
|
sans: "Inter",
|
|
24
28
|
mono: "Inter"
|
|
25
29
|
}
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/ui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
5
|
-
"packageManager": "pnpm@7.
|
|
4
|
+
"version": "0.49.0",
|
|
5
|
+
"packageManager": "pnpm@7.25.0",
|
|
6
6
|
"description": "The Stacks atomic UI engine, powered by UnoCSS.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
8
8
|
"license": "MIT",
|
|
@@ -37,25 +37,25 @@
|
|
|
37
37
|
"README.md"
|
|
38
38
|
],
|
|
39
39
|
"engines": {
|
|
40
|
-
"node": ">=v18.
|
|
41
|
-
"pnpm": ">=7.
|
|
40
|
+
"node": ">=v18.13.0",
|
|
41
|
+
"pnpm": ">=7.25.0"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"@iconify-json/heroicons-outline": "^1.1.5",
|
|
45
45
|
"@iconify-json/heroicons-solid": "^1.1.6",
|
|
46
46
|
"@julr/unocss-preset-forms": "^0.0.2",
|
|
47
|
-
"@unocss/transformer-compile-class": "^0.48.
|
|
47
|
+
"@unocss/transformer-compile-class": "^0.48.4",
|
|
48
48
|
"pinia": "^2.0.28",
|
|
49
|
-
"unocss": "^0.48.
|
|
49
|
+
"unocss": "^0.48.4",
|
|
50
50
|
"vue": "^3.2.45",
|
|
51
|
-
"vue-tsc": "^1.0.
|
|
52
|
-
"@stacksjs/build": "0.
|
|
53
|
-
"@stacksjs/config": "0.
|
|
51
|
+
"vue-tsc": "^1.0.24",
|
|
52
|
+
"@stacksjs/build": "0.49.0",
|
|
53
|
+
"@stacksjs/config": "0.49.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"mkdist": "^1.
|
|
56
|
+
"mkdist": "^1.1.0",
|
|
57
57
|
"typescript": "^4.9.4",
|
|
58
|
-
"@stacksjs/testing": "0.
|
|
58
|
+
"@stacksjs/testing": "0.49.0"
|
|
59
59
|
},
|
|
60
60
|
"scripts": {
|
|
61
61
|
"build": "mkdist -d",
|