@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.
@@ -6430,6 +6430,11 @@ video {
6430
6430
  padding-right: 1.5rem;
6431
6431
  }
6432
6432
 
6433
+ .psui-py-0 {
6434
+ padding-top: 0px;
6435
+ padding-bottom: 0px;
6436
+ }
6437
+
6433
6438
  .psui-py-1 {
6434
6439
  padding-top: 0.25rem;
6435
6440
  padding-bottom: 0.25rem;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@policystudio/policy-studio-ui-vue",
3
- "version": "1.1.90-beta.39",
3
+ "version": "1.1.90-beta.40",
4
4
  "description": "Policy Studio UI",
5
5
  "author": "Policy Studio Team",
6
6
  "scripts": {
@@ -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="psui-flex psui-text-gray-40 psui-cursor-pointer leading-none hover:psui-text-blue-60 psui-gap-3 psui-px-5 psui-py-1 transition-all"
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)"