@policystudio/policy-studio-ui-vue 1.1.90-beta.41 → 1.1.90-beta.42

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.
@@ -3126,6 +3126,17 @@ video {
3126
3126
  .psui-el-table-results.layout-flexible tbody tr.is-active td:first-child {
3127
3127
  transition: background-color 0.5s ease;
3128
3128
  }
3129
+ .psui-el-table-results.layout-flexible .psui-show-childrens-on-hover:hover * {
3130
+ opacity: 1 !important;
3131
+ }
3132
+ .psui-el-table-results.layout-flexible .psui-show-childrens-on-hover.absolute-childrens {
3133
+ position: relative;
3134
+ }
3135
+ .psui-el-table-results.layout-flexible .psui-show-childrens-on-hover.absolute-childrens .helper {
3136
+ position: absolute;
3137
+ top: 0;
3138
+ right: -18px;
3139
+ }
3129
3140
 
3130
3141
  .psui-el-checkbox {
3131
3142
  position: relative;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@policystudio/policy-studio-ui-vue",
3
- "version": "1.1.90-beta.41",
3
+ "version": "1.1.90-beta.42",
4
4
  "description": "Policy Studio UI",
5
5
  "author": "Policy Studio Team",
6
6
  "scripts": {
@@ -729,7 +729,20 @@
729
729
  }
730
730
  }
731
731
  }
732
+
733
+ .psui-show-childrens-on-hover:hover * {
734
+ opacity: 1!important
735
+ }
736
+
737
+ .psui-show-childrens-on-hover.absolute-childrens {
738
+ position: relative
739
+ }
740
+
741
+ .psui-show-childrens-on-hover.absolute-childrens .helper {
742
+ position: absolute;
743
+ top: 0;
744
+ right: -18px
745
+ }
732
746
  }
733
747
  }
734
-
735
748
  }
@@ -13,9 +13,8 @@
13
13
  <PsIcon
14
14
  icon="info_outline"
15
15
  size="16"
16
- class="psui-cursor-pointer"
17
- icon-classes="psui-text-blue-40 hover:psui-text-blue-60 psui-opacity-0 psui-leading-none psui-transition"
18
- :style="{ display: 'flex' }"
16
+ class="psui-cursor-pointer psui-text-blue-40 hover:psui-text-blue-60 psui-opacity-0 psui-leading-none psui-transition"
17
+ :style="{ display: 'flex', marginTop: '1px' }"
19
18
  @click="emit('click-column-group-helper', columnGroup, $event)"
20
19
  />
21
20
  </div>
@@ -45,9 +44,8 @@
45
44
  <PsIcon
46
45
  icon="info_outline"
47
46
  size="16"
48
- class="psui-cursor-pointer helper"
49
- icon-classes="psui-text-gray-40 hover:psui-text-blue-60 psui-opacity-0 psui-leading-none psui-transition"
50
- :style="{ display: 'flex' }"
47
+ class="helper psui-cursor-pointer psui-text-gray-40 hover:psui-text-blue-60 psui-opacity-0 psui-leading-none psui-transition"
48
+ :style="{ display: 'flex', marginTop: '1px', marginLeft: '1px' }"
51
49
  @click="emit('click-column-helper', column, $event)"
52
50
  />
53
51
 
@@ -56,8 +54,7 @@
56
54
  :icon="orderDirection == 'asc' ? 'arrow_downward' : 'arrow_upward'"
57
55
  :type="orderDirection == 'asc' ? 'arrow_upward' : 'arrow_upward'"
58
56
  size="16"
59
- class="psui-cursor-pointer helper"
60
- icon-classes="psui-text-blue-50 psui-opacity-0 psui-leading-none psui-transition"
57
+ class="helper psui-cursor-pointer psui-text-blue-50 psui-opacity-0 psui-leading-none psui-transition"
61
58
  :style="{ display: 'flex' }"
62
59
  @click="emit('click-order-column', column)"
63
60
  />