app-layout-frame 0.0.44 → 0.0.46

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.
@@ -7,9 +7,9 @@ declare type Props = {
7
7
  actions: React.ReactNode[];
8
8
  companyLogoURL?: string;
9
9
  companyName: string;
10
- userPrifileImageURL: string;
10
+ userProfileImageURL: string;
11
11
  banner?: React.ReactNode;
12
12
  children?: React.ReactNode;
13
13
  };
14
- declare const LayoutFrame: ({ navItems, appLogo, actions, companyLogoURL, companyName, userPrifileImageURL, accountMenuDropdown, banner, children }: Props) => React.JSX.Element;
14
+ declare const LayoutFrame: ({ navItems, appLogo, actions, companyLogoURL, companyName, userProfileImageURL, accountMenuDropdown, banner, children }: Props) => React.JSX.Element;
15
15
  export default LayoutFrame;
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  declare type Props = {
3
3
  accountMenuDropdown: React.ReactNode;
4
- userPrifileImageURL: string;
4
+ userProfileImageURL: string;
5
5
  };
6
- declare const MyAccountMenu: ({ accountMenuDropdown, userPrifileImageURL }: Props) => React.JSX.Element;
6
+ declare const MyAccountMenu: ({ accountMenuDropdown, userProfileImageURL }: Props) => React.JSX.Element;
7
7
  export default MyAccountMenu;
@@ -4,7 +4,7 @@ declare type Props = {
4
4
  companyName: string;
5
5
  actions: React.ReactNode[];
6
6
  accountMenuDropdown: React.ReactNode;
7
- userPrifileImageURL: string;
7
+ userProfileImageURL: string;
8
8
  };
9
- declare const TopBar: ({ companyLogoURL, companyName, actions, accountMenuDropdown, userPrifileImageURL }: Props) => React.JSX.Element;
9
+ declare const TopBar: ({ companyLogoURL, companyName, actions, accountMenuDropdown, userProfileImageURL }: Props) => React.JSX.Element;
10
10
  export default TopBar;
@@ -1 +1 @@
1
- export declare const getBadgeContent: (badge: (string | null | undefined) | (number | null | undefined)) => string | null | undefined;
1
+ export declare const getBadgeContent: (badge: (string | null | undefined) | (number | null | undefined), limit?: number) => string | null | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "app-layout-frame",
3
- "version": "0.0.44",
3
+ "version": "0.0.46",
4
4
  "description": "Easily layout your webapp with sidenav and topbar",
5
5
  "author": "galexandrade",
6
6
  "license": "MIT",