@tradejs/app 3.1.28-beta.253 → 3.1.28-beta.255

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tradejs/app",
3
- "version": "3.1.28-beta.253",
3
+ "version": "3.1.28-beta.255",
4
4
  "description": "Installable Next.js UI for the TradeJS TypeScript framework: dashboards, backtests, charts, and runtime data.",
5
5
  "keywords": [
6
6
  "tradejs",
@@ -56,11 +56,11 @@
56
56
  "@chakra-ui/charts": "3.36.1",
57
57
  "@chakra-ui/react": "3.36.1",
58
58
  "@emotion/react": "^11.14.0",
59
- "@tradejs/core": "^3.1.28-beta.253",
60
- "@tradejs/indicators": "^3.1.28-beta.253",
61
- "@tradejs/infra": "^3.1.28-beta.253",
62
- "@tradejs/node": "^3.1.28-beta.253",
63
- "@tradejs/types": "^3.1.28-beta.253",
59
+ "@tradejs/core": "^3.1.28-beta.255",
60
+ "@tradejs/indicators": "^3.1.28-beta.255",
61
+ "@tradejs/infra": "^3.1.28-beta.255",
62
+ "@tradejs/node": "^3.1.28-beta.255",
63
+ "@tradejs/types": "^3.1.28-beta.255",
64
64
  "@types/bcryptjs": "2.4.6",
65
65
  "@types/lodash": "4.17.24",
66
66
  "@types/node": "24.13.3",
@@ -107,7 +107,11 @@ export const RuntimeStrategyChart = ({
107
107
  <ReferenceLine
108
108
  key={`${change.timestamp}:${change.strategyRevision}`}
109
109
  x={change.timestamp}
110
- stroke={chart.color('orange.400')}
110
+ stroke={chart.color(
111
+ change.kind === 'strategy_package'
112
+ ? 'red.400'
113
+ : 'orange.400',
114
+ )}
111
115
  strokeDasharray="4 4"
112
116
  />
113
117
  ))}