@descope/web-components-ui 1.0.84 → 1.0.86

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.esm.js CHANGED
@@ -777,8 +777,8 @@ const proxyInputMixin = (superclass) =>
777
777
  }
778
778
 
779
779
  get inputElement() {
780
- const inputSlot = this.baseElement.shadowRoot.querySelector('slot[name="input"]');
781
- const textAreaSlot = this.baseElement.shadowRoot.querySelector('slot[name="textarea"]');
780
+ const inputSlot = this.baseElement.shadowRoot?.querySelector('slot[name="input"]');
781
+ const textAreaSlot = this.baseElement.shadowRoot?.querySelector('slot[name="textarea"]');
782
782
 
783
783
  this.#inputElement ??= getNestedInput(inputSlot) || getNestedInput(textAreaSlot);
784
784
 
@@ -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: {