@policystudio/policy-studio-ui-vue 1.1.60 → 1.1.62

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.
@@ -2431,6 +2431,7 @@ video {
2431
2431
  text-align: left;
2432
2432
  padding-top: 0;
2433
2433
  padding-bottom: 0;
2434
+ min-width: 596px;
2434
2435
  }
2435
2436
 
2436
2437
  .psui-el-table-results.layout-flexible thead tr:first-of-type th > div {
@@ -2452,6 +2453,7 @@ video {
2452
2453
 
2453
2454
  .psui-el-table-results.layout-flexible thead tr:not(:first-of-type) th:first-child {
2454
2455
  text-align: left;
2456
+ min-width: 388px;
2455
2457
  }
2456
2458
 
2457
2459
  .psui-el-table-results.layout-flexible tbody tr {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@policystudio/policy-studio-ui-vue",
3
- "version": "1.1.60",
3
+ "version": "1.1.62",
4
4
  "description": "Policy Studio UI",
5
5
  "main": "src/index.js",
6
6
  "author": "Policy Studio Team",
@@ -385,6 +385,7 @@
385
385
  @apply psui-text-left;
386
386
  padding-top: 0;
387
387
  padding-bottom: 0;
388
+ min-width: 596px;
388
389
 
389
390
  > div {
390
391
  @apply psui-flex psui-flex-row psui-border-b psui-border-gray-30;
@@ -405,6 +406,7 @@
405
406
  th {
406
407
  &:first-child {
407
408
  @apply psui-text-left;
409
+ min-width: 388px;
408
410
  }
409
411
  }
410
412
  }
@@ -76,7 +76,7 @@
76
76
  >
77
77
  <div class="flex psui-items-center psui-relative ">
78
78
  <PsIcon v-if="item.has_blocked_icon" icon="do_disturb_alt" size="14" icon-classes="psui-absolute psui--left-1 psui-text-gray-50"/>
79
- <p class="title psui-text-gray-50 opacity-100-childrens-on-hover">
79
+ <p class="title psui-text-gray-50 opacity-100-childrens-on-hover" :style='item.text_color ? `color: ${item.text_color};` : ""'>
80
80
 
81
81
  {{ item.title }}
82
82
 
@@ -554,6 +554,10 @@ export default {
554
554
  return isHidden
555
555
  },
556
556
  onCollapse(item) {
557
+ if(this.itemsHiddenIndexes && this.itemsHiddenIndexes.some(it => it == item.index.toString()) && this.layout == 'flexible') {
558
+ return
559
+ }
560
+
557
561
  const index = this.collapsedRows.indexOf(item.index)
558
562
  if(index > -1) {
559
563
  this.collapsedRows.splice(index, 1)