@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/cjs/index.cjs.js
CHANGED
|
@@ -6530,8 +6530,10 @@ const CheckboxClass = compose$1(
|
|
|
6530
6530
|
inputOutlineOffset: { ...checkboxElement, property: 'outline-offset' },
|
|
6531
6531
|
inputOutlineColor: { ...checkboxElement, property: 'outline-color' },
|
|
6532
6532
|
inputOutlineStyle: { ...checkboxElement, property: 'outline-style' },
|
|
6533
|
+
inputAlign: { ...checkboxElement, property: 'align-self' },
|
|
6533
6534
|
|
|
6534
6535
|
inputContainerPadding: { ...component$1, property: 'padding' },
|
|
6536
|
+
inputContainerBackgroundColor: { ...component$1, property: 'background-color' },
|
|
6535
6537
|
inputContainerBorderRadius: { ...component$1, property: 'border-radius' },
|
|
6536
6538
|
inputContainerBorderWidth: { ...component$1, property: 'border-width' },
|
|
6537
6539
|
inputContainerBorderColor: { ...component$1, property: 'border-color' },
|
|
@@ -6581,6 +6583,10 @@ const CheckboxClass = compose$1(
|
|
|
6581
6583
|
height: 100%;
|
|
6582
6584
|
}
|
|
6583
6585
|
|
|
6586
|
+
:host([full-width]) vaadin-checkbox {
|
|
6587
|
+
flex-grow: 1;
|
|
6588
|
+
}
|
|
6589
|
+
|
|
6584
6590
|
vaadin-checkbox::part(checkbox) {
|
|
6585
6591
|
margin: 0;
|
|
6586
6592
|
}
|