@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.
package/dist/css/psui_styles.css
CHANGED
|
@@ -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,9 +1,11 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div
|
|
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
|
|