@vertz/theme-shadcn 0.2.32 → 0.2.33
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.js +12 -2
- package/package.json +15 -15
package/dist/index.js
CHANGED
|
@@ -1297,7 +1297,13 @@ function createCheckboxStyles() {
|
|
|
1297
1297
|
"border:input",
|
|
1298
1298
|
"cursor:pointer",
|
|
1299
1299
|
"transition:colors",
|
|
1300
|
-
{
|
|
1300
|
+
{
|
|
1301
|
+
"&": {
|
|
1302
|
+
padding: "0",
|
|
1303
|
+
background: "transparent",
|
|
1304
|
+
"border-radius": "calc(var(--radius) * 0.67)"
|
|
1305
|
+
}
|
|
1306
|
+
},
|
|
1301
1307
|
{ [DARK]: [bgOpacity("input", 30)] },
|
|
1302
1308
|
focusRing2,
|
|
1303
1309
|
{ "&:disabled": ["pointer-events-none", "opacity:0.5"] },
|
|
@@ -2844,7 +2850,11 @@ function createScrollAreaStyles() {
|
|
|
2844
2850
|
"relative",
|
|
2845
2851
|
"flex-1",
|
|
2846
2852
|
"rounded:full",
|
|
2847
|
-
{
|
|
2853
|
+
{
|
|
2854
|
+
"&": {
|
|
2855
|
+
"background-color": "color-mix(in oklch, var(--color-foreground) 40%, transparent)"
|
|
2856
|
+
}
|
|
2857
|
+
}
|
|
2848
2858
|
]
|
|
2849
2859
|
});
|
|
2850
2860
|
return {
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vertz/theme-shadcn",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"type": "module",
|
|
5
|
-
"license": "MIT",
|
|
3
|
+
"version": "0.2.33",
|
|
6
4
|
"description": "Shadcn-inspired theme for Vertz — pre-built style definitions using variants() and css()",
|
|
5
|
+
"license": "MIT",
|
|
7
6
|
"repository": {
|
|
8
7
|
"type": "git",
|
|
9
8
|
"url": "https://github.com/vertz-dev/vertz.git",
|
|
10
9
|
"directory": "packages/theme-shadcn"
|
|
11
10
|
},
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
|
|
11
|
+
"files": [
|
|
12
|
+
"dist"
|
|
13
|
+
],
|
|
14
|
+
"type": "module",
|
|
15
|
+
"sideEffects": false,
|
|
16
16
|
"main": "dist/index.js",
|
|
17
17
|
"types": "dist/index.d.ts",
|
|
18
18
|
"exports": {
|
|
@@ -29,9 +29,10 @@
|
|
|
29
29
|
"import": "./dist/configs.js"
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
|
|
32
|
+
"publishConfig": {
|
|
33
|
+
"access": "public",
|
|
34
|
+
"provenance": true
|
|
35
|
+
},
|
|
35
36
|
"scripts": {
|
|
36
37
|
"build": "bunup",
|
|
37
38
|
"test": "bun test",
|
|
@@ -39,18 +40,17 @@
|
|
|
39
40
|
"typecheck": "tsc --noEmit"
|
|
40
41
|
},
|
|
41
42
|
"dependencies": {
|
|
42
|
-
"@vertz/ui": "^0.2.
|
|
43
|
-
"@vertz/ui-primitives": "^0.2.
|
|
43
|
+
"@vertz/ui": "^0.2.31",
|
|
44
|
+
"@vertz/ui-primitives": "^0.2.31"
|
|
44
45
|
},
|
|
45
46
|
"devDependencies": {
|
|
46
47
|
"@happy-dom/global-registrator": "^20.7.0",
|
|
47
|
-
"@vertz/ui-compiler": "^0.2.
|
|
48
|
+
"@vertz/ui-compiler": "^0.2.31",
|
|
48
49
|
"bunup": "^0.16.31",
|
|
49
50
|
"happy-dom": "^20.7.0",
|
|
50
51
|
"typescript": "^5.7.0"
|
|
51
52
|
},
|
|
52
53
|
"engines": {
|
|
53
54
|
"node": ">=22"
|
|
54
|
-
}
|
|
55
|
-
"sideEffects": false
|
|
55
|
+
}
|
|
56
56
|
}
|