moorr-react-mui 0.2.3 → 0.2.4

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.
@@ -11,7 +11,7 @@ export interface GraphingControlProps {
11
11
  controlData?: any;
12
12
  gtagSource?: string;
13
13
  }
14
- type GraphingControlComponent = (props: any) => JSX.Element | null;
14
+ type GraphingControlComponent = (props: GraphingControlProps) => JSX.Element | null;
15
15
  export declare function registerGraphingControlComponent(key: string, component: GraphingControlComponent): void;
16
16
  /** ---------------------------------------------------------------------------
17
17
  * Component
@@ -8,7 +8,7 @@ export interface GraphingTileProps {
8
8
  graphingTile: GraphingTileSettingsModel;
9
9
  graphingTileIndex: number;
10
10
  }
11
- type GraphingTileComponent = (props: any) => JSX.Element | null;
11
+ type GraphingTileComponent = (props: GraphingTileProps) => JSX.Element | null;
12
12
  export declare function registerGraphingTileComponent(key: string, component: GraphingTileComponent): void;
13
13
  /** ---------------------------------------------------------------------------
14
14
  * Component
package/index.d.ts CHANGED
@@ -265,7 +265,7 @@ interface GraphingControlProps {
265
265
  controlData?: any;
266
266
  gtagSource?: string;
267
267
  }
268
- type GraphingControlComponent = (props: any) => JSX.Element | null;
268
+ type GraphingControlComponent = (props: GraphingControlProps) => JSX.Element | null;
269
269
  declare function registerGraphingControlComponent(key: string, component: GraphingControlComponent): void;
270
270
  /** ---------------------------------------------------------------------------
271
271
  * Component
@@ -281,7 +281,7 @@ interface GraphingTileProps {
281
281
  graphingTile: GraphingTileSettingsModel;
282
282
  graphingTileIndex: number;
283
283
  }
284
- type GraphingTileComponent = (props: any) => JSX.Element | null;
284
+ type GraphingTileComponent = (props: GraphingTileProps) => JSX.Element | null;
285
285
  declare function registerGraphingTileComponent(key: string, component: GraphingTileComponent): void;
286
286
  /** ---------------------------------------------------------------------------
287
287
  * Component
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "moorr-react-mui",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "Moorr React MUI Common Library",
5
5
  "scripts": {
6
6
  "_clear": "rimraf index.* && rimraf typings/* && rimraf cjs/*",