@cccsaurora/howler-ui 2.14.0-dev.265 → 2.14.0-dev.266
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/commons/components/app/AppSkeleton.tsx +1 -1
- package/commons/components/pages/PageCenter.tsx +2 -2
- package/commons/components/pages/PageFullWidth.tsx +1 -1
- package/commons/components/topnav/ThemeSelection.tsx +1 -1
- package/commons/components/topnav/UserProfile.tsx +1 -1
- package/package.json +577 -576
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { Apps } from '@mui/icons-material';
|
|
2
2
|
import { Divider, List, Skeleton, Toolbar, styled, useMediaQuery, useTheme } from '@mui/material';
|
|
3
|
-
import { AppUserAvatar } from 'commons/components//topnav/UserProfile';
|
|
4
3
|
import type { AppLeftNavElement } from '@cccsaurora/howler-ui/commons/components/app/AppConfigs';
|
|
5
4
|
import {
|
|
6
5
|
useAppBreadcrumbs,
|
|
@@ -10,6 +9,7 @@ import {
|
|
|
10
9
|
useAppQuickSearch
|
|
11
10
|
} from '@cccsaurora/howler-ui/commons/components/app/hooks';
|
|
12
11
|
import { AppBarBase } from '@cccsaurora/howler-ui/commons/components/topnav/AppBar';
|
|
12
|
+
import { AppUserAvatar } from '@cccsaurora/howler-ui/commons/components/topnav/UserProfile';
|
|
13
13
|
|
|
14
14
|
/**
|
|
15
15
|
* Utility component to render the skeleton of the left navigation menu elements.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Box } from '@mui/material';
|
|
2
|
-
import PageContent from 'commons/components/pages
|
|
3
|
-
import { type PageProps } from 'commons/components/pages
|
|
2
|
+
import PageContent from '@cccsaurora/howler-ui/commons/components/pages/PageContent';
|
|
3
|
+
import { type PageProps } from '@cccsaurora/howler-ui/commons/components/pages/hooks/usePageProps';
|
|
4
4
|
import { memo } from 'react';
|
|
5
5
|
|
|
6
6
|
type PageCenterProps = PageProps & {
|
|
@@ -10,7 +10,6 @@ import {
|
|
|
10
10
|
useMediaQuery,
|
|
11
11
|
useTheme
|
|
12
12
|
} from '@mui/material';
|
|
13
|
-
import useLocalStorage from 'commons/components//utils/hooks/useLocalStorage';
|
|
14
13
|
import { APP_STORAGE_PREFIX } from '@cccsaurora/howler-ui/commons/components/app/AppConstants';
|
|
15
14
|
import {
|
|
16
15
|
useAppBar,
|
|
@@ -21,6 +20,7 @@ import {
|
|
|
21
20
|
useAppQuickSearch,
|
|
22
21
|
useAppTheme
|
|
23
22
|
} from '@cccsaurora/howler-ui/commons/components/app/hooks';
|
|
23
|
+
import useLocalStorage from '@cccsaurora/howler-ui/commons/components/utils/hooks/useLocalStorage';
|
|
24
24
|
import { memo } from 'react';
|
|
25
25
|
import { useTranslation } from 'react-i18next';
|
|
26
26
|
|
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
Typography,
|
|
18
18
|
useTheme
|
|
19
19
|
} from '@mui/material';
|
|
20
|
-
import type { AppBarUserMenuElement } from 'commons/components
|
|
20
|
+
import type { AppBarUserMenuElement } from '@cccsaurora/howler-ui/commons/components/app/AppConfigs';
|
|
21
21
|
import { useAppConfigs, useAppUser } from '@cccsaurora/howler-ui/commons/components/app/hooks';
|
|
22
22
|
import AppAvatar, { type AppAvatarProps } from '@cccsaurora/howler-ui/commons/components/display/AppAvatar';
|
|
23
23
|
import ThemeSelection from '@cccsaurora/howler-ui/commons/components/topnav/ThemeSelection';
|