termcast 1.3.53 → 1.3.54
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/app.d.ts.map +1 -1
- package/dist/app.js +30 -5
- package/dist/app.js.map +1 -1
- package/dist/components/candle-chart.d.ts +110 -0
- package/dist/components/candle-chart.d.ts.map +1 -0
- package/dist/components/candle-chart.js +295 -0
- package/dist/components/candle-chart.js.map +1 -0
- package/dist/components/table.d.ts +2 -0
- package/dist/components/table.d.ts.map +1 -1
- package/dist/components/table.js +41 -4
- package/dist/components/table.js.map +1 -1
- package/dist/examples/simple-candle-chart-data.d.ts +9064 -0
- package/dist/examples/simple-candle-chart-data.d.ts.map +1 -0
- package/dist/examples/simple-candle-chart-data.js +12683 -0
- package/dist/examples/simple-candle-chart-data.js.map +1 -0
- package/dist/examples/simple-candle-chart.d.ts +2 -0
- package/dist/examples/simple-candle-chart.d.ts.map +1 -0
- package/dist/examples/simple-candle-chart.js +125 -0
- package/dist/examples/simple-candle-chart.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/app.tsx +35 -5
- package/src/components/candle-chart.tsx +410 -0
- package/src/components/table.tsx +46 -4
- package/src/examples/simple-candle-chart-data.ts +12683 -0
- package/src/examples/simple-candle-chart.tsx +363 -0
- package/src/examples/simple-candle-chart.vitest.tsx +269 -0
- package/src/examples/simple-detail-table.vitest.tsx +2 -2
- package/src/examples/simple-table-wrap.vitest.tsx +19 -19
- package/src/examples/table-flex-grow.vitest.tsx +8 -8
- package/src/index.tsx +7 -0
|
@@ -35,25 +35,20 @@ test('wrapText table shows full prose across multiple lines', async () => {
|
|
|
35
35
|
|
|
36
36
|
Wrapping Table
|
|
37
37
|
|
|
38
|
-
Feature
|
|
39
|
-
OAuth Proxy
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
standalone binaries that embed the
|
|
53
|
-
package.json and all command
|
|
54
|
-
components. No filesystem paths are
|
|
55
|
-
hardcoded, making the binary fully
|
|
56
|
-
portable.
|
|
38
|
+
Feature Description
|
|
39
|
+
OAuth Proxy Handles the full OAuth authorization code flow
|
|
40
|
+
including PKCE verification, token exchange, and
|
|
41
|
+
refresh. The proxy keeps client secrets server-
|
|
42
|
+
side so CLI tools never need to store them
|
|
43
|
+
locally.
|
|
44
|
+
Hot Reload Watches source files for changes and rebuilds the
|
|
45
|
+
extension bundle automatically. The TUI updates
|
|
46
|
+
in place without losing navigation state or
|
|
47
|
+
scroll position.
|
|
48
|
+
Compiled Mode Extensions can be compiled into standalone
|
|
49
|
+
binaries that embed the package.json and all
|
|
50
|
+
command components. No filesystem paths are
|
|
51
|
+
hardcoded, making the binary fully portable.
|
|
57
52
|
|
|
58
53
|
Non-wrapping Table (default)
|
|
59
54
|
|
|
@@ -76,6 +71,11 @@ test('wrapText table shows full prose across multiple lines', async () => {
|
|
|
76
71
|
|
|
77
72
|
|
|
78
73
|
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
|
|
79
79
|
|
|
80
80
|
|
|
81
81
|
|
|
@@ -40,18 +40,18 @@ test('flexGrow table fills remaining space next to fixed-width label', async ()
|
|
|
40
40
|
|
|
41
41
|
With flexGrow=1 + wrapText (fills remaining space)
|
|
42
42
|
|
|
43
|
-
Config: Key
|
|
44
|
-
version
|
|
45
|
-
license
|
|
46
|
-
author
|
|
43
|
+
Config: Key Value
|
|
44
|
+
version 2.1.0
|
|
45
|
+
license MIT
|
|
46
|
+
author termcast
|
|
47
47
|
|
|
48
48
|
|
|
49
49
|
Width=auto + wrapText (content-sized, no stretch)
|
|
50
50
|
|
|
51
|
-
Config:
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
51
|
+
Config: Key Value
|
|
52
|
+
version 2.1.0
|
|
53
|
+
license MIT
|
|
54
|
+
author termcast
|
|
55
55
|
|
|
56
56
|
|
|
57
57
|
With flexGrow=1 no wrapText (column-based)
|
package/src/index.tsx
CHANGED
|
@@ -86,6 +86,13 @@ export type {
|
|
|
86
86
|
BarGraphSeriesProps,
|
|
87
87
|
} from 'termcast/src/components/bar-graph'
|
|
88
88
|
|
|
89
|
+
// Core UI Components - CandleChart
|
|
90
|
+
export { CandleChart } from 'termcast/src/components/candle-chart'
|
|
91
|
+
export type {
|
|
92
|
+
CandleChartProps,
|
|
93
|
+
CandleData,
|
|
94
|
+
} from 'termcast/src/components/candle-chart'
|
|
95
|
+
|
|
89
96
|
// Core UI Components - CalendarHeatmap
|
|
90
97
|
export { CalendarHeatmap, Heatmap } from 'termcast/src/components/heatmap'
|
|
91
98
|
export type {
|