@tplc/business 0.4.88 → 0.4.89

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.4.89](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.88...v0.4.89) (2025-05-04)
6
+
7
+
8
+ ### ✨ Features | 新功能
9
+
10
+ * nav 支持动态参数 ([996d6e7](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/996d6e762bdf73c65a6fa4f27146f0982cd63c74))
11
+
5
12
  ### [0.4.88](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.87...v0.4.88) (2025-05-04)
6
13
 
7
14
 
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <template v-if="mode === 'noParent'">{{ innerValue }}</template>
2
+ <template v-if="mode === 'noStyle'">{{ innerValue }}</template>
3
3
  <view
4
4
  class="w-full h-full"
5
5
  :style="{
@@ -4,7 +4,7 @@ import { LcbBlockProps } from '../lcb-block/types'
4
4
  export interface LcbButtonProps extends LcbBlockProps {
5
5
  text: string
6
6
  action?: LcbActionViewProps
7
- mode: 'image' | 'text' | 'noParent'
7
+ mode: 'image' | 'text' | 'noStyle'
8
8
  url?: string
9
9
  imageWidth?: number
10
10
  imageHeight?: number
@@ -15,7 +15,7 @@
15
15
  fontWeight: fontWeight,
16
16
  }"
17
17
  >
18
- <lcb-button mode="noParent" :text="title" :keyFromUser="keyFromUser" />
18
+ <lcb-button mode="noStyle" :text="title" :keyFromUser="keyFromUser" />
19
19
  </view>
20
20
  </view>
21
21
  <view class="images" v-else>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tplc/business",
3
- "version": "0.4.88",
3
+ "version": "0.4.89",
4
4
  "keywords": [
5
5
  "业务组件"
6
6
  ],
@@ -3,7 +3,7 @@ import { LcbBlockProps } from '../lcb-block/types'
3
3
  export interface LcbButtonProps extends LcbBlockProps {
4
4
  text: string
5
5
  action?: LcbActionViewProps
6
- mode: 'image' | 'text' | 'noParent'
6
+ mode: 'image' | 'text' | 'noStyle'
7
7
  url?: string
8
8
  imageWidth?: number
9
9
  imageHeight?: number