@hrnec06/react_utils 1.7.3 → 1.7.4

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.ts +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hrnec06/react_utils",
3
- "version": "1.7.3",
3
+ "version": "1.7.4",
4
4
  "description": "React utilities",
5
5
  "exports": {
6
6
  ".": "./src/index.ts"
package/src/index.ts CHANGED
@@ -26,6 +26,7 @@ import Dialog from "./components/Dialog/Dialog";
26
26
  import ContextMenu from "./components/ContextMenu/ContextMenu";
27
27
 
28
28
  import * as util from './lib/utils';
29
+ import ContextError from "./lib/errors/ContextError";
29
30
 
30
31
 
31
32
  export {
@@ -63,4 +64,5 @@ export {
63
64
 
64
65
  // Utilities
65
66
  util,
67
+ ContextError
66
68
  };