@nextelco/common-ui 1.7.102 → 1.7.104
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/bundle.js +1 -1
- package/dist/types/components/atoms/Acronym/Acronym.d.ts +3 -1
- package/dist/types/components/atoms/IconText/IconText.d.ts +1 -1
- package/dist/types/components/organisms/Profile/Profile.d.ts +2 -2
- package/dist/types/exports/organisms.d.ts +1 -1
- package/dist/types/exports/types.d.ts +5 -2
- package/dist/types/types/themes/AcronymThemes.d.ts +3 -0
- package/package.json +1 -1
- /package/dist/types/types/themes/{IconTextTheme.d.ts → IconTextThemes.d.ts} +0 -0
@@ -1,8 +1,10 @@
|
|
1
1
|
import React from 'react';
|
2
|
+
import { AcronymTheme } from '../../../types/themes/AcronymThemes';
|
2
3
|
import './Acronym.scss';
|
3
4
|
type Props = {
|
4
5
|
name: string;
|
5
6
|
acronymOnly?: boolean;
|
7
|
+
theme: AcronymTheme;
|
6
8
|
};
|
7
|
-
declare const Acronym: ({ name, acronymOnly }: Props) => React.JSX.Element;
|
9
|
+
declare const Acronym: ({ name, acronymOnly, theme }: Props) => React.JSX.Element;
|
8
10
|
export default Acronym;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
import { IconProp } from '@fortawesome/fontawesome-svg-core';
|
3
3
|
import './IconText.scss';
|
4
|
-
import { IconTextTheme } from '../../../types/themes/
|
4
|
+
import { IconTextTheme } from '../../../types/themes/IconTextThemes';
|
5
5
|
interface IconTextProps {
|
6
6
|
icon: IconProp;
|
7
7
|
text: string;
|
@@ -6,5 +6,5 @@ type Props = {
|
|
6
6
|
handleLogout: () => void;
|
7
7
|
notifications?: ReactNode;
|
8
8
|
};
|
9
|
-
|
10
|
-
export
|
9
|
+
declare const Profile: ({ user, handleLogout, notifications }: Props) => React.JSX.Element;
|
10
|
+
export default Profile;
|
@@ -1,3 +1,3 @@
|
|
1
|
-
export { Profile } from '../components/organisms/Profile/Profile';
|
1
|
+
export { default as Profile } from '../components/organisms/Profile/Profile';
|
2
2
|
export { LazyLoader } from '../components/organisms/LazyLoader/LazyLoader';
|
3
3
|
export { Selector } from '../components/organisms/Selector/Selector';
|
@@ -1,4 +1,7 @@
|
|
1
1
|
export { LoggedUser } from '../types/LoggedUser';
|
2
|
-
export { ActionButtonTheme, IconButtonTheme, } from '../types/themes/ButtonThemes';
|
3
2
|
export { Menu, Submenu } from '../types/SidebarMenu';
|
4
|
-
export {
|
3
|
+
export { Fetcher } from '../types/Fetcher';
|
4
|
+
export { IconTextTheme } from '../types/themes/IconTextThemes';
|
5
|
+
export { ActionButtonTheme, IconButtonTheme, } from '../types/themes/ButtonThemes';
|
6
|
+
export { AcronymTheme } from '../types/themes/AcronymThemes';
|
7
|
+
export { CustomSwitchTheme } from '../types/themes/CustomSwitchThemes';
|
package/package.json
CHANGED
File without changes
|