@kickstartds/ds-agency-premium 1.4.6--canary.767.c06aa08.0 → 1.4.7--canary.15.776.0

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.
@@ -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-e853e1e7.js";
11
+ import { ImageStoryProps } from "./ImageStoryProps-03ff6d21.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";
@@ -1,4 +1,7 @@
1
1
  .dsa-blog-aside {
2
+ --dsa-blog-aside__meta__item--font: var(--ks-font-interface-s);
3
+ --dsa-blog-aside__meta__item--color: var(--ks-text-color-interface);
4
+ --dsa-blog-aside__meta__item__icon--size: 1.2em;
2
5
  --dsa-blog-aside__title--color: var(--dsa-headline--color);
3
6
  --dsa-blog-aside__title--font: var(--dsa-headline_h3--font);
4
7
  --dsa-blog-aside__links--color: var(--dsa-link--color);
@@ -11,24 +14,16 @@
11
14
  .dsa-blog-aside .c-post-meta {
12
15
  --c-post-meta--gap: var(--ks-spacing-m);
13
16
  --c-post-meta_item--gap: var(--ks-spacing-xs);
14
- --c-post-meta_item--font: var(--dsa-post-aside__meta__item--font, var(--ks-font-interface-s));
15
- --c-post-meta_item--color: var(--dsa-post-aside__meta__item--color, var(--ks-text-color-interface));
16
- --c-post-meta_item--icon-size: var(--dsa-post-aside__meta__item__icon--size, 1.2em);
17
- }
18
- .dsa-blog-aside .dsa-contact {
19
- justify-content: flex-start;
20
- }
21
- .dsa-blog-aside .dsa-headline .dsa-headline__headline {
22
- font: var(--dsa-post-aside__title--font, var(--dsa-headline_h3--font, var(--ks-font-display-l)));
23
- font-weight: var(--dsa-headline--font-weight);
24
- color: var(--dsa-post-aside__title--color, var(--dsa-headline--color, var(--ks-text-color-display)));
17
+ --c-post-meta_item--font: var(--dsa-blog-aside__meta__item--font, var(--ks-font-interface-s));
18
+ --c-post-meta_item--color: var(--dsa-blog-aside__meta__item--color, var(--ks-text-color-interface));
19
+ --c-post-meta_item--icon-size: var(--dsa-blog-aside__meta__item__icon--size, 1.2em);
25
20
  }
26
21
  .dsa-blog-aside .c-contact__links {
27
- color: var(--dsa-post-aside__links--color, var(--dsa-link--color));
22
+ color: var(--dsa-blog-aside__links--color, var(--dsa-link--color));
28
23
  }
29
24
  .dsa-blog-aside .c-contact__links .icon {
30
25
  color: inherit;
31
26
  }
32
27
  .dsa-blog-aside .c-divider {
33
- --c-divider--background: var(--dsa-post-aside__divider--color, var(--ks-border-color-accent));
28
+ --c-divider--background: var(--dsa-blog-aside__divider--color, var(--ks-border-color-accent));
34
29
  }
@@ -1,4 +1,4 @@
1
- import { BlogOverviewProps } from "../../BlogOverviewProps-9f207f1c.js";
1
+ import { BlogOverviewProps } from "../../BlogOverviewProps-83d399b4.js";
2
2
  import { FC, PropsWithChildren } from "react";
3
3
  declare const BlogOverview: FC<PropsWithChildren<BlogOverviewProps>>;
4
4
  export { BlogOverview };
@@ -1,4 +1,4 @@
1
- import { BlogPostProps } from "../../BlogPostProps-440f88a5.js";
1
+ import { BlogPostProps } from "../../BlogPostProps-83d399b4.js";
2
2
  import { FC, PropsWithChildren } from "react";
3
3
  declare const BlogPost: FC<PropsWithChildren<BlogPostProps>>;
4
4
  export { BlogPost };
@@ -19,7 +19,7 @@ import '@kickstartds/base/lib/button';
19
19
  import '../button-group/index.js';
20
20
  import '@kickstartds/base/lib/button-group';
21
21
 
22
- const BlogPost = ({ head, content, aside, cta, children, }) => (jsxs(Fragment, { children: [jsx(Section, { width: "wide", children: jsxs(Split, { layout: "sidebarRight", children: [jsxs("div", { children: [head && jsx(BlogHead, { ...head }), content ? jsx(Text, { text: content }) : children] }), jsx(BlogAside, { ...aside })] }) }), cta && (jsx(Section, { content: { mode: "list" }, children: jsx(Cta, { ...cta }) }))] }));
22
+ const BlogPost = ({ head, content, aside, cta, children, }) => (jsxs(Fragment, { children: [jsx(Section, { width: "wide", children: jsxs(Split, { mainSectionWidth: "narrow", layout: "sidebarRight", children: [jsxs("div", { children: [head && jsx(BlogHead, { ...head }), content ? jsx(Text, { text: content }) : children] }), jsx(BlogAside, { ...aside })] }) }), cta && (jsx(Section, { content: { mode: "list" }, children: jsx(Cta, { ...cta }) }))] }));
23
23
  BlogPost.displayName = "BlogPost";
24
24
 
25
25
  export { BlogPost };
@@ -3,8 +3,8 @@
3
3
  --dsa-contact__header--gap: 0;
4
4
  --dsa-contact__body--gap: var(--ks-spacing-stack-s) var(--ks-spacing-inline-m);
5
5
  --dsa-contact__title--color: var(--ks-text-color-display);
6
- --dsa-contact__title--font: var(--ks-font-display-l);
7
- --dsa-contact__title--font-weight: var(--dsa-topic--font-weight);
6
+ --dsa-contact__title--font: var(--ks-font-copy-l);
7
+ --dsa-contact__title--font-weight: var(--ks-font-weight-bold);
8
8
  --dsa-contact__subtitle--color: var(--ks-text-color-copy);
9
9
  --dsa-contact__subtitle--font: var(--ks-font-copy-m);
10
10
  --dsa-contact__subtitle--font-weight: var(--ks-font-weight-regular);
@@ -46,7 +46,7 @@
46
46
  font-weight: var(--dsa-contact__subtitle--font-weight);
47
47
  }
