st-comp 0.0.206 → 0.0.207
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 +6 -6
- package/es/FactorWarning.cjs +1 -1
- package/es/FactorWarning.js +4 -4
- package/es/KlineBasic.cjs +1 -1
- package/es/KlineBasic.js +118 -118
- package/es/VarietyTextCopy.cjs +3 -3
- package/es/VarietyTextCopy.js +4 -4
- package/es/style.css +1 -1
- package/lib/bundle.js +1 -1
- package/lib/bundle.umd.cjs +1 -1
- package/lib/{index-66200fba.js → index-f27d8c7a.js} +7 -7
- package/lib/{python-3709061e.js → python-c345f0e2.js} +1 -1
- package/lib/style.css +1 -1
- package/package.json +1 -1
- package/packages/KlineBasic/components/KlineTips/index.vue +5 -5
|
@@ -67495,14 +67495,14 @@ const w1t = { class: "kline-tips" }, C1t = {
|
|
|
67495
67495
|
const { data: s, activeIndex: a } = i;
|
|
67496
67496
|
if (s.data && s.data[a]) {
|
|
67497
67497
|
const l = s.data[a], u = [
|
|
67498
|
-
{ label: "开", value:
|
|
67499
|
-
{ label: "高", value:
|
|
67500
|
-
{ label: "低", value:
|
|
67501
|
-
{ label: "收", value:
|
|
67498
|
+
{ label: "开", value: l[0] },
|
|
67499
|
+
{ label: "高", value: l[3] },
|
|
67500
|
+
{ label: "低", value: l[2] },
|
|
67501
|
+
{ label: "收", value: l[1] }
|
|
67502
67502
|
];
|
|
67503
67503
|
l[4] !== null && u.push({ label: "额", value: t(l[4]) });
|
|
67504
67504
|
let c;
|
|
67505
|
-
return l[6] > 0 ? c = "red" : l[6] < 0 && (c = "green"), u.push({ label: "涨跌", value: `${
|
|
67505
|
+
return l[6] > 0 ? c = "red" : l[6] < 0 && (c = "green"), u.push({ label: "涨跌", value: `${l[6]}%`, color: c }), u;
|
|
67506
67506
|
}
|
|
67507
67507
|
return [];
|
|
67508
67508
|
}), o = ee(() => {
|
|
@@ -67515,7 +67515,7 @@ const w1t = { class: "kline-tips" }, C1t = {
|
|
|
67515
67515
|
ie(XE, { data: o.value }, null, 8, ["data"])
|
|
67516
67516
|
]));
|
|
67517
67517
|
}
|
|
67518
|
-
}, x1t = /* @__PURE__ */ qn(C1t, [["__scopeId", "data-v-
|
|
67518
|
+
}, x1t = /* @__PURE__ */ qn(C1t, [["__scopeId", "data-v-b1a144a9"]]);
|
|
67519
67519
|
const S1t = { class: "klineSub" }, D1t = { class: "klineSub-tips" }, N1t = {
|
|
67520
67520
|
key: 0,
|
|
67521
67521
|
class: "klineSub-tips-select"
|
|
@@ -246596,7 +246596,7 @@ K0e({
|
|
|
246596
246596
|
extensions: [".py", ".rpy", ".pyw", ".cpy", ".gyp", ".gypi"],
|
|
246597
246597
|
aliases: ["Python", "py"],
|
|
246598
246598
|
firstLine: "^#!/.*\\bpython[0-9.-]*\\b",
|
|
246599
|
-
loader: () => import("./python-
|
|
246599
|
+
loader: () => import("./python-c345f0e2.js")
|
|
246600
246600
|
});
|
|
246601
246601
|
/*!-----------------------------------------------------------------------------
|
|
246602
246602
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|