@afeefa/vue-app 0.0.306 → 0.0.307

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.306
1
+ 0.0.307
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@afeefa/vue-app",
3
- "version": "0.0.306",
3
+ "version": "0.0.307",
4
4
  "description": "",
5
5
  "author": "Afeefa Kollektiv <kollektiv@afeefa.de>",
6
6
  "license": "MIT",
@@ -16,9 +16,15 @@
16
16
  hide-details
17
17
  @input="checked(option.itemValue, $event)"
18
18
  >
19
- <template #label>
19
+ <div>
20
20
  <div v-html="option.itemText" />
21
- </template>
21
+
22
+ <div
23
+ v-if="option.itemHint"
24
+ class="hint"
25
+ v-html="option.itemHint"
26
+ />
27
+ </div>
22
28
  </a-checkbox>
23
29
  </a-row>
24
30
 
@@ -110,3 +116,11 @@ export default class ACheckboxGroup extends Vue {
110
116
  }
111
117
  }
112
118
  </script>
119
+
120
+
121
+ <style lang="scss" scoped>
122
+ .hint {
123
+ font-size: .9rem;
124
+ color: #999999;
125
+ }
126
+ </style>