@descope/web-components-ui 1.0.344 → 1.0.346
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 +3 -2
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +3 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/DescopeDev.js +1 -1
- package/dist/umd/descope-container-index-js.js +1 -1
- package/dist/umd/descope-enriched-text-index-js.js +1 -1
- package/package.json +1 -1
- package/src/components/descope-container/ContainerClass.js +1 -1
- package/src/components/descope-enriched-text/EnrichedTextClass.js +1 -1
- package/src/theme/components/container.js +1 -0
package/dist/cjs/index.cjs.js
CHANGED
@@ -4565,7 +4565,7 @@ const ContainerClass = compose(
|
|
4565
4565
|
hostHeight: { selector: () => ':host', property: 'height' },
|
4566
4566
|
hostWidth: { selector: () => ':host', property: 'width' },
|
4567
4567
|
hostDirection: { selector: () => ':host', property: 'direction' },
|
4568
|
-
|
4568
|
+
itemsGrow: { selector: () => '::slotted(*)', property: 'flex-grow', fallback: '0' },
|
4569
4569
|
verticalPadding: [{ property: 'padding-top' }, { property: 'padding-bottom' }],
|
4570
4570
|
horizontalPadding: [{ property: 'padding-left' }, { property: 'padding-right' }],
|
4571
4571
|
|
@@ -4620,6 +4620,7 @@ const { shadowColor: shadowColor$1 } = helperRefs$2;
|
|
4620
4620
|
const container = {
|
4621
4621
|
...helperTheme$2,
|
4622
4622
|
|
4623
|
+
[compVars$4.itemsGrow]: '0',
|
4623
4624
|
[compVars$4.hostWidth]: '100%',
|
4624
4625
|
[compVars$4.boxShadow]: 'none',
|
4625
4626
|
[compVars$4.backgroundColor]: globalRefs$n.colors.surface.main,
|
@@ -5000,7 +5001,7 @@ let EnrichedText$2 = class EnrichedText extends createBaseClass({ componentName:
|
|
5000
5001
|
:host {
|
5001
5002
|
display: inline-block;
|
5002
5003
|
line-height: 1em;
|
5003
|
-
word-break: break-
|
5004
|
+
word-break: break-word;
|
5004
5005
|
}
|
5005
5006
|
:host > slot {
|
5006
5007
|
width: 100%;
|