@tplc/wot 0.1.79 → 0.1.81

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,25 @@
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.1.81](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.68...v0.1.81) (2025-04-12)
6
+
7
+
8
+ ### ✨ Features | 新功能
9
+
10
+ * 调整按钮配置 ([db5503f](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/db5503f9e94ba00bc37947c401a3e4d5b52abb4d))
11
+
12
+
13
+ ### 🚀 Chore | 构建/工程依赖/工具
14
+
15
+ * **release:** 0.4.69 ([da7b4b6](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/da7b4b6c804f8525597bd52c227aa1676576c859))
16
+
17
+ ### [0.1.80](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.67...v0.1.80) (2025-04-09)
18
+
19
+
20
+ ### ✨ Features | 新功能
21
+
22
+ * search 回车 带上keywords ([ce99896](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/ce998961a0b52d9a4e2d2018489d22175c5bb227))
23
+
5
24
  ### [0.1.79](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.63...v0.1.79) (2025-04-08)
6
25
 
7
26
 
@@ -7,8 +7,8 @@
7
7
  :mode="mode"
8
8
  :lazy-load="lazyLoad"
9
9
  />
10
- <!-- #ifdef H5 -->
11
- <img
10
+
11
+ <image
12
12
  :class="`wd-img__image coverImg ${customImage}`"
13
13
  :src="wrapPhoto({ photo: src, width, type: 1 })"
14
14
  :mode="mode"
@@ -17,20 +17,8 @@
17
17
  @error="handleError"
18
18
  :style="{
19
19
  display: status === 'success' ? 'block' : 'none',
20
- objectFit: 'cover',
21
20
  }"
22
21
  />
23
- <!-- #endif -->
24
- <!-- #ifndef H5 -->
25
- <image
26
- :class="`wd-img__image coverImg ${customImage}`"
27
- :src="wrapPhoto({ photo: src, width, type: 1 })"
28
- :mode="mode"
29
- :lazy-load="lazyLoad"
30
- @load="handleLoad"
31
- @error="handleError"
32
- />
33
- <!-- #endif -->
34
22
  </view>
35
23
  </template>
36
24
  <script lang="ts">
@@ -13,6 +13,7 @@ export type MessageType = 'alert' | 'confirm' | 'prompt'
13
13
 
14
14
  export type MessageBeforeConfirmOption = {
15
15
  resolve: (isPass: boolean) => void
16
+ value: string | number
16
17
  }
17
18
 
18
19
  export type MessageOptions = {
@@ -212,6 +212,7 @@ function toggleModal(action: 'confirm' | 'cancel' | 'modal') {
212
212
  })
213
213
  }
214
214
  },
215
+ value: inputValue.value,
215
216
  })
216
217
  } else {
217
218
  handleConfirm({
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "@tplc/wot",
3
3
  "name": "@tplc/wot",
4
- "version": "0.1.79",
4
+ "version": "0.1.81",
5
5
  "keywords": [
6
6
  "wot-design-uni",
7
7
  "国际化",
@@ -1,6 +1,7 @@
1
1
  export type MessageType = 'alert' | 'confirm' | 'prompt'
2
2
  export type MessageBeforeConfirmOption = {
3
3
  resolve: (isPass: boolean) => void
4
+ value: string | number
4
5
  }
5
6
  export type MessageOptions = {
6
7
  /**