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/es/CustomFunction.cjs +1 -1
- package/es/CustomFunction.js +9 -8
- package/es/style.css +1 -1
- package/lib/bundle.js +1 -1
- package/lib/bundle.umd.cjs +1 -1
- package/lib/{index-89193973.js → index-5955b737.js} +5 -4
- package/lib/{python-930b6755.js → python-cf7a203d.js} +1 -1
- package/lib/style.css +1 -1
- package/package.json +1 -1
- package/packages/CustomFunction/index.vue +2 -1
package/package.json
CHANGED
|
@@ -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
|
>
|