@odx/foundation 1.0.0-beta.91 → 1.0.0-beta.92
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/components.js +1 -1
- package/package.json +1 -1
package/dist/components.js
CHANGED
|
@@ -3302,7 +3302,7 @@ const _OdxSelect = class _OdxSelect extends ListboxFormControl {
|
|
|
3302
3302
|
}
|
|
3303
3303
|
render() {
|
|
3304
3304
|
const allSelected = this.value.length === this.options.length;
|
|
3305
|
-
const dropdownDisabled = this.disabled || this.readonly && this.selectedOptions.length === 0;
|
|
3305
|
+
const dropdownDisabled = this.disabled || !this.multiple || this.readonly && this.selectedOptions.length === 0;
|
|
3306
3306
|
return html`
|
|
3307
3307
|
<div class="base" tabindex="0" aria-haspopup="listbox">
|
|
3308
3308
|
<div class="value" odxPreventTextOverflow>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@odx/foundation",
|
|
3
3
|
"description": "A library of Web Component building blocks for ODX",
|
|
4
|
-
"version": "1.0.0-beta.
|
|
4
|
+
"version": "1.0.0-beta.92",
|
|
5
5
|
"author": "Drägerwerk AG & Co.KGaA",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
7
7
|
"homepage": "https://odx.draeger.com",
|