@afeefa/vue-app 0.0.234 → 0.0.236

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.
@@ -1 +1 @@
1
- 0.0.234
1
+ 0.0.236
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@afeefa/vue-app",
3
- "version": "0.0.234",
3
+ "version": "0.0.236",
4
4
  "description": "",
5
5
  "author": "Afeefa Kollektiv <kollektiv@afeefa.de>",
6
6
  "license": "MIT",
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <v-icon
3
3
  :class="{button}"
4
- :color="icon && icon.color"
4
+ :color="icon && icon.color || $attrs.color"
5
5
  v-bind="$attrs"
6
6
  v-on="$listeners"
7
7
  >
@@ -31,10 +31,10 @@
31
31
  import { Component, Vue, Watch } from '@a-vue'
32
32
 
33
33
  @Component({
34
- props: [{showHint: true}]
34
+ props: [{showHint: true, isCollapsed: false}]
35
35
  })
36
36
  export default class CollapsibleSection extends Vue {
37
- collapsed = false
37
+ collapsed = this.isCollapsed
38
38
  hint = false
39
39
 
40
40
  @Watch('collapsed')