@descope/web-components-ui 1.0.189 → 1.0.190
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 +3 -0
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +3 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/descope-combo-box-index-js.js +1 -1
- package/package.json +1 -1
- package/src/components/descope-combo-box/ComboBoxClass.js +2 -0
- package/src/theme/components/comboBox.js +1 -0
package/dist/index.esm.js
CHANGED
@@ -4058,6 +4058,7 @@ const ComboBoxClass = compose(
|
|
4058
4058
|
overlayFontSize: { property: () => ComboBoxClass.cssVarList.overlay.fontSize },
|
4059
4059
|
overlayFontFamily: { property: () => ComboBoxClass.cssVarList.overlay.fontFamily },
|
4060
4060
|
overlayCursor: { property: () => ComboBoxClass.cssVarList.overlay.cursor },
|
4061
|
+
overlayItemBoxShadow: { property: () => ComboBoxClass.cssVarList.overlay.itemBoxShadow },
|
4061
4062
|
},
|
4062
4063
|
}),
|
4063
4064
|
draggableMixin,
|
@@ -4071,6 +4072,7 @@ const ComboBoxClass = compose(
|
|
4071
4072
|
cursor: { selector: 'vaadin-combo-box-item' },
|
4072
4073
|
fontFamily: { selector: 'vaadin-combo-box-item' },
|
4073
4074
|
fontSize: { selector: 'vaadin-combo-box-item' },
|
4075
|
+
itemBoxShadow: { selector: 'vaadin-combo-box-item', property: 'box-shadow' },
|
4074
4076
|
},
|
4075
4077
|
forward: {
|
4076
4078
|
include: false,
|
@@ -8494,6 +8496,7 @@ const comboBox = {
|
|
8494
8496
|
[vars$8.overlayFontSize]: refs.fontSize,
|
8495
8497
|
[vars$8.overlayFontFamily]: refs.fontFamily,
|
8496
8498
|
[vars$8.overlayCursor]: 'pointer',
|
8499
|
+
[vars$8.overlayItemBoxShadow]: 'none',
|
8497
8500
|
|
8498
8501
|
// Overlay direct theme:
|
8499
8502
|
[vars$8.overlay.minHeight]: '400px',
|