moorr-react-mui 0.2.70 → 0.2.72
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { default as GraphingContext, GraphingContextResult, useGraphingContext, InputEventArgs, InputChangeEventArgs, InputDataRequiredEventArgs, } from "./graphing.context";
|
|
1
|
+
export { default as GraphingContext, GraphingContextResult, useGraphingContext, InputEventArgs, InputChangeEventArgs, InputDataRequiredEventArgs, LinkClickEventArgs, } from "./graphing.context";
|
|
2
2
|
export { GraphingGrid } from "./graphing-grid.component";
|
|
3
3
|
export { GraphingTileControls } from "./graphing-tile-controls.component";
|
|
4
4
|
export { GraphingTiles } from "./graphing-tiles.component";
|
package/index.d.ts
CHANGED
|
@@ -239,7 +239,7 @@ interface InputChangeEventArgs {
|
|
|
239
239
|
interface LinkClickEventArgs {
|
|
240
240
|
originalEvent: any;
|
|
241
241
|
control: FormInputModel;
|
|
242
|
-
|
|
242
|
+
payload: any;
|
|
243
243
|
}
|
|
244
244
|
interface InputDataRequiredEventArgs {
|
|
245
245
|
key: string;
|
|
@@ -484,4 +484,4 @@ interface FadeModalProps {
|
|
|
484
484
|
}
|
|
485
485
|
declare const FadeModal: React__default.FC<FadeModalProps>;
|
|
486
486
|
|
|
487
|
-
export { Button, _default as Dropdown, FadeModal, FormGroupModel, FormGroupsTile, FormGroupsTileModel, FormInputModel, GraphingContext, GraphingContextResult, GraphingControl, GraphingControlModel, GraphingControlProps, GraphingControlSettingsModel, GraphingGrid, GraphingSettingsModel, GraphingTile, GraphingTileControls, GraphingTileModel, GraphingTileProps, GraphingTileSettingsModel, GraphingTiles, HorizontalTile, HorizontalTileModel, InputChangeEventArgs, InputDataRequiredEventArgs, InputEventArgs, Modal, ModalContructor, ModalProps, Modal$1 as MoorrModal, MultipleControlsTileModel, SelectableStatesTile, SelectableStatesTileModel, SingleControlTileModel, SingleTile, SingleTileModel, VerticalTile, VerticalTileModel, createGraphingControl, createGraphingControls, createGraphingTile, createGraphingTiles, modals, modalsStack, registerGraphingControl, registerGraphingControlComponent, registerGraphingTile, registerGraphingTileComponent, toastMessage, useGraphingContext };
|
|
487
|
+
export { Button, _default as Dropdown, FadeModal, FormGroupModel, FormGroupsTile, FormGroupsTileModel, FormInputModel, GraphingContext, GraphingContextResult, GraphingControl, GraphingControlModel, GraphingControlProps, GraphingControlSettingsModel, GraphingGrid, GraphingSettingsModel, GraphingTile, GraphingTileControls, GraphingTileModel, GraphingTileProps, GraphingTileSettingsModel, GraphingTiles, HorizontalTile, HorizontalTileModel, InputChangeEventArgs, InputDataRequiredEventArgs, InputEventArgs, LinkClickEventArgs, Modal, ModalContructor, ModalProps, Modal$1 as MoorrModal, MultipleControlsTileModel, SelectableStatesTile, SelectableStatesTileModel, SingleControlTileModel, SingleTile, SingleTileModel, VerticalTile, VerticalTileModel, createGraphingControl, createGraphingControls, createGraphingTile, createGraphingTiles, modals, modalsStack, registerGraphingControl, registerGraphingControlComponent, registerGraphingTile, registerGraphingTileComponent, toastMessage, useGraphingContext };
|