@kickstartds/ds-agency-premium 1.6.57--canary.1461.46964a6.0 → 1.6.57

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.
@@ -5,7 +5,7 @@
5
5
  */
6
6
  import { SectionProps } from "./SectionProps-1cfcf6e8.js";
7
7
  import { BlogTeaserProps } from "./BlogTeaserProps-f5855e93.js";
8
- import { CtaProps } from "./CtaProps-0931e9c1.js";
8
+ import { CtaProps } from "./CtaProps-93230a76.js";
9
9
  import { SeoProps } from "./SeoProps-f2d6dcaa.js";
10
10
  /**
11
11
  * Collection of sections (with their contents) to render as the blog overview intro
@@ -6,7 +6,7 @@
6
6
  import { BlogHeadProps } from "./BlogHeadProps-c04a5ed8.js";
7
7
  import { BlogAsideProps } from "./BlogAsideProps-d9decb7c.js";
8
8
  import { SectionProps } from "./SectionProps-1cfcf6e8.js";
9
- import { CtaProps } from "./CtaProps-0931e9c1.js";
9
+ import { CtaProps } from "./CtaProps-93230a76.js";
10
10
  import { SeoProps } from "./SeoProps-f2d6dcaa.js";
11
11
  /**
12
12
  * Body text for the blog post, overwrites sections if present
@@ -23,6 +23,10 @@ type HighlightText = boolean;
23
23
  * Make the text and buttons color neutral
24
24
  */
25
25
  type ColorNeutral = boolean;
26
+ /**
27
+ * Set the width of the content to the full width of the element
28
+ */
29
+ type Width = boolean;
26
30
  /**
27
31
  * Text content to display inside the button
28
32
  */
@@ -77,6 +81,7 @@ interface CtaProps {
77
81
  text?: ComponentText;
78
82
  highlightText?: HighlightText;
79
83
  colorNeutral?: ColorNeutral;
84
+ fullWidth?: Width;
80
85
  buttons?: Button[];
81
86
  backgroundColor?: BackgroundColor;
82
87
  backgroundImage?: BackgroundImage;
@@ -105,4 +110,4 @@ interface Order {
105
110
  mobileImageLast?: MobileImageAfterText;
106
111
  desktopImageLast?: DesktopImageAfterText;
107
112
  }
108
- export { ComponentHeadline, ComponentSubheadline, ComponentText, HighlightText, ColorNeutral, Label, Icon, Target, BackgroundColor, BackgroundImage, ImageSource, Padding, AltText, MobileImageAfterText, DesktopImageAfterText, TextAlignment, VerticalAlignmentOfTheContent, CtaProps, Button, Image, Order };
113
+ export { ComponentHeadline, ComponentSubheadline, ComponentText, HighlightText, ColorNeutral, Width, Label, Icon, Target, BackgroundColor, BackgroundImage, ImageSource, Padding, AltText, MobileImageAfterText, DesktopImageAfterText, TextAlignment, VerticalAlignmentOfTheContent, CtaProps, Button, Image, Order };
@@ -3,7 +3,7 @@
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 { CtaProps } from "./CtaProps-0931e9c1.js";
6
+ import { CtaProps } from "./CtaProps-93230a76.js";
7
7
  import { DividerProps } from "./DividerProps-2ef31901.js";
8
8
  import { FaqProps } from "./FaqProps-ad618cd5.js";
9
9
  import { FeaturesProps } from "./FeaturesProps-e58616a5.js";
@@ -14,7 +14,7 @@ import { ImageStoryProps } from "./ImageStoryProps-e853e1e7.js";
14
14
  import { ImageTextProps } from "./ImageTextProps-9286cca4.js";
15
15
  import { LogosProps } from "./LogosProps-f9474fe2.js";
16
16
  import { MosaicProps } from "./MosaicProps-d52c7151.js";
17
- import { SliderProps } from "./SliderProps-0931e9c1.js";
17
+ import { SliderProps } from "./SliderProps-93230a76.js";
18
18
  import { StatsProps } from "./StatsProps-bf5ef578.js";
19
19
  import { TeaserCardProps } from "./TeaserCardProps-b9c28e78.js";
20
20
  import { TestimonialsProps } from "./TestimonialsProps-f7211553.js";
@@ -3,7 +3,7 @@
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 { CtaProps } from "./CtaProps-0931e9c1.js";
6
+ import { CtaProps } from "./CtaProps-93230a76.js";
7
7
  import { FeaturesProps } from "./FeaturesProps-e58616a5.js";
8
8
  import { GalleryProps } from "./GalleryProps-76e7de44.js";
9
9
  import { HeroProps } from "./HeroProps-f704d270.js";
@@ -282,6 +282,12 @@
282
282
  "default": false,
283
283
  "type": "boolean"
284
284
  },
