@tplc/business 0.7.38 → 0.7.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,13 @@
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.7.39](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.7.38...v0.7.39) (2026-01-03)
6
+
7
+
8
+ ### ✨ Features | 新功能
9
+
10
+ * **utils:** update getSharePath to accept optional parameters for enhanced functionality ([c3c5fb3](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/c3c5fb36cbd7f97958d274820f7751ff4bb58ba7))
11
+
5
12
  ### [0.7.38](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v1.0.22...v0.7.38) (2026-01-03)
6
13
 
7
14
 
@@ -54,19 +54,20 @@
54
54
  :color="contentColor"
55
55
  />
56
56
  </wd-badge>
57
- <wd-icon
58
- v-bind="{
59
- ...(item.action === 'notification'
60
- ? {}
61
- : {
62
- classPrefix: 'lcb',
63
- }),
64
- }"
65
- :name="iconMap[item.action] || item.icon"
66
- size="40rpx"
67
- :color="contentColor"
68
- v-else
69
- />
57
+ <lcb-action-view v-else v-bind="item.actionViewProps">
58
+ <wd-icon
59
+ v-bind="{
60
+ ...(item.action === 'notification'
61
+ ? {}
62
+ : {
63
+ classPrefix: 'lcb',
64
+ }),
65
+ }"
66
+ :name="iconMap[item.action] || item.icon"
67
+ size="40rpx"
68
+ :color="contentColor"
69
+ />
70
+ </lcb-action-view>
70
71
  </view>
71
72
  </view>
72
73
  <template v-else-if="canBack">
@@ -17,6 +17,7 @@ export interface ICapsule {
17
17
  keyFromUser?: string
18
18
  dependKeyCompareValue?: string
19
19
  reverse?: boolean
20
+ actionViewProps?: LcbActionViewProps
20
21
  }
21
22
 
22
23
  export interface AddressCommunityProps {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tplc/business",
3
- "version": "0.7.38",
3
+ "version": "0.7.39",
4
4
  "keywords": [
5
5
  "业务组件"
6
6
  ],
@@ -16,6 +16,7 @@ export interface ICapsule {
16
16
  keyFromUser?: string
17
17
  dependKeyCompareValue?: string
18
18
  reverse?: boolean
19
+ actionViewProps?: LcbActionViewProps
19
20
  }
20
21
  export interface AddressCommunityProps {
21
22
  backgroundColor?: string