@nulogy/components 6.7.2 → 6.7.5
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/dist/main.js +282 -279
- package/dist/main.module.js +282 -279
- package/dist/src/BrandedNavBar/MenuTrigger.d.ts +1 -1
- package/dist/src/Branding/BrandingText.d.ts +1 -1
- package/dist/src/Branding/LettermarkLogo.d.ts +1 -1
- package/dist/src/Branding/WordmarkLogo.d.ts +1 -1
- package/dist/src/Breadcrumbs/BreadcrumbsListItem.d.ts +1 -1
- package/dist/src/Button/Button.d.ts +1 -1
- package/dist/src/Button/DangerButton.d.ts +1 -1
- package/dist/src/Button/IconicButton.story.d.ts +8 -1
- package/dist/src/Button/PrimaryButton.d.ts +1 -1
- package/dist/src/Button/QuietButton.d.ts +1 -1
- package/dist/src/ButtonGroup/ButtonGroup.d.ts +1 -1
- package/dist/src/Card/Card.d.ts +1 -1
- package/dist/src/Card/CardSet.d.ts +1 -1
- package/dist/src/Checkbox/Checkbox.d.ts +1 -1
- package/dist/src/Checkbox/CheckboxGroup.d.ts +1 -1
- package/dist/src/DatePicker/DatePicker.d.ts +1 -1
- package/dist/src/DatePicker/DatePickerHeader.d.ts +1 -1
- package/dist/src/DatePicker/DatePickerInput.d.ts +1 -1
- package/dist/src/DateRange/DateRange.d.ts +1 -1
- package/dist/src/DateRange/EndTime.d.ts +1 -1
- package/dist/src/DateRange/StartTime.d.ts +1 -1
- package/dist/src/DropdownMenu/DropdownButton.d.ts +1 -1
- package/dist/src/DropdownMenu/DropdownItem.d.ts +1 -1
- package/dist/src/DropdownMenu/DropdownLink.d.ts +1 -1
- package/dist/src/DropdownMenu/DropdownMenu.d.ts +1 -1
- package/dist/src/DropdownMenu/DropdownMenuContainer.d.ts +1 -1
- package/dist/src/Form/Fieldset.d.ts +1 -1
- package/dist/src/Form/FormSection.d.ts +1 -1
- package/dist/src/Icon/LoadingIcon.d.ts +1 -1
- package/dist/src/Input/Input.d.ts +1 -1
- package/dist/src/Input/InputField.d.ts +1 -1
- package/dist/src/List/List.d.ts +1 -1
- package/dist/src/List/ListItem.d.ts +1 -1
- package/dist/src/LoadingAnimation/LoadingAnimation.d.ts +1 -1
- package/dist/src/Modal/ModalContent.d.ts +1 -1
- package/dist/src/NavBar/DesktopMenu.d.ts +3 -2
- package/dist/src/NavBar/MenuTrigger.d.ts +8 -7
- package/dist/src/NavBar/MobileMenu.d.ts +3 -2
- package/dist/src/NavBar/NavBar.d.ts +58 -24
- package/dist/src/NavBar/NavBar.story.d.ts +76 -97
- package/dist/src/NavBar/NavBarDropdownMenu.d.ts +2 -1
- package/dist/src/NavBar/SmallNavBar.d.ts +8 -0
- package/dist/src/NavBar/SubMenuTrigger.d.ts +14 -15
- package/dist/src/NavBar/isValidMenuItem.d.ts +1 -1
- package/dist/src/NavBar/renderSubMenuItems.d.ts +1 -1
- package/dist/src/Overlay/Overlay.d.ts +1 -1
- package/dist/src/Pagination/Pagination.d.ts +1 -1
- package/dist/src/Popper/Popper.d.ts +1 -1
- package/dist/src/RangeContainer/RangeContainer.d.ts +1 -1
- package/dist/src/StatusIndicator/StatusIndicator.d.ts +1 -1
- package/dist/src/Table/BaseTable.d.ts +1 -1
- package/dist/src/Table/TableCell.d.ts +1 -1
- package/dist/src/Table/TableHead.d.ts +1 -1
- package/dist/src/Tabs/Tab.d.ts +1 -1
- package/dist/src/Tabs/TabScrollIndicator.d.ts +1 -1
- package/dist/src/Textarea/StyledTextarea.d.ts +1 -1
- package/dist/src/Textarea/Textarea.d.ts +1 -1
- package/dist/src/TimePicker/TimePicker.d.ts +1 -1
- package/dist/src/TimePicker/TimePickerInput.d.ts +1 -1
- package/dist/src/TimeRange/TimeRange.d.ts +1 -1
- package/dist/src/Tooltip/Tooltip.d.ts +1 -1
- package/dist/src/Validation/InlineValidation.d.ts +1 -1
- package/dist/src/utils/ClickInputLabel.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { ButtonProps } from "./Button";
|
|
3
|
-
declare const DangerButton: import("styled-components").StyledComponent<import("react").
|
|
3
|
+
declare const DangerButton: import("styled-components").StyledComponent<import("react").FC<ButtonProps>, import("styled-components").DefaultTheme, {}, never>;
|
|
4
4
|
export default DangerButton;
|
|
@@ -51,7 +51,14 @@ export declare const WithATooltipAndLabel: {
|
|
|
51
51
|
name: string;
|
|
52
52
|
};
|
|
53
53
|
};
|
|
54
|
-
export declare const rightAligned:
|
|
54
|
+
export declare const rightAligned: {
|
|
55
|
+
(): JSX.Element;
|
|
56
|
+
parameters: {
|
|
57
|
+
chromatic: {
|
|
58
|
+
diffThreshold: number;
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
};
|
|
55
62
|
export declare const WithACustomFontSize: {
|
|
56
63
|
(): JSX.Element;
|
|
57
64
|
story: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { ButtonProps } from "./Button";
|
|
3
|
-
declare const QuietButton: import("styled-components").StyledComponent<import("react").
|
|
3
|
+
declare const QuietButton: import("styled-components").StyledComponent<import("react").FC<ButtonProps>, import("styled-components").DefaultTheme, {}, never>;
|
|
4
4
|
export default QuietButton;
|
package/dist/src/Card/Card.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { BoxProps } from "../Box/Box";
|
|
3
|
-
declare const CardSet: import("styled-components").StyledComponent<React.
|
|
3
|
+
declare const CardSet: import("styled-components").StyledComponent<React.FC<BoxProps>, import("styled-components").DefaultTheme, {}, never>;
|
|
4
4
|
export default CardSet;
|
|
@@ -7,5 +7,5 @@ declare type DatePickerHeaderProps = {
|
|
|
7
7
|
nextMonthButtonDisabled: boolean;
|
|
8
8
|
locale?: string;
|
|
9
9
|
};
|
|
10
|
-
declare const DatePickerHeader: React.
|
|
10
|
+
declare const DatePickerHeader: React.FC<DatePickerHeaderProps>;
|
|
11
11
|
export default DatePickerHeader;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
declare const EndTime: import("styled-components").StyledComponent<import("react").
|
|
2
|
+
declare const EndTime: import("styled-components").StyledComponent<import("react").FC<import("styled-system").SpaceProps<Required<import("styled-system").Theme<import("react").ReactText>>, string | number | symbol> & {
|
|
3
3
|
disabled?: boolean;
|
|
4
4
|
value?: string;
|
|
5
5
|
timeFormat?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
declare const StartTime: import("styled-components").StyledComponent<import("react").
|
|
2
|
+
declare const StartTime: import("styled-components").StyledComponent<import("react").FC<import("styled-system").SpaceProps<Required<import("styled-system").Theme<import("react").ReactText>>, string | number | symbol> & {
|
|
3
3
|
disabled?: boolean;
|
|
4
4
|
value?: string;
|
|
5
5
|
timeFormat?: string;
|
|
@@ -7,5 +7,5 @@ declare type DropdownButtonProps = React.ComponentPropsWithRef<"button"> & {
|
|
|
7
7
|
hoverColor?: string;
|
|
8
8
|
bgHoverColor?: string;
|
|
9
9
|
};
|
|
10
|
-
declare const DropdownButton: React.
|
|
10
|
+
declare const DropdownButton: React.FC<DropdownButtonProps>;
|
|
11
11
|
export default DropdownButton;
|
|
@@ -7,5 +7,5 @@ declare type DropdownMenuContainerProps = {
|
|
|
7
7
|
dataPlacement?: any;
|
|
8
8
|
theme?: DefaultNDSThemeType;
|
|
9
9
|
};
|
|
10
|
-
declare const DropdownMenuContainer: React.
|
|
10
|
+
declare const DropdownMenuContainer: React.FC<DropdownMenuContainerProps>;
|
|
11
11
|
export default DropdownMenuContainer;
|
|
@@ -2,5 +2,5 @@ import React from "react";
|
|
|
2
2
|
declare type BaseFormSectionProps = React.ComponentPropsWithRef<"fieldset"> & {
|
|
3
3
|
title?: string;
|
|
4
4
|
};
|
|
5
|
-
declare const FormSection: import("styled-components").StyledComponent<React.
|
|
5
|
+
declare const FormSection: import("styled-components").StyledComponent<React.FC<BaseFormSectionProps>, import("styled-components").DefaultTheme, {}, never>;
|
|
6
6
|
export default FormSection;
|
package/dist/src/List/List.d.ts
CHANGED
|
@@ -3,5 +3,5 @@ import { SpaceProps, ColorProps, TypographyProps } from "styled-system";
|
|
|
3
3
|
declare type ListItemProps = React.ComponentPropsWithRef<"li"> & SpaceProps & ColorProps & TypographyProps & {
|
|
4
4
|
className?: string;
|
|
5
5
|
};
|
|
6
|
-
declare const ListItem: React.
|
|
6
|
+
declare const ListItem: React.FC<ListItemProps>;
|
|
7
7
|
export default ListItem;
|
|
@@ -2,5 +2,5 @@ import React from "react";
|
|
|
2
2
|
declare type LoadingAnimationProps = React.ComponentPropsWithRef<"svg"> & {
|
|
3
3
|
inactive?: boolean;
|
|
4
4
|
};
|
|
5
|
-
declare const LoadingAnimation: React.
|
|
5
|
+
declare const LoadingAnimation: React.FC<LoadingAnimationProps>;
|
|
6
6
|
export default LoadingAnimation;
|
|
@@ -4,5 +4,5 @@ declare type ModalContentProps = React.ComponentPropsWithRef<"div"> & {
|
|
|
4
4
|
hasFooter?: any;
|
|
5
5
|
theme?: DefaultNDSThemeType;
|
|
6
6
|
};
|
|
7
|
-
declare const ModalContent: React.
|
|
7
|
+
declare const ModalContent: React.FC<ModalContentProps>;
|
|
8
8
|
export default ModalContent;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import PropTypes from "prop-types";
|
|
2
3
|
declare const DesktopMenu: import("styled-components").StyledComponent<{
|
|
3
4
|
({ menuData, themeColorObject, ...props }: {
|
|
4
5
|
[x: string]: any;
|
|
@@ -14,4 +15,4 @@ declare const DesktopMenu: import("styled-components").StyledComponent<{
|
|
|
14
15
|
themeColorObject: any;
|
|
15
16
|
};
|
|
16
17
|
}, import("styled-components").DefaultTheme, {}, never>;
|
|
17
|
-
|
|
18
|
+
export default DesktopMenu;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
declare
|
|
4
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import PropTypes from "prop-types";
|
|
3
|
+
declare const MenuTrigger: {
|
|
4
|
+
(props: any): JSX.Element;
|
|
5
|
+
propTypes: {
|
|
5
6
|
name: PropTypes.Validator<PropTypes.ReactNodeLike>;
|
|
6
7
|
"aria-label": PropTypes.Requireable<string>;
|
|
7
8
|
menuData: PropTypes.Requireable<PropTypes.InferProps<{}>[]>;
|
|
@@ -9,12 +10,12 @@ declare namespace MenuTrigger {
|
|
|
9
10
|
hoverColor: PropTypes.Requireable<string>;
|
|
10
11
|
hoverBackground: PropTypes.Requireable<string>;
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
+
defaultProps: {
|
|
13
14
|
menuData: any;
|
|
14
15
|
"aria-label": any;
|
|
15
16
|
color: string;
|
|
16
17
|
hoverColor: string;
|
|
17
18
|
hoverBackground: string;
|
|
18
19
|
};
|
|
19
|
-
}
|
|
20
|
-
|
|
20
|
+
};
|
|
21
|
+
export default MenuTrigger;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import PropTypes from "prop-types";
|
|
2
3
|
declare const MobileMenu: import("styled-components").StyledComponent<{
|
|
3
4
|
({ menuData, closeMenu, subtext, includeSubtext, themeColorObject, ...props }: {
|
|
4
5
|
[x: string]: any;
|
|
@@ -30,4 +31,4 @@ declare const MobileMenu: import("styled-components").StyledComponent<{
|
|
|
30
31
|
themeColorObject: any;
|
|
31
32
|
};
|
|
32
33
|
}, import("styled-components").DefaultTheme, {}, never>;
|
|
33
|
-
|
|
34
|
+
export default MobileMenu;
|
|
@@ -1,28 +1,62 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import React from "react";
|
|
2
|
+
import PropTypes from "prop-types";
|
|
3
|
+
import { DefaultNDSThemeType } from "../theme.type";
|
|
4
|
+
export declare const getThemeColor: (themeColor: any) => any;
|
|
5
|
+
export declare const NavBarBackground: import("styled-components").StyledComponent<React.FunctionComponent<import("../Box/Box").BoxProps>, import("styled-components").DefaultTheme, {
|
|
6
|
+
backgroundColor: string;
|
|
7
|
+
theme?: DefaultNDSThemeType;
|
|
8
|
+
}, never>;
|
|
9
|
+
export declare const BrandingLink: ({ to, href, children, ...props }: {
|
|
10
|
+
[x: string]: any;
|
|
11
|
+
to: any;
|
|
12
|
+
href: any;
|
|
13
|
+
children: any;
|
|
14
|
+
}) => JSX.Element;
|
|
15
|
+
export declare const MenuDataPropTypes: {
|
|
16
|
+
primaryMenu: PropTypes.Requireable<unknown[]>;
|
|
17
|
+
secondaryMenu: PropTypes.Requireable<unknown[]>;
|
|
18
|
+
search: PropTypes.Requireable<PropTypes.InferProps<{
|
|
19
|
+
onSubmit: PropTypes.Requireable<(...args: any[]) => any>;
|
|
20
|
+
}>>;
|
|
21
|
+
};
|
|
22
|
+
export declare const MobileMenuTrigger: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, {
|
|
23
|
+
hoverColor: string;
|
|
24
|
+
hoverBackground: string;
|
|
25
|
+
}, never>;
|
|
26
|
+
export declare const SmallHeader: import("styled-components").StyledComponent<"header", import("styled-components").DefaultTheme, {
|
|
27
|
+
isOpen: boolean;
|
|
28
|
+
}, never>;
|
|
29
|
+
export declare const pixelDigitsFrom: (pixelString: any) => number;
|
|
30
|
+
export declare const MenuIcon: {
|
|
31
|
+
({ isOpen }: {
|
|
32
|
+
isOpen: any;
|
|
33
|
+
}): JSX.Element;
|
|
34
|
+
propTypes: {
|
|
35
|
+
isOpen: PropTypes.Requireable<boolean>;
|
|
36
|
+
};
|
|
37
|
+
defaultProps: {
|
|
38
|
+
isOpen: boolean;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
declare const NavBar: {
|
|
42
|
+
(props: any): JSX.Element;
|
|
43
|
+
propTypes: {
|
|
44
|
+
menuData: PropTypes.Requireable<PropTypes.InferProps<{
|
|
45
|
+
primaryMenu: PropTypes.Requireable<unknown[]>;
|
|
46
|
+
secondaryMenu: PropTypes.Requireable<unknown[]>;
|
|
8
47
|
search: PropTypes.Requireable<PropTypes.InferProps<{
|
|
9
48
|
onSubmit: PropTypes.Requireable<(...args: any[]) => any>;
|
|
10
49
|
}>>;
|
|
11
50
|
}>>;
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
export { themeColor_1 as themeColor };
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
import PropTypes from "prop-types";
|
|
28
|
-
import React from "react";
|
|
51
|
+
className: PropTypes.Requireable<string>;
|
|
52
|
+
breakpointUpper: PropTypes.Requireable<React.ReactText>;
|
|
53
|
+
themeColor: PropTypes.Requireable<string>;
|
|
54
|
+
};
|
|
55
|
+
defaultProps: {
|
|
56
|
+
menuData: any;
|
|
57
|
+
className: any;
|
|
58
|
+
breakpointUpper: string;
|
|
59
|
+
themeColor: string;
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
export default NavBar;
|
|
@@ -1,98 +1,77 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
};
|
|
4
5
|
export default _default;
|
|
5
|
-
export
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
export
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
}
|
|
35
|
-
export
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
}
|
|
59
|
-
export
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
export namespace story_9 {
|
|
78
|
-
const name_9: string;
|
|
79
|
-
export { name_9 as name };
|
|
80
|
-
}
|
|
81
|
-
export { story_9 as story };
|
|
82
|
-
}
|
|
83
|
-
export function WithAlternateThemeColor(): JSX.Element;
|
|
84
|
-
export namespace WithAlternateThemeColor {
|
|
85
|
-
export namespace story_10 {
|
|
86
|
-
const name_10: string;
|
|
87
|
-
export { name_10 as name };
|
|
88
|
-
}
|
|
89
|
-
export { story_10 as story };
|
|
90
|
-
}
|
|
91
|
-
export function WithReactRouter(): JSX.Element;
|
|
92
|
-
export namespace WithReactRouter {
|
|
93
|
-
export namespace story_11 {
|
|
94
|
-
const name_11: string;
|
|
95
|
-
export { name_11 as name };
|
|
96
|
-
}
|
|
97
|
-
export { story_11 as story };
|
|
98
|
-
}
|
|
6
|
+
export declare const _NavBar: {
|
|
7
|
+
(): JSX.Element;
|
|
8
|
+
story: {
|
|
9
|
+
name: string;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export declare const WithoutSearch: {
|
|
13
|
+
(): JSX.Element;
|
|
14
|
+
story: {
|
|
15
|
+
name: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
export declare const WithoutSecondaryMenu: {
|
|
19
|
+
(): JSX.Element;
|
|
20
|
+
story: {
|
|
21
|
+
name: string;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
export declare const WithoutSearchAndSecondaryMenu: {
|
|
25
|
+
(): JSX.Element;
|
|
26
|
+
story: {
|
|
27
|
+
name: string;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
export declare const WithoutSearchAndPrimaryMenu: {
|
|
31
|
+
(): JSX.Element;
|
|
32
|
+
story: {
|
|
33
|
+
name: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
export declare const WithBrandingOnly: {
|
|
37
|
+
(): JSX.Element;
|
|
38
|
+
story: {
|
|
39
|
+
name: string;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare const WithCustomLinkComponents: {
|
|
43
|
+
(): JSX.Element;
|
|
44
|
+
story: {
|
|
45
|
+
name: string;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
export declare const WithTextInTheMenu: {
|
|
49
|
+
(): JSX.Element;
|
|
50
|
+
story: {
|
|
51
|
+
name: string;
|
|
52
|
+
};
|
|
53
|
+
};
|
|
54
|
+
export declare const WithSubtext: {
|
|
55
|
+
(): JSX.Element;
|
|
56
|
+
story: {
|
|
57
|
+
name: string;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
export declare const WithAlternativeBrandingLink: {
|
|
61
|
+
(): JSX.Element;
|
|
62
|
+
story: {
|
|
63
|
+
name: string;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
export declare const WithAlternateThemeColor: {
|
|
67
|
+
(): JSX.Element;
|
|
68
|
+
story: {
|
|
69
|
+
name: string;
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
export declare const WithReactRouter: {
|
|
73
|
+
(): JSX.Element;
|
|
74
|
+
story: {
|
|
75
|
+
name: string;
|
|
76
|
+
};
|
|
77
|
+
};
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
2
|
declare const NavBarDropdownMenu: ({ showDelay, hideDelay, defaultOpen, ...props }: {
|
|
3
3
|
[x: string]: any;
|
|
4
4
|
showDelay: any;
|
|
5
5
|
hideDelay: any;
|
|
6
6
|
defaultOpen: any;
|
|
7
7
|
}) => JSX.Element;
|
|
8
|
+
export default NavBarDropdownMenu;
|