@webmate-studio/builder 0.2.178 → 0.2.179

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.178",
3
+ "version": "0.2.179",
4
4
  "type": "module",
5
5
  "description": "Webmate Studio Component Builder",
6
6
  "keywords": [
@@ -187,9 +187,9 @@ function generateColorUtilities(t) {
187
187
 
188
188
  for (let step = 1; step <= 12; step++) {
189
189
  const varRef = `--color-${world}-${step}`;
190
- addColorUtility(css = css, processed, `bg-${world}-${step}`, 'background-color', varRef);
191
- addColorUtility(css = css, processed, `text-${world}-${step}`, 'color', varRef);
192
- addColorUtility(css = css, processed, `border-${world}-${step}`, 'border-color', varRef);
190
+ css = addColorUtility(css, processed, `bg-${world}-${step}`, 'background-color', varRef);
191
+ css = addColorUtility(css, processed, `text-${world}-${step}`, 'color', varRef);
192
+ css = addColorUtility(css, processed, `border-${world}-${step}`, 'border-color', varRef);
193
193
 
194
194
  // Opacity-Varianten
195
195
  for (const step2 of opacitySteps) {