@classic-homes/theme-tailwind-preset 0.1.48 → 0.1.50

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.
Files changed (2) hide show
  1. package/index.js +3 -6
  2. package/package.json +2 -1
package/index.js CHANGED
@@ -188,12 +188,9 @@ module.exports = {
188
188
 
189
189
  fontWeight: tokens.fontWeight,
190
190
 
191
- borderRadius: {
192
- ...tokens.borderRadius,
193
- lg: 'var(--radius)',
194
- md: 'calc(var(--radius) - 2px)',
195
- sm: 'calc(var(--radius) - 4px)',
196
- },
191
+ // Border radius uses token values directly for consistency
192
+ // The --radius CSS variable (0.5rem) is available for components that need dynamic theming
193
+ borderRadius: tokens.borderRadius,
197
194
 
198
195
  boxShadow: tokens.boxShadow,
199
196
 
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "@classic-homes/theme-tailwind-preset",
3
- "version": "0.1.48",
3
+ "version": "0.1.50",
4
4
  "description": "Tailwind CSS preset for the Classic theme system",
5
5
  "main": "index.js",
6
+ "sideEffects": false,
6
7
  "files": [
7
8
  "index.js"
8
9
  ],