@mozaic-ds/vue 0.31.1 → 0.32.0

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mozaic-ds/vue",
3
- "version": "0.31.1",
3
+ "version": "0.32.0",
4
4
  "description": "Vue.js implementation of Mozaic Design System",
5
5
  "author": "Adeo - Mozaic Design System",
6
6
  "scripts": {
@@ -5,7 +5,7 @@
5
5
  class="mc-listbox-options__trigger"
6
6
  @click="isOpen = !isOpen"
7
7
  >
8
- <m-icon name="DisplayOptions24" />
8
+ <m-icon name="DisplayOptions24" :color="triggerIconColor" />
9
9
  <span class="mc-listbox-options__trigger-label">{{ triggerLabel }}</span>
10
10
  </button>
11
11
  <div
@@ -92,6 +92,10 @@ export default {
92
92
  type: String,
93
93
  default: 'Display options',
94
94
  },
95
+ triggerIconColor: {
96
+ type: String,
97
+ default: 'currentColor',
98
+ },
95
99
  },
96
100
 
97
101
  data() {