@descope/web-components-ui 1.0.417 → 1.0.419

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.
@@ -17529,8 +17529,6 @@ var hybridField$1 = /*#__PURE__*/Object.freeze({
17529
17529
  vars: vars$2
17530
17530
  });
17531
17531
 
17532
- customElements.define(componentName$N, EnrichedTextClass);
17533
-
17534
17532
  const componentName$2 = getComponentName('alert');
17535
17533
 
17536
17534
  class RawAlert extends createBaseClass({ componentName: componentName$2, baseSelector: ':host > div' }) {
@@ -17614,6 +17612,7 @@ const AlertClass = compose(
17614
17612
  horizontalPadding: [{ property: 'padding-top' }, { property: 'padding-bottom' }],
17615
17613
  verticalPadding: [{ property: 'padding-right' }, { property: 'padding-left' }],
17616
17614
  alignItems: {},
17615
+ justifyContent: {},
17617
17616
  icon: [
17618
17617
  { ...icon, property: 'content' },
17619
17618
  { ...icon, property: 'display', fallback: 'none' },
@@ -17686,6 +17685,18 @@ const alert = {
17686
17685
  },
17687
17686
  },
17688
17687
 
17688
+ textAlign: {
17689
+ left: {
17690
+ [vars$1.justifyContent]: 'left',
17691
+ },
17692
+ center: {
17693
+ [vars$1.justifyContent]: 'center',
17694
+ },
17695
+ right: {
17696
+ [vars$1.justifyContent]: 'right',
17697
+ },
17698
+ },
17699
+
17689
17700
  _bordered: {
17690
17701
  [vars$1.borderWidth]: globalRefs.border.xs,
17691
17702
  [vars$1.borderColor]: 'transparent',