@tplc/business 0.3.79 → 0.3.80

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,20 @@
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.3.80](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.78...v0.3.80) (2025-03-12)
6
+
7
+
8
+ ### 🚀 Chore | 构建/工程依赖/工具
9
+
10
+ * **release:** 0.3.79 ([f9f123b](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/f9f123b0f2a9947508046d1e74e463eadb3a6a25))
11
+
12
+
13
+ ### ✨ Features | 新功能
14
+
15
+ * title 新增logo ([ae2f22e](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/ae2f22eec1fbbe91f4f7e7d3d4953581b64cdc6c))
16
+ * 支持沉浸式文字 ([6f138c0](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/6f138c048cf28f6827307b95bf98175c2bc497ad))
17
+ * 新增数据 ([29d0146](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/29d0146c82a3fa01f2268c1084804c74f92399fd))
18
+
5
19
  ### [0.3.79](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.1.66...v0.3.79) (2025-03-12)
6
20
 
7
21
 
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <lcb-action-view
3
3
  v-bind="$props.link"
4
- custom-class="!fixed !z-2 flex items-center overflow-hidden !text-center justify-center flex-col box-border shadow break-after-all"
4
+ :custom-class="`!fixed !z-2 flex items-center overflow-hidden !text-center justify-center flex-col box-border ${shadow ? 'shadow' : ''} break-after-all`"
5
5
  :customStyle="customStyle"
6
6
  >
7
7
  <wd-icon
@@ -34,6 +34,7 @@ const customStyle = computed(() => {
34
34
  bottom,
35
35
  link,
36
36
  width,
37
+ height,
37
38
  borderRadius,
38
39
  backgroundColor,
39
40
  backgroundImage,
@@ -49,9 +50,12 @@ const customStyle = computed(() => {
49
50
  borderRadius: transformValueUnit(borderRadius),
50
51
  backgroundColor,
51
52
  backgroundImage: `url(${backgroundImage})`,
52
- height: transformValueUnit(width),
53
+ height: transformValueUnit(height),
53
54
  fontSize: transformValueUnit(fontSize),
55
+ shadow: true,
54
56
  padding: `0 ${transformValueUnit(padding)}`,
57
+ backgroundSize: '100% 100%',
58
+ backgroundRepeat: 'no-repeat',
55
59
  }
56
60
  })
57
61
  </script>
@@ -6,6 +6,7 @@ export interface LcbFabProps {
6
6
  backgroundColor?: string
7
7
  backgroundImage?: string
8
8
  width: number
9
+ height: number
9
10
  borderRadius: number
10
11
  text?: string
11
12
  padding?: number
@@ -15,4 +16,5 @@ export interface LcbFabProps {
15
16
  type?: 'icon' | 'text'
16
17
  icon?: string
17
18
  link?: LcbActionViewProps
19
+ shadow?: boolean
18
20
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tplc/business",
3
- "version": "0.3.79",
3
+ "version": "0.3.80",
4
4
  "keywords": [
5
5
  "业务组件"
6
6
  ],
@@ -5,6 +5,7 @@ export interface LcbFabProps {
5
5
  backgroundColor?: string
6
6
  backgroundImage?: string
7
7
  width: number
8
+ height: number
8
9
  borderRadius: number
9
10
  text?: string
10
11
  padding?: number
@@ -14,4 +15,5 @@ export interface LcbFabProps {
14
15
  type?: 'icon' | 'text'
15
16
  icon?: string
16
17
  link?: LcbActionViewProps
18
+ shadow?: boolean
17
19
  }