@tokscale/cli 1.2.6 → 1.2.7

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.
@@ -11,7 +11,7 @@ const TOTAL_COL_WIDTH = 14;
11
11
  const COST_COL_WIDTH = 12;
12
12
  const METRIC_COLUMNS_WIDTH_FULL = INPUT_COL_WIDTH + OUTPUT_COL_WIDTH + CACHE_READ_COL_WIDTH + CACHE_WRITE_COL_WIDTH + TOTAL_COL_WIDTH + COST_COL_WIDTH;
13
13
  const METRIC_COLUMNS_WIDTH_NARROW = TOTAL_COL_WIDTH + COST_COL_WIDTH;
14
- const SIDE_PADDING = 0;
14
+ const SIDE_PADDING = 2;
15
15
  const MIN_DATE_COLUMN = 14;
16
16
  export function DailyView(props) {
17
17
  const isNarrowTerminal = () => isNarrow(props.width);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tokscale/cli",
3
- "version": "1.2.6",
3
+ "version": "1.2.7",
4
4
  "description": "A high-performance CLI tool and visualization dashboard for tracking AI coding assistant token usage and costs across multiple platforms.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -31,7 +31,7 @@
31
31
  "@opentui/core": "0.1.60",
32
32
  "@opentui/solid": "^0.1.60",
33
33
  "@resvg/resvg-js": "^2.6.2",
34
- "@tokscale/core": "1.2.6",
34
+ "@tokscale/core": "1.2.7",
35
35
  "cli-table3": "^0.6.5",
36
36
  "clipboardy": "^5.0.2",
37
37
  "commander": "^14.0.2",
@@ -13,7 +13,7 @@ const TOTAL_COL_WIDTH = 14;
13
13
  const COST_COL_WIDTH = 12;
14
14
  const METRIC_COLUMNS_WIDTH_FULL = INPUT_COL_WIDTH + OUTPUT_COL_WIDTH + CACHE_READ_COL_WIDTH + CACHE_WRITE_COL_WIDTH + TOTAL_COL_WIDTH + COST_COL_WIDTH;
15
15
  const METRIC_COLUMNS_WIDTH_NARROW = TOTAL_COL_WIDTH + COST_COL_WIDTH;
16
- const SIDE_PADDING = 0;
16
+ const SIDE_PADDING = 2;
17
17
  const MIN_DATE_COLUMN = 14;
18
18
 
19
19
  interface DailyViewProps {