@webmate-studio/builder 0.2.105 → 0.2.106

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webmate-studio/builder",
3
- "version": "0.2.105",
3
+ "version": "0.2.106",
4
4
  "type": "module",
5
5
  "description": "Webmate Studio Component Builder",
6
6
  "keywords": [
@@ -684,6 +684,9 @@ export function generateTailwindV4Theme(tokens) {
684
684
  if (tokens.typography.fontFamily.mono) {
685
685
  lines.push(` --font-mono: ${tokens.typography.fontFamily.mono};`);
686
686
  }
687
+ if (tokens.typography.fontFamily.accent) {
688
+ lines.push(` --font-accent: ${tokens.typography.fontFamily.accent};`);
689
+ }
687
690
  }
688
691
 
689
692
  // Typography - Base values
@@ -1440,10 +1443,17 @@ export function generateCSSFromTokens(tokens) {
1440
1443
  lines.push('}');
1441
1444
 
1442
1445
  // Lists
1443
- lines.push('.prose ul, .prose ol {');
1446
+ lines.push('.prose ul {');
1447
+ lines.push(' margin-top: 1rem;');
1448
+ lines.push(' margin-bottom: 1rem;');
1449
+ lines.push(' padding-left: 1.5rem;');
1450
+ lines.push(' list-style-type: disc;');
1451
+ lines.push('}');
1452
+ lines.push('.prose ol {');
1444
1453
  lines.push(' margin-top: 1rem;');
1445
1454
  lines.push(' margin-bottom: 1rem;');
1446
1455
  lines.push(' padding-left: 1.5rem;');
1456
+ lines.push(' list-style-type: decimal;');
1447
1457
  lines.push('}');
1448
1458
  lines.push('.prose li {');
1449
1459
  lines.push(' margin-top: 0.25rem;');