@campxdev/react-blueprint 2.3.3 → 2.3.6
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/assets/images/svg/Empty.d.ts +4 -1
- package/dist/cjs/types/src/assets/images/svg/index.d.ts +4 -1
- package/dist/cjs/types/src/components/Assets/ErrorPages/NoItemFound.d.ts +3 -1
- package/dist/cjs/types/src/components/Assets/Icons/Icons.d.ts +3 -2
- package/dist/cjs/types/src/components/DataDisplay/ActivityLogView/styles.d.ts +1 -1
- package/dist/cjs/types/src/components/DataDisplay/Card/styles.d.ts +1 -1
- package/dist/cjs/types/src/components/DataDisplay/ReactJoyride/ReactJoyride.d.ts +20 -0
- package/dist/cjs/types/src/components/DataDisplay/SidePanel/styles.d.ts +1 -1
- package/dist/cjs/types/src/components/DataDisplay/export.d.ts +1 -0
- package/dist/esm/index.js +2 -2
- package/dist/esm/types/src/assets/images/svg/Empty.d.ts +4 -1
- package/dist/esm/types/src/assets/images/svg/index.d.ts +4 -1
- package/dist/esm/types/src/components/Assets/ErrorPages/NoItemFound.d.ts +3 -1
- package/dist/esm/types/src/components/Assets/Icons/Icons.d.ts +3 -2
- package/dist/esm/types/src/components/DataDisplay/ActivityLogView/styles.d.ts +1 -1
- package/dist/esm/types/src/components/DataDisplay/Card/styles.d.ts +1 -1
- package/dist/esm/types/src/components/DataDisplay/ReactJoyride/ReactJoyride.d.ts +20 -0
- package/dist/esm/types/src/components/DataDisplay/SidePanel/styles.d.ts +1 -1
- package/dist/esm/types/src/components/DataDisplay/export.d.ts +1 -0
- package/dist/index.d.ts +29 -5
- package/package.json +1 -1
- package/src/assets/images/svg/Empty.tsx +9 -3
- package/src/components/Assets/ErrorPages/NoItemFound.tsx +5 -1
- package/src/components/Assets/Icons/Icons.tsx +4 -3
- package/src/components/DataDisplay/ReactJoyride/CustomJoyRideStyles.css +84 -0
- package/src/components/DataDisplay/ReactJoyride/ReactJoyride.tsx +264 -0
- package/src/components/DataDisplay/export.ts +1 -0
- package/src/components/Layout/AppLayout/AppLayout.tsx +3 -0
- package/src/components/Layout/AppLayout/components/AppBar.tsx +6 -3
|
@@ -26,9 +26,9 @@ const AppBarContainer = styled('header')(({ theme }: { theme?: any }) => ({
|
|
|
26
26
|
flexShrink: 0, // Prevent AppBar from shrinking
|
|
27
27
|
|
|
28
28
|
[theme.breakpoints.down('md')]: {
|
|
29
|
-
height: '
|
|
30
|
-
minHeight: '
|
|
31
|
-
padding: '0 16px',
|
|
29
|
+
height: '54px',
|
|
30
|
+
minHeight: '54px',
|
|
31
|
+
padding: '0 16px 0px 0px',
|
|
32
32
|
},
|
|
33
33
|
|
|
34
34
|
// Ensure proper spacing for child elements
|
|
@@ -75,6 +75,9 @@ export const AppBar: React.FC<AppBarProps> = ({
|
|
|
75
75
|
padding: '24px',
|
|
76
76
|
backgroundColor: theme.palette.secondary.light,
|
|
77
77
|
borderRadius: '0px',
|
|
78
|
+
[theme.breakpoints.down('md')]: {
|
|
79
|
+
padding: '20px',
|
|
80
|
+
},
|
|
78
81
|
}}
|
|
79
82
|
>
|
|
80
83
|
<HamburgerMenuIcon />
|