48
48
  .dsa-contact__image {
49
- align-self: center;
49
+ text-align: center;
50
50
  }
51
51
  .dsa-contact__links {
52
52
  display: flex;
@@ -33,7 +33,7 @@
33
33
  "description": "Name, company name, etc.",
34
34
  "type": "string",
35
35
  "examples": [
36
- "Max Mütze"
36
+ "Jane Smith"
37
37
  ]
38
38
  },
39
39
  "subtitle": {
@@ -41,7 +41,7 @@
41
41
  "description": "Position, profession, department, location, etc.",
42
42
  "type": "string",
43
43
  "examples": [
44
- "Geschäftsführer"
44
+ "CEO at Company"
45
45
  ]
46
46
  },
47
47
  "links": {
@@ -27,13 +27,13 @@
27
27
  "title": "Title",
28
28
  "description": "Name, company name, etc.",
29
29
  "type": "string",
30
- "examples": ["Max Mütze"]
30
+ "examples": ["Jane Smith"]
31
31
  },
32
32
  "subtitle": {
33
33
  "title": "Subtitle",
34
34
  "description": "Position, profession, department, location, etc.",
35
35
  "type": "string",
36
- "examples": ["Geschäftsführer"]
36
+ "examples": ["CEO at Company"]
37
37
  },
