@lotics/cli 0.90.0 → 0.91.2
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/render_page.js +4 -4
- package/dist/src/cli.js +18724 -1273
- package/docs/knowledge_docs.md +3 -1
- package/package.json +2 -1
package/dist/render_page.js
CHANGED
|
@@ -58628,7 +58628,7 @@ ${e.toString()}`);
|
|
|
58628
58628
|
const r = grid.get(ri);
|
|
58629
58629
|
if (!r) continue;
|
|
58630
58630
|
const cells = [...r.values()].sort((a, b) => a.column - b.column);
|
|
58631
|
-
rows.push({ index: ri, height: sheet.defaultRowHeight, cells, hidden: false });
|
|
58631
|
+
rows.push({ index: ri + 1, height: sheet.defaultRowHeight, cells, hidden: false });
|
|
58632
58632
|
}
|
|
58633
58633
|
sheet.rows = rows;
|
|
58634
58634
|
sheet.totalRowCount = maxRow + 1;
|
|
@@ -58636,12 +58636,12 @@ ${e.toString()}`);
|
|
|
58636
58636
|
return sheet;
|
|
58637
58637
|
}
|
|
58638
58638
|
function textCell(column, text) {
|
|
58639
|
-
return { column, value: text, typedValue: text, content: { type: "plain", text }, style: {} };
|
|
58639
|
+
return { column: column + 1, value: text, typedValue: text, content: { type: "plain", text }, style: {} };
|
|
58640
58640
|
}
|
|
58641
58641
|
function numberCell(column, num2, numFmt) {
|
|
58642
58642
|
const value = Number.isFinite(num2) ? String(num2) : "";
|
|
58643
58643
|
return {
|
|
58644
|
-
column,
|
|
58644
|
+
column: column + 1,
|
|
58645
58645
|
value,
|
|
58646
58646
|
rawValue: num2,
|
|
58647
58647
|
typedValue: num2,
|
|
@@ -58655,7 +58655,7 @@ ${e.toString()}`);
|
|
|
58655
58655
|
const kind = body[6];
|
|
58656
58656
|
if (kind === 1) {
|
|
58657
58657
|
const b = body[8] !== 0;
|
|
58658
|
-
return { column, value: b ? "TRUE" : "FALSE", typedValue: b, content: { type: "plain", text: b ? "TRUE" : "FALSE" }, style: {} };
|
|
58658
|
+
return { column: column + 1, value: b ? "TRUE" : "FALSE", typedValue: b, content: { type: "plain", text: b ? "TRUE" : "FALSE" }, style: {} };
|
|
58659
58659
|
}
|
|
58660
58660
|
return null;
|
|
58661
58661
|
}
|