@campxdev/react-blueprint 2.1.3 → 2.1.5
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/cjs/index.js +1 -1
- package/dist/cjs/types/src/components/Assets/Icons/IconComponents/CampxFullLogoIconV2.d.ts +3 -0
- package/dist/cjs/types/src/components/Assets/Icons/IconComponents/CampxIconV2.d.ts +3 -0
- package/dist/cjs/types/src/components/Assets/Icons/Icons.d.ts +2 -0
- package/dist/cjs/types/src/components/Layout/AppHeader/AppHeaderV2.d.ts +31 -0
- package/dist/cjs/types/src/components/Layout/AppHeader/styles/stylesV2.d.ts +1 -0
- package/dist/cjs/types/src/components/Layout/export.d.ts +1 -0
- package/dist/cjs/types/src/components/Navigation/Sidebar/SidebarV2.d.ts +20 -0
- package/dist/cjs/types/src/components/Navigation/export.d.ts +1 -0
- package/dist/cjs/types/src/stories/Layout/AppHeaderV2.stories.d.ts +8 -0
- package/dist/esm/index.js +2 -2
- package/dist/esm/types/src/components/Assets/Icons/IconComponents/CampxFullLogoIconV2.d.ts +3 -0
- package/dist/esm/types/src/components/Assets/Icons/IconComponents/CampxIconV2.d.ts +3 -0
- package/dist/esm/types/src/components/Assets/Icons/Icons.d.ts +2 -0
- package/dist/esm/types/src/components/Layout/AppHeader/AppHeaderV2.d.ts +31 -0
- package/dist/esm/types/src/components/Layout/AppHeader/styles/stylesV2.d.ts +1 -0
- package/dist/esm/types/src/components/Layout/export.d.ts +1 -0
- package/dist/esm/types/src/components/Navigation/Sidebar/SidebarV2.d.ts +20 -0
- package/dist/esm/types/src/components/Navigation/export.d.ts +1 -0
- package/dist/esm/types/src/stories/Layout/AppHeaderV2.stories.d.ts +8 -0
- package/dist/index.d.ts +52 -2
- package/package.json +1 -1
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { SxProps } from '@mui/material';
|
|
2
|
+
import { ReactNode } from 'react';
|
|
3
|
+
import { SideMenuItemProps } from '../../export';
|
|
4
|
+
export type AppHeaderV2Props = {
|
|
5
|
+
/** Custom action components to display in the header */
|
|
6
|
+
actions?: ReactNode[];
|
|
7
|
+
/** Profile dropdown actions */
|
|
8
|
+
profileActions?: ReactNode[];
|
|
9
|
+
/** Full name of the current user */
|
|
10
|
+
userFullName: string;
|
|
11
|
+
/** User's designation/role */
|
|
12
|
+
designation?: string;
|
|
13
|
+
/** Whether the sidebar is collapsed */
|
|
14
|
+
collapsed: boolean;
|
|
15
|
+
/** Callback function to toggle sidebar drawer (mobile only) */
|
|
16
|
+
onToggleSidebar?: () => void;
|
|
17
|
+
/** Breadcrumb navigation component (displayed on desktop only) */
|
|
18
|
+
breadcrumbs?: ReactNode;
|
|
19
|
+
/** Institution data for user profile */
|
|
20
|
+
institutionsData?: any[];
|
|
21
|
+
/** Custom styles for profile component */
|
|
22
|
+
profileSx?: any;
|
|
23
|
+
/** Logout click handler */
|
|
24
|
+
onLogoutClick?: () => void;
|
|
25
|
+
/** Whether to show active devices in profile */
|
|
26
|
+
showActiveDevices?: boolean;
|
|
27
|
+
/** Custom styles for the header */
|
|
28
|
+
headerSx?: SxProps;
|
|
29
|
+
menu: SideMenuItemProps[];
|
|
30
|
+
};
|
|
31
|
+
export declare const AppHeaderV2: ({ actions, profileActions, profileSx, onLogoutClick, designation, userFullName, collapsed, onToggleSidebar, breadcrumbs, institutionsData, showActiveDevices, headerSx, menu, }: AppHeaderV2Props) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const StyledHeaderV2: import("@mui/styled-engine").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("@types/react").DetailedHTMLProps<import("@types/react").HTMLAttributes<HTMLElement>, HTMLElement>, {}>;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { ReactElement } from 'react';
|
|
2
|
+
export declare const SidebarV2: ({ menu, collapsed, setCollapsed, }: {
|
|
3
|
+
menu: SideMenuItemProps[];
|
|
4
|
+
collapsed: boolean;
|
|
5
|
+
setCollapsed: any;
|
|
6
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
interface SideMenuItemProps {
|
|
8
|
+
name: string;
|
|
9
|
+
path: string;
|
|
10
|
+
icon: ReactElement;
|
|
11
|
+
permissionKey?: string;
|
|
12
|
+
subMenu?: SubMenuItemProps[];
|
|
13
|
+
menu?: SideMenuItemProps[];
|
|
14
|
+
}
|
|
15
|
+
interface SubMenuItemProps {
|
|
16
|
+
name: string;
|
|
17
|
+
path: string;
|
|
18
|
+
permissionKey?: string;
|
|
19
|
+
}
|
|
20
|
+
export {};
|
|
@@ -9,6 +9,7 @@ export * from './DropDownMenu/DropDownMenu';
|
|
|
9
9
|
export * from './DropDownMenu/DropdownMenuItem';
|
|
10
10
|
export * from './PreviewFiles/PreviewFiles';
|
|
11
11
|
export * from './Sidebar/Sidebar';
|
|
12
|
+
export * from './Sidebar/SidebarV2';
|
|
12
13
|
export * from './Stepper/Stepper';
|
|
13
14
|
export * from './TabsContainer/TabsContainer';
|
|
14
15
|
export * from './UploadDialog/UploadDialog';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { AppHeaderV2 } from '../../components/export';
|
|
3
|
+
declare const meta: Meta<typeof AppHeaderV2>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof AppHeaderV2>;
|
|
6
|
+
export declare const Primary: Story;
|
|
7
|
+
export declare const WithoutBreadcrumbs: Story;
|
|
8
|
+
export declare const MobileView: Story;
|
package/dist/index.d.ts
CHANGED
|
@@ -242,6 +242,8 @@ type IconsType = {
|
|
|
242
242
|
SalaryIcon: IconComponent;
|
|
243
243
|
ExpensesIcon: IconComponent;
|
|
244
244
|
LeavesIcon: IconComponent;
|
|
245
|
+
CampxFullLogoIconV2: IconComponent;
|
|
246
|
+
CampxIconV2: IconComponent;
|
|
245
247
|
};
|
|
246
248
|
declare const Icons: IconsType;
|
|
247
249
|
|
|
@@ -921,6 +923,35 @@ type AppHeaderProps = {
|
|
|
921
923
|
};
|
|
922
924
|
declare const AppHeader: ({ actions, profileActions, profileSx, clientLogoUrl, onLogoutClick, designation, clientName, userFullName, collapsed, institutionsData, showActiveDevices, headerSx, }: AppHeaderProps) => react_jsx_runtime.JSX.Element;
|
|
923
925
|
|
|
926
|
+
type AppHeaderV2Props = {
|
|
927
|
+
/** Custom action components to display in the header */
|
|
928
|
+
actions?: ReactNode[];
|
|
929
|
+
/** Profile dropdown actions */
|
|
930
|
+
profileActions?: ReactNode[];
|
|
931
|
+
/** Full name of the current user */
|
|
932
|
+
userFullName: string;
|
|
933
|
+
/** User's designation/role */
|
|
934
|
+
designation?: string;
|
|
935
|
+
/** Whether the sidebar is collapsed */
|
|
936
|
+
collapsed: boolean;
|
|
937
|
+
/** Callback function to toggle sidebar drawer (mobile only) */
|
|
938
|
+
onToggleSidebar?: () => void;
|
|
939
|
+
/** Breadcrumb navigation component (displayed on desktop only) */
|
|
940
|
+
breadcrumbs?: ReactNode;
|
|
941
|
+
/** Institution data for user profile */
|
|
942
|
+
institutionsData?: any[];
|
|
943
|
+
/** Custom styles for profile component */
|
|
944
|
+
profileSx?: any;
|
|
945
|
+
/** Logout click handler */
|
|
946
|
+
onLogoutClick?: () => void;
|
|
947
|
+
/** Whether to show active devices in profile */
|
|
948
|
+
showActiveDevices?: boolean;
|
|
949
|
+
/** Custom styles for the header */
|
|
950
|
+
headerSx?: SxProps;
|
|
951
|
+
menu: SideMenuItemProps$1[];
|
|
952
|
+
};
|
|
953
|
+
declare const AppHeaderV2: ({ actions, profileActions, profileSx, onLogoutClick, designation, userFullName, collapsed, onToggleSidebar, breadcrumbs, institutionsData, showActiveDevices, headerSx, menu, }: AppHeaderV2Props) => react_jsx_runtime.JSX.Element;
|
|
954
|
+
|
|
924
955
|
type FloatingContainerProps = {
|
|
925
956
|
title?: string;
|
|
926
957
|
content: ReactNode;
|
|
@@ -1086,6 +1117,25 @@ type PreviewFilesProps = {
|
|
|
1086
1117
|
declare const PreviewFiles: ({ files, label, onChange, showDownload, hideDelete, sx, ...props }: PreviewFilesProps) => react_jsx_runtime.JSX.Element;
|
|
1087
1118
|
|
|
1088
1119
|
declare const Sidebar: ({ menu, collapsed, setCollapsed, }: {
|
|
1120
|
+
menu: SideMenuItemProps$1[];
|
|
1121
|
+
collapsed: boolean;
|
|
1122
|
+
setCollapsed: any;
|
|
1123
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1124
|
+
interface SideMenuItemProps$1 {
|
|
1125
|
+
name: string;
|
|
1126
|
+
path: string;
|
|
1127
|
+
icon: ReactElement;
|
|
1128
|
+
permissionKey?: string;
|
|
1129
|
+
subMenu?: SubMenuItemProps$1[];
|
|
1130
|
+
menu?: SideMenuItemProps$1[];
|
|
1131
|
+
}
|
|
1132
|
+
interface SubMenuItemProps$1 {
|
|
1133
|
+
name: string;
|
|
1134
|
+
path: string;
|
|
1135
|
+
permissionKey?: string;
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1138
|
+
declare const SidebarV2: ({ menu, collapsed, setCollapsed, }: {
|
|
1089
1139
|
menu: SideMenuItemProps[];
|
|
1090
1140
|
collapsed: boolean;
|
|
1091
1141
|
setCollapsed: any;
|
|
@@ -1203,5 +1253,5 @@ declare const splitBreadcrumbIdSlug: (param: string) => {
|
|
|
1203
1253
|
declare const isLocal: boolean;
|
|
1204
1254
|
declare const isDevelopment: boolean;
|
|
1205
1255
|
|
|
1206
|
-
export { Accordion, AccordionGroup, ActivityLogView, Alert, AnimatedGIFs, AppHeader, BarChart, Breadcrumbs, Button, Card, CellContainer, CenterBox, Chips, CircularAvatar, ComingSoon, ConfirmDialog, DataTable, DatePicker, DateTimePicker, DensitySelector, Dialog, DialogButton, DropDownButton, DropDownIcon, DropdownMenu, DropdownMenuItem, EditableDataTable, EditableTableCore, EmptyIllustration, FileUpload, FloatingContent, FooterContainerContainer, FormActions, FormControlWrapper, FormWrapper, IconButtons, Icons, InternalServerError, LabelWrapper, LineChart, MuiThemeProvider, MultiCheckBox, NoInterneConnection, NoItemFound, OtpInput, PageContent, PageHeader, PageNotFound, PasswordField, PieChart, PreviewFiles, ProgressCard, RadioGroup, ResourceNotFound, SearchBar, Select, SidePanel, SidePanelVariables, Sidebar, SingleCheckBox, SingleSelect, Snackbar, Spinner, SquareAvatar, StatusCard, Stepper, StyledContainer, Svgs, Switch, TableColumnsSelector, TableColumnsSelectorMenuFooter, TabsContainer, TabsLayout, TextField, TimePicker, Timeline, ToolTipContent, Tooltip, Tutorial, Typography, UnAuthorized, UploadDialog, createBreadcrumbIdSlug, darkTheme, getBreadcrumbsCharacter, isDevelopment, isLocal, lightTheme, reactBlueprintReducers, splitBreadcrumbIdSlug, usePageHeader, useParams, useUrlParams };
|
|
1207
|
-
export type { AccordionProps, Activity, ActivityAction, AlertProps, AppHeaderProps, BarChartProps, BreadcrumbsProps, ButtonConfig, ButtonProps, CardProps, CheckboxProps, CircularAvatarProps, ConfirmDialogProps, ConfirmDialogType, DataTableProps, DensitySelectorProps, DialogButtonProps, DialogProps, DropdownMenuItemProps, DropdownMenuProps, EditableDataTableProps, FileUploadProps, FloatingContainerProps, FormActionsProps, IconComponent, IconProps, IconsType, LineChartProps, MultiCheckboxProps, OtpInputProps, PageContentProps, PasswordFieldProps, PieChartProps, PreviewFilesProps, ProgressCardProps, RadioGroupProps, SearchBarProps, SelectProps, Severity, SideMenuItemProps, SidePanelProps, SingleSelectProps, SnackbarProps, SquareAvatarProps, StatusCardProps, SubMenuItemProps, SwitchProps, TableColumnsSelectorProps, TabsContainerProps, TextFieldProps, TimelineItems, TimelineProps, TooltipContentProps, TooltipProps, TypographyProps, UploadDialogProps };
|
|
1256
|
+
export { Accordion, AccordionGroup, ActivityLogView, Alert, AnimatedGIFs, AppHeader, AppHeaderV2, BarChart, Breadcrumbs, Button, Card, CellContainer, CenterBox, Chips, CircularAvatar, ComingSoon, ConfirmDialog, DataTable, DatePicker, DateTimePicker, DensitySelector, Dialog, DialogButton, DropDownButton, DropDownIcon, DropdownMenu, DropdownMenuItem, EditableDataTable, EditableTableCore, EmptyIllustration, FileUpload, FloatingContent, FooterContainerContainer, FormActions, FormControlWrapper, FormWrapper, IconButtons, Icons, InternalServerError, LabelWrapper, LineChart, MuiThemeProvider, MultiCheckBox, NoInterneConnection, NoItemFound, OtpInput, PageContent, PageHeader, PageNotFound, PasswordField, PieChart, PreviewFiles, ProgressCard, RadioGroup, ResourceNotFound, SearchBar, Select, SidePanel, SidePanelVariables, Sidebar, SidebarV2, SingleCheckBox, SingleSelect, Snackbar, Spinner, SquareAvatar, StatusCard, Stepper, StyledContainer, Svgs, Switch, TableColumnsSelector, TableColumnsSelectorMenuFooter, TabsContainer, TabsLayout, TextField, TimePicker, Timeline, ToolTipContent, Tooltip, Tutorial, Typography, UnAuthorized, UploadDialog, createBreadcrumbIdSlug, darkTheme, getBreadcrumbsCharacter, isDevelopment, isLocal, lightTheme, reactBlueprintReducers, splitBreadcrumbIdSlug, usePageHeader, useParams, useUrlParams };
|
|
1257
|
+
export type { AccordionProps, Activity, ActivityAction, AlertProps, AppHeaderProps, AppHeaderV2Props, BarChartProps, BreadcrumbsProps, ButtonConfig, ButtonProps, CardProps, CheckboxProps, CircularAvatarProps, ConfirmDialogProps, ConfirmDialogType, DataTableProps, DensitySelectorProps, DialogButtonProps, DialogProps, DropdownMenuItemProps, DropdownMenuProps, EditableDataTableProps, FileUploadProps, FloatingContainerProps, FormActionsProps, IconComponent, IconProps, IconsType, LineChartProps, MultiCheckboxProps, OtpInputProps, PageContentProps, PasswordFieldProps, PieChartProps, PreviewFilesProps, ProgressCardProps, RadioGroupProps, SearchBarProps, SelectProps, Severity, SideMenuItemProps$1 as SideMenuItemProps, SidePanelProps, SingleSelectProps, SnackbarProps, SquareAvatarProps, StatusCardProps, SubMenuItemProps$1 as SubMenuItemProps, SwitchProps, TableColumnsSelectorProps, TabsContainerProps, TextFieldProps, TimelineItems, TimelineProps, TooltipContentProps, TooltipProps, TypographyProps, UploadDialogProps };
|