@descope/web-components-ui 1.0.227 → 1.0.228
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/index.cjs.js +21 -1
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +37 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/4803.js +1 -1
- package/dist/umd/boolean-fields-descope-boolean-field-internal-index-js.js +1 -1
- package/dist/umd/boolean-fields-descope-checkbox-index-js.js +1 -1
- package/dist/umd/boolean-fields-descope-switch-toggle-index-js.js +1 -1
- package/dist/umd/descope-grid-index-js.js +1 -1
- package/package.json +1 -1
- package/src/components/boolean-fields/booleanFieldMixin.js +9 -1
- package/src/components/boolean-fields/descope-boolean-field-internal/BooleanFieldInternal.js +16 -0
- package/src/components/boolean-fields/descope-checkbox/CheckboxClass.js +4 -0
- package/src/components/boolean-fields/descope-switch-toggle/SwitchToggleClass.js +8 -0
package/dist/cjs/index.cjs.js
CHANGED
@@ -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: [
|
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%;
|