aloha-vue 1.0.158 → 1.0.159

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.
@@ -5,6 +5,7 @@ div
5
5
  label="aloha one checkbox"
6
6
  true-value="aloha"
7
7
  :false-value="undefined"
8
+ :required="true"
8
9
  )
9
10
  div model: {{ model }}
10
11
  a-one-checkbox(
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aloha-vue",
3
3
  "description": "Project aloha",
4
- "version": "1.0.158",
4
+ "version": "1.0.159",
5
5
  "author": "Ilia Brykin",
6
6
  "scripts": {
7
7
  "build-icons": "node scriptsNode/iconsSvgToJs.js bootstrap3 && node scriptsNode/iconsSvgToJs.js bootstrap-1-9-1"
@@ -146,8 +146,12 @@ export default {
146
146
  }, [
147
147
  this.label && h("span", {
148
148
  class: "a_custom_control_label__text",
149
- innerHTML: this.label,
150
- }),
149
+ }, [
150
+ h("span", {
151
+ innerHTML: this.label,
152
+ }),
153
+ this.required && h("span", null, "*"),
154
+ ]),
151
155
  ]),
152
156
  ]),
153
157
  ]),