@kickstartds/ds-agency-premium 1.3.46 → 1.3.48
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/{BlogPostProps-e1cbd5d3.d.ts → BlogPostProps-440f88a5.d.ts} +8 -2
- package/dist/components/blog-overview/index.d.ts +1 -1
- package/dist/components/blog-post/blog-post.schema.dereffed.json +3095 -1
- package/dist/components/blog-post/blog-post.schema.json +9 -1
- package/dist/components/blog-post/index.d.ts +3 -6
- package/dist/components/blog-post/index.js +1 -1
- package/dist/components/cta/cta.css +1 -1
- package/dist/components/index/index.d.ts +3 -3
- package/dist/components/page-wrapper/tokens.css +1 -1
- package/dist/components/presets.json +129 -1
- package/dist/components/section/index.d.ts +1 -1
- package/dist/tokens/themes.css +4 -4
- package/dist/tokens/tokens.css +1 -1
- package/dist/tokens/tokens.js +1 -1
- package/package.json +1 -1
- /package/dist/{BlogOverviewProps-525f7f9f.d.ts → BlogOverviewProps-f385fc47.d.ts} +0 -0
- /package/dist/{SectionProps-93230a76.d.ts → SectionProps-83d399b4.d.ts} +0 -0
|
@@ -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 };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { BlogOverviewProps } from "../../BlogOverviewProps-
|
|
2
|
+
import { BlogOverviewProps } from "../../BlogOverviewProps-f385fc47.js";
|
|
3
3
|
declare const BlogOverview: {
|
|
4
4
|
({ latest, more }: BlogOverviewProps): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
displayName: string;
|