@lifesg/react-design-system 2.1.0-canary.3 → 2.1.0-canary.4
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/cjs/index.js +13 -12
- package/cjs/index.js.map +1 -1
- package/index.js +13 -12
- package/index.js.map +1 -1
- package/navbar/brand.d.ts +2 -1
- package/navbar/brand.styles.d.ts +0 -1
- package/navbar/index.js +13 -12
- package/navbar/index.js.map +1 -1
- package/navbar/navbar.styles.d.ts +1 -1
- package/navbar/types.d.ts +1 -0
- package/package.json +1 -1
|
@@ -16,6 +16,6 @@ export declare const MobileMenuIcon: import("styled-components").StyledComponent
|
|
|
16
16
|
(props: import("react").SVGProps<SVGSVGElement>): JSX.Element;
|
|
17
17
|
displayName: string;
|
|
18
18
|
}, import("styled-components").DefaultTheme, {}, never>;
|
|
19
|
-
export declare const NavBrandContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme,
|
|
19
|
+
export declare const NavBrandContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, StyleProps, never>;
|
|
20
20
|
export declare const NavSeparator: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, StyleProps, never>;
|
|
21
21
|
export {};
|
package/navbar/types.d.ts
CHANGED
|
@@ -58,6 +58,7 @@ export type NavbarDrawerHandle = HTMLDivElement & {
|
|
|
58
58
|
};
|
|
59
59
|
export interface NavbarProps<T = void> extends NavbarSharedProps {
|
|
60
60
|
items: NavItemsProps<T>;
|
|
61
|
+
className?: string | undefined;
|
|
61
62
|
id?: string | undefined;
|
|
62
63
|
"data-testid"?: string | undefined;
|
|
63
64
|
selectedId?: string | undefined;
|