@kickstartds/ds-agency-premium 1.6.59 → 1.6.61--canary.40.1501.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.
Files changed (38) hide show
  1. package/dist/{BlogOverviewProps-9f207f1c.d.ts → BlogOverviewProps-1cfcf6e8.d.ts} +1 -1
  2. package/dist/{BlogPostProps-6b3cff22.d.ts → BlogPostProps-1cfcf6e8.d.ts} +1 -1
  3. package/dist/{CtaProps-93230a76.d.ts → CtaProps-02e33bf1.d.ts} +8 -8
  4. package/dist/SectionProps-1cfcf6e8.d.ts +3 -3
  5. package/dist/{SliderProps-93230a76.d.ts → SliderProps-02e33bf1.d.ts} +1 -1
  6. package/dist/components/blog-overview/blog-overview.schema.dereffed.json +39 -24
  7. package/dist/components/blog-overview/index.d.ts +1 -1
  8. package/dist/components/blog-post/blog-post.schema.dereffed.json +39 -24
  9. package/dist/components/blog-post/index.d.ts +1 -1
  10. package/dist/components/cta/cta.css +35 -61
  11. package/dist/components/cta/cta.schema.dereffed.json +13 -8
  12. package/dist/components/cta/cta.schema.json +9 -8
  13. package/dist/components/cta/index.d.ts +1 -1
  14. package/dist/components/cta/index.js +4 -6
  15. package/dist/components/footer/footer.css +1 -1
  16. package/dist/components/header/header.css +1 -1
  17. package/dist/components/hero/hero.css +3 -2
  18. package/dist/components/image-story/image-story.css +5 -2
  19. package/dist/components/image-story/index.d.ts +1 -1
  20. package/dist/components/index/index.d.ts +3 -3
  21. package/dist/components/mosaic/mosaic.css +1 -1
  22. package/dist/components/page/index.d.ts +1 -1
  23. package/dist/components/page/page.schema.dereffed.json +26 -16
  24. package/dist/components/page-wrapper/tokens.css +2 -1
  25. package/dist/components/presets.json +45 -49
  26. package/dist/components/section/section.css +2 -2
  27. package/dist/components/section/section.schema.dereffed.json +26 -16
  28. package/dist/components/slider/index.d.ts +1 -1
  29. package/dist/components/slider/slider.schema.dereffed.json +13 -8
  30. package/dist/components/split/split.css +2 -2
  31. package/dist/components/testimonials/index.d.ts +1 -1
  32. package/dist/global.css +3 -2
  33. package/dist/tokens/themes.css +4 -4
  34. package/dist/tokens/tokens.css +2 -1
  35. package/dist/tokens/tokens.js +2 -1
  36. package/package.json +1 -1
  37. /package/dist/{ImageStoryProps-e853e1e7.d.ts → ImageStoryProps-03ff6d21.d.ts} +0 -0
  38. /package/dist/{PageProps-aa29c554.d.ts → PageProps-1cfcf6e8.d.ts} +0 -0
@@ -30,7 +30,7 @@
30
30
  flex-shrink: 1;
31
31
  }
32
32
  .l-split--sidebar-right > :first-child {
33
- flex-basis: calc(var(--split__main--flex-basis) - var(--dsa-content--spacing) * 2);
33
+ flex-basis: calc(var(--split__main--flex-basis) - var(--dsa-content--horizontal-spacing) * 2);
34
34
  }
35
35
  .l-split--sidebar-right > :last-child {
36
36
  flex-basis: var(--dsa-split__side--flex-basis, 210px);
@@ -41,7 +41,7 @@
41
41
  margin-top: var(--dsa-split__side-top-margin, var(--ks-spacing-stack-l));
42
42
  }
43
43
  .l-split--sidebar-left > :last-child {
44
- flex-basis: calc(var(--split__main--flex-basis) - var(--dsa-content--spacing) * 2);
44
+ flex-basis: calc(var(--split__main--flex-basis) - var(--dsa-content--horizontal-spacing) * 2);
45
45
  }
