@descope/web-components-ui 1.0.213 → 1.0.214
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 +5 -2
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +5 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/boolean-fields-descope-checkbox-index-js.js +1 -1
- package/package.json +1 -1
- package/src/components/boolean-fields/descope-checkbox/CheckboxClass.js +4 -0
- package/src/theme/components/checkbox.js +1 -2
package/dist/cjs/index.cjs.js
CHANGED
@@ -3541,6 +3541,10 @@ const CheckboxClass = compose(
|
|
3541
3541
|
top: 0;
|
3542
3542
|
left: 0;
|
3543
3543
|
}
|
3544
|
+
|
3545
|
+
vaadin-text-field::part(label) {
|
3546
|
+
width: calc(100% - var(${CheckboxClass.cssVarList.inputSize}))
|
3547
|
+
}
|
3544
3548
|
${useHostExternalPadding(CheckboxClass.cssVarList)}
|
3545
3549
|
`,
|
3546
3550
|
excludeAttrsSync: ['tabindex'],
|
@@ -3567,11 +3571,10 @@ const checkbox = {
|
|
3567
3571
|
[vars$j.inputBorderColor]: refs.borderColor,
|
3568
3572
|
[vars$j.inputBorderWidth]: refs.borderWidth,
|
3569
3573
|
[vars$j.inputBorderStyle]: refs.borderStyle,
|
3570
|
-
[vars$j.inputBackgroundColor]: refs.
|
3574
|
+
[vars$j.inputBackgroundColor]: refs.backgroundColor,
|
3571
3575
|
[vars$j.inputSize]: '2em',
|
3572
3576
|
|
3573
3577
|
_checked: {
|
3574
|
-
[vars$j.inputBackgroundColor]: refs.backgroundColor,
|
3575
3578
|
[vars$j.inputValueTextColor]: refs.valueTextColor,
|
3576
3579
|
},
|
3577
3580
|
|