@descope/web-components-ui 1.0.258 → 1.0.259

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.esm.js CHANGED
@@ -209,8 +209,7 @@ class ComponentsThemeManager {
209
209
 
210
210
  const componentsThemeManager = new ComponentsThemeManager();
211
211
 
212
- const createCssVarFallback = (first, ...rest) =>
213
- `var(${first}${rest.length ? ` , ${createCssVarFallback(...rest)}` : ''})`;
212
+ const createCssVar = (varName, fallback) => `var(${varName}${fallback ? `, ${fallback}` : ''})`;
214
213
 
215
214
  const createCssSelector = (baseSelector = '', relativeSelectorOrSelectorFn = '') =>
216
215
  isFunction(relativeSelectorOrSelectorFn)
@@ -263,13 +262,15 @@ const createStyle = (componentName, baseSelector, mappings) => {
263
262
 
264
263
  const cssVarName = getCssVarName(componentName, attr);
265
264
 
266
- attrConfig.forEach(({ selector: relativeSelectorOrSelectorFn, property, important }) => {
267
- style.add(
268
- createCssSelector(baseSelector, relativeSelectorOrSelectorFn),
269
- isFunction(property) ? property() : property,
270
- createCssVarFallback(cssVarName) + (important ? '!important' : '')
271
- );
272
- });
265
+ attrConfig.forEach(
266
+ ({ selector: relativeSelectorOrSelectorFn, property, important, fallback }) => {
267
+ style.add(
268
+ createCssSelector(baseSelector, relativeSelectorOrSelectorFn),
269
+ isFunction(property) ? property() : property,
270
+ createCssVar(cssVarName, fallback) + (important ? '!important' : '')
271
+ );
272
+ }
273
+ );
273
274
  });
274
275
 
275
276
  return style.toString();
@@ -1306,7 +1307,6 @@ const resetStyles = `
1306
1307
  box-shadow: none;
1307
1308
  }
1308
1309
  vaadin-button::part(label) {
1309
- justify-content: center;
1310
1310
  padding: 0;
1311
1311
  width: 100%;
1312
1312
  }
@@ -1360,7 +1360,7 @@ const ButtonClass = compose(
1360
1360
  labelTextColor: { property: 'color' },
1361
1361
  labelTextDecoration: { ...label$a, property: 'text-decoration' },
1362
1362
  labelSpacing: { ...label$a, property: 'gap' },
1363
- textAlign: { ...label$a, property: 'justify-content', important: true },
1363
+ textAlign: { ...label$a, property: 'justify-content', fallback: 'center' },
1364
1364
  },
1365
1365
  }),
1366
1366
  clickableMixin,