@tplc/business 0.5.73 → 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 CHANGED
@@ -2,6 +2,38 @@
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
+
30
+ ### [0.5.74](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.5.73...v0.5.74) (2025-12-04)
31
+
32
+
33
+ ### 🐛 Bug Fixes | Bug 修复
34
+
35
+ * action str ([a5b5ea7](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/a5b5ea77527c84904dfca663923b69ede964ae35))
36
+
5
37
  ### [0.5.73](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.5.72...v0.5.73) (2025-12-04)
6
38
 
7
39
  ### [0.5.72](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.5.71...v0.5.72) (2025-12-04)
@@ -1,6 +1,6 @@
1
1
  <template>
2
- <lcb-action-view v-bind="action" v-if="showArea">
3
- <lcb-block v-bind="$props">
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,12 +8,12 @@
8
8
  overflowX: scrollX ? 'auto' : 'initial',
9
9
  ...innerStyle,
10
10
  }"
11
- class="h-full z-1"
11
+ class="h-full"
12
12
  >
13
13
  <view
14
14
  v-for="(item, index) in list"
15
15
  :key="item.id"
16
- class="slot-wrapper"
16
+ class="slot-wrapper z-1"
17
17
  :style="{
18
18
  ...getStyle(index),
19
19
  overflowX,
@@ -22,8 +22,8 @@
22
22
  <slot :item="item" />
23
23
  </view>
24
24
  </view>
25
- </lcb-block>
26
- </lcb-action-view>
25
+ </lcb-action-view>
26
+ </lcb-block>
27
27
  </template>
28
28
 
29
29
  <script setup lang="ts">
@@ -129,13 +129,14 @@ const showArea = computed(() => {
129
129
  </script>
130
130
 
131
131
  <style lang="scss" scoped>
132
- // 小程序的情况
133
- // #ifdef MP-WEIXIN
134
132
  .slot-wrapper {
135
133
  :deep(> view) {
136
134
  width: 100%;
137
- height: 100%;
135
+ height: auto;
136
+ }
137
+ :deep(> button) {
138
+ width: 100%;
139
+ height: auto;
138
140
  }
139
141
  }
140
- // #endif
141
142
  </style>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tplc/business",
3
- "version": "0.5.73",
3
+ "version": "0.5.75",
4
4
  "keywords": [
5
5
  "业务组件"
6
6
  ],