st-comp 0.0.184 → 0.0.185

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "st-comp",
3
3
  "public": true,
4
- "version": "0.0.184",
4
+ "version": "0.0.185",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",
@@ -94,7 +94,7 @@ const handleSubmit = async () => {
94
94
  // 自定义函数: 插入
95
95
  const handleInsert = () => {
96
96
  if (!customFunctionName.value) return ElMessage.error("请先选择自定义函数后, 再执行插入");
97
- emit("insert", customFunctionName.value);
97
+ emit("insert", ` ${customFunctionName.value}`);
98
98
  };
99
99
 
100
100
  // 变量选择器: 打开
@@ -133,6 +133,7 @@ watch(
133
133
  :size="size"
134
134
  placeholder="自定义函数"
135
135
  clearable
136
+ filterable
136
137
  @change="handleChange"
137
138
  :style="{ width: selectWidth }"
138
139
  >