bl-common-vue3 3.8.80 → 3.8.81

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bl-common-vue3",
3
- "version": "3.8.80",
3
+ "version": "3.8.81",
4
4
  "main": "index.js",
5
5
  "module": "index.js",
6
6
  "description": "bailing vue3 common components lib",
@@ -884,18 +884,20 @@
884
884
  <template #bodyCell="{ text, record, index, column }">
885
885
  <template v-if="column && column?.key">
886
886
  <template v-if="column?.columnType === 'security'">
887
- <span>
888
- {{ getSecurityDisplayValue(record, column) }}
889
- </span>
890
- <a-button
891
- type="link"
892
- size="small"
893
- style="padding: 0 4px"
894
- v-if="shouldShowSecurityRowBtn(record, column)"
895
- @click.stop="toggleSecurityValue(record, column)">
896
- <EyeInvisibleOutlined v-if="isSecurityRowOn(record, column)" />
897
- <EyeOutlined v-else />
898
- </a-button>
887
+ <div style="display: flex; align-items: center; gap: 4px">
888
+ <span>
889
+ {{ getSecurityDisplayValue(record, column) }}
890
+ </span>
891
+ <a-button
892
+ type="link"
893
+ size="small"
894
+ style="padding: 0 4px"
895
+ v-if="shouldShowSecurityRowBtn(record, column)"
896
+ @click.stop="toggleSecurityValue(record, column)">
897
+ <EyeInvisibleOutlined v-if="isSecurityRowOn(record, column)" />
898
+ <EyeOutlined v-else />
899
+ </a-button>
900
+ </div>
899
901
  </template>
900
902
 
901
903
  <template v-else-if="column?.type">