@descope/web-components-ui 1.0.181 → 1.0.182
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 -1
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +5 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/2481.js +1 -1
- package/dist/umd/descope-email-field-index-js.js +1 -1
- package/dist/umd/descope-text-area-index-js.js +1 -1
- package/dist/umd/descope-text-field-index-js.js +1 -1
- package/package.json +1 -1
- package/src/components/descope-email-field/EmailFieldClass.js +2 -1
- package/src/components/descope-password/PasswordClass.js +1 -0
- package/src/components/descope-text-area/TextAreaClass.js +1 -0
- package/src/components/descope-text-field/TextFieldClass.js +1 -0
    
        package/dist/cjs/index.cjs.js
    CHANGED
    
    | @@ -1965,6 +1965,7 @@ const TextFieldClass = compose( | |
| 1965 1965 | 
             
            				padding: calc(var(${TextFieldClass.cssVarList.inputOutlineWidth}) + var(${
         | 
| 1966 1966 | 
             
                      TextFieldClass.cssVarList.inputOutlineOffset
         | 
| 1967 1967 | 
             
                    }));
         | 
| 1968 | 
            +
                    box-sizing: border-box;        
         | 
| 1968 1969 | 
             
            			}
         | 
| 1969 1970 | 
             
            			${useHostExternalPadding(TextFieldClass.cssVarList)}
         | 
| 1970 1971 | 
             
            			${resetInputOverrides('vaadin-text-field', TextFieldClass.cssVarList)}
         | 
| @@ -2198,6 +2199,7 @@ const PasswordClass = compose( | |
| 2198 2199 | 
             
            				display: inline-block;
         | 
| 2199 2200 | 
             
            				max-width: 100%;
         | 
| 2200 2201 | 
             
            				min-width: 10em;
         | 
| 2202 | 
            +
                    box-sizing: border-box;        
         | 
| 2201 2203 | 
             
            			}
         | 
| 2202 2204 | 
             
            			${useHostExternalPadding(PasswordClass.cssVarList)}
         | 
| 2203 2205 | 
             
            			${resetInputCursor('vaadin-password-field')}
         | 
| @@ -2367,7 +2369,8 @@ const EmailFieldClass = compose( | |
| 2367 2369 | 
             
            				max-width: 100%;
         | 
| 2368 2370 | 
             
            				padding: calc(var(${EmailFieldClass.cssVarList.inputOutlineWidth}) + var(${
         | 
| 2369 2371 | 
             
                      EmailFieldClass.cssVarList.inputOutlineOffset
         | 
| 2370 | 
            -
                    }))
         | 
| 2372 | 
            +
                    }));
         | 
| 2373 | 
            +
                    box-sizing: border-box;        
         | 
| 2371 2374 | 
             
            			}
         | 
| 2372 2375 | 
             
            			${useHostExternalPadding(EmailFieldClass.cssVarList)}
         | 
| 2373 2376 | 
             
            			${resetInputOverrides('vaadin-email-field', EmailFieldClass.cssVarList)}
         | 
| @@ -2469,6 +2472,7 @@ const TextAreaClass = compose( | |
| 2469 2472 | 
             
            			:host {
         | 
| 2470 2473 | 
             
            				display: inline-block;
         | 
| 2471 2474 | 
             
            				max-width: 100%;
         | 
| 2475 | 
            +
                    box-sizing: border-box;        
         | 
| 2472 2476 | 
             
            			}
         | 
| 2473 2477 | 
             
            			textarea {
         | 
| 2474 2478 | 
             
            				height: 100%;
         |