@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/index.esm.js
CHANGED
@@ -1696,6 +1696,10 @@ const CheckboxClass = compose(
|
|
1696
1696
|
top: 0;
|
1697
1697
|
left: 0;
|
1698
1698
|
}
|
1699
|
+
|
1700
|
+
vaadin-text-field::part(label) {
|
1701
|
+
width: calc(100% - var(${CheckboxClass.cssVarList.inputSize}))
|
1702
|
+
}
|
1699
1703
|
${useHostExternalPadding(CheckboxClass.cssVarList)}
|
1700
1704
|
`,
|
1701
1705
|
excludeAttrsSync: ['tabindex'],
|
@@ -7328,11 +7332,10 @@ const checkbox = {
|
|
7328
7332
|
[vars$j.inputBorderColor]: refs.borderColor,
|
7329
7333
|
[vars$j.inputBorderWidth]: refs.borderWidth,
|
7330
7334
|
[vars$j.inputBorderStyle]: refs.borderStyle,
|
7331
|
-
[vars$j.inputBackgroundColor]: refs.
|
7335
|
+
[vars$j.inputBackgroundColor]: refs.backgroundColor,
|
7332
7336
|
[vars$j.inputSize]: '2em',
|
7333
7337
|
|
7334
7338
|
_checked: {
|
7335
|
-
[vars$j.inputBackgroundColor]: refs.backgroundColor,
|
7336
7339
|
[vars$j.inputValueTextColor]: refs.valueTextColor,
|
7337
7340
|
},
|
7338
7341
|
|