38
38
  "links": {
39
39
  "type": "array",
@@ -0,0 +1,25 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "http://schema.kickstartds.com/base/html.schema.json",
4
+ "title": "HTML",
5
+ "description": "Display raw HTML.",
6
+ "type": "object",
7
+ "properties": {
8
+ "html": {
9
+ "title": "HTML string",
10
+ "type": "string",
11
+ "examples": ["<p>Hello world!</p>"]
12
+ },
13
+ "className": {
14
+ "title": "Additional Classes",
15
+ "description": "Add additional css classes that should be applied to the element",
16
+ "type": "string"
17
+ },
18
+ "component": {
19
+ "title": "`ks-component` attribute",
20
+ "description": "Optional custom component identifier",
21
+ "type": "string"
22
+ }
23
+ },
24
+ "additionalProperties": false
25
+ }
@@ -0,0 +1,26 @@
1
+ import { ForwardRefRenderFunction, HTMLAttributes } from 'react';
2
+ /* eslint-disable */
3
+ /**
4
+ * This file was automatically generated by json-schema-to-typescript.
5
+ * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
6
+ * and run `yarn run schema` to regenerate this file.
7
+ */
8
+ type HTMLString = string;
9
+ /**
10
+ * Add additional css classes that should be applied to the element
11
+ */
12
+ type AdditionalClasses = string;
13
+ /**
14
+ * Optional custom component identifier
15
+ */
16
+ type KsComponentAttribute = string;
17
+ /**
18
+ * Display raw HTML.
19
+ */
20
+ interface HTMLProps {
21
+ html?: HTMLString;
22
+ className?: AdditionalClasses;
23
+ component?: KsComponentAttribute;
24
+ }
25
+ declare const HtmlComponent: ForwardRefRenderFunction<HTMLDivElement, HTMLProps & HTMLAttributes<HTMLDivElement>>;
26
+ export { HTMLProps, HtmlComponent };
@@ -0,0 +1,6 @@
1
+ import { jsx } from 'react/jsx-runtime';
2
+ import classnames from 'classnames';
3
+
4
+ const HtmlComponent = ({ html, className, component, ...props }, ref) => (jsx("div", { className: classnames('c-html', className), dangerouslySetInnerHTML: { __html: html }, "ks-component": component, ref: ref, ...props }));
5
+
6
+ export { HtmlComponent };
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { HTMLAttributes } from "react";
3
- import { ImageStoryProps } from "../../ImageStoryProps-e853e1e7.js";
3
+ import { ImageStoryProps } from "../../ImageStoryProps-03ff6d21.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-440f88a5.js";
76
- export * from "../../BlogOverviewProps-9f207f1c.js";
75
+ export * from "../../BlogPostProps-83d399b4.js";
76
+ export * from "../../BlogOverviewProps-83d399b4.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 Mon, 26 Aug 2024 12:01:08 GMT
3
+ * Generated on Tue, 27 Aug 2024 10:22:13 GMT
4
4
  */
5
5
  :root, [ks-theme] {
6
6
  --ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
@@ -115,8 +115,8 @@
115
115
  --ks-background-color-secondary-inverted-interactive-active-base: var(--ks-color-secondary-inverted-to-bg-2-base);
116
116
  --ks-background-color-secondary-inverted-interactive-selected-base: var(--ks-color-secondary-inverted-to-bg-4-base);
117
117
  --ks-background-color-secondary-inverted-translucent-base: var(--ks-color-secondary-inverted-alpha-5-base);
118
- --ks-border-color-accent-base: var(--ks-color-primary-to-bg-8-base);
119
- --ks-border-color-accent-inverted-base: var(--ks-color-primary-inverted-to-bg-8-base);
118
+ --ks-border-color-accent-base: var(--ks-color-fg-to-bg-7-base);
119
+ --ks-border-color-accent-inverted-base: var(--ks-color-fg-inverted-to-bg-7-base);
120
120
  --ks-border-color-clear-base: var(--ks-color-transparent-base);
121
121
  --ks-border-color-clear-interactive-base: var(--ks-color-transparent-base);
122
122
  --ks-border-color-clear-interactive-hover-base: var(--ks-color-primary-alpha-8-base);
@@ -3,7 +3,7 @@
3
3
  "id": "blog-blog-aside--default",
4
4
  "group": "Blog/ Blog Aside",
5
5
  "name": "Default",
6
- "code": "<BlogAside\n author={{\n byline: 'CEO at Company',\n email: 'jane.smith@example.com',\n image: {\n alt: 'Picture of Jane Smith',\n src: 'img/people/author-emily.png'\n },\n name: 'Jane Smith',\n twitter: 'jane_smith'\n }}\n date=\"12/30/2022\"\n readingTime=\"5 min read\"\n socialSharing={[\n {\n href: 'https://twitter.com/share?text=The%20Future%20of%20AI&url=https://example.com/blog/the-future-of-ai',\n icon: 'twitter',\n title: 'Share on Twitter'\n },\n {\n href: 'https://www.linkedin.com/shareArticle?mini=true&url=https://example.com/blog/the-future-of-ai&title=The%20Future%20of%20AI&summary=The%20Future%20of%20AI&source=LinkedIn',\n icon: 'linkedin',\n title: 'Share on LinkedIn'\n }\n ]}\n/>",
6
+ "code": "<BlogAside\n author={{\n byline: 'CEO at Company',\n email: 'jane.smith@example.com',\n image: {\n alt: 'Picture of Jane Smith',\n src: 'img/people/author-emily.png'\n },\n name: 'Jane Smith',\n twitter: 'jane_smith'\n }}\n date=\"12/30/2022\"\n readingTime=\"5 min read\"\n socialSharing={[\n {\n href: 'https://twitter.com/share?text=The%20Future%20of%20AI&url=https://example.com/blog/the-future-of-ai',\n icon: 'twitter',\n title: 'Share on Twitter'\n },\n {\n href: 'https://www.linkedin.com/shareArticle?mini=true&url=https://example.com/blog/the-future-of-ai&title=The%20Future%20of%20AI&summary=The%20Future%20of%20AI&source=LinkedIn',\n icon: 'linkedin',\n title: 'Share on LinkedIn'\n }\n ]}\n title=\"Blog Post\"\n/>",
7
7
  "args": {
8
8
  "author": {
9
9
  "name": "Jane Smith",
@@ -28,7 +28,8 @@
28
28
  }
29
29
  ],
30
30
  "readingTime": "5 min read",
31
- "date": "12/30/2022"
31
+ "date": "12/30/2022",
32
+ "title": "Blog Post"
32
33
  },
