From 90272ec75876c5af7afad0e60c8a25f553d9593a Mon Sep 17 00:00:00 2001 From: Oleksandr Hladchenko <85172747+OleksandrHladchenko1@users.noreply.github.com> Date: Wed, 18 Oct 2023 14:10:45 +0300 Subject: [PATCH] STCOR-749: Allow to import validateUser function from @folio/stripes/core (#1351) (cherry picked from commit 38729dbf061458f3cc5b530dc14e254dc5ed8623) --- CHANGELOG.md | 4 ++++ index.js | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d89865e25..fc7806a9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change history for stripes-core +## 10.0.1 IN PROGRESS + +* Avoid private path when import `validateUser` function. Refs STCOR-749. + ## [10.0.0](https://github.com/folio-org/stripes-core/tree/v10.0.0) (2023-10-11) [Full Changelog](https://github.com/folio-org/stripes-core/compare/v9.0.0...v10.0.0) diff --git a/index.js b/index.js index ed599f10d..f9598cb04 100644 --- a/index.js +++ b/index.js @@ -9,7 +9,7 @@ export { useModules } from './src/ModulesContext'; export { withModule, withModules } from './src/components/Modules'; export { default as stripesConnect } from './src/stripesConnect'; export { default as Pluggable } from './src/Pluggable'; -export { updateUser, updateTenant } from './src/loginServices'; +export { updateUser, updateTenant, validateUser } from './src/loginServices'; export { default as coreEvents } from './src/events'; export { default as useOkapiKy } from './src/useOkapiKy'; export { default as withOkapiKy } from './src/withOkapiKy';