@campxdev/react-blueprint 2.3.8 → 2.3.10

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.
Files changed (31) hide show
  1. package/dist/cjs/index.js +1 -1
  2. package/dist/cjs/types/src/components/Layout/AppLayout/components/AppBar.d.ts +6 -3
  3. package/dist/cjs/types/src/components/Layout/AppLayout/components/Sidebar/Sidebar.d.ts +8 -1
  4. package/dist/cjs/types/src/components/Layout/AppLayout/components/Sidebar/interfaces.d.ts +4 -0
  5. package/dist/cjs/types/src/components/Layout/AppLayout/components/UserProfilePopup.d.ts +5 -4
  6. package/dist/cjs/types/src/components/Layout/AppLayout/types.d.ts +9 -0
  7. package/dist/esm/index.js +2 -2
  8. package/dist/esm/types/src/components/Layout/AppLayout/components/AppBar.d.ts +6 -3
  9. package/dist/esm/types/src/components/Layout/AppLayout/components/Sidebar/Sidebar.d.ts +8 -1
  10. package/dist/esm/types/src/components/Layout/AppLayout/components/Sidebar/interfaces.d.ts +4 -0
  11. package/dist/esm/types/src/components/Layout/AppLayout/components/UserProfilePopup.d.ts +5 -4
  12. package/dist/esm/types/src/components/Layout/AppLayout/types.d.ts +9 -0
  13. package/dist/index.d.ts +50 -40
  14. package/package.json +1 -1
  15. package/src/App.tsx +9 -37
  16. package/src/components/DataDisplay/SidePanel/styles.tsx +1 -1
  17. package/src/components/Layout/AppLayout/AppLayout.tsx +63 -20
  18. package/src/components/Layout/AppLayout/components/AppBar.tsx +40 -49
  19. package/src/components/Layout/AppLayout/components/Sidebar/MenuBar.tsx +13 -5
  20. package/src/components/Layout/AppLayout/components/Sidebar/MenuItem.tsx +129 -47
  21. package/src/components/Layout/AppLayout/components/Sidebar/Sidebar.tsx +165 -45
  22. package/src/components/Layout/AppLayout/components/Sidebar/interfaces.ts +4 -0
  23. package/src/components/Layout/AppLayout/components/Sidebar/styles.ts +0 -2
  24. package/src/components/Layout/AppLayout/components/UserProfilePopup.tsx +46 -16
  25. package/src/components/Layout/AppLayout/types.ts +12 -0
  26. package/src/components/Layout/PageHeader/components/Views/Views.tsx +3 -2
  27. package/src/components/Navigation/Breadcrumbs/Breadcrumbs.tsx +1 -1
  28. package/src/components/Navigation/Sidebar/SidebarV2.tsx +1 -1
  29. package/src/themes/colorTokens/darkColorTokens.tsx +1 -1
  30. package/src/themes/colorTokens/lightColorTokens.ts +1 -1
  31. package/src/themes/commonTheme.ts +1 -1
@@ -158,7 +158,7 @@ export const SidebarV2 = ({
158
158
  transition={{ duration: 0.3, ease: 'circOut' }}
159
159
  style={{
160
160
  margin: isSmallScreen ? '12px 12px 0px 12px' : '12px',
161
- height: isSmallScreen ? '100%' : 'calc(100vh - 24px)',
161
+ height: 'calc(100vh - 116px)',
162
162
  }}
163
163
  >
164
164
  <StyledSidebarContainer
@@ -22,7 +22,7 @@ export const DarkColorTokens = {
22
22
  primaryContrast: ColorPalette.BlueGreyColors.BlueGrey800,
23
23
  },
24
24
  surface: {
25
- defaultBackground: ColorPalette.BlueGreyColors.BlueGrey600,
25
+ defaultBackground: ColorPalette.BlueGreyColors.BlueGrey800,
26
26
  paperBackground: ColorPalette.BlueGreyColors.BlueGrey800,
27
27
  grey: ColorPalette.BlueGreyColors.BlueGrey400,
28
28
  },
@@ -22,7 +22,7 @@ export const LightColorTokens = {
22
22
  primaryContrast: ColorPalette.GreyColors.White,
23
23
  },
24
24
  surface: {
25
- defaultBackground: ColorPalette.BlueGreyColors.BlueGrey100,
25
+ defaultBackground: ColorPalette.GreyColors.White,
26
26
  paperBackground: ColorPalette.GreyColors.White,
27
27
  grey: ColorPalette.GreyColors.Grey100,
28
28
  },
@@ -620,7 +620,7 @@ export const getCommonTheme = (mode: Theme) => {
620
620
  },
621
621
  subtitle3: {
622
622
  fontSize: '14px',
623
- fontWeight: 400,
623
+ fontWeight: 500,
624
624
  fontFamily: 'Poppins',
625
625
  color: ColorTokens.text.primary,
626
626
  },