33
34
  "screenshot": "img/screenshots/blog-blog-aside--default.png"
34
35
  },
@@ -449,7 +450,7 @@
449
450
  "id": "pages-archetypes--blog-post",
450
451
  "group": "Pages/Archetypes",
451
452
  "name": "BlogPost",
452
- "code": "<BlogPost\n aside={{\n author: {\n byline: 'Senior Developer',\n email: 'Jane.doe@example.com',\n image: {\n alt: 'Picture of Jane Smith',\n src: 'img/people/author-emily.png'\n },\n name: 'Jane Doe',\n twitter: 'Janedoe'\n },\n date: '12/30/2022',\n readingTime: '5 min read',\n socialSharing: [\n {\n href: 'https://twitter.com/share?text=This%20is%20a%20blog%20post%20headline&url=https://example.com/blog',\n icon: 'twitter',\n title: 'Share on Twitter'\n },\n {\n href: 'https://www.linkedin.com/shareArticle?mini=true&url=https://example.com/blog&title=This%20is%20a%20blog%20post%20headline',\n icon: 'linkedin',\n title: 'Share on LinkedIn'\n }\n ]\n }}\n content=\"\n## Introduction\nThe future of **ArtiEficial Intelligence (AI)** is a topic that has been the subject of much debate. It's a field that's constantly evolving, with new advancements and breakthroughs happening all the time. [Learn more about AI](https://en.wikipedia.org/wiki/Artificial_intelligence)\n\n## The Current State of AI\nToday, AI is already a part of our daily lives. From *smart home devices* to *recommendation algorithms* on our favorite streaming services, AI is everywhere.\n\n## The Potential of AI\nThe potential of AI is immense. It has the ability to revolutionize industries, from healthcare to finance, and everything in between.\n\n## The Challenges of AI\nHowever, with great potential comes great challenges. Issues such as data privacy and the ethical implications of AI are just some of the hurdles that need to be overcome.\n\n## The Role of AI in Society\nAI has the potential to greatly impact society. It can lead to job creation in new industries, and can also help solve complex societal problems.\n\n## Conclusion\nThe future of AI is exciting and full of potential. However, it's important that we navigate this future with caution, ensuring that the benefits of AI are accessible to all, while minimizing its potential risks.\n \"\n cta={{\n buttons: [\n {\n icon: 'person',\n label: 'Contact Us',\n target: '#'\n },\n {\n icon: 'date',\n label: 'Learn More',\n target: '#'\n }\n ],\n colorNeutral: false,\n contentAlign: 'center',\n fullWidth: false,\n headline: 'Ready to Transform Your Development Process?',\n highlightText: false,\n image: {\n padding: true\n },\n order: {\n desktopImageLast: true,\n mobileImageLast: false\n },\n sub: 'Start your journey today.',\n text: 'Get started with our design system today and experience a new level of efficiency and consistency in your projects.',\n textAlign: 'center'\n }}\n head={{\n date: '12/30/2022',\n headline: 'The Future of AI: A Glimpse into the Unseen',\n image: 'img/close-up-young-business-team-working.png',\n tags: [\n 'Technology',\n 'AI'\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/>",
453
+ "code": "<BlogPost\n aside={{\n author: {\n byline: 'Senior Developer',\n email: 'Jane.doe@example.com',\n image: {\n alt: 'Picture of Jane Smith',\n src: 'img/people/author-emily.png'\n },\n name: 'Jane Doe',\n twitter: 'Janedoe'\n },\n date: '12/30/2022',\n readingTime: '5 min read',\n socialSharing: [\n {\n href: 'https://twitter.com/share?text=This%20is%20a%20blog%20post%20headline&url=https://example.com/blog',\n icon: 'twitter',\n title: 'Share on Twitter'\n },\n {\n href: 'https://www.linkedin.com/shareArticle?mini=true&url=https://example.com/blog&title=This%20is%20a%20blog%20post%20headline',\n icon: 'linkedin',\n title: 'Share on LinkedIn'\n }\n ]\n }}\n content=\"\n## Introduction\nThe future of **Artificial Intelligence (AI)** is a topic that has been the subject of much debate. It's a field that's constantly evolving, with new advancements and breakthroughs happening all the time. [Learn more about AI](https://en.wikipedia.org/wiki/Artificial_intelligence)\n\n## The Current State of AI\nToday, AI is already a part of our daily lives. From *smart home devices* to *recommendation algorithms* on our favorite streaming services, AI is everywhere.\n\n## The Potential of AI\nThe potential of AI is immense. It has the ability to revolutionize industries, from healthcare to finance, and everything in between.\n\n## The Challenges of AI\nHowever, with great potential comes great challenges. Issues such as data privacy and the ethical implications of AI are just some of the hurdles that need to be overcome.\n\n## The Role of AI in Society\nAI has the potential to greatly impact society. It can lead to job creation in new industries, and can also help solve complex societal problems.\n\n## Conclusion\nThe future of AI is exciting and full of potential. However, it's important that we navigate this future with caution, ensuring that the benefits of AI are accessible to all, while minimizing its potential risks.\n \"\n cta={{\n buttons: [\n {\n icon: 'person',\n label: 'Contact Us',\n target: '#'\n },\n {\n icon: 'date',\n label: 'Learn More',\n target: '#'\n }\n ],\n colorNeutral: false,\n contentAlign: 'center',\n fullWidth: false,\n headline: 'Ready to Transform Your Development Process?',\n highlightText: false,\n image: {\n padding: true\n },\n order: {\n desktopImageLast: true,\n mobileImageLast: false\n },\n sub: 'Start your journey today.',\n text: 'Get started with our design system today and experience a new level of efficiency and consistency in your projects.',\n textAlign: 'center'\n }}\n head={{\n date: '12/30/2022',\n headline: 'The Future of AI: A Glimpse into the Unseen',\n image: 'img/close-up-young-business-team-working.png',\n tags: [\n 'Technology',\n 'AI'\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/>",
453
454
  "args": {
454
455
  "head": {
455
456
  "date": "12/30/2022",
@@ -643,7 +644,7 @@
643
644
  "contentAlign": "center",
644
645
  "text": "Get started with our design system today and experience a new level of efficiency and consistency in your projects."
645
646
  },
646
- "content": "\n## Introduction\nThe future of **ArtiEficial Intelligence (AI)** is a topic that has been the subject of much debate. It's a field that's constantly evolving, with new advancements and breakthroughs happening all the time. [Learn more about AI](https://en.wikipedia.org/wiki/Artificial_intelligence)\n\n## The Current State of AI\nToday, AI is already a part of our daily lives. From *smart home devices* to *recommendation algorithms* on our favorite streaming services, AI is everywhere.\n\n## The Potential of AI\nThe potential of AI is immense. It has the ability to revolutionize industries, from healthcare to finance, and everything in between.\n\n## The Challenges of AI\nHowever, with great potential comes great challenges. Issues such as data privacy and the ethical implications of AI are just some of the hurdles that need to be overcome.\n\n## The Role of AI in Society\nAI has the potential to greatly impact society. It can lead to job creation in new industries, and can also help solve complex societal problems.\n\n## Conclusion\nThe future of AI is exciting and full of potential. However, it's important that we navigate this future with caution, ensuring that the benefits of AI are accessible to all, while minimizing its potential risks.\n "
647
+ "content": "\n## Introduction\nThe future of **Artificial Intelligence (AI)** is a topic that has been the subject of much debate. It's a field that's constantly evolving, with new advancements and breakthroughs happening all the time. [Learn more about AI](https://en.wikipedia.org/wiki/Artificial_intelligence)\n\n## The Current State of AI\nToday, AI is already a part of our daily lives. From *smart home devices* to *recommendation algorithms* on our favorite streaming services, AI is everywhere.\n\n## The Potential of AI\nThe potential of AI is immense. It has the ability to revolutionize industries, from healthcare to finance, and everything in between.\n\n## The Challenges of AI\nHowever, with great potential comes great challenges. Issues such as data privacy and the ethical implications of AI are just some of the hurdles that need to be overcome.\n\n## The Role of AI in Society\nAI has the potential to greatly impact society. It can lead to job creation in new industries, and can also help solve complex societal problems.\n\n## Conclusion\nThe future of AI is exciting and full of potential. However, it's important that we navigate this future with caution, ensuring that the benefits of AI are accessible to all, while minimizing its potential risks.\n "
647
648
  },
