@ttoss/landing-pages 0.8.7 → 0.8.8
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/index.d.ts +6 -4
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
|
|
1
3
|
type HeroProps = {
|
|
2
4
|
headerText: string;
|
|
3
5
|
subHeaderText: string;
|
|
@@ -6,7 +8,7 @@ type HeroProps = {
|
|
|
6
8
|
imageAlt?: string;
|
|
7
9
|
ctaLabel?: string;
|
|
8
10
|
};
|
|
9
|
-
declare const Hero: ({ alignment, headerText, subHeaderText, imageSrc, imageAlt, ctaLabel, }: HeroProps) => JSX.Element;
|
|
11
|
+
declare const Hero: ({ alignment, headerText, subHeaderText, imageSrc, imageAlt, ctaLabel, }: HeroProps) => react_jsx_runtime.JSX.Element;
|
|
10
12
|
|
|
11
13
|
type HeroCarouselProps = {
|
|
12
14
|
images: {
|
|
@@ -15,7 +17,7 @@ type HeroCarouselProps = {
|
|
|
15
17
|
src: string;
|
|
16
18
|
}[];
|
|
17
19
|
};
|
|
18
|
-
declare const HeroCarousel: ({ images }: HeroCarouselProps) => JSX.Element;
|
|
20
|
+
declare const HeroCarousel: ({ images }: HeroCarouselProps) => react_jsx_runtime.JSX.Element;
|
|
19
21
|
|
|
20
22
|
type FooterLink = {
|
|
21
23
|
label: string;
|
|
@@ -31,7 +33,7 @@ type FooterProps = {
|
|
|
31
33
|
socialMedia: SocialMedia[];
|
|
32
34
|
reserved: string;
|
|
33
35
|
};
|
|
34
|
-
declare const Footer: ({ links, logo, socialMedia, reserved }: FooterProps) => JSX.Element;
|
|
36
|
+
declare const Footer: ({ links, logo, socialMedia, reserved }: FooterProps) => react_jsx_runtime.JSX.Element;
|
|
35
37
|
|
|
36
38
|
type NavbarLink = {
|
|
37
39
|
label: string;
|
|
@@ -46,6 +48,6 @@ type NavbarProps = {
|
|
|
46
48
|
};
|
|
47
49
|
links: NavbarLink[];
|
|
48
50
|
};
|
|
49
|
-
declare const Navbar: ({ links, logo, cta, type }: NavbarProps) => JSX.Element;
|
|
51
|
+
declare const Navbar: ({ links, logo, cta, type }: NavbarProps) => react_jsx_runtime.JSX.Element;
|
|
50
52
|
|
|
51
53
|
export { Footer, FooterProps, Hero, HeroCarousel, HeroCarouselProps, HeroProps, Navbar, NavbarProps };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ttoss/landing-pages",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.8",
|
|
4
4
|
"description": "Package for creating landing pages.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"author": "ttoss",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"react": ">=16.8.0",
|
|
23
|
-
"@ttoss/ui": "^1.36.
|
|
23
|
+
"@ttoss/ui": "^1.36.8"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@types/jest": "^29.5.1",
|
|
27
|
-
"@types/react": "^18.2.
|
|
27
|
+
"@types/react": "^18.2.6",
|
|
28
28
|
"@types/react-collapse": "^5.0.1",
|
|
29
29
|
"jest": "^29.5.0",
|
|
30
30
|
"tsup": "^6.7.0",
|
|
31
|
+
"@ttoss/test-utils": "^1.23.1",
|
|
31
32
|
"@ttoss/config": "^1.30.0",
|
|
32
|
-
"@ttoss/
|
|
33
|
-
"@ttoss/ui": "^1.36.7"
|
|
33
|
+
"@ttoss/ui": "^1.36.8"
|
|
34
34
|
},
|
|
35
35
|
"keywords": [
|
|
36
36
|
"React",
|