@gearbox-protocol/permissionless-ui 1.4.1 → 1.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,53 @@
1
+ declare module "reactochart/ColorHeatmap" {
2
+ import type { ComponentType } from "react";
3
+ const ColorHeatmap: ComponentType<any>;
4
+ export default ColorHeatmap;
5
+ export interface Cell {
6
+ x: unknown;
7
+ y: unknown;
8
+ value: unknown;
9
+ xEnd?: unknown;
10
+ yEnd?: unknown;
11
+ }
12
+ }
13
+
14
+ declare module "reactochart/XAxis" {
15
+ import type { ComponentType } from "react";
16
+ const XAxis: ComponentType<any>;
17
+ export default XAxis;
18
+ }
19
+
20
+ declare module "reactochart/XLine" {
21
+ import type { ComponentType } from "react";
22
+ const XLine: ComponentType<any>;
23
+ export default XLine;
24
+ }
25
+
26
+ declare module "reactochart/XYPlot" {
27
+ import type { ComponentType } from "react";
28
+ const XYPlot: ComponentType<any>;
29
+ export default XYPlot;
30
+ }
31
+
32
+ declare module "reactochart/YAxis" {
33
+ import type { ComponentType } from "react";
34
+ const YAxis: ComponentType<any>;
35
+ export default YAxis;
36
+ }
37
+
38
+ declare module "reactochart/YLine" {
39
+ import type { ComponentType } from "react";
40
+ const YLine: ComponentType<any>;
41
+ export default YLine;
42
+ }
43
+
44
+ declare module "reactochart/ScatterPlot" {
45
+ import type { ComponentType } from "react";
46
+ const ScatterPlot: ComponentType<any>;
47
+ export default ScatterPlot;
48
+ export interface Point {
49
+ x: unknown;
50
+ y: unknown;
51
+ [index: number]: unknown;
52
+ }
53
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/permissionless-ui",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "description": "Internal UI components",
5
5
  "license": "MIT",
6
6
  "main": "./dist/cjs/index.js",