285
+ "fullWidth": {
286
+ "title": "Width",
287
+ "description": "Set the width of the content to the full width of the element",
288
+ "type": "boolean",
289
+ "default": false
290
+ },
285
291
  "buttons": {
286
292
  "type": "array",
287
293
  "items": {
@@ -1532,6 +1538,12 @@
1532
1538
  "default": false,
1533
1539
  "type": "boolean"
1534
1540
  },
1541
+ "fullWidth": {
1542
+ "title": "Width",
1543
+ "description": "Set the width of the content to the full width of the element",
1544
+ "type": "boolean",
1545
+ "default": false
1546
+ },
1535
1547
  "buttons": {
1536
1548
  "type": "array",
1537
1549
  "items": {
@@ -3681,6 +3693,12 @@
3681
3693
  "default": false,
3682
3694
  "type": "boolean"
3683
3695
  },
3696
+ "fullWidth": {
3697
+ "title": "Width",
3698
+ "description": "Set the width of the content to the full width of the element",
3699
+ "type": "boolean",
3700
+ "default": false
3701
+ },
3684
3702
  "buttons": {
3685
3703
  "type": "array",
3686
3704
  "items": {
@@ -558,6 +558,12 @@
558
558
  "default": false,
559
559
  "type": "boolean"
560
560
  },
561
+ "fullWidth": {
562
+ "title": "Width",
563
+ "description": "Set the width of the content to the full width of the element",
564
+ "type": "boolean",
565
+ "default": false
566
+ },
561
567
  "buttons": {
562
568
  "type": "array",
563
569
  "items": {
@@ -1808,6 +1814,12 @@
1808
1814
  "default": false,
1809
1815
  "type": "boolean"
1810
1816
  },
1817
+ "fullWidth": {
1818
+ "title": "Width",
1819
+ "description": "Set the width of the content to the full width of the element",
1820
+ "type": "boolean",
1821
+ "default": false
1822
+ },
1811
1823
  "buttons": {
1812
1824
  "type": "array",
1813
1825
  "items": {
@@ -3440,6 +3452,12 @@
3440
3452
  "default": false,
3441
3453
  "type": "boolean"
3442
3454
  },
3455
+ "fullWidth": {
3456
+ "title": "Width",
3457
+ "description": "Set the width of the content to the full width of the element",
3458
+ "type": "boolean",
3459
+ "default": false
3460
+ },
3443
3461
  "buttons": {
3444
3462
  "type": "array",
3445
3463
  "items": {
@@ -98,6 +98,10 @@
98
98
  .dsa-cta.c-storytelling .c-storytelling__box__content--center .c-button-group {
99
99
  justify-content: center;
100
100
  }
101
+ .dsa-cta.c-storytelling .c-storytelling__box:only-child {
102
+ width: 100%;
103
+ max-width: calc(var(--dsa-content--width_default) - var(--dsa-content--spacing) * var(--c-storytelling--padding-ratio));
104
+ }
101
105
  .dsa-cta.c-storytelling > .c-storytelling__image {
102
106
  padding: var(--dsa-cta--vertical-padding, var(--l-section--space-default)) var(--dsa-cta--horizontal-padding, var(--dsa-content--spacing));
103
107
  padding-right: calc(var(--dsa-cta--horizontal-padding, var(--dsa-content--spacing)) / var(--c-storytelling--padding-ratio));
@@ -105,6 +109,14 @@
105
109
  .dsa-cta.c-storytelling.c-storytelling--full > .c-storytelling__image {
106
110
  padding: 0;
107
111
  }
112
+ .dsa-cta.c-storytelling > .c-storytelling__image,
113
+ .dsa-cta.c-storytelling > .c-storytelling__box {
114
+ max-width: calc(var(--dsa-content--width_wide) / 2);
115
+ }
116
+ .dsa-cta.c-storytelling.dsa-cta--full-width > .c-storytelling__image,
117
+ .dsa-cta.c-storytelling.dsa-cta--full-width > .c-storytelling__box {
118
+ max-width: 100%;
119
+ }
108
120
  }
109
121
 
110
122
  @media (min-width: 640px) {
@@ -40,6 +40,12 @@
40
40
  "default": false,
41
41
  "type": "boolean"
42
42
  },
43
+ "fullWidth": {
44
+ "title": "Width",
45
+ "description": "Set the width of the content to the full width of the element",
46
+ "type": "boolean",
47
+ "default": false
48
+ },
43
49
  "buttons": {
44
50
  "type": "array",
45
51
  "items": {
@@ -36,6 +36,12 @@
36
36
  "default": false,
37
37
  "type": "boolean"
38
38
  },
39
+ "fullWidth": {
40
+ "title": "Width",
41
+ "description": "Set the width of the content to the full width of the element",
42
+ "type": "boolean",
43
+ "default": false
44
+ },
39
45
  "buttons": {
40
46
  "type": "array",
41
47
  "items": {
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { HTMLAttributes } from "react";
3
- import { CtaProps } from "../../CtaProps-0931e9c1.js";
3
+ import { CtaProps } from "../../CtaProps-93230a76.js";
4
4
  declare const CtaContextDefault: import("react").ForwardRefExoticComponent<CtaProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
5
5
  declare const CtaContext: import("react").Context<import("react").ForwardRefExoticComponent<CtaProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>>;
6
6
  declare const Cta: import("react").ForwardRefExoticComponent<CtaProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
@@ -7,13 +7,13 @@ import classnames from 'classnames';
7
7
  import { useButtonGroup } from '../button-group/index.js';
8
8
  import '@kickstartds/base/lib/button-group';
9
9
 
10
- const CtaContextDefault = forwardRef(({ headline, highlightText = false, sub, image, text, textAlign, backgroundImage, backgroundColor, colorNeutral, contentAlign, order, buttons = [], ...rest }, ref) => {
10
+ const CtaContextDefault = forwardRef(({ headline, highlightText = false, sub, image, text, textAlign, backgroundImage, backgroundColor, colorNeutral, contentAlign, order, fullWidth = false, buttons = [], ...rest }, ref) => {
11
11
  const ButtonGroup = useButtonGroup();
12
12
  return (jsx(ButtonContext.Provider
13
13
  // @ts-expect-error
14
14
  , {
15
15
  // @ts-expect-error
16
- value: ButtonGroup, children: jsx(Storytelling, { ...rest, ref: ref, className: classnames("dsa-cta", highlightText ? `dsa-cta--highlight-text` : "", colorNeutral ? `dsa-cta--color-neutral` : "", contentAlign && contentAlign !== "center"
16
+ value: ButtonGroup, children: jsx(Storytelling, { ...rest, ref: ref, className: classnames("dsa-cta", fullWidth ? `dsa-cta--full-width` : "", highlightText ? `dsa-cta--highlight-text` : "", colorNeutral ? `dsa-cta--color-neutral` : "", contentAlign && contentAlign !== "center"
17
17
  ? `dsa-cta--align-${contentAlign}`
18
18
  : ""), backgroundImage: backgroundImage, backgroundColor: backgroundColor, full: image?.padding === false, image: {
19
19
  source: image?.src,
@@ -17,7 +17,6 @@
17
17
  --dsa-hero__textbox--background-color: var(--ks-color-bg-alpha-2);
18
18
  --dsa-hero__textbox--border-radius: var(--ks-border-radius-surface);
19
19
  --dsa-hero__textbox--max-width: var(--dsa-content--width_narrow);
20
- --dsa-hero_below__textbox--max-width: var(--dsa-content--width_default);
21
20
  --dsa-hero__textbox--padding: var(--ks-spacing-inset-squish-xl);
22
21
  --dsa-hero__overlay--background: linear-gradient(0deg, var(--ks-background-color-default) 15%, transparent 50%);
23
22
  }
@@ -120,7 +119,7 @@
120
119
  position: relative;
121
120
  }
122
121
  .c-visual.dsa-hero.dsa-hero--content-below .c-visual__content .c-visual__box {
123
- --c-visual_box--max-width: var(--dsa-hero_below__textbox--max-width, var(--dsa-content--width_default));
122
+ --c-visual_box--max-width: var(--dsa-content--width_default);
124
123
  }
125
124
  @container visual (min-width: 640px) {
126
125
  .c-visual.dsa-hero.dsa-hero--content-below.c-visual--no-crop .c-visual__media .c-visual__image {
@@ -282,6 +282,12 @@
282
282
  "default": false,
283
283
  "type": "boolean"
284
284
  },
285
+ "fullWidth": {
286
+ "title": "Width",
287
+ "description": "Set the width of the content to the full width of the element",
288
+ "type": "boolean",
289
+ "default": false
290
+ },
285
291
  "buttons": {
286
292
  "type": "array",
287
293
  "items": {
@@ -1532,6 +1538,12 @@
1532
1538
  "default": false,
1533
1539
  "type": "boolean"
1534
1540
  },
1541
+ "fullWidth": {
1542
+ "title": "Width",
1543
+ "description": "Set the width of the content to the full width of the element",
1544
+ "type": "boolean",
1545
+ "default": false
1546
+ },
1535
1547
  "buttons": {
1536
1548
  "type": "array",
1537
1549
  "items": {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 07 Jan 2025 08:42:16 GMT
3
+ * Generated on Tue, 07 Jan 2025 14:01:42 GMT
4
4
  */
5
5
  :root, [ks-theme] {
6
6
  --ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
@@ -472,6 +472,7 @@
472
472
  "sub": "Chat with us about getting your product or platform to market faster",
473
473
  "highlightText": false,
474
474
  "colorNeutral": false,
475
+ "fullWidth": true,
475
476
  "buttons": [
476
477
  {
477
478
  "label": "Contact us",
@@ -494,7 +495,6 @@
494
495
  },
495
496
  "textAlign": "left",
496
497
  "contentAlign": "center",
497
- "fullWidth": true,
498
498
  "text": "Our modular design approach allows for flexibility and scalability in your application's architecture.",
499
499
  "width": "wide"
500
500
  }
@@ -505,7 +505,7 @@
505
505
  "id": "page-archetypes-blog-post--blog-post",
506
506
  "group": "Page Archetypes/Blog Post",
507
507
  "name": "BlogPost",
508
- "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 aspectRatio: 'square',\n fullWidth: false,\n src: 'img/people/author-emily.png'\n },\n links: [\n {\n href: 'tel:+4922868896620',\n icon: 'phone',\n label: '0228 / 688 966 20',\n newTab: false\n },\n {\n href: 'mailto:mail@example.com',\n icon: 'email',\n label: 'mail@example.com',\n newTab: false\n }\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 contact={{\n copy: 'Leads with a vision for innovative, user-centric web designs, ensuring each project merges creativity with functionality to deliver outstanding digital experiences.',\n image: {\n alt: 'Picture of Jane Smith',\n aspectRatio: 'vertical',\n fullWidth: false,\n src: 'img/people/contact-john.png'\n },\n links: [\n {\n href: 'mailto:mail@example.com',\n icon: 'xing',\n label: 'john.smith',\n newTab: false\n },\n {\n href: '#',\n icon: 'twitter',\n label: '@john_smith',\n newTab: false\n }\n ],\n subtitle: 'Sales Representative',\n title: 'John Smith'\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 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 alt: 'Image of a business team working',\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 {\n entry: 'Technology'\n },\n {\n entry: 'AI'\n }\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/>",
508
+ "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 aspectRatio: 'square',\n fullWidth: false,\n src: 'img/people/author-emily.png'\n },\n links: [\n {\n href: 'tel:+4922868896620',\n icon: 'phone',\n label: '0228 / 688 966 20',\n newTab: false\n },\n {\n href: 'mailto:mail@example.com',\n icon: 'email',\n label: 'mail@example.com',\n newTab: false\n }\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 contact={{\n copy: 'Leads with a vision for innovative, user-centric web designs, ensuring each project merges creativity with functionality to deliver outstanding digital experiences.',\n image: {\n alt: 'Picture of Jane Smith',\n aspectRatio: 'vertical',\n fullWidth: false,\n src: 'img/people/contact-john.png'\n },\n links: [\n {\n href: 'mailto:mail@example.com',\n icon: 'xing',\n label: 'john.smith',\n newTab: false\n },\n {\n href: '#',\n icon: 'twitter',\n label: '@john_smith',\n newTab: false\n }\n ],\n subtitle: 'Sales Representative',\n title: 'John Smith'\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 alt: 'Image of a business team working',\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 {\n entry: 'Technology'\n },\n {\n entry: 'AI'\n }\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/>",
509
509
  "args": {
510
510
  "head": {
511
511
  "date": "12/30/2022",
@@ -696,6 +696,7 @@
696
696
  "sub": "Start your journey today.",
697
697
  "highlightText": false,
698
698
  "colorNeutral": false,
699
+ "fullWidth": false,
699
700
  "buttons": [
700
701
  {
701
702
  "label": "Contact Us",
@@ -885,6 +886,7 @@
885
886
  "sub": "Start your journey today.",
886
887
  "highlightText": false,
887
888
  "colorNeutral": false,
889
+ "fullWidth": false,
888
890
  "buttons": [
889
891
  {
890
892
  "label": "Contact Us",
@@ -920,6 +922,7 @@
920
922
  "sub": "Built for consistency and speed.",
921
923
  "highlightText": true,
922
924
  "colorNeutral": false,
925
+ "fullWidth": false,
923
926
  "buttons": [
924
927
  {
925
928
  "label": "Get Started",
@@ -950,6 +953,7 @@
950
953
  "sub": "Efficient, scalable, seamless.",
951
954
  "highlightText": false,
952
955
  "colorNeutral": false,
956
+ "fullWidth": false,
953
957
  "buttons": [
954
958
  {
955
959
  "label": "Learn More",
@@ -980,6 +984,7 @@
980
984
  "sub": "With Our Premium Over-Ear Headphones",
981
985
  "highlightText": true,
982
986
  "colorNeutral": false,
987
+ "fullWidth": false,
983
988
  "buttons": [
984
989
  {
985
990
  "label": "Shop Now",
@@ -1014,12 +1019,13 @@
1014
1019
  "id": "components-cta--contact-banner",
1015
1020
  "group": "Components/Cta",
1016
1021
  "name": "ContactBanner",
1017
- "code": "<Cta\n buttons={[\n {\n icon: 'person',\n label: 'Contact us',\n target: '#'\n },\n {\n icon: 'date',\n label: 'Book a meeting',\n target: '#'\n }\n ]}\n contentAlign=\"center\"\n headline=\"Get in touch\"\n image={{\n padding: false,\n src: 'img/contact-person.png'\n }}\n order={{\n desktopImageLast: false,\n mobileImageLast: false\n }}\n sub=\"Chat with us about getting your product or platform to market faster\"\n text=\"Our modular design approach allows for flexibility and scalability in your application's architecture.\"\n textAlign=\"left\"\n width=\"wide\"\n/>",
1022
+ "code": "<Cta\n buttons={[\n {\n icon: 'person',\n label: 'Contact us',\n target: '#'\n },\n {\n icon: 'date',\n label: 'Book a meeting',\n target: '#'\n }\n ]}\n contentAlign=\"center\"\n fullWidth\n headline=\"Get in touch\"\n image={{\n padding: false,\n src: 'img/contact-person.png'\n }}\n order={{\n desktopImageLast: false,\n mobileImageLast: false\n }}\n sub=\"Chat with us about getting your product or platform to market faster\"\n text=\"Our modular design approach allows for flexibility and scalability in your application's architecture.\"\n textAlign=\"left\"\n width=\"wide\"\n/>",
1018
1023
  "args": {
1019
1024
  "headline": "Get in touch",
1020
1025
  "sub": "Chat with us about getting your product or platform to market faster",
1021
1026
  "highlightText": false,
1022
1027
  "colorNeutral": false,
1028
+ "fullWidth": true,
1023
1029
  "buttons": [
1024
1030
  {
1025
1031
  "label": "Contact us",
@@ -1051,12 +1057,13 @@
1051
1057
  "id": "components-cta--split-banner",
1052
1058
  "group": "Components/Cta",
1053
1059
  "name": "SplitBanner",
1054
- "code": "<Cta\n backgroundColor=\"#001856\"\n buttons={[\n {\n icon: 'person',\n label: 'What can we do for you?',\n target: '#'\n }\n ]}\n colorNeutral\n contentAlign=\"center\"\n headline=\"Design System Services\"\n image={{\n padding: false,\n src: 'img/colored-square.png'\n }}\n order={{\n desktopImageLast: false,\n mobileImageLast: false\n }}\n sub=\"Subheadline\"\n text=\"Here at Systemics, we bring a range of design system services that can make a difference.\"\n textAlign=\"left\"\n width=\"wide\"\n/>",
1060
+ "code": "<Cta\n backgroundColor=\"#001856\"\n buttons={[\n {\n icon: 'person',\n label: 'What can we do for you?',\n target: '#'\n }\n ]}\n colorNeutral\n contentAlign=\"center\"\n fullWidth\n headline=\"Design System Services\"\n image={{\n padding: false,\n src: 'img/colored-square.png'\n }}\n order={{\n desktopImageLast: false,\n mobileImageLast: false\n }}\n sub=\"Subheadline\"\n text=\"Here at Systemics, we bring a range of design system services that can make a difference.\"\n textAlign=\"left\"\n width=\"wide\"\n/>",
1055
1061
  "args": {
1056
1062
  "headline": "Design System Services",
1057
1063
  "sub": "Subheadline",
1058
1064
  "highlightText": false,
1059
1065
  "colorNeutral": true,
1066
+ "fullWidth": true,
1060
1067
  "buttons": [
1061
1068
  {
1062
1069
  "label": "What can we do for you?",
@@ -1084,12 +1091,13 @@
1084
1091
  "id": "components-cta--angled-image",
1085
1092
  "group": "Components/Cta",
1086
1093
  "name": "AngledImage",
1087
- "code": "<Cta\n buttons={[\n {\n icon: 'person',\n label: 'Contact us',\n target: '#'\n },\n {\n icon: 'date',\n label: 'Book a meeting',\n target: '#'\n }\n ]}\n contentAlign=\"center\"\n headline=\"Our **Approach** to Design Systems\"\n image={{\n padding: false,\n src: 'img/angled-image.png'\n }}\n order={{\n desktopImageLast: true,\n mobileImageLast: false\n }}\n sub=\"Subheadline\"\n text=\"We value efficiency without compromising quality. Our secret weapon? kickstartDS, a revolutionary code-first and open source framework for creating design systems.\n\nThis tool accelerates our development, saving you valuable time and helping us deliver top-notch results faster.\"\n textAlign=\"left\"\n width=\"wide\"\n/>",
1094
+ "code": "<Cta\n buttons={[\n {\n icon: 'person',\n label: 'Contact us',\n target: '#'\n },\n {\n icon: 'date',\n label: 'Book a meeting',\n target: '#'\n }\n ]}\n contentAlign=\"center\"\n fullWidth\n headline=\"Our **Approach** to Design Systems\"\n image={{\n padding: false,\n src: 'img/angled-image.png'\n }}\n order={{\n desktopImageLast: true,\n mobileImageLast: false\n }}\n sub=\"Subheadline\"\n text=\"We value efficiency without compromising quality. Our secret weapon? kickstartDS, a revolutionary code-first and open source framework for creating design systems.\n\nThis tool accelerates our development, saving you valuable time and helping us deliver top-notch results faster.\"\n textAlign=\"left\"\n width=\"wide\"\n/>",
1088
1095
  "args": {
1089
1096
  "headline": "Our **Approach** to Design Systems",
1090
1097
  "sub": "Subheadline",
1091
1098
  "highlightText": false,
1092
1099
  "colorNeutral": false,
1100
+ "fullWidth": true,
1093
1101
  "buttons": [
1094
1102
  {
1095
1103
  "label": "Contact us",
@@ -1127,6 +1135,7 @@
1127
1135
  "sub": "Subheadline",
1128
1136
  "highlightText": true,
1129
1137
  "colorNeutral": true,
1138
+ "fullWidth": false,
1130
1139
  "buttons": [
1131
1140
  {
1132
1141
  "label": "Learn More",
@@ -1155,12 +1164,13 @@
1155
1164
  "id": "components-cta--align-bottom",
1156
1165
  "group": "Components/Cta",
1157
1166
  "name": "AlignBottom",
1158
- "code": "<Cta\n backgroundImage=\"img/grid-bg.svg\"\n buttons={[\n {\n icon: 'person',\n label: 'Contact us',\n target: '#'\n },\n {\n icon: 'date',\n label: 'Book a meeting',\n target: '#'\n }\n ]}\n contentAlign=\"bottom\"\n headline=\"Custom Solutions\"\n image={{\n padding: true,\n src: 'img/offset-image.png'\n }}\n order={{\n desktopImageLast: false,\n mobileImageLast: false\n }}\n sub=\"Subheadline\"\n text=\"At Systemics, we believe in the power of technology to transform businesses. Our team of experienced professionals is dedicated to providing innovative solutions that meet the unique needs of your business.\n\nWe understand that every business is different, and that's why we offer custom solutions tailored to your specific business needs and requirements.\"\n textAlign=\"left\"\n width=\"wide\"\n/>",
1167
+ "code": "<Cta\n backgroundImage=\"img/grid-bg.svg\"\n buttons={[\n {\n icon: 'person',\n label: 'Contact us',\n target: '#'\n },\n {\n icon: 'date',\n label: 'Book a meeting',\n target: '#'\n }\n ]}\n contentAlign=\"bottom\"\n fullWidth\n headline=\"Custom Solutions\"\n image={{\n padding: true,\n src: 'img/offset-image.png'\n }}\n order={{\n desktopImageLast: false,\n mobileImageLast: false\n }}\n sub=\"Subheadline\"\n text=\"At Systemics, we believe in the power of technology to transform businesses. Our team of experienced professionals is dedicated to providing innovative solutions that meet the unique needs of your business.\n\nWe understand that every business is different, and that's why we offer custom solutions tailored to your specific business needs and requirements.\"\n textAlign=\"left\"\n width=\"wide\"\n/>",
1159
1168
  "args": {
1160
1169
  "headline": "Custom Solutions",
1161
1170
  "sub": "Subheadline",
1162
1171
  "highlightText": false,
1163
1172
  "colorNeutral": false,
1173
+ "fullWidth": true,
1164
1174
  "buttons": [
1165
1175
  {
1166
1176
  "label": "Contact us",
@@ -268,6 +268,12 @@
268
268
  "default": false,
269
269
  "type": "boolean"
270
270
  },
271
+ "fullWidth": {
272
+ "title": "Width",
273
+ "description": "Set the width of the content to the full width of the element",
274
+ "type": "boolean",
275
+ "default": false
276
+ },
271
277
  "buttons": {
272
278
  "type": "array",
273
279
  "items": {
@@ -1518,6 +1524,12 @@
1518
1524
  "default": false,
1519
1525
  "type": "boolean"
1520
1526
  },
1527
+ "fullWidth": {
1528
+ "title": "Width",
1529
+ "description": "Set the width of the content to the full width of the element",
1530
+ "type": "boolean",
1531
+ "default": false
1532
+ },
1521
1533
  "buttons": {
1522
1534
  "type": "array",
1523
1535
  "items": {
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { HTMLAttributes } from "react";
3
- import { SliderProps } from "../../SliderProps-0931e9c1.js";
3
+ import { SliderProps } from "../../SliderProps-93230a76.js";
4
4
  declare const Slider: import("react").ForwardRefExoticComponent<SliderProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
5
5
  export type { SliderProps };
6
6
  export { Slider };
@@ -98,6 +98,12 @@
98
98
  "default": false,
99
99
  "type": "boolean"
100
100
  },
101
+ "fullWidth": {
102
+ "title": "Width",
103
+ "description": "Set the width of the content to the full width of the element",
104
+ "type": "boolean",
105
+ "default": false
106
+ },
101
107
  "buttons": {
102
108
  "type": "array",
103
109
  "items": {
@@ -1,7 +1,7 @@
1
1
  /// <reference types="react" />
2
2
  import { HTMLAttributes } from "react";
3
3
  import { TestimonialsProps } from "../../TestimonialsProps-f7211553.js";
4
- import { SliderProps } from "../../SliderProps-0931e9c1.js";
4
+ import { SliderProps } from "../../SliderProps-93230a76.js";
5
5
  interface ConditionalSliderProps extends SliderProps {
6
6
  layout: "slider" | "list" | "alternating";
7
7
  }
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 07 Jan 2025 08:42:18 GMT
3
+ * Generated on Tue, 07 Jan 2025 14:01:44 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 Tue, 07 Jan 2025 08:42:23 GMT
2730
+ * Generated on Tue, 07 Jan 2025 14:01:47 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 Tue, 07 Jan 2025 08:42:21 GMT
5461
+ * Generated on Tue, 07 Jan 2025 14:01:46 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 Tue, 07 Jan 2025 08:42:25 GMT
8462
+ * Generated on Tue, 07 Jan 2025 14:01:49 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 Tue, 07 Jan 2025 08:42:16 GMT
3
+ * Generated on Tue, 07 Jan 2025 14:01:42 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 Tue, 07 Jan 2025 08:42:16 GMT
3
+ * Generated on Tue, 07 Jan 2025 14:01:42 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.6.57--canary.1461.46964a6.0",
3
+ "version": "1.6.57",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kickstartDS/ds-agency-premium#readme",
6
6
  "bugs": {