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

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 +30 -5
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,16 +1,41 @@
1
1
  # @orderly.network/eslint-config
2
2
 
3
- ## 2.8.16-rc.2
3
+ ## 2.8.16
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - update charts correctly
7
+ - d1e3718: fix: restore isMobile guard in useLinkDevice to prevent funded account reversion
8
8
 
9
- ## 2.8.16-rc.1
9
+ The previous change removed the isMobile guard from link device effects to support
10
+ iPad QR code scanning. However, this is breaking funded account switching because:
11
+ 1. Removing isMobile made getLinkDeviceData() called unconditionally on all devices
12
+ 2. Funded accounts don't have ?link= URL parameter, so linkData is always undefined
13
+ 3. useWalletStateHandle checks !linkData to decide whether to auto-sync address
14
+ 4. With linkData always undefined, auto-sync was triggered on all devices
15
+ 5. This caused the funded address to revert back to wallet.accounts[0] (MetaMask)
10
16
 
11
- ### Patch Changes
17
+ Solution: Restore isMobile guard to limit device linking to mobile devices only.
18
+ This prevents the unintended auto-sync behavior while maintaining the core
19
+ device linking functionality on mobile.
12
20
 
13
- - update
21
+ Fixes: Foxify integration - funded account address reverting to MetaMask
22
+
23
+ - 475a4c9: ## Symbol Performance Enhancement: Table View, Chart Fixes, and i18n Updates
24
+
25
+ ### Features
26
+ - Added table view toggle for Symbol Performance page with Chart/Table switching capability
27
+ - 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)
28
+ - Added `formatVolumeValue()` helper for consistent number formatting across charts and tables
29
+
30
+ ### Bug Fixes
31
+ - Fixed x-axis label alignment in PnL and Volume bar charts - labels now properly center on their corresponding bars
32
+ - Restored tooltip display on Volume and Fees charts for all data points, including zero values, matching PnL chart behavior
33
+ - Fixed chart margins and reference line styling for consistent visualization
34
+
35
+ ### i18n Translations
36
+ - 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)
37
+ - Added new translation keys for table columns: realizedPnL, volume, fees, dailyPnL, dailyVolume, dailyFees
38
+ - Added aggregation-related keys: timeframe, aggregated, cumulative for improved UI labeling
14
39
 
15
40
  ## 2.8.16-rc.0
16
41
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kodiak-finance/orderly-eslint-config",
3
- "version": "2.8.16-rc.2",
3
+ "version": "2.8.16",
4
4
  "main": "index.mjs",
5
5
  "module": "index.mjs",
6
6
  "license": "MIT",