@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/index.esm.js
CHANGED
@@ -15981,6 +15981,7 @@ const AlertClass = compose(
|
|
15981
15981
|
horizontalPadding: [{ property: 'padding-top' }, { property: 'padding-bottom' }],
|
15982
15982
|
verticalPadding: [{ property: 'padding-right' }, { property: 'padding-left' }],
|
15983
15983
|
alignItems: {},
|
15984
|
+
justifyContent: {},
|
15984
15985
|
icon: [
|
15985
15986
|
{ ...icon$2, property: 'content' },
|
15986
15987
|
{ ...icon$2, property: 'display', fallback: 'none' },
|
@@ -19112,6 +19113,18 @@ const alert = {
|
|
19112
19113
|
},
|
19113
19114
|
},
|
19114
19115
|
|
19116
|
+
textAlign: {
|
19117
|
+
left: {
|
19118
|
+
[vars$1.justifyContent]: 'left',
|
19119
|
+
},
|
19120
|
+
center: {
|
19121
|
+
[vars$1.justifyContent]: 'center',
|
19122
|
+
},
|
19123
|
+
right: {
|
19124
|
+
[vars$1.justifyContent]: 'right',
|
19125
|
+
},
|
19126
|
+
},
|
19127
|
+
|
19115
19128
|
_bordered: {
|
19116
19129
|
[vars$1.borderWidth]: globalRefs.border.xs,
|
19117
19130
|
[vars$1.borderColor]: 'transparent',
|