@policystudio/policy-studio-ui-vue 1.1.51 → 1.1.53

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.51",
3
+ "version": "1.1.53",
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;
@@ -437,7 +437,7 @@ export default {
437
437
  switchButtonBackgroundColor:{
438
438
  type:String,
439
439
  },
440
- preventIsDisabledOnItems:{
440
+ preventIsDisabledOnItemsValue:{
441
441
  type: Boolean,
442
442
  default: false
443
443
  }
@@ -566,7 +566,7 @@ export default {
566
566
  getItemContent(column, item) {
567
567
  if ( column.isSwitch ) return
568
568
 
569
- if (this.formatFunction && !item.is_disabled || this.preventIsDisabledOnItems) {
569
+ if (this.formatFunction && !item.is_disabled || this.preventIsDisabledOnItemsValue) {
570
570
  return this.formatFunction(column.key, item.data[column.key], item.data, item.study_id)
571
571
  } else if (item.is_disabled) {
572
572
  return '--'