@kickstartds/ds-agency-premium 1.6.71--canary.45.2022.0 → 1.6.71--canary.45.2029.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.
@@ -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 { SectionProps } from "./SectionProps-b9fd1bfd.js";
6
+ import { SectionProps } from "./SectionProps-d60aba86.js";
7
7
  import { BlogTeaserProps } from "./BlogTeaserProps-f5855e93.js";
8
8
  import { CtaProps } from "./CtaProps-789f8508.js";
9
9
  import { SeoProps } from "./SeoProps-f2d6dcaa.js";
@@ -5,7 +5,7 @@
5
5
  */
6
6
  import { BlogHeadProps } from "./BlogHeadProps-c04a5ed8.js";
7
7
  import { BlogAsideProps } from "./BlogAsideProps-c760fd2a.js";
8
- import { SectionProps } from "./SectionProps-b9fd1bfd.js";
8
+ import { SectionProps } from "./SectionProps-d60aba86.js";
9
9
  import { CtaProps } from "./CtaProps-789f8508.js";
10
10
  import { SeoProps } from "./SeoProps-f2d6dcaa.js";
11
11
  /**
@@ -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 { SectionProps } from "./SectionProps-b9fd1bfd.js";
6
+ import { SectionProps } from "./SectionProps-d60aba86.js";
7
7
  import { SeoProps } from "./SeoProps-f2d6dcaa.js";
8
8
  /**
9
9
  * Collection of sections (with their contents) to render on the page
@@ -113,7 +113,7 @@ type Mode = "default" | "tile" | "list" | "slider";
113
113
  /**
114
114
  * Set min-width for the tiles in the grid
115
115
  */
116
- type TileWidth = "smallest" | "default" | "medium" | "large" | "largest";
116
+ type TileWidth = "smallest" | "default" | "medium" | "large" | "largest" | "full";
117
117
  /**
118
118
  * Allowed components for content
119
119
  */
@@ -236,7 +236,8 @@
236
236
  "default",
237
237
  "medium",
238
238
  "large",
239
- "largest"
239
+ "largest",
240
+ "full"
240
241
  ],
241
242
  "default": "default"
242
243
  }
@@ -508,7 +508,8 @@
508
508
  "default",
509
509
  "medium",
510
510
  "large",
511
- "largest"
511
+ "largest",
512
+ "full"
512
513
  ],
513
514
  "default": "default"
514
515
  }
@@ -19,7 +19,7 @@
19
19
  --dsa-contact__subtitle--color: var(--ks-text-color-display);
20
20
  --dsa-contact__subtitle--font: var(--ks-font-copy-m);
21
21
  --dsa-contact__subtitle--font-weight: var(--ks-font-weight-regular);
22
- --dsa-contact__links--gap: 0;
22
+ --dsa-contact__links--gap: calc(var(--ks-spacing-xxs) * 0.5);
23
23
  --dsa-contact__link--color: var(--dsa-link--color);
24
24
  --dsa-contact__link--color_hover: var(--dsa-link--color_hover);
25
25
  --dsa-contact__link--font: var(--ks-font-interface-m);
@@ -32,6 +32,16 @@
32
32
  var(--ks-color-primary-alpha-5) 0%,
33
33
  var(--ks-color-bg-alpha-4) 100%
34
34
  );
35
+ --dsa-hero--left__overlay--background: linear-gradient(
36
+ 90deg,
37
+ var(--ks-color-bg-alpha-1) var(--dsa-hero__textbox--max-width),
38
+ transparent
39
+ );
40
+ --dsa-hero--right__overlay--background: linear-gradient(
41
+ 270deg,
42
+ var(--ks-color-bg-alpha-1) var(--dsa-hero__textbox--max-width),
43
+ transparent
44
+ );
35
45
  --dsa-hero_offset__textbox--max-width: var(--dsa-content--width_default);
36
46
  --dsa-hero_offset__textbox--offset: -10%;
37
47
  --dsa-hero_offset__overlay--background: linear-gradient(
@@ -113,6 +123,18 @@
113
123
  linear-gradient(0deg, var(--ks-background-color-default) 15%, transparent 50%)
114
124
  );
