@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.
- package/dist/cjs/index.cjs.js +13 -2
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +13 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/DescopeDev.js +1 -1
- package/dist/umd/descope-alert-index-js.js +1 -1
- package/package.json +1 -1
- package/src/components/descope-alert/AlertClass.js +2 -1
- package/src/theme/components/alert.js +12 -0
package/dist/cjs/index.cjs.js
CHANGED
@@ -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',
|