@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/index.esm.js
CHANGED
@@ -2164,15 +2164,15 @@ class RawLink extends createBaseClass({ componentName: componentName$e, baseSele
|
|
2164
2164
|
display: inline-block;
|
2165
2165
|
}
|
2166
2166
|
:host a {
|
2167
|
-
display: inline
|
2167
|
+
display: inline;
|
2168
2168
|
}
|
2169
2169
|
</style>
|
2170
2170
|
<div>
|
2171
|
-
<
|
2172
|
-
<
|
2171
|
+
<descope-text>
|
2172
|
+
<a>
|
2173
2173
|
<slot></slot>
|
2174
|
-
</
|
2175
|
-
</
|
2174
|
+
</a>
|
2175
|
+
</descope-text>
|
2176
2176
|
</div>
|
2177
2177
|
`;
|
2178
2178
|
|
@@ -3136,9 +3136,10 @@ const ComboBoxClass = compose(
|
|
3136
3136
|
selector: '',
|
3137
3137
|
mappings: {
|
3138
3138
|
backgroundColor: { selector: 'vaadin-combo-box-scroller' },
|
3139
|
-
|
3140
|
-
|
3141
|
-
|
3139
|
+
cursor: { selector: 'vaadin-combo-box-item' }, // TODO: this mapping doesn't work, needs fixing.
|
3140
|
+
minHeight: { selector: 'vaadin-combo-box-overlay' },
|
3141
|
+
margin: { selector: 'vaadin-combo-box-overlay' },
|
3142
|
+
fontFamily: { selector: 'vaadin-combo-box-item' }
|
3142
3143
|
},
|
3143
3144
|
forward: {
|
3144
3145
|
include: false,
|
@@ -6399,6 +6400,9 @@ const comboBox = {
|
|
6399
6400
|
[vars$4.inputDropdownButtonCursor]: 'default'
|
6400
6401
|
},
|
6401
6402
|
|
6403
|
+
[vars$4.overlay.minHeight]: '400px',
|
6404
|
+
[vars$4.overlay.margin]: '0 auto'
|
6405
|
+
|
6402
6406
|
// [vars.overlayCursor]: 'pointer',
|
6403
6407
|
// [vars.overlayBackground]: globalRefs.colors.surface.light,
|
6404
6408
|
// [vars.overlayBorder]: `2px solid red`,
|