@policystudio/policy-studio-ui-vue 1.1.90-beta.39 → 1.1.90-beta.40
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/package.json
CHANGED
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
</div>
|
|
135
135
|
<div
|
|
136
136
|
class="actions psui-space-x-3 flex justify-between"
|
|
137
|
-
:style="{ paddingLeft: `${item.deep * 16}px` }"
|
|
137
|
+
:style="layout !== 'flexible' ? { paddingLeft: `${item.deep * 16}px` } : {}"
|
|
138
138
|
>
|
|
139
139
|
<PsRichTooltip
|
|
140
140
|
v-if="shouldShowIcon(item)"
|
|
@@ -147,7 +147,10 @@
|
|
|
147
147
|
<template #trigger>
|
|
148
148
|
<PsIcon
|
|
149
149
|
:icon="getIcon(item)"
|
|
150
|
-
class="
|
|
150
|
+
:class="[
|
|
151
|
+
'psui-flex psui-text-gray-40 psui-cursor-pointer leading-none hover:psui-text-blue-60 psui-gap-3 transition-all',
|
|
152
|
+
layout === 'flexible' ? 'px-1 psui-py-0' : 'psui-px-5 psui-py-1'
|
|
153
|
+
]"
|
|
151
154
|
size="16"
|
|
152
155
|
display="flex"
|
|
153
156
|
@click.native="executeCallback(item)"
|