moorr-react-mui 0.2.30 → 0.2.32

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.
@@ -21,7 +21,7 @@ export type GraphingContextResult = {
21
21
  selectedRange?: string;
22
22
  handleSelectableStatesTileChange?: (e: any) => void;
23
23
  handleRangeSelectChange?: (e: any) => void;
24
- handleInputChange?: (e: InputChangeEventArgs) => void;
24
+ handleInputChange?: (e: InputChangeEventArgs) => Promise<void>;
25
25
  navigate?: (path: any) => void;
26
26
  };
27
27
  /** ---------------------------------------------------------------------------
@@ -1,4 +1,4 @@
1
- export { default as GraphingContext, GraphingContextResult, useGraphingContext } from "./graphing.context";
1
+ export { default as GraphingContext, GraphingContextResult, useGraphingContext, InputChangeEventArgs } 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
@@ -221,7 +221,7 @@ type GraphingContextResult = {
221
221
  selectedRange?: string;
222
222
  handleSelectableStatesTileChange?: (e: any) => void;
223
223
  handleRangeSelectChange?: (e: any) => void;
224
- handleInputChange?: (e: InputChangeEventArgs) => void;
224
+ handleInputChange?: (e: InputChangeEventArgs) => Promise<void>;
225
225
  navigate?: (path: any) => void;
226
226
  };
227
227
  /** ---------------------------------------------------------------------------
@@ -433,4 +433,4 @@ interface FadeModalProps {
433
433
  }
434
434
  declare const FadeModal: React__default.FC<FadeModalProps>;
435
435
 
436
- export { Button, _default as Dropdown, FadeModal, FormGroupModel, FormGroupsTile, FormGroupsTileModel, GraphingContext, GraphingContextResult, GraphingControl, GraphingControlModel, GraphingControlProps, GraphingControlSettingsModel, GraphingGrid, GraphingSettingsModel, GraphingTile, GraphingTileControls, GraphingTileModel, GraphingTileProps, GraphingTileSettingsModel, GraphingTiles, HorizontalTile, HorizontalTileModel, 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, useGraphingContext };
436
+ export { Button, _default as Dropdown, FadeModal, FormGroupModel, FormGroupsTile, FormGroupsTileModel, GraphingContext, GraphingContextResult, GraphingControl, GraphingControlModel, GraphingControlProps, GraphingControlSettingsModel, GraphingGrid, GraphingSettingsModel, GraphingTile, GraphingTileControls, GraphingTileModel, GraphingTileProps, GraphingTileSettingsModel, GraphingTiles, HorizontalTile, HorizontalTileModel, InputChangeEventArgs, 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, useGraphingContext };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "moorr-react-mui",
3
- "version": "0.2.30",
3
+ "version": "0.2.32",
4
4
  "description": "Moorr React MUI Common Library",
5
5
  "scripts": {
6
6
  "_clear": "rimraf index.* && rimraf typings/* && rimraf cjs/*",