@kickstartds/ds-agency-premium 1.4.3 → 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-c32e14ba.d.ts → BlogOverviewProps-9f207f1c.d.ts} +16 -1
- package/dist/components/blog-overview/blog-overview.schema.dereffed.json +18 -0
- package/dist/components/blog-overview/blog-overview.schema.json +18 -0
- package/dist/components/blog-overview/index.d.ts +1 -1
- package/dist/components/blog-overview/index.js +2 -2
- package/dist/components/index/index.d.ts +1 -1
- package/dist/components/page-wrapper/tokens.css +1 -1
- package/dist/components/presets.json +4 -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
|
@@ -11,10 +11,22 @@ import { SeoProps } from "./SeoProps-f2d6dcaa.js";
|
|
|
11
11
|
* Collection of sections (with their contents) to render as the blog overview intro
|
|
12
12
|
*/
|
|
13
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;
|
|
14
22
|
/**
|
|
15
23
|
* Collection of posts to list on the page
|
|
16
24
|
*/
|
|
17
25
|
type Posts = BlogTeaserProps[];
|
|
26
|
+
/**
|
|
27
|
+
* Title for the more featured posts section
|
|
28
|
+
*/
|
|
29
|
+
type MoreTitle = string;
|
|
18
30
|
/**
|
|
19
31
|
* Collection of posts to list on the page
|
|
20
32
|
*/
|
|
@@ -24,11 +36,14 @@ type Posts1 = BlogTeaserProps[];
|
|
|
24
36
|
*/
|
|
25
37
|
interface BlogOverviewProps {
|
|
26
38
|
section?: OverviewIntro;
|
|
39
|
+
latestTitle?: LatestTitle;
|
|
27
40
|
/**
|
|
28
41
|
* Referenced component BlogTeaserProps
|
|
29
42
|
*/
|
|
30
43
|
latest?: BlogTeaserProps;
|
|
44
|
+
listTitle?: ListTitle;
|
|
31
45
|
list?: Posts;
|
|
46
|
+
moreTitle?: MoreTitle;
|
|
32
47
|
more?: Posts1;
|
|
33
48
|
/**
|
|
34
49
|
* Referenced component CtaProps
|
|
@@ -39,4 +54,4 @@ interface BlogOverviewProps {
|
|
|
39
54
|
*/
|
|
40
55
|
seo: SeoProps;
|
|
41
56
|
}
|
|
42
|
-
export { OverviewIntro, Posts, Posts1, BlogOverviewProps };
|
|
57
|
+
export { OverviewIntro, LatestTitle, ListTitle, Posts, MoreTitle, Posts1, BlogOverviewProps };
|
|
@@ -3102,6 +3102,12 @@
|
|
|
3102
3102
|
"required": []
|
|
3103
3103
|
}
|
|
3104
3104
|
},
|
|
3105
|
+
"latestTitle": {
|
|
3106
|
+
"type": "string",
|
|
3107
|
+
"title": "Latest Title",
|
|
3108
|
+
"description": "Title for the latest post section",
|
|
3109
|
+
"default": "Latest Post"
|
|
3110
|
+
},
|
|
3105
3111
|
"latest": {
|
|
3106
3112
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3107
3113
|
"$id": "http://schema.mydesignsystem.com/blog-teaser.schema.json",
|
|
@@ -3243,6 +3249,12 @@
|
|
|
3243
3249
|
"teaserText"
|
|
3244
3250
|
]
|
|
3245
3251
|
},
|
|
3252
|
+
"listTitle": {
|
|
3253
|
+
"type": "string",
|
|
3254
|
+
"title": "List Title",
|
|
3255
|
+
"description": "Title for the list of posts section",
|
|
3256
|
+
"default": "Recent Posts"
|
|
3257
|
+
},
|
|
3246
3258
|
"list": {
|
|
3247
3259
|
"type": "array",
|
|
3248
3260
|
"title": "Posts",
|
|
@@ -3389,6 +3401,12 @@
|
|
|
3389
3401
|
]
|
|
3390
3402
|
}
|
|
3391
3403
|
},
|
|
3404
|
+
"moreTitle": {
|
|
3405
|
+
"type": "string",
|
|
3406
|
+
"title": "More Title",
|
|
3407
|
+
"description": "Title for the more featured posts section",
|
|
3408
|
+
"default": "Featured Posts"
|
|
3409
|
+
},
|
|
3392
3410
|
"more": {
|
|
3393
3411
|
"type": "array",
|
|
3394
3412
|
"title": "Posts",
|
|
@@ -14,9 +14,21 @@
|
|
|
14
14
|
"$ref": "http://schema.mydesignsystem.com/section.schema.json"
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
|
+
"latestTitle": {
|
|
18
|
+
"type": "string",
|
|
19
|
+
"title": "Latest Title",
|
|
20
|
+
"description": "Title for the latest post section",
|
|
21
|
+
"default": "Latest Post"
|
|
22
|
+
},
|
|
17
23
|
"latest": {
|
|
18
24
|
"$ref": "http://schema.mydesignsystem.com/blog-teaser.schema.json"
|
|
19
25
|
},
|
|
26
|
+
"listTitle": {
|
|
27
|
+
"type": "string",
|
|
28
|
+
"title": "List Title",
|
|
29
|
+
"description": "Title for the list of posts section",
|
|
30
|
+
"default": "Recent Posts"
|
|
31
|
+
},
|
|
20
32
|
"list": {
|
|
21
33
|
"type": "array",
|
|
22
34
|
"title": "Posts",
|
|
@@ -25,6 +37,12 @@
|
|
|
25
37
|
"$ref": "http://schema.mydesignsystem.com/blog-teaser.schema.json"
|
|
26
38
|
}
|
|
27
39
|
},
|
|
40
|
+
"moreTitle": {
|
|
41
|
+
"type": "string",
|
|
42
|
+
"title": "More Title",
|
|
43
|
+
"description": "Title for the more featured posts section",
|
|
44
|
+
"default": "Featured Posts"
|
|
45
|
+
},
|
|
28
46
|
"more": {
|
|
29
47
|
"type": "array",
|
|
30
48
|
"title": "Posts",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BlogOverviewProps } from "../../BlogOverviewProps-
|
|
1
|
+
import { BlogOverviewProps } from "../../BlogOverviewProps-9f207f1c.js";
|
|
2
2
|
import { FC, PropsWithChildren } from "react";
|
|
3
3
|
declare const BlogOverview: FC<PropsWithChildren<BlogOverviewProps>>;
|
|
4
4
|
export { BlogOverview };
|
|
@@ -15,8 +15,8 @@ import '@kickstartds/base/lib/button';
|
|
|
15
15
|
import '../button-group/index.js';
|
|
16
16
|
import '@kickstartds/base/lib/button-group';
|
|
17
17
|
|
|
18
|
-
const BlogOverview = ({ latest, cta, list, children, more, }) => {
|
|
19
|
-
return (jsxs(Fragment, { children: [children, latest && (jsx(Section, { width: "wide", headline: { text:
|
|
18
|
+
const BlogOverview = ({ latestTitle, latest, cta, listTitle, list, children, moreTitle, more, }) => {
|
|
19
|
+
return (jsxs(Fragment, { children: [children, latest && (jsx(Section, { width: "wide", headline: { text: latestTitle }, children: jsx(BlogTeaser, { ...latest }) })), list && list.length > 0 && (jsx(Section, { headline: { text: listTitle }, children: list.map((article) => (createElement(BlogTeaser, { ...article, key: article.headline }))) })), jsx("hr", {}), more && more.length > 0 && (jsx(Section, { headline: { text: moreTitle }, children: more.map((article) => (createElement(BlogTeaser, { ...article, key: article.headline }))) })), cta && (jsx(Section, { content: { mode: "list" }, children: jsx(Cta, { ...cta }) }))] }));
|
|
20
20
|
};
|
|
21
21
|
BlogOverview.displayName = "BlogOverview";
|
|
22
22
|
|
|
@@ -73,5 +73,5 @@ interface SettingsProps {
|
|
|
73
73
|
seo: SeoProps;
|
|
74
74
|
}
|
|
75
75
|
export * from "../../BlogPostProps-440f88a5.js";
|
|
76
|
-
export * from "../../BlogOverviewProps-
|
|
76
|
+
export * from "../../BlogOverviewProps-9f207f1c.js";
|
|
77
77
|
export { Sections, ToggleFloating, ToggleInverted, ToggleInverted1, PageProps, Header, Footer, SettingsProps };
|
|
@@ -128,7 +128,7 @@
|
|
|
128
128
|
"id": "pages-archetypes--blog-overview",
|
|
129
129
|
"group": "Pages/Archetypes",
|
|
130
130
|
"name": "BlogOverview",
|
|
131
|
-
"code": "<BlogOverview\n cta={{\n buttons: [\n {\n label: 'Book a meeting'\n },\n {\n label: 'Book a meeting'\n },\n {\n label: 'Book a meeting'\n }\n ],\n colorNeutral: false,\n contentAlign: 'center',\n fullWidth: false,\n headline: 'Headline',\n highlightText: false,\n image: {\n padding: true\n },\n order: {\n desktopImageLast: true,\n mobileImageLast: false\n },\n sub: 'Subheadline',\n textAlign: 'left'\n }}\n latest={{\n author: {\n image: 'img/people/author-alex.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'Mastering the Art of Design Systems with Systemics: A Journey from Vision to Reality',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n url: 'https://example.com/article1'\n },\n readingTime: '5 min read',\n tags: [\n 'Design Systems',\n 'Headless Websites',\n 'Training'\n ],\n teaserText: 'In this enlightening article, we delve into how Systemics, your go-to Design System agency, brings clarity and coherence to your brand\\'s digital presence. We discuss our unique approach to Design System Consulting, where we align your vision with actionable strategies for seamless and captivating user experiences. Learn how we transform ideas into tangible results with our Design System Creation service, empowering your brand to communicate effectively across digital platforms.'\n }}\n list={[\n {\n author: {\n image: 'img/people/author-emily.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'This is a blog post headline',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n url: 'https://example.com'\n },\n readingTime: '5 min read',\n tags: [\n 'tech',\n 'tech',\n 'tech'\n ],\n teaserText: 'This is a teaser text for the blog post'\n },\n {\n author: {\n image: 'img/people/author-emily.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'This is a blog post headline',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n url: 'https://example.com'\n },\n readingTime: '5 min read',\n tags: [\n 'tech',\n 'tech',\n 'tech'\n ],\n teaserText: 'This is a teaser text for the blog post'\n },\n {\n author: {\n image: 'img/people/author-emily.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'This is a blog post headline',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n url: 'https://example.com'\n },\n readingTime: '5 min read',\n tags: [\n 'tech',\n 'tech',\n 'tech'\n ],\n teaserText: 'This is a teaser text for the blog post'\n }\n ]}\n more={[\n {\n author: {\n image: 'img/people/author-alex.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'Mastering the Art of Design Systems with Systemics: A Journey from Vision to Reality',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n url: 'https://example.com/article1'\n },\n readingTime: '5 min read',\n tags: [\n 'Design Systems',\n 'Headless Websites',\n 'Training'\n ],\n teaserText: 'In this enlightening article, we delve into how Systemics, your go-to Design System agency, brings clarity and coherence to your brand\\'s digital presence. We discuss our unique approach to Design System Consulting, where we align your vision with actionable strategies for seamless and captivating user experiences. Learn how we transform ideas into tangible results with our Design System Creation service, empowering your brand to communicate effectively across digital platforms.'\n },\n {\n author: {\n image: 'img/people/author-emily.png',\n name: 'Jane Doe',\n title: 'CTO'\n },\n date: '12/30/2022',\n headline: 'Unleashing Innovation with Headless Websites: The Future of Digital Experiences',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n url: 'https://example.com/article2'\n },\n readingTime: '5 min read',\n tags: [\n 'Innovation',\n 'Headless Websites',\n 'Systemics'\n ],\n teaserText: 'Dive into the exciting world of headless architecture with Systemics. This article explores our Headless Websites service, a playground of innovation and creativity for brands seeking to redefine their digital journey. Discover how our experts leverage headless CMS architecture to provide unparalleled flexibility while maintaining design integrity. We make content distribution dynamic and responsive, tailoring it to users\\' preferences for a seamless journey across devices and platforms.'\n },\n {\n author: {\n image: 'img/people/author-alex.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'Investing in Digital Excellence: Systemics\\' Design System Trainings',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n url: 'https://example.com/article3'\n },\n readingTime: '5 min read',\n tags: [\n 'Digital Excellence',\n 'Systemics',\n 'Design System Trainings'\n ],\n teaserText: 'Investing in your digital team\\'s growth is crucial for sustainable success. In this article, we highlight Systemics\\' Design System Trainings, designed to equip your team with the skills they need to harness your design system effectively. Understand how our trainings promote collaboration, shared understanding, and continuous learning, ensuring your design system remains an evolving cornerstone of your digital success.'\n }\n ]}\n section={[\n {\n backgroundColor: 'default',\n buttons: [\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n }\n ],\n content: {\n align: 'center',\n gutter: 'default',\n mode: 'list',\n tileWidth: 'default',\n width: 'unset'\n },\n headerSpacing: false,\n headline: {\n large: false,\n text: 'Section headline',\n width: 'unset'\n },\n inverted: false,\n spaceAfter: 'default',\n spaceBefore: 'default',\n spotlight: false,\n style: 'default',\n width: 'default'\n },\n {\n backgroundColor: 'default',\n buttons: [\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n }\n ],\n content: {\n align: 'center',\n gutter: 'default',\n mode: 'list',\n tileWidth: 'default',\n width: 'unset'\n },\n headerSpacing: false,\n headline: {\n large: false,\n text: 'Section headline',\n width: 'unset'\n },\n inverted: false,\n spaceAfter: 'default',\n spaceBefore: 'default',\n spotlight: false,\n style: 'default',\n width: 'default'\n },\n {\n backgroundColor: 'default',\n buttons: [\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n }\n ],\n content: {\n align: 'center',\n gutter: 'default',\n mode: 'list',\n tileWidth: 'default',\n width: 'unset'\n },\n headerSpacing: false,\n headline: {\n large: false,\n text: 'Section headline',\n width: 'unset'\n },\n inverted: false,\n spaceAfter: 'default',\n spaceBefore: 'default',\n spotlight: false,\n style: 'default',\n width: 'default'\n }\n ]}\n/>",
|
|
131
|
+
"code": "<BlogOverview\n cta={{\n buttons: [\n {\n label: 'Book a meeting'\n },\n {\n label: 'Book a meeting'\n },\n {\n label: 'Book a meeting'\n }\n ],\n colorNeutral: false,\n contentAlign: 'center',\n fullWidth: false,\n headline: 'Headline',\n highlightText: false,\n image: {\n padding: true\n },\n order: {\n desktopImageLast: true,\n mobileImageLast: false\n },\n sub: 'Subheadline',\n textAlign: 'left'\n }}\n latest={{\n author: {\n image: 'img/people/author-alex.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'Mastering the Art of Design Systems with Systemics: A Journey from Vision to Reality',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n url: 'https://example.com/article1'\n },\n readingTime: '5 min read',\n tags: [\n 'Design Systems',\n 'Headless Websites',\n 'Training'\n ],\n teaserText: 'In this enlightening article, we delve into how Systemics, your go-to Design System agency, brings clarity and coherence to your brand\\'s digital presence. We discuss our unique approach to Design System Consulting, where we align your vision with actionable strategies for seamless and captivating user experiences. Learn how we transform ideas into tangible results with our Design System Creation service, empowering your brand to communicate effectively across digital platforms.'\n }}\n latestTitle=\"Latest Post\"\n list={[\n {\n author: {\n image: 'img/people/author-emily.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'This is a blog post headline',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n url: 'https://example.com'\n },\n readingTime: '5 min read',\n tags: [\n 'tech',\n 'tech',\n 'tech'\n ],\n teaserText: 'This is a teaser text for the blog post'\n },\n {\n author: {\n image: 'img/people/author-emily.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'This is a blog post headline',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n url: 'https://example.com'\n },\n readingTime: '5 min read',\n tags: [\n 'tech',\n 'tech',\n 'tech'\n ],\n teaserText: 'This is a teaser text for the blog post'\n },\n {\n author: {\n image: 'img/people/author-emily.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'This is a blog post headline',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n url: 'https://example.com'\n },\n readingTime: '5 min read',\n tags: [\n 'tech',\n 'tech',\n 'tech'\n ],\n teaserText: 'This is a teaser text for the blog post'\n }\n ]}\n listTitle=\"Recent Posts\"\n more={[\n {\n author: {\n image: 'img/people/author-alex.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'Mastering the Art of Design Systems with Systemics: A Journey from Vision to Reality',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n url: 'https://example.com/article1'\n },\n readingTime: '5 min read',\n tags: [\n 'Design Systems',\n 'Headless Websites',\n 'Training'\n ],\n teaserText: 'In this enlightening article, we delve into how Systemics, your go-to Design System agency, brings clarity and coherence to your brand\\'s digital presence. We discuss our unique approach to Design System Consulting, where we align your vision with actionable strategies for seamless and captivating user experiences. Learn how we transform ideas into tangible results with our Design System Creation service, empowering your brand to communicate effectively across digital platforms.'\n },\n {\n author: {\n image: 'img/people/author-emily.png',\n name: 'Jane Doe',\n title: 'CTO'\n },\n date: '12/30/2022',\n headline: 'Unleashing Innovation with Headless Websites: The Future of Digital Experiences',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n url: 'https://example.com/article2'\n },\n readingTime: '5 min read',\n tags: [\n 'Innovation',\n 'Headless Websites',\n 'Systemics'\n ],\n teaserText: 'Dive into the exciting world of headless architecture with Systemics. This article explores our Headless Websites service, a playground of innovation and creativity for brands seeking to redefine their digital journey. Discover how our experts leverage headless CMS architecture to provide unparalleled flexibility while maintaining design integrity. We make content distribution dynamic and responsive, tailoring it to users\\' preferences for a seamless journey across devices and platforms.'\n },\n {\n author: {\n image: 'img/people/author-alex.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'Investing in Digital Excellence: Systemics\\' Design System Trainings',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n url: 'https://example.com/article3'\n },\n readingTime: '5 min read',\n tags: [\n 'Digital Excellence',\n 'Systemics',\n 'Design System Trainings'\n ],\n teaserText: 'Investing in your digital team\\'s growth is crucial for sustainable success. In this article, we highlight Systemics\\' Design System Trainings, designed to equip your team with the skills they need to harness your design system effectively. Understand how our trainings promote collaboration, shared understanding, and continuous learning, ensuring your design system remains an evolving cornerstone of your digital success.'\n }\n ]}\n moreTitle=\"Featured Posts\"\n section={[\n {\n backgroundColor: 'default',\n buttons: [\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n }\n ],\n content: {\n align: 'center',\n gutter: 'default',\n mode: 'list',\n tileWidth: 'default',\n width: 'unset'\n },\n headerSpacing: false,\n headline: {\n large: false,\n text: 'Section headline',\n width: 'unset'\n },\n inverted: false,\n spaceAfter: 'default',\n spaceBefore: 'default',\n spotlight: false,\n style: 'default',\n width: 'default'\n },\n {\n backgroundColor: 'default',\n buttons: [\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n }\n ],\n content: {\n align: 'center',\n gutter: 'default',\n mode: 'list',\n tileWidth: 'default',\n width: 'unset'\n },\n headerSpacing: false,\n headline: {\n large: false,\n text: 'Section headline',\n width: 'unset'\n },\n inverted: false,\n spaceAfter: 'default',\n spaceBefore: 'default',\n spotlight: false,\n style: 'default',\n width: 'default'\n },\n {\n backgroundColor: 'default',\n buttons: [\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n }\n ],\n content: {\n align: 'center',\n gutter: 'default',\n mode: 'list',\n tileWidth: 'default',\n width: 'unset'\n },\n headerSpacing: false,\n headline: {\n large: false,\n text: 'Section headline',\n width: 'unset'\n },\n inverted: false,\n spaceAfter: 'default',\n spaceBefore: 'default',\n spotlight: false,\n style: 'default',\n width: 'default'\n }\n ]}\n/>",
|
|
132
132
|
"args": {
|
|
133
133
|
"section": [
|
|
134
134
|
{
|
|
@@ -258,6 +258,7 @@
|
|
|
258
258
|
]
|
|
259
259
|
}
|
|
260
260
|
],
|
|
261
|
+
"latestTitle": "Latest Post",
|
|
261
262
|
"latest": {
|
|
262
263
|
"date": "12/30/2022",
|
|
263
264
|
"tags": [
|
|
@@ -279,6 +280,7 @@
|
|
|
279
280
|
"image": "img/people/author-alex.png"
|
|
280
281
|
}
|
|
281
282
|
},
|
|
283
|
+
"listTitle": "Recent Posts",
|
|
282
284
|
"list": [
|
|
283
285
|
{
|
|
284
286
|
"date": "12/30/2022",
|
|
@@ -344,6 +346,7 @@
|
|
|
344
346
|
}
|
|
345
347
|
}
|
|
346
348
|
],
|
|
349
|
+
"moreTitle": "Featured Posts",
|
|
347
350
|
"more": [
|
|
348
351
|
{
|
|
349
352
|
"date": "12/30/2022",
|
package/dist/tokens/themes.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Fri, 23 Aug 2024
|
|
3
|
+
* Generated on Fri, 23 Aug 2024 20:47:25 GMT
|
|
4
4
|
*/
|
|
5
5
|
:root [ks-theme=business] {
|
|
6
6
|
--ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
|
|
@@ -2727,7 +2727,7 @@
|
|
|
2727
2727
|
}
|
|
2728
2728
|
/**
|
|
2729
2729
|
* Do not edit directly
|
|
2730
|
-
* Generated on Fri, 23 Aug 2024
|
|
2730
|
+
* Generated on Fri, 23 Aug 2024 20:47:30 GMT
|
|
2731
2731
|
*/
|
|
2732
2732
|
:root [ks-theme=google] {
|
|
2733
2733
|
--ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
|
|
@@ -5458,7 +5458,7 @@
|
|
|
5458
5458
|
}
|
|
5459
5459
|
/**
|
|
5460
5460
|
* Do not edit directly
|
|
5461
|
-
* Generated on Fri, 23 Aug 2024
|
|
5461
|
+
* Generated on Fri, 23 Aug 2024 20:47:27 GMT
|
|
5462
5462
|
*/
|
|
5463
5463
|
:root [ks-theme=ngo] {
|
|
5464
5464
|
--ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
|
|
@@ -8459,7 +8459,7 @@
|
|
|
8459
8459
|
}
|
|
8460
8460
|
/**
|
|
8461
8461
|
* Do not edit directly
|
|
8462
|
-
* Generated on Fri, 23 Aug 2024
|
|
8462
|
+
* Generated on Fri, 23 Aug 2024 20:47:33 GMT
|
|
8463
8463
|
*/
|
|
8464
8464
|
:root [ks-theme=telekom] {
|
|
8465
8465
|
--ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
|
package/dist/tokens/tokens.css
CHANGED
package/dist/tokens/tokens.js
CHANGED