@policystudio/policy-studio-ui-vue 1.1.52 → 1.1.54

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.
@@ -2511,12 +2511,6 @@ video {
2511
2511
  padding-bottom: 8px;
2512
2512
  }
2513
2513
 
2514
- .psui-el-table-results.layout-flexible tbody tr td.column-flexible_score {
2515
- --text-opacity: 1;
2516
- color: #A2ACB7;
2517
- color: rgba(162, 172, 183, var(--text-opacity));
2518
- }
2519
-
2520
2514
  .psui-el-table-results.layout-flexible tbody tr td .psui-el-tooltip-dialog {
2521
2515
  text-align: left;
2522
2516
  max-width: 180px;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@policystudio/policy-studio-ui-vue",
3
- "version": "1.1.52",
3
+ "version": "1.1.54",
4
4
  "description": "Policy Studio UI",
5
5
  "main": "src/index.js",
6
6
  "author": "Policy Studio Team",
@@ -448,10 +448,6 @@
448
448
  padding-bottom: 8px;
449
449
  }
450
450
 
451
- &.column-flexible_score {
452
- @apply psui-text-gray-40;
453
- }
454
-
455
451
  .psui-el-tooltip-dialog {
456
452
  text-align: left;
457
453
  max-width: 180px;
@@ -284,7 +284,7 @@
284
284
  :fill-width="getPsBarChartWidth(column.key, item.data[column.key])"
285
285
  />
286
286
 
287
- <p v-else-if="item.data[column.key] != 0">
287
+ <p class="ps-table-cell-value" v-else-if="item.data[column.key] != 0">
288
288
  {{ formatFunction(column.key, item.data[column.key], item.data) }}
289
289
  </p>
290
290
  </div>
@@ -15,7 +15,7 @@
15
15
  v-for="column of columnGroup.columns"
16
16
  :key="indexColumn + '-' + columnGroup.key + '-' + column.key"
17
17
  >
18
- <p>{{ row.data[column.key] }}</p>
18
+ <p class="ps-table-cell-value">{{ row.data[column.key] }}</p>
19
19
  </td>
20
20
  </template>
21
21
  </tr>