aloha-vue 1.2.207 → 1.2.208
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/package.json +1 -1
- package/src/ui/ASelect/ASelect.js +12 -3
package/package.json
CHANGED
|
@@ -330,6 +330,11 @@ export default {
|
|
|
330
330
|
required: false,
|
|
331
331
|
default: () => selectPluginOptions.value.propsDefault.searchTimeout,
|
|
332
332
|
},
|
|
333
|
+
selectMenuClass: {
|
|
334
|
+
type: [String, Object],
|
|
335
|
+
required: false,
|
|
336
|
+
default: undefined,
|
|
337
|
+
},
|
|
333
338
|
slotName: {
|
|
334
339
|
type: String,
|
|
335
340
|
required: false,
|
|
@@ -766,9 +771,13 @@ export default {
|
|
|
766
771
|
}, [
|
|
767
772
|
h("div", {
|
|
768
773
|
ref: "menuRef",
|
|
769
|
-
class: [
|
|
770
|
-
|
|
771
|
-
|
|
774
|
+
class: [
|
|
775
|
+
"a_select_menu",
|
|
776
|
+
{
|
|
777
|
+
a_select_menu_by_content: this.menuWidthType === "by_content",
|
|
778
|
+
},
|
|
779
|
+
this.selectMenuClass,
|
|
780
|
+
],
|
|
772
781
|
role: "listbox",
|
|
773
782
|
"aria-labelledby": this.htmlIdLocal,
|
|
774
783
|
onClick: event => event.stopPropagation(),
|