moorr-react-mui 0.2.69 → 0.2.70

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.
@@ -18,6 +18,11 @@ export interface InputChangeEventArgs {
18
18
  frequency?: string;
19
19
  asAtDate?: Date;
20
20
  }
21
+ export interface LinkClickEventArgs {
22
+ originalEvent: any;
23
+ control: FormInputModel;
24
+ linkData: string;
25
+ }
21
26
  export interface InputDataRequiredEventArgs {
22
27
  key: string;
23
28
  }
@@ -39,6 +44,7 @@ export type GraphingContextResult = {
39
44
  handleInputEvent?: (e: InputEventArgs) => Promise<void>;
40
45
  handleInputChange?: (e: InputChangeEventArgs) => Promise<void>;
41
46
  handleInputDataRequired?: (e: InputDataRequiredEventArgs) => Promise<void>;
47
+ handleLinkClick?: (e: LinkClickEventArgs) => Promise<void>;
42
48
  navigate?: (path: any) => void;
43
49
  };
44
50
  /** ---------------------------------------------------------------------------
package/index.d.ts CHANGED
@@ -236,6 +236,11 @@ interface InputChangeEventArgs {
236
236
  frequency?: string;
237
237
  asAtDate?: Date;
238
238
  }
239
+ interface LinkClickEventArgs {
240
+ originalEvent: any;
241
+ control: FormInputModel;
242
+ linkData: string;
243
+ }
239
244
  interface InputDataRequiredEventArgs {
240
245
  key: string;
241
246
  }
@@ -257,6 +262,7 @@ type GraphingContextResult = {
257
262
  handleInputEvent?: (e: InputEventArgs) => Promise<void>;
258
263
  handleInputChange?: (e: InputChangeEventArgs) => Promise<void>;
259
264
  handleInputDataRequired?: (e: InputDataRequiredEventArgs) => Promise<void>;
265
+ handleLinkClick?: (e: LinkClickEventArgs) => Promise<void>;
260
266
  navigate?: (path: any) => void;
261
267
  };
262
268
  /** ---------------------------------------------------------------------------
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "moorr-react-mui",
3
- "version": "0.2.69",
3
+ "version": "0.2.70",
4
4
  "description": "Moorr React MUI Common Library",
5
5
  "scripts": {
6
6
  "_clear": "rimraf index.* && rimraf typings/* && rimraf cjs/*",