@kickstartds/ds-agency-premium 1.4.2 → 1.4.3

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.
@@ -6,6 +6,14 @@
6
6
  "type": "object",
7
7
  "required": ["seo"],
8
8
  "properties": {
9
+ "section": {
10
+ "type": "array",
11
+ "title": "Overview Intro",
12
+ "description": "Collection of sections (with their contents) to render as the blog overview intro",
13
+ "items": {
14
+ "$ref": "http://schema.mydesignsystem.com/section.schema.json"
15
+ }
16
+ },
9
17
  "latest": {
10
18
  "$ref": "http://schema.mydesignsystem.com/blog-teaser.schema.json"
11
19
  },
@@ -1,7 +1,4 @@
1
- /// <reference types="react" />
2
- import { BlogOverviewProps } from "../../BlogOverviewProps-93230a76.js";
3
- declare const BlogOverview: {
4
- ({ latest, more }: BlogOverviewProps): import("react/jsx-runtime").JSX.Element;
5
- displayName: string;
6
- };
1
+ import { BlogOverviewProps } from "../../BlogOverviewProps-c32e14ba.js";
2
+ import { FC, PropsWithChildren } from "react";
3
+ declare const BlogOverview: FC<PropsWithChildren<BlogOverviewProps>>;
7
4
  export { BlogOverview };
@@ -2,6 +2,7 @@ import { createElement } from 'react';
2
2
  import { jsxs, Fragment, jsx } from 'react/jsx-runtime';
3
3
  import { Section } from '../section/index.js';
4
4
  import { BlogTeaser } from '../blog-teaser/index.js';
5
+ import { Cta } from '../cta/index.js';
5
6
  import 'classnames';
6
7
  import '@kickstartds/core/lib/react';
7
8
  import '@kickstartds/base/lib/section';
@@ -9,9 +10,13 @@ import '../section/js/Section.client.js';
9
10
  import '@kickstartds/core/lib/component';
10
11
  import '@kickstartds/blog/lib/post-teaser';
11
12
  import '@kickstartds/core/lib/container';
13
+ import '@kickstartds/content/lib/storytelling';
14
+ import '@kickstartds/base/lib/button';
15
+ import '../button-group/index.js';
16
+ import '@kickstartds/base/lib/button-group';
12
17
 
13
- const BlogOverview = ({ latest, more = [] }) => {
14
- return (jsxs(Fragment, { children: [latest && (jsx(Section, { width: "wide", children: jsx(BlogTeaser, { ...latest }) })), more.length > 0 && (jsx(Section, { headline: { text: "More articles" }, children: more.map((article) => (createElement(BlogTeaser, { ...article, key: article.headline }))) }))] }));
18
+ const BlogOverview = ({ latest, cta, list, children, more, }) => {
19
+ return (jsxs(Fragment, { children: [children, latest && (jsx(Section, { width: "wide", headline: { text: "Latest" }, children: jsx(BlogTeaser, { ...latest }) })), list && list.length > 0 && (jsx(Section, { headline: { text: "Articles" }, children: list.map((article) => (createElement(BlogTeaser, { ...article, key: article.headline }))) })), jsx("hr", {}), more && more.length > 0 && (jsx(Section, { headline: { text: "Featured" }, children: more.map((article) => (createElement(BlogTeaser, { ...article, key: article.headline }))) })), cta && (jsx(Section, { content: { mode: "list" }, children: jsx(Cta, { ...cta }) }))] }));
15
20
  };
16
21
  BlogOverview.displayName = "BlogOverview";
17
22
 
@@ -1,4 +1,4 @@
1
- import { BlogPostProps } from "../../BlogPostProps-83d399b4.js";
1
+ import { BlogPostProps } from "../../BlogPostProps-440f88a5.js";
2
2
  import { FC, PropsWithChildren } from "react";
3
3
  declare const BlogPost: FC<PropsWithChildren<BlogPostProps>>;
4
4
  export { BlogPost };
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { HTMLAttributes } from "react";
3
- import { ImageStoryProps } from "../../ImageStoryProps-03ff6d21.js";
3
+ import { ImageStoryProps } from "../../ImageStoryProps-e853e1e7.js";
4
4
  declare const ImageStoryContextDefault: import("react").ForwardRefExoticComponent<ImageStoryProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
5
5
  declare const ImageStoryContext: import("react").Context<import("react").ForwardRefExoticComponent<ImageStoryProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>>;
6
6
  declare const ImageStory: import("react").ForwardRefExoticComponent<ImageStoryProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
@@ -72,6 +72,6 @@ interface SettingsProps {
72
72
  */
73
73
  seo: SeoProps;
74
74
  }
75
- export * from "../../BlogPostProps-83d399b4.js";
76
- export * from "../../BlogOverviewProps-93230a76.js";
75
+ export * from "../../BlogPostProps-440f88a5.js";
76
+ export * from "../../BlogOverviewProps-c32e14ba.js";
77
77
  export { Sections, ToggleFloating, ToggleInverted, ToggleInverted1, PageProps, Header, Footer, SettingsProps };
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Fri, 23 Aug 2024 14:14:14 GMT
3
+ * Generated on Fri, 23 Aug 2024 18:05:34 GMT
4
4
  */
5
5
  :root, [ks-theme] {
6
6
  --ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
@@ -128,8 +128,136 @@
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/>",
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/>",
132
132
  "args": {
133
+ "section": [
134
+ {
135
+ "width": "default",
136
+ "style": "default",
137
+ "backgroundColor": "default",
138
+ "spotlight": false,
139
+ "spaceBefore": "default",
140
+ "spaceAfter": "default",
141
+ "inverted": false,
142
+ "headerSpacing": false,
143
+ "headline": {
144
+ "text": "Section headline",
145
+ "large": false,
146
+ "width": "unset"
147
+ },
148
+ "content": {
149
+ "width": "unset",
150
+ "align": "center",
151
+ "gutter": "default",
152
+ "mode": "list",
153
+ "tileWidth": "default"
154
+ },
155
+ "buttons": [
156
+ {
157
+ "label": "Book a meeting",
158
+ "variant": "secondary",
159
+ "size": "medium",
160
+ "disabled": false
161
+ },
162
+ {
163
+ "label": "Book a meeting",
164
+ "variant": "secondary",
165
+ "size": "medium",
166
+ "disabled": false
167
+ },
168
+ {
169
+ "label": "Book a meeting",
170
+ "variant": "secondary",
171
+ "size": "medium",
172
+ "disabled": false
173
+ }
174
+ ]
175
+ },
176
+ {
177
+ "width": "default",
178
+ "style": "default",
179
+ "backgroundColor": "default",
180
+ "spotlight": false,
181
+ "spaceBefore": "default",
182
+ "spaceAfter": "default",
183
+ "inverted": false,
184
+ "headerSpacing": false,
185
+ "headline": {
186
+ "text": "Section headline",
187
+ "large": false,
188
+ "width": "unset"
189
+ },
190
+ "content": {
191
+ "width": "unset",
192
+ "align": "center",
193
+ "gutter": "default",
194
+ "mode": "list",
195
+ "tileWidth": "default"
196
+ },
197
+ "buttons": [
198
+ {
199
+ "label": "Book a meeting",
200
+ "variant": "secondary",
201
+ "size": "medium",
202
+ "disabled": false
203
+ },
204
+ {
205
+ "label": "Book a meeting",
206
+ "variant": "secondary",
207
+ "size": "medium",
208
+ "disabled": false
209
+ },
210
+ {
211
+ "label": "Book a meeting",
212
+ "variant": "secondary",
213
+ "size": "medium",
214
+ "disabled": false
215
+ }
216
+ ]
217
+ },
218
+ {
219
+ "width": "default",
220
+ "style": "default",
221
+ "backgroundColor": "default",
222
+ "spotlight": false,
223
+ "spaceBefore": "default",
224
+ "spaceAfter": "default",
225
+ "inverted": false,
226
+ "headerSpacing": false,
227
+ "headline": {
228
+ "text": "Section headline",
229
+ "large": false,
230
+ "width": "unset"
231
+ },
232
+ "content": {
233
+ "width": "unset",
234
+ "align": "center",
235
+ "gutter": "default",
236
+ "mode": "list",
237
+ "tileWidth": "default"
238
+ },
239
+ "buttons": [
240
+ {
241
+ "label": "Book a meeting",
242
+ "variant": "secondary",
243
+ "size": "medium",
244
+ "disabled": false
245
+ },
246
+ {
247
+ "label": "Book a meeting",
248
+ "variant": "secondary",
249
+ "size": "medium",
250
+ "disabled": false
251
+ },
252
+ {
253
+ "label": "Book a meeting",
254
+ "variant": "secondary",
255
+ "size": "medium",
256
+ "disabled": false
257
+ }
258
+ ]
259
+ }
260
+ ],
133
261
  "latest": {
134
262
  "date": "12/30/2022",
135
263
  "tags": [
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Fri, 23 Aug 2024 14:14:16 GMT
3
+ * Generated on Fri, 23 Aug 2024 18:05:36 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 14:14:20 GMT
2730
+ * Generated on Fri, 23 Aug 2024 18:05:40 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 14:14:18 GMT
5461
+ * Generated on Fri, 23 Aug 2024 18:05:38 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 14:14:22 GMT
8462
+ * Generated on Fri, 23 Aug 2024 18:05:42 GMT
8463
8463
  */
8464
8464
  :root [ks-theme=telekom] {
8465
8465
  --ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Fri, 23 Aug 2024 14:14:14 GMT
3
+ * Generated on Fri, 23 Aug 2024 18:05:34 GMT
4
4
  */
5
5
 
6
6
  :root, [ks-theme] {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Fri, 23 Aug 2024 14:14:14 GMT
3
+ * Generated on Fri, 23 Aug 2024 18:05:35 GMT
4
4
  */
5
5
 
6
6
  export const KsBackgroundColorAccentBase = "#230a2b";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kickstartds/ds-agency-premium",
3
- "version": "1.4.2",
3
+ "version": "1.4.3",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kickstartDS/ds-agency-premium#readme",
6
6
  "bugs": {