46
46
  .l-split--sidebar-left > :first-child {
47
47
  flex-basis: var(--dsa-split__side--flex-basis, 210px);
@@ -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-93230a76.js";
4
+ import { SliderProps } from "../../SliderProps-02e33bf1.js";
5
5
  interface ConditionalSliderProps extends SliderProps {
6
6
  layout: "slider" | "list" | "alternating";
7
7
  }
package/dist/global.css CHANGED
@@ -306,7 +306,8 @@ h3 {
306
306
  --dsa-link--text-decoration: underline;
307
307
  --dsa-link--text-decoration_hover: underline;
308
308
  --dsa-typo--highlight: linear-gradient(90deg, var(--ks-color-primary) 0%, var(--ks-color-secondary) 100%);
309
- --dsa-content--spacing: var(--ks-spacing-inset-l);
309
+ --dsa-content--horizontal-spacing: var(--ks-spacing-inset-l);
310
+ --dsa-content--vertical-spacing: var(--ks-spacing-xxl);
310
311
  --dsa-content--width_narrow: calc(var(--ks-font-size-copy-m) * 34);
311
312
  --dsa-content--width_default: calc(var(--ks-font-size-copy-m) * 50);
312
313
  --dsa-content--width_wide: calc(var(--ks-font-size-copy-m) * 64);
@@ -324,7 +325,7 @@ h3 {
324
325
  :root,
325
326
  [ks-inverted],
326
327
  [ks-theme] {
327
- --dsa-content--spacing: var(--ks-spacing-inset-xl);
328
+ --dsa-content--horizontal-spacing: var(--ks-spacing-inset-xl);
328
329
  }
329
330
  }
330
331
  @media (min-width: 48em) {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Fri, 10 Jan 2025 13:43:16 GMT
3
+ * Generated on Fri, 10 Jan 2025 14:09:42 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, 10 Jan 2025 13:43:20 GMT
2730
+ * Generated on Fri, 10 Jan 2025 14:09:46 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, 10 Jan 2025 13:43:18 GMT
5461
+ * Generated on Fri, 10 Jan 2025 14:09:44 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, 10 Jan 2025 13:43:23 GMT
8462
+ * Generated on Fri, 10 Jan 2025 14:09:48 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, 10 Jan 2025 13:43:13 GMT
3
+ * Generated on Fri, 10 Jan 2025 14:09:39 GMT
4
4
  */
5
5
 
6
6
  :root, [ks-theme] {
@@ -231,6 +231,7 @@
231
231
  --ks-border-radius-control: 16px;
232
232
  --ks-border-radius-card: 16px;
233
233
  --ks-border-radius-surface: 32px;
234
+ --ks-border-radius-image: 0px;
234
235
  --ks-border-radius-pill: 999px;
235
236
  --ks-border-radius-circle: 50%;
236
237
  --ks-box-shadow-opacity-control: 0.2;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Fri, 10 Jan 2025 13:43:14 GMT
3
+ * Generated on Fri, 10 Jan 2025 14:09:40 GMT
4
4
  */
5
5
 
6
6
  export const KsBackgroundColorAccentBase = "#230a2b";
@@ -230,6 +230,7 @@ export const KsBorderWidthEmphasized = "2px";
230
230
  export const KsBorderRadiusControl = "16px";
231
231
  export const KsBorderRadiusCard = "16px";
232
232
  export const KsBorderRadiusSurface = "32px";
233
+ export const KsBorderRadiusImage = "0px";
233
234
  export const KsBorderRadiusPill = "999px";
234
235
  export const KsBorderRadiusCircle = "50%";
235
236
  export const KsBoxShadowOpacityControl = "0.2";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kickstartds/ds-agency-premium",
3
- "version": "1.6.59",
3
+ "version": "1.6.61--canary.40.1501.0",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kickstartDS/ds-agency-premium#readme",
6
6
  "bugs": {