@tplc/business 0.5.74 → 0.5.75
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 +25 -0
- package/components/lcb-area/lcb-area.vue +10 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,31 @@
|
|
|
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.5.75](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.5.69...v0.5.75) (2025-12-04)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### 🚀 Chore | 构建/工程依赖/工具
|
|
9
|
+
|
|
10
|
+
* **release:** 0.5.70 ([ddb4aa7](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/ddb4aa75c0df558b1290688ffec4940945818728))
|
|
11
|
+
* **release:** 0.5.71 ([19eaaaa](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/19eaaaaa86929f3f8285b095fb86d93f44fdd6de))
|
|
12
|
+
* **release:** 0.5.72 ([4d02488](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/4d02488b574dd3ef9f2d5c4ae0e144cb827343ef))
|
|
13
|
+
* **release:** 0.5.73 ([2fe2b89](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/2fe2b89e772cee7ebba9ed6511445b3ee6816d95))
|
|
14
|
+
* **release:** 0.5.74 ([d8437e5](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/d8437e5530795738e68fdd951da94573a6efe5ba))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### 🐛 Bug Fixes | Bug 修复
|
|
18
|
+
|
|
19
|
+
* action str ([a5b5ea7](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/a5b5ea77527c84904dfca663923b69ede964ae35))
|
|
20
|
+
* area child width ([c97b8a6](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/c97b8a6992daf9b07d722a2f46eaf182eb69e1be))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### ✨ Features | 新功能
|
|
24
|
+
|
|
25
|
+
* 兼容h5 ([a4bf8f6](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/a4bf8f60cda7afb3bcf3e8b3a99641c3b0c2e0f9))
|
|
26
|
+
* 支持自适应 ([8cf03cc](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/8cf03cc6397ad85ff1d3938d60b769fc2f0d50ac))
|
|
27
|
+
* 支持请求 ([5baa8a3](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/5baa8a36802f0f1140d5794050f5a48b3c43128b))
|
|
28
|
+
* 调整布局 ([2011392](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/2011392224dc40ab6f7a7dae9f0a4d88a3d882dd))
|
|
29
|
+
|
|
5
30
|
### [0.5.74](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.5.73...v0.5.74) (2025-12-04)
|
|
6
31
|
|
|
7
32
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<lcb-
|
|
3
|
-
<lcb-
|
|
2
|
+
<lcb-block v-bind="$props" v-if="showArea">
|
|
3
|
+
<lcb-action-view v-bind="action">
|
|
4
4
|
<view
|
|
5
5
|
:style="{
|
|
6
6
|
display: display,
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
overflowX: scrollX ? 'auto' : 'initial',
|
|
9
9
|
...innerStyle,
|
|
10
10
|
}"
|
|
11
|
-
class="h-
|
|
11
|
+
class="h-full"
|
|
12
12
|
>
|
|
13
13
|
<view
|
|
14
14
|
v-for="(item, index) in list"
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
<slot :item="item" />
|
|
23
23
|
</view>
|
|
24
24
|
</view>
|
|
25
|
-
</lcb-
|
|
26
|
-
</lcb-
|
|
25
|
+
</lcb-action-view>
|
|
26
|
+
</lcb-block>
|
|
27
27
|
</template>
|
|
28
28
|
|
|
29
29
|
<script setup lang="ts">
|
|
@@ -130,7 +130,11 @@ const showArea = computed(() => {
|
|
|
130
130
|
|
|
131
131
|
<style lang="scss" scoped>
|
|
132
132
|
.slot-wrapper {
|
|
133
|
-
:deep(>
|
|
133
|
+
:deep(> view) {
|
|
134
|
+
width: 100%;
|
|
135
|
+
height: auto;
|
|
136
|
+
}
|
|
137
|
+
:deep(> button) {
|
|
134
138
|
width: 100%;
|
|
135
139
|
height: auto;
|
|
136
140
|
}
|