termcast 1.6.0 → 1.7.0
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/components/bar-chart.d.ts.map +1 -1
- package/dist/components/bar-chart.js +14 -3
- package/dist/components/bar-chart.js.map +1 -1
- package/dist/components/bar-graph.d.ts.map +1 -1
- package/dist/components/bar-graph.js +21 -3
- package/dist/components/bar-graph.js.map +1 -1
- package/dist/components/candle-chart.d.ts +15 -0
- package/dist/components/candle-chart.d.ts.map +1 -1
- package/dist/components/candle-chart.js +41 -3
- package/dist/components/candle-chart.js.map +1 -1
- package/dist/components/chart-tooltip.d.ts +83 -0
- package/dist/components/chart-tooltip.d.ts.map +1 -0
- package/dist/components/chart-tooltip.js +127 -0
- package/dist/components/chart-tooltip.js.map +1 -0
- package/dist/components/dotted-line-graph.d.ts +11 -0
- package/dist/components/dotted-line-graph.d.ts.map +1 -1
- package/dist/components/dotted-line-graph.js +43 -2
- package/dist/components/dotted-line-graph.js.map +1 -1
- package/dist/components/graph.d.ts +11 -0
- package/dist/components/graph.d.ts.map +1 -1
- package/dist/components/graph.js +53 -4
- package/dist/components/graph.js.map +1 -1
- package/dist/components/horizontal-bar-graph.d.ts.map +1 -1
- package/dist/components/horizontal-bar-graph.js +16 -5
- package/dist/components/horizontal-bar-graph.js.map +1 -1
- package/dist/components/list.d.ts.map +1 -1
- package/dist/components/list.js +1 -3
- package/dist/components/list.js.map +1 -1
- package/dist/examples/chart-tooltips.d.ts +2 -0
- package/dist/examples/chart-tooltips.d.ts.map +1 -0
- package/dist/examples/chart-tooltips.js +16 -0
- package/dist/examples/chart-tooltips.js.map +1 -0
- package/package.json +1 -1
- package/src/components/bar-chart.tsx +23 -3
- package/src/components/bar-graph.tsx +23 -4
- package/src/components/candle-chart.tsx +63 -16
- package/src/components/chart-tooltip.tsx +191 -0
- package/src/components/dotted-line-graph.tsx +49 -3
- package/src/components/graph.tsx +76 -18
- package/src/components/horizontal-bar-graph.tsx +24 -4
- package/src/components/list.tsx +1 -9
- package/src/examples/action-shortcut.vitest.tsx +1 -1
- package/src/examples/bar-graph-weekly.vitest.tsx +2 -2
- package/src/examples/chart-tooltips.tsx +54 -0
- package/src/examples/form-basic.vitest.tsx +8 -8
- package/src/examples/github.vitest.tsx +3 -3
- package/src/examples/graph-bar-chart.vitest.tsx +4 -4
- package/src/examples/graph-polymarket.vitest.tsx +2 -2
- package/src/examples/graph-row.vitest.tsx +4 -4
- package/src/examples/list-detail-height-ratchet.vitest.tsx +3 -3
- package/src/examples/list-detail-metadata.vitest.tsx +3 -3
- package/src/examples/list-fetch-data.vitest.tsx +3 -3
- package/src/examples/list-item-accessories.vitest.tsx +2 -2
- package/src/examples/list-no-actions.vitest.tsx +1 -1
- package/src/examples/list-spacing-mode.vitest.tsx +3 -3
- package/src/examples/list-with-detail.vitest.tsx +3 -3
- package/src/examples/list-with-dropdown.vitest.tsx +4 -4
- package/src/examples/list-with-sections.vitest.tsx +19 -19
- package/src/examples/simple-candle-chart.vitest.tsx +4 -4
- package/src/examples/simple-grid.vitest.tsx +13 -13
- package/src/examples/simple-navigation.vitest.tsx +14 -14
- package/src/examples/simple-progress-bar.vitest.tsx +1 -1
- package/src/examples/swift-extension.vitest.tsx +2 -2
- package/src/examples/toast-action.vitest.tsx +2 -2
|
@@ -88,7 +88,7 @@ test.skipIf(!extensionExists)('github extension shows command list on launch', a
|
|
|
88
88
|
|
|
89
89
|
|
|
90
90
|
|
|
91
|
-
↵ run command ↑↓ navigate ^k actions
|
|
91
|
+
↵ run command ↑↓ navigate ^k actions powered by termcast.app
|
|
92
92
|
|
|
93
93
|
|
|
94
94
|
|
|
@@ -137,7 +137,7 @@ test.skipIf(!extensionExists)('github extension can navigate commands', async ()
|
|
|
137
137
|
|
|
138
138
|
|
|
139
139
|
|
|
140
|
-
↵ run command ↑↓ navigate ^k actions
|
|
140
|
+
↵ run command ↑↓ navigate ^k actions powered by termcast.app
|
|
141
141
|
|
|
142
142
|
|
|
143
143
|
|
|
@@ -234,7 +234,7 @@ test.skipIf(!extensionExists)('github extension can search commands', async () =
|
|
|
234
234
|
|
|
235
235
|
|
|
236
236
|
|
|
237
|
-
↵ run command ↑↓ navigate ^k actions
|
|
237
|
+
↵ run command ↑↓ navigate ^k actions powered by termcast.app
|
|
238
238
|
|
|
239
239
|
|
|
240
240
|
|
|
@@ -55,7 +55,7 @@ test('initial render shows bar chart for Monthly Budget', async () => {
|
|
|
55
55
|
│
|
|
56
56
|
│
|
|
57
57
|
│
|
|
58
|
-
↵ open detail ↑↓ navigate ^k actions
|
|
58
|
+
↵ open detail ↑↓ navigate ^k actions │
|
|
59
59
|
|
|
60
60
|
"
|
|
61
61
|
`)
|
|
@@ -112,7 +112,7 @@ test('navigate to Market Share - dominant + tiny segments', async () => {
|
|
|
112
112
|
│
|
|
113
113
|
│
|
|
114
114
|
│
|
|
115
|
-
↵ open detail ↑↓ navigate ^k actions
|
|
115
|
+
↵ open detail ↑↓ navigate ^k actions │
|
|
116
116
|
|
|
117
117
|
"
|
|
118
118
|
`)
|
|
@@ -168,7 +168,7 @@ test('navigate to Equal Distribution - 10 segments', async () => {
|
|
|
168
168
|
│
|
|
169
169
|
│
|
|
170
170
|
│
|
|
171
|
-
↵ open detail ↑↓ navigate ^k actions
|
|
171
|
+
↵ open detail ↑↓ navigate ^k actions │
|
|
172
172
|
|
|
173
173
|
"
|
|
174
174
|
`)
|
|
@@ -224,7 +224,7 @@ test('navigate to Stress Test - 20 segments', async () => {
|
|
|
224
224
|
│
|
|
225
225
|
│
|
|
226
226
|
│
|
|
227
|
-
↵ open detail ↑↓ navigate ^k actions
|
|
227
|
+
↵ open detail ↑↓ navigate ^k actions │
|
|
228
228
|
|
|
229
229
|
"
|
|
230
230
|
`)
|
|
@@ -53,7 +53,7 @@ test('polymarket list with graph detail renders correctly', async () => {
|
|
|
53
53
|
│ Probability (30d)
|
|
54
54
|
│
|
|
55
55
|
│
|
|
56
|
-
↵ buy yes ↑↓ navigate ^k actions
|
|
56
|
+
↵ buy yes ↑↓ navigate ^k actions │
|
|
57
57
|
|
|
58
58
|
"
|
|
59
59
|
`)
|
|
@@ -116,7 +116,7 @@ test('navigating to different market updates the graph', async () => {
|
|
|
116
116
|
│ Probability (30d)
|
|
117
117
|
│
|
|
118
118
|
│
|
|
119
|
-
↵ buy yes ↑↓ navigate ^k actions
|
|
119
|
+
↵ buy yes ↑↓ navigate ^k actions │
|
|
120
120
|
|
|
121
121
|
"
|
|
122
122
|
`)
|
|
@@ -53,7 +53,7 @@ test('side detail shows two graphs in a row', async () => {
|
|
|
53
53
|
│ ───────────────────────────────────────────
|
|
54
54
|
│
|
|
55
55
|
│ CPU Peak: 90%
|
|
56
|
-
↵ open detail ↑↓ navigate ^k actions
|
|
56
|
+
↵ open detail ↑↓ navigate ^k actions │ ▼
|
|
57
57
|
|
|
58
58
|
"
|
|
59
59
|
`)
|
|
@@ -172,7 +172,7 @@ test('esc returns from detail to list', async () => {
|
|
|
172
172
|
│ ───────────────────────────────────────────
|
|
173
173
|
│
|
|
174
174
|
│ CPU Peak: 90%
|
|
175
|
-
↵ open detail ↑↓ navigate ^k actions
|
|
175
|
+
↵ open detail ↑↓ navigate ^k actions │ ▼
|
|
176
176
|
|
|
177
177
|
"
|
|
178
178
|
`)
|
|
@@ -229,7 +229,7 @@ test('sparse data with zeros shows baseline', async () => {
|
|
|
229
229
|
│ ───────────────────────────────────────────
|
|
230
230
|
│
|
|
231
231
|
│ Zeros: 12 of 20
|
|
232
|
-
↵ open detail ↑↓ navigate ^k actions
|
|
232
|
+
↵ open detail ↑↓ navigate ^k actions │ ▼
|
|
233
233
|
|
|
234
234
|
"
|
|
235
235
|
`)
|
|
@@ -285,7 +285,7 @@ test('navigate to striped pair', async () => {
|
|
|
285
285
|
│ ───────────────────────────────────────────
|
|
286
286
|
│
|
|
287
287
|
│ Revenue: $75k
|
|
288
|
-
↵ open detail ↑↓ navigate ^k actions
|
|
288
|
+
↵ open detail ↑↓ navigate ^k actions │ ▼
|
|
289
289
|
|
|
290
290
|
"
|
|
291
291
|
`)
|
|
@@ -62,7 +62,7 @@ test('detail panel height ratchet prevents footer layout shift', async () => {
|
|
|
62
62
|
Item 18 short │
|
|
63
63
|
│
|
|
64
64
|
│
|
|
65
|
-
↑↓ navigate ^k actions
|
|
65
|
+
↑↓ navigate ^k actions │
|
|
66
66
|
|
|
67
67
|
"
|
|
68
68
|
`)
|
|
@@ -104,7 +104,7 @@ test('detail panel height ratchet prevents footer layout shift', async () => {
|
|
|
104
104
|
Item 18 short │ 1.
|
|
105
105
|
│ Line 10 of detail content for
|
|
106
106
|
│ item 1.
|
|
107
|
-
↑↓ navigate ^k actions
|
|
107
|
+
↑↓ navigate ^k actions │ Line 11 of detail content for ▼
|
|
108
108
|
|
|
109
109
|
"
|
|
110
110
|
`)
|
|
@@ -147,7 +147,7 @@ test('detail panel height ratchet prevents footer layout shift', async () => {
|
|
|
147
147
|
Item 18 short │
|
|
148
148
|
│
|
|
149
149
|
│
|
|
150
|
-
↑↓ navigate ^k actions
|
|
150
|
+
↑↓ navigate ^k actions │
|
|
151
151
|
|
|
152
152
|
"
|
|
153
153
|
`)
|
|
@@ -69,7 +69,7 @@ test('list detail metadata label renders short values in row layout (key: value)
|
|
|
69
69
|
│
|
|
70
70
|
│
|
|
71
71
|
│
|
|
72
|
-
↑↓ navigate ^k actions
|
|
72
|
+
↑↓ navigate ^k actions │
|
|
73
73
|
|
|
74
74
|
"
|
|
75
75
|
`)
|
|
@@ -127,7 +127,7 @@ test('list detail metadata renders long values in column layout (key on one line
|
|
|
127
127
|
│
|
|
128
128
|
│
|
|
129
129
|
│
|
|
130
|
-
↑↓ navigate ^k actions
|
|
130
|
+
↑↓ navigate ^k actions │
|
|
131
131
|
|
|
132
132
|
"
|
|
133
133
|
`)
|
|
@@ -187,7 +187,7 @@ test('list detail metadata renders colored values and tag lists', async () => {
|
|
|
187
187
|
│
|
|
188
188
|
│
|
|
189
189
|
│
|
|
190
|
-
↑↓ navigate ^k actions
|
|
190
|
+
↑↓ navigate ^k actions │
|
|
191
191
|
|
|
192
192
|
"
|
|
193
193
|
`)
|
|
@@ -49,7 +49,7 @@ test('list shows initial items after fetch', async () => {
|
|
|
49
49
|
|
|
50
50
|
|
|
51
51
|
|
|
52
|
-
↑↓ navigate ^k actions
|
|
52
|
+
↑↓ navigate ^k actions
|
|
53
53
|
|
|
54
54
|
|
|
55
55
|
|
|
@@ -82,7 +82,7 @@ test('list shows initial items after fetch', async () => {
|
|
|
82
82
|
|
|
83
83
|
|
|
84
84
|
|
|
85
|
-
↑↓ navigate ^k actions
|
|
85
|
+
↑↓ navigate ^k actions
|
|
86
86
|
|
|
87
87
|
|
|
88
88
|
|
|
@@ -114,7 +114,7 @@ test('list shows initial items after fetch', async () => {
|
|
|
114
114
|
|
|
115
115
|
|
|
116
116
|
|
|
117
|
-
↑↓ navigate ^k actions
|
|
117
|
+
↑↓ navigate ^k actions
|
|
118
118
|
|
|
119
119
|
|
|
120
120
|
|
|
@@ -46,7 +46,7 @@ test('shows all inline item features: icon, title, subtitle, text/tag/date acces
|
|
|
46
46
|
● All Colored red blue 1w
|
|
47
47
|
|
|
48
48
|
|
|
49
|
-
↑↓ navigate ^k actions
|
|
49
|
+
↑↓ navigate ^k actions powered by termcast.app
|
|
50
50
|
|
|
51
51
|
|
|
52
52
|
|
|
@@ -104,7 +104,7 @@ test('navigation through all item types', async () => {
|
|
|
104
104
|
● All Colored red blue 1w
|
|
105
105
|
|
|
106
106
|
|
|
107
|
-
↑↓ navigate ^k actions
|
|
107
|
+
↑↓ navigate ^k actions powered by termcast.app
|
|
108
108
|
|
|
109
109
|
|
|
110
110
|
|
|
@@ -50,7 +50,7 @@ describe('spacingMode default', () => {
|
|
|
50
50
|
|
|
51
51
|
|
|
52
52
|
|
|
53
|
-
↑↓ navigate ^k actions
|
|
53
|
+
↑↓ navigate ^k actions
|
|
54
54
|
"
|
|
55
55
|
`)
|
|
56
56
|
|
|
@@ -106,7 +106,7 @@ describe('spacingMode relaxed', () => {
|
|
|
106
106
|
No Subtitle
|
|
107
107
|
|
|
108
108
|
|
|
109
|
-
↑↓ navigate ^k actions
|
|
109
|
+
↑↓ navigate ^k actions
|
|
110
110
|
|
|
111
111
|
"
|
|
112
112
|
`)
|
|
@@ -147,7 +147,7 @@ describe('spacingMode relaxed', () => {
|
|
|
147
147
|
No Subtitle
|
|
148
148
|
|
|
149
149
|
|
|
150
|
-
↑↓ navigate ^k actions
|
|
150
|
+
↑↓ navigate ^k actions
|
|
151
151
|
|
|
152
152
|
"
|
|
153
153
|
`)
|
|
@@ -218,7 +218,7 @@ test('list with detail view display and navigation', async () => {
|
|
|
218
218
|
|
|
219
219
|
|
|
220
220
|
|
|
221
|
-
↵ toggle detail ↑↓ navigate ^k actions
|
|
221
|
+
↵ toggle detail ↑↓ navigate ^k actions powered by termcast.app
|
|
222
222
|
|
|
223
223
|
|
|
224
224
|
|
|
@@ -581,7 +581,7 @@ test('list with detail layout consistency - short vs long detail content', async
|
|
|
581
581
|
│
|
|
582
582
|
│
|
|
583
583
|
│
|
|
584
|
-
↑↓ navigate ^k actions
|
|
584
|
+
↑↓ navigate ^k actions │
|
|
585
585
|
|
|
586
586
|
"
|
|
587
587
|
`)
|
|
@@ -609,7 +609,7 @@ test('list with detail layout consistency - short vs long detail content', async
|
|
|
609
609
|
│ vertical overflow in the detail
|
|
610
610
|
│ panel scrollbox.
|
|
611
611
|
│ Section 3
|
|
612
|
-
↑↓ navigate ^k actions
|
|
612
|
+
↑↓ navigate ^k actions │ ▼
|
|
613
613
|
|
|
614
614
|
"
|
|
615
615
|
`)
|
|
@@ -49,7 +49,7 @@ test('list with dropdown navigation', async () => {
|
|
|
49
49
|
Apple Juice Juice
|
|
50
50
|
|
|
51
51
|
|
|
52
|
-
↑↓ navigate ^k actions ^p select drink type
|
|
52
|
+
↑↓ navigate ^k actions ^p select drink type
|
|
53
53
|
|
|
54
54
|
|
|
55
55
|
|
|
@@ -219,7 +219,7 @@ test('list with dropdown navigation', async () => {
|
|
|
219
219
|
|
|
220
220
|
|
|
221
221
|
|
|
222
|
-
↑↓ navigate ^k actions ^p select drink type
|
|
222
|
+
↑↓ navigate ^k actions ^p select drink type
|
|
223
223
|
|
|
224
224
|
|
|
225
225
|
|
|
@@ -386,7 +386,7 @@ test('list with dropdown search and filter', async () => {
|
|
|
386
386
|
|
|
387
387
|
|
|
388
388
|
|
|
389
|
-
↑↓ navigate ^k actions ^p select drink type
|
|
389
|
+
↑↓ navigate ^k actions ^p select drink type
|
|
390
390
|
|
|
391
391
|
|
|
392
392
|
|
|
@@ -422,7 +422,7 @@ test('list with dropdown search and filter', async () => {
|
|
|
422
422
|
|
|
423
423
|
|
|
424
424
|
|
|
425
|
-
↑↓ navigate ^k actions ^p select drink type
|
|
425
|
+
↑↓ navigate ^k actions ^p select drink type
|
|
426
426
|
|
|
427
427
|
|
|
428
428
|
|
|
@@ -60,7 +60,7 @@ test('list with sections navigation', async () => {
|
|
|
60
60
|
Vegetables
|
|
61
61
|
|
|
62
62
|
|
|
63
|
-
↵ view details ↑↓ navigate ^k actions
|
|
63
|
+
↵ view details ↑↓ navigate ^k actions
|
|
64
64
|
"
|
|
65
65
|
`)
|
|
66
66
|
|
|
@@ -93,7 +93,7 @@ test('list with sections navigation', async () => {
|
|
|
93
93
|
Vegetables
|
|
94
94
|
|
|
95
95
|
|
|
96
|
-
↵ view details ↑↓ navigate ^k actions
|
|
96
|
+
↵ view details ↑↓ navigate ^k actions
|
|
97
97
|
"
|
|
98
98
|
`)
|
|
99
99
|
|
|
@@ -120,7 +120,7 @@ test('list with sections navigation', async () => {
|
|
|
120
120
|
Vegetables
|
|
121
121
|
|
|
122
122
|
|
|
123
|
-
↑↓ navigate ^k actions
|
|
123
|
+
↑↓ navigate ^k actions
|
|
124
124
|
"
|
|
125
125
|
`)
|
|
126
126
|
|
|
@@ -151,7 +151,7 @@ test('list with sections navigation', async () => {
|
|
|
151
151
|
Vegetables
|
|
152
152
|
|
|
153
153
|
|
|
154
|
-
↑↓ navigate ^k actions
|
|
154
|
+
↑↓ navigate ^k actions
|
|
155
155
|
"
|
|
156
156
|
`)
|
|
157
157
|
|
|
@@ -195,7 +195,7 @@ test('list with sections search functionality', async () => {
|
|
|
195
195
|
|
|
196
196
|
|
|
197
197
|
|
|
198
|
-
↵ view details ↑↓ navigate ^k actions
|
|
198
|
+
↵ view details ↑↓ navigate ^k actions
|
|
199
199
|
"
|
|
200
200
|
`)
|
|
201
201
|
|
|
@@ -231,7 +231,7 @@ test('list with sections search functionality', async () => {
|
|
|
231
231
|
|
|
232
232
|
|
|
233
233
|
|
|
234
|
-
↵ view details ↑↓ navigate ^k actions
|
|
234
|
+
↵ view details ↑↓ navigate ^k actions
|
|
235
235
|
"
|
|
236
236
|
`)
|
|
237
237
|
|
|
@@ -261,7 +261,7 @@ test('list with sections search functionality', async () => {
|
|
|
261
261
|
Vegetables
|
|
262
262
|
|
|
263
263
|
|
|
264
|
-
↵ view details ↑↓ navigate ^k actions
|
|
264
|
+
↵ view details ↑↓ navigate ^k actions
|
|
265
265
|
"
|
|
266
266
|
`)
|
|
267
267
|
|
|
@@ -294,7 +294,7 @@ test('list with sections search functionality', async () => {
|
|
|
294
294
|
|
|
295
295
|
|
|
296
296
|
|
|
297
|
-
↵ view details ↑↓ navigate ^k actions
|
|
297
|
+
↵ view details ↑↓ navigate ^k actions
|
|
298
298
|
"
|
|
299
299
|
`)
|
|
300
300
|
|
|
@@ -426,7 +426,7 @@ test('list click functionality', async () => {
|
|
|
426
426
|
Vegetables
|
|
427
427
|
|
|
428
428
|
|
|
429
|
-
↑↓ navigate ^k actions
|
|
429
|
+
↑↓ navigate ^k actions
|
|
430
430
|
"
|
|
431
431
|
`)
|
|
432
432
|
expect(afterClickGrape).toContain('Grape')
|
|
@@ -583,7 +583,7 @@ test('filtering selects first visible item and navigation works', async () => {
|
|
|
583
583
|
|
|
584
584
|
|
|
585
585
|
|
|
586
|
-
↑↓ navigate ^k actions
|
|
586
|
+
↑↓ navigate ^k actions
|
|
587
587
|
"
|
|
588
588
|
`)
|
|
589
589
|
|
|
@@ -611,7 +611,7 @@ test('filtering selects first visible item and navigation works', async () => {
|
|
|
611
611
|
|
|
612
612
|
|
|
613
613
|
|
|
614
|
-
↵ view details ↑↓ navigate ^k actions
|
|
614
|
+
↵ view details ↑↓ navigate ^k actions
|
|
615
615
|
"
|
|
616
616
|
`)
|
|
617
617
|
|
|
@@ -639,7 +639,7 @@ test('filtering selects first visible item and navigation works', async () => {
|
|
|
639
639
|
|
|
640
640
|
|
|
641
641
|
|
|
642
|
-
↵ view details ↑↓ navigate ^k actions
|
|
642
|
+
↵ view details ↑↓ navigate ^k actions
|
|
643
643
|
"
|
|
644
644
|
`)
|
|
645
645
|
|
|
@@ -667,7 +667,7 @@ test('filtering selects first visible item and navigation works', async () => {
|
|
|
667
667
|
|
|
668
668
|
|
|
669
669
|
|
|
670
|
-
↵ view details ↑↓ navigate ^k actions
|
|
670
|
+
↵ view details ↑↓ navigate ^k actions
|
|
671
671
|
"
|
|
672
672
|
`)
|
|
673
673
|
// Verify Carrot is still selected (not wrapped to Orange)
|
|
@@ -703,7 +703,7 @@ test('list scrollbox scrolling with sections', async () => {
|
|
|
703
703
|
Vegetables
|
|
704
704
|
|
|
705
705
|
|
|
706
|
-
↵ view details ↑↓ navigate ^k actions
|
|
706
|
+
↵ view details ↑↓ navigate ^k actions
|
|
707
707
|
"
|
|
708
708
|
`)
|
|
709
709
|
|
|
@@ -736,7 +736,7 @@ test('list scrollbox scrolling with sections', async () => {
|
|
|
736
736
|
Vegetables
|
|
737
737
|
|
|
738
738
|
|
|
739
|
-
↑↓ navigate ^k actions
|
|
739
|
+
↑↓ navigate ^k actions
|
|
740
740
|
"
|
|
741
741
|
`)
|
|
742
742
|
|
|
@@ -766,7 +766,7 @@ test('list scrollbox scrolling with sections', async () => {
|
|
|
766
766
|
Bread Freshly baked Today New
|
|
767
767
|
|
|
768
768
|
|
|
769
|
-
↑↓ navigate ^k actions
|
|
769
|
+
↑↓ navigate ^k actions
|
|
770
770
|
"
|
|
771
771
|
`)
|
|
772
772
|
|
|
@@ -798,7 +798,7 @@ test('list scrollbox scrolling with sections', async () => {
|
|
|
798
798
|
›Bread Freshly baked Today New
|
|
799
799
|
|
|
800
800
|
|
|
801
|
-
↵ view details ↑↓ navigate ^k actions
|
|
801
|
+
↵ view details ↑↓ navigate ^k actions
|
|
802
802
|
"
|
|
803
803
|
`)
|
|
804
804
|
|
|
@@ -828,7 +828,7 @@ test('list scrollbox scrolling with sections', async () => {
|
|
|
828
828
|
Vegetables
|
|
829
829
|
|
|
830
830
|
|
|
831
|
-
↵ view details ↑↓ navigate ^k actions
|
|
831
|
+
↵ view details ↑↓ navigate ^k actions
|
|
832
832
|
"
|
|
833
833
|
`)
|
|
834
834
|
}, 15000)
|
|
@@ -902,7 +902,7 @@ test('list does not wrap at top boundary', async () => {
|
|
|
902
902
|
Vegetables
|
|
903
903
|
|
|
904
904
|
|
|
905
|
-
↵ view details ↑↓ navigate ^k actions
|
|
905
|
+
↵ view details ↑↓ navigate ^k actions
|
|
906
906
|
"
|
|
907
907
|
`)
|
|
908
908
|
expect(afterUpSnapshot).toContain('›Apple')
|
|
@@ -59,7 +59,7 @@ test('candle chart renders in list detail with axes', async () => {
|
|
|
59
59
|
│ ────────────────────────────────────────────
|
|
60
60
|
│
|
|
61
61
|
│ BTC-USD Hourly OHLC
|
|
62
|
-
↵ open detail ↑↓ navigate ^k actions
|
|
62
|
+
↵ open detail ↑↓ navigate ^k actions │
|
|
63
63
|
|
|
64
64
|
"
|
|
65
65
|
`)
|
|
@@ -161,7 +161,7 @@ test('candle + line overlay (mixed components)', async () => {
|
|
|
161
161
|
│
|
|
162
162
|
│ Price: $1,971
|
|
163
163
|
│
|
|
164
|
-
↵ open detail ↑↓ navigate ^k actions
|
|
164
|
+
↵ open detail ↑↓ navigate ^k actions │ Change: -0.3%
|
|
165
165
|
|
|
166
166
|
"
|
|
167
167
|
`)
|
|
@@ -211,7 +211,7 @@ test('candle + volume bar chart (mixed components)', async () => {
|
|
|
211
211
|
│
|
|
212
212
|
│
|
|
213
213
|
│
|
|
214
|
-
↵ open detail ↑↓ navigate ^k actions
|
|
214
|
+
↵ open detail ↑↓ navigate ^k actions │
|
|
215
215
|
|
|
216
216
|
"
|
|
217
217
|
`)
|
|
@@ -261,7 +261,7 @@ test('side-by-side candle charts in Row', async () => {
|
|
|
261
261
|
│
|
|
262
262
|
│
|
|
263
263
|
│
|
|
264
|
-
↵ open detail ↑↓ navigate ^k actions
|
|
264
|
+
↵ open detail ↑↓ navigate ^k actions │
|
|
265
265
|
|
|
266
266
|
"
|
|
267
267
|
`)
|
|
@@ -54,7 +54,7 @@ test('grid navigation and display', async () => {
|
|
|
54
54
|
🚀 Rocket
|
|
55
55
|
|
|
56
56
|
|
|
57
|
-
↵ show details ↑↓ navigate ^k actions
|
|
57
|
+
↵ show details ↑↓ navigate ^k actions
|
|
58
58
|
|
|
59
59
|
"
|
|
60
60
|
`)
|
|
@@ -87,7 +87,7 @@ test('grid navigation and display', async () => {
|
|
|
87
87
|
🚀 Rocket
|
|
88
88
|
|
|
89
89
|
|
|
90
|
-
↵ show details ↑↓ navigate ^k actions
|
|
90
|
+
↵ show details ↑↓ navigate ^k actions
|
|
91
91
|
|
|
92
92
|
"
|
|
93
93
|
`)
|
|
@@ -121,7 +121,7 @@ test('grid navigation and display', async () => {
|
|
|
121
121
|
🚀 Rocket
|
|
122
122
|
|
|
123
123
|
|
|
124
|
-
↵ show details ↑↓ navigate ^k actions
|
|
124
|
+
↵ show details ↑↓ navigate ^k actions
|
|
125
125
|
|
|
126
126
|
"
|
|
127
127
|
`)
|
|
@@ -187,7 +187,7 @@ test('grid navigation and display', async () => {
|
|
|
187
187
|
🚀 Rocket
|
|
188
188
|
|
|
189
189
|
|
|
190
|
-
↵ show details ↑↓ navigate ^k actions
|
|
190
|
+
↵ show details ↑↓ navigate ^k actions
|
|
191
191
|
|
|
192
192
|
"
|
|
193
193
|
`)
|
|
@@ -231,7 +231,7 @@ test('grid search functionality', async () => {
|
|
|
231
231
|
☀️ Sun
|
|
232
232
|
|
|
233
233
|
|
|
234
|
-
↵ show details ↑↓ navigate ^k actions
|
|
234
|
+
↵ show details ↑↓ navigate ^k actions
|
|
235
235
|
|
|
236
236
|
|
|
237
237
|
|
|
@@ -271,7 +271,7 @@ test('grid search functionality', async () => {
|
|
|
271
271
|
☀️ Sun
|
|
272
272
|
|
|
273
273
|
|
|
274
|
-
↵ show details ↑↓ navigate ^k actions
|
|
274
|
+
↵ show details ↑↓ navigate ^k actions
|
|
275
275
|
|
|
276
276
|
|
|
277
277
|
|
|
@@ -310,7 +310,7 @@ test('grid search functionality', async () => {
|
|
|
310
310
|
🚀 Rocket
|
|
311
311
|
|
|
312
312
|
|
|
313
|
-
↵ show details ↑↓ navigate ^k actions
|
|
313
|
+
↵ show details ↑↓ navigate ^k actions
|
|
314
314
|
|
|
315
315
|
"
|
|
316
316
|
`)
|
|
@@ -345,7 +345,7 @@ test('grid search functionality', async () => {
|
|
|
345
345
|
☀️ Sun
|
|
346
346
|
|
|
347
347
|
|
|
348
|
-
↵ show details ↑↓ navigate ^k actions
|
|
348
|
+
↵ show details ↑↓ navigate ^k actions
|
|
349
349
|
|
|
350
350
|
|
|
351
351
|
|
|
@@ -389,7 +389,7 @@ test('grid item selection and actions', async () => {
|
|
|
389
389
|
🚀 Rocket
|
|
390
390
|
|
|
391
391
|
|
|
392
|
-
↵ show details ↑↓ navigate ^k actions
|
|
392
|
+
↵ show details ↑↓ navigate ^k actions
|
|
393
393
|
|
|
394
394
|
"
|
|
395
395
|
`)
|
|
@@ -422,7 +422,7 @@ test('grid item selection and actions', async () => {
|
|
|
422
422
|
🚀 Rocket
|
|
423
423
|
|
|
424
424
|
|
|
425
|
-
↵ show details ↑↓ navigate ^k actions
|
|
425
|
+
↵ show details ↑↓ navigate ^k actions
|
|
426
426
|
|
|
427
427
|
"
|
|
428
428
|
`)
|
|
@@ -455,7 +455,7 @@ test('grid item selection and actions', async () => {
|
|
|
455
455
|
🚀 Rocket
|
|
456
456
|
|
|
457
457
|
|
|
458
|
-
↵ show details ↑↓ navigate ^k actions
|
|
458
|
+
↵ show details ↑↓ navigate ^k actions
|
|
459
459
|
|
|
460
460
|
"
|
|
461
461
|
`)
|
|
@@ -497,7 +497,7 @@ test('grid mouse interaction', async () => {
|
|
|
497
497
|
🚀 Rocket
|
|
498
498
|
|
|
499
499
|
|
|
500
|
-
↵ show details ↑↓ navigate ^k actions
|
|
500
|
+
↵ show details ↑↓ navigate ^k actions
|
|
501
501
|
|
|
502
502
|
"
|
|
503
503
|
`)
|
|
@@ -539,7 +539,7 @@ test('grid mouse interaction', async () => {
|
|
|
539
539
|
|
|
540
540
|
|
|
541
541
|
|
|
542
|
-
↵ show details ↑↓ navigate ^k actions
|
|
542
|
+
↵ show details ↑↓ navigate ^k actions
|
|
543
543
|
|
|
544
544
|
"
|
|
545
545
|
`)
|