@webmate-studio/builder 0.2.96 → 0.2.97

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.96",
3
+ "version": "0.2.97",
4
4
  "type": "module",
5
5
  "description": "Webmate Studio Component Builder",
6
6
  "keywords": [
@@ -7,7 +7,7 @@ function generateSemanticColorUtilities(tokens) {
7
7
  if (!tokens.colors) return '';
8
8
 
9
9
  let utilities = '\n/* Color Utilities */';
10
- utilities += '\n@layer components {';
10
+ utilities += '\n@layer utilities {';
11
11
 
12
12
  // Map of all colors: token name -> utility class base name
13
13
  const colorMap = {
@@ -175,7 +175,7 @@ function generateSemanticColorUtilities(tokens) {
175
175
  }
176
176
  }
177
177
 
178
- utilities += '\n}'; // Close @layer components
178
+ utilities += '\n}'; // Close @layer utilities
179
179
 
180
180
  return utilities;
181
181
  }