@descope/web-components-ui 1.0.117 → 1.0.119
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 +2 -1
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +2 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/201.js +1 -1
- package/dist/umd/descope-passcode-index-js.js +1 -1
- package/package.json +1 -1
- package/src/components/descope-passcode/PasscodeClass.js +1 -1
- package/src/helpers/themeHelpers/resetHelpers.js +1 -0
package/dist/index.esm.js
CHANGED
|
@@ -1415,6 +1415,7 @@ const resetInputAutoFill = (name, cssVarList) => `
|
|
|
1415
1415
|
const resetInputFieldDefaultWidth = () => `
|
|
1416
1416
|
:host {
|
|
1417
1417
|
--vaadin-field-default-width: auto;
|
|
1418
|
+
box-sizing: border-box;
|
|
1418
1419
|
}
|
|
1419
1420
|
`;
|
|
1420
1421
|
|
|
@@ -2640,7 +2641,7 @@ const PasscodeClass = compose(
|
|
|
2640
2641
|
wrappedEleName: 'vaadin-text-field',
|
|
2641
2642
|
style: () => `
|
|
2642
2643
|
:host {
|
|
2643
|
-
display: inline-
|
|
2644
|
+
display: inline-flex;
|
|
2644
2645
|
max-width: 100%;
|
|
2645
2646
|
min-width: calc(var(--passcode-digits-count) * 2em);
|
|
2646
2647
|
}
|