@policystudio/policy-studio-ui-vue 1.1.27 → 1.1.28

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": "@policystudio/policy-studio-ui-vue",
3
- "version": "1.1.27",
3
+ "version": "1.1.28",
4
4
  "description": "Policy Studio UI",
5
5
  "main": "src/index.js",
6
6
  "author": "Policy Studio Team",
@@ -7,7 +7,13 @@
7
7
  v-model="model"
8
8
  :disabled="disabled"
9
9
  />
10
- <label :for="label" class="psui-el-checkmark"><span>{{ label }}</span></label>
10
+ <label
11
+ :for="label"
12
+ class="psui-el-checkmark"
13
+ :class="[labelClasses, 'psui-el-checkmark']"
14
+ >
15
+ <span>{{ label }}</span>
16
+ </label>
11
17
  </div>
12
18
  </template>
13
19
 
@@ -24,6 +30,13 @@ export default {
24
30
  type: String,
25
31
  default: '',
26
32
  },
33
+ /**
34
+ * It sets the label classes.
35
+ */
36
+ labelClasses: {
37
+ type: String,
38
+ default: ''
39
+ },
27
40
  /**
28
41
  * It sets the value which should be monitored.
29
42
  */