propro-common-components 0.1.86 → 0.1.88
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/dist/main.d.ts
CHANGED
@@ -1,5 +1,8 @@
|
|
1
1
|
import { isUserLoggedIn } from './utils/checkAccessToken';
|
2
|
+
import { StyleType, getAvailableStyles, loadIcon } from './utils/iconUtils';
|
3
|
+
import IconLoader from './components/IconLoader/IconLoader';
|
2
4
|
import { ListGridSwitch } from './components/switch/ListGridSwitch';
|
5
|
+
import getCookie from './utils/getCookie';
|
3
6
|
import useGet from './api/useGetx';
|
4
7
|
import useMutate from './api/useMutate';
|
5
8
|
import useMutateWithKeepAlive from './api/useMutateWithKeepAlive';
|
@@ -9,5 +12,5 @@ import Loading from './components/ui/Loading';
|
|
9
12
|
import { AppContext, AppProvider } from './context/AppContext';
|
10
13
|
import PrivateRoute from './hoc/PrivateRoute';
|
11
14
|
import Footer from './plasmicComponents/Footer';
|
12
|
-
|
13
|
-
export {
|
15
|
+
export { AppContext, AppHOC, AppProvider, AvatarMenu, Footer, IconLoader, ListGridSwitch, Loading, PrivateRoute, getAvailableStyles, getCookie, isUserLoggedIn, loadIcon, useGet, useMutate, useMutateWithKeepAlive, };
|
16
|
+
export type { StyleType };
|