st-comp 0.0.244 → 0.0.246
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/ConfigProvider.cjs +1 -1
- package/es/ConfigProvider.js +1 -1
- package/es/CustomFunction.cjs +2 -2
- package/es/CustomFunction.js +262 -263
- package/es/FactorWarning.cjs +1 -1
- package/es/FactorWarning.js +1 -1
- package/es/Kline.cjs +1 -1
- package/es/Kline.js +1 -1
- package/es/KlineBasic.cjs +1 -1
- package/es/KlineBasic.js +574 -606
- package/es/KlineNew.cjs +1 -1
- package/es/KlineNew.js +1 -1
- package/es/KlinePlus.cjs +1 -1
- package/es/KlinePlus.js +1 -1
- package/es/MonacoEditor.cjs +1 -1
- package/es/MonacoEditor.js +3 -3
- package/es/Pie.cjs +1 -1
- package/es/Pie.js +1 -1
- package/es/User.cjs +1 -1
- package/es/User.js +1 -1
- package/es/VarSelectDialog.cjs +1 -1
- package/es/VarSelectDialog.js +2 -2
- package/es/VarietyAutoComplete.cjs +1 -1
- package/es/VarietyAutoComplete.js +1 -1
- package/es/VarietySearch.cjs +20 -20
- package/es/VarietySearch.js +2995 -3000
- package/es/{VarietySelect-031bf077.cjs → VarietySelect-2fd501da.cjs} +1 -1
- package/es/{VarietySelect-ae0c48b2.js → VarietySelect-5a9dd50b.js} +1 -1
- package/es/{index-1f939868.cjs → index-2375023e.cjs} +2 -2
- package/es/{index-edabe380.js → index-7ed0999e.js} +5487 -5574
- package/es/{index-2c456130.cjs → index-8901a38c.cjs} +40 -40
- package/es/{index-4b01552e.js → index-ac98a4d8.js} +3 -3
- package/es/{python-7ce6f0b1.js → python-a914569a.js} +3 -3
- package/es/{python-c8abd4f5.cjs → python-c67c8901.cjs} +1 -1
- package/es/style.css +1 -1
- package/lib/bundle.js +1 -1
- package/lib/bundle.umd.cjs +223 -223
- package/lib/{index-200db55b.js → index-2a325d42.js} +34655 -34779
- package/lib/{python-9540022d.js → python-eb65d93b.js} +1 -1
- package/lib/style.css +1 -1
- package/package.json +1 -1
- package/packages/CustomFunction/index.vue +2 -4
- package/packages/KlineBasic/index.vue +518 -497
- package/packages/VarietySearch/components/CompositeOrder/index.vue +2 -4
- package/packages/VarietySearch/components/FactorScreen/index.vue +5 -7
- package/packages/VarietySearch/index.vue +4 -6
- package/src/pages/KlineBasic/api.js +7 -4
- package/src/pages/KlineBasic/index.vue +346 -56
- package/src/pages/VarietySearch/index.vue +7 -2
package/package.json
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
<script setup>
|
|
2
|
-
import { actionStat } from "st-func";
|
|
3
2
|
import { ref, inject, onMounted } from "vue";
|
|
4
3
|
import { Edit, DocumentCopy, Delete } from "@element-plus/icons-vue";
|
|
5
4
|
import ManageDialog from "./components/ManageDialog.vue";
|
|
@@ -7,11 +6,10 @@ import ManageDialog from "./components/ManageDialog.vue";
|
|
|
7
6
|
const { request } = inject("stConfig"); // 组件库全局配置
|
|
8
7
|
const ManageDialogRef = ref(null);
|
|
9
8
|
|
|
10
|
-
const emit = defineEmits(["insert"]);
|
|
9
|
+
const emit = defineEmits(["insert", "actionState"]);
|
|
11
10
|
const props = defineProps({
|
|
12
11
|
size: { type: String, default: "small" },
|
|
13
12
|
selectWidth: { type: String, default: "200px" },
|
|
14
|
-
pageName: { type: String, default: "" },
|
|
15
13
|
});
|
|
16
14
|
|
|
17
15
|
const customFunctionId = ref(null);
|
|
@@ -51,7 +49,7 @@ const handleCustomFuncManage = async (action, item) => {
|
|
|
51
49
|
switch (action) {
|
|
52
50
|
case "open": {
|
|
53
51
|
ManageDialogRef.value.open();
|
|
54
|
-
|
|
52
|
+
emit("actionState", "因子筛选", "函数管理");
|
|
55
53
|
break;
|
|
56
54
|
}
|
|
57
55
|
case "copy": {
|