termcast 1.5.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/build.d.ts.map +1 -1
- package/dist/build.js +22 -5
- package/dist/build.js.map +1 -1
- package/dist/compile.d.ts.map +1 -1
- package/dist/compile.js +7 -1
- package/dist/compile.js.map +1 -1
- 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 +4 -4
- package/dist/components/bar-graph.d.ts.map +1 -1
- package/dist/components/bar-graph.js +23 -5
- 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 +7 -0
- package/dist/components/list.d.ts.map +1 -1
- package/dist/components/list.js +75 -14
- 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/dist/examples/list-detail-height-ratchet.d.ts +2 -0
- package/dist/examples/list-detail-height-ratchet.d.ts.map +1 -0
- package/dist/examples/list-detail-height-ratchet.js +26 -0
- package/dist/examples/list-detail-height-ratchet.js.map +1 -0
- package/dist/extensions/dev.d.ts.map +1 -1
- package/dist/extensions/dev.js +1 -0
- package/dist/extensions/dev.js.map +1 -1
- package/dist/globals.js +8 -0
- package/dist/globals.js.map +1 -1
- package/dist/package-json.d.ts +2 -0
- package/dist/package-json.d.ts.map +1 -1
- package/dist/package-json.js +20 -17
- package/dist/package-json.js.map +1 -1
- package/dist/profiler.d.ts +2 -0
- package/dist/profiler.d.ts.map +1 -0
- package/dist/profiler.js +390 -0
- package/dist/profiler.js.map +1 -0
- package/package.json +14 -15
- package/src/build.tsx +27 -5
- package/src/cli.tsx +0 -0
- package/src/compile.tsx +9 -1
- package/src/compile.vitest.tsx +8 -8
- package/src/components/bar-chart.tsx +23 -3
- package/src/components/bar-graph.tsx +32 -13
- 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 +93 -20
- package/src/examples/action-shortcut.vitest.tsx +4 -4
- package/src/examples/actions-context.vitest.tsx +2 -2
- package/src/examples/bar-graph-weekly.vitest.tsx +97 -97
- package/src/examples/chart-tooltips.tsx +54 -0
- package/src/examples/form-basic.vitest.tsx +8 -8
- package/src/examples/github.vitest.tsx +19 -28
- package/src/examples/graph-bar-chart.vitest.tsx +40 -40
- package/src/examples/graph-polymarket.vitest.tsx +24 -24
- package/src/examples/graph-row.vitest.tsx +8 -8
- package/src/examples/graph-styles.vitest.tsx +65 -65
- package/src/examples/horizontal-bar-graph-weekly.vitest.tsx +52 -52
- package/src/examples/list-detail-height-ratchet.tsx +48 -0
- package/src/examples/list-detail-height-ratchet.vitest.tsx +161 -0
- package/src/examples/list-detail-metadata.vitest.tsx +49 -49
- package/src/examples/list-dropdown-default.vitest.tsx +27 -27
- package/src/examples/list-fetch-data.vitest.tsx +3 -3
- package/src/examples/list-item-accessories.vitest.tsx +2 -2
- package/src/examples/list-loading-empty-view.vitest.tsx +1 -1
- package/src/examples/list-no-actions.vitest.tsx +3 -3
- package/src/examples/list-scrollbox.vitest.tsx +6 -6
- package/src/examples/list-spacing-mode.vitest.tsx +3 -3
- package/src/examples/list-with-detail.vitest.tsx +11 -11
- package/src/examples/list-with-dropdown.vitest.tsx +7 -7
- package/src/examples/list-with-sections.vitest.tsx +32 -32
- package/src/examples/list-with-toast.vitest.tsx +4 -4
- package/src/examples/simple-candle-chart.vitest.tsx +63 -61
- package/src/examples/simple-grid.vitest.tsx +13 -13
- package/src/examples/simple-navigation.vitest.tsx +25 -25
- package/src/examples/simple-progress-bar.vitest.tsx +8 -8
- package/src/examples/swift-extension.vitest.tsx +3 -3
- package/src/examples/toast-action.vitest.tsx +4 -4
- package/src/extensions/dev.tsx +2 -1
- package/src/extensions/dev.vitest.tsx +17 -17
- package/src/globals.ts +9 -0
- package/src/package-json.tsx +24 -23
- package/src/profiler.tsx +487 -0
|
@@ -57,10 +57,10 @@ test('list with sections navigation', async () => {
|
|
|
57
57
|
Pineapple Sweet and tangy
|
|
58
58
|
Strawberry Red and sweet Popular
|
|
59
59
|
|
|
60
|
+
Vegetables
|
|
60
61
|
|
|
61
62
|
|
|
62
|
-
↵ view details ↑↓ navigate ^k actions
|
|
63
|
-
|
|
63
|
+
↵ view details ↑↓ navigate ^k actions
|
|
64
64
|
"
|
|
65
65
|
`)
|
|
66
66
|
|
|
@@ -90,10 +90,10 @@ test('list with sections navigation', async () => {
|
|
|
90
90
|
Pineapple Sweet and tangy
|
|
91
91
|
Strawberry Red and sweet Popular
|
|
92
92
|
|
|
93
|
+
Vegetables
|
|
93
94
|
|
|
94
95
|
|
|
95
|
-
↵ view details ↑↓ navigate ^k actions
|
|
96
|
-
|
|
96
|
+
↵ view details ↑↓ navigate ^k actions
|
|
97
97
|
"
|
|
98
98
|
`)
|
|
99
99
|
|
|
@@ -117,10 +117,10 @@ test('list with sections navigation', async () => {
|
|
|
117
117
|
Pineapple Sweet and tangy
|
|
118
118
|
Strawberry Red and sweet Popular
|
|
119
119
|
|
|
120
|
+
Vegetables
|
|
120
121
|
|
|
121
122
|
|
|
122
|
-
↑↓ navigate ^k actions
|
|
123
|
-
|
|
123
|
+
↑↓ navigate ^k actions
|
|
124
124
|
"
|
|
125
125
|
`)
|
|
126
126
|
|
|
@@ -148,10 +148,10 @@ test('list with sections navigation', async () => {
|
|
|
148
148
|
Pineapple Sweet and tangy
|
|
149
149
|
Strawberry Red and sweet Popular
|
|
150
150
|
|
|
151
|
+
Vegetables
|
|
151
152
|
|
|
152
153
|
|
|
153
|
-
↑↓ navigate ^k actions
|
|
154
|
-
|
|
154
|
+
↑↓ navigate ^k actions
|
|
155
155
|
"
|
|
156
156
|
`)
|
|
157
157
|
|
|
@@ -191,11 +191,11 @@ test('list with sections search functionality', async () => {
|
|
|
191
191
|
|
|
192
192
|
|
|
193
193
|
|
|
194
|
-
↵ view details ↑↓ navigate ^k actions :vim
|
|
195
194
|
|
|
196
195
|
|
|
197
196
|
|
|
198
197
|
|
|
198
|
+
↵ view details ↑↓ navigate ^k actions
|
|
199
199
|
"
|
|
200
200
|
`)
|
|
201
201
|
|
|
@@ -227,11 +227,11 @@ test('list with sections search functionality', async () => {
|
|
|
227
227
|
|
|
228
228
|
|
|
229
229
|
|
|
230
|
-
↵ view details ↑↓ navigate ^k actions :vim
|
|
231
230
|
|
|
232
231
|
|
|
233
232
|
|
|
234
233
|
|
|
234
|
+
↵ view details ↑↓ navigate ^k actions
|
|
235
235
|
"
|
|
236
236
|
`)
|
|
237
237
|
|
|
@@ -258,10 +258,10 @@ test('list with sections search functionality', async () => {
|
|
|
258
258
|
Pineapple Sweet and tangy
|
|
259
259
|
Strawberry Red and sweet Popular
|
|
260
260
|
|
|
261
|
+
Vegetables
|
|
261
262
|
|
|
262
263
|
|
|
263
|
-
↵ view details ↑↓ navigate ^k actions
|
|
264
|
-
|
|
264
|
+
↵ view details ↑↓ navigate ^k actions
|
|
265
265
|
"
|
|
266
266
|
`)
|
|
267
267
|
|
|
@@ -290,11 +290,11 @@ test('list with sections search functionality', async () => {
|
|
|
290
290
|
|
|
291
291
|
|
|
292
292
|
|
|
293
|
-
↵ view details ↑↓ navigate ^k actions :vim
|
|
294
293
|
|
|
295
294
|
|
|
296
295
|
|
|
297
296
|
|
|
297
|
+
↵ view details ↑↓ navigate ^k actions
|
|
298
298
|
"
|
|
299
299
|
`)
|
|
300
300
|
|
|
@@ -423,10 +423,10 @@ test('list click functionality', async () => {
|
|
|
423
423
|
Pineapple Sweet and tangy
|
|
424
424
|
Strawberry Red and sweet Popular
|
|
425
425
|
|
|
426
|
+
Vegetables
|
|
426
427
|
|
|
427
428
|
|
|
428
|
-
↑↓ navigate ^k actions
|
|
429
|
-
|
|
429
|
+
↑↓ navigate ^k actions
|
|
430
430
|
"
|
|
431
431
|
`)
|
|
432
432
|
expect(afterClickGrape).toContain('Grape')
|
|
@@ -527,10 +527,10 @@ test('list actions panel with ctrl+k', async () => {
|
|
|
527
527
|
Pineapple Sweet and tangy
|
|
528
528
|
Strawberry Red and sweet Popular
|
|
529
529
|
|
|
530
|
+
Vegetables
|
|
530
531
|
|
|
531
532
|
|
|
532
533
|
✓ Added to Cart Apple has been added to your cart
|
|
533
|
-
|
|
534
534
|
"
|
|
535
535
|
`)
|
|
536
536
|
}, 10000)
|
|
@@ -579,11 +579,11 @@ test('filtering selects first visible item and navigation works', async () => {
|
|
|
579
579
|
|
|
580
580
|
|
|
581
581
|
|
|
582
|
-
↑↓ navigate ^k actions :vim
|
|
583
582
|
|
|
584
583
|
|
|
585
584
|
|
|
586
585
|
|
|
586
|
+
↑↓ navigate ^k actions
|
|
587
587
|
"
|
|
588
588
|
`)
|
|
589
589
|
|
|
@@ -607,11 +607,11 @@ test('filtering selects first visible item and navigation works', async () => {
|
|
|
607
607
|
|
|
608
608
|
|
|
609
609
|
|
|
610
|
-
↵ view details ↑↓ navigate ^k actions :vim
|
|
611
610
|
|
|
612
611
|
|
|
613
612
|
|
|
614
613
|
|
|
614
|
+
↵ view details ↑↓ navigate ^k actions
|
|
615
615
|
"
|
|
616
616
|
`)
|
|
617
617
|
|
|
@@ -635,11 +635,11 @@ test('filtering selects first visible item and navigation works', async () => {
|
|
|
635
635
|
|
|
636
636
|
|
|
637
637
|
|
|
638
|
-
↵ view details ↑↓ navigate ^k actions :vim
|
|
639
638
|
|
|
640
639
|
|
|
641
640
|
|
|
642
641
|
|
|
642
|
+
↵ view details ↑↓ navigate ^k actions
|
|
643
643
|
"
|
|
644
644
|
`)
|
|
645
645
|
|
|
@@ -663,11 +663,11 @@ test('filtering selects first visible item and navigation works', async () => {
|
|
|
663
663
|
|
|
664
664
|
|
|
665
665
|
|
|
666
|
-
↵ view details ↑↓ navigate ^k actions :vim
|
|
667
666
|
|
|
668
667
|
|
|
669
668
|
|
|
670
669
|
|
|
670
|
+
↵ view details ↑↓ navigate ^k actions
|
|
671
671
|
"
|
|
672
672
|
`)
|
|
673
673
|
// Verify Carrot is still selected (not wrapped to Orange)
|
|
@@ -700,10 +700,10 @@ test('list scrollbox scrolling with sections', async () => {
|
|
|
700
700
|
Pineapple Sweet and tangy
|
|
701
701
|
Strawberry Red and sweet Popular
|
|
702
702
|
|
|
703
|
+
Vegetables
|
|
703
704
|
|
|
704
705
|
|
|
705
|
-
↵ view details ↑↓ navigate ^k actions
|
|
706
|
-
|
|
706
|
+
↵ view details ↑↓ navigate ^k actions
|
|
707
707
|
"
|
|
708
708
|
`)
|
|
709
709
|
|
|
@@ -733,10 +733,10 @@ test('list scrollbox scrolling with sections', async () => {
|
|
|
733
733
|
Pineapple Sweet and tangy
|
|
734
734
|
›Strawberry Red and sweet Popular
|
|
735
735
|
|
|
736
|
+
Vegetables
|
|
736
737
|
|
|
737
738
|
|
|
738
|
-
↑↓ navigate ^k actions
|
|
739
|
-
|
|
739
|
+
↑↓ navigate ^k actions
|
|
740
740
|
"
|
|
741
741
|
`)
|
|
742
742
|
|
|
@@ -754,6 +754,7 @@ test('list scrollbox scrolling with sections', async () => {
|
|
|
754
754
|
|
|
755
755
|
> Search items...
|
|
756
756
|
|
|
757
|
+
Vegetables
|
|
757
758
|
Carrot Orange and crunchy Healthy
|
|
758
759
|
Lettuce Green and fresh
|
|
759
760
|
›Broccoli Green florets Healthy
|
|
@@ -765,8 +766,7 @@ test('list scrollbox scrolling with sections', async () => {
|
|
|
765
766
|
Bread Freshly baked Today New
|
|
766
767
|
|
|
767
768
|
|
|
768
|
-
↑↓ navigate ^k actions
|
|
769
|
-
|
|
769
|
+
↑↓ navigate ^k actions
|
|
770
770
|
"
|
|
771
771
|
`)
|
|
772
772
|
|
|
@@ -786,6 +786,7 @@ test('list scrollbox scrolling with sections', async () => {
|
|
|
786
786
|
|
|
787
787
|
> Search items...
|
|
788
788
|
|
|
789
|
+
Vegetables
|
|
789
790
|
Carrot Orange and crunchy Healthy
|
|
790
791
|
Lettuce Green and fresh
|
|
791
792
|
Broccoli Green florets Healthy
|
|
@@ -797,8 +798,7 @@ test('list scrollbox scrolling with sections', async () => {
|
|
|
797
798
|
›Bread Freshly baked Today New
|
|
798
799
|
|
|
799
800
|
|
|
800
|
-
↵ view details ↑↓ navigate ^k actions
|
|
801
|
-
|
|
801
|
+
↵ view details ↑↓ navigate ^k actions
|
|
802
802
|
"
|
|
803
803
|
`)
|
|
804
804
|
|
|
@@ -825,10 +825,10 @@ test('list scrollbox scrolling with sections', async () => {
|
|
|
825
825
|
Pineapple Sweet and tangy
|
|
826
826
|
Strawberry Red and sweet Popular
|
|
827
827
|
|
|
828
|
+
Vegetables
|
|
828
829
|
|
|
829
830
|
|
|
830
|
-
↵ view details ↑↓ navigate ^k actions
|
|
831
|
-
|
|
831
|
+
↵ view details ↑↓ navigate ^k actions
|
|
832
832
|
"
|
|
833
833
|
`)
|
|
834
834
|
}, 15000)
|
|
@@ -899,10 +899,10 @@ test('list does not wrap at top boundary', async () => {
|
|
|
899
899
|
Pineapple Sweet and tangy
|
|
900
900
|
Strawberry Red and sweet Popular
|
|
901
901
|
|
|
902
|
+
Vegetables
|
|
902
903
|
|
|
903
904
|
|
|
904
|
-
↵ view details ↑↓ navigate ^k actions
|
|
905
|
-
|
|
905
|
+
↵ view details ↑↓ navigate ^k actions
|
|
906
906
|
"
|
|
907
907
|
`)
|
|
908
908
|
expect(afterUpSnapshot).toContain('›Apple')
|
|
@@ -40,11 +40,11 @@ test('list navigation works while toast is shown', async () => {
|
|
|
40
40
|
|
|
41
41
|
|
|
42
42
|
|
|
43
|
-
✓ Selected First Item
|
|
44
43
|
|
|
45
44
|
|
|
46
45
|
|
|
47
46
|
|
|
47
|
+
✓ Selected First Item
|
|
48
48
|
"
|
|
49
49
|
`)
|
|
50
50
|
|
|
@@ -68,11 +68,11 @@ test('list navigation works while toast is shown', async () => {
|
|
|
68
68
|
|
|
69
69
|
|
|
70
70
|
|
|
71
|
-
✓ Selected Second Item
|
|
72
71
|
|
|
73
72
|
|
|
74
73
|
|
|
75
74
|
|
|
75
|
+
✓ Selected Second Item
|
|
76
76
|
"
|
|
77
77
|
`)
|
|
78
78
|
|
|
@@ -96,11 +96,11 @@ test('list navigation works while toast is shown', async () => {
|
|
|
96
96
|
|
|
97
97
|
|
|
98
98
|
|
|
99
|
-
✓ Selected Third Item
|
|
100
99
|
|
|
101
100
|
|
|
102
101
|
|
|
103
102
|
|
|
103
|
+
✓ Selected Third Item
|
|
104
104
|
"
|
|
105
105
|
`)
|
|
106
106
|
|
|
@@ -124,11 +124,11 @@ test('list navigation works while toast is shown', async () => {
|
|
|
124
124
|
|
|
125
125
|
|
|
126
126
|
|
|
127
|
-
✓ Selected Second Item
|
|
128
127
|
|
|
129
128
|
|
|
130
129
|
|
|
131
130
|
|
|
131
|
+
✓ Selected Second Item
|
|
132
132
|
"
|
|
133
133
|
`)
|
|
134
134
|
}, 10000)
|
|
@@ -39,27 +39,27 @@ test('candle chart renders in list detail with axes', async () => {
|
|
|
39
39
|
> Search markets...
|
|
40
40
|
|
|
41
41
|
Watchlist │ $74,678│ │
|
|
42
|
-
›BTC Bitcoin
|
|
43
|
-
ETH Ethereum
|
|
44
|
-
SOL Solana
|
|
45
|
-
XRP XRP
|
|
46
|
-
DOGE Dogecoin
|
|
47
|
-
BNB BNB
|
|
42
|
+
›BTC Bitcoin $67,641 -0.2% │ │ ▌▌▖│
|
|
43
|
+
ETH Ethereum $1,971 -0.3% │ │ ▌│▘▌▖│
|
|
44
|
+
SOL Solana $83.31 -0.4% │ $70,438│ │ │ ▌ │▘▘▌
|
|
45
|
+
XRP XRP $1.36 -0.4% │ │ ▖▖▖▖ ▌▌ ▖▖▌ ▌││
|
|
46
|
+
DOGE Dogecoin $0.0901 -0.5% │ │ ▌││▌▖▖ ▖▖│││▌▘▌▌│ ▘▘▘▌
|
|
47
|
+
BNB BNB $622 -0.3% │ $66,197│▖▖ │▌ ▘▘▘▌▖▖▌▘▌▖▌▌▌ ▘▘
|
|
48
48
|
│ ││▌▖ │▌▘ ▘▘▌▌ ▘▘▘▘
|
|
49
49
|
Mixed Components │ │ │▌▌▘▘ ▘▘
|
|
50
|
-
BTC -
|
|
51
|
-
ETH -
|
|
52
|
-
SOL -
|
|
53
|
-
BTC vs ETH Side-by-side crypto leaders
|
|
54
|
-
DOGE -
|
|
50
|
+
BTC - CandlesReal BTC/US...rly candles $67,641 │ $61,957│ ││
|
|
51
|
+
ETH - C...e + LineCandles p...sing line $1,971 │ 12d 8d 4d Now
|
|
52
|
+
SOL - Ca... + Volum Candles ...me split $83.31 │
|
|
53
|
+
BTC vs ETH Side-by-side crypto leaders $67,641 │ Price: $67,641
|
|
54
|
+
DOGE - ...e + LineLow-pric...ormatting $0.0901 │
|
|
55
55
|
│ Change: -0.2%
|
|
56
56
|
│
|
|
57
57
|
│ Category: Store of Value
|
|
58
58
|
│
|
|
59
59
|
│ ────────────────────────────────────────────
|
|
60
60
|
│
|
|
61
|
-
|
|
62
|
-
|
|
61
|
+
│ BTC-USD Hourly OHLC
|
|
62
|
+
↵ open detail ↑↓ navigate ^k actions │
|
|
63
63
|
|
|
64
64
|
"
|
|
65
65
|
`)
|
|
@@ -128,7 +128,7 @@ test('candle + line overlay (mixed components)', async () => {
|
|
|
128
128
|
}
|
|
129
129
|
|
|
130
130
|
const text = await session.text({
|
|
131
|
-
waitFor: (t) => t.includes('›ETH
|
|
131
|
+
waitFor: (t) => t.includes('›ETH') && t.includes('Line') && t.includes('Price: $1,971'),
|
|
132
132
|
timeout: 10000,
|
|
133
133
|
})
|
|
134
134
|
|
|
@@ -141,19 +141,19 @@ test('candle + line overlay (mixed components)', async () => {
|
|
|
141
141
|
> Search markets...
|
|
142
142
|
|
|
143
143
|
Watchlist │ $2,220│ │
|
|
144
|
-
BTC Bitcoin
|
|
145
|
-
ETH Ethereum
|
|
146
|
-
SOL Solana
|
|
147
|
-
XRP XRP
|
|
148
|
-
DOGE Dogecoin
|
|
149
|
-
BNB BNB
|
|
144
|
+
BTC Bitcoin $67,641 -0.2% │ │ │ ▌▌▖▖
|
|
145
|
+
ETH Ethereum $1,971 -0.3% │ $2,073│ ▖▖▖ │ ▖▖ ▖▌▘▘▌▖▖▖
|
|
146
|
+
SOL Solana $83.31 -0.4% │ │ │▌│▘▌▌▌ ▖▖ ▌▘▌││▌│ │││▌
|
|
147
|
+
XRP XRP $1.36 -0.4% │ │ │▌▘ │ ▌▖ ▖▌▘▌▖▌ ▌▌▘▘ ▌▌▘▘
|
|
148
|
+
DOGE Dogecoin $0.0901 -0.5% │ $1,927│▖▖ ▖▌ │▘▌▖▌ │││ │
|
|
149
|
+
BNB BNB $622 -0.3% │ │▘▘▌▖▌▘│ ▘▘
|
|
150
150
|
│ $1,780│ ▘▘
|
|
151
151
|
Mixed Components │ 12d 8d 4d Now
|
|
152
|
-
BTC -
|
|
153
|
-
›ETH -
|
|
154
|
-
SOL -
|
|
155
|
-
BTC vs ETH Side-by-side crypto leaders
|
|
156
|
-
DOGE -
|
|
152
|
+
BTC - CandlesReal BTC/US...rly candles $67,641 │
|
|
153
|
+
›ETH - C...e + LineCandles p...sing line $1,971 │ $2,197│ ⢠⣆⣠⡀
|
|
154
|
+
SOL - Ca... + Volum Candles ...me split $83.31 │ │ ⣴⣤⣤ ⣀ ⢠⣀ ⢠⣿⣿⣿⣷⣶⣦⡀
|
|
155
|
+
BTC vs ETH Side-by-side crypto leaders $67,641 │ $1,997│ ⢰⣿⣿⣿⣿⣿⣇ ⣠⣷⣴⣄⣀⢸⣿⣶⣠⣤⣼⣿⣿⣿⣿⣿⣿⣧⣤⣤⣤
|
|
156
|
+
DOGE - ...e + LineLow-pric...ormatting $0.0901 │ │⣶⡄ ⣦⣾⣿⣿⣿⣿⣿⣿⣶⣶⢠⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿
|
|
157
157
|
│ $1,797│⣿⣿⣷⣦⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿
|
|
158
158
|
│ 12d 8d 4d Now
|
|
159
159
|
│
|
|
@@ -161,12 +161,13 @@ 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
|
`)
|
|
168
168
|
|
|
169
|
-
expect(text).toContain('
|
|
169
|
+
expect(text).toContain('›ETH')
|
|
170
|
+
expect(text).toContain('Line')
|
|
170
171
|
}, 30000)
|
|
171
172
|
|
|
172
173
|
test('candle + volume bar chart (mixed components)', async () => {
|
|
@@ -177,7 +178,7 @@ test('candle + volume bar chart (mixed components)', async () => {
|
|
|
177
178
|
}
|
|
178
179
|
|
|
179
180
|
const text = await session.text({
|
|
180
|
-
waitFor: (t) => t.includes('›SOL
|
|
181
|
+
waitFor: (t) => t.includes('›SOL') && t.includes('Second half'),
|
|
181
182
|
timeout: 10000,
|
|
182
183
|
})
|
|
183
184
|
|
|
@@ -190,32 +191,33 @@ test('candle + volume bar chart (mixed components)', async () => {
|
|
|
190
191
|
> Search markets...
|
|
191
192
|
|
|
192
193
|
Watchlist │ $95.03│ ││
|
|
193
|
-
BTC Bitcoin
|
|
194
|
-
ETH Ethereum
|
|
195
|
-
SOL Solana
|
|
196
|
-
XRP XRP
|
|
197
|
-
DOGE Dogecoin
|
|
198
|
-
BNB BNB
|
|
194
|
+
BTC Bitcoin $67,641 -0.2% │ │ │ │ ▖▖▖▖
|
|
195
|
+
ETH Ethereum $1,971 -0.3% │ $88.26│ ▌▌▖ ││ │ ▖▖ ▌▘▘▘▌▌▌│
|
|
196
|
+
SOL Solana $83.31 -0.4% │ │ ▖▌│▘▌▌▌ │▌▌▖▖▌▘▌▖▌▘ ▘▌│││
|
|
197
|
+
XRP XRP $1.36 -0.4% │ │ │▌ │ ▌▖│ ▌▘▘▘▌▌ ▘▘││ ▘▘▘▌
|
|
198
|
+
DOGE Dogecoin $0.0901 -0.5% │ $81.48│▖▖ ▌▘ │▘▌▌▘ │
|
|
199
|
+
BNB BNB $622 -0.3% │ │▘▘▌▖▌▘ ▘▘
|
|
199
200
|
│ $74.71│ ▘▘│
|
|
200
201
|
Mixed Components │ 12d 8d 4d Now
|
|
201
|
-
BTC -
|
|
202
|
-
ETH -
|
|
203
|
-
›SOL -
|
|
204
|
-
BTC vs ETH Side-by-side crypto leaders
|
|
205
|
-
DOGE -
|
|
202
|
+
BTC - CandlesReal BTC/US...rly candles $67,641 │
|
|
203
|
+
ETH - C...e + LineCandles p...sing line $1,971 │ ┌Second half: 95.3%┐
|
|
204
|
+
›SOL - Ca... + Volum Candles ...me split $83.31 │
|
|
205
|
+
BTC vs ETH Side-by-side crypto leaders $67,641 │
|
|
206
|
+
DOGE - ...e + LineLow-pric...ormatting $0.0901 │ ────────────────────────────────────────────
|
|
206
207
|
│
|
|
207
208
|
│ Price: $83.31
|
|
208
209
|
│
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
210
|
+
│ Change: -0.4%
|
|
211
|
+
│
|
|
212
|
+
│
|
|
213
|
+
│
|
|
214
|
+
↵ open detail ↑↓ navigate ^k actions │
|
|
214
215
|
|
|
215
216
|
"
|
|
216
217
|
`)
|
|
217
218
|
|
|
218
|
-
expect(text).toContain('
|
|
219
|
+
expect(text).toContain('›SOL')
|
|
220
|
+
expect(text).toContain('Second half')
|
|
219
221
|
}, 30000)
|
|
220
222
|
|
|
221
223
|
test('side-by-side candle charts in Row', async () => {
|
|
@@ -239,27 +241,27 @@ test('side-by-side candle charts in Row', async () => {
|
|
|
239
241
|
> Search markets...
|
|
240
242
|
|
|
241
243
|
Watchlist │ $74,678│ ││ $2,220│ │
|
|
242
|
-
BTC Bitcoin
|
|
243
|
-
ETH Ethereum
|
|
244
|
-
SOL Solana
|
|
245
|
-
XRP XRP
|
|
246
|
-
DOGE Dogecoin
|
|
247
|
-
BNB BNB
|
|
244
|
+
BTC Bitcoin $67,641 -0.2% │ │ ▌▌ │ │ ││
|
|
245
|
+
ETH Ethereum $1,971 -0.3% │ │ │ │ ▌▘▌ │ ▖▖│ │ ▌▌▖
|
|
246
|
+
SOL Solana $83.31 -0.4% │ │ ▖▖ ││▌ ▌│ │ ▌▘▌ ││││▌│▌
|
|
247
|
+
XRP XRP $1.36 -0.4% │ $68,318│ ▌▘▌ ││▌▘▘ ▘▘ $2,000│ ▌│▌ ▌▌▌▌▌ ▘▘
|
|
248
|
+
DOGE Dogecoin $0.0901 -0.5% │ │▖ ▌│▌▖▌▘▘│ ││ ▌ ▘▌▌│││
|
|
249
|
+
BNB BNB $622 -0.3% │ │▌▌▘ ▘▘ │▌▖▌ ││
|
|
248
250
|
│ $61,957│ │ │ $1,780│││
|
|
249
251
|
Mixed Components │ 30d Now 30d Now
|
|
250
|
-
BTC -
|
|
251
|
-
ETH -
|
|
252
|
-
SOL -
|
|
253
|
-
›BTC vs ETH Side-by-side crypto leaders
|
|
254
|
-
DOGE -
|
|
252
|
+
BTC - CandlesReal BTC/US...rly candles $67,641 │
|
|
253
|
+
ETH - C...e + LineCandles p...sing line $1,971 │ ────────────────────────────────────────────
|
|
254
|
+
SOL - Ca... + Volum Candles ...me split $83.31 │
|
|
255
|
+
›BTC vs ETH Side-by-side crypto leaders $67,641 │ Price: $67,641
|
|
256
|
+
DOGE - ...e + LineLow-pric...ormatting $0.0901 │
|
|
255
257
|
│ Change: -0.2%
|
|
256
258
|
│
|
|
257
259
|
│
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
260
|
+
│
|
|
261
|
+
│
|
|
262
|
+
│
|
|
263
|
+
│
|
|
264
|
+
↵ open detail ↑↓ navigate ^k actions │
|
|
263
265
|
|
|
264
266
|
"
|
|
265
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
|
`)
|