@docthub.frontend/app 0.1.20 → 0.1.21
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/build/Components/NavigationMenu/Components/Components.d.ts +3 -1
- package/build/Components/NavigationMenu/interfaces.d.ts +7 -2
- package/build/Components/TopBar/Branding/Icons.d.ts +3 -0
- package/build/index.esm.js +23 -23
- package/build/index.esm.js.map +1 -1
- package/build/index.js +15 -15
- package/build/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -12,6 +12,8 @@ export declare const LinkItem: React.FC<LinkItemProps>;
|
|
|
12
12
|
export declare const HeadingAndContent: React.FC<HeadingAndContentProps>;
|
|
13
13
|
export declare const LayoutNavigationMenu: React.FC<LayoutNavigationMenuProps>;
|
|
14
14
|
export declare const LayoutNavigationMenuBranding: React.FC<LayoutNavigationMenuProps>;
|
|
15
|
-
export declare const ProductGridLayoutBrandingPage: React.FC
|
|
15
|
+
export declare const ProductGridLayoutBrandingPage: React.FC<{
|
|
16
|
+
className?: string;
|
|
17
|
+
}>;
|
|
16
18
|
export declare const BaseNavigationMenu: React.FC<BaseNavigationMenuProps>;
|
|
17
19
|
export declare const NavigationMenuContainer: React.FC<NavigationMenuContainerProps>;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
+
import type { ReactNode } from 'react';
|
|
1
2
|
export interface NavigationMenuContainerProps {
|
|
2
3
|
className?: string;
|
|
3
4
|
adjustSpacing?: number;
|
|
4
5
|
}
|
|
5
6
|
export interface HeadingAndContentProps {
|
|
6
|
-
heading
|
|
7
|
+
heading?: string;
|
|
7
8
|
isBrandingView?: boolean;
|
|
8
9
|
className?: any;
|
|
9
10
|
}
|
|
@@ -11,9 +12,13 @@ export interface LinkItemProps {
|
|
|
11
12
|
href: string;
|
|
12
13
|
title: string;
|
|
13
14
|
description?: string;
|
|
14
|
-
iconName
|
|
15
|
+
iconName?: string;
|
|
16
|
+
/** When set, rendered instead of `iconName` (e.g. imported icon JSX). */
|
|
17
|
+
icon?: ReactNode;
|
|
15
18
|
tiny?: boolean;
|
|
16
19
|
className?: string;
|
|
20
|
+
hideIcon?: boolean;
|
|
21
|
+
iconClassName?: string;
|
|
17
22
|
}
|
|
18
23
|
export interface NavigationItemColumnProps {
|
|
19
24
|
tiny?: boolean;
|
|
@@ -8,8 +8,11 @@ export declare const BlogsIcon: ({}: IconProps) => JSX.Element;
|
|
|
8
8
|
export declare const RolePageIcon: ({ width, height }: IconProps) => JSX.Element;
|
|
9
9
|
export declare const MembershipIcon: ({ width, height }: IconProps) => JSX.Element;
|
|
10
10
|
export declare const LogbookIcon: ({ width, height }: IconProps) => JSX.Element;
|
|
11
|
+
export declare const ExhibitorsIcon: ({ width, height }: IconProps) => JSX.Element;
|
|
11
12
|
export declare const EventsOutlineIcon: ({ width, height }: IconProps) => JSX.Element;
|
|
12
13
|
export declare const LibraryIcon: ({ width, height }: IconProps) => JSX.Element;
|
|
14
|
+
export declare const CandidateSearchIcon: ({ width, height }: IconProps) => JSX.Element;
|
|
13
15
|
export declare const CourseOutlineIcon: ({ width, height }: IconProps) => JSX.Element;
|
|
14
16
|
export declare const NewsIcon: ({ width, height }: IconProps) => JSX.Element;
|
|
17
|
+
export declare const QRChekinIcon: ({ width, height }: IconProps) => JSX.Element;
|
|
15
18
|
export {};
|