@djangocfg/centrifugo 2.1.155 → 2.1.157

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": "@djangocfg/centrifugo",
3
- "version": "2.1.155",
3
+ "version": "2.1.157",
4
4
  "description": "Production-ready Centrifugo WebSocket client for React with real-time subscriptions, RPC patterns, and connection state management",
5
5
  "keywords": [
6
6
  "centrifugo",
@@ -63,10 +63,10 @@
63
63
  "centrifuge": "^5.2.2"
64
64
  },
65
65
  "peerDependencies": {
66
- "@djangocfg/api": "^2.1.155",
67
- "@djangocfg/i18n": "^2.1.155",
68
- "@djangocfg/ui-core": "^2.1.155",
69
- "@djangocfg/ui-tools": "^2.1.155",
66
+ "@djangocfg/api": "^2.1.157",
67
+ "@djangocfg/i18n": "^2.1.157",
68
+ "@djangocfg/ui-core": "^2.1.157",
69
+ "@djangocfg/ui-tools": "^2.1.157",
70
70
  "consola": "^3.4.2",
71
71
  "lucide-react": "^0.545.0",
72
72
  "moment": "^2.30.1",
@@ -74,11 +74,11 @@
74
74
  "react-dom": "^19.1.0"
75
75
  },
76
76
  "devDependencies": {
77
- "@djangocfg/api": "^2.1.155",
78
- "@djangocfg/i18n": "^2.1.155",
79
- "@djangocfg/typescript-config": "^2.1.155",
80
- "@djangocfg/ui-core": "^2.1.155",
81
- "@djangocfg/ui-tools": "^2.1.155",
77
+ "@djangocfg/api": "^2.1.157",
78
+ "@djangocfg/i18n": "^2.1.157",
79
+ "@djangocfg/typescript-config": "^2.1.157",
80
+ "@djangocfg/ui-core": "^2.1.157",
81
+ "@djangocfg/ui-tools": "^2.1.157",
82
82
  "@types/node": "^24.7.2",
83
83
  "@types/react": "^19.1.0",
84
84
  "@types/react-dom": "^19.1.0",
@@ -198,7 +198,7 @@ export function LogsTab() {
198
198
  <span className="text-slate-200">{log.message}</span>
199
199
 
200
200
  {/* Data (if present) */}
201
- {log.data && (
201
+ {log.data !== undefined && (
202
202
  <details className="text-slate-400 cursor-pointer">
203
203
  <summary className="inline">
204
204
  <Badge variant="outline" className="text-xs ml-2">
@@ -96,7 +96,7 @@ export function SubscriptionsTab() {
96
96
  </div>
97
97
 
98
98
  {/* Additional Info */}
99
- {sub.data && (
99
+ {sub.data !== undefined && (
100
100
  <div className="text-xs text-muted-foreground">
101
101
  <details className="cursor-pointer">
102
102
  <summary className="inline">View data</summary>