@everlywell/consumer-ui 1.36.0 → 1.37.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/index.js +9 -9
- package/index.mjs +474 -459
- package/lib/components/Footer/ComplianceLinks/ComplianceLinks.d.ts +14 -0
- package/lib/components/Footer/ComplianceLinks/ComplianceLinks.d.ts.map +1 -0
- package/lib/components/Footer/ComplianceLinks/ComplianceLinks.stories.d.ts +26 -0
- package/lib/components/Footer/ComplianceLinks/ComplianceLinks.stories.d.ts.map +1 -0
- package/lib/components/Footer/Footer/Footer.builder.d.ts +4 -0
- package/lib/components/Footer/Footer/Footer.builder.d.ts.map +1 -0
- package/lib/components/Footer/Footer/Footer.d.ts +35 -0
- package/lib/components/Footer/Footer/Footer.d.ts.map +1 -0
- package/lib/components/Footer/Footer/Footer.stories.d.ts +8 -0
- package/lib/components/Footer/Footer/Footer.stories.d.ts.map +1 -0
- package/lib/components/Footer/NavigationLinks/NavigationLinks.d.ts +16 -0
- package/lib/components/Footer/NavigationLinks/NavigationLinks.d.ts.map +1 -0
- package/lib/components/Footer/NavigationLinks/NavigationLinks.stories.d.ts +28 -0
- package/lib/components/Footer/NavigationLinks/NavigationLinks.stories.d.ts.map +1 -0
- package/lib/components/Footer/UpdatesAndSocial/UpdatesAndSocial.d.ts +14 -0
- package/lib/components/Footer/UpdatesAndSocial/UpdatesAndSocial.d.ts.map +1 -0
- package/lib/components/Footer/UpdatesAndSocial/UpdatesAndSocial.stories.d.ts +40 -0
- package/lib/components/Footer/UpdatesAndSocial/UpdatesAndSocial.stories.d.ts.map +1 -0
- package/lib/components/Footer/index.d.ts +2 -0
- package/lib/components/Footer/index.d.ts.map +1 -0
- package/lib/components/Logo/Logo.d.ts +8 -0
- package/lib/components/Logo/Logo.d.ts.map +1 -0
- package/lib/components/Navbar/NavbarDrawer/NavbarDrawer.d.ts.map +1 -1
- package/lib/components/Navbar/NavigationBar/NavigationBar.d.ts +1 -1
- package/lib/components/Navbar/NavigationBar/NavigationBar.d.ts.map +1 -1
- package/package.json +2 -2
- package/lib/components/Navbar/TopNavigation/Logo.d.ts +0 -2
- package/lib/components/Navbar/TopNavigation/Logo.d.ts.map +0 -1
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { CustomLinkComponent } from '../../Navbar/types';
|
|
3
|
+
export interface ComplianceLink {
|
|
4
|
+
label: string;
|
|
5
|
+
href?: string;
|
|
6
|
+
}
|
|
7
|
+
export interface ComplianceLinksProps {
|
|
8
|
+
links?: ComplianceLink[];
|
|
9
|
+
disclaimer?: string;
|
|
10
|
+
linkComponent?: CustomLinkComponent;
|
|
11
|
+
onLinkClick?: (label: string) => void;
|
|
12
|
+
}
|
|
13
|
+
export declare const ComplianceLinks: React.FC<ComplianceLinksProps>;
|
|
14
|
+
//# sourceMappingURL=ComplianceLinks.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ComplianceLinks.d.ts","sourceRoot":"","sources":["../../../../../../../libs/consumer-ui/src/lib/components/Footer/ComplianceLinks/ComplianceLinks.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,mBAAmB,EAAgB,MAAM,oBAAoB,CAAC;AAEvE,MAAM,WAAW,cAAc;IAC7B,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,oBAAoB;IACnC,KAAK,CAAC,EAAE,cAAc,EAAE,CAAC;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,aAAa,CAAC,EAAE,mBAAmB,CAAC;IACpC,WAAW,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CACvC;AAED,eAAO,MAAM,eAAe,EAAE,KAAK,CAAC,EAAE,CAAC,oBAAoB,CA8C1D,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { StoryObj } from '@storybook/react';
|
|
3
|
+
declare const meta: {
|
|
4
|
+
title: string;
|
|
5
|
+
component: React.FC<import("./ComplianceLinks").ComplianceLinksProps>;
|
|
6
|
+
parameters: {
|
|
7
|
+
backgrounds: {
|
|
8
|
+
default: string;
|
|
9
|
+
values: {
|
|
10
|
+
name: string;
|
|
11
|
+
value: string;
|
|
12
|
+
}[];
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
args: {
|
|
16
|
+
links: {
|
|
17
|
+
label: string;
|
|
18
|
+
href: string;
|
|
19
|
+
}[];
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
export default meta;
|
|
23
|
+
type Story = StoryObj<typeof meta>;
|
|
24
|
+
export declare const Default: Story;
|
|
25
|
+
export declare const WithCustomDisclaimer: Story;
|
|
26
|
+
//# sourceMappingURL=ComplianceLinks.stories.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ComplianceLinks.stories.d.ts","sourceRoot":"","sources":["../../../../../../../libs/consumer-ui/src/lib/components/Footer/ComplianceLinks/ComplianceLinks.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAGvD,QAAA,MAAM,IAAI;;;;;;;;;;;;;;;;;;CAkB8B,CAAC;AAEzC,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnC,eAAO,MAAM,OAAO,EAAE,KAAU,CAAC;AAEjC,eAAO,MAAM,oBAAoB,EAAE,KAIlC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Footer.builder.d.ts","sourceRoot":"","sources":["../../../../../../../libs/consumer-ui/src/lib/components/Footer/Footer/Footer.builder.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAsFvC,eAAO,MAAM,YAAY,EAAE,WAS1B,CAAC;AAEF,eAAO,MAAM,uBAAuB,WAC3B,OAAO,CAAC,WAAW,CAAC,KAC1B,WAGD,CAAC"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { NavigationLinksProps } from '../NavigationLinks/NavigationLinks';
|
|
3
|
+
import { UpdatesAndSocialProps } from '../UpdatesAndSocial/UpdatesAndSocial';
|
|
4
|
+
import { ComplianceLinksProps } from '../ComplianceLinks/ComplianceLinks';
|
|
5
|
+
import { CustomLinkComponent } from '../../Navbar/types';
|
|
6
|
+
/**
|
|
7
|
+
* Props for the Footer component.
|
|
8
|
+
*
|
|
9
|
+
* @property navigationSections - Optional sections for navigation links.
|
|
10
|
+
* @property newsletterLabel - Label for the newsletter section.
|
|
11
|
+
* @property socialMediaLabel - Label for the social media section.
|
|
12
|
+
* @property socialLinks - Social media links.
|
|
13
|
+
* @property disclaimer - Optional disclaimer text.
|
|
14
|
+
* @property complianceLinks - Links for compliance information.
|
|
15
|
+
* @property linkComponent - Optional custom link component to use instead of the default Link component.
|
|
16
|
+
* @property onEmailSubmit - Optional function to handle email submissions.
|
|
17
|
+
* @property additionalContent - Optional additional content to display in the footer.
|
|
18
|
+
* @property onLinkClick - Optional function to handle link clicks.
|
|
19
|
+
* @property onSocialMediaClick - Optional function to handle social media link clicks.
|
|
20
|
+
*/
|
|
21
|
+
export type FooterProps = {
|
|
22
|
+
navigationSections?: NavigationLinksProps['sections'];
|
|
23
|
+
newsletterLabel: string;
|
|
24
|
+
socialMediaLabel: string;
|
|
25
|
+
socialLinks: UpdatesAndSocialProps['socialLinks'];
|
|
26
|
+
disclaimer?: string;
|
|
27
|
+
complianceLinks?: ComplianceLinksProps['links'];
|
|
28
|
+
linkComponent?: CustomLinkComponent;
|
|
29
|
+
onEmailSubmit?: VoidFunction;
|
|
30
|
+
additionalContent?: React.ReactNode;
|
|
31
|
+
onLinkClick?: (label: string) => void;
|
|
32
|
+
onSocialMediaClick?: (name: string) => void;
|
|
33
|
+
};
|
|
34
|
+
export declare const Footer: ({ navigationSections, disclaimer, newsletterLabel, socialMediaLabel, socialLinks, complianceLinks, linkComponent, onEmailSubmit, additionalContent, onLinkClick, onSocialMediaClick }: FooterProps) => import("react/jsx-runtime").JSX.Element;
|
|
35
|
+
//# sourceMappingURL=Footer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Footer.d.ts","sourceRoot":"","sources":["../../../../../../../libs/consumer-ui/src/lib/components/Footer/Footer/Footer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAmB,oBAAoB,EAAE,MAAM,oCAAoC,CAAC;AAC3F,OAAO,EAAoB,qBAAqB,EAAE,MAAM,sCAAsC,CAAC;AAC/F,OAAO,EAAmB,oBAAoB,EAAE,MAAM,oCAAoC,CAAC;AAC3F,OAAO,EAAE,mBAAmB,EAAE,MAAM,oBAAoB,CAAC;AAEzD;;;;;;;;;;;;;;GAcG;AAEH,MAAM,MAAM,WAAW,GAAG;IACxB,kBAAkB,CAAC,EAAE,oBAAoB,CAAC,UAAU,CAAC,CAAC;IACtD,eAAe,EAAE,MAAM,CAAC;IACxB,gBAAgB,EAAE,MAAM,CAAC;IACzB,WAAW,EAAE,qBAAqB,CAAC,aAAa,CAAC,CAAC;IAClD,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,eAAe,CAAC,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;IAChD,aAAa,CAAC,EAAE,mBAAmB,CAAC;IACpC,aAAa,CAAC,EAAE,YAAY,CAAC;IAC7B,iBAAiB,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACpC,WAAW,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACtC,kBAAkB,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;CAC7C,CAAC;AAEF,eAAO,MAAM,MAAM,0LAYf,WAAW,4CAoEd,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { Footer } from './Footer';
|
|
3
|
+
declare const meta: Meta<typeof Footer>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof Footer>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Mobile: Story;
|
|
8
|
+
//# sourceMappingURL=Footer.stories.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Footer.stories.d.ts","sourceRoot":"","sources":["../../../../../../../libs/consumer-ui/src/lib/components/Footer/Footer/Footer.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAGlC,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,MAAM,CAM7B,CAAC;AAEF,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,MAAM,CAAC,CAAC;AAErC,eAAO,MAAM,OAAO,EAAE,KAIrB,CAAC;AAEF,eAAO,MAAM,MAAM,EAAE,KASpB,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { CustomLinkComponent } from '../../Navbar/types';
|
|
3
|
+
export interface FooterLink {
|
|
4
|
+
label: string;
|
|
5
|
+
href: string;
|
|
6
|
+
}
|
|
7
|
+
export interface NavigationLinksProps {
|
|
8
|
+
sections: {
|
|
9
|
+
title: string;
|
|
10
|
+
links: FooterLink[];
|
|
11
|
+
}[];
|
|
12
|
+
linkComponent?: CustomLinkComponent;
|
|
13
|
+
onLinkClick?: (label: string) => void;
|
|
14
|
+
}
|
|
15
|
+
export declare const NavigationLinks: React.FC<NavigationLinksProps>;
|
|
16
|
+
//# sourceMappingURL=NavigationLinks.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NavigationLinks.d.ts","sourceRoot":"","sources":["../../../../../../../libs/consumer-ui/src/lib/components/Footer/NavigationLinks/NavigationLinks.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAe1B,OAAO,EAAE,mBAAmB,EAAgB,MAAM,oBAAoB,CAAC;AAEvE,MAAM,WAAW,UAAU;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,oBAAoB;IACnC,QAAQ,EAAE;QACR,KAAK,EAAE,MAAM,CAAC;QACd,KAAK,EAAE,UAAU,EAAE,CAAC;KACrB,EAAE,CAAC;IACJ,aAAa,CAAC,EAAE,mBAAmB,CAAC;IACpC,WAAW,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CACvC;AA2FD,eAAO,MAAM,eAAe,EAAE,KAAK,CAAC,EAAE,CAAC,oBAAoB,CA+D1D,CAAC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { StoryObj } from '@storybook/react';
|
|
3
|
+
declare const meta: {
|
|
4
|
+
title: string;
|
|
5
|
+
component: React.FC<import("./NavigationLinks").NavigationLinksProps>;
|
|
6
|
+
parameters: {
|
|
7
|
+
backgrounds: {
|
|
8
|
+
default: string;
|
|
9
|
+
values: {
|
|
10
|
+
name: string;
|
|
11
|
+
value: string;
|
|
12
|
+
}[];
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
args: {
|
|
16
|
+
sections: {
|
|
17
|
+
title: string;
|
|
18
|
+
links: {
|
|
19
|
+
label: string;
|
|
20
|
+
href: string;
|
|
21
|
+
}[];
|
|
22
|
+
}[];
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
export default meta;
|
|
26
|
+
type Story = StoryObj<typeof meta>;
|
|
27
|
+
export declare const Default: Story;
|
|
28
|
+
//# sourceMappingURL=NavigationLinks.stories.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NavigationLinks.stories.d.ts","sourceRoot":"","sources":["../../../../../../../libs/consumer-ui/src/lib/components/Footer/NavigationLinks/NavigationLinks.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAGvD,QAAA,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;CAwC8B,CAAC;AAEzC,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnC,eAAO,MAAM,OAAO,EAAE,KAAU,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface SocialLink {
|
|
3
|
+
name: 'Instagram' | 'LinkedIn' | 'Facebook' | 'Tiktok' | 'X';
|
|
4
|
+
href: string;
|
|
5
|
+
}
|
|
6
|
+
export interface UpdatesAndSocialProps {
|
|
7
|
+
socialLinks?: SocialLink[];
|
|
8
|
+
newsletterLabel: string;
|
|
9
|
+
socialMediaLabel: string;
|
|
10
|
+
onEmailSubmit?: (email: string) => void;
|
|
11
|
+
onLinkClick?: (label: string) => void;
|
|
12
|
+
}
|
|
13
|
+
export declare const UpdatesAndSocial: React.FC<UpdatesAndSocialProps>;
|
|
14
|
+
//# sourceMappingURL=UpdatesAndSocial.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UpdatesAndSocial.d.ts","sourceRoot":"","sources":["../../../../../../../libs/consumer-ui/src/lib/components/Footer/UpdatesAndSocial/UpdatesAndSocial.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AA8B1B,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,WAAW,GAAG,UAAU,GAAG,UAAU,GAAG,QAAQ,GAAG,GAAG,CAAC;IAC7D,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,qBAAqB;IACpC,WAAW,CAAC,EAAE,UAAU,EAAE,CAAC;IAC3B,eAAe,EAAE,MAAM,CAAC;IACxB,gBAAgB,EAAE,MAAM,CAAC;IACzB,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACxC,WAAW,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CACvC;AAED,eAAO,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,qBAAqB,CAuF5D,CAAC"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { StoryObj } from '@storybook/react';
|
|
3
|
+
declare const meta: {
|
|
4
|
+
title: string;
|
|
5
|
+
component: React.FC<import("./UpdatesAndSocial").UpdatesAndSocialProps>;
|
|
6
|
+
parameters: {
|
|
7
|
+
backgrounds: {
|
|
8
|
+
default: string;
|
|
9
|
+
values: {
|
|
10
|
+
name: string;
|
|
11
|
+
value: string;
|
|
12
|
+
}[];
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
args: {
|
|
16
|
+
socialLinks: ({
|
|
17
|
+
name: "Instagram";
|
|
18
|
+
href: string;
|
|
19
|
+
} | {
|
|
20
|
+
name: "LinkedIn";
|
|
21
|
+
href: string;
|
|
22
|
+
} | {
|
|
23
|
+
name: "Facebook";
|
|
24
|
+
href: string;
|
|
25
|
+
} | {
|
|
26
|
+
name: "Tiktok";
|
|
27
|
+
href: string;
|
|
28
|
+
} | {
|
|
29
|
+
name: "X";
|
|
30
|
+
href: string;
|
|
31
|
+
})[];
|
|
32
|
+
onEmailSubmit: (email: string) => void;
|
|
33
|
+
newsletterLabel: string;
|
|
34
|
+
socialMediaLabel: string;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
export default meta;
|
|
38
|
+
type Story = StoryObj<typeof meta>;
|
|
39
|
+
export declare const Default: Story;
|
|
40
|
+
//# sourceMappingURL=UpdatesAndSocial.stories.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UpdatesAndSocial.stories.d.ts","sourceRoot":"","sources":["../../../../../../../libs/consumer-ui/src/lib/components/Footer/UpdatesAndSocial/UpdatesAndSocial.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAGvD,QAAA,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+BAgCiB,MAAM;;;;CAMQ,CAAC;AAE1C,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnC,eAAO,MAAM,OAAO,EAAE,KAAU,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../libs/consumer-ui/src/lib/components/Footer/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Logo.d.ts","sourceRoot":"","sources":["../../../../../../libs/consumer-ui/src/lib/components/Logo/Logo.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,UAAU,mBAAmB;IAC3B,KAAK,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IACzB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CA0BxD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NavbarDrawer.d.ts","sourceRoot":"","sources":["../../../../../../../libs/consumer-ui/src/lib/components/Navbar/NavbarDrawer/NavbarDrawer.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"NavbarDrawer.d.ts","sourceRoot":"","sources":["../../../../../../../libs/consumer-ui/src/lib/components/Navbar/NavbarDrawer/NavbarDrawer.tsx"],"names":[],"mappings":"AAoBA,OAAO,KAA2C,MAAM,OAAO,CAAC;AAMhE,eAAO,MAAM,sBAAsB,qBAAqB,CAAC;AAGzD,eAAO,MAAM,wBAAwB,eAAgB,OAAO,SAQ3D,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG;IAC9B;;OAEG;IACH,MAAM,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,OAAO,EAAE,YAAY,CAAC;IACtB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;;OAGG;IACH,cAAc,EAAE,KAAK,CAAC,SAAS,CAAC;IAChC;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAClB;;;OAGG;IACH,gBAAgB,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACnC;;OAEG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACjC;;OAEG;IACH,YAAY,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC/B;;;OAGG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;OAGG;IACH,WAAW,CAAC,EAAE,YAAY,CAAC;IAC3B;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC;;;OAGG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CACpC,CAAC;AAqBF,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAyRpD,CAAC;AACF,eAAe,YAAY,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React, { ReactElement } from 'react';
|
|
2
|
-
import { CustomLinkComponent } from '../types';
|
|
3
2
|
import { NavButtonProps } from '../NavButton';
|
|
4
3
|
import { SpotlightCardProps } from '../SpotlightCard';
|
|
4
|
+
import { CustomLinkComponent } from '../types';
|
|
5
5
|
/**
|
|
6
6
|
* Represents a navigation link item in the navigation bar
|
|
7
7
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NavigationBar.d.ts","sourceRoot":"","sources":["../../../../../../../libs/consumer-ui/src/lib/components/Navbar/NavigationBar/NavigationBar.tsx"],"names":[],"mappings":"AAYA,OAAO,KAAK,EAAE,EAAY,YAAY,
|
|
1
|
+
{"version":3,"file":"NavigationBar.d.ts","sourceRoot":"","sources":["../../../../../../../libs/consumer-ui/src/lib/components/Navbar/NavigationBar/NavigationBar.tsx"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everlywell/consumer-ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.37.1",
|
|
4
4
|
"main": "./index.js",
|
|
5
5
|
"types": "./index.d.ts",
|
|
6
6
|
"exports": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
},
|
|
12
12
|
"peerDependencies": {
|
|
13
13
|
"@everlywell/ui-kit": "1.x",
|
|
14
|
-
"@phosphor-icons/react": "2.
|
|
14
|
+
"@phosphor-icons/react": "2.1.7",
|
|
15
15
|
"react": "18.x",
|
|
16
16
|
"react-dom": "18.x"
|
|
17
17
|
},
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Logo.d.ts","sourceRoot":"","sources":["../../../../../../../libs/consumer-ui/src/lib/components/Navbar/TopNavigation/Logo.tsx"],"names":[],"mappings":"AAAA,eAAO,MAAM,cAAc,+CAsB1B,CAAC"}
|