-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Transpile on publish. Leverage the `prepare` npm lifecycle hook to execute transpilation prior to publishing. Refs STCOR-937
- Loading branch information
Showing
6 changed files
with
1,192 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* external utilities */ | ||
export { ConnectContext as RootContext, withConnect as withRoot } from '@folio/stripes-connect'; | ||
export { CalloutContext, useCallout } from './CalloutContext'; | ||
|
||
/* internal utilities */ | ||
export { stripesShape } from './Stripes'; | ||
export { withStripes, useStripes, StripesContext } from './StripesContext'; | ||
export { useModules } from './ModulesContext'; | ||
export { withModule, withModules } from './components/Modules'; | ||
export { default as stripesConnect } from './stripesConnect'; | ||
export { default as Pluggable } from './Pluggable'; | ||
export { updateUser, updateTenant, validateUser } from './loginServices'; | ||
export { default as coreEvents } from './events'; | ||
export { default as useOkapiKy } from './useOkapiKy'; | ||
export { default as withOkapiKy } from './withOkapiKy'; | ||
export { default as useCustomFields } from './useCustomFields'; | ||
export { default as createReactQueryClient } from './createReactQueryClient'; | ||
|
||
/* components */ | ||
export { default as AppContextMenu } from './components/MainNav/CurrentApp/AppContextMenu'; | ||
export { default as IfInterface } from './components/IfInterface'; | ||
export { default as IfPermission } from './components/IfPermission'; | ||
export { default as IfAnyPermission } from './components/IfAnyPermission'; | ||
export { default as TitleManager } from './components/TitleManager'; | ||
export { default as HandlerManager } from './components/HandlerManager'; | ||
export { default as IntlConsumer } from './components/IntlConsumer'; | ||
export { default as AppIcon } from './components/AppIcon'; | ||
export { Route, Switch, Redirect } from './components/NestedRouter'; | ||
export { | ||
ModuleHierarchyContext, | ||
ModuleHierarchyProvider, | ||
useModuleHierarchy, | ||
useNamespace, | ||
withNamespace, | ||
LastVisitedContext, | ||
withLastVisited, | ||
} from './components'; | ||
|
||
/* Queries */ | ||
export { useChunkedCQLFetch } from './queries'; | ||
export { getUserTenantsPermissions } from './queries'; | ||
|
||
/* Hooks */ | ||
export { useUserTenantPermissions } from './hooks'; | ||
|
||
/* misc */ | ||
export { supportedLocales } from './loginServices'; | ||
export { supportedNumberingSystems } from './loginServices'; | ||
export { userLocaleConfig } from './loginServices'; | ||
export * from './consortiaServices'; | ||
export { default as queryLimit } from './queryLimit'; | ||
export { default as init } from './init'; | ||
|
||
/* localforage wrappers hide the session key */ | ||
export { getOkapiSession, getTokenExpiry, setTokenExpiry } from './loginServices'; | ||
|
||
export { registerServiceWorker, unregisterServiceWorker } from './serviceWorkerRegistration'; | ||
|
||
export { getEventHandler } from './handlerService'; |
Oops, something went wrong.