@ramesesinc/platform-core 0.1.8 → 0.1.9

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,6 +21,9 @@ export { default as HtmlView } from "./view/HtmlView";
21
21
  export { default as IFrameView } from "./view/IFrameView";
22
22
  export { default as RootView } from "./view/RootView";
23
23
  export { default as WizardView } from "./view/WizardView";
24
+ export { default as PopupView } from "./view/PopupView";
25
+ export type { usePopupView } from "./view/PopupView";
26
+ export type { ShowPopupViewRef, CreatePopupViewRef, UsePopupViewResult } from "./view/PopupView";
24
27
  export { default as AlertMessage } from "./action/AlertMessage";
25
28
  export { default as DeleteData } from "./action/DeleteData";
26
29
  export { default as Edit } from "./action/Edit";
@@ -26,6 +26,7 @@ export { default as HtmlView } from "./view/HtmlView";
26
26
  export { default as IFrameView } from "./view/IFrameView";
27
27
  export { default as RootView } from "./view/RootView";
28
28
  export { default as WizardView } from "./view/WizardView";
29
+ export { default as PopupView } from "./view/PopupView";
29
30
  //actions
30
31
  export { default as AlertMessage } from "./action/AlertMessage";
31
32
  export { default as DeleteData } from "./action/DeleteData";
@@ -19,3 +19,4 @@ export type PageDef = {
19
19
  };
20
20
  [key: string]: any;
21
21
  };
22
+ export * from "./PopupContext";
@@ -1,2 +1,3 @@
1
1
  export * from "./auth";
2
2
  export { verifyToken, getUser, buildSessionHeader } from "./auth/session";
3
+ export * from "./PopupContext";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ramesesinc/platform-core",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "Platform Core Library",
5
5
  "author": "Rameses Systems Inc.",
6
6
  "license": "MIT",