@campxdev/shared 1.6.11 → 1.6.12

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/exports.ts CHANGED
@@ -13,6 +13,7 @@ export { default as ConfirmContextProvider } from './src/components/PopupConfirm
13
13
  export { default as DialogProvider } from './src/components/DrawerWrapper/DrawerWrapper'
14
14
  export { default as Providers } from './src/contexts/Providers'
15
15
  export { default as PublicProviders } from './src/contexts/PublicProviders'
16
+ export { default as QueryClientProvider } from './src/contexts/QueryClientProvider'
16
17
 
17
18
  export * from './src/shared-state'
18
19
  export * from './src/assets/images'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@campxdev/shared",
3
- "version": "1.6.11",
3
+ "version": "1.6.12",
4
4
  "main": "./exports.ts",
5
5
  "scripts": {
6
6
  "start": "react-scripts start",
@@ -28,6 +28,7 @@ import AsyncSearchSelect from './Input/AsyncSearchSelect'
28
28
  import FilterButton from './FilterComponents/FilterButton'
29
29
  import Helmet from './Layout/Helmet'
30
30
  import NavigationTabs from './Tabs/NavigationTabs'
31
+ import GlobalNetworkLoadingIndicator from './ErrorBoundary/GlobalNetworkLoadingIndicator'
31
32
  import { CustomDialog } from './ModalButtons/DialogButton'
32
33
  import { CustomDrawer } from './ModalButtons/DrawerButton'
33
34
  export { default as Image } from './Image'
@@ -88,6 +89,7 @@ export {
88
89
  NavigationTabs,
89
90
  CustomDialog,
90
91
  CustomDrawer,
92
+ GlobalNetworkLoadingIndicator,
91
93
  }
92
94
 
93
95
  export * from './UploadButton/types'