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

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.29",
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
  */
@@ -195,7 +195,7 @@
195
195
  </template>
196
196
  </PsTooltip>
197
197
 
198
- <PsTooltip v-else-if="column.hasProjections">
198
+ <PsTooltip v-else-if="column.hasProjections && !item.is_disabled && item.disable_projection_select !== true">
199
199
  <template v-slot:trigger>
200
200
  <PsIcon
201
201
  icon="bar_chart"
@@ -564,4 +564,4 @@ export default {
564
564
  },
565
565
  }
566
566
  </script>
567
- <style> /* Please, use the file src/assets/scss/components/PsTableResults.scss */ </style>
567
+ <style> /* Please, use the file src/assets/scss/components/PsTableResults.scss */ </style>