@bigbinary/neeto-commons-frontend 2.0.99 → 2.0.101

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.
package/initializers.d.ts CHANGED
@@ -74,5 +74,17 @@ export const globalProps: GlobalPropsType;
74
74
  *
75
75
  * for more details.
76
76
  *
77
+ * @example
78
+ *
79
+ * const App = () => {
80
+ * const isError = useDisplayErrorPage();
81
+ *
82
+ * if (isError) {
83
+ * return <ErrorPage />;
84
+ * }
85
+ *
86
+ * return <Main />;
87
+ * };
88
+ * @endexample
77
89
  */
78
90
  export function useDisplayErrorPage(): Boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-commons-frontend",
3
- "version": "2.0.99",
3
+ "version": "2.0.101",
4
4
  "description": "A package encapsulating common code across neeto projects including initializers, utility functions, common components and hooks and so on.",
5
5
  "repository": "git@github.com:bigbinary/neeto-commons-frontend.git",
6
6
  "author": "Amaljith K <amaljith.k@bigbinary.com>",