@descope/web-components-ui 2.2.1 → 2.2.2
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 +6 -0
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +6 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/9582.js +1 -1
- package/dist/umd/9582.js.map +1 -1
- package/dist/umd/DescopeDev.js +1 -1
- package/dist/umd/DescopeDev.js.map +1 -1
- package/dist/umd/boolean-fields-descope-boolean-field-internal-index-js.js.map +1 -1
- package/dist/umd/boolean-fields-descope-switch-toggle-index-js.js.map +1 -1
- package/package.json +28 -28
- package/src/components/boolean-fields/descope-boolean-field-internal/BooleanFieldInternal.js +1 -6
- package/src/components/boolean-fields/descope-checkbox/CheckboxClass.js +7 -0
package/dist/index.esm.js
CHANGED
|
@@ -4585,8 +4585,10 @@ const CheckboxClass = compose(
|
|
|
4585
4585
|
inputOutlineOffset: { ...checkboxElement, property: 'outline-offset' },
|
|
4586
4586
|
inputOutlineColor: { ...checkboxElement, property: 'outline-color' },
|
|
4587
4587
|
inputOutlineStyle: { ...checkboxElement, property: 'outline-style' },
|
|
4588
|
+
inputAlign: { ...checkboxElement, property: 'align-self' },
|
|
4588
4589
|
|
|
4589
4590
|
inputContainerPadding: { ...component$1, property: 'padding' },
|
|
4591
|
+
inputContainerBackgroundColor: { ...component$1, property: 'background-color' },
|
|
4590
4592
|
inputContainerBorderRadius: { ...component$1, property: 'border-radius' },
|
|
4591
4593
|
inputContainerBorderWidth: { ...component$1, property: 'border-width' },
|
|
4592
4594
|
inputContainerBorderColor: { ...component$1, property: 'border-color' },
|
|
@@ -4636,6 +4638,10 @@ const CheckboxClass = compose(
|
|
|
4636
4638
|
height: 100%;
|
|
4637
4639
|
}
|
|
4638
4640
|
|
|
4641
|
+
:host([full-width]) vaadin-checkbox {
|
|
4642
|
+
flex-grow: 1;
|
|
4643
|
+
}
|
|
4644
|
+
|
|
4639
4645
|
vaadin-checkbox::part(checkbox) {
|
|
4640
4646
|
margin: 0;
|
|
4641
4647
|
}
|