@nulogy/components 14.8.0 → 14.8.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/dist/src/BrandedNavBar/index.d.ts +0 -2
- package/dist/src/{BrandedNavBar → Navigation/components/EnvironmentBanner}/EnvironmentBanner.d.ts +0 -2
- package/dist/src/Navigation/components/EnvironmentBanner/index.d.ts +2 -0
- package/dist/src/Navigation/index.d.ts +2 -0
- package/dist/src/Navigation/stories/Navigation.story.d.ts +1 -0
- package/dist/src/index.d.ts +4 -4
- package/package.json +1 -1
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
export { default as BrandedNavBar } from "./NavBar";
|
|
2
2
|
export { default as MenuTrigger } from "./MenuTrigger";
|
|
3
3
|
export type { MenuTriggerProps } from "./MenuTrigger";
|
|
4
|
-
export { default as EnvironmentBanner } from "./EnvironmentBanner";
|
|
5
|
-
export type { EnvironmentBannerProps } from "./EnvironmentBanner";
|
|
6
4
|
export { default as NavBarBackground } from "./NavBarBackground";
|
|
7
5
|
export type { NavBarBackgroundProps } from "./NavBarBackground";
|
|
8
6
|
export { default as BrandLogoContainer } from "./BrandLogoContainer";
|
package/dist/src/{BrandedNavBar → Navigation/components/EnvironmentBanner}/EnvironmentBanner.d.ts
RENAMED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
/** @deprecated The BrandedNavBar component is deprecated. Use the Navigation component instead. */
|
|
3
2
|
export type EnvironmentBannerProps = {
|
|
4
3
|
children?: React.ReactNode;
|
|
5
4
|
};
|
|
6
5
|
declare const EnvironmentBanner: ({ children }: EnvironmentBannerProps) => React.JSX.Element;
|
|
7
|
-
/** @deprecated The BrandedNavBar component is deprecated. Use the Navigation component instead. */
|
|
8
6
|
export default EnvironmentBanner;
|
|
@@ -2,6 +2,8 @@ export { default as Navigation } from "./Navigation";
|
|
|
2
2
|
export { NulogyLogo } from "./components/NulogyLogo/NulogyLogo";
|
|
3
3
|
export { NavigationLogoLink } from "./components/shared/NavigationLogoLink";
|
|
4
4
|
export { NavigationLogo } from "./components/shared/NavigationLogo";
|
|
5
|
+
export { EnvironmentBanner } from "./components/EnvironmentBanner";
|
|
5
6
|
export type { NavigationProps } from "./Navigation";
|
|
6
7
|
export type { MenuItems, MenuItem, UserMenu, UserMenuItem, UserMenuInfo } from "./types";
|
|
7
8
|
export type { AppSwitcherConfig } from "./components/AppSwitcher/NulogyAppSwitcher";
|
|
9
|
+
export type { EnvironmentBannerProps } from "./components/EnvironmentBanner";
|
package/dist/src/index.d.ts
CHANGED
|
@@ -7,8 +7,8 @@ export { Banner } from "./Banner";
|
|
|
7
7
|
export { BottomSheet, BottomSheetParts } from "./BottomSheet";
|
|
8
8
|
export type { BottomSheetProps } from "./BottomSheet";
|
|
9
9
|
export { AnimatedBox, Box } from "./Box";
|
|
10
|
-
export { BrandedNavBar, BrandLogoContainer, DesktopMenu,
|
|
11
|
-
export type { BrandLogoContainerProps, DesktopMenuProps,
|
|
10
|
+
export { BrandedNavBar, BrandLogoContainer, DesktopMenu, MenuTrigger, NavBarBackground, SmallNavBar, } from "./BrandedNavBar";
|
|
11
|
+
export type { BrandLogoContainerProps, DesktopMenuProps, MenuTriggerProps, NavBarBackgroundProps, RenderMenuButtonProps, SmallNavBarProps, } from "./BrandedNavBar";
|
|
12
12
|
export { Branding } from "./Branding";
|
|
13
13
|
export { Breadcrumbs } from "./Breadcrumbs";
|
|
14
14
|
export { Button, ControlIcon, DangerButton, IconicButton, PrimaryButton, QuietButton } from "./Button";
|
|
@@ -33,8 +33,8 @@ export { List, ListItem } from "./List";
|
|
|
33
33
|
export { LoadingAnimation } from "./LoadingAnimation";
|
|
34
34
|
export { ALL_NDS_LOCALES } from "./locales.const";
|
|
35
35
|
export { Modal } from "./Modal";
|
|
36
|
-
export { Navigation, NulogyLogo, NavigationLogoLink, NavigationLogo } from "./Navigation";
|
|
37
|
-
export type { NavigationProps, MenuItems, MenuItem, UserMenu, UserMenuItem, UserMenuInfo, AppSwitcherConfig, } from "./Navigation";
|
|
36
|
+
export { Navigation, NulogyLogo, NavigationLogoLink, NavigationLogo, EnvironmentBanner } from "./Navigation";
|
|
37
|
+
export type { NavigationProps, MenuItems, MenuItem, UserMenu, UserMenuItem, UserMenuInfo, AppSwitcherConfig, EnvironmentBannerProps, } from "./Navigation";
|
|
38
38
|
export { NDSProvider } from "./NDSProvider";
|
|
39
39
|
export { Overlay } from "./Overlay";
|
|
40
40
|
export { Pagination } from "./Pagination";
|