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 CHANGED
@@ -14,7 +14,7 @@
14
14
  "Vue.js"
15
15
  ],
16
16
  "homepage": "https://github.com/ilia-brykin/aloha/#README.md",
17
- "version": "1.2.207",
17
+ "version": "1.2.208",
18
18
  "author": {
19
19
  "name": "Ilia Brykin",
20
20
  "email": "brykin.ilia@gmail.com"
@@ -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: ["a_select_menu", {
770
- a_select_menu_by_content: this.menuWidthType === "by_content",
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(),