@descope/web-components-ui 1.0.417 → 1.0.418
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 -0
- 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 +1 -0
- package/src/theme/components/alert.js +12 -0
package/dist/cjs/index.cjs.js
CHANGED
@@ -17614,6 +17614,7 @@ const AlertClass = compose(
|
|
17614
17614
|
horizontalPadding: [{ property: 'padding-top' }, { property: 'padding-bottom' }],
|
17615
17615
|
verticalPadding: [{ property: 'padding-right' }, { property: 'padding-left' }],
|
17616
17616
|
alignItems: {},
|
17617
|
+
justifyContent: {},
|
17617
17618
|
icon: [
|
17618
17619
|
{ ...icon, property: 'content' },
|
17619
17620
|
{ ...icon, property: 'display', fallback: 'none' },
|
@@ -17686,6 +17687,18 @@ const alert = {
|
|
17686
17687
|
},
|
17687
17688
|
},
|
17688
17689
|
|
17690
|
+
textAlign: {
|
17691
|
+
left: {
|
17692
|
+
[vars$1.justifyContent]: 'left',
|
17693
|
+
},
|
17694
|
+
center: {
|
17695
|
+
[vars$1.justifyContent]: 'center',
|
17696
|
+
},
|
17697
|
+
right: {
|
17698
|
+
[vars$1.justifyContent]: 'right',
|
17699
|
+
},
|
17700
|
+
},
|
17701
|
+
|
17689
17702
|
_bordered: {
|
17690
17703
|
[vars$1.borderWidth]: globalRefs.border.xs,
|
17691
17704
|
[vars$1.borderColor]: 'transparent',
|