@apolitical/component-library 4.7.14 → 4.7.15-beta.1
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/form/components/rich-text-editor/helpers/transform/transform.d.ts +1 -1
- package/helpers/intl.d.ts +1 -1
- package/index.js +38 -38
- package/index.mjs +5097 -5035
- package/layout/content-layout/top-level-page/top-level-page.d.ts +4 -1
- package/navigation/navigation-menu/navigation-menu.d.ts +4 -1
- package/package.json +1 -1
- package/style.css +1 -1
- package/styles/variables/colors/theme/_navigation.scss +0 -1
- package/styles/variables/colors/theme/_user.scss +3 -0
- package/user/member/member.d.ts +14 -5
- package/user/member/member.helpers.d.ts +1 -1
- package/user/member/member.mock.d.ts +13 -0
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
import { type IProfileFormProps } from '../../../form';
|
|
1
2
|
import { NavigationMenuProps } from '../../../navigation';
|
|
2
3
|
import { PageHeadingProps } from '../../../text';
|
|
3
4
|
interface Props extends NavigationMenuProps, PageHeadingProps {
|
|
5
|
+
/** Props for the profile modal */
|
|
6
|
+
profile?: IProfileFormProps;
|
|
4
7
|
}
|
|
5
|
-
declare const TopLevelPage: ({ activeLink, ...props }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
declare const TopLevelPage: ({ activeLink, profile, ...props }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
6
9
|
export default TopLevelPage;
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
import { type IProfileFormProps } from '../../form';
|
|
1
2
|
export interface NavigationMenuProps {
|
|
2
3
|
/** The currently active link */
|
|
3
4
|
activeLink?: string;
|
|
5
|
+
/** Props for the profile modal */
|
|
6
|
+
profile?: IProfileFormProps;
|
|
4
7
|
}
|
|
5
|
-
declare const NavigationMenu: ({ activeLink }: NavigationMenuProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
declare const NavigationMenu: ({ activeLink, profile }: NavigationMenuProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
9
|
export default NavigationMenu;
|