@descope/web-components-ui 1.0.85 → 1.0.86
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/index.esm.js +5 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/387.js +1 -1
- package/dist/umd/descope-divider-index-js.js +1 -1
- package/package.json +1 -1
- package/src/components/descope-divider/Divider.js +3 -0
- package/src/components/descope-password-field/PasswordField.js +1 -0
- package/src/theme/components/textArea.js +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -1690,6 +1690,9 @@ class RawDivider extends createBaseClass({ componentName: componentName$g, baseS
|
|
|
1690
1690
|
|
|
1691
1691
|
this.attachShadow({ mode: 'open' }).innerHTML = `
|
|
1692
1692
|
<style>
|
|
1693
|
+
:host {
|
|
1694
|
+
display: inline-block;
|
|
1695
|
+
}
|
|
1693
1696
|
:host > div {
|
|
1694
1697
|
display: flex;
|
|
1695
1698
|
height: 100%;
|
|
@@ -2590,6 +2593,7 @@ overrides$2 = `
|
|
|
2590
2593
|
}
|
|
2591
2594
|
vaadin-password-field {
|
|
2592
2595
|
width: 100%;
|
|
2596
|
+
padding: 0;
|
|
2593
2597
|
}
|
|
2594
2598
|
vaadin-password-field > input {
|
|
2595
2599
|
min-height: 0;
|
|
@@ -5273,7 +5277,6 @@ const globalRefs$b = getThemeRefs(globals);
|
|
|
5273
5277
|
const vars$d = TextArea.cssVarList;
|
|
5274
5278
|
|
|
5275
5279
|
const textArea = {
|
|
5276
|
-
[vars$d.width]: '100%',
|
|
5277
5280
|
[vars$d.color]: globalRefs$b.colors.primary.main,
|
|
5278
5281
|
[vars$d.backgroundColor]: globalRefs$b.colors.surface.light,
|
|
5279
5282
|
[vars$d.resize]: 'vertical',
|
|
@@ -5284,6 +5287,7 @@ const textArea = {
|
|
|
5284
5287
|
[vars$d.borderColor]: 'transparent',
|
|
5285
5288
|
[vars$d.outlineWidth]: '2px',
|
|
5286
5289
|
[vars$d.outlineStyle]: 'solid',
|
|
5290
|
+
[vars$d.outlineColor]: 'transparent',
|
|
5287
5291
|
|
|
5288
5292
|
|
|
5289
5293
|
_bordered: {
|