@kodiak-finance/orderly-eslint-config 2.8.16-rc.7 → 2.8.17

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +34 -25
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,21 +1,12 @@
1
1
  # @orderly.network/eslint-config
2
2
 
3
- ## 2.8.16-rc.7
4
-
5
- ### Patch Changes
6
-
7
- - fix price chart to update the end date to align with volume/pnl/fees
8
-
9
- ## 2.8.16-rc.6
3
+ ## 2.8.17
10
4
 
11
5
  ### Patch Changes
12
6
 
7
+ - e1225ff: update to add price charts
8
+ - 22836d8: Comprehensive symbol performance analysis feature enabling traders to track detailed per-symbol trading metrics with interactive charts and customizable date ranges.
13
9
  - 814108c: update how chart data are fetched
14
-
15
- ## 2.8.16-rc.5
16
-
17
- ### Patch Changes
18
-
19
10
  - c0ac848: Fix symbol performance charts and UX improvements
20
11
  - Fix Y-axis even spacing on price chart with intelligent tick calculation
21
12
  - Fix fees chart Y-axis to start from 0.0 with no excessive whitespace
@@ -23,29 +14,47 @@
23
14
  - Make chart tooltips conditional for cumulative data visibility
24
15
  - Improve tooltip styling with consistent gray labels for dates
25
16
 
26
- ## 2.8.16-rc.4
27
-
28
- ### Patch Changes
29
-
30
- - update line charts
17
+ - 8548b5d: update
18
+ - dd79522: update line charts
19
+ - 8548b5d: update charts correctly
20
+ - a17dc80: fix price chart to update the end date to align with volume/pnl/fees
31
21
 
32
- ## 2.8.16-rc.3
22
+ ## 2.8.16
33
23
 
34
24
  ### Patch Changes
35
25
 
36
- - update to add price charts
26
+ - d1e3718: fix: restore isMobile guard in useLinkDevice to prevent funded account reversion
37
27
 
38
- ## 2.8.16-rc.2
28
+ The previous change removed the isMobile guard from link device effects to support
29
+ iPad QR code scanning. However, this is breaking funded account switching because:
30
+ 1. Removing isMobile made getLinkDeviceData() called unconditionally on all devices
31
+ 2. Funded accounts don't have ?link= URL parameter, so linkData is always undefined
32
+ 3. useWalletStateHandle checks !linkData to decide whether to auto-sync address
33
+ 4. With linkData always undefined, auto-sync was triggered on all devices
34
+ 5. This caused the funded address to revert back to wallet.accounts[0] (MetaMask)
39
35
 
40
- ### Patch Changes
36
+ Solution: Restore isMobile guard to limit device linking to mobile devices only.
37
+ This prevents the unintended auto-sync behavior while maintaining the core
38
+ device linking functionality on mobile.
41
39
 
42
- - update charts correctly
40
+ Fixes: Foxify integration - funded account address reverting to MetaMask
43
41
 
44
- ## 2.8.16-rc.1
42
+ - 475a4c9: ## Symbol Performance Enhancement: Table View, Chart Fixes, and i18n Updates
45
43
 
46
- ### Patch Changes
44
+ ### Features
45
+ - Added table view toggle for Symbol Performance page with Chart/Table switching capability
46
+ - Implemented DataTable component displaying aggregated performance data with columns: Date, Daily P&L (color-coded), Daily Volume (K/M/B formatted), Daily Fees (K/M/B formatted)
47
+ - Added `formatVolumeValue()` helper for consistent number formatting across charts and tables
47
48
 
48
- - update
49
+ ### Bug Fixes
50
+ - Fixed x-axis label alignment in PnL and Volume bar charts - labels now properly center on their corresponding bars
51
+ - Restored tooltip display on Volume and Fees charts for all data points, including zero values, matching PnL chart behavior
52
+ - Fixed chart margins and reference line styling for consistent visualization
53
+
54
+ ### i18n Translations
55
+ - Updated portfolio.symbolPerformance translation keys across all 15 language files (de, en, es, fr, id, it, ja, ko, nl, pl, pt, ru, tr, uk, vi, zh)
56
+ - Added new translation keys for table columns: realizedPnL, volume, fees, dailyPnL, dailyVolume, dailyFees
57
+ - Added aggregation-related keys: timeframe, aggregated, cumulative for improved UI labeling
49
58
 
50
59
  ## 2.8.16-rc.0
51
60
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kodiak-finance/orderly-eslint-config",
3
- "version": "2.8.16-rc.7",
3
+ "version": "2.8.17",
4
4
  "main": "index.mjs",
5
5
  "module": "index.mjs",
6
6
  "license": "MIT",