@tplc/business 0.4.164 → 0.4.166

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,23 +2,34 @@
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.164](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.161...v0.4.164) (2025-07-21)
5
+ ### [0.4.166](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.165...v0.4.166) (2025-07-21)
6
+
7
+
8
+ ### ✨ Features | 新功能
9
+
10
+ * 修改布局 ([be4d414](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/be4d414f4e51532c491604523ad7dc2eaaf015d0))
11
+
12
+ ### [0.4.165](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.164...v0.4.165) (2025-07-21)
13
+
14
+
15
+ ### ✨ Features | 新功能
16
+
17
+ * area 支持 position ([acf7ad6](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/acf7ad6c905cbcfcc87e505f7b4ba010305e8085))
18
+
19
+ ### [0.4.164](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.162...v0.4.164) (2025-07-21)
6
20
 
7
21
 
8
22
  ### 🚀 Chore | 构建/工程依赖/工具
9
23
 
10
- * **release:** 0.4.162 ([ba2a259](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/ba2a259ebdb1c38e8b4b2d37153638085a701ffe))
11
24
  * **release:** 0.4.163 ([9ced11c](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/9ced11cf16df2058a28d1d9e02231d2f96b3f5bc))
12
25
 
13
26
 
14
27
  ### ✨ Features | 新功能
15
28
 
16
- * 调整日历高度 ([7de6b26](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/7de6b26c60f1ddce1056e54d56b3753b7e5805e1))
17
- * 调整ds ([41c69d5](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/41c69d5cf71f10d266c6cff16b56a023d40b97b4))
18
- * 改造route tabbar ([544c8b8](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/544c8b8c4ce29c7c89ccdadaef3bf4018bde3884))
19
- * 新增index ([0632409](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/06324097a0d2103a9d055c4c3b4c137be4537eb5))
20
29
  * nav页面 ([aa8f380](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/aa8f380e915a44b74036a24079027c14b8ce484a))
21
- * nav页面 ([53b45b0](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/53b45b0551d117641c9fd715028223caa6d9950a))
30
+ * 改造route tabbar ([544c8b8](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/544c8b8c4ce29c7c89ccdadaef3bf4018bde3884))
31
+ * 调整ds ([41c69d5](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/41c69d5cf71f10d266c6cff16b56a023d40b97b4))
32
+ * 调整日历高度 ([7de6b26](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/7de6b26c60f1ddce1056e54d56b3753b7e5805e1))
22
33
 
23
34
  ### [0.4.163](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.154...v0.4.163) (2025-07-18)
24
35
 
@@ -21,4 +21,5 @@ export interface LcbAreaProps extends LcbBlockProps {
21
21
  keyFromUser?: boolean
22
22
  reverse?: boolean
23
23
  dependKeyCompareValue?: string
24
+ position?: 'relative' | 'absolute'
24
25
  }
@@ -1,6 +1,7 @@
1
1
  <template>
2
2
  <view
3
3
  :style="{
4
+ width: position === 'absolute' ? '100%' : '',
4
5
  marginTop: transformValueUnit(-(floatUp || 0)),
5
6
  marginLeft: transformValueUnit(marginHorizontal || 0),
6
7
  marginRight: transformValueUnit(marginHorizontal || 0),
@@ -16,6 +17,7 @@
16
17
  fontWeight,
17
18
  borderColor,
18
19
  zIndex,
20
+ position,
19
21
  borderWidth: transformValueUnit(borderWidth),
20
22
  boxShadow:
21
23
  shadowColor && shadowSize ? `0px 0px ${blurSize}px ${shadowSize}px ${shadowColor}` : '',
@@ -49,6 +51,7 @@ const props = withDefaults(defineProps<LcbBlockInnerProps>(), {
49
51
  backgroundPosition: `top center`,
50
52
  opacity: 1,
51
53
  fontSize: 24,
54
+ position: 'relative',
52
55
  })
53
56
  // 透明度+颜色
54
57
  const innerBackgroundColor = computed(() => {
@@ -26,7 +26,7 @@ export interface LcbBlockProps {
26
26
  paddingLeft?: number
27
27
  paddingRight?: number
28
28
  zIndex?: number
29
-
29
+ position?: 'relative' | 'absolute'
30
30
  color?: string
31
31
  fontSize?: number
32
32
  fontWeight?: number
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tplc/business",
3
- "version": "0.4.164",
3
+ "version": "0.4.166",
4
4
  "keywords": [
5
5
  "业务组件"
6
6
  ],
@@ -21,4 +21,5 @@ export interface LcbAreaProps extends LcbBlockProps {
21
21
  keyFromUser?: boolean
22
22
  reverse?: boolean
23
23
  dependKeyCompareValue?: string
24
+ position?: 'relative' | 'absolute'
24
25
  }
@@ -11,6 +11,7 @@ declare const __VLS_component: import('vue').DefineComponent<
11
11
  backgroundPosition: string
12
12
  opacity: number
13
13
  fontSize: number
14
+ position: string
14
15
  }
15
16
  >,
16
17
  {},
@@ -32,6 +33,7 @@ declare const __VLS_component: import('vue').DefineComponent<
32
33
  backgroundPosition: string
33
34
  opacity: number
34
35
  fontSize: number
36
+ position: string
35
37
  }
36
38
  >
37
39
  >
@@ -25,6 +25,7 @@ export interface LcbBlockProps {
25
25
  paddingLeft?: number
26
26
  paddingRight?: number
27
27
  zIndex?: number
28
+ position?: 'relative' | 'absolute'
28
29
  color?: string
29
30
  fontSize?: number
30
31
  fontWeight?: number
@@ -26,6 +26,7 @@ declare const __VLS_component: import('vue').DefineComponent<
26
26
  customClass: string
27
27
  zIndex: number
28
28
  radius: number
29
+ position: 'relative' | 'absolute'
29
30
  backgroundImage: string
30
31
  imageRadius: number
31
32
  marginHorizontal: number