jcicl 0.0.114 → 0.0.118

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/.chunks/Input.js CHANGED
@@ -6663,13 +6663,13 @@ const Dr = Yo(wo)({
6663
6663
  boxShadow: "0 0 0 0",
6664
6664
  "&:focus-visible": {
6665
6665
  borderColor: ye.colors.darkGreen,
6666
- boxShadow: ye.boxShadow.darkGreenThick
6666
+ boxShadow: ye.boxShadows.darkGreenThick
6667
6667
  }
6668
6668
  },
6669
6669
  "&:hover, :focus-visible": {
6670
6670
  input: {
6671
6671
  borderColor: ye.colors.darkGreen,
6672
- boxShadow: ye.boxShadow.darkGreenThick
6672
+ boxShadow: ye.boxShadows.darkGreenThick
6673
6673
  }
6674
6674
  },
6675
6675
  "&:focus-visible": {
@@ -50,7 +50,7 @@ const $ = y(/* @__PURE__ */ r("path", {
50
50
  title: t,
51
51
  children: e,
52
52
  padding: l = "1rem 2rem",
53
- shadow: m = c.boxShadow.darkGreen,
53
+ shadow: m = c.boxShadows.darkGreen,
54
54
  width: p = "360px"
55
55
  }) => {
56
56
  const [i, f] = x(!1), h = { padding: l, shadow: m, width: p }, w = { expanded: i }, g = { expanded: i };
@@ -1,9 +1,10 @@
1
1
  import { PropsWithChildren } from 'react';
2
2
  import { AppHeaderProps, CustomLogoProps } from '../../../../../../../../../src/components/supercomposite/AppHeader/AppHeader';
3
- import { NavProps, TemplateThemeProps } from '../../../../../../../../../src/components/supercomposite/Nav/Nav';
3
+ import { NavProps, NavItemProps, TemplateThemeProps } from '../../../../../../../../../src/components/supercomposite/Nav/Nav';
4
+ type ReducedAppHeaderProps = Omit<AppHeaderProps, 'logoProps' | 'iconColor'>;
4
5
  export interface AppContainerProps {
5
6
  navProps: Omit<NavProps, 'themeColors'>;
6
- appHeaderProps?: Omit<AppHeaderProps, 'logoProps'>;
7
+ appHeaderProps?: ReducedAppHeaderProps;
7
8
  actionsPanelContent?: React.ReactNode;
8
9
  navWidth?: number;
9
10
  breakpoints?: {
@@ -12,6 +13,7 @@ export interface AppContainerProps {
12
13
  };
13
14
  themeColors?: Partial<TemplateThemeProps>;
14
15
  logoProps?: Partial<CustomLogoProps>;
16
+ userProfileMenuItems?: NavItemProps[];
15
17
  }
16
18
  declare const AppContainer: React.FC<PropsWithChildren<AppContainerProps>>;
17
19
  export default AppContainer;