@cloudbase/weda-ui-mp 3.10.1 → 3.10.2

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.
@@ -1387,6 +1387,9 @@ textarea {
1387
1387
  display: flex;
1388
1388
  align-items: center;
1389
1389
  }
1390
+ .wd-form-input-wrap__content .weui-cell_active:active::after {
1391
+ background-color: unset;
1392
+ }
1390
1393
  .wd-form-input-wrap.wd-input-input-search.template.search-box.color-grey.is-pc-bordered {
1391
1394
  background-color: #f2f2f2;
1392
1395
  border-color: #f2f2f2;
@@ -119,6 +119,9 @@
119
119
  display: flex;
120
120
  align-items: center;
121
121
  }
122
+ .wd-form-input-wrap__content .weui-cell_active:active::after {
123
+ background-color: unset;
124
+ }
122
125
  .wd-form-input-wrap.wd-input-input-search.template.search-box.color-grey.is-pc-bordered {
123
126
  background-color: #f2f2f2;
124
127
  border-color: #f2f2f2;
@@ -83,7 +83,7 @@ Component({
83
83
  * 设置选中菜单项
84
84
  * @param {*} params
85
85
  */
86
- setSelectedInfo(params, isNavigate = false) {
86
+ setSelectedInfo({ params, isNavigate = false } = {}) {
87
87
  const { key, item } = params || {};
88
88
  let selectItem = item;
89
89
  if (key || !item) {
@@ -133,7 +133,7 @@ Component({
133
133
  (menu.isMultiTerminal ? menu.mobileMenuData : menu.menuData) || []
134
134
  );
135
135
  const selectItem = this.findSelectItem(menuData) || {};
136
- this.setSelectedInfo({ item: selectItem });
136
+ this.setSelectedInfo({ params: { item: selectItem } });
137
137
  this.setData({
138
138
  menuData: this.generateMenuData({
139
139
  menuData,
@@ -742,4 +742,8 @@
742
742
  .wd-custom-calendar__days-item.no-select {
743
743
  color: #c1c1c1;
744
744
  cursor: not-allowed;
745
+ }
746
+
747
+ .wd-mp-form-item .wd-form-select_input {
748
+ cursor: unset;
745
749
  }
@@ -90,4 +90,7 @@
90
90
 
91
91
  .wd-mp-tabbar .wd-tabbar__item {
92
92
  cursor: unset;
93
+ }
94
+ .wd-mp-tabbar .wd-tabbar__item-icon {
95
+ display: contents;
93
96
  }
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "miniprogram": "./",
4
4
  "packageManager": "yarn@3.0.2",
5
5
  "dependencies": {},
6
- "version": "3.10.1",
6
+ "version": "3.10.2",
7
7
  "main": "./",
8
8
  "publishConfig": {
9
9
  "access": "public"