moorr-react-mui 0.2.32 → 0.2.35

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.
@@ -9,6 +9,9 @@ export interface InputChangeEventArgs {
9
9
  key: string;
10
10
  value: any;
11
11
  }
12
+ export interface InputDataRequiredEventArgs {
13
+ key: string;
14
+ }
12
15
  export type GraphingContextResult = {
13
16
  settings?: GraphingSettingsModel;
14
17
  data: {
@@ -22,6 +25,7 @@ export type GraphingContextResult = {
22
25
  handleSelectableStatesTileChange?: (e: any) => void;
23
26
  handleRangeSelectChange?: (e: any) => void;
24
27
  handleInputChange?: (e: InputChangeEventArgs) => Promise<void>;
28
+ handleInputDataRequired?: (e: InputDataRequiredEventArgs) => Promise<void>;
25
29
  navigate?: (path: any) => void;
26
30
  };
27
31
  /** ---------------------------------------------------------------------------
package/index.d.ts CHANGED
@@ -209,6 +209,9 @@ interface InputChangeEventArgs {
209
209
  key: string;
210
210
  value: any;
211
211
  }
212
+ interface InputDataRequiredEventArgs {
213
+ key: string;
214
+ }
212
215
  type GraphingContextResult = {
213
216
  settings?: GraphingSettingsModel;
214
217
  data: {
@@ -222,6 +225,7 @@ type GraphingContextResult = {
222
225
  handleSelectableStatesTileChange?: (e: any) => void;
223
226
  handleRangeSelectChange?: (e: any) => void;
224
227
  handleInputChange?: (e: InputChangeEventArgs) => Promise<void>;
228
+ handleInputDataRequired?: (e: InputDataRequiredEventArgs) => Promise<void>;
225
229
  navigate?: (path: any) => void;
226
230
  };
227
231
  /** ---------------------------------------------------------------------------
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "moorr-react-mui",
3
- "version": "0.2.32",
3
+ "version": "0.2.35",
4
4
  "description": "Moorr React MUI Common Library",
5
5
  "scripts": {
6
6
  "_clear": "rimraf index.* && rimraf typings/* && rimraf cjs/*",
@@ -42,7 +42,7 @@
42
42
  "@material-ui/styles": "^4.11.4",
43
43
  "@mui/material": "^5.11.8",
44
44
  "jss": "^10.9.2",
45
- "moorr-common": "^0.2.1",
45
+ "moorr-common": "^0.2.9",
46
46
  "react": "^17.0.2",
47
47
  "react-dom": "^17.0.2",
48
48
  "react-grid-layout": "^1.3.4",