648
649
  "screenshot": "img/screenshots/pages-archetypes--blog-post.png"
649
650
  },
@@ -651,7 +652,7 @@
651
652
  "id": "components-contact--person",
652
653
  "group": "Components/Contact",
653
654
  "name": "Person",
654
- "code": "<Contact\n image={{\n alt: 'Picture of Jane Smith',\n src: 'img/people/author-emily.png',\n width: 300\n }}\n links={[\n {\n href: '#',\n icon: 'twitter',\n label: '@jane_smith',\n newTab: false\n },\n {\n href: 'mailto:mail@example.com',\n icon: 'email',\n label: 'jane.smith@example.com',\n newTab: false\n }\n ]}\n name=\"CEO at Company\"\n subtitle=\"Geschäftsführer\"\n title=\"Jane Smith\"\n/>",
655
+ "code": "<Contact\n image={{\n alt: 'Picture of Jane Smith',\n src: 'img/people/author-emily.png',\n width: 300\n }}\n links={[\n {\n href: '#',\n icon: 'twitter',\n label: '@jane_smith',\n newTab: false\n },\n {\n href: 'mailto:mail@example.com',\n icon: 'email',\n label: 'jane.smith@example.com',\n newTab: false\n }\n ]}\n subtitle=\"CEO at Company\"\n title=\"Jane Smith\"\n/>",
655
656
  "args": {
656
657
  "image": {
657
658
  "src": "img/people/author-emily.png",
@@ -659,7 +660,7 @@
659
660
  "width": 300
660
661
  },
661
662
  "title": "Jane Smith",
662
- "subtitle": "Geschäftsführer",
663
+ "subtitle": "CEO at Company",
663
664
  "links": [
664
665
  {
665
666
  "icon": "twitter",
@@ -673,8 +674,7 @@
673
674
  "href": "mailto:mail@example.com",
674
675
  "newTab": false
675
676
  }
676
- ],
677
- "name": "CEO at Company"
677
+ ]
678
678
  },
