magneto365.ui 2.61.1 → 2.61.3
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/assets/gif/e2ca38f1e0d908d9.gif +0 -0
- package/dist/cjs/css/magneto.ui.lib.min.css +1 -1
- package/dist/cjs/index.js +89 -79
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/UI/atoms/Text/Text.component.d.ts +1 -1
- package/dist/cjs/types/components/UI/atoms/Text/index.d.ts +1 -1
- package/dist/cjs/types/components/UI/atoms/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/molecules/Alert/Alert.interface.d.ts +1 -1
- package/dist/cjs/types/components/UI/molecules/MegaMenuEmpty/MegaMenuEmpty.interface.d.ts +6 -2
- package/dist/cjs/types/components/UI/organism/HeaderAnalyst/HeaderAnalyst.component.d.ts +2 -2
- package/dist/cjs/types/components/UI/organism/HeaderAnalyst/HeaderAnalyst.interface.d.ts +7 -3
- package/dist/cjs/types/components/UI/template/AnalystTemplate/AnalystTemplate.interface.d.ts +2 -2
- package/dist/cjs/types/constants/gifs.constants.d.ts +1 -0
- package/dist/cjs/types/constants/stories/analyst.constants.d.ts +2 -2
- package/dist/cjs/types/constants/stories/megaMenu.constants.d.ts +3 -0
- package/dist/esm/css/magneto.ui.lib.min.css +1 -1
- package/dist/esm/index.js +89 -80
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/UI/atoms/Text/Text.component.d.ts +1 -1
- package/dist/esm/types/components/UI/atoms/Text/index.d.ts +1 -1
- package/dist/esm/types/components/UI/atoms/index.d.ts +1 -0
- package/dist/esm/types/components/UI/molecules/Alert/Alert.interface.d.ts +1 -1
- package/dist/esm/types/components/UI/molecules/MegaMenuEmpty/MegaMenuEmpty.interface.d.ts +6 -2
- package/dist/esm/types/components/UI/organism/HeaderAnalyst/HeaderAnalyst.component.d.ts +2 -2
- package/dist/esm/types/components/UI/organism/HeaderAnalyst/HeaderAnalyst.interface.d.ts +7 -3
- package/dist/esm/types/components/UI/template/AnalystTemplate/AnalystTemplate.interface.d.ts +2 -2
- package/dist/esm/types/constants/gifs.constants.d.ts +1 -0
- package/dist/esm/types/constants/stories/analyst.constants.d.ts +2 -2
- package/dist/esm/types/constants/stories/megaMenu.constants.d.ts +3 -0
- package/dist/index.d.ts +50 -40
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { TextCustom } from './Text.component';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { IHeaderAnalyst } from './HeaderAnalyst.interface';
|
|
3
3
|
/**
|
|
4
4
|
* Organism UI component of header analyst
|
|
5
5
|
*/
|
|
6
|
-
export declare const HeaderAnalyst: React.FC<
|
|
6
|
+
export declare const HeaderAnalyst: React.FC<IHeaderAnalyst>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IBreadcrumbs, IUserMenuWrapperAnalystProps } from '@components/UI/molecules';
|
|
2
2
|
import { ILogoComponent, ILinkProps } from '@components/UI/atoms';
|
|
3
|
-
export interface
|
|
3
|
+
export interface IHeaderAnalyst {
|
|
4
4
|
/**
|
|
5
5
|
* Breadcrumbs props
|
|
6
6
|
*/
|
|
@@ -13,10 +13,14 @@ export interface IHeaderAnalystProps {
|
|
|
13
13
|
* Function to handle modal visibility from analyst template
|
|
14
14
|
*/
|
|
15
15
|
handleModal?: (name: string, visible: boolean, data: unknown) => void;
|
|
16
|
+
/**
|
|
17
|
+
* Text to be displayed in the header
|
|
18
|
+
*/
|
|
19
|
+
legend?: string;
|
|
16
20
|
/**
|
|
17
21
|
* Logo props
|
|
18
22
|
*/
|
|
19
|
-
logoProps?:
|
|
23
|
+
logoProps?: ILogoAnalyst;
|
|
20
24
|
/**
|
|
21
25
|
* Main menu button click handler
|
|
22
26
|
*/
|
|
@@ -30,7 +34,7 @@ export interface IHeaderAnalystProps {
|
|
|
30
34
|
*/
|
|
31
35
|
userNotificationProps?: ILinkProps;
|
|
32
36
|
}
|
|
33
|
-
export interface
|
|
37
|
+
export interface ILogoAnalyst extends ILogoComponent {
|
|
34
38
|
/**
|
|
35
39
|
* Link to redirect
|
|
36
40
|
*/
|
package/dist/cjs/types/components/UI/template/AnalystTemplate/AnalystTemplate.interface.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import {
|
|
2
|
+
import { IHeaderAnalyst, IModalAnalyst, INavMenuAnalystRegion } from '@components/UI/organism';
|
|
3
3
|
import { INavMenuDrawerAnalystProps } from '@components/UI/organism/NavMenuDrawerAnalyst';
|
|
4
4
|
export interface IAnalystTemplateProps {
|
|
5
5
|
/**
|
|
@@ -21,7 +21,7 @@ export interface IAnalystTemplateProps {
|
|
|
21
21
|
/**
|
|
22
22
|
* Header props
|
|
23
23
|
*/
|
|
24
|
-
headerProps:
|
|
24
|
+
headerProps: IHeaderAnalyst;
|
|
25
25
|
/**
|
|
26
26
|
* Navigation menu props
|
|
27
27
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IBreadcrumbs, IUserAnalyst, IUserMenuWrapperAnalystProps } from '@components/UI/molecules';
|
|
2
|
-
import {
|
|
2
|
+
import { IHeaderAnalyst, INavMenuAnalystProps, IModalAnalystProps } from '@components/UI/organism';
|
|
3
3
|
import { IMainButton, ILinkProps } from '@components/UI/atoms';
|
|
4
4
|
import { IAnalystTemplateProps } from '@components/UI/template';
|
|
5
5
|
export declare const MenuButtonAnalystProps: IMainButton;
|
|
@@ -7,7 +7,7 @@ export declare const BreadCrumbAnalystProps: IBreadcrumbs;
|
|
|
7
7
|
export declare const UserAnalystProps: IUserAnalyst;
|
|
8
8
|
export declare const UserNotificationProps: ILinkProps;
|
|
9
9
|
export declare const UserMenuAnalystProps: IUserMenuWrapperAnalystProps;
|
|
10
|
-
export declare const HeaderAnalystProps:
|
|
10
|
+
export declare const HeaderAnalystProps: IHeaderAnalyst;
|
|
11
11
|
export declare const NavMenuAnalystProps: INavMenuAnalystProps;
|
|
12
12
|
export declare const ModalAnalystProps: IModalAnalystProps;
|
|
13
13
|
export declare const AnalystTemplateProps: Omit<IAnalystTemplateProps, 'children'>;
|
|
@@ -2,6 +2,9 @@ import { IMegaMenuTab } from '@components/UI/atoms/MegaMenuTab/MegaMenuTab.inter
|
|
|
2
2
|
import { IMegaMenuCard } from '@components/UI/molecules';
|
|
3
3
|
import { IMegaMenuCards } from '@components/UI/organism';
|
|
4
4
|
import { IMegaMenuJobs, IMegaMenuMainHeader, IMegaMenuSocialHeader } from '@components/UI/template/MegaMenu/MegaMenuContext.interface';
|
|
5
|
+
export declare const staticMessages: {
|
|
6
|
+
[key: string]: string;
|
|
7
|
+
};
|
|
5
8
|
export declare const megaMenuSocialTabs: IMegaMenuTab[];
|
|
6
9
|
export declare const alphabet = "ABCDEFGHIJKLMN\u00D1OPQRSTUVWXYZ";
|
|
7
10
|
export declare const megaMenuJobImage: IMegaMenuCard;
|