@policystudio/policy-studio-ui-vue 1.0.82 → 1.0.84

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.
@@ -18635,10 +18635,6 @@ html {
18635
18635
  color: rgba(40, 50, 59, var(--text-opacity));
18636
18636
  }
18637
18637
 
18638
- .psui-el-table-results tbody tr.is-disabled {
18639
- pointer-events: none;
18640
- }
18641
-
18642
18638
  .psui-el-table-results tbody tr .title {
18643
18639
  display: flex;
18644
18640
  align-items: center;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@policystudio/policy-studio-ui-vue",
3
- "version": "1.0.82",
3
+ "version": "1.0.84",
4
4
  "description": "Policy Studio UI",
5
5
  "main": "src/index.js",
6
6
  "author": "Policy Studio Team",
@@ -66,10 +66,6 @@
66
66
  }
67
67
  }
68
68
 
69
- &.is-disabled {
70
- @apply psui-pointer-events-none;
71
- }
72
-
73
69
  .title {
74
70
  @apply psui-flex psui-items-center;
75
71
  }
@@ -1,9 +1,11 @@
1
1
  <template>
2
- <div class="psui-el-table-results-wrapper">
2
+ <div
3
+ class="psui-el-table-results-wrapper"
4
+ :style="{ maxHeight: tableMaxHeight }"
5
+ >
3
6
  <table
4
7
  ref="table"
5
8
  class="psui-el-table-results"
6
- :style="{ maxHeight: tableMaxHeight }"
7
9
  >
8
10
  <slot name="header"></slot>
9
11
 
@@ -35,7 +37,7 @@
35
37
  class="actions-button psui-transition psui-transform"
36
38
  :icon-classes="item.is_disabled ? 'psui-text-gray-40' : getIconClasses(item)"
37
39
  :style="{ display: 'flex' }"
38
- :class="checkRowIsVisible(item) ? 'psui-rotate-0' : 'psui--rotate-90'"
40
+ :class="[checkRowIsVisible(item) ? 'psui-rotate-0' : 'psui--rotate-90', { 'psui-pointer-events-none' : item.is_disabled }]"
39
41
  @click.native="onCollapse(item)"
40
42
  />
41
43