@tplc/business 0.5.38 → 0.5.39

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/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.5.39](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.5.38...v0.5.39) (2025-11-03)
6
+
5
7
  ### [0.5.38](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.5.37...v0.5.38) (2025-11-03)
6
8
 
7
9
 
@@ -2,9 +2,10 @@
2
2
  <wd-popup
3
3
  v-model="show"
4
4
  :z-index="1000"
5
- closable
5
+ :closable="false"
6
6
  position="center"
7
- custom-class="!bg-transparent"
7
+ :close-on-click-modal="false"
8
+ custom-class="!bg-transparent !flex flex-col items-center"
8
9
  >
9
10
  <view
10
11
  :style="{ width: transformValueUnit(pageInfo?.page.popupWidth || '500') }"
@@ -16,12 +17,13 @@
16
17
  :element="element"
17
18
  />
18
19
  </view>
20
+ <wd-icon name="close-circle" size="30" color="#fff" @click="show = false" custom-class="mt-3" />
19
21
  </wd-popup>
20
22
  </template>
21
23
  <script setup lang="ts">
22
24
  import { transformValueUnit } from '../../../../utils/transform'
23
25
  import { TextRenderViewItem } from '../../../../action'
24
- import { provide, ref, watch } from 'vue'
26
+ import { provide, Ref, ref, watch } from 'vue'
25
27
  import { PAGE_PROVIDE_KEY } from '../../../../constants'
26
28
  defineOptions({
27
29
  name: 'ActionCustomPopup',
@@ -35,7 +37,7 @@ defineOptions({
35
37
  const props = defineProps<{
36
38
  jumpUrl?: string
37
39
  }>()
38
- const popupInfo = ref<Record<string, any>>({})
40
+ const popupInfo = ref({})
39
41
  provide(PAGE_PROVIDE_KEY, popupInfo)
40
42
  const show = defineModel({ default: false })
41
43
  const pageInfo = ref<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tplc/business",
3
- "version": "0.5.38",
3
+ "version": "0.5.39",
4
4
  "keywords": [
5
5
  "业务组件"
6
6
  ],