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:
|
|
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:
|
|
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:
|
|
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:
|
|
284
|
+
type GraphingTileComponent = (props: GraphingTileProps) => JSX.Element | null;
|
|
285
285
|
declare function registerGraphingTileComponent(key: string, component: GraphingTileComponent): void;
|
|
286
286
|
/** ---------------------------------------------------------------------------
|
|
287
287
|
* Component
|