@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.
package/dist/css/psui_styles.css
CHANGED
|
@@ -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
|
@@ -437,7 +437,7 @@ export default {
|
|
|
437
437
|
switchButtonBackgroundColor:{
|
|
438
438
|
type:String,
|
|
439
439
|
},
|
|
440
|
-
|
|
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.
|
|
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 '--'
|