fluxflow-cli 1.7.4 → 1.7.5
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/dist/fluxflow.js +2 -2
- package/package.json +1 -1
package/dist/fluxflow.js
CHANGED
|
@@ -136,7 +136,7 @@ var init_ChatLayout = __esm({
|
|
|
136
136
|
if (content.startsWith("\\text{") && content.endsWith("}")) {
|
|
137
137
|
content = content.slice(6, -1);
|
|
138
138
|
}
|
|
139
|
-
const mathContent = content.replace(/\\multiply/g, "\xD7").replace(/\\mul/g, "\xD7").replace(/\\div/g, "\xF7");
|
|
139
|
+
const mathContent = content.replace(/\\multiply/g, "\xD7").replace(/\\mul/g, "\xD7").replace(/\\times /g, "\xD7").replace(/\\div /g, "\xF7").replace(/\\cdot /g, "\u22C5").replace(/\\infty/g, "\u221E").replace(/\\pm/g, "\xB1").replace(/\\leq/g, "\u2264").replace(/\\geq/g, "\u2265").replace(/\\neq/g, "\u2260").replace(/\\left/g, "<").replace(/\\right/g, ">").replace(/\\left\(/g, "(").replace(/\\right\)/g, ")").replace(/\\sqrt/g, "\u221A").replace(/\\sqrt\[3\]/g, "\u221B").replace(/\\alpha/g, "\u03B1").replace(/\\beta/g, "\u03B2").replace(/\\theta/g, "\u03B8").replace(/\\phi/g, "\u03C6").replace(/\\delta/g, "\u03B4").replace(/\\gamma/g, "\u03B3").replace(/\\sigma/g, "\u03C3").replace(/\\pi/g, "\u03C0").replace(/\\sum/g, "\u03A3").replace(/\\lim/g, "lim").replace(/\\integral/g, "\u222B").replace(/\\diff/g, "d").replace(/\\partial/g, "\u2202").replace(/\\frac/g, "/");
|
|
140
140
|
return /* @__PURE__ */ React2.createElement(Text2, { key: j, color: "white", backgroundColor: "#4c0099", bold: true, italic: true }, " ", mathContent, " ");
|
|
141
141
|
}
|
|
142
142
|
if (part.startsWith("[") && (part.includes("](") || part.includes("] ("))) {
|
|
@@ -4581,7 +4581,7 @@ var init_app = __esm({
|
|
|
4581
4581
|
init_setup();
|
|
4582
4582
|
SESSION_START_TIME = Date.now();
|
|
4583
4583
|
CHANGELOG_URL = "https://fluxflow-cli.onrender.com/changelog.html";
|
|
4584
|
-
versionFluxflow = "1.7.
|
|
4584
|
+
versionFluxflow = "1.7.5";
|
|
4585
4585
|
updatedOn = "2026-05-03";
|
|
4586
4586
|
ResolutionModal = ({ data, onResolve, onEdit }) => /* @__PURE__ */ React10.createElement(Box10, { flexDirection: "column", borderStyle: "round", borderColor: "magenta", paddingX: 2, paddingY: 1, width: "100%" }, /* @__PURE__ */ React10.createElement(Text10, { color: "magenta", bold: true, underline: true }, "\u{1F7E3} STEERING HINT RESOLUTION"), /* @__PURE__ */ React10.createElement(Text10, { marginTop: 1 }, "The agent already finished the task (turn: finish) before your hint was consumed."), /* @__PURE__ */ React10.createElement(Box10, { marginTop: 1, backgroundColor: "#222", paddingX: 1, width: "100%" }, /* @__PURE__ */ React10.createElement(Text10, { italic: true, color: "gray" }, '"', data, '"')), /* @__PURE__ */ React10.createElement(Box10, { marginTop: 1 }, /* @__PURE__ */ React10.createElement(Text10, { color: "cyan" }, "How would you like to proceed?")), /* @__PURE__ */ React10.createElement(Box10, { marginTop: 1 }, /* @__PURE__ */ React10.createElement(
|
|
4587
4587
|
CommandMenu,
|