@tplc/business 0.4.164 → 0.4.165
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 +11 -7
- package/components/lcb-area/lcb-area.vue +7 -1
- package/components/lcb-area/types.ts +1 -0
- package/components/lcb-block/lcb-block.vue +2 -0
- package/components/lcb-block/types.ts +1 -1
- package/package.json +1 -1
- package/types/components/lcb-area/types.d.ts +1 -0
- package/types/components/lcb-block/lcb-block.vue.d.ts +2 -0
- package/types/components/lcb-block/types.d.ts +1 -0
- package/types/components/lcb-list/lcb-list.vue.d.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,23 +2,27 @@
|
|
|
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.
|
|
5
|
+
### [0.4.165](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.164...v0.4.165) (2025-07-21)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### ✨ Features | 新功能
|
|
9
|
+
|
|
10
|
+
* area 支持 position ([acf7ad6](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/acf7ad6c905cbcfcc87e505f7b4ba010305e8085))
|
|
11
|
+
|
|
12
|
+
### [0.4.164](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.162...v0.4.164) (2025-07-21)
|
|
6
13
|
|
|
7
14
|
|
|
8
15
|
### 🚀 Chore | 构建/工程依赖/工具
|
|
9
16
|
|
|
10
|
-
* **release:** 0.4.162 ([ba2a259](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/ba2a259ebdb1c38e8b4b2d37153638085a701ffe))
|
|
11
17
|
* **release:** 0.4.163 ([9ced11c](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/9ced11cf16df2058a28d1d9e02231d2f96b3f5bc))
|
|
12
18
|
|
|
13
19
|
|
|
14
20
|
### ✨ Features | 新功能
|
|
15
21
|
|
|
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
22
|
* nav页面 ([aa8f380](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/aa8f380e915a44b74036a24079027c14b8ce484a))
|
|
21
|
-
*
|
|
23
|
+
* 改造route tabbar ([544c8b8](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/544c8b8c4ce29c7c89ccdadaef3bf4018bde3884))
|
|
24
|
+
* 调整ds ([41c69d5](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/41c69d5cf71f10d266c6cff16b56a023d40b97b4))
|
|
25
|
+
* 调整日历高度 ([7de6b26](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/7de6b26c60f1ddce1056e54d56b3753b7e5805e1))
|
|
22
26
|
|
|
23
27
|
### [0.4.163](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.154...v0.4.163) (2025-07-18)
|
|
24
28
|
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
fontWeight,
|
|
17
17
|
borderColor,
|
|
18
18
|
zIndex,
|
|
19
|
+
position,
|
|
19
20
|
borderWidth: transformValueUnit(borderWidth),
|
|
20
21
|
boxShadow:
|
|
21
22
|
shadowColor && shadowSize ? `0px 0px ${blurSize}px ${shadowSize}px ${shadowColor}` : '',
|
|
@@ -49,6 +50,7 @@ const props = withDefaults(defineProps<LcbBlockInnerProps>(), {
|
|
|
49
50
|
backgroundPosition: `top center`,
|
|
50
51
|
opacity: 1,
|
|
51
52
|
fontSize: 24,
|
|
53
|
+
position: 'relative',
|
|
52
54
|
})
|
|
53
55
|
// 透明度+颜色
|
|
54
56
|
const innerBackgroundColor = computed(() => {
|
package/package.json
CHANGED
|
@@ -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
|
>
|