@tplc/wot 0.1.22 → 0.1.24

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,29 @@
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.24](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.0.57...v0.1.24) (2024-11-07)
6
+
7
+
8
+ ### 🚀 Chore | 构建/工程依赖/工具
9
+
10
+ * **release:** 0.0.58 ([058ef9c](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/058ef9c965dd16ea66e844f0e1729d53d77ddc03))
11
+
12
+
13
+ ### ✨ Features | 新功能
14
+
15
+ * banner兼容圆角 ([57bc054](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/57bc0542bf1e38188d6d00caff5b0c9209f5b2da))
16
+ * mine/search ([e8d34fc](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/e8d34fc0182fe71de8d9abedb323ff49ee68720d))
17
+ * 晚上布局 ([d33d983](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/d33d983b87e56e63633c3233b3608ca1c3006956))
18
+ * 暂定提交 ([c0a390b](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/c0a390bc08031181cd63f4c44e88229f7e737b2d))
19
+ * 更新版本 ([bc1cb63](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/bc1cb63756e802aa43e365944b859e84eef7e70a))
20
+
21
+
22
+ ### 🐛 Bug Fixes | Bug 修复
23
+
24
+ * swiper link ([afe011e](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/afe011ed46292fc24a54afd2c0724aa8ccad4cf4))
25
+
26
+ ### [0.1.23](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.0.51...v0.1.23) (2024-10-29)
27
+
5
28
  ### [0.1.22](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.0.49...v0.1.22) (2024-10-29)
6
29
 
7
30
  ### [0.1.21](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.0.48...v0.1.21) (2024-10-29)
@@ -4,6 +4,7 @@
4
4
  .wot-theme-dark {
5
5
  @include b(drop-menu) {
6
6
  color: $-dark-color;
7
+
7
8
  @include e(list) {
8
9
  background-color: $-dark-background2;
9
10
  }
@@ -27,6 +28,7 @@
27
28
  text-align: center;
28
29
  background-color: #fff;
29
30
  }
31
+
30
32
  @include e(item) {
31
33
  flex: 1;
32
34
  min-width: 0;
@@ -41,15 +43,18 @@
41
43
  // opacity: 1;
42
44
  // }
43
45
  color: $-color-theme;
46
+
44
47
  :deep(.wd-drop-menu__arrow) {
45
48
  // scale(0.6)
46
- transform: rotate(-180deg);
49
+ transform: rotate(-180deg);
47
50
  transform-origin: center center;
48
51
  }
49
52
  }
53
+
50
54
  @include when(checked) {
51
55
  color: $-color-theme;
52
56
  }
57
+
53
58
  @include when(disabled) {
54
59
  color: $-drop-menu-disabled-color;
55
60
  }
@@ -62,7 +67,7 @@
62
67
  max-width: 100%;
63
68
  justify-content: center;
64
69
  align-items: center;
65
- padding: 0 14rpx;
70
+ padding: 0 8rpx 0 14rpx;
66
71
 
67
72
  &::after {
68
73
  position: absolute;
@@ -92,4 +97,4 @@
92
97
  transition: transform 0.3s;
93
98
  // transform: scale(0.6);
94
99
  }
95
- }
100
+ }
@@ -25,21 +25,22 @@
25
25
  @click="handleClick(index, item)"
26
26
  >
27
27
  <view
28
- :class="`wd-swiper__image ${customImageClass} ${getCustomImageClass(navCurrent, index, list)}`"
28
+ :class="`wd-swiper__image overflow-hidden ${customImageClass} ${getCustomImageClass(navCurrent, index, list)}`"
29
+ :style="{
30
+ borderRadius: imageRadius,
31
+ height: getCustomImageHeight(navCurrent, index, list),
32
+
33
+ width: imgWidth ? addUnit(imgWidth) : undefined,
34
+ }"
29
35
  >
30
36
  <lcb-action-view
31
37
  v-if="action && typeof item === 'object'"
32
- v-bind="item"
38
+ v-bind="item.link"
33
39
  customClass="w-full h-full"
34
40
  >
35
41
  <image
36
42
  :src="isObj(item) ? item[valueKey] : item"
37
43
  class="h-full w-full"
38
- :style="{
39
- height: getCustomImageHeight(navCurrent, index, list),
40
- borderRadius: imageRadius,
41
- width: imgWidth ? addUnit(imgWidth) : undefined,
42
- }"
43
44
  :mode="imageMode"
44
45
  />
45
46
  </lcb-action-view>
@@ -47,11 +48,6 @@
47
48
  v-else
48
49
  :src="isObj(item) ? item[valueKey] : item"
49
50
  class="h-full w-full"
50
- :style="{
51
- height: getCustomImageHeight(navCurrent, index, list),
52
- borderRadius: imageRadius,
53
- width: imgWidth ? addUnit(imgWidth) : undefined,
54
- }"
55
51
  :mode="imageMode"
56
52
  />
57
53
  </view>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "@tplc/wot",
3
3
  "name": "@tplc/wot",
4
- "version": "0.1.22",
4
+ "version": "0.1.24",
5
5
  "keywords": [
6
6
  "wot-design-uni",
7
7
  "国际化",