115
125
  }
126
+ .c-visual.dsa-hero.dsa-hero--content-left {
127
+ --c-visual_overlay--background: var(
128
+ --dsa-hero--left__overlay--background,
129
+ linear-gradient(90deg, var(--ks-color-bg-alpha-1) var(--dsa-hero__textbox--max-width), transparent)
130
+ );
131
+ }
132
+ .c-visual.dsa-hero.dsa-hero--content-right {
133
+ --c-visual_overlay--background: var(
134
+ --dsa-hero--right__overlay--background,
135
+ linear-gradient(270deg, var(--ks-color-bg-alpha-1) var(--dsa-hero__textbox--max-width), transparent)
136
+ );
137
+ }
116
138
  .c-visual.dsa-hero .c-visual__box {
117
139
  --c-visual_box--max-width: var(--dsa-hero__textbox--max-width, var(--dsa-content--width_narrow));
118
140
  }
@@ -30,8 +30,7 @@ const HeroContextDefault = forwardRef(({ headline, sub, height, text, highlightT
30
30
  // @ts-expect-error
31
31
  , {
32
32
  // @ts-expect-error
33
- value: ButtonGroup, children: jsx(Container, { name: "hero", children: jsx(Container, { name: "visual", children: jsx(VisualContextDefault, { ...rest, ref: ref, className: classnames(`dsa-hero dsa-hero--content-${textPosition}`, highlightText && `dsa-hero--highlight-text`, colorNeutral && `dsa-hero--color-neutral`, overlay && `dsa-hero--overlay`, className), height: height, overlay: overlay, skipButton: skipButton, box: {
34
- inverted: invertText,
33
+ value: ButtonGroup, children: jsx(Container, { name: "hero", children: jsx(Container, { name: "visual", children: jsx(VisualContextDefault, { ...rest, ref: ref, className: classnames(`dsa-hero dsa-hero--content-${textPosition}`, highlightText && `dsa-hero--highlight-text`, colorNeutral && `dsa-hero--color-neutral`, overlay && `dsa-hero--overlay`, className), "ks-inverted": invertText ? "true" : undefined, height: height, overlay: overlay, skipButton: skipButton, box: {
35
34
  background: textPosition === "below"
36
35
  ? "transparent"
37
36
  : textbox === true
@@ -236,7 +236,8 @@
236
236
  "default",
237
237
  "medium",
238
238
  "large",
239
- "largest"
239
+ "largest",
240
+ "full"
240
241
  ],
241
242
  "default": "default"
242
243
  }
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 06 Aug 2025 15:12:08 GMT
3
+ * Generated on Thu, 07 Aug 2025 12:13:44 GMT
4
4
  */
5
5
  :root, [ks-theme] {
6
6
  --ks-background-color-accent-base: var(--ks-color-fg-to-bg-9-base);
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { HTMLAttributes, FC, PropsWithChildren } from "react";
3
- import { SectionProps } from "../../SectionProps-b9fd1bfd.js";
3
+ import { SectionProps } from "../../SectionProps-d60aba86.js";
4
4
  declare const SectionContextDefault: import("react").ForwardRefExoticComponent<SectionProps & Omit<HTMLAttributes<HTMLElement>, "style" | "content"> & import("react").RefAttributes<HTMLDivElement>>;
5
5
  declare const SectionContext: import("react").Context<import("react").ForwardRefExoticComponent<SectionProps & Omit<HTMLAttributes<HTMLElement>, "style" | "content"> & import("react").RefAttributes<HTMLDivElement>>>;
6
6
  declare const Section: import("react").ForwardRefExoticComponent<SectionProps & Omit<HTMLAttributes<HTMLElement>, "style" | "content"> & import("react").RefAttributes<HTMLDivElement>>;
@@ -50,7 +50,9 @@ const SectionContextDefault = forwardRef(({ headline, content, headerSpacing, wi
50
50
  ? "accent"
51
51
  : backgroundColor === "bold"
52
52
  ? "bold"
53
- : undefined, backgroundImage: backgroundImage, content: content, headline: {
53
+ : undefined, backgroundImage: backgroundImage,
54
+ // @ts-expect-error
55
+ content: content, headline: {
54
56
  ...headlineRest,
55
57
  spaceAfter: "large",
56
58
  // @ts-expect-error
@@ -170,6 +170,9 @@
170
170
  --l-section_tile-width--largest: var(--dsa-section__col--min-width_largest, var(--dsa-tile--width_largest));
171
171
  --l-section_buttons--space-before: var(--dsa-section__buttons--space-before, var(--l-section--gutter));
172
172
  }
173
+ .l-section.dsa-section .l-section__content--tiles-full {
174
+ --l-section_col--min-width: 100%;
175
+ }
173
176
  .l-section.dsa-section .l-section__content--slider {
174
177
  padding: var(--ks-spacing-s) 0;
175
178
  }
@@ -222,7 +222,8 @@
222
222
  "default",
223
223
  "medium",
224
224
  "large",
225
- "largest"
225
+ "largest",
226
+ "full"
226
227
  ],
227
228
  "default": "default"
228
229
  }
@@ -155,7 +155,7 @@
155
155
  "type": "string",
156
156
  "title": "Tile Width",
157
157
  "description": "Set min-width for the tiles in the grid",
158
- "enum": ["smallest", "default", "medium", "large", "largest"],
158
+ "enum": ["smallest", "default", "medium", "large", "largest", "full"],
159
159
  "default": "default"
160
160
  }
161
161
  },
package/dist/global.css CHANGED
@@ -325,7 +325,7 @@ h3 {
325
325
  --dsa-tile--width_small: calc(var(--ks-font-size-copy-m) * 14);
326
326
  --dsa-tile--width_medium: calc(var(--ks-font-size-copy-m) * 20);
327
327
  --dsa-tile--width_large: calc(var(--ks-font-size-copy-m) * 28);
328
- --dsa-tile--width_largest: calc(var(--ks-font-size-copy-m) * 38);
328
+ --dsa-tile--width_largest: calc(var(--ks-font-size-copy-m) * 42);
329
329
  --dsa-logo--height: 2rem;
330
330
  --dsa-header--height: calc(var(--dsa-logo--height) + var(--ks-spacing-stack-m) + var(--ks-spacing-stack-m));
331
331
  }
@@ -351,7 +351,7 @@ h3 {
351
351
  [ks-inverted=true] {
352
352
  --spacing-base: 18px;
353
353
  --spacing-shrink-factor: 0.65;
354
- --spacing-grow-factor: 1.3;
354
+ --spacing-grow-factor: 1.325;
355
355
  --spacing-bp-factor: 1.0135;
356
356
  --spacing-xxs-bp-factor: calc(1 * var(--spacing-bp-factor));
357
357
  --spacing-xs-bp-factor: calc(var(--spacing-xxs-bp-factor) * var(--spacing-bp-factor));
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 06 Aug 2025 15:12:10 GMT
3
+ * Generated on Thu, 07 Aug 2025 12:13:47 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 Wed, 06 Aug 2025 15:12:14 GMT
2730
+ * Generated on Thu, 07 Aug 2025 12:13:52 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 Wed, 06 Aug 2025 15:12:12 GMT
5461
+ * Generated on Thu, 07 Aug 2025 12:13:49 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 Wed, 06 Aug 2025 15:12:16 GMT
8462
+ * Generated on Thu, 07 Aug 2025 12:13:54 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 Wed, 06 Aug 2025 15:12:08 GMT
3
+ * Generated on Thu, 07 Aug 2025 12:13:44 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 Wed, 06 Aug 2025 15:12:09 GMT
3
+ * Generated on Thu, 07 Aug 2025 12:13:45 GMT
4
4
  */
5
5
 
6
6
  export const KsBackgroundColorAccentBase = "#f3f3f4";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kickstartds/ds-agency-premium",
3
- "version": "1.6.71--canary.45.2022.0",
3
+ "version": "1.6.71--canary.45.2029.0",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kickstartDS/ds-agency-premium#readme",
6
6
  "bugs": {