@kickstartds/ds-agency-premium 1.4.2 → 1.4.4
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/{BlogOverviewProps-93230a76.d.ts → BlogOverviewProps-9f207f1c.d.ts} +22 -1
- package/dist/SectionProps-83d399b4.d.ts +1 -1
- package/dist/components/blog-overview/blog-overview.schema.dereffed.json +3112 -0
- package/dist/components/blog-overview/blog-overview.schema.json +26 -0
- package/dist/components/blog-overview/index.d.ts +3 -6
- package/dist/components/blog-overview/index.js +7 -2
- package/dist/components/blog-post/index.d.ts +1 -1
- package/dist/components/image-story/index.d.ts +1 -1
- package/dist/components/index/index.d.ts +2 -2
- package/dist/components/page-wrapper/tokens.css +1 -1
- package/dist/components/presets.json +132 -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/{BlogPostProps-83d399b4.d.ts → BlogPostProps-440f88a5.d.ts} +0 -0
- /package/dist/{ImageStoryProps-03ff6d21.d.ts → ImageStoryProps-e853e1e7.d.ts} +0 -0
|
@@ -3,13 +3,30 @@
|
|
|
3
3
|
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
4
4
|
* and run json-schema-to-typescript to regenerate this file.
|
|
5
5
|
*/
|
|
6
|
+
import { SectionProps } from "./SectionProps-83d399b4.js";
|
|
6
7
|
import { BlogTeaserProps } from "./BlogTeaserProps-525f7f9f.js";
|
|
7
8
|
import { CtaProps } from "./CtaProps-93230a76.js";
|
|
8
9
|
import { SeoProps } from "./SeoProps-f2d6dcaa.js";
|
|
10
|
+
/**
|
|
11
|
+
* Collection of sections (with their contents) to render as the blog overview intro
|
|
12
|
+
*/
|
|
13
|
+
type OverviewIntro = SectionProps[];
|
|
14
|
+
/**
|
|
15
|
+
* Title for the latest post section
|
|
16
|
+
*/
|
|
17
|
+
type LatestTitle = string;
|
|
18
|
+
/**
|
|
19
|
+
* Title for the list of posts section
|
|
20
|
+
*/
|
|
21
|
+
type ListTitle = string;
|
|
9
22
|
/**
|
|
10
23
|
* Collection of posts to list on the page
|
|
11
24
|
*/
|
|
12
25
|
type Posts = BlogTeaserProps[];
|
|
26
|
+
/**
|
|
27
|
+
* Title for the more featured posts section
|
|
28
|
+
*/
|
|
29
|
+
type MoreTitle = string;
|
|
13
30
|
/**
|
|
14
31
|
* Collection of posts to list on the page
|
|
15
32
|
*/
|
|
@@ -18,11 +35,15 @@ type Posts1 = BlogTeaserProps[];
|
|
|
18
35
|
* Abstracts a blog overview concept into JSON schema
|
|
19
36
|
*/
|
|
20
37
|
interface BlogOverviewProps {
|
|
38
|
+
section?: OverviewIntro;
|
|
39
|
+
latestTitle?: LatestTitle;
|
|
21
40
|
/**
|
|
22
41
|
* Referenced component BlogTeaserProps
|
|
23
42
|
*/
|
|
24
43
|
latest?: BlogTeaserProps;
|
|
44
|
+
listTitle?: ListTitle;
|
|
25
45
|
list?: Posts;
|
|
46
|
+
moreTitle?: MoreTitle;
|
|
26
47
|
more?: Posts1;
|
|
27
48
|
/**
|
|
28
49
|
* Referenced component CtaProps
|
|
@@ -33,4 +54,4 @@ interface BlogOverviewProps {
|
|
|
33
54
|
*/
|
|
34
55
|
seo: SeoProps;
|
|
35
56
|
}
|
|
36
|
-
export { Posts, Posts1, BlogOverviewProps };
|
|
57
|
+
export { OverviewIntro, LatestTitle, ListTitle, Posts, MoreTitle, Posts1, BlogOverviewProps };
|
|
@@ -8,7 +8,7 @@ import { FaqProps } from "./FaqProps-ad618cd5.js";
|
|
|
8
8
|
import { FeaturesProps } from "./FeaturesProps-b05859d6.js";
|
|
9
9
|
import { GalleryProps } from "./GalleryProps-76e7de44.js";
|
|
10
10
|
import { HeroProps } from "./HeroProps-cf82a16d.js";
|
|
11
|
-
import { ImageStoryProps } from "./ImageStoryProps-
|
|
11
|
+
import { ImageStoryProps } from "./ImageStoryProps-e853e1e7.js";
|
|
12
12
|
import { ImageTextProps } from "./ImageTextProps-9286cca4.js";
|
|
13
13
|
import { LogosProps } from "./LogosProps-f9474fe2.js";
|
|
14
14
|
import { MosaicProps } from "./MosaicProps-d52c7151.js";
|