@descope/web-components-ui 1.48.0 → 1.50.0
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 +11 -7
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +11 -7
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/DescopeDev.js +1 -1
- package/dist/umd/DescopeDev.js.map +1 -1
- package/dist/umd/descope-timer-button.js +1 -1
- package/dist/umd/descope-timer-button.js.map +1 -1
- package/package.json +2 -2
- package/src/theme/components/inputWrapper.js +7 -7
    
        package/dist/index.esm.js
    CHANGED
    
    | @@ -19078,13 +19078,6 @@ const [theme$2, refs$1, vars$X] = createHelperVars( | |
| 19078 19078 | 
             
                  width: '100%',
         | 
| 19079 19079 | 
             
                },
         | 
| 19080 19080 |  | 
| 19081 | 
            -
                _focused: {
         | 
| 19082 | 
            -
                  outlineColor: globalRefs$C.colors.surface.light,
         | 
| 19083 | 
            -
                  _invalid: {
         | 
| 19084 | 
            -
                    outlineColor: globalRefs$C.colors.error.main,
         | 
| 19085 | 
            -
                  },
         | 
| 19086 | 
            -
                },
         | 
| 19087 | 
            -
             | 
| 19088 19081 | 
             
                _bordered: {
         | 
| 19089 19082 | 
             
                  outlineWidth: globalRefs$C.border.xs,
         | 
| 19090 19083 | 
             
                  borderColor: globalRefs$C.colors.surface.light,
         | 
| @@ -19094,6 +19087,13 @@ const [theme$2, refs$1, vars$X] = createHelperVars( | |
| 19094 19087 | 
             
                  },
         | 
| 19095 19088 | 
             
                },
         | 
| 19096 19089 |  | 
| 19090 | 
            +
                _focused: {
         | 
| 19091 | 
            +
                  outlineColor: globalRefs$C.colors.surface.light,
         | 
| 19092 | 
            +
                  _invalid: {
         | 
| 19093 | 
            +
                    outlineColor: globalRefs$C.colors.error.main,
         | 
| 19094 | 
            +
                  },
         | 
| 19095 | 
            +
                },
         | 
| 19096 | 
            +
             | 
| 19097 19097 | 
             
                _disabled: {
         | 
| 19098 19098 | 
             
                  labelTextColor: globalRefs$C.colors.surface.light,
         | 
| 19099 19099 | 
             
                  borderColor: globalRefs$C.colors.surface.light,
         | 
| @@ -22885,6 +22885,10 @@ class RawTimerButton extends BaseClass { | |
| 22885 22885 | 
             
                this.button.addEventListener('click', this.onClick.bind(this));
         | 
| 22886 22886 | 
             
              }
         | 
| 22887 22887 |  | 
| 22888 | 
            +
              set onclick(val) {
         | 
| 22889 | 
            +
                this.button.onclick = val;
         | 
| 22890 | 
            +
              }
         | 
| 22891 | 
            +
             | 
| 22888 22892 | 
             
              init() {
         | 
| 22889 22893 | 
             
                super.init?.();
         | 
| 22890 22894 |  |