@campxdev/react-blueprint 2.3.1 → 2.3.3

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.
@@ -0,0 +1,5 @@
1
+ export declare const ActivitiesIcon: ({ sx, color, size, }: {
2
+ sx?: any;
3
+ color?: string;
4
+ size?: number;
5
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -11,6 +11,7 @@ export type IconsType = {
11
11
  AcademicFeesIcon: IconComponent;
12
12
  ChallansIcon: IconComponent;
13
13
  AcademicsIcon: IconComponent;
14
+ ActivitiesIcon: IconComponent;
14
15
  AccordionArrow: IconComponent;
15
16
  ActiveDevicesIcon: IconComponent;
16
17
  ActivitylogsIcon: IconComponent;
@@ -4,6 +4,7 @@ export type AppHeaderProps = {
4
4
  actions?: ReactNode[];
5
5
  profileActions?: ReactNode[];
6
6
  appsMenu?: ReactNode;
7
+ centerContent?: ReactNode;
7
8
  clientLogoUrl?: string;
8
9
  clientName?: string;
9
10
  userFullName: string;
@@ -19,4 +20,4 @@ export type AppHeaderProps = {
19
20
  onChangeInstitutionClick?: () => void;
20
21
  onAvatarClick?: () => void;
21
22
  };
22
- export declare const AppHeader: ({ actions, profileActions, profileSx, clientLogoUrl, onLogoutClick, designation, clientName, userFullName, collapsed, institutionsData, showActiveDevices, headerSx, onAccountClick, onActiveDevicesClick, onChangeInstitutionClick, onAvatarClick, }: AppHeaderProps) => import("react/jsx-runtime").JSX.Element;
23
+ export declare const AppHeader: ({ actions, profileActions, profileSx, clientLogoUrl, onLogoutClick, designation, clientName, userFullName, collapsed, institutionsData, showActiveDevices, headerSx, centerContent, onAccountClick, onActiveDevicesClick, onChangeInstitutionClick, onAvatarClick, }: AppHeaderProps) => import("react/jsx-runtime").JSX.Element;
@@ -3,6 +3,8 @@ import { SideMenuItemProps } from './Sidebar/interfaces';
3
3
  interface AppBarProps {
4
4
  /** Right section component (actions, profile, etc.) */
5
5
  rightSection?: React.ReactNode;
6
+ /** Center section component (workspace switcher, etc.) */
7
+ centerSection?: React.ReactNode;
6
8
  /** Menu items for mobile drawer */
7
9
  menu?: SideMenuItemProps[];
8
10
  /** Custom className for the AppBar */
@@ -17,6 +17,8 @@ export interface AppLayoutProps {
17
17
  menu: SideMenuItemProps[];
18
18
  /** AppBar customization - Primary approach */
19
19
  rightSection?: ReactNode;
20
+ /** AppBar center section customization */
21
+ centerSection?: ReactNode;
20
22
  /** Layout customization */
21
23
  mainContainerSx?: any;
22
24
  /** Help documentation configuration for route-based contextual help */