@descope/web-components-ui 1.0.123 → 1.0.125
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 +12 -8
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +12 -8
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/descope-combo-box-index-js.js +1 -1
- package/dist/umd/descope-link-index-js.js +1 -1
- package/package.json +1 -1
- package/src/components/descope-combo-box/ComboBoxClass.js +4 -3
- package/src/components/descope-link/LinkClass.js +5 -5
- package/src/theme/components/comboBox.js +3 -0
    
        package/dist/cjs/index.cjs.js
    CHANGED
    
    | @@ -3190,15 +3190,15 @@ class RawLink extends createBaseClass({ componentName: componentName$b, baseSele | |
| 3190 3190 | 
             
            			display: inline-block;
         | 
| 3191 3191 | 
             
            		}
         | 
| 3192 3192 | 
             
            		:host a {
         | 
| 3193 | 
            -
            			display: inline | 
| 3193 | 
            +
            			display: inline;
         | 
| 3194 3194 | 
             
            		}
         | 
| 3195 3195 | 
             
            		</style>
         | 
| 3196 3196 | 
             
            		<div>
         | 
| 3197 | 
            -
            			< | 
| 3198 | 
            -
            				< | 
| 3197 | 
            +
            			<descope-text>
         | 
| 3198 | 
            +
            				<a>
         | 
| 3199 3199 | 
             
            					<slot></slot>
         | 
| 3200 | 
            -
            				</ | 
| 3201 | 
            -
            			</ | 
| 3200 | 
            +
            				</a>
         | 
| 3201 | 
            +
            			</descope-text>
         | 
| 3202 3202 | 
             
            		</div>
         | 
| 3203 3203 | 
             
            		`;
         | 
| 3204 3204 |  | 
| @@ -3982,9 +3982,10 @@ const ComboBoxClass = compose( | |
| 3982 3982 | 
             
            		selector: '',
         | 
| 3983 3983 | 
             
            		mappings: {
         | 
| 3984 3984 | 
             
            			backgroundColor: { selector: 'vaadin-combo-box-scroller' },
         | 
| 3985 | 
            -
            			 | 
| 3986 | 
            -
            			 | 
| 3987 | 
            -
            			 | 
| 3985 | 
            +
            			cursor: { selector: 'vaadin-combo-box-item' }, // TODO: this mapping doesn't work, needs fixing.
         | 
| 3986 | 
            +
            			minHeight: { selector: 'vaadin-combo-box-overlay' },
         | 
| 3987 | 
            +
            			margin: { selector: 'vaadin-combo-box-overlay' },
         | 
| 3988 | 
            +
            			fontFamily: { selector: 'vaadin-combo-box-item' }
         | 
| 3988 3989 | 
             
            		},
         | 
| 3989 3990 | 
             
            		forward: {
         | 
| 3990 3991 | 
             
            			include: false,
         | 
| @@ -4060,6 +4061,9 @@ const comboBox = { | |
| 4060 4061 | 
             
            		[vars$4.inputDropdownButtonCursor]: 'default'
         | 
| 4061 4062 | 
             
            	},
         | 
| 4062 4063 |  | 
| 4064 | 
            +
            	[vars$4.overlay.minHeight]: '400px',
         | 
| 4065 | 
            +
            	[vars$4.overlay.margin]: '0 auto'
         | 
| 4066 | 
            +
             | 
| 4063 4067 | 
             
            	// [vars.overlayCursor]: 'pointer',
         | 
| 4064 4068 | 
             
            	// [vars.overlayBackground]: globalRefs.colors.surface.light,
         | 
| 4065 4069 | 
             
            	// [vars.overlayBorder]: `2px solid red`,
         |