funhi-chart 1.3.1 → 1.3.2

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.
@@ -9,5 +9,9 @@ export interface ChartProps {
9
9
  analyticsConnected?: boolean;
10
10
  analyticsLoading?: boolean;
11
11
  }
12
+ /**
13
+ * FunhiChart - OOP-based implementation using FunhiChartController
14
+ * This version eliminates code duplication and uses clean OOP architecture
15
+ */
12
16
  declare const FunhiChart: React.FC<ChartProps>;
13
17
  export default FunhiChart;
@@ -7,7 +7,6 @@
7
7
  * @packageDocumentation
8
8
  */
9
9
  export { default as FunhiChart } from './components/FunhiChart';
10
- export { default as FunhiChartOOP } from './components/FunhiChartOOP';
11
10
  export type { ChartProps } from './components/FunhiChart';
12
11
  export { useSocket } from './hooks/useSocket';
13
12
  export { useOptimizedTokenAnalytics } from './hooks/useOptimizedTokenAnalytics';
package/dist/index.d.ts CHANGED
@@ -12,13 +12,11 @@ interface ChartProps {
12
12
  analyticsConnected?: boolean;
13
13
  analyticsLoading?: boolean;
14
14
  }
15
- declare const FunhiChart: React.FC<ChartProps>;
16
-
17
15
  /**
18
- * FunhiChartOOP - OOP-based implementation using FunhiChartController
16
+ * FunhiChart - OOP-based implementation using FunhiChartController
19
17
  * This version eliminates code duplication and uses clean OOP architecture
20
18
  */
21
- declare const FunhiChartOOP: React.FC<ChartProps>;
19
+ declare const FunhiChart: React.FC<ChartProps>;
22
20
 
23
21
  interface OHLCVCandle {
24
22
  time: number;
@@ -297,5 +295,5 @@ declare const API_CONFIG: {
297
295
  readonly RETRY_DELAY: 1000;
298
296
  };
299
297
 
300
- export { API_CONFIG, FunhiChart, FunhiChartOOP, candleAggregation, candleStorageService, useOptimizedTokenAnalytics, useSocket };
298
+ export { API_CONFIG, FunhiChart, candleAggregation, candleStorageService, useOptimizedTokenAnalytics, useSocket };
301
299
  export type { CandleData$1 as CandleData, ChartProps, GetCandlesRequest, SaveCandleRequest, SaveCandlesRequest, TimeFrame };