@kickstartds/ds-agency-premium 1.2.11 → 1.2.12--canary.216.0543b48.0

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.
@@ -1,4 +1,39 @@
1
1
  /// <reference types="react" />
2
- import { BlogOverviewProps } from "../../BlogOverviewProps-f385fc47.js";
2
+ /* eslint-disable */
3
+ /**
4
+ * This file was automatically generated by json-schema-to-typescript.
5
+ * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
6
+ * and run json-schema-to-typescript to regenerate this file.
7
+ */
8
+ import { BlogTeaserProps } from "../../BlogTeaserProps-525f7f9f.js";
9
+ import { CtaProps } from "../../CtaProps-93230a76.js";
10
+ import { SeoProps } from "../../SeoProps-f2d6dcaa.js";
11
+ /**
12
+ * Collection of posts to list on the page
13
+ */
14
+ type Posts = BlogTeaserProps[];
15
+ /**
16
+ * Collection of posts to list on the page
17
+ */
18
+ type Posts1 = BlogTeaserProps[];
19
+ /**
20
+ * Abstracts a blog overview concept into JSON schema
21
+ */
22
+ interface BlogOverviewProps {
23
+ /**
24
+ * Referenced component BlogTeaserProps
25
+ */
26
+ latest?: BlogTeaserProps;
27
+ list?: Posts;
28
+ more?: Posts1;
29
+ /**
30
+ * Referenced component CtaProps
31
+ */
32
+ cta?: CtaProps;
33
+ /**
34
+ * Referenced component SeoProps
35
+ */
36
+ seo: SeoProps;
37
+ }
3
38
  declare const BlogOverview: ({ latest, more, }: BlogOverviewProps) => import("react/jsx-runtime").JSX.Element;
4
39
  export { BlogOverview };
@@ -1,4 +1,39 @@
1
1
  /// <reference types="react" />
2
- import { BlogPostProps } from "../../BlogPostProps-e1cbd5d3.js";
2
+ /* eslint-disable */
3
+ /**
4
+ * This file was automatically generated by json-schema-to-typescript.
5
+ * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
6
+ * and run json-schema-to-typescript to regenerate this file.
7
+ */
8
+ import { BlogHeadProps } from "../../BlogHeadProps-f9a49428.js";
9
+ import { BlogAsideProps } from "../../BlogAsideProps-e1cbd5d3.js";
10
+ import { CtaProps } from "../../CtaProps-93230a76.js";
11
+ import { SeoProps } from "../../SeoProps-f2d6dcaa.js";
12
+ /**
13
+ * Body text for the blog post
14
+ */
15
+ type Text = string;
16
+ /**
17
+ * Abstracts a blog post concept into JSON schema
18
+ */
19
+ interface BlogPostProps {
20
+ /**
21
+ * Referenced component BlogHeadProps
22
+ */
23
+ head?: BlogHeadProps;
24
+ /**
25
+ * Referenced component BlogAsideProps
26
+ */
27
+ aside?: BlogAsideProps;
28
+ content?: Text;
29
+ /**
30
+ * Referenced component CtaProps
31
+ */
32
+ cta?: CtaProps;
33
+ /**
34
+ * Referenced component SeoProps
35
+ */
36
+ seo: SeoProps;
37
+ }
3
38
  declare const BlogPost: ({ head, content, aside, cta }: BlogPostProps) => import("react/jsx-runtime").JSX.Element;
4
39
  export { BlogPost };
@@ -1,4 +1,40 @@
1
1
  import { FC } from "react";
2
- import { FooterProps } from "../../FooterProps-b5c16ab5.js";
2
+ /* eslint-disable */
3
+ /**
4
+ * This file was automatically generated by json-schema-to-typescript.
5
+ * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
6
+ * and run json-schema-to-typescript to regenerate this file.
7
+ */
8
+ /**
9
+ * Picture source
10
+ */
11
+ type Source = string;
12
+ /**
13
+ * Alt text to display for picture
14
+ */
15
+ type AltText = string;
16
+ /**
17
+ * Width of the picture
18
+ */
19
+ type Width = number;
20
+ /**
21
+ * Height of the picture
22
+ */
23
+ type Height = number;
24
+ interface FooterProps {
25
+ logo: Logo;
26
+ logoHref?: string;
27
+ navItems?: {
28
+ href: string;
29
+ label: string;
30
+ target?: string;
31
+ }[];
32
+ }
33
+ interface Logo {
34
+ src?: Source;
35
+ alt?: AltText;
36
+ width?: Width;
37
+ height?: Height;
38
+ }
3
39
  declare const Footer: FC<FooterProps>;
4
40
  export { Footer };
@@ -1,4 +1,45 @@
1
1
  import { FC } from "react";
2
- import { HeaderProps } from "../../HeaderProps-ae331ab2.js";
2
+ /* eslint-disable */
3
+ /**
4
+ * This file was automatically generated by json-schema-to-typescript.
5
+ * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
6
+ * and run json-schema-to-typescript to regenerate this file.
7
+ */
8
+ /**
9
+ * Picture source
10
+ */
11
+ type Source = string;
12
+ /**
13
+ * Alt text to display for picture
14
+ */
15
+ type AltText = string;
16
+ /**
17
+ * Width of the picture
18
+ */
19
+ type Width = number;
20
+ /**
21
+ * Height of the picture
22
+ */
23
+ type Height = number;
24
+ /**
25
+ * Make the header float over the first Section
26
+ */
27
+ type Floating = boolean;
28
+ interface HeaderProps {
29
+ logo: Logo;
30
+ logoHref?: string;
31
+ floating?: Floating;
32
+ navItems?: {
33
+ href: string;
34
+ label: string;
35
+ active?: boolean;
36
+ }[];
37
+ }
38
+ interface Logo {
39
+ src?: Source;
40
+ alt?: AltText;
41
+ width?: Width;
42
+ height?: Height;
43
+ }
3
44
  declare const Header: FC<HeaderProps>;
4
45
  export { Header };
@@ -1,4 +1,4 @@
1
1
  import { FC } from "react";
2
- import { ImageStoryProps } from "../../ImageStoryProps-24e0335c.js";
2
+ import { ImageStoryProps } from "../../ImageStoryProps-03ff6d21.js";
3
3
  declare const ImageStory: FC<ImageStoryProps>;
4
4
  export { ImageStory };