679
679
  "screenshot": "img/screenshots/components-contact--person.png"
680
680
  },
@@ -6,7 +6,8 @@ import { FC, PropsWithChildren } from "react";
6
6
  * and run json-schema-to-typescript to regenerate this file.
7
7
  */
8
8
  interface SplitProps {
9
- layout?: "sidebarRight" | "sidebarLeft" | "even";
9
+ layout?: "sidebarRight" | "sidebarLeft";
10
+ mainSectionWidth?: "narrow" | "medium" | "wide";
10
11
  }
11
12
  declare const Split: FC<PropsWithChildren<SplitProps>>;
12
13
  export { Split };
@@ -2,6 +2,16 @@ import "./split.css";
2
2
  import { jsx } from 'react/jsx-runtime';
3
3
  import classnames from 'classnames';
4
4
 
5
- const Split = ({ layout, children, }) => (jsx("div", { className: classnames(`l-split l-split--${layout}`), children: children }));
5
+ const Split = ({ layout = "sidebarRight", mainSectionWidth = "default", children, }) => (jsx("div", { className: classnames("l-split", layout === "sidebarRight"
6
+ ? "l-split--sidebar-right"
7
+ : layout === "sidebarLeft"
8
+ ? "l-split--sidebar-left"
9
+ : "l-split--sidebar-right", mainSectionWidth === "narrow"
10
+ ? "l-split--narrow"
11
+ : mainSectionWidth === "medium"
12
+ ? "l-split--medium"
13
+ : mainSectionWidth === "wide"
14
+ ? "l-split--wide"
15
+ : "l-split--medium"), children: children }));
6
16
 
