@policystudio/policy-studio-ui-vue 1.1.77 → 1.1.79

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.
@@ -3416,6 +3416,7 @@ video {
3416
3416
  transition-property: all;
3417
3417
  transition-duration: 100ms;
3418
3418
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
3419
+ overflow: auto;
3419
3420
  }
3420
3421
 
3421
3422
  .psui-el-dropdown-menu-dialog-wrapper-dialog {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@policystudio/policy-studio-ui-vue",
3
- "version": "1.1.77",
3
+ "version": "1.1.79",
4
4
  "description": "Policy Studio UI",
5
5
  "main": "src/index.js",
6
6
  "author": "Policy Studio Team",
@@ -18,7 +18,7 @@
18
18
  }
19
19
 
20
20
  &-dialog-wrapper {
21
- @apply psui-hidden psui-origin-top-right psui-bg-white psui-fixed psui-w-auto psui-rounded-md psui-z-50 psui-opacity-0 psui-shadow-elevation-20 psui-transition-all psui-duration-100 psui-ease-in;
21
+ @apply psui-hidden psui-origin-top-right psui-bg-white psui-fixed psui-w-auto psui-rounded-md psui-z-50 psui-opacity-0 psui-shadow-elevation-20 psui-transition-all psui-duration-100 psui-ease-in psui-overflow-auto;
22
22
 
23
23
  &-dialog {
24
24
  @apply psui-w-full;
@@ -202,22 +202,7 @@
202
202
  class="psui-space-x-2 psui-show-childrens-on-hover"
203
203
  :class="column.isCenteredContent ? 'psui-justify-center' : 'psui-justify-end'"
204
204
  >
205
- <PsTooltip v-if="selectedRow == item.id && columnSelectedKey == column.key && layout == 'flexible'">
206
- <template v-slot:trigger>
207
- <PsIcon
208
- icon="bar_chart"
209
- size="16"
210
- class="psui-cursor-pointer"
211
- icon-classes="psui-text-blue-60 psui-leading-none psui-transition"
212
- display="flex"
213
- @click.native="onSelectRow(item, column)"
214
- />
215
- </template>
216
- <template v-slot:content>
217
- Close projections
218
- </template>
219
- </PsTooltip>
220
- <PsTooltip v-else-if="isSelectedRow(column,item)">
205
+ <PsTooltip v-if="isSelectedRow(column,item)">
221
206
  <template v-slot:trigger>
222
207
  <PsIcon
223
208
  icon="close"
@@ -233,7 +218,9 @@
233
218
  </template>
234
219
  </PsTooltip>
235
220
 
236
- <PsTooltip v-else-if="column.hasProjections && !item.is_disabled && item.disable_projection_select !== true">
221
+ <PsTooltip v-else-if="column.hasProjections && !item.is_disabled && item.disable_projection_select !== true && layout != 'flexible' ||
222
+ column.hasProjections && item.disable_projection_select != true && item.deep != 0 && layout == 'flexible'"
223
+ >
237
224
  <template v-slot:trigger>
238
225
  <PsIcon
239
226
  icon="bar_chart"
@@ -596,7 +583,7 @@ export default {
596
583
  for (let i = 0; i < children.length; i++) {
597
584
  children[i].classList.add('hover-color')
598
585
  }
599
- } else {
586
+ } else if(parent) {
600
587
  parent.querySelectorAll('.hover-color').forEach(child => {
601
588
  child.classList.remove('hover-color')
602
589
  })