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 +2 -2
- package/Accordion/Accordion.js +1 -1
- package/AppContainer/AppContainer.d.ts +4 -2
- package/AppContainer/AppContainer.js +754 -675
- package/AppHeader/AppHeader.d.ts +1 -0
- package/AppHeader/AppHeader.js +84 -76
- package/AppHeader/index.d.ts +1 -1
- package/Button/Button.d.ts +1 -0
- package/Button/Button.js +94 -93
- package/EditableInfoCard/EditableInfoCard.js +1 -1
- package/ImageWIthDetails/ImageWithDetails.d.ts +13 -0
- package/ImageWIthDetails/ImageWithDetails.js +49 -0
- package/ImageWIthDetails/index.d.ts +1 -0
- package/ImageWIthDetails/index.js +4 -0
- package/InfoCard/InfoCard.js +4 -4
- package/Nav/Nav.d.ts +1 -1
- package/Nav/Nav.js +43 -45
- package/Nav/index.d.ts +1 -1
- package/package.json +1 -1
- package/theme.d.ts +6 -1
- package/theme.js +6 -2
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.
|
|
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.
|
|
6672
|
+
boxShadow: ye.boxShadows.darkGreenThick
|
|
6673
6673
|
}
|
|
6674
6674
|
},
|
|
6675
6675
|
"&:focus-visible": {
|
package/Accordion/Accordion.js
CHANGED
|
@@ -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.
|
|
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?:
|
|
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;
|