@kengic/uni 0.6.3-beta.18 → 0.6.3-beta.19

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.
@@ -128,13 +128,21 @@
128
128
  nextTick().then(() => (isFocusMap.value[key] = true));
129
129
  }
130
130
 
131
- function onDevcodInputValueBlur() {
131
+ /**
132
+ * 工作站的输入框失去焦点.
133
+ */
134
+ async function onDevcodInputValueBlur() {
132
135
  devcodPlaceholderStyle.value = 'color: #333';
133
- findDevmstByInputValue();
136
+
137
+ await nextTick();
138
+ await findDevmstByInputValue();
134
139
  }
135
140
 
141
+ /**
142
+ * 工作站的输入框聚焦.
143
+ */
136
144
  function onDevcodInputValueFocus() {
137
- devcodPlaceholderStyle.value = 'color: transparent';
145
+ devcodPlaceholderStyle.value = 'color: #999';
138
146
  }
139
147
 
140
148
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kengic/uni",
3
- "version": "0.6.3-beta.18",
3
+ "version": "0.6.3-beta.19",
4
4
  "scripts": {
5
5
  "build": "npm run use-node && rimraf dist && vue-tsc && vite build",
6
6
  "------ -------------------------------------------": "",