@kickstartds/ds-agency-premium 1.3.47 → 1.3.49

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.
@@ -5,12 +5,17 @@
5
5
  */
6
6
  import { BlogHeadProps } from "./BlogHeadProps-f9a49428.js";
7
7
  import { BlogAsideProps } from "./BlogAsideProps-e1cbd5d3.js";
8
+ import { SectionProps } from "./SectionProps-83d399b4.js";
8
9
  import { CtaProps } from "./CtaProps-93230a76.js";
9
10
  import { SeoProps } from "./SeoProps-f2d6dcaa.js";
10
11
  /**
11
- * Body text for the blog post
12
+ * Body text for the blog post, overwrites sections if present
12
13
  */
13
14
  type Text = string;
15
+ /**
16
+ * Collection of sections (with their contents) to render on the blog post
17
+ */
18
+ type BlogSections = SectionProps[];
14
19
  /**
15
20
  * Abstracts a blog post concept into JSON schema
16
21
  */
@@ -24,6 +29,7 @@ interface BlogPostProps {
24
29
  */
25
30
  aside?: BlogAsideProps;
26
31
  content?: Text;
32
+ section?: BlogSections;
27
33
  /**
28
34
  * Referenced component CtaProps
29
35
  */
@@ -33,4 +39,4 @@ interface BlogPostProps {
33
39
  */
34
40
  seo: SeoProps;
35
41
  }
36
- export { Text, BlogPostProps };
42
+ export { Text, BlogSections, BlogPostProps };