7
17
  export { Split };
@@ -1,24 +1,50 @@
1
- .l-split--sidebarRight {
1
+ .l-split {
2
+ --dsa-split--gap-vertical: var(--ks-spacing-stack-l);
3
+ --dsa-split--gap-horizontal: var(--ks-spacing-inline-l);
4
+ --dsa-split__side--top-margin: var(--ks-spacing-stack-l);
5
+ --dsa-split__side--flex-basis: 210px;
6
+ }
7
+
8
+ .l-split {
2
9
  display: flex;
3
10
  flex-wrap: wrap;
4
- gap: var(--ks-spacing-stack-l) var(--ks-spacing-inline-xl);
11
+ gap: var(--dsa-split--gap-horizontal) var(--dsa-split--gap-horizontal);
12
+ }
13
+ .l-split--narrow {
14
+ --split__main--flex-basis: var(--l-section--content-width-narrow);
15
+ }
16
+ .l-split--medium {
17
+ --split__main--flex-basis: var(--l-section--content-width-default);
18
+ }
19
+ .l-split--wide {
20
+ --split__main--flex-basis: var(--l-section--content-width-wide);
5
21
  }
6
22
  @media (min-width: 48em) {
7
- .l-split--sidebarRight {
23
+ .l-split {
8
24
  justify-content: space-between;
9
25
  }
10
26
  }
11
- .l-split--sidebarRight > :first-child {
12
- flex-basis: calc(var(--l-section--content-width-default) - var(--l-section--content-padding) * 2);
27
+ .l-split > * {
13
28
  flex-grow: 1;
14
29
  flex-shrink: 1;
15
30
  }
16
- .l-split--sidebarRight > :last-child {
17
- flex-grow: 1;
18
- flex-shrink: 1;
19
- flex-basis: 210px;
31
+ .l-split--sidebar-right > :first-child {
32
+ flex-basis: calc(var(--split__main--flex-basis) - var(--l-section--content-padding) * 2);
33
+ }
34
+ .l-split--sidebar-right > :last-child {
35
+ flex-basis: var(--dsa-split__side--flex-basis, 210px);
36
+ position: -webkit-sticky;
37
+ position: sticky;
38
+ top: var(--dsa-split__side--top-margin, var(--ks-spacing-stack-l));
39
+ height: fit-content;
40
+ }
41
+ .l-split--sidebar-left > :last-child {
42
+ flex-basis: calc(var(--split__main--flex-basis) - var(--l-section--content-padding) * 2);
43
+ }
44
+ .l-split--sidebar-left > :first-child {
45
+ flex-basis: var(--dsa-split__side--flex-basis, 210px);
20
46
  position: -webkit-sticky;
21
47
  position: sticky;
22
- top: var(--ks-spacing-stack-l);
48
+ top: var(--dsa-split__side--top-margin, var(--ks-spacing-stack-l));
23
49
  height: fit-content;
24
50
  }
@@ -8,9 +8,18 @@
8
8
  "type": "string",
9
9
  "enum": [
10
10
  "sidebarRight",
11
- "sidebarLeft",
12
- "even"
13
- ]
11
+ "sidebarLeft"
12
+ ],
13
+ "default": "sidebarRight"
14
+ },
15
+ "mainSectionWidth": {
16
+ "type": "string",
17
+ "enum": [
18
+ "narrow",
19
+ "medium",
20
+ "wide"
21
+ ],
22
+ "default": "medium"
14
23
  },
15
24
  "type": {
16
25
  "const": "split"
@@ -6,7 +6,13 @@
6
6
  "properties": {
7
7
  "layout": {
8
8
  "type": "string",
9
- "enum": ["sidebarRight", "sidebarLeft", "even"]
9
+ "enum": ["sidebarRight", "sidebarLeft"],
10
+ "default": "sidebarRight"
11
+ },
12
+ "mainSectionWidth": {
13
+ "type": "string",
14
+ "enum": ["narrow", "medium", "wide"],
15
+ "default": "medium"
10
16
  }
11
17
  },
12
18
  "additionalProperties": false
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 26 Aug 2024 12:01:11 GMT
3
+ * Generated on Tue, 27 Aug 2024 10:22:16 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 Mon, 26 Aug 2024 12:01:16 GMT
2730
+ * Generated on Tue, 27 Aug 2024 10:22:20 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 Mon, 26 Aug 2024 12:01:13 GMT
5461
+ * Generated on Tue, 27 Aug 2024 10:22:18 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 Mon, 26 Aug 2024 12:01:18 GMT
8462
+ * Generated on Tue, 27 Aug 2024 10:22:22 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 Mon, 26 Aug 2024 12:01:08 GMT
3
+ * Generated on Tue, 27 Aug 2024 10:22:13 GMT
4
4
  */
5
5
 
6
6
  :root, [ks-theme] {
@@ -116,8 +116,8 @@
116
116
  --ks-background-color-secondary-inverted-interactive-active-base: var(--ks-color-secondary-inverted-to-bg-2-base);
117
117
  --ks-background-color-secondary-inverted-interactive-selected-base: var(--ks-color-secondary-inverted-to-bg-4-base);
118
118
  --ks-background-color-secondary-inverted-translucent-base: var(--ks-color-secondary-inverted-alpha-5-base);
119
- --ks-border-color-accent-base: var(--ks-color-primary-to-bg-8-base);
120
- --ks-border-color-accent-inverted-base: var(--ks-color-primary-inverted-to-bg-8-base);
119
+ --ks-border-color-accent-base: var(--ks-color-fg-to-bg-7-base);
120
+ --ks-border-color-accent-inverted-base: var(--ks-color-fg-inverted-to-bg-7-base);
121
121
  --ks-border-color-clear-base: var(--ks-color-transparent-base);
122
122
  --ks-border-color-clear-interactive-base: var(--ks-color-transparent-base);
123
123
  --ks-border-color-clear-interactive-hover-base: var(--ks-color-primary-alpha-8-base);
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 26 Aug 2024 12:01:09 GMT
3
+ * Generated on Tue, 27 Aug 2024 10:22:14 GMT
4
4
  */
5
5
 
6
6
  export const KsBackgroundColorAccentBase = "#230a2b";
@@ -115,8 +115,8 @@ export const KsBackgroundColorSecondaryInvertedInteractiveHoverBase = "#e43489";
115
115
  export const KsBackgroundColorSecondaryInvertedInteractiveActiveBase = "#e43489";
116
116
  export const KsBackgroundColorSecondaryInvertedInteractiveSelectedBase = "#e868a6";
117
117
  export const KsBackgroundColorSecondaryInvertedTranslucentBase = "rgba(226, 24, 121, 0.5)";
118
- export const KsBorderColorAccentBase = "#230a2b";
119
- export const KsBorderColorAccentInvertedBase = "#dcd6f2";
118
+ export const KsBorderColorAccentBase = "#424355";
119
+ export const KsBorderColorAccentInvertedBase = "#b9b9c0";
120
120
  export const KsBorderColorClearBase = "rgba(0, 0, 0, 0)";
121
121
  export const KsBorderColorClearInteractiveBase = "rgba(0, 0, 0, 0)";
122
122
  export const KsBorderColorClearInteractiveHoverBase = "rgba(226, 24, 121, 0.13)";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kickstartds/ds-agency-premium",
3
- "version": "1.4.6--canary.767.c06aa08.0",
3
+ "version": "1.4.7--canary.15.776.0",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kickstartDS/ds-agency-premium#readme",
6
6
  "bugs": {