funhi-chart 1.3.8 → 1.4.1

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": "funhi-chart",
3
- "version": "1.3.8",
3
+ "version": "1.4.1",
4
4
  "description": "FunhiChart - Professional real-time trading chart component powered by TradingView's Lightweight Charts with WebSocket support",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,13 +0,0 @@
1
- import React from 'react';
2
- export interface ChartProps {
3
- mint: string;
4
- ticker?: string;
5
- tokenName?: string;
6
- socket?: any;
7
- isConnected?: boolean;
8
- currentMarketCap?: number;
9
- analyticsConnected?: boolean;
10
- analyticsLoading?: boolean;
11
- }
12
- declare const FunhiChartIsolated: React.FC<ChartProps>;
13
- export default FunhiChartIsolated;
@@ -1,8 +0,0 @@
1
- import React from 'react';
2
- import type { ChartProps } from './FunhiChart';
3
- /**
4
- * FunhiChartOOP - OOP-based implementation using FunhiChartController
5
- * This version eliminates code duplication and uses clean OOP architecture
6
- */
7
- declare const FunhiChartOOP: React.FC<ChartProps>;
8
- export default FunhiChartOOP;
@@ -1,13 +0,0 @@
1
- import React from 'react';
2
- export interface ChartProps {
3
- mint: string;
4
- ticker?: string;
5
- tokenName?: string;
6
- socket?: any;
7
- isConnected?: boolean;
8
- currentMarketCap?: number;
9
- analyticsConnected?: boolean;
10
- analyticsLoading?: boolean;
11
- }
12
- declare const ProfessionalTradingChartRedux: React.FC<ChartProps>;
13
- export default ProfessionalTradingChartRedux;