├── .gitignore ├── indicators ├── index.js.map ├── index.d.ts ├── index.js ├── AD.d.ts ├── AO.d.ts ├── BB.d.ts ├── PC.d.ts ├── APO.d.ts ├── ATR.d.ts ├── CCI.d.ts ├── CMF.d.ts ├── CMO.d.ts ├── DMI.d.ts ├── DPO.d.ts ├── EMA.d.ts ├── IKH.d.ts ├── MFI.d.ts ├── OBV.d.ts ├── PPO.d.ts ├── ROC.d.ts ├── RSI.d.ts ├── SMA.d.ts ├── VBP.d.ts ├── WMA.d.ts ├── DEMA.d.ts ├── MACD.d.ts ├── NATR.d.ts ├── PSAR.d.ts ├── TEMA.d.ts ├── TRIX.d.ts ├── VWAP.d.ts ├── Aroon.d.ts ├── ABands.d.ts ├── Zigzag.d.ts ├── Chaikin.d.ts ├── Klinger.d.ts ├── Momentum.d.ts ├── TrendLine.d.ts ├── WilliamsR.d.ts ├── Stochastic.d.ts ├── Supertrend.d.ts ├── PivotPoints.d.ts ├── DisparityIndex.d.ts ├── PriceEnvelopes.d.ts ├── SlowStochastic.d.ts ├── AD.js.map ├── AO.js.map ├── APO.js.map ├── ATR.js.map ├── AroonOscillator.d.ts ├── BB.js.map ├── CCI.js.map ├── CMF.js.map ├── CMO.js.map ├── DMI.js.map ├── DPO.js.map ├── EMA.js.map ├── IKH.js.map ├── KeltnerChannels.d.ts ├── MFI.js.map ├── OBV.js.map └── PC.js.map ├── index.js.map ├── options ├── Title.js.map ├── XAxis.js.map ├── YAxis.js.map ├── Legend.js.map ├── Credits.js.map ├── Subtitle.js.map ├── PlotOptions.js.map ├── Tooltip.js.map ├── index.js.map ├── Data.js.map ├── Title.js ├── Accessibility.js.map ├── XAxis.js ├── YAxis.js ├── Credits.js ├── Legend.js ├── Subtitle.js ├── Tooltip.js ├── PlotOptions.js ├── index.d.ts ├── index.js ├── Data.js ├── Exporting.js.map ├── Accessibility.js ├── Subtitle.d.ts ├── Title.d.ts └── Credits.d.ts ├── index.d.ts ├── index.js ├── series ├── index.js.map ├── index.d.ts ├── index.js ├── Bar.js.map ├── Pie.js.map ├── Area.js.map ├── HLC.js.map ├── Line.js.map ├── Map.js.map ├── OHLC.js.map ├── Column.js.map ├── Flags.js.map ├── Spline.js.map ├── Heatmap.js.map ├── MapData.js.map ├── MapLine.js.map ├── Scatter.js.map ├── MapBubble.js.map ├── MapPoint.js.map ├── AreaSpline.js.map ├── ZoomEnabled.js.map ├── Bar.js ├── Map.js ├── Pie.js ├── Bar.d.ts ├── HLC.d.ts ├── HLC.js ├── Map.d.ts ├── Pie.d.ts ├── Area.d.ts ├── Area.js ├── Item.d.ts ├── Line.d.ts ├── Line.js ├── OHLC.d.ts ├── Venn.d.ts ├── OHLC.js ├── Flags.d.ts ├── Flags.js ├── Gantt.d.ts ├── Gauge.d.ts ├── Renko.d.ts ├── Bubble.d.ts ├── Bullet.d.ts ├── Candlestick.js.map ├── Column.d.ts ├── Column.js ├── Funnel.d.ts ├── Pareto.d.ts ├── Sankey.d.ts ├── Spline.d.ts ├── Spline.js ├── Vector.d.ts ├── XRange.d.ts ├── BoxPlot.d.ts ├── FlowMap.d.ts ├── Heatmap.d.ts ├── MapData.d.ts ├── MapLine.d.ts ├── Polygon.d.ts ├── Pyramid.d.ts ├── Scatter.d.ts ├── Tilemap.d.ts ├── Treemap.d.ts ├── Heatmap.js ├── Scatter.js ├── Cylinder.d.ts ├── Dumbbell.d.ts ├── ErrorBar.d.ts ├── Funnel3D.d.ts ├── Lollipop.d.ts ├── MapData.js ├── MapLine.js ├── MapPoint.d.ts ├── Sunburst.d.ts ├── Timeline.d.ts ├── Variwide.d.ts ├── Windbarb.d.ts ├── AreaRange.d.ts ├── Bellcurve.d.ts ├── Histogram.d.ts ├── MapBubble.d.ts ├── MapPoint.js ├── Pictorial.d.ts ├── Pyramid3D.d.ts ├── Scatter3D.d.ts ├── Treegraph.d.ts ├── Waterfall.d.ts ├── Wordcloud.d.ts ├── ArcDiagram.d.ts ├── AreaSpline.d.ts ├── GeoHeatmap.d.ts ├── HeikinAshi.d.ts ├── MapBubble.js ├── SolidGauge.d.ts ├── AreaSpline.js ├── Candlestick.d.ts ├── ColumnRange.d.ts ├── Streamgraph.d.ts ├── TiledWebMap.d.ts ├── VariablePie.d.ts ├── ZoomEnabled.d.ts ├── Networkgraph.d.ts ├── Organization.d.ts ├── PackedBubble.d.ts ├── ZoomEnabled.js ├── ColumnPyramid.d.ts ├── PointAndFigure.d.ts ├── Item.js.map └── Venn.js.map ├── tsconfig.json └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | demo/bundle.js 3 | package-lock.json 4 | yarn.lock 5 | .source.* 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /indicators/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/indicators/index.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG"} -------------------------------------------------------------------------------- /index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["src/index.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,uBAAuB,CAAC"} -------------------------------------------------------------------------------- /indicators/index.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | -------------------------------------------------------------------------------- /indicators/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /options/Title.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Title.js","sourceRoot":"","sources":["../src/options/Title.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAsBH,MAAM,UAAU,KAAK,CAAC,KAAiB;IACrC,OAAO,IAAI,CAAC;AACd,CAAC;AAED,KAAK,CAAC,QAAQ,GAAG;IACf,IAAI,EAAE,WAAW;IACjB,QAAQ,EAAE,OAAO;IACjB,WAAW,EAAE,MAAM;IACnB,cAAc,EAAE,SAAS;IACzB,WAAW,EAAE,KAAK;CACnB,CAAC;AAEF,eAAe,KAAK,CAAC"} -------------------------------------------------------------------------------- /options/XAxis.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"XAxis.js","sourceRoot":"","sources":["../src/options/XAxis.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAqRH,MAAM,UAAU,KAAK,CAAC,KAAiB;IACrC,OAAO,IAAI,CAAC;AACd,CAAC;AAED,KAAK,CAAC,QAAQ,GAAG;IACf,IAAI,EAAE,WAAW;IACjB,QAAQ,EAAE,OAAO;IACjB,WAAW,EAAE,YAAY;IACzB,cAAc,EAAE,SAAS;IACzB,WAAW,EAAE,IAAI;CAClB,CAAC;AAEF,eAAe,KAAK,CAAC"} -------------------------------------------------------------------------------- /options/YAxis.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"YAxis.js","sourceRoot":"","sources":["../src/options/YAxis.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAuVH,MAAM,UAAU,KAAK,CAAC,KAAiB;IACrC,OAAO,IAAI,CAAC;AACd,CAAC;AAED,KAAK,CAAC,QAAQ,GAAG;IACf,IAAI,EAAE,WAAW;IACjB,QAAQ,EAAE,OAAO;IACjB,WAAW,EAAE,YAAY;IACzB,cAAc,EAAE,SAAS;IACzB,WAAW,EAAE,IAAI;CAClB,CAAC;AAEF,eAAe,KAAK,CAAC"} -------------------------------------------------------------------------------- /options/Legend.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Legend.js","sourceRoot":"","sources":["../src/options/Legend.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAgIH,MAAM,UAAU,MAAM,CAAC,KAAkB;IACvC,OAAO,IAAI,CAAC;AACd,CAAC;AAED,MAAM,CAAC,QAAQ,GAAG;IAChB,IAAI,EAAE,WAAW;IACjB,QAAQ,EAAE,QAAQ;IAClB,WAAW,EAAE,aAAa;IAC1B,cAAc,EAAE,SAAS;IACzB,WAAW,EAAE,KAAK;CACnB,CAAC;AAEF,eAAe,MAAM,CAAC"} -------------------------------------------------------------------------------- /options/Credits.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Credits.js","sourceRoot":"","sources":["../src/options/Credits.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAmBH,MAAM,UAAU,OAAO,CAAC,KAAmB;IACzC,OAAO,IAAI,CAAC;AACd,CAAC;AAED,OAAO,CAAC,QAAQ,GAAG;IACjB,IAAI,EAAE,WAAW;IACjB,QAAQ,EAAE,SAAS;IACnB,WAAW,EAAE,MAAM;IACnB,cAAc,EAAE,SAAS;IACzB,WAAW,EAAE,KAAK;CACnB,CAAC;AAEF,eAAe,OAAO,CAAC"} -------------------------------------------------------------------------------- /options/Subtitle.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Subtitle.js","sourceRoot":"","sources":["../src/options/Subtitle.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAoBH,MAAM,UAAU,QAAQ,CAAC,KAAoB;IAC3C,OAAO,IAAI,CAAC;AACd,CAAC;AAED,QAAQ,CAAC,QAAQ,GAAG;IAClB,IAAI,EAAE,WAAW;IACjB,QAAQ,EAAE,UAAU;IACpB,WAAW,EAAE,MAAM;IACnB,cAAc,EAAE,SAAS;IACzB,WAAW,EAAE,KAAK;CACnB,CAAC;AAEF,eAAe,QAAQ,CAAC"} -------------------------------------------------------------------------------- /options/PlotOptions.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"PlotOptions.js","sourceRoot":"","sources":["../src/options/PlotOptions.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAyVH,MAAM,UAAU,WAAW,CAAC,KAAuB;IACjD,OAAO,IAAI,CAAC;AACd,CAAC;AAED,WAAW,CAAC,QAAQ,GAAG;IACrB,IAAI,EAAE,WAAW;IACjB,QAAQ,EAAE,aAAa;IACvB,WAAW,EAAE,EAAE;IACf,cAAc,EAAE,SAAS;IACzB,WAAW,EAAE,KAAK;CACnB,CAAC;AAEF,eAAe,WAAW,CAAC"} -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | export * from "./Highcharts.js"; 13 | export * from "./options/index.js"; 14 | export * from "./indicators/index.js"; 15 | -------------------------------------------------------------------------------- /options/Tooltip.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Tooltip.js","sourceRoot":"","sources":["../src/options/Tooltip.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAmEH,MAAM,UAAU,OAAO,CAAC,KAAmB;IACzC,OAAO,IAAI,CAAC;AACd,CAAC;AAED,OAAO,CAAC,QAAQ,GAAG;IACjB,IAAI,EAAE,WAAW;IACjB,QAAQ,EAAE,SAAS;IACnB,WAAW,EAAE,QAAQ;IACrB,cAAc,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE;IACjC,WAAW,EAAE,KAAK;CACnB,CAAC;AAEF,eAAe,OAAO,CAAC"} -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | export * from "./Highcharts.js"; 13 | export * from "./options/index.js"; 14 | export * from "./indicators/index.js"; 15 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /options/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/options/index.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AACH,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,YAAY,CAAC;AAC9C,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,cAAc,CAAC;AAClD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,cAAc,CAAC;AAClD,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,aAAa,CAAC;AAChD,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,YAAY,CAAC;AAC9C,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,YAAY,CAAC;AAC9C,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,kBAAkB,CAAC"} -------------------------------------------------------------------------------- /options/Data.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Data.js","sourceRoot":"","sources":["../src/options/Data.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD,OAAO,IAAI,MAAM,oCAAoC,CAAC;AAEtD,IAAI,OAAO,aAAa,EAAE,CAAC,UAAU,KAAK,WAAW,EAAE,CAAC;IACtD,OAAO,IAAI,KAAK,UAAU,IAAI,IAAI,CAAC,aAAa,EAAE,CAAC,CAAC;AACtD,CAAC;AAuCD,MAAM,UAAU,IAAI,CAAC,KAAgB;IACnC,OAAO,IAAI,CAAC;AACd,CAAC;AAED,IAAI,CAAC,QAAQ,GAAG;IACd,IAAI,EAAE,WAAW;IACjB,QAAQ,EAAE,MAAM;IAChB,WAAW,EAAE,EAAE;IACf,cAAc,EAAE,SAAS;IACzB,WAAW,EAAE,KAAK;CACnB,CAAC;AAEF,eAAe,IAAI,CAAC"} -------------------------------------------------------------------------------- /options/Title.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | export function Title(props) { 13 | return null; 14 | } 15 | Title._HCReact = { 16 | type: "HC_Option", 17 | HCOption: "title", 18 | childOption: "text", 19 | defaultOptions: undefined, 20 | isArrayType: false, 21 | }; 22 | export default Title; 23 | //# sourceMappingURL=Title.js.map -------------------------------------------------------------------------------- /options/Accessibility.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Accessibility.js","sourceRoot":"","sources":["../src/options/Accessibility.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD,OAAO,aAAa,MAAM,6CAA6C,CAAC;AAExE,IAAI,OAAO,aAAa,EAAE,CAAC,UAAU,KAAK,WAAW,EAAE,CAAC;IACtD,OAAO,aAAa,KAAK,UAAU,IAAI,aAAa,CAAC,aAAa,EAAE,CAAC,CAAC;AACxE,CAAC;AA8DD,MAAM,UAAU,aAAa,CAAC,KAAyB;IACrD,OAAO,IAAI,CAAC;AACd,CAAC;AAED,aAAa,CAAC,QAAQ,GAAG;IACvB,IAAI,EAAE,WAAW;IACjB,QAAQ,EAAE,eAAe;IACzB,WAAW,EAAE,EAAE;IACf,cAAc,EAAE,SAAS;IACzB,WAAW,EAAE,KAAK;CACnB,CAAC;AAEF,eAAe,aAAa,CAAC"} -------------------------------------------------------------------------------- /options/XAxis.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | export function XAxis(props) { 13 | return null; 14 | } 15 | XAxis._HCReact = { 16 | type: "HC_Option", 17 | HCOption: "xAxis", 18 | childOption: "title.text", 19 | defaultOptions: undefined, 20 | isArrayType: true, 21 | }; 22 | export default XAxis; 23 | //# sourceMappingURL=XAxis.js.map -------------------------------------------------------------------------------- /options/YAxis.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | export function YAxis(props) { 13 | return null; 14 | } 15 | YAxis._HCReact = { 16 | type: "HC_Option", 17 | HCOption: "yAxis", 18 | childOption: "title.text", 19 | defaultOptions: undefined, 20 | isArrayType: true, 21 | }; 22 | export default YAxis; 23 | //# sourceMappingURL=YAxis.js.map -------------------------------------------------------------------------------- /options/Credits.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | export function Credits(props) { 13 | return null; 14 | } 15 | Credits._HCReact = { 16 | type: "HC_Option", 17 | HCOption: "credits", 18 | childOption: "text", 19 | defaultOptions: undefined, 20 | isArrayType: false, 21 | }; 22 | export default Credits; 23 | //# sourceMappingURL=Credits.js.map -------------------------------------------------------------------------------- /options/Legend.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | export function Legend(props) { 13 | return null; 14 | } 15 | Legend._HCReact = { 16 | type: "HC_Option", 17 | HCOption: "legend", 18 | childOption: "labelFormat", 19 | defaultOptions: undefined, 20 | isArrayType: false, 21 | }; 22 | export default Legend; 23 | //# sourceMappingURL=Legend.js.map -------------------------------------------------------------------------------- /series/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/series/index.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AACH,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,WAAW,CAAC;AAC5C,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,iBAAiB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,GAAG,EAAE,MAAM,UAAU,CAAC;AAC1C,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,aAAa,CAAC;AAChD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,cAAc,CAAC;AAClD,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,WAAW,CAAC;AAC5C,OAAO,EAAE,OAAO,IAAI,GAAG,EAAE,MAAM,UAAU,CAAC;AAC1C,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,cAAc,CAAC;AAClD,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,aAAa,CAAC"} -------------------------------------------------------------------------------- /options/Subtitle.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | export function Subtitle(props) { 13 | return null; 14 | } 15 | Subtitle._HCReact = { 16 | type: "HC_Option", 17 | HCOption: "subtitle", 18 | childOption: "text", 19 | defaultOptions: undefined, 20 | isArrayType: false, 21 | }; 22 | export default Subtitle; 23 | //# sourceMappingURL=Subtitle.js.map -------------------------------------------------------------------------------- /options/Tooltip.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | export function Tooltip(props) { 13 | return null; 14 | } 15 | Tooltip._HCReact = { 16 | type: "HC_Option", 17 | HCOption: "tooltip", 18 | childOption: "format", 19 | defaultOptions: { useHTML: true }, 20 | isArrayType: false, 21 | }; 22 | export default Tooltip; 23 | //# sourceMappingURL=Tooltip.js.map -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es6", 4 | "module": "esnext", 5 | "declaration": true, 6 | "lib": ["ESNext", "DOM"], 7 | "jsx": "react", 8 | "sourceMap": true, 9 | "strict":false, 10 | "moduleResolution": "node", 11 | "baseUrl": "./src", 12 | "skipLibCheck": true, 13 | "outDir": "./", 14 | "paths": { 15 | "~/*": ["./*"] 16 | }, 17 | "typeRoots": ["node_modules/@types"], 18 | "allowSyntheticDefaultImports": true, 19 | "esModuleInterop": true 20 | }, 21 | "exclude": [], 22 | "include": ["./**/*"] 23 | } 24 | -------------------------------------------------------------------------------- /options/PlotOptions.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | export function PlotOptions(props) { 13 | return null; 14 | } 15 | PlotOptions._HCReact = { 16 | type: "HC_Option", 17 | HCOption: "plotOptions", 18 | childOption: "", 19 | defaultOptions: undefined, 20 | isArrayType: false, 21 | }; 22 | export default PlotOptions; 23 | //# sourceMappingURL=PlotOptions.js.map -------------------------------------------------------------------------------- /options/index.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | export { default as Title } from "./Title.js"; 13 | export { default as Subtitle } from "./Subtitle.js"; 14 | export { default as Credits } from "./Credits.js"; 15 | export { default as Tooltip } from "./Tooltip.js"; 16 | export { default as Legend } from "./Legend.js"; 17 | export { default as XAxis } from "./XAxis.js"; 18 | export { default as YAxis } from "./YAxis.js"; 19 | export { default as PlotOptions } from "./PlotOptions.js"; 20 | -------------------------------------------------------------------------------- /options/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | export { default as Title } from "./Title.js"; 13 | export { default as Subtitle } from "./Subtitle.js"; 14 | export { default as Credits } from "./Credits.js"; 15 | export { default as Tooltip } from "./Tooltip.js"; 16 | export { default as Legend } from "./Legend.js"; 17 | export { default as XAxis } from "./XAxis.js"; 18 | export { default as YAxis } from "./YAxis.js"; 19 | export { default as PlotOptions } from "./PlotOptions.js"; 20 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /series/index.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | export { default as Area } from "./Area.js"; 13 | export { default as AreaSpline } from "./AreaSpline.js"; 14 | export { default as Bar } from "./Bar.js"; 15 | export { default as Column } from "./Column.js"; 16 | export { default as Heatmap } from "./Heatmap.js"; 17 | export { default as Line } from "./Line.js"; 18 | export { default as Pie } from "./Pie.js"; 19 | export { default as Scatter } from "./Scatter.js"; 20 | export { default as Spline } from "./Spline.js"; 21 | -------------------------------------------------------------------------------- /series/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | export { default as Area } from "./Area.js"; 13 | export { default as AreaSpline } from "./AreaSpline.js"; 14 | export { default as Bar } from "./Bar.js"; 15 | export { default as Column } from "./Column.js"; 16 | export { default as Heatmap } from "./Heatmap.js"; 17 | export { default as Line } from "./Line.js"; 18 | export { default as Pie } from "./Pie.js"; 19 | export { default as Scatter } from "./Scatter.js"; 20 | export { default as Spline } from "./Spline.js"; 21 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /options/Data.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import { getHighcharts } from "../Highcharts.js"; 13 | import data from "highcharts/esm/modules/data.src.js"; 14 | if (typeof getHighcharts().__provided === "undefined") { 15 | typeof data === "function" && data(getHighcharts()); 16 | } 17 | export function Data(props) { 18 | return null; 19 | } 20 | Data._HCReact = { 21 | type: "HC_Option", 22 | HCOption: "data", 23 | childOption: "", 24 | defaultOptions: undefined, 25 | isArrayType: false, 26 | }; 27 | export default Data; 28 | //# sourceMappingURL=Data.js.map -------------------------------------------------------------------------------- /series/Bar.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Bar.js","sourceRoot":"","sources":["../src/series/Bar.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAgC,MAAM,kBAAkB,CAAC;AAEvE;;GAEG;AACH,MAAM,GAAG,GAAG,CAAC,KAAwB,EAAE,EAAE;IACvC,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,KAAK;SACZ;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IAAC,KAAK,EAAE,KAAK,CAAC,KAAK,EAAE,gBAAgB,EAAC,OAAO,EAAC,OAAO,EAAE,WAAW,IACrE,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,SAAS,CAAC,MAAsB;IAC9C,OAAO,IAAI,CAAC;AACd,CAAC;AAED,SAAS,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC1B,GAAG,CAAC,MAAM,GAAG,SAAS,CAAC;AAEvB,SAAS,CAAC,QAAQ,GAAG;IACnB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,YAAY;IACvB,WAAW,EAAE,YAAY;CAC1B,CAAC;AAEF,GAAG,CAAC,IAAI,GAAG,aAAa,CAAC;AACzB,eAAe,GAAG,CAAC"} -------------------------------------------------------------------------------- /series/Pie.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Pie.js","sourceRoot":"","sources":["../src/series/Pie.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAgC,MAAM,kBAAkB,CAAC;AAEvE;;GAEG;AACH,MAAM,GAAG,GAAG,CAAC,KAAwB,EAAE,EAAE;IACvC,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,KAAK;SACZ;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IAAC,KAAK,EAAE,KAAK,CAAC,KAAK,EAAE,gBAAgB,EAAC,OAAO,EAAC,OAAO,EAAE,WAAW,IACrE,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,SAAS,CAAC,MAAsB;IAC9C,OAAO,IAAI,CAAC;AACd,CAAC;AAED,SAAS,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC1B,GAAG,CAAC,MAAM,GAAG,SAAS,CAAC;AAEvB,SAAS,CAAC,QAAQ,GAAG;IACnB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,YAAY;IACvB,WAAW,EAAE,YAAY;CAC1B,CAAC;AAEF,GAAG,CAAC,IAAI,GAAG,aAAa,CAAC;AACzB,eAAe,GAAG,CAAC"} -------------------------------------------------------------------------------- /series/Area.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Area.js","sourceRoot":"","sources":["../src/series/Area.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAgC,MAAM,kBAAkB,CAAC;AAEvE;;GAEG;AACH,MAAM,IAAI,GAAG,CAAC,KAAwB,EAAE,EAAE;IACxC,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,MAAM;SACb;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IAAC,KAAK,EAAE,KAAK,CAAC,KAAK,EAAE,gBAAgB,EAAC,OAAO,EAAC,OAAO,EAAE,WAAW,IACrE,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,UAAU,CAAC,MAAuB;IAChD,OAAO,IAAI,CAAC;AACd,CAAC;AAED,UAAU,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC3B,IAAI,CAAC,MAAM,GAAG,UAAU,CAAC;AAEzB,UAAU,CAAC,QAAQ,GAAG;IACpB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,aAAa;IACxB,WAAW,EAAE,aAAa;CAC3B,CAAC;AAEF,IAAI,CAAC,IAAI,GAAG,aAAa,CAAC;AAC1B,eAAe,IAAI,CAAC"} -------------------------------------------------------------------------------- /series/HLC.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"HLC.js","sourceRoot":"","sources":["../src/series/HLC.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAgC,MAAM,kBAAkB,CAAC;AAEvE;;GAEG;AACH,MAAM,GAAG,GAAG,CAAC,KAAwB,EAAE,EAAE;IACvC,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,KAAK;SACZ;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IACJ,KAAK,EAAE,KAAK,CAAC,KAAK,EAClB,gBAAgB,EAAC,YAAY,EAC7B,OAAO,EAAE,WAAW,IAEnB,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,SAAS,CAAC,MAAsB;IAC9C,OAAO,IAAI,CAAC;AACd,CAAC;AAED,SAAS,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC1B,GAAG,CAAC,MAAM,GAAG,SAAS,CAAC;AAEvB,SAAS,CAAC,QAAQ,GAAG;IACnB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,YAAY;IACvB,WAAW,EAAE,YAAY;CAC1B,CAAC;AAEF,GAAG,CAAC,IAAI,GAAG,aAAa,CAAC;AACzB,eAAe,GAAG,CAAC"} -------------------------------------------------------------------------------- /series/Line.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Line.js","sourceRoot":"","sources":["../src/series/Line.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAgC,MAAM,kBAAkB,CAAC;AAEvE;;GAEG;AACH,MAAM,IAAI,GAAG,CAAC,KAAwB,EAAE,EAAE;IACxC,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,MAAM;SACb;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IAAC,KAAK,EAAE,KAAK,CAAC,KAAK,EAAE,gBAAgB,EAAC,OAAO,EAAC,OAAO,EAAE,WAAW,IACrE,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,UAAU,CAAC,MAAuB;IAChD,OAAO,IAAI,CAAC;AACd,CAAC;AAED,UAAU,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC3B,IAAI,CAAC,MAAM,GAAG,UAAU,CAAC;AAEzB,UAAU,CAAC,QAAQ,GAAG;IACpB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,aAAa;IACxB,WAAW,EAAE,aAAa;CAC3B,CAAC;AAEF,IAAI,CAAC,IAAI,GAAG,aAAa,CAAC;AAC1B,eAAe,IAAI,CAAC"} -------------------------------------------------------------------------------- /series/Map.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Map.js","sourceRoot":"","sources":["../src/series/Map.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAgC,MAAM,kBAAkB,CAAC;AAEvE;;GAEG;AACH,MAAM,GAAG,GAAG,CAAC,KAAwB,EAAE,EAAE;IACvC,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,KAAK;SACZ;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IACJ,KAAK,EAAE,KAAK,CAAC,KAAK,EAClB,gBAAgB,EAAC,UAAU,EAC3B,OAAO,EAAE,WAAW,IAEnB,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,SAAS,CAAC,MAAsB;IAC9C,OAAO,IAAI,CAAC;AACd,CAAC;AAED,SAAS,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC1B,GAAG,CAAC,MAAM,GAAG,SAAS,CAAC;AAEvB,SAAS,CAAC,QAAQ,GAAG;IACnB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,YAAY;IACvB,WAAW,EAAE,YAAY;CAC1B,CAAC;AAEF,GAAG,CAAC,IAAI,GAAG,aAAa,CAAC;AACzB,eAAe,GAAG,CAAC"} -------------------------------------------------------------------------------- /series/OHLC.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"OHLC.js","sourceRoot":"","sources":["../src/series/OHLC.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAgC,MAAM,kBAAkB,CAAC;AAEvE;;GAEG;AACH,MAAM,IAAI,GAAG,CAAC,KAAwB,EAAE,EAAE;IACxC,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,MAAM;SACb;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IACJ,KAAK,EAAE,KAAK,CAAC,KAAK,EAClB,gBAAgB,EAAC,YAAY,EAC7B,OAAO,EAAE,WAAW,IAEnB,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,UAAU,CAAC,MAAuB;IAChD,OAAO,IAAI,CAAC;AACd,CAAC;AAED,UAAU,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC3B,IAAI,CAAC,MAAM,GAAG,UAAU,CAAC;AAEzB,UAAU,CAAC,QAAQ,GAAG;IACpB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,aAAa;IACxB,WAAW,EAAE,aAAa;CAC3B,CAAC;AAEF,IAAI,CAAC,IAAI,GAAG,aAAa,CAAC;AAC1B,eAAe,IAAI,CAAC"} -------------------------------------------------------------------------------- /series/Column.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Column.js","sourceRoot":"","sources":["../src/series/Column.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAgC,MAAM,kBAAkB,CAAC;AAEvE;;GAEG;AACH,MAAM,MAAM,GAAG,CAAC,KAAwB,EAAE,EAAE;IAC1C,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,QAAQ;SACf;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IAAC,KAAK,EAAE,KAAK,CAAC,KAAK,EAAE,gBAAgB,EAAC,OAAO,EAAC,OAAO,EAAE,WAAW,IACrE,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,YAAY,CAAC,MAAyB;IACpD,OAAO,IAAI,CAAC;AACd,CAAC;AAED,YAAY,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC7B,MAAM,CAAC,MAAM,GAAG,YAAY,CAAC;AAE7B,YAAY,CAAC,QAAQ,GAAG;IACtB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,eAAe;IAC1B,WAAW,EAAE,eAAe;CAC7B,CAAC;AAEF,MAAM,CAAC,IAAI,GAAG,aAAa,CAAC;AAC5B,eAAe,MAAM,CAAC"} -------------------------------------------------------------------------------- /series/Flags.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Flags.js","sourceRoot":"","sources":["../src/series/Flags.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAgC,MAAM,kBAAkB,CAAC;AAEvE;;GAEG;AACH,MAAM,KAAK,GAAG,CAAC,KAAwB,EAAE,EAAE;IACzC,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,OAAO;SACd;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IACJ,KAAK,EAAE,KAAK,CAAC,KAAK,EAClB,gBAAgB,EAAC,YAAY,EAC7B,OAAO,EAAE,WAAW,IAEnB,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,WAAW,CAAC,MAAwB;IAClD,OAAO,IAAI,CAAC;AACd,CAAC;AAED,WAAW,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC5B,KAAK,CAAC,MAAM,GAAG,WAAW,CAAC;AAE3B,WAAW,CAAC,QAAQ,GAAG;IACrB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,cAAc;IACzB,WAAW,EAAE,cAAc;CAC5B,CAAC;AAEF,KAAK,CAAC,IAAI,GAAG,aAAa,CAAC;AAC3B,eAAe,KAAK,CAAC"} -------------------------------------------------------------------------------- /series/Spline.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Spline.js","sourceRoot":"","sources":["../src/series/Spline.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAgC,MAAM,kBAAkB,CAAC;AAEvE;;GAEG;AACH,MAAM,MAAM,GAAG,CAAC,KAAwB,EAAE,EAAE;IAC1C,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,QAAQ;SACf;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IAAC,KAAK,EAAE,KAAK,CAAC,KAAK,EAAE,gBAAgB,EAAC,OAAO,EAAC,OAAO,EAAE,WAAW,IACrE,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,YAAY,CAAC,MAAyB;IACpD,OAAO,IAAI,CAAC;AACd,CAAC;AAED,YAAY,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC7B,MAAM,CAAC,MAAM,GAAG,YAAY,CAAC;AAE7B,YAAY,CAAC,QAAQ,GAAG;IACtB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,eAAe;IAC1B,WAAW,EAAE,eAAe;CAC7B,CAAC;AAEF,MAAM,CAAC,IAAI,GAAG,aAAa,CAAC;AAC5B,eAAe,MAAM,CAAC"} -------------------------------------------------------------------------------- /series/Heatmap.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Heatmap.js","sourceRoot":"","sources":["../src/series/Heatmap.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAgC,MAAM,kBAAkB,CAAC;AAEvE;;GAEG;AACH,MAAM,OAAO,GAAG,CAAC,KAAwB,EAAE,EAAE;IAC3C,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,SAAS;SAChB;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IAAC,KAAK,EAAE,KAAK,CAAC,KAAK,EAAE,gBAAgB,EAAC,OAAO,EAAC,OAAO,EAAE,WAAW,IACrE,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,aAAa,CAAC,MAA0B;IACtD,OAAO,IAAI,CAAC;AACd,CAAC;AAED,aAAa,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC9B,OAAO,CAAC,MAAM,GAAG,aAAa,CAAC;AAE/B,aAAa,CAAC,QAAQ,GAAG;IACvB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,gBAAgB;IAC3B,WAAW,EAAE,gBAAgB;CAC9B,CAAC;AAEF,OAAO,CAAC,IAAI,GAAG,aAAa,CAAC;AAC7B,eAAe,OAAO,CAAC"} -------------------------------------------------------------------------------- /series/MapData.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"MapData.js","sourceRoot":"","sources":["../src/series/MapData.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAgC,MAAM,kBAAkB,CAAC;AAEvE;;GAEG;AACH,MAAM,OAAO,GAAG,CAAC,KAAwB,EAAE,EAAE;IAC3C,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,SAAS;SAChB;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IACJ,KAAK,EAAE,KAAK,CAAC,KAAK,EAClB,gBAAgB,EAAC,UAAU,EAC3B,OAAO,EAAE,WAAW,IAEnB,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,aAAa,CAAC,MAA0B;IACtD,OAAO,IAAI,CAAC;AACd,CAAC;AAED,aAAa,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC9B,OAAO,CAAC,MAAM,GAAG,aAAa,CAAC;AAE/B,aAAa,CAAC,QAAQ,GAAG;IACvB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,gBAAgB;IAC3B,WAAW,EAAE,gBAAgB;CAC9B,CAAC;AAEF,OAAO,CAAC,IAAI,GAAG,aAAa,CAAC;AAC7B,eAAe,OAAO,CAAC"} -------------------------------------------------------------------------------- /series/MapLine.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"MapLine.js","sourceRoot":"","sources":["../src/series/MapLine.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAgC,MAAM,kBAAkB,CAAC;AAEvE;;GAEG;AACH,MAAM,OAAO,GAAG,CAAC,KAAwB,EAAE,EAAE;IAC3C,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,SAAS;SAChB;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IACJ,KAAK,EAAE,KAAK,CAAC,KAAK,EAClB,gBAAgB,EAAC,UAAU,EAC3B,OAAO,EAAE,WAAW,IAEnB,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,aAAa,CAAC,MAA0B;IACtD,OAAO,IAAI,CAAC;AACd,CAAC;AAED,aAAa,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC9B,OAAO,CAAC,MAAM,GAAG,aAAa,CAAC;AAE/B,aAAa,CAAC,QAAQ,GAAG;IACvB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,gBAAgB;IAC3B,WAAW,EAAE,gBAAgB;CAC9B,CAAC;AAEF,OAAO,CAAC,IAAI,GAAG,aAAa,CAAC;AAC7B,eAAe,OAAO,CAAC"} -------------------------------------------------------------------------------- /series/Scatter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Scatter.js","sourceRoot":"","sources":["../src/series/Scatter.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAgC,MAAM,kBAAkB,CAAC;AAEvE;;GAEG;AACH,MAAM,OAAO,GAAG,CAAC,KAAwB,EAAE,EAAE;IAC3C,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,SAAS;SAChB;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IAAC,KAAK,EAAE,KAAK,CAAC,KAAK,EAAE,gBAAgB,EAAC,OAAO,EAAC,OAAO,EAAE,WAAW,IACrE,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,aAAa,CAAC,MAA0B;IACtD,OAAO,IAAI,CAAC;AACd,CAAC;AAED,aAAa,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC9B,OAAO,CAAC,MAAM,GAAG,aAAa,CAAC;AAE/B,aAAa,CAAC,QAAQ,GAAG;IACvB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,gBAAgB;IAC3B,WAAW,EAAE,gBAAgB;CAC9B,CAAC;AAEF,OAAO,CAAC,IAAI,GAAG,aAAa,CAAC;AAC7B,eAAe,OAAO,CAAC"} -------------------------------------------------------------------------------- /options/Exporting.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Exporting.js","sourceRoot":"","sources":["../src/options/Exporting.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD,OAAO,SAAS,MAAM,yCAAyC,CAAC;AAEhE,IAAI,OAAO,aAAa,EAAE,CAAC,UAAU,KAAK,WAAW,EAAE,CAAC;IACtD,OAAO,SAAS,KAAK,UAAU,IAAI,SAAS,CAAC,aAAa,EAAE,CAAC,CAAC;AAChE,CAAC;AACD,OAAO,gBAAgB,MAAM,iDAAiD,CAAC;AAE/E,IAAI,OAAO,aAAa,EAAE,CAAC,UAAU,KAAK,WAAW,EAAE,CAAC;IACtD,OAAO,gBAAgB,KAAK,UAAU,IAAI,gBAAgB,CAAC,aAAa,EAAE,CAAC,CAAC;AAC9E,CAAC;AAED,OAAO,UAAU,MAAM,2CAA2C,CAAC;AAEnE,IAAI,OAAO,aAAa,EAAE,CAAC,UAAU,KAAK,WAAW,EAAE,CAAC;IACtD,OAAO,UAAU,KAAK,UAAU,IAAI,UAAU,CAAC,aAAa,EAAE,CAAC,CAAC;AAClE,CAAC;AA6CD,MAAM,UAAU,SAAS,CAAC,KAAqB;IAC7C,OAAO,IAAI,CAAC;AACd,CAAC;AAED,SAAS,CAAC,QAAQ,GAAG;IACnB,IAAI,EAAE,WAAW;IACjB,QAAQ,EAAE,WAAW;IACrB,WAAW,EAAE,EAAE;IACf,cAAc,EAAE,SAAS;IACzB,WAAW,EAAE,KAAK;CACnB,CAAC;AAEF,eAAe,SAAS,CAAC"} -------------------------------------------------------------------------------- /series/MapBubble.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"MapBubble.js","sourceRoot":"","sources":["../src/series/MapBubble.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAgC,MAAM,kBAAkB,CAAC;AAEvE;;GAEG;AACH,MAAM,SAAS,GAAG,CAAC,KAAwB,EAAE,EAAE;IAC7C,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,WAAW;SAClB;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IACJ,KAAK,EAAE,KAAK,CAAC,KAAK,EAClB,gBAAgB,EAAC,UAAU,EAC3B,OAAO,EAAE,WAAW,IAEnB,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,eAAe,CAAC,MAA4B;IAC1D,OAAO,IAAI,CAAC;AACd,CAAC;AAED,eAAe,CAAC,IAAI,GAAG,QAAQ,CAAC;AAChC,SAAS,CAAC,MAAM,GAAG,eAAe,CAAC;AAEnC,eAAe,CAAC,QAAQ,GAAG;IACzB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,kBAAkB;IAC7B,WAAW,EAAE,kBAAkB;CAChC,CAAC;AAEF,SAAS,CAAC,IAAI,GAAG,aAAa,CAAC;AAC/B,eAAe,SAAS,CAAC"} -------------------------------------------------------------------------------- /series/MapPoint.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"MapPoint.js","sourceRoot":"","sources":["../src/series/MapPoint.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAgC,MAAM,kBAAkB,CAAC;AAEvE;;GAEG;AACH,MAAM,QAAQ,GAAG,CAAC,KAAwB,EAAE,EAAE;IAC5C,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,UAAU;SACjB;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IACJ,KAAK,EAAE,KAAK,CAAC,KAAK,EAClB,gBAAgB,EAAC,UAAU,EAC3B,OAAO,EAAE,WAAW,IAEnB,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,cAAc,CAAC,MAA2B;IACxD,OAAO,IAAI,CAAC;AACd,CAAC;AAED,cAAc,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC/B,QAAQ,CAAC,MAAM,GAAG,cAAc,CAAC;AAEjC,cAAc,CAAC,QAAQ,GAAG;IACxB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,iBAAiB;IAC5B,WAAW,EAAE,iBAAiB;CAC/B,CAAC;AAEF,QAAQ,CAAC,IAAI,GAAG,aAAa,CAAC;AAC9B,eAAe,QAAQ,CAAC"} -------------------------------------------------------------------------------- /options/Accessibility.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import { getHighcharts } from "../Highcharts.js"; 13 | import accessibility from "highcharts/esm/modules/accessibility.src.js"; 14 | if (typeof getHighcharts().__provided === "undefined") { 15 | typeof accessibility === "function" && accessibility(getHighcharts()); 16 | } 17 | export function Accessibility(props) { 18 | return null; 19 | } 20 | Accessibility._HCReact = { 21 | type: "HC_Option", 22 | HCOption: "accessibility", 23 | childOption: "", 24 | defaultOptions: undefined, 25 | isArrayType: false, 26 | }; 27 | export default Accessibility; 28 | //# sourceMappingURL=Accessibility.js.map -------------------------------------------------------------------------------- /series/AreaSpline.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"AreaSpline.js","sourceRoot":"","sources":["../src/series/AreaSpline.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAgC,MAAM,kBAAkB,CAAC;AAEvE;;GAEG;AACH,MAAM,UAAU,GAAG,CAAC,KAAwB,EAAE,EAAE;IAC9C,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,YAAY;SACnB;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IAAC,KAAK,EAAE,KAAK,CAAC,KAAK,EAAE,gBAAgB,EAAC,OAAO,EAAC,OAAO,EAAE,WAAW,IACrE,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,gBAAgB,CAAC,MAA6B;IAC5D,OAAO,IAAI,CAAC;AACd,CAAC;AAED,gBAAgB,CAAC,IAAI,GAAG,QAAQ,CAAC;AACjC,UAAU,CAAC,MAAM,GAAG,gBAAgB,CAAC;AAErC,gBAAgB,CAAC,QAAQ,GAAG;IAC1B,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,mBAAmB;IAC9B,WAAW,EAAE,mBAAmB;CACjC,CAAC;AAEF,UAAU,CAAC,IAAI,GAAG,aAAa,CAAC;AAChC,eAAe,UAAU,CAAC"} -------------------------------------------------------------------------------- /series/ZoomEnabled.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"ZoomEnabled.js","sourceRoot":"","sources":["../src/series/ZoomEnabled.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAgC,MAAM,kBAAkB,CAAC;AAEvE;;GAEG;AACH,MAAM,WAAW,GAAG,CAAC,KAAwB,EAAE,EAAE;IAC/C,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,aAAa;SACpB;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IAAC,KAAK,EAAE,KAAK,CAAC,KAAK,EAAE,gBAAgB,EAAC,OAAO,EAAC,OAAO,EAAE,WAAW,IACrE,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,iBAAiB,CAAC,MAA8B;IAC9D,OAAO,IAAI,CAAC;AACd,CAAC;AAED,iBAAiB,CAAC,IAAI,GAAG,QAAQ,CAAC;AAClC,WAAW,CAAC,MAAM,GAAG,iBAAiB,CAAC;AAEvC,iBAAiB,CAAC,QAAQ,GAAG;IAC3B,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,oBAAoB;IAC/B,WAAW,EAAE,oBAAoB;CAClC,CAAC;AAEF,WAAW,CAAC,IAAI,GAAG,aAAa,CAAC;AACjC,eAAe,WAAW,CAAC"} -------------------------------------------------------------------------------- /options/Subtitle.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | export type SubtitleProps = { 13 | align?: Highcharts.AlignValue; 14 | floating?: boolean; 15 | style?: Highcharts.CSSObject; 16 | text?: string; 17 | useHTML?: boolean; 18 | verticalAlign?: Highcharts.VerticalAlignValue; 19 | x?: number; 20 | y?: number; 21 | children?: string | (string | number)[] | React.ReactElement | React.ReactElement[]; 22 | }; 23 | export declare function Subtitle(props: SubtitleProps): any; 24 | export declare namespace Subtitle { 25 | var _HCReact: { 26 | type: string; 27 | HCOption: string; 28 | childOption: string; 29 | defaultOptions: any; 30 | isArrayType: boolean; 31 | }; 32 | } 33 | export default Subtitle; 34 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@highcharts/react", 3 | "version": "4.1.0", 4 | "type": "module", 5 | "description": "Official Highcharts integration for React", 6 | "repository": { 7 | "type": "git", 8 | "url": "git+https://github.com/highcharts/highcharts-react" 9 | }, 10 | "contributors": [ 11 | "Highsoft R&D " 12 | ], 13 | "license": "See license in LICENSE", 14 | "private": true, 15 | "scripts": { 16 | "build": "npx tsc" 17 | }, 18 | "peerDependencies": { 19 | "@types/react": ">=18", 20 | "react": ">=18", 21 | "react-dom": ">=18", 22 | "highcharts": ">=12.0.0" 23 | }, 24 | "peerDependenciesMeta": { 25 | "@types/react": { 26 | "optional": true 27 | } 28 | }, 29 | "devDependencies": { 30 | "typescript": "*" 31 | }, 32 | "main": "index.js", 33 | "types": "index.d.ts", 34 | "keywords": [ 35 | "highcharts", 36 | "highcharts stock", 37 | "higcharts maps", 38 | "react", 39 | "charting" 40 | ] 41 | } 42 | -------------------------------------------------------------------------------- /options/Title.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | export type TitleProps = { 13 | align?: Highcharts.AlignValue; 14 | floating?: boolean; 15 | margin?: number; 16 | minScale?: number; 17 | style?: Highcharts.CSSObject; 18 | text?: string; 19 | useHTML?: boolean; 20 | verticalAlign?: Highcharts.VerticalAlignValue; 21 | x?: number; 22 | y?: number; 23 | children?: string | (string | number)[] | React.ReactElement | React.ReactElement[]; 24 | }; 25 | export declare function Title(props: TitleProps): any; 26 | export declare namespace Title { 27 | var _HCReact: { 28 | type: string; 29 | HCOption: string; 30 | childOption: string; 31 | defaultOptions: any; 32 | isArrayType: boolean; 33 | }; 34 | } 35 | export default Title; 36 | -------------------------------------------------------------------------------- /options/Credits.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | export type CreditsProps = { 13 | enabled?: boolean; 14 | href?: string; 15 | mapText?: string; 16 | mapTextFull?: string; 17 | position?: { 18 | align?: string; 19 | verticalAlign?: string; 20 | x?: number; 21 | y?: number; 22 | }; 23 | style?: Highcharts.CSSObject; 24 | text?: string; 25 | children?: string | (string | number)[] | React.ReactElement | React.ReactElement[]; 26 | }; 27 | export declare function Credits(props: CreditsProps): any; 28 | export declare namespace Credits { 29 | var _HCReact: { 30 | type: string; 31 | HCOption: string; 32 | childOption: string; 33 | defaultOptions: any; 34 | isArrayType: boolean; 35 | }; 36 | } 37 | export default Credits; 38 | -------------------------------------------------------------------------------- /indicators/AD.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesADOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * AD series 17 | */ 18 | declare const AD: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof ADSeries; 21 | type: string; 22 | }; 23 | interface ADSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function ADSeries(_props: ADSeriesProps): any; 28 | export declare namespace ADSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default AD; 37 | -------------------------------------------------------------------------------- /indicators/AO.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesAOOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * AO series 17 | */ 18 | declare const AO: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof AOSeries; 21 | type: string; 22 | }; 23 | interface AOSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function AOSeries(_props: AOSeriesProps): any; 28 | export declare namespace AOSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default AO; 37 | -------------------------------------------------------------------------------- /indicators/BB.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesBBOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * BB series 17 | */ 18 | declare const BB: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof BBSeries; 21 | type: string; 22 | }; 23 | interface BBSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function BBSeries(_props: BBSeriesProps): any; 28 | export declare namespace BBSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default BB; 37 | -------------------------------------------------------------------------------- /indicators/PC.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesPCOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * PC series 17 | */ 18 | declare const PC: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof PCSeries; 21 | type: string; 22 | }; 23 | interface PCSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function PCSeries(_props: PCSeriesProps): any; 28 | export declare namespace PCSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default PC; 37 | -------------------------------------------------------------------------------- /series/Bar.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React, { useState, 13 | // @ts-ignore 14 | } from "react"; 15 | import { Chart } from "../Highcharts.js"; 16 | /** 17 | * Bar series 18 | */ 19 | const Bar = (props) => { 20 | const [chartConfig] = useState(Object.assign({ 21 | chart: { 22 | type: "bar", 23 | }, 24 | }, props.options || {})); 25 | return (React.createElement(Chart, { title: props.title, chartConstructor: "chart", options: chartConfig }, props.children)); 26 | }; 27 | export function BarSeries(_props) { 28 | return null; 29 | } 30 | BarSeries.type = "Series"; 31 | Bar.Series = BarSeries; 32 | BarSeries._HCReact = { 33 | type: "Series", 34 | HC_Option: "series.bar", 35 | childOption: "series.bar", 36 | }; 37 | Bar.type = "SeriesChart"; 38 | export default Bar; 39 | //# sourceMappingURL=Bar.js.map -------------------------------------------------------------------------------- /series/Map.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React, { useState, 13 | // @ts-ignore 14 | } from "react"; 15 | import { Chart } from "../Highcharts.js"; 16 | /** 17 | * Map series 18 | */ 19 | const Map = (props) => { 20 | const [chartConfig] = useState(Object.assign({ 21 | chart: { 22 | type: "map", 23 | }, 24 | }, props.options || {})); 25 | return (React.createElement(Chart, { title: props.title, chartConstructor: "mapChart", options: chartConfig }, props.children)); 26 | }; 27 | export function MapSeries(_props) { 28 | return null; 29 | } 30 | MapSeries.type = "Series"; 31 | Map.Series = MapSeries; 32 | MapSeries._HCReact = { 33 | type: "Series", 34 | HC_Option: "series.map", 35 | childOption: "series.map", 36 | }; 37 | Map.type = "SeriesChart"; 38 | export default Map; 39 | //# sourceMappingURL=Map.js.map -------------------------------------------------------------------------------- /series/Pie.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React, { useState, 13 | // @ts-ignore 14 | } from "react"; 15 | import { Chart } from "../Highcharts.js"; 16 | /** 17 | * Pie series 18 | */ 19 | const Pie = (props) => { 20 | const [chartConfig] = useState(Object.assign({ 21 | chart: { 22 | type: "pie", 23 | }, 24 | }, props.options || {})); 25 | return (React.createElement(Chart, { title: props.title, chartConstructor: "chart", options: chartConfig }, props.children)); 26 | }; 27 | export function PieSeries(_props) { 28 | return null; 29 | } 30 | PieSeries.type = "Series"; 31 | Pie.Series = PieSeries; 32 | PieSeries._HCReact = { 33 | type: "Series", 34 | HC_Option: "series.pie", 35 | childOption: "series.pie", 36 | }; 37 | Pie.type = "SeriesChart"; 38 | export default Pie; 39 | //# sourceMappingURL=Pie.js.map -------------------------------------------------------------------------------- /series/Bar.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesBarOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Bar series 17 | */ 18 | declare const Bar: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof BarSeries; 21 | type: string; 22 | }; 23 | interface BarSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function BarSeries(_props: BarSeriesProps): any; 28 | export declare namespace BarSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Bar; 37 | -------------------------------------------------------------------------------- /series/HLC.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesHLCOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * HLC series 17 | */ 18 | declare const HLC: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof HLCSeries; 21 | type: string; 22 | }; 23 | interface HLCSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function HLCSeries(_props: HLCSeriesProps): any; 28 | export declare namespace HLCSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default HLC; 37 | -------------------------------------------------------------------------------- /series/HLC.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React, { useState, 13 | // @ts-ignore 14 | } from "react"; 15 | import { Chart } from "../Highcharts.js"; 16 | /** 17 | * HLC series 18 | */ 19 | const HLC = (props) => { 20 | const [chartConfig] = useState(Object.assign({ 21 | chart: { 22 | type: "hlc", 23 | }, 24 | }, props.options || {})); 25 | return (React.createElement(Chart, { title: props.title, chartConstructor: "stockChart", options: chartConfig }, props.children)); 26 | }; 27 | export function HLCSeries(_props) { 28 | return null; 29 | } 30 | HLCSeries.type = "Series"; 31 | HLC.Series = HLCSeries; 32 | HLCSeries._HCReact = { 33 | type: "Series", 34 | HC_Option: "series.hlc", 35 | childOption: "series.hlc", 36 | }; 37 | HLC.type = "SeriesChart"; 38 | export default HLC; 39 | //# sourceMappingURL=HLC.js.map -------------------------------------------------------------------------------- /series/Map.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesMapOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Map series 17 | */ 18 | declare const Map: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof MapSeries; 21 | type: string; 22 | }; 23 | interface MapSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function MapSeries(_props: MapSeriesProps): any; 28 | export declare namespace MapSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Map; 37 | -------------------------------------------------------------------------------- /series/Pie.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesPieOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Pie series 17 | */ 18 | declare const Pie: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof PieSeries; 21 | type: string; 22 | }; 23 | interface PieSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function PieSeries(_props: PieSeriesProps): any; 28 | export declare namespace PieSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Pie; 37 | -------------------------------------------------------------------------------- /indicators/APO.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesAPOOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * APO series 17 | */ 18 | declare const APO: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof APOSeries; 21 | type: string; 22 | }; 23 | interface APOSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function APOSeries(_props: APOSeriesProps): any; 28 | export declare namespace APOSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default APO; 37 | -------------------------------------------------------------------------------- /indicators/ATR.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesATROptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * ATR series 17 | */ 18 | declare const ATR: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof ATRSeries; 21 | type: string; 22 | }; 23 | interface ATRSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function ATRSeries(_props: ATRSeriesProps): any; 28 | export declare namespace ATRSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default ATR; 37 | -------------------------------------------------------------------------------- /indicators/CCI.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesCCIOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * CCI series 17 | */ 18 | declare const CCI: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof CCISeries; 21 | type: string; 22 | }; 23 | interface CCISeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function CCISeries(_props: CCISeriesProps): any; 28 | export declare namespace CCISeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default CCI; 37 | -------------------------------------------------------------------------------- /indicators/CMF.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesCMFOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * CMF series 17 | */ 18 | declare const CMF: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof CMFSeries; 21 | type: string; 22 | }; 23 | interface CMFSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function CMFSeries(_props: CMFSeriesProps): any; 28 | export declare namespace CMFSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default CMF; 37 | -------------------------------------------------------------------------------- /indicators/CMO.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesCMOOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * CMO series 17 | */ 18 | declare const CMO: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof CMOSeries; 21 | type: string; 22 | }; 23 | interface CMOSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function CMOSeries(_props: CMOSeriesProps): any; 28 | export declare namespace CMOSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default CMO; 37 | -------------------------------------------------------------------------------- /indicators/DMI.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesDMIOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * DMI series 17 | */ 18 | declare const DMI: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof DMISeries; 21 | type: string; 22 | }; 23 | interface DMISeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function DMISeries(_props: DMISeriesProps): any; 28 | export declare namespace DMISeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default DMI; 37 | -------------------------------------------------------------------------------- /indicators/DPO.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesDPOOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * DPO series 17 | */ 18 | declare const DPO: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof DPOSeries; 21 | type: string; 22 | }; 23 | interface DPOSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function DPOSeries(_props: DPOSeriesProps): any; 28 | export declare namespace DPOSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default DPO; 37 | -------------------------------------------------------------------------------- /indicators/EMA.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesEMAOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * EMA series 17 | */ 18 | declare const EMA: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof EMASeries; 21 | type: string; 22 | }; 23 | interface EMASeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function EMASeries(_props: EMASeriesProps): any; 28 | export declare namespace EMASeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default EMA; 37 | -------------------------------------------------------------------------------- /indicators/IKH.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesIKHOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * IKH series 17 | */ 18 | declare const IKH: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof IKHSeries; 21 | type: string; 22 | }; 23 | interface IKHSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function IKHSeries(_props: IKHSeriesProps): any; 28 | export declare namespace IKHSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default IKH; 37 | -------------------------------------------------------------------------------- /indicators/MFI.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesMFIOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * MFI series 17 | */ 18 | declare const MFI: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof MFISeries; 21 | type: string; 22 | }; 23 | interface MFISeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function MFISeries(_props: MFISeriesProps): any; 28 | export declare namespace MFISeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default MFI; 37 | -------------------------------------------------------------------------------- /indicators/OBV.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesOBVOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * OBV series 17 | */ 18 | declare const OBV: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof OBVSeries; 21 | type: string; 22 | }; 23 | interface OBVSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function OBVSeries(_props: OBVSeriesProps): any; 28 | export declare namespace OBVSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default OBV; 37 | -------------------------------------------------------------------------------- /indicators/PPO.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesPPOOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * PPO series 17 | */ 18 | declare const PPO: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof PPOSeries; 21 | type: string; 22 | }; 23 | interface PPOSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function PPOSeries(_props: PPOSeriesProps): any; 28 | export declare namespace PPOSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default PPO; 37 | -------------------------------------------------------------------------------- /indicators/ROC.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesROCOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * ROC series 17 | */ 18 | declare const ROC: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof ROCSeries; 21 | type: string; 22 | }; 23 | interface ROCSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function ROCSeries(_props: ROCSeriesProps): any; 28 | export declare namespace ROCSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default ROC; 37 | -------------------------------------------------------------------------------- /indicators/RSI.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesRSIOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * RSI series 17 | */ 18 | declare const RSI: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof RSISeries; 21 | type: string; 22 | }; 23 | interface RSISeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function RSISeries(_props: RSISeriesProps): any; 28 | export declare namespace RSISeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default RSI; 37 | -------------------------------------------------------------------------------- /indicators/SMA.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesSMAOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * SMA series 17 | */ 18 | declare const SMA: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof SMASeries; 21 | type: string; 22 | }; 23 | interface SMASeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function SMASeries(_props: SMASeriesProps): any; 28 | export declare namespace SMASeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default SMA; 37 | -------------------------------------------------------------------------------- /indicators/VBP.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesVBPOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * VBP series 17 | */ 18 | declare const VBP: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof VBPSeries; 21 | type: string; 22 | }; 23 | interface VBPSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function VBPSeries(_props: VBPSeriesProps): any; 28 | export declare namespace VBPSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default VBP; 37 | -------------------------------------------------------------------------------- /indicators/WMA.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesWMAOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * WMA series 17 | */ 18 | declare const WMA: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof WMASeries; 21 | type: string; 22 | }; 23 | interface WMASeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function WMASeries(_props: WMASeriesProps): any; 28 | export declare namespace WMASeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default WMA; 37 | -------------------------------------------------------------------------------- /series/Area.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesAreaOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Area series 17 | */ 18 | declare const Area: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof AreaSeries; 21 | type: string; 22 | }; 23 | interface AreaSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function AreaSeries(_props: AreaSeriesProps): any; 28 | export declare namespace AreaSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Area; 37 | -------------------------------------------------------------------------------- /series/Area.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React, { useState, 13 | // @ts-ignore 14 | } from "react"; 15 | import { Chart } from "../Highcharts.js"; 16 | /** 17 | * Area series 18 | */ 19 | const Area = (props) => { 20 | const [chartConfig] = useState(Object.assign({ 21 | chart: { 22 | type: "area", 23 | }, 24 | }, props.options || {})); 25 | return (React.createElement(Chart, { title: props.title, chartConstructor: "chart", options: chartConfig }, props.children)); 26 | }; 27 | export function AreaSeries(_props) { 28 | return null; 29 | } 30 | AreaSeries.type = "Series"; 31 | Area.Series = AreaSeries; 32 | AreaSeries._HCReact = { 33 | type: "Series", 34 | HC_Option: "series.area", 35 | childOption: "series.area", 36 | }; 37 | Area.type = "SeriesChart"; 38 | export default Area; 39 | //# sourceMappingURL=Area.js.map -------------------------------------------------------------------------------- /series/Item.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesItemOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Item series 17 | */ 18 | declare const Item: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof ItemSeries; 21 | type: string; 22 | }; 23 | interface ItemSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function ItemSeries(_props: ItemSeriesProps): any; 28 | export declare namespace ItemSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Item; 37 | -------------------------------------------------------------------------------- /series/Line.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesLineOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Line series 17 | */ 18 | declare const Line: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof LineSeries; 21 | type: string; 22 | }; 23 | interface LineSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function LineSeries(_props: LineSeriesProps): any; 28 | export declare namespace LineSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Line; 37 | -------------------------------------------------------------------------------- /series/Line.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React, { useState, 13 | // @ts-ignore 14 | } from "react"; 15 | import { Chart } from "../Highcharts.js"; 16 | /** 17 | * Line series 18 | */ 19 | const Line = (props) => { 20 | const [chartConfig] = useState(Object.assign({ 21 | chart: { 22 | type: "line", 23 | }, 24 | }, props.options || {})); 25 | return (React.createElement(Chart, { title: props.title, chartConstructor: "chart", options: chartConfig }, props.children)); 26 | }; 27 | export function LineSeries(_props) { 28 | return null; 29 | } 30 | LineSeries.type = "Series"; 31 | Line.Series = LineSeries; 32 | LineSeries._HCReact = { 33 | type: "Series", 34 | HC_Option: "series.line", 35 | childOption: "series.line", 36 | }; 37 | Line.type = "SeriesChart"; 38 | export default Line; 39 | //# sourceMappingURL=Line.js.map -------------------------------------------------------------------------------- /series/OHLC.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesOHLCOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * OHLC series 17 | */ 18 | declare const OHLC: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof OHLCSeries; 21 | type: string; 22 | }; 23 | interface OHLCSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function OHLCSeries(_props: OHLCSeriesProps): any; 28 | export declare namespace OHLCSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default OHLC; 37 | -------------------------------------------------------------------------------- /series/Venn.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesVennOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Venn series 17 | */ 18 | declare const Venn: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof VennSeries; 21 | type: string; 22 | }; 23 | interface VennSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function VennSeries(_props: VennSeriesProps): any; 28 | export declare namespace VennSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Venn; 37 | -------------------------------------------------------------------------------- /indicators/DEMA.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesDEMAOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * DEMA series 17 | */ 18 | declare const DEMA: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof DEMASeries; 21 | type: string; 22 | }; 23 | interface DEMASeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function DEMASeries(_props: DEMASeriesProps): any; 28 | export declare namespace DEMASeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default DEMA; 37 | -------------------------------------------------------------------------------- /indicators/MACD.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesMACDOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * MACD series 17 | */ 18 | declare const MACD: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof MACDSeries; 21 | type: string; 22 | }; 23 | interface MACDSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function MACDSeries(_props: MACDSeriesProps): any; 28 | export declare namespace MACDSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default MACD; 37 | -------------------------------------------------------------------------------- /indicators/NATR.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesNATROptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * NATR series 17 | */ 18 | declare const NATR: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof NATRSeries; 21 | type: string; 22 | }; 23 | interface NATRSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function NATRSeries(_props: NATRSeriesProps): any; 28 | export declare namespace NATRSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default NATR; 37 | -------------------------------------------------------------------------------- /indicators/PSAR.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesPSAROptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * PSAR series 17 | */ 18 | declare const PSAR: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof PSARSeries; 21 | type: string; 22 | }; 23 | interface PSARSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function PSARSeries(_props: PSARSeriesProps): any; 28 | export declare namespace PSARSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default PSAR; 37 | -------------------------------------------------------------------------------- /indicators/TEMA.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesTEMAOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * TEMA series 17 | */ 18 | declare const TEMA: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof TEMASeries; 21 | type: string; 22 | }; 23 | interface TEMASeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function TEMASeries(_props: TEMASeriesProps): any; 28 | export declare namespace TEMASeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default TEMA; 37 | -------------------------------------------------------------------------------- /indicators/TRIX.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesTRIXOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * TRIX series 17 | */ 18 | declare const TRIX: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof TRIXSeries; 21 | type: string; 22 | }; 23 | interface TRIXSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function TRIXSeries(_props: TRIXSeriesProps): any; 28 | export declare namespace TRIXSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default TRIX; 37 | -------------------------------------------------------------------------------- /indicators/VWAP.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesVWAPOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * VWAP series 17 | */ 18 | declare const VWAP: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof VWAPSeries; 21 | type: string; 22 | }; 23 | interface VWAPSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function VWAPSeries(_props: VWAPSeriesProps): any; 28 | export declare namespace VWAPSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default VWAP; 37 | -------------------------------------------------------------------------------- /series/OHLC.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React, { useState, 13 | // @ts-ignore 14 | } from "react"; 15 | import { Chart } from "../Highcharts.js"; 16 | /** 17 | * OHLC series 18 | */ 19 | const OHLC = (props) => { 20 | const [chartConfig] = useState(Object.assign({ 21 | chart: { 22 | type: "ohlc", 23 | }, 24 | }, props.options || {})); 25 | return (React.createElement(Chart, { title: props.title, chartConstructor: "stockChart", options: chartConfig }, props.children)); 26 | }; 27 | export function OHLCSeries(_props) { 28 | return null; 29 | } 30 | OHLCSeries.type = "Series"; 31 | OHLC.Series = OHLCSeries; 32 | OHLCSeries._HCReact = { 33 | type: "Series", 34 | HC_Option: "series.ohlc", 35 | childOption: "series.ohlc", 36 | }; 37 | OHLC.type = "SeriesChart"; 38 | export default OHLC; 39 | //# sourceMappingURL=OHLC.js.map -------------------------------------------------------------------------------- /indicators/Aroon.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesAroonOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Aroon series 17 | */ 18 | declare const Aroon: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof AroonSeries; 21 | type: string; 22 | }; 23 | interface AroonSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function AroonSeries(_props: AroonSeriesProps): any; 28 | export declare namespace AroonSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Aroon; 37 | -------------------------------------------------------------------------------- /series/Flags.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesFlagsOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Flags series 17 | */ 18 | declare const Flags: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof FlagsSeries; 21 | type: string; 22 | }; 23 | interface FlagsSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function FlagsSeries(_props: FlagsSeriesProps): any; 28 | export declare namespace FlagsSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Flags; 37 | -------------------------------------------------------------------------------- /series/Flags.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React, { useState, 13 | // @ts-ignore 14 | } from "react"; 15 | import { Chart } from "../Highcharts.js"; 16 | /** 17 | * Flags series 18 | */ 19 | const Flags = (props) => { 20 | const [chartConfig] = useState(Object.assign({ 21 | chart: { 22 | type: "flags", 23 | }, 24 | }, props.options || {})); 25 | return (React.createElement(Chart, { title: props.title, chartConstructor: "stockChart", options: chartConfig }, props.children)); 26 | }; 27 | export function FlagsSeries(_props) { 28 | return null; 29 | } 30 | FlagsSeries.type = "Series"; 31 | Flags.Series = FlagsSeries; 32 | FlagsSeries._HCReact = { 33 | type: "Series", 34 | HC_Option: "series.flags", 35 | childOption: "series.flags", 36 | }; 37 | Flags.type = "SeriesChart"; 38 | export default Flags; 39 | //# sourceMappingURL=Flags.js.map -------------------------------------------------------------------------------- /series/Gantt.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesGanttOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Gantt series 17 | */ 18 | declare const Gantt: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof GanttSeries; 21 | type: string; 22 | }; 23 | interface GanttSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function GanttSeries(_props: GanttSeriesProps): any; 28 | export declare namespace GanttSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Gantt; 37 | -------------------------------------------------------------------------------- /series/Gauge.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesGaugeOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Gauge series 17 | */ 18 | declare const Gauge: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof GaugeSeries; 21 | type: string; 22 | }; 23 | interface GaugeSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function GaugeSeries(_props: GaugeSeriesProps): any; 28 | export declare namespace GaugeSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Gauge; 37 | -------------------------------------------------------------------------------- /series/Renko.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesRenkoOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Renko series 17 | */ 18 | declare const Renko: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof RenkoSeries; 21 | type: string; 22 | }; 23 | interface RenkoSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function RenkoSeries(_props: RenkoSeriesProps): any; 28 | export declare namespace RenkoSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Renko; 37 | -------------------------------------------------------------------------------- /series/Bubble.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesBubbleOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Bubble series 17 | */ 18 | declare const Bubble: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof BubbleSeries; 21 | type: string; 22 | }; 23 | interface BubbleSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function BubbleSeries(_props: BubbleSeriesProps): any; 28 | export declare namespace BubbleSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Bubble; 37 | -------------------------------------------------------------------------------- /series/Bullet.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesBulletOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Bullet series 17 | */ 18 | declare const Bullet: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof BulletSeries; 21 | type: string; 22 | }; 23 | interface BulletSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function BulletSeries(_props: BulletSeriesProps): any; 28 | export declare namespace BulletSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Bullet; 37 | -------------------------------------------------------------------------------- /series/Candlestick.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Candlestick.js","sourceRoot":"","sources":["../src/series/Candlestick.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAE,aAAa,EAAiB,MAAM,kBAAkB,CAAC;AAEvE,yBAAyB;AACzB,OAAO,SAAS,MAAM,iCAAiC,CAAC;AAExD,OAAO,SAAS,KAAK,UAAU,IAAI,SAAS,CAAC,aAAa,EAAE,CAAC,CAAC;AAE9D;;GAEG;AACH,MAAM,WAAW,GAAG,CAAC,KAAwB,EAAE,EAAE;IAC/C,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE,EAAE,IAAI,EAAE,aAAa,EAAE;QAC9B,WAAW,EAAE,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,aAAa,EAAE,EAAE;KACjD,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IACJ,KAAK,EAAE,KAAK,CAAC,KAAK,EAClB,gBAAgB,EAAC,YAAY,EAC7B,OAAO,EAAE,WAAW,IAEnB,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,iBAAiB,CAAC,MAA8B;IAC9D,OAAO,IAAI,CAAC;AACd,CAAC;AAED,iBAAiB,CAAC,IAAI,GAAG,QAAQ,CAAC;AAClC,WAAW,CAAC,MAAM,GAAG,iBAAiB,CAAC;AAEvC,iBAAiB,CAAC,QAAQ,GAAG;IAC3B,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,oBAAoB;IAC/B,WAAW,EAAE,oBAAoB;CAClC,CAAC;AAEF,WAAW,CAAC,IAAI,GAAG,aAAa,CAAC;AACjC,eAAe,WAAW,CAAC"} -------------------------------------------------------------------------------- /series/Column.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesColumnOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Column series 17 | */ 18 | declare const Column: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof ColumnSeries; 21 | type: string; 22 | }; 23 | interface ColumnSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function ColumnSeries(_props: ColumnSeriesProps): any; 28 | export declare namespace ColumnSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Column; 37 | -------------------------------------------------------------------------------- /series/Column.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React, { useState, 13 | // @ts-ignore 14 | } from "react"; 15 | import { Chart } from "../Highcharts.js"; 16 | /** 17 | * Column series 18 | */ 19 | const Column = (props) => { 20 | const [chartConfig] = useState(Object.assign({ 21 | chart: { 22 | type: "column", 23 | }, 24 | }, props.options || {})); 25 | return (React.createElement(Chart, { title: props.title, chartConstructor: "chart", options: chartConfig }, props.children)); 26 | }; 27 | export function ColumnSeries(_props) { 28 | return null; 29 | } 30 | ColumnSeries.type = "Series"; 31 | Column.Series = ColumnSeries; 32 | ColumnSeries._HCReact = { 33 | type: "Series", 34 | HC_Option: "series.column", 35 | childOption: "series.column", 36 | }; 37 | Column.type = "SeriesChart"; 38 | export default Column; 39 | //# sourceMappingURL=Column.js.map -------------------------------------------------------------------------------- /series/Funnel.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesFunnelOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Funnel series 17 | */ 18 | declare const Funnel: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof FunnelSeries; 21 | type: string; 22 | }; 23 | interface FunnelSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function FunnelSeries(_props: FunnelSeriesProps): any; 28 | export declare namespace FunnelSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Funnel; 37 | -------------------------------------------------------------------------------- /series/Pareto.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesParetoOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Pareto series 17 | */ 18 | declare const Pareto: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof ParetoSeries; 21 | type: string; 22 | }; 23 | interface ParetoSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function ParetoSeries(_props: ParetoSeriesProps): any; 28 | export declare namespace ParetoSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Pareto; 37 | -------------------------------------------------------------------------------- /series/Sankey.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesSankeyOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Sankey series 17 | */ 18 | declare const Sankey: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof SankeySeries; 21 | type: string; 22 | }; 23 | interface SankeySeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function SankeySeries(_props: SankeySeriesProps): any; 28 | export declare namespace SankeySeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Sankey; 37 | -------------------------------------------------------------------------------- /series/Spline.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesSplineOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Spline series 17 | */ 18 | declare const Spline: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof SplineSeries; 21 | type: string; 22 | }; 23 | interface SplineSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function SplineSeries(_props: SplineSeriesProps): any; 28 | export declare namespace SplineSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Spline; 37 | -------------------------------------------------------------------------------- /series/Spline.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React, { useState, 13 | // @ts-ignore 14 | } from "react"; 15 | import { Chart } from "../Highcharts.js"; 16 | /** 17 | * Spline series 18 | */ 19 | const Spline = (props) => { 20 | const [chartConfig] = useState(Object.assign({ 21 | chart: { 22 | type: "spline", 23 | }, 24 | }, props.options || {})); 25 | return (React.createElement(Chart, { title: props.title, chartConstructor: "chart", options: chartConfig }, props.children)); 26 | }; 27 | export function SplineSeries(_props) { 28 | return null; 29 | } 30 | SplineSeries.type = "Series"; 31 | Spline.Series = SplineSeries; 32 | SplineSeries._HCReact = { 33 | type: "Series", 34 | HC_Option: "series.spline", 35 | childOption: "series.spline", 36 | }; 37 | Spline.type = "SeriesChart"; 38 | export default Spline; 39 | //# sourceMappingURL=Spline.js.map -------------------------------------------------------------------------------- /series/Vector.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesVectorOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Vector series 17 | */ 18 | declare const Vector: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof VectorSeries; 21 | type: string; 22 | }; 23 | interface VectorSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function VectorSeries(_props: VectorSeriesProps): any; 28 | export declare namespace VectorSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Vector; 37 | -------------------------------------------------------------------------------- /series/XRange.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesXRangeOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * XRange series 17 | */ 18 | declare const XRange: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof XRangeSeries; 21 | type: string; 22 | }; 23 | interface XRangeSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function XRangeSeries(_props: XRangeSeriesProps): any; 28 | export declare namespace XRangeSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default XRange; 37 | -------------------------------------------------------------------------------- /indicators/ABands.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesABandsOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * ABands series 17 | */ 18 | declare const ABands: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof ABandsSeries; 21 | type: string; 22 | }; 23 | interface ABandsSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function ABandsSeries(_props: ABandsSeriesProps): any; 28 | export declare namespace ABandsSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default ABands; 37 | -------------------------------------------------------------------------------- /indicators/Zigzag.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesZigzagOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Zigzag series 17 | */ 18 | declare const Zigzag: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof ZigzagSeries; 21 | type: string; 22 | }; 23 | interface ZigzagSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function ZigzagSeries(_props: ZigzagSeriesProps): any; 28 | export declare namespace ZigzagSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Zigzag; 37 | -------------------------------------------------------------------------------- /series/BoxPlot.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesBoxPlotOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * BoxPlot series 17 | */ 18 | declare const BoxPlot: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof BoxPlotSeries; 21 | type: string; 22 | }; 23 | interface BoxPlotSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function BoxPlotSeries(_props: BoxPlotSeriesProps): any; 28 | export declare namespace BoxPlotSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default BoxPlot; 37 | -------------------------------------------------------------------------------- /series/FlowMap.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesFlowMapOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * FlowMap series 17 | */ 18 | declare const FlowMap: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof FlowMapSeries; 21 | type: string; 22 | }; 23 | interface FlowMapSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function FlowMapSeries(_props: FlowMapSeriesProps): any; 28 | export declare namespace FlowMapSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default FlowMap; 37 | -------------------------------------------------------------------------------- /series/Heatmap.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesHeatmapOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Heatmap series 17 | */ 18 | declare const Heatmap: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof HeatmapSeries; 21 | type: string; 22 | }; 23 | interface HeatmapSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function HeatmapSeries(_props: HeatmapSeriesProps): any; 28 | export declare namespace HeatmapSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Heatmap; 37 | -------------------------------------------------------------------------------- /series/MapData.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesMapDataOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * MapData series 17 | */ 18 | declare const MapData: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof MapDataSeries; 21 | type: string; 22 | }; 23 | interface MapDataSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function MapDataSeries(_props: MapDataSeriesProps): any; 28 | export declare namespace MapDataSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default MapData; 37 | -------------------------------------------------------------------------------- /series/MapLine.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesMapLineOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * MapLine series 17 | */ 18 | declare const MapLine: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof MapLineSeries; 21 | type: string; 22 | }; 23 | interface MapLineSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function MapLineSeries(_props: MapLineSeriesProps): any; 28 | export declare namespace MapLineSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default MapLine; 37 | -------------------------------------------------------------------------------- /series/Polygon.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesPolygonOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Polygon series 17 | */ 18 | declare const Polygon: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof PolygonSeries; 21 | type: string; 22 | }; 23 | interface PolygonSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function PolygonSeries(_props: PolygonSeriesProps): any; 28 | export declare namespace PolygonSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Polygon; 37 | -------------------------------------------------------------------------------- /series/Pyramid.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesPyramidOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Pyramid series 17 | */ 18 | declare const Pyramid: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof PyramidSeries; 21 | type: string; 22 | }; 23 | interface PyramidSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function PyramidSeries(_props: PyramidSeriesProps): any; 28 | export declare namespace PyramidSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Pyramid; 37 | -------------------------------------------------------------------------------- /series/Scatter.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesScatterOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Scatter series 17 | */ 18 | declare const Scatter: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof ScatterSeries; 21 | type: string; 22 | }; 23 | interface ScatterSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function ScatterSeries(_props: ScatterSeriesProps): any; 28 | export declare namespace ScatterSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Scatter; 37 | -------------------------------------------------------------------------------- /series/Tilemap.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesTilemapOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Tilemap series 17 | */ 18 | declare const Tilemap: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof TilemapSeries; 21 | type: string; 22 | }; 23 | interface TilemapSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function TilemapSeries(_props: TilemapSeriesProps): any; 28 | export declare namespace TilemapSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Tilemap; 37 | -------------------------------------------------------------------------------- /series/Treemap.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesTreemapOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Treemap series 17 | */ 18 | declare const Treemap: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof TreemapSeries; 21 | type: string; 22 | }; 23 | interface TreemapSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function TreemapSeries(_props: TreemapSeriesProps): any; 28 | export declare namespace TreemapSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Treemap; 37 | -------------------------------------------------------------------------------- /indicators/Chaikin.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesChaikinOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Chaikin series 17 | */ 18 | declare const Chaikin: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof ChaikinSeries; 21 | type: string; 22 | }; 23 | interface ChaikinSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function ChaikinSeries(_props: ChaikinSeriesProps): any; 28 | export declare namespace ChaikinSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Chaikin; 37 | -------------------------------------------------------------------------------- /indicators/Klinger.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesKlingerOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Klinger series 17 | */ 18 | declare const Klinger: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof KlingerSeries; 21 | type: string; 22 | }; 23 | interface KlingerSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function KlingerSeries(_props: KlingerSeriesProps): any; 28 | export declare namespace KlingerSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Klinger; 37 | -------------------------------------------------------------------------------- /series/Heatmap.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React, { useState, 13 | // @ts-ignore 14 | } from "react"; 15 | import { Chart } from "../Highcharts.js"; 16 | /** 17 | * Heatmap series 18 | */ 19 | const Heatmap = (props) => { 20 | const [chartConfig] = useState(Object.assign({ 21 | chart: { 22 | type: "heatmap", 23 | }, 24 | }, props.options || {})); 25 | return (React.createElement(Chart, { title: props.title, chartConstructor: "chart", options: chartConfig }, props.children)); 26 | }; 27 | export function HeatmapSeries(_props) { 28 | return null; 29 | } 30 | HeatmapSeries.type = "Series"; 31 | Heatmap.Series = HeatmapSeries; 32 | HeatmapSeries._HCReact = { 33 | type: "Series", 34 | HC_Option: "series.heatmap", 35 | childOption: "series.heatmap", 36 | }; 37 | Heatmap.type = "SeriesChart"; 38 | export default Heatmap; 39 | //# sourceMappingURL=Heatmap.js.map -------------------------------------------------------------------------------- /series/Scatter.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React, { useState, 13 | // @ts-ignore 14 | } from "react"; 15 | import { Chart } from "../Highcharts.js"; 16 | /** 17 | * Scatter series 18 | */ 19 | const Scatter = (props) => { 20 | const [chartConfig] = useState(Object.assign({ 21 | chart: { 22 | type: "scatter", 23 | }, 24 | }, props.options || {})); 25 | return (React.createElement(Chart, { title: props.title, chartConstructor: "chart", options: chartConfig }, props.children)); 26 | }; 27 | export function ScatterSeries(_props) { 28 | return null; 29 | } 30 | ScatterSeries.type = "Series"; 31 | Scatter.Series = ScatterSeries; 32 | ScatterSeries._HCReact = { 33 | type: "Series", 34 | HC_Option: "series.scatter", 35 | childOption: "series.scatter", 36 | }; 37 | Scatter.type = "SeriesChart"; 38 | export default Scatter; 39 | //# sourceMappingURL=Scatter.js.map -------------------------------------------------------------------------------- /series/Cylinder.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesCylinderOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Cylinder series 17 | */ 18 | declare const Cylinder: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof CylinderSeries; 21 | type: string; 22 | }; 23 | interface CylinderSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function CylinderSeries(_props: CylinderSeriesProps): any; 28 | export declare namespace CylinderSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Cylinder; 37 | -------------------------------------------------------------------------------- /series/Dumbbell.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesDumbbellOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Dumbbell series 17 | */ 18 | declare const Dumbbell: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof DumbbellSeries; 21 | type: string; 22 | }; 23 | interface DumbbellSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function DumbbellSeries(_props: DumbbellSeriesProps): any; 28 | export declare namespace DumbbellSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Dumbbell; 37 | -------------------------------------------------------------------------------- /series/ErrorBar.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesErrorBarOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * ErrorBar series 17 | */ 18 | declare const ErrorBar: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof ErrorBarSeries; 21 | type: string; 22 | }; 23 | interface ErrorBarSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function ErrorBarSeries(_props: ErrorBarSeriesProps): any; 28 | export declare namespace ErrorBarSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default ErrorBar; 37 | -------------------------------------------------------------------------------- /series/Funnel3D.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesFunnel3DOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Funnel3D series 17 | */ 18 | declare const Funnel3D: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof Funnel3DSeries; 21 | type: string; 22 | }; 23 | interface Funnel3DSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function Funnel3DSeries(_props: Funnel3DSeriesProps): any; 28 | export declare namespace Funnel3DSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Funnel3D; 37 | -------------------------------------------------------------------------------- /series/Lollipop.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesLollipopOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Lollipop series 17 | */ 18 | declare const Lollipop: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof LollipopSeries; 21 | type: string; 22 | }; 23 | interface LollipopSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function LollipopSeries(_props: LollipopSeriesProps): any; 28 | export declare namespace LollipopSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Lollipop; 37 | -------------------------------------------------------------------------------- /series/MapData.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React, { useState, 13 | // @ts-ignore 14 | } from "react"; 15 | import { Chart } from "../Highcharts.js"; 16 | /** 17 | * MapData series 18 | */ 19 | const MapData = (props) => { 20 | const [chartConfig] = useState(Object.assign({ 21 | chart: { 22 | type: "mapdata", 23 | }, 24 | }, props.options || {})); 25 | return (React.createElement(Chart, { title: props.title, chartConstructor: "mapChart", options: chartConfig }, props.children)); 26 | }; 27 | export function MapDataSeries(_props) { 28 | return null; 29 | } 30 | MapDataSeries.type = "Series"; 31 | MapData.Series = MapDataSeries; 32 | MapDataSeries._HCReact = { 33 | type: "Series", 34 | HC_Option: "series.mapdata", 35 | childOption: "series.mapdata", 36 | }; 37 | MapData.type = "SeriesChart"; 38 | export default MapData; 39 | //# sourceMappingURL=MapData.js.map -------------------------------------------------------------------------------- /series/MapLine.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React, { useState, 13 | // @ts-ignore 14 | } from "react"; 15 | import { Chart } from "../Highcharts.js"; 16 | /** 17 | * MapLine series 18 | */ 19 | const MapLine = (props) => { 20 | const [chartConfig] = useState(Object.assign({ 21 | chart: { 22 | type: "mapline", 23 | }, 24 | }, props.options || {})); 25 | return (React.createElement(Chart, { title: props.title, chartConstructor: "mapChart", options: chartConfig }, props.children)); 26 | }; 27 | export function MapLineSeries(_props) { 28 | return null; 29 | } 30 | MapLineSeries.type = "Series"; 31 | MapLine.Series = MapLineSeries; 32 | MapLineSeries._HCReact = { 33 | type: "Series", 34 | HC_Option: "series.mapline", 35 | childOption: "series.mapline", 36 | }; 37 | MapLine.type = "SeriesChart"; 38 | export default MapLine; 39 | //# sourceMappingURL=MapLine.js.map -------------------------------------------------------------------------------- /series/MapPoint.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesMapPointOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * MapPoint series 17 | */ 18 | declare const MapPoint: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof MapPointSeries; 21 | type: string; 22 | }; 23 | interface MapPointSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function MapPointSeries(_props: MapPointSeriesProps): any; 28 | export declare namespace MapPointSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default MapPoint; 37 | -------------------------------------------------------------------------------- /series/Sunburst.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesSunburstOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Sunburst series 17 | */ 18 | declare const Sunburst: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof SunburstSeries; 21 | type: string; 22 | }; 23 | interface SunburstSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function SunburstSeries(_props: SunburstSeriesProps): any; 28 | export declare namespace SunburstSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Sunburst; 37 | -------------------------------------------------------------------------------- /series/Timeline.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesTimelineOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Timeline series 17 | */ 18 | declare const Timeline: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof TimelineSeries; 21 | type: string; 22 | }; 23 | interface TimelineSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function TimelineSeries(_props: TimelineSeriesProps): any; 28 | export declare namespace TimelineSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Timeline; 37 | -------------------------------------------------------------------------------- /series/Variwide.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesVariwideOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Variwide series 17 | */ 18 | declare const Variwide: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof VariwideSeries; 21 | type: string; 22 | }; 23 | interface VariwideSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function VariwideSeries(_props: VariwideSeriesProps): any; 28 | export declare namespace VariwideSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Variwide; 37 | -------------------------------------------------------------------------------- /series/Windbarb.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesWindbarbOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Windbarb series 17 | */ 18 | declare const Windbarb: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof WindbarbSeries; 21 | type: string; 22 | }; 23 | interface WindbarbSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function WindbarbSeries(_props: WindbarbSeriesProps): any; 28 | export declare namespace WindbarbSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Windbarb; 37 | -------------------------------------------------------------------------------- /indicators/Momentum.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesMomentumOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Momentum series 17 | */ 18 | declare const Momentum: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof MomentumSeries; 21 | type: string; 22 | }; 23 | interface MomentumSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function MomentumSeries(_props: MomentumSeriesProps): any; 28 | export declare namespace MomentumSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Momentum; 37 | -------------------------------------------------------------------------------- /series/AreaRange.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesAreaRangeOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * AreaRange series 17 | */ 18 | declare const AreaRange: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof AreaRangeSeries; 21 | type: string; 22 | }; 23 | interface AreaRangeSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function AreaRangeSeries(_props: AreaRangeSeriesProps): any; 28 | export declare namespace AreaRangeSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default AreaRange; 37 | -------------------------------------------------------------------------------- /series/Bellcurve.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesBellcurveOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Bellcurve series 17 | */ 18 | declare const Bellcurve: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof BellcurveSeries; 21 | type: string; 22 | }; 23 | interface BellcurveSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function BellcurveSeries(_props: BellcurveSeriesProps): any; 28 | export declare namespace BellcurveSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Bellcurve; 37 | -------------------------------------------------------------------------------- /series/Histogram.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesHistogramOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Histogram series 17 | */ 18 | declare const Histogram: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof HistogramSeries; 21 | type: string; 22 | }; 23 | interface HistogramSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function HistogramSeries(_props: HistogramSeriesProps): any; 28 | export declare namespace HistogramSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Histogram; 37 | -------------------------------------------------------------------------------- /series/MapBubble.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesMapBubbleOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * MapBubble series 17 | */ 18 | declare const MapBubble: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof MapBubbleSeries; 21 | type: string; 22 | }; 23 | interface MapBubbleSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function MapBubbleSeries(_props: MapBubbleSeriesProps): any; 28 | export declare namespace MapBubbleSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default MapBubble; 37 | -------------------------------------------------------------------------------- /series/MapPoint.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React, { useState, 13 | // @ts-ignore 14 | } from "react"; 15 | import { Chart } from "../Highcharts.js"; 16 | /** 17 | * MapPoint series 18 | */ 19 | const MapPoint = (props) => { 20 | const [chartConfig] = useState(Object.assign({ 21 | chart: { 22 | type: "mappoint", 23 | }, 24 | }, props.options || {})); 25 | return (React.createElement(Chart, { title: props.title, chartConstructor: "mapChart", options: chartConfig }, props.children)); 26 | }; 27 | export function MapPointSeries(_props) { 28 | return null; 29 | } 30 | MapPointSeries.type = "Series"; 31 | MapPoint.Series = MapPointSeries; 32 | MapPointSeries._HCReact = { 33 | type: "Series", 34 | HC_Option: "series.mappoint", 35 | childOption: "series.mappoint", 36 | }; 37 | MapPoint.type = "SeriesChart"; 38 | export default MapPoint; 39 | //# sourceMappingURL=MapPoint.js.map -------------------------------------------------------------------------------- /series/Pictorial.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesPictorialOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Pictorial series 17 | */ 18 | declare const Pictorial: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof PictorialSeries; 21 | type: string; 22 | }; 23 | interface PictorialSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function PictorialSeries(_props: PictorialSeriesProps): any; 28 | export declare namespace PictorialSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Pictorial; 37 | -------------------------------------------------------------------------------- /series/Pyramid3D.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesPyramid3DOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Pyramid3D series 17 | */ 18 | declare const Pyramid3D: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof Pyramid3DSeries; 21 | type: string; 22 | }; 23 | interface Pyramid3DSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function Pyramid3DSeries(_props: Pyramid3DSeriesProps): any; 28 | export declare namespace Pyramid3DSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Pyramid3D; 37 | -------------------------------------------------------------------------------- /series/Scatter3D.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesScatter3DOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Scatter3D series 17 | */ 18 | declare const Scatter3D: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof Scatter3DSeries; 21 | type: string; 22 | }; 23 | interface Scatter3DSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function Scatter3DSeries(_props: Scatter3DSeriesProps): any; 28 | export declare namespace Scatter3DSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Scatter3D; 37 | -------------------------------------------------------------------------------- /series/Treegraph.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesTreegraphOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Treegraph series 17 | */ 18 | declare const Treegraph: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof TreegraphSeries; 21 | type: string; 22 | }; 23 | interface TreegraphSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function TreegraphSeries(_props: TreegraphSeriesProps): any; 28 | export declare namespace TreegraphSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Treegraph; 37 | -------------------------------------------------------------------------------- /series/Waterfall.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesWaterfallOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Waterfall series 17 | */ 18 | declare const Waterfall: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof WaterfallSeries; 21 | type: string; 22 | }; 23 | interface WaterfallSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function WaterfallSeries(_props: WaterfallSeriesProps): any; 28 | export declare namespace WaterfallSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Waterfall; 37 | -------------------------------------------------------------------------------- /series/Wordcloud.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesWordcloudOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Wordcloud series 17 | */ 18 | declare const Wordcloud: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof WordcloudSeries; 21 | type: string; 22 | }; 23 | interface WordcloudSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function WordcloudSeries(_props: WordcloudSeriesProps): any; 28 | export declare namespace WordcloudSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Wordcloud; 37 | -------------------------------------------------------------------------------- /indicators/TrendLine.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesTrendLineOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * TrendLine series 17 | */ 18 | declare const TrendLine: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof TrendLineSeries; 21 | type: string; 22 | }; 23 | interface TrendLineSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function TrendLineSeries(_props: TrendLineSeriesProps): any; 28 | export declare namespace TrendLineSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default TrendLine; 37 | -------------------------------------------------------------------------------- /indicators/WilliamsR.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesWilliamsROptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * WilliamsR series 17 | */ 18 | declare const WilliamsR: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof WilliamsRSeries; 21 | type: string; 22 | }; 23 | interface WilliamsRSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function WilliamsRSeries(_props: WilliamsRSeriesProps): any; 28 | export declare namespace WilliamsRSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default WilliamsR; 37 | -------------------------------------------------------------------------------- /indicators/Stochastic.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesStochasticOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Stochastic series 17 | */ 18 | declare const Stochastic: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof StochasticSeries; 21 | type: string; 22 | }; 23 | interface StochasticSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function StochasticSeries(_props: StochasticSeriesProps): any; 28 | export declare namespace StochasticSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Stochastic; 37 | -------------------------------------------------------------------------------- /indicators/Supertrend.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesSupertrendOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Supertrend series 17 | */ 18 | declare const Supertrend: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof SupertrendSeries; 21 | type: string; 22 | }; 23 | interface SupertrendSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function SupertrendSeries(_props: SupertrendSeriesProps): any; 28 | export declare namespace SupertrendSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Supertrend; 37 | -------------------------------------------------------------------------------- /series/ArcDiagram.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesArcDiagramOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * ArcDiagram series 17 | */ 18 | declare const ArcDiagram: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof ArcDiagramSeries; 21 | type: string; 22 | }; 23 | interface ArcDiagramSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function ArcDiagramSeries(_props: ArcDiagramSeriesProps): any; 28 | export declare namespace ArcDiagramSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default ArcDiagram; 37 | -------------------------------------------------------------------------------- /series/AreaSpline.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesAreaSplineOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * AreaSpline series 17 | */ 18 | declare const AreaSpline: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof AreaSplineSeries; 21 | type: string; 22 | }; 23 | interface AreaSplineSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function AreaSplineSeries(_props: AreaSplineSeriesProps): any; 28 | export declare namespace AreaSplineSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default AreaSpline; 37 | -------------------------------------------------------------------------------- /series/GeoHeatmap.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesGeoHeatmapOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * GeoHeatmap series 17 | */ 18 | declare const GeoHeatmap: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof GeoHeatmapSeries; 21 | type: string; 22 | }; 23 | interface GeoHeatmapSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function GeoHeatmapSeries(_props: GeoHeatmapSeriesProps): any; 28 | export declare namespace GeoHeatmapSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default GeoHeatmap; 37 | -------------------------------------------------------------------------------- /series/HeikinAshi.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesHeikinAshiOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * HeikinAshi series 17 | */ 18 | declare const HeikinAshi: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof HeikinAshiSeries; 21 | type: string; 22 | }; 23 | interface HeikinAshiSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function HeikinAshiSeries(_props: HeikinAshiSeriesProps): any; 28 | export declare namespace HeikinAshiSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default HeikinAshi; 37 | -------------------------------------------------------------------------------- /series/MapBubble.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React, { useState, 13 | // @ts-ignore 14 | } from "react"; 15 | import { Chart } from "../Highcharts.js"; 16 | /** 17 | * MapBubble series 18 | */ 19 | const MapBubble = (props) => { 20 | const [chartConfig] = useState(Object.assign({ 21 | chart: { 22 | type: "mapbubble", 23 | }, 24 | }, props.options || {})); 25 | return (React.createElement(Chart, { title: props.title, chartConstructor: "mapChart", options: chartConfig }, props.children)); 26 | }; 27 | export function MapBubbleSeries(_props) { 28 | return null; 29 | } 30 | MapBubbleSeries.type = "Series"; 31 | MapBubble.Series = MapBubbleSeries; 32 | MapBubbleSeries._HCReact = { 33 | type: "Series", 34 | HC_Option: "series.mapbubble", 35 | childOption: "series.mapbubble", 36 | }; 37 | MapBubble.type = "SeriesChart"; 38 | export default MapBubble; 39 | //# sourceMappingURL=MapBubble.js.map -------------------------------------------------------------------------------- /series/SolidGauge.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesSolidGaugeOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * SolidGauge series 17 | */ 18 | declare const SolidGauge: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof SolidGaugeSeries; 21 | type: string; 22 | }; 23 | interface SolidGaugeSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function SolidGaugeSeries(_props: SolidGaugeSeriesProps): any; 28 | export declare namespace SolidGaugeSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default SolidGauge; 37 | -------------------------------------------------------------------------------- /series/AreaSpline.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React, { useState, 13 | // @ts-ignore 14 | } from "react"; 15 | import { Chart } from "../Highcharts.js"; 16 | /** 17 | * AreaSpline series 18 | */ 19 | const AreaSpline = (props) => { 20 | const [chartConfig] = useState(Object.assign({ 21 | chart: { 22 | type: "areaspline", 23 | }, 24 | }, props.options || {})); 25 | return (React.createElement(Chart, { title: props.title, chartConstructor: "chart", options: chartConfig }, props.children)); 26 | }; 27 | export function AreaSplineSeries(_props) { 28 | return null; 29 | } 30 | AreaSplineSeries.type = "Series"; 31 | AreaSpline.Series = AreaSplineSeries; 32 | AreaSplineSeries._HCReact = { 33 | type: "Series", 34 | HC_Option: "series.areaspline", 35 | childOption: "series.areaspline", 36 | }; 37 | AreaSpline.type = "SeriesChart"; 38 | export default AreaSpline; 39 | //# sourceMappingURL=AreaSpline.js.map -------------------------------------------------------------------------------- /series/Candlestick.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesCandlestickOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Candlestick series 17 | */ 18 | declare const Candlestick: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof CandlestickSeries; 21 | type: string; 22 | }; 23 | interface CandlestickSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function CandlestickSeries(_props: CandlestickSeriesProps): any; 28 | export declare namespace CandlestickSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Candlestick; 37 | -------------------------------------------------------------------------------- /series/ColumnRange.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesColumnRangeOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * ColumnRange series 17 | */ 18 | declare const ColumnRange: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof ColumnRangeSeries; 21 | type: string; 22 | }; 23 | interface ColumnRangeSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function ColumnRangeSeries(_props: ColumnRangeSeriesProps): any; 28 | export declare namespace ColumnRangeSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default ColumnRange; 37 | -------------------------------------------------------------------------------- /series/Streamgraph.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesStreamgraphOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Streamgraph series 17 | */ 18 | declare const Streamgraph: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof StreamgraphSeries; 21 | type: string; 22 | }; 23 | interface StreamgraphSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function StreamgraphSeries(_props: StreamgraphSeriesProps): any; 28 | export declare namespace StreamgraphSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Streamgraph; 37 | -------------------------------------------------------------------------------- /series/TiledWebMap.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesTiledWebMapOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * TiledWebMap series 17 | */ 18 | declare const TiledWebMap: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof TiledWebMapSeries; 21 | type: string; 22 | }; 23 | interface TiledWebMapSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function TiledWebMapSeries(_props: TiledWebMapSeriesProps): any; 28 | export declare namespace TiledWebMapSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default TiledWebMap; 37 | -------------------------------------------------------------------------------- /series/VariablePie.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesVariablePieOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * VariablePie series 17 | */ 18 | declare const VariablePie: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof VariablePieSeries; 21 | type: string; 22 | }; 23 | interface VariablePieSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function VariablePieSeries(_props: VariablePieSeriesProps): any; 28 | export declare namespace VariablePieSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default VariablePie; 37 | -------------------------------------------------------------------------------- /series/ZoomEnabled.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesZoomEnabledOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * ZoomEnabled series 17 | */ 18 | declare const ZoomEnabled: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof ZoomEnabledSeries; 21 | type: string; 22 | }; 23 | interface ZoomEnabledSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function ZoomEnabledSeries(_props: ZoomEnabledSeriesProps): any; 28 | export declare namespace ZoomEnabledSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default ZoomEnabled; 37 | -------------------------------------------------------------------------------- /indicators/PivotPoints.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesPivotPointsOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * PivotPoints series 17 | */ 18 | declare const PivotPoints: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof PivotPointsSeries; 21 | type: string; 22 | }; 23 | interface PivotPointsSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function PivotPointsSeries(_props: PivotPointsSeriesProps): any; 28 | export declare namespace PivotPointsSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default PivotPoints; 37 | -------------------------------------------------------------------------------- /series/Networkgraph.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesNetworkgraphOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Networkgraph series 17 | */ 18 | declare const Networkgraph: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof NetworkgraphSeries; 21 | type: string; 22 | }; 23 | interface NetworkgraphSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function NetworkgraphSeries(_props: NetworkgraphSeriesProps): any; 28 | export declare namespace NetworkgraphSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Networkgraph; 37 | -------------------------------------------------------------------------------- /series/Organization.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesOrganizationOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * Organization series 17 | */ 18 | declare const Organization: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof OrganizationSeries; 21 | type: string; 22 | }; 23 | interface OrganizationSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function OrganizationSeries(_props: OrganizationSeriesProps): any; 28 | export declare namespace OrganizationSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default Organization; 37 | -------------------------------------------------------------------------------- /series/PackedBubble.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesPackedBubbleOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * PackedBubble series 17 | */ 18 | declare const PackedBubble: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof PackedBubbleSeries; 21 | type: string; 22 | }; 23 | interface PackedBubbleSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function PackedBubbleSeries(_props: PackedBubbleSeriesProps): any; 28 | export declare namespace PackedBubbleSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default PackedBubble; 37 | -------------------------------------------------------------------------------- /series/ZoomEnabled.js: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React, { useState, 13 | // @ts-ignore 14 | } from "react"; 15 | import { Chart } from "../Highcharts.js"; 16 | /** 17 | * ZoomEnabled series 18 | */ 19 | const ZoomEnabled = (props) => { 20 | const [chartConfig] = useState(Object.assign({ 21 | chart: { 22 | type: "zoomenabled", 23 | }, 24 | }, props.options || {})); 25 | return (React.createElement(Chart, { title: props.title, chartConstructor: "chart", options: chartConfig }, props.children)); 26 | }; 27 | export function ZoomEnabledSeries(_props) { 28 | return null; 29 | } 30 | ZoomEnabledSeries.type = "Series"; 31 | ZoomEnabled.Series = ZoomEnabledSeries; 32 | ZoomEnabledSeries._HCReact = { 33 | type: "Series", 34 | HC_Option: "series.zoomenabled", 35 | childOption: "series.zoomenabled", 36 | }; 37 | ZoomEnabled.type = "SeriesChart"; 38 | export default ZoomEnabled; 39 | //# sourceMappingURL=ZoomEnabled.js.map -------------------------------------------------------------------------------- /series/ColumnPyramid.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesColumnPyramidOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * ColumnPyramid series 17 | */ 18 | declare const ColumnPyramid: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof ColumnPyramidSeries; 21 | type: string; 22 | }; 23 | interface ColumnPyramidSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function ColumnPyramidSeries(_props: ColumnPyramidSeriesProps): any; 28 | export declare namespace ColumnPyramidSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default ColumnPyramid; 37 | -------------------------------------------------------------------------------- /series/PointAndFigure.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesPointAndFigureOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * PointAndFigure series 17 | */ 18 | declare const PointAndFigure: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof PointAndFigureSeries; 21 | type: string; 22 | }; 23 | interface PointAndFigureSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function PointAndFigureSeries(_props: PointAndFigureSeriesProps): any; 28 | export declare namespace PointAndFigureSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default PointAndFigure; 37 | -------------------------------------------------------------------------------- /indicators/DisparityIndex.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesDisparityIndexOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * DisparityIndex series 17 | */ 18 | declare const DisparityIndex: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof DisparityIndexSeries; 21 | type: string; 22 | }; 23 | interface DisparityIndexSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function DisparityIndexSeries(_props: DisparityIndexSeriesProps): any; 28 | export declare namespace DisparityIndexSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default DisparityIndex; 37 | -------------------------------------------------------------------------------- /indicators/PriceEnvelopes.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesPriceEnvelopesOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * PriceEnvelopes series 17 | */ 18 | declare const PriceEnvelopes: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof PriceEnvelopesSeries; 21 | type: string; 22 | }; 23 | interface PriceEnvelopesSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function PriceEnvelopesSeries(_props: PriceEnvelopesSeriesProps): any; 28 | export declare namespace PriceEnvelopesSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default PriceEnvelopes; 37 | -------------------------------------------------------------------------------- /indicators/SlowStochastic.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesSlowStochasticOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * SlowStochastic series 17 | */ 18 | declare const SlowStochastic: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof SlowStochasticSeries; 21 | type: string; 22 | }; 23 | interface SlowStochasticSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function SlowStochasticSeries(_props: SlowStochasticSeriesProps): any; 28 | export declare namespace SlowStochasticSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default SlowStochastic; 37 | -------------------------------------------------------------------------------- /series/Item.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Item.js","sourceRoot":"","sources":["../src/series/Item.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEvE,OAAO,SAAS,MAAM,2CAA2C,CAAC;AAElE,IAAI,OAAO,aAAa,EAAE,CAAC,UAAU,KAAK,WAAW,EAAE,CAAC;IACtD,2BAA2B;IAC3B,IAAI,OAAO,SAAS,KAAK,UAAU,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC,EAAE,CAAC;QACxE,SAAS,CAAC,aAAa,EAAE,CAAC,CAAC;IAC7B,CAAC;SAAM,IAAI,SAAS,aAAT,SAAS,uBAAT,SAAS,CAAE,KAAK,EAAE,CAAC;QAC5B,aAAa,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;AACH,CAAC;AAED;;GAEG;AACH,MAAM,IAAI,GAAG,CAAC,KAAwB,EAAE,EAAE;IACxC,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,MAAM;SACb;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IAAC,KAAK,EAAE,KAAK,CAAC,KAAK,EAAE,gBAAgB,EAAC,OAAO,EAAC,OAAO,EAAE,WAAW,IACrE,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,UAAU,CAAC,MAAuB;IAChD,OAAO,IAAI,CAAC;AACd,CAAC;AAED,UAAU,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC3B,IAAI,CAAC,MAAM,GAAG,UAAU,CAAC;AAEzB,UAAU,CAAC,QAAQ,GAAG;IACpB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,aAAa;IACxB,WAAW,EAAE,aAAa;CAC3B,CAAC;AAEF,IAAI,CAAC,IAAI,GAAG,aAAa,CAAC;AAC1B,eAAe,IAAI,CAAC"} -------------------------------------------------------------------------------- /series/Venn.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Venn.js","sourceRoot":"","sources":["../src/series/Venn.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEvE,OAAO,SAAS,MAAM,oCAAoC,CAAC;AAE3D,IAAI,OAAO,aAAa,EAAE,CAAC,UAAU,KAAK,WAAW,EAAE,CAAC;IACtD,2BAA2B;IAC3B,IAAI,OAAO,SAAS,KAAK,UAAU,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC,EAAE,CAAC;QACxE,SAAS,CAAC,aAAa,EAAE,CAAC,CAAC;IAC7B,CAAC;SAAM,IAAI,SAAS,aAAT,SAAS,uBAAT,SAAS,CAAE,KAAK,EAAE,CAAC;QAC5B,aAAa,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;AACH,CAAC;AAED;;GAEG;AACH,MAAM,IAAI,GAAG,CAAC,KAAwB,EAAE,EAAE;IACxC,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,MAAM;SACb;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IAAC,KAAK,EAAE,KAAK,CAAC,KAAK,EAAE,gBAAgB,EAAC,OAAO,EAAC,OAAO,EAAE,WAAW,IACrE,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,UAAU,CAAC,MAAuB;IAChD,OAAO,IAAI,CAAC;AACd,CAAC;AAED,UAAU,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC3B,IAAI,CAAC,MAAM,GAAG,UAAU,CAAC;AAEzB,UAAU,CAAC,QAAQ,GAAG;IACpB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,aAAa;IACxB,WAAW,EAAE,aAAa;CAC3B,CAAC;AAEF,IAAI,CAAC,IAAI,GAAG,aAAa,CAAC;AAC1B,eAAe,IAAI,CAAC"} -------------------------------------------------------------------------------- /indicators/AD.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"AD.js","sourceRoot":"","sources":["../src/indicators/AD.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEvE,OAAO,SAAS,MAAM,4DAA4D,CAAC;AAEnF,IAAI,OAAO,aAAa,EAAE,CAAC,UAAU,KAAK,WAAW,EAAE,CAAC;IACtD,2BAA2B;IAC3B,IAAI,OAAO,SAAS,KAAK,UAAU,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC,EAAE,CAAC;QACxE,SAAS,CAAC,aAAa,EAAE,CAAC,CAAC;IAC7B,CAAC;SAAM,IAAI,SAAS,aAAT,SAAS,uBAAT,SAAS,CAAE,KAAK,EAAE,CAAC;QAC5B,aAAa,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;AACH,CAAC;AAED;;GAEG;AACH,MAAM,EAAE,GAAG,CAAC,KAAwB,EAAE,EAAE;IACtC,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,IAAI;SACX;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IACJ,KAAK,EAAE,KAAK,CAAC,KAAK,EAClB,gBAAgB,EAAC,YAAY,EAC7B,OAAO,EAAE,WAAW,IAEnB,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,QAAQ,CAAC,MAAqB;IAC5C,OAAO,IAAI,CAAC;AACd,CAAC;AAED,QAAQ,CAAC,IAAI,GAAG,QAAQ,CAAC;AACzB,EAAE,CAAC,MAAM,GAAG,QAAQ,CAAC;AAErB,QAAQ,CAAC,QAAQ,GAAG;IAClB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,WAAW;IACtB,WAAW,EAAE,WAAW;CACzB,CAAC;AAEF,EAAE,CAAC,IAAI,GAAG,aAAa,CAAC;AACxB,eAAe,EAAE,CAAC"} -------------------------------------------------------------------------------- /indicators/AO.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"AO.js","sourceRoot":"","sources":["../src/indicators/AO.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEvE,OAAO,SAAS,MAAM,qCAAqC,CAAC;AAE5D,IAAI,OAAO,aAAa,EAAE,CAAC,UAAU,KAAK,WAAW,EAAE,CAAC;IACtD,2BAA2B;IAC3B,IAAI,OAAO,SAAS,KAAK,UAAU,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC,EAAE,CAAC;QACxE,SAAS,CAAC,aAAa,EAAE,CAAC,CAAC;IAC7B,CAAC;SAAM,IAAI,SAAS,aAAT,SAAS,uBAAT,SAAS,CAAE,KAAK,EAAE,CAAC;QAC5B,aAAa,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;AACH,CAAC;AAED;;GAEG;AACH,MAAM,EAAE,GAAG,CAAC,KAAwB,EAAE,EAAE;IACtC,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,IAAI;SACX;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IACJ,KAAK,EAAE,KAAK,CAAC,KAAK,EAClB,gBAAgB,EAAC,YAAY,EAC7B,OAAO,EAAE,WAAW,IAEnB,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,QAAQ,CAAC,MAAqB;IAC5C,OAAO,IAAI,CAAC;AACd,CAAC;AAED,QAAQ,CAAC,IAAI,GAAG,QAAQ,CAAC;AACzB,EAAE,CAAC,MAAM,GAAG,QAAQ,CAAC;AAErB,QAAQ,CAAC,QAAQ,GAAG;IAClB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,WAAW;IACtB,WAAW,EAAE,WAAW;CACzB,CAAC;AAEF,EAAE,CAAC,IAAI,GAAG,aAAa,CAAC;AACxB,eAAe,EAAE,CAAC"} -------------------------------------------------------------------------------- /indicators/APO.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"APO.js","sourceRoot":"","sources":["../src/indicators/APO.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEvE,OAAO,SAAS,MAAM,sCAAsC,CAAC;AAE7D,IAAI,OAAO,aAAa,EAAE,CAAC,UAAU,KAAK,WAAW,EAAE,CAAC;IACtD,2BAA2B;IAC3B,IAAI,OAAO,SAAS,KAAK,UAAU,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC,EAAE,CAAC;QACxE,SAAS,CAAC,aAAa,EAAE,CAAC,CAAC;IAC7B,CAAC;SAAM,IAAI,SAAS,aAAT,SAAS,uBAAT,SAAS,CAAE,KAAK,EAAE,CAAC;QAC5B,aAAa,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;AACH,CAAC;AAED;;GAEG;AACH,MAAM,GAAG,GAAG,CAAC,KAAwB,EAAE,EAAE;IACvC,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,KAAK;SACZ;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IACJ,KAAK,EAAE,KAAK,CAAC,KAAK,EAClB,gBAAgB,EAAC,YAAY,EAC7B,OAAO,EAAE,WAAW,IAEnB,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,SAAS,CAAC,MAAsB;IAC9C,OAAO,IAAI,CAAC;AACd,CAAC;AAED,SAAS,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC1B,GAAG,CAAC,MAAM,GAAG,SAAS,CAAC;AAEvB,SAAS,CAAC,QAAQ,GAAG;IACnB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,YAAY;IACvB,WAAW,EAAE,YAAY;CAC1B,CAAC;AAEF,GAAG,CAAC,IAAI,GAAG,aAAa,CAAC;AACzB,eAAe,GAAG,CAAC"} -------------------------------------------------------------------------------- /indicators/ATR.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"ATR.js","sourceRoot":"","sources":["../src/indicators/ATR.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEvE,OAAO,SAAS,MAAM,sCAAsC,CAAC;AAE7D,IAAI,OAAO,aAAa,EAAE,CAAC,UAAU,KAAK,WAAW,EAAE,CAAC;IACtD,2BAA2B;IAC3B,IAAI,OAAO,SAAS,KAAK,UAAU,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC,EAAE,CAAC;QACxE,SAAS,CAAC,aAAa,EAAE,CAAC,CAAC;IAC7B,CAAC;SAAM,IAAI,SAAS,aAAT,SAAS,uBAAT,SAAS,CAAE,KAAK,EAAE,CAAC;QAC5B,aAAa,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;AACH,CAAC;AAED;;GAEG;AACH,MAAM,GAAG,GAAG,CAAC,KAAwB,EAAE,EAAE;IACvC,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,KAAK;SACZ;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IACJ,KAAK,EAAE,KAAK,CAAC,KAAK,EAClB,gBAAgB,EAAC,YAAY,EAC7B,OAAO,EAAE,WAAW,IAEnB,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,SAAS,CAAC,MAAsB;IAC9C,OAAO,IAAI,CAAC;AACd,CAAC;AAED,SAAS,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC1B,GAAG,CAAC,MAAM,GAAG,SAAS,CAAC;AAEvB,SAAS,CAAC,QAAQ,GAAG;IACnB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,YAAY;IACvB,WAAW,EAAE,YAAY;CAC1B,CAAC;AAEF,GAAG,CAAC,IAAI,GAAG,aAAa,CAAC;AACzB,eAAe,GAAG,CAAC"} -------------------------------------------------------------------------------- /indicators/AroonOscillator.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesAroonOscillatorOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * AroonOscillator series 17 | */ 18 | declare const AroonOscillator: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof AroonOscillatorSeries; 21 | type: string; 22 | }; 23 | interface AroonOscillatorSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function AroonOscillatorSeries(_props: AroonOscillatorSeriesProps): any; 28 | export declare namespace AroonOscillatorSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default AroonOscillator; 37 | -------------------------------------------------------------------------------- /indicators/BB.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"BB.js","sourceRoot":"","sources":["../src/indicators/BB.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEvE,OAAO,SAAS,MAAM,kDAAkD,CAAC;AAEzE,IAAI,OAAO,aAAa,EAAE,CAAC,UAAU,KAAK,WAAW,EAAE,CAAC;IACtD,2BAA2B;IAC3B,IAAI,OAAO,SAAS,KAAK,UAAU,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC,EAAE,CAAC;QACxE,SAAS,CAAC,aAAa,EAAE,CAAC,CAAC;IAC7B,CAAC;SAAM,IAAI,SAAS,aAAT,SAAS,uBAAT,SAAS,CAAE,KAAK,EAAE,CAAC;QAC5B,aAAa,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;AACH,CAAC;AAED;;GAEG;AACH,MAAM,EAAE,GAAG,CAAC,KAAwB,EAAE,EAAE;IACtC,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,IAAI;SACX;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IACJ,KAAK,EAAE,KAAK,CAAC,KAAK,EAClB,gBAAgB,EAAC,YAAY,EAC7B,OAAO,EAAE,WAAW,IAEnB,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,QAAQ,CAAC,MAAqB;IAC5C,OAAO,IAAI,CAAC;AACd,CAAC;AAED,QAAQ,CAAC,IAAI,GAAG,QAAQ,CAAC;AACzB,EAAE,CAAC,MAAM,GAAG,QAAQ,CAAC;AAErB,QAAQ,CAAC,QAAQ,GAAG;IAClB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,WAAW;IACtB,WAAW,EAAE,WAAW;CACzB,CAAC;AAEF,EAAE,CAAC,IAAI,GAAG,aAAa,CAAC;AACxB,eAAe,EAAE,CAAC"} -------------------------------------------------------------------------------- /indicators/CCI.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"CCI.js","sourceRoot":"","sources":["../src/indicators/CCI.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEvE,OAAO,SAAS,MAAM,sCAAsC,CAAC;AAE7D,IAAI,OAAO,aAAa,EAAE,CAAC,UAAU,KAAK,WAAW,EAAE,CAAC;IACtD,2BAA2B;IAC3B,IAAI,OAAO,SAAS,KAAK,UAAU,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC,EAAE,CAAC;QACxE,SAAS,CAAC,aAAa,EAAE,CAAC,CAAC;IAC7B,CAAC;SAAM,IAAI,SAAS,aAAT,SAAS,uBAAT,SAAS,CAAE,KAAK,EAAE,CAAC;QAC5B,aAAa,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;AACH,CAAC;AAED;;GAEG;AACH,MAAM,GAAG,GAAG,CAAC,KAAwB,EAAE,EAAE;IACvC,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,KAAK;SACZ;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IACJ,KAAK,EAAE,KAAK,CAAC,KAAK,EAClB,gBAAgB,EAAC,YAAY,EAC7B,OAAO,EAAE,WAAW,IAEnB,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,SAAS,CAAC,MAAsB;IAC9C,OAAO,IAAI,CAAC;AACd,CAAC;AAED,SAAS,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC1B,GAAG,CAAC,MAAM,GAAG,SAAS,CAAC;AAEvB,SAAS,CAAC,QAAQ,GAAG;IACnB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,YAAY;IACvB,WAAW,EAAE,YAAY;CAC1B,CAAC;AAEF,GAAG,CAAC,IAAI,GAAG,aAAa,CAAC;AACzB,eAAe,GAAG,CAAC"} -------------------------------------------------------------------------------- /indicators/CMF.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"CMF.js","sourceRoot":"","sources":["../src/indicators/CMF.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEvE,OAAO,SAAS,MAAM,sCAAsC,CAAC;AAE7D,IAAI,OAAO,aAAa,EAAE,CAAC,UAAU,KAAK,WAAW,EAAE,CAAC;IACtD,2BAA2B;IAC3B,IAAI,OAAO,SAAS,KAAK,UAAU,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC,EAAE,CAAC;QACxE,SAAS,CAAC,aAAa,EAAE,CAAC,CAAC;IAC7B,CAAC;SAAM,IAAI,SAAS,aAAT,SAAS,uBAAT,SAAS,CAAE,KAAK,EAAE,CAAC;QAC5B,aAAa,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;AACH,CAAC;AAED;;GAEG;AACH,MAAM,GAAG,GAAG,CAAC,KAAwB,EAAE,EAAE;IACvC,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,KAAK;SACZ;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IACJ,KAAK,EAAE,KAAK,CAAC,KAAK,EAClB,gBAAgB,EAAC,YAAY,EAC7B,OAAO,EAAE,WAAW,IAEnB,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,SAAS,CAAC,MAAsB;IAC9C,OAAO,IAAI,CAAC;AACd,CAAC;AAED,SAAS,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC1B,GAAG,CAAC,MAAM,GAAG,SAAS,CAAC;AAEvB,SAAS,CAAC,QAAQ,GAAG;IACnB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,YAAY;IACvB,WAAW,EAAE,YAAY;CAC1B,CAAC;AAEF,GAAG,CAAC,IAAI,GAAG,aAAa,CAAC;AACzB,eAAe,GAAG,CAAC"} -------------------------------------------------------------------------------- /indicators/CMO.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"CMO.js","sourceRoot":"","sources":["../src/indicators/CMO.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEvE,OAAO,SAAS,MAAM,sCAAsC,CAAC;AAE7D,IAAI,OAAO,aAAa,EAAE,CAAC,UAAU,KAAK,WAAW,EAAE,CAAC;IACtD,2BAA2B;IAC3B,IAAI,OAAO,SAAS,KAAK,UAAU,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC,EAAE,CAAC;QACxE,SAAS,CAAC,aAAa,EAAE,CAAC,CAAC;IAC7B,CAAC;SAAM,IAAI,SAAS,aAAT,SAAS,uBAAT,SAAS,CAAE,KAAK,EAAE,CAAC;QAC5B,aAAa,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;AACH,CAAC;AAED;;GAEG;AACH,MAAM,GAAG,GAAG,CAAC,KAAwB,EAAE,EAAE;IACvC,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,KAAK;SACZ;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IACJ,KAAK,EAAE,KAAK,CAAC,KAAK,EAClB,gBAAgB,EAAC,YAAY,EAC7B,OAAO,EAAE,WAAW,IAEnB,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,SAAS,CAAC,MAAsB;IAC9C,OAAO,IAAI,CAAC;AACd,CAAC;AAED,SAAS,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC1B,GAAG,CAAC,MAAM,GAAG,SAAS,CAAC;AAEvB,SAAS,CAAC,QAAQ,GAAG;IACnB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,YAAY;IACvB,WAAW,EAAE,YAAY;CAC1B,CAAC;AAEF,GAAG,CAAC,IAAI,GAAG,aAAa,CAAC;AACzB,eAAe,GAAG,CAAC"} -------------------------------------------------------------------------------- /indicators/DMI.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"DMI.js","sourceRoot":"","sources":["../src/indicators/DMI.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEvE,OAAO,SAAS,MAAM,sCAAsC,CAAC;AAE7D,IAAI,OAAO,aAAa,EAAE,CAAC,UAAU,KAAK,WAAW,EAAE,CAAC;IACtD,2BAA2B;IAC3B,IAAI,OAAO,SAAS,KAAK,UAAU,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC,EAAE,CAAC;QACxE,SAAS,CAAC,aAAa,EAAE,CAAC,CAAC;IAC7B,CAAC;SAAM,IAAI,SAAS,aAAT,SAAS,uBAAT,SAAS,CAAE,KAAK,EAAE,CAAC;QAC5B,aAAa,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;AACH,CAAC;AAED;;GAEG;AACH,MAAM,GAAG,GAAG,CAAC,KAAwB,EAAE,EAAE;IACvC,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,KAAK;SACZ;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IACJ,KAAK,EAAE,KAAK,CAAC,KAAK,EAClB,gBAAgB,EAAC,YAAY,EAC7B,OAAO,EAAE,WAAW,IAEnB,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,SAAS,CAAC,MAAsB;IAC9C,OAAO,IAAI,CAAC;AACd,CAAC;AAED,SAAS,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC1B,GAAG,CAAC,MAAM,GAAG,SAAS,CAAC;AAEvB,SAAS,CAAC,QAAQ,GAAG;IACnB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,YAAY;IACvB,WAAW,EAAE,YAAY;CAC1B,CAAC;AAEF,GAAG,CAAC,IAAI,GAAG,aAAa,CAAC;AACzB,eAAe,GAAG,CAAC"} -------------------------------------------------------------------------------- /indicators/DPO.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"DPO.js","sourceRoot":"","sources":["../src/indicators/DPO.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEvE,OAAO,SAAS,MAAM,sCAAsC,CAAC;AAE7D,IAAI,OAAO,aAAa,EAAE,CAAC,UAAU,KAAK,WAAW,EAAE,CAAC;IACtD,2BAA2B;IAC3B,IAAI,OAAO,SAAS,KAAK,UAAU,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC,EAAE,CAAC;QACxE,SAAS,CAAC,aAAa,EAAE,CAAC,CAAC;IAC7B,CAAC;SAAM,IAAI,SAAS,aAAT,SAAS,uBAAT,SAAS,CAAE,KAAK,EAAE,CAAC;QAC5B,aAAa,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;AACH,CAAC;AAED;;GAEG;AACH,MAAM,GAAG,GAAG,CAAC,KAAwB,EAAE,EAAE;IACvC,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,KAAK;SACZ;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IACJ,KAAK,EAAE,KAAK,CAAC,KAAK,EAClB,gBAAgB,EAAC,YAAY,EAC7B,OAAO,EAAE,WAAW,IAEnB,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,SAAS,CAAC,MAAsB;IAC9C,OAAO,IAAI,CAAC;AACd,CAAC;AAED,SAAS,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC1B,GAAG,CAAC,MAAM,GAAG,SAAS,CAAC;AAEvB,SAAS,CAAC,QAAQ,GAAG;IACnB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,YAAY;IACvB,WAAW,EAAE,YAAY;CAC1B,CAAC;AAEF,GAAG,CAAC,IAAI,GAAG,aAAa,CAAC;AACzB,eAAe,GAAG,CAAC"} -------------------------------------------------------------------------------- /indicators/EMA.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"EMA.js","sourceRoot":"","sources":["../src/indicators/EMA.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEvE,OAAO,SAAS,MAAM,6CAA6C,CAAC;AAEpE,IAAI,OAAO,aAAa,EAAE,CAAC,UAAU,KAAK,WAAW,EAAE,CAAC;IACtD,2BAA2B;IAC3B,IAAI,OAAO,SAAS,KAAK,UAAU,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC,EAAE,CAAC;QACxE,SAAS,CAAC,aAAa,EAAE,CAAC,CAAC;IAC7B,CAAC;SAAM,IAAI,SAAS,aAAT,SAAS,uBAAT,SAAS,CAAE,KAAK,EAAE,CAAC;QAC5B,aAAa,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;AACH,CAAC;AAED;;GAEG;AACH,MAAM,GAAG,GAAG,CAAC,KAAwB,EAAE,EAAE;IACvC,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,KAAK;SACZ;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IACJ,KAAK,EAAE,KAAK,CAAC,KAAK,EAClB,gBAAgB,EAAC,YAAY,EAC7B,OAAO,EAAE,WAAW,IAEnB,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,SAAS,CAAC,MAAsB;IAC9C,OAAO,IAAI,CAAC;AACd,CAAC;AAED,SAAS,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC1B,GAAG,CAAC,MAAM,GAAG,SAAS,CAAC;AAEvB,SAAS,CAAC,QAAQ,GAAG;IACnB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,YAAY;IACvB,WAAW,EAAE,YAAY;CAC1B,CAAC;AAEF,GAAG,CAAC,IAAI,GAAG,aAAa,CAAC;AACzB,eAAe,GAAG,CAAC"} -------------------------------------------------------------------------------- /indicators/IKH.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"IKH.js","sourceRoot":"","sources":["../src/indicators/IKH.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEvE,OAAO,SAAS,MAAM,qDAAqD,CAAC;AAE5E,IAAI,OAAO,aAAa,EAAE,CAAC,UAAU,KAAK,WAAW,EAAE,CAAC;IACtD,2BAA2B;IAC3B,IAAI,OAAO,SAAS,KAAK,UAAU,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC,EAAE,CAAC;QACxE,SAAS,CAAC,aAAa,EAAE,CAAC,CAAC;IAC7B,CAAC;SAAM,IAAI,SAAS,aAAT,SAAS,uBAAT,SAAS,CAAE,KAAK,EAAE,CAAC;QAC5B,aAAa,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;AACH,CAAC;AAED;;GAEG;AACH,MAAM,GAAG,GAAG,CAAC,KAAwB,EAAE,EAAE;IACvC,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,KAAK;SACZ;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IACJ,KAAK,EAAE,KAAK,CAAC,KAAK,EAClB,gBAAgB,EAAC,YAAY,EAC7B,OAAO,EAAE,WAAW,IAEnB,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,SAAS,CAAC,MAAsB;IAC9C,OAAO,IAAI,CAAC;AACd,CAAC;AAED,SAAS,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC1B,GAAG,CAAC,MAAM,GAAG,SAAS,CAAC;AAEvB,SAAS,CAAC,QAAQ,GAAG;IACnB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,YAAY;IACvB,WAAW,EAAE,YAAY;CAC1B,CAAC;AAEF,GAAG,CAAC,IAAI,GAAG,aAAa,CAAC;AACzB,eAAe,GAAG,CAAC"} -------------------------------------------------------------------------------- /indicators/KeltnerChannels.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * React integration. 3 | * Copyright (c) 2025, Highsoft 4 | * 5 | * A valid license is required for using this software. 6 | * See highcharts.com/license 7 | * 8 | * Built for Highcharts v.xx. 9 | * Build stamp: 2025-09-30 10 | * 11 | */ 12 | import React from "react"; 13 | import type { SeriesKeltnerChannelsOptions } from "highcharts/highcharts"; 14 | import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts"; 15 | /** 16 | * KeltnerChannels series 17 | */ 18 | declare const KeltnerChannels: { 19 | (props: ICommonAttributes): React.JSX.Element; 20 | Series: typeof KeltnerChannelsSeries; 21 | type: string; 22 | }; 23 | interface KeltnerChannelsSeriesProps extends ICommonSeriesAttributes { 24 | options?: WithoutType; 25 | children?: React.ReactNode; 26 | } 27 | export declare function KeltnerChannelsSeries(_props: KeltnerChannelsSeriesProps): any; 28 | export declare namespace KeltnerChannelsSeries { 29 | var type: string; 30 | var _HCReact: { 31 | type: string; 32 | HC_Option: string; 33 | childOption: string; 34 | }; 35 | } 36 | export default KeltnerChannels; 37 | -------------------------------------------------------------------------------- /indicators/MFI.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"MFI.js","sourceRoot":"","sources":["../src/indicators/MFI.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEvE,OAAO,SAAS,MAAM,sCAAsC,CAAC;AAE7D,IAAI,OAAO,aAAa,EAAE,CAAC,UAAU,KAAK,WAAW,EAAE,CAAC;IACtD,2BAA2B;IAC3B,IAAI,OAAO,SAAS,KAAK,UAAU,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC,EAAE,CAAC;QACxE,SAAS,CAAC,aAAa,EAAE,CAAC,CAAC;IAC7B,CAAC;SAAM,IAAI,SAAS,aAAT,SAAS,uBAAT,SAAS,CAAE,KAAK,EAAE,CAAC;QAC5B,aAAa,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;AACH,CAAC;AAED;;GAEG;AACH,MAAM,GAAG,GAAG,CAAC,KAAwB,EAAE,EAAE;IACvC,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,KAAK;SACZ;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IACJ,KAAK,EAAE,KAAK,CAAC,KAAK,EAClB,gBAAgB,EAAC,YAAY,EAC7B,OAAO,EAAE,WAAW,IAEnB,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,SAAS,CAAC,MAAsB;IAC9C,OAAO,IAAI,CAAC;AACd,CAAC;AAED,SAAS,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC1B,GAAG,CAAC,MAAM,GAAG,SAAS,CAAC;AAEvB,SAAS,CAAC,QAAQ,GAAG;IACnB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,YAAY;IACvB,WAAW,EAAE,YAAY;CAC1B,CAAC;AAEF,GAAG,CAAC,IAAI,GAAG,aAAa,CAAC;AACzB,eAAe,GAAG,CAAC"} -------------------------------------------------------------------------------- /indicators/OBV.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"OBV.js","sourceRoot":"","sources":["../src/indicators/OBV.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEvE,OAAO,SAAS,MAAM,sCAAsC,CAAC;AAE7D,IAAI,OAAO,aAAa,EAAE,CAAC,UAAU,KAAK,WAAW,EAAE,CAAC;IACtD,2BAA2B;IAC3B,IAAI,OAAO,SAAS,KAAK,UAAU,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC,EAAE,CAAC;QACxE,SAAS,CAAC,aAAa,EAAE,CAAC,CAAC;IAC7B,CAAC;SAAM,IAAI,SAAS,aAAT,SAAS,uBAAT,SAAS,CAAE,KAAK,EAAE,CAAC;QAC5B,aAAa,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;AACH,CAAC;AAED;;GAEG;AACH,MAAM,GAAG,GAAG,CAAC,KAAwB,EAAE,EAAE;IACvC,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,KAAK;SACZ;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IACJ,KAAK,EAAE,KAAK,CAAC,KAAK,EAClB,gBAAgB,EAAC,YAAY,EAC7B,OAAO,EAAE,WAAW,IAEnB,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,SAAS,CAAC,MAAsB;IAC9C,OAAO,IAAI,CAAC;AACd,CAAC;AAED,SAAS,CAAC,IAAI,GAAG,QAAQ,CAAC;AAC1B,GAAG,CAAC,MAAM,GAAG,SAAS,CAAC;AAEvB,SAAS,CAAC,QAAQ,GAAG;IACnB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,YAAY;IACvB,WAAW,EAAE,YAAY;CAC1B,CAAC;AAEF,GAAG,CAAC,IAAI,GAAG,aAAa,CAAC;AACzB,eAAe,GAAG,CAAC"} -------------------------------------------------------------------------------- /indicators/PC.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"PC.js","sourceRoot":"","sources":["../src/indicators/PC.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,EACZ,QAAQ;AACR,aAAa;EACd,MAAM,OAAO,CAAC;AAWf,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEvE,OAAO,SAAS,MAAM,gDAAgD,CAAC;AAEvE,IAAI,OAAO,aAAa,EAAE,CAAC,UAAU,KAAK,WAAW,EAAE,CAAC;IACtD,2BAA2B;IAC3B,IAAI,OAAO,SAAS,KAAK,UAAU,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC,EAAE,CAAC;QACxE,SAAS,CAAC,aAAa,EAAE,CAAC,CAAC;IAC7B,CAAC;SAAM,IAAI,SAAS,aAAT,SAAS,uBAAT,SAAS,CAAE,KAAK,EAAE,CAAC;QAC5B,aAAa,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;AACH,CAAC;AAED;;GAEG;AACH,MAAM,EAAE,GAAG,CAAC,KAAwB,EAAE,EAAE;IACtC,MAAM,CAAC,WAAW,CAAC,GAAG,QAAQ,CAC5B,MAAM,CAAC,MAAM,CACX;QACE,KAAK,EAAE;YACL,IAAI,EAAE,IAAI;SACX;KACF,EACD,KAAK,CAAC,OAAO,IAAI,EAAE,CACpB,CACF,CAAC;IAEF,OAAO,CACL,oBAAC,KAAK,IACJ,KAAK,EAAE,KAAK,CAAC,KAAK,EAClB,gBAAgB,EAAC,YAAY,EAC7B,OAAO,EAAE,WAAW,IAEnB,KAAK,CAAC,QAAQ,CACT,CACT,CAAC;AACJ,CAAC,CAAC;AAOF,MAAM,UAAU,QAAQ,CAAC,MAAqB;IAC5C,OAAO,IAAI,CAAC;AACd,CAAC;AAED,QAAQ,CAAC,IAAI,GAAG,QAAQ,CAAC;AACzB,EAAE,CAAC,MAAM,GAAG,QAAQ,CAAC;AAErB,QAAQ,CAAC,QAAQ,GAAG;IAClB,IAAI,EAAE,QAAQ;IACd,SAAS,EAAE,WAAW;IACtB,WAAW,EAAE,WAAW;CACzB,CAAC;AAEF,EAAE,CAAC,IAAI,GAAG,aAAa,CAAC;AACxB,eAAe,EAAE,CAAC"} --------------------------------------------------------------------------------