@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/cjs/index.cjs.js
CHANGED
|
@@ -1821,6 +1821,7 @@ const resetInputAutoFill = (name, cssVarList) => `
|
|
|
1821
1821
|
const resetInputFieldDefaultWidth = () => `
|
|
1822
1822
|
:host {
|
|
1823
1823
|
--vaadin-field-default-width: auto;
|
|
1824
|
+
box-sizing: border-box;
|
|
1824
1825
|
}
|
|
1825
1826
|
`;
|
|
1826
1827
|
|
|
@@ -3547,7 +3548,7 @@ const PasscodeClass = compose(
|
|
|
3547
3548
|
wrappedEleName: 'vaadin-text-field',
|
|
3548
3549
|
style: () => `
|
|
3549
3550
|
:host {
|
|
3550
|
-
display: inline-
|
|
3551
|
+
display: inline-flex;
|
|
3551
3552
|
max-width: 100%;
|
|
3552
3553
|
min-width: calc(var(--passcode-digits-count) * 2em);
|
|
3553
3554
|
}
|