@descope/web-components-ui 1.0.226 → 1.0.228
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 +21 -3
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +37 -3
- 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/src/theme/components/modal.js +0 -2
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%;
|
|
@@ -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
|
};
|