@descope/web-components-ui 1.0.226 → 1.0.228

Sign up to get free protection for your applications and to get access to all the features.
@@ -3406,7 +3406,15 @@ const booleanFieldMixin = (superclass) =>
3406
3406
  this.checkbox = this.inputElement.querySelector('vaadin-checkbox');
3407
3407
 
3408
3408
  forwardAttrs(this, this.inputElement, {
3409
- includeAttrs: ['required', 'full-width', 'size', 'label', 'invalid', 'disabled'],
3409
+ includeAttrs: [
3410
+ 'required',
3411
+ 'full-width',
3412
+ 'size',
3413
+ 'label',
3414
+ 'invalid',
3415
+ 'disabled',
3416
+ 'readonly',
3417
+ ],
3410
3418
  });
3411
3419
 
3412
3420
  forwardProps(this.inputElement, this, ['checked']);
@@ -3559,6 +3567,10 @@ const CheckboxClass = compose(
3559
3567
  top: 0;
3560
3568
  left: 0;
3561
3569
  }
3570
+
3571
+ vaadin-text-field::part(input-field)::after {
3572
+ content: none;
3573
+ }
3562
3574
  `,
3563
3575
  excludeAttrsSync: ['label', 'tabindex'],
3564
3576
  componentName: componentName$q,
@@ -3687,6 +3699,14 @@ const SwitchToggleClass = compose(
3687
3699
  max-width: 100%;
3688
3700
  }
3689
3701
 
3702
+ vaadin-text-field {
3703
+ width: 100%;
3704
+ }
3705
+
3706
+ vaadin-text-field::part(input-field)::after {
3707
+ content: none;
3708
+ }
3709
+
3690
3710
  descope-boolean-field-internal {
3691
3711
  padding: 0;
3692
3712
  width: 100%;
@@ -8038,8 +8058,6 @@ const ModalClass = compose(
8038
8058
  const compVars = ModalClass.cssVarList;
8039
8059
 
8040
8060
  const modal = {
8041
- [compVars.hostWidth]: '400px',
8042
- [compVars.hostHeight]: '400px',
8043
8061
  [compVars.overlayShadow]: 'none',
8044
8062
  [compVars.overlayWidth]: '700px',
8045
8063
  };