@kickstartds/ds-agency-premium 1.6.71--canary.45.1809.0 → 1.6.71--canary.45.1813.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 (46) hide show
  1. package/dist/{BlogOverviewProps-9f207f1c.d.ts → BlogOverviewProps-d62a0a9a.d.ts} +2 -2
  2. package/dist/{BlogPostProps-6b3cff22.d.ts → BlogPostProps-c760fd2a.d.ts} +1 -1
  3. package/dist/{EventListTeaserProps-796e306c.d.ts → EventListTeaserProps-5cc94436.d.ts} +9 -4
  4. package/dist/PageProps-aa29c554.d.ts +1 -1
  5. package/dist/{SectionProps-7caa223c.d.ts → SectionProps-21d04028.d.ts} +1 -1
  6. package/dist/components/blog-overview/blog-overview.schema.dereffed.json +5 -4
  7. package/dist/components/blog-overview/index.d.ts +1 -1
  8. package/dist/components/blog-post/blog-post.schema.dereffed.json +5 -4
  9. package/dist/components/blog-post/index.d.ts +1 -1
  10. package/dist/components/blog-teaser/blog-teaser.css +2 -2
  11. package/dist/components/blog-teaser/index.d.ts +1 -1
  12. package/dist/components/contact/contact.css +2 -2
  13. package/dist/components/cta/cta.css +3 -3
  14. package/dist/components/event-list/event-list.schema.dereffed.json +11 -3
  15. package/dist/components/event-list/index.d.ts +1 -1
  16. package/dist/components/event-list/index.js +43 -1
  17. package/dist/components/event-list-teaser/event-list-teaser.css +9 -2
  18. package/dist/components/event-list-teaser/event-list-teaser.schema.dereffed.json +11 -3
  19. package/dist/components/event-list-teaser/event-list-teaser.schema.json +9 -3
  20. package/dist/components/event-list-teaser/index.d.ts +1 -1
  21. package/dist/components/event-list-teaser/index.js +2 -2
  22. package/dist/components/features/features.css +2 -2
  23. package/dist/components/hero/hero.css +2 -2
  24. package/dist/components/image-story/image-story.css +4 -4
  25. package/dist/components/image-text/image-text.css +4 -4
  26. package/dist/components/index/index.d.ts +2 -2
  27. package/dist/components/mosaic/mosaic.css +4 -4
  28. package/dist/components/page/page.schema.dereffed.json +5 -4
  29. package/dist/components/page-wrapper/tokens.css +1 -1
  30. package/dist/components/pagination/index.js +4 -4
  31. package/dist/components/presets.json +105 -182
  32. package/dist/components/section/index.d.ts +1 -1
  33. package/dist/components/section/index.js +2 -16
  34. package/dist/components/section/section.schema.dereffed.json +5 -4
  35. package/dist/components/section/section.schema.json +3 -2
  36. package/dist/components/split-weighted/index.js +3 -4
  37. package/dist/components/split-weighted/split-weighted.css +6 -0
  38. package/dist/components/teaser-card/teaser-card.css +1 -1
  39. package/dist/components/text/text.css +2 -2
  40. package/dist/components/video-curtain/video-curtain.css +2 -2
  41. package/dist/global.css +2 -2
  42. package/dist/tokens/themes.css +4 -4
  43. package/dist/tokens/tokens.css +1 -1
  44. package/dist/tokens/tokens.js +1 -1
  45. package/package.json +1 -1
  46. /package/dist/{BlogTeaserProps-f5855e93.d.ts → BlogTeaserProps-d62a0a9a.d.ts} +0 -0
@@ -3,8 +3,8 @@
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-7caa223c.js";
7
- import { BlogTeaserProps } from "./BlogTeaserProps-f5855e93.js";
6
+ import { SectionProps } from "./SectionProps-21d04028.js";
7
+ import { BlogTeaserProps } from "./BlogTeaserProps-d62a0a9a.js";
8
8
  import { CtaProps } from "./CtaProps-babe4ee6.js";
9
9
  import { SeoProps } from "./SeoProps-f2d6dcaa.js";
10
10
  /**
@@ -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-7caa223c.js";
8
+ import { SectionProps } from "./SectionProps-21d04028.js";
9
9
  import { CtaProps } from "./CtaProps-babe4ee6.js";
10
10
  import { SeoProps } from "./SeoProps-f2d6dcaa.js";
11
11
  /**
@@ -3,6 +3,10 @@
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
+ /**
7
+ * Category of the event teaser
8
+ */
9
+ type Category = string;
6
10
  /**
7
11
  * Title of the event
8
12
  */
@@ -28,9 +32,9 @@ type LocationName = string;
28
32
  */
29
33
  type Address = string;
30
34
  /**
31
- * Categories of the event
35
+ * Tags associated with the event
32
36
  */
33
- type Categories = string[];
37
+ type Tags = string[];
34
38
  /**
35
39
  * URL of the image to display
36
40
  */
@@ -55,12 +59,13 @@ type ARIALabel = string;
55
59
  * Display an event teaser with date, title and location
56
60
  */
57
61
  interface EventListTeaserProps {
62
+ category?: Category;
58
63
  title: Headline;
59
64
  text?: Text;
60
65
  date: Date;
61
66
  time?: Time;
62
67
  location: Location;
63
- categories?: Categories;
68
+ tags?: Tags;
64
69
  image?: Image;
65
70
  url?: URL;
66
71
  ctaText?: CallToAction;
@@ -81,4 +86,4 @@ interface Image {
81
86
  src?: ImageSource;
82
87
  alt?: AltText;
83
88
  }
84
- export { Headline, Text, Date, Time, LocationName, Address, Categories, ImageSource, AltText, URL, CallToAction, ARIALabel, EventListTeaserProps, Location, Image };
89
+ export { Category, Headline, Text, Date, Time, LocationName, Address, Tags, ImageSource, AltText, URL, CallToAction, ARIALabel, EventListTeaserProps, Location, Image };
@@ -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-7caa223c.js";
6
+ import { SectionProps } from "./SectionProps-21d04028.js";
7
7
  import { SeoProps } from "./SeoProps-f2d6dcaa.js";
8
8
  /**
9
9
  * Collection of sections (with their contents) to render on the page
@@ -28,7 +28,7 @@ type Width = "full" | "max" | "wide" | "default" | "narrow";
28
28
  /**
29
29
  * Style of background
30
30
  */
31
- type Style = "framed" | "deko" | "colorful";
31
+ type Style = "default" | "framed" | "deko";
32
32
  /**
33
33
  * Color of background
34
34
  */
@@ -37,10 +37,11 @@
37
37
  "title": "Style",
38
38
  "description": "Style of background",
39
39
  "enum": [
40
+ "default",
40
41
  "framed",
41
- "deko",
42
- "colorful"
43
- ]
42
+ "deko"
43
+ ],
44
+ "default": "default"
44
45
  },
45
46
  "backgroundColor": {
46
47
  "type": "string",
@@ -224,7 +225,7 @@
224
225
  "list",
225
226
  "slider"
226
227
  ],
227
- "default": "list"
228
+ "default": "default"
228
229
  },
229
230
  "tileWidth": {
230
231
  "type": "string",
@@ -1,4 +1,4 @@
1
- import { BlogOverviewProps } from "../../BlogOverviewProps-9f207f1c.js";
1
+ import { BlogOverviewProps } from "../../BlogOverviewProps-d62a0a9a.js";
2
2
  import { FC, PropsWithChildren } from "react";
3
3
  declare const BlogOverview: FC<PropsWithChildren<BlogOverviewProps>>;
4
4
  export type { BlogOverviewProps };
@@ -321,10 +321,11 @@
321
321
  "title": "Style",
322
322
  "description": "Style of background",
323
323
  "enum": [
324
+ "default",
324
325
  "framed",
325
- "deko",
326
- "colorful"
327
- ]
326
+ "deko"
327
+ ],
328
+ "default": "default"
328
329
  },
329
330
  "backgroundColor": {
330
331
  "type": "string",
@@ -508,7 +509,7 @@
508
509
  "list",
509
510
  "slider"
510
511
  ],
511
- "default": "list"
512
+ "default": "default"
512
513
  },
513
514
  "tileWidth": {
514
515
  "type": "string",
@@ -1,4 +1,4 @@
1
- import { BlogPostProps } from "../../BlogPostProps-6b3cff22.js";
1
+ import { BlogPostProps } from "../../BlogPostProps-c760fd2a.js";
2
2
  import { FC, PropsWithChildren } from "react";
3
3
  declare const BlogPost: FC<PropsWithChildren<BlogPostProps>>;
4
4
  export type { BlogPostProps };
@@ -11,7 +11,7 @@
11
11
  --dsa-blog-teaser__topic--font-weight: var(--dsa-topic--font-weight);
12
12
  --dsa-blog-teaser__tag-label--font: var(--ks-font-interface-xs);
13
13
  --dsa-blog-teaser__copy--font: var(--ks-font-copy-s);
14
- --dsa-blog-teaser__copy--color: var(--dsa-rich-text--color);
14
+ --dsa-blog-teaser__copy--color: var(--ks-text-color-copy);
15
15
  --dsa-blog-teaser__copy--color_hover: var(--ks-text-color-default);
16
16
  --dsa-blog-teaser__copy--margin-top: 0.5em;
17
17
  --dsa-blog-teaser__meta--font: var(--ks-spacing-stack-s);
@@ -43,7 +43,7 @@
43
43
  --c-teaser--background: var(--dsa-blog-teaser--background, transparent);
44
44
  --c-post-teaser--gap: var(--dsa-blog-teaser--gap, var(--ks-spacing-stack-s) var(--ks-spacing-inline-s));
45
45
  --c-teaser_text--spacing: var(--dsa-blog-teaser__copy--margin-top, var(--ks-spacing-stack-s));
46
- --c-post-teaser--color: var(--dsa-blog-teaser__copy--color, var(--dsa-rich-text--color));
46
+ --c-post-teaser--color: var(--dsa-blog-teaser__copy--color, var(--ks-text-color-copy));
47
47
  }
48
48
  .dsa-blog-teaser.c-post-teaser .c-tag-label {
49
49
  --c-tag-label--font: var(--dsa-blog-teaser__tag-label--font, var(--ks-font-interface-s));
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { HTMLAttributes } from "react";
3
- import { BlogTeaserProps } from "../../BlogTeaserProps-f5855e93.js";
3
+ import { BlogTeaserProps } from "../../BlogTeaserProps-d62a0a9a.js";
4
4
  declare const BlogTeaserContextDefault: import("react").ForwardRefExoticComponent<BlogTeaserProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
5
5
  declare const BlogTeaserContext: import("react").Context<import("react").ForwardRefExoticComponent<BlogTeaserProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>>;
6
6
  declare const BlogTeaser: import("react").ForwardRefExoticComponent<BlogTeaserProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
@@ -11,8 +11,8 @@
11
11
  --dsa-contact__image--border-radius: var(--ks-border-radius-card);
12
12
  --dsa-contact__body--gap: var(--ks-spacing-stack-xs);
13
13
  --dsa-contact__body--flex-basis: var(--dsa-tile--width_small);
14
- --dsa-contact__copy--font: var(--dsa-rich-text--font);
15
- --dsa-contact__copy--color: var(--dsa-rich-text--color);
14
+ --dsa-contact__copy--font: var(--ks-font-copy-m);
15
+ --dsa-contact__copy--color: var(--ks-text-color-copy);
16
16
  --dsa-contact__title--color: var(--ks-text-color-display);
17
17
  --dsa-contact__title--font: var(--ks-font-copy-l);
18
18
  --dsa-contact__title--font-weight: var(--ks-font-weight-bold);
@@ -4,7 +4,7 @@
4
4
  --dsa-cta__content--vertical-padding: var(--dsa-content--vertical-spacing);
5
5
  --dsa-cta__content--horizontal-padding: var(--dsa-content--horizontal-spacing);
6
6
  --dsa-cta__content--max-width: var(--dsa-content--width_narrow);
7
- --dsa-cta__copy--font: var(--dsa-rich-text--font);
7
+ --dsa-cta__copy--font: var(--ks-font-copy-m);
8
8
  --dsa-cta__copy--color: var(--ks-text-color-default);
9
9
  --dsa-cta__headline--color: var(--dsa-headline--color);
10
10
  --dsa-cta__headline--font: var(--dsa-headline_h2--font);
@@ -72,8 +72,8 @@
72
72
  font-weight: var(--dsa-headline__subheadline--font-weight, var(--ks-font-weight-medium));
73
73
  }
74
74
  .dsa-cta.c-storytelling .c-storytelling__box .c-rich-text {
75
- font: var(--dsa-cta__copy--font, var(--dsa-rich-text--font, var(--ks-font-copy-m)));
76
- color: var(--dsa-cta__copy--color, var(--dsa-rich-text--color, var(--ks-text-color-copy)));
75
+ font: var(--dsa-cta__copy--font, var(--ks-font-copy-m));
76
+ color: var(--dsa-cta__copy--color, var(--ks-text-color-copy));
77
77
  }
78
78
  .dsa-cta.c-storytelling > .c-storytelling__image {
79
79
  margin: 0;
@@ -131,6 +131,14 @@
131
131
  "description": "Display an event teaser with date, title and location",
132
132
  "type": "object",
133
133
  "properties": {
134
+ "category": {
135
+ "title": "Category",
136
+ "description": "Category of the event teaser",
137
+ "type": "string",
138
+ "examples": [
139
+ "Buyers"
140
+ ]
141
+ },
134
142
  "title": {
135
143
  "title": "Headline",
136
144
  "description": "Title of the event",
@@ -190,9 +198,9 @@
190
198
  },
191
199
  "additionalProperties": false
192
200
  },
193
- "categories": {
194
- "title": "Categories",
195
- "description": "Categories of the event",
201
+ "tags": {
202
+ "title": "Tags",
203
+ "description": "Tags associated with the event",
196
204
  "type": "array",
197
205
  "items": {
198
206
  "type": "string",
@@ -6,7 +6,7 @@ import { FC, PropsWithChildren } from "react";
6
6
  * and run json-schema-to-typescript to regenerate this file.
7
7
  */
8
8
  import { EventFilterProps } from "../../EventFilterProps-b190eb86.js";
9
- import { EventListTeaserProps } from "../../EventListTeaserProps-796e306c.js";
9
+ import { EventListTeaserProps } from "../../EventListTeaserProps-5cc94436.js";
10
10
  interface EventListProps {
11
11
  /**
12
12
  * Referenced component EventFilterProps
@@ -4,6 +4,7 @@ import { SplitWeighted } from '../split-weighted/index.js';
4
4
  import { EventFilter } from '../event-filter/index.js';
5
5
  import { EventListTeaser } from '../event-list-teaser/index.js';
6
6
  import { RichText } from '@kickstartds/base/lib/rich-text';
7
+ import { Pagination } from '../pagination/index.js';
7
8
  import 'react';
8
9
  import 'classnames';
9
10
  import '@kickstartds/core/lib/react';
@@ -19,13 +20,54 @@ import '@kickstartds/core/lib/container';
19
20
  import '@kickstartds/base/lib/picture';
20
21
  import 'markdown-to-jsx';
21
22
  import '@kickstartds/base/lib/tag-label';
23
+ import '@kickstartds/base/lib/link';
22
24
 
23
25
  const EventList = ({ filter, events, }) => (jsx(Fragment, { children: jsx(Section, { width: "wide", children: jsx(SplitWeighted, { verticalAlign: "sticky", mainLayout: {
24
26
  minWidth: "narrow",
27
+ }, asideLayout: {
28
+ gutter: "small",
25
29
  }, order: {
26
30
  desktop: "asideFirst",
27
31
  mobile: "asideFirst",
28
- }, aside: jsx(EventFilter, { ...filter }), main: jsxs(Fragment, { children: [jsx(RichText, { text: "425 Veranstaltungen" }), events.map((event, index) => (jsx(EventListTeaser, { ...event }, index)))] }) }) }) }));
32
+ }, aside: jsxs(Fragment, { children: [jsx(EventFilter, { ...filter }), jsx(RichText, { text: "425 Veranstaltungen" })] }), main: jsxs(Fragment, { children: [events.map((event, index) => (jsx(EventListTeaser, { ...event }, index))), jsx(Pagination, { pages: [
33
+ {
34
+ url: "https://example.com/page1",
35
+ },
36
+ {
37
+ url: "https://example.com/page2",
38
+ },
39
+ {
40
+ url: "https://example.com/page3",
41
+ },
42
+ {
43
+ url: "https://example.com/page4",
44
+ },
45
+ {
46
+ url: "https://example.com/page5",
47
+ },
48
+ {
49
+ url: "https://example.com/page6",
50
+ active: true,
51
+ },
52
+ {
53
+ url: "https://example.com/page7",
54
+ },
55
+ {
56
+ url: "https://example.com/page8",
57
+ },
58
+ {
59
+ url: "https://example.com/page9",
60
+ },
61
+ {
62
+ url: "https://example.com/page10",
63
+ },
64
+ {
65
+ url: "https://example.com/page11",
66
+ },
67
+ {
68
+ url: "https://example.com/page12",
69
+ },
70
+ ] })] }) }) }) }));
29
71
  EventList.displayName = "EventList";
30
72
 
31
73
  export { EventList };
@@ -22,7 +22,7 @@
22
22
  .dsa-event-list-teaser__header {
23
23
  display: flex;
24
24
  flex-direction: column;
25
- gap: var(--ks-spacing-stack-s) var(--ks-spacing-inline-s);
25
+ gap: var(--ks-spacing-stack-xs);
26
26
  }
27
27
  .dsa-event-list-teaser__content {
28
28
  display: flex;
@@ -52,7 +52,14 @@
52
52
  font-weight: var(--ks-font-weight-semi-bold);
53
53
  color: var(--ks-text-color-display);
54
54
  }
55
- .dsa-event-list-teaser__categories {
55
+ .dsa-event-list-teaser__category {
56
+ font: var(--ks-font-interface-xs);
57
+ font-weight: var(--ks-font-weight-semi-bold);
58
+ color: var(--ks-color-fg-alpha-4);
59
+ letter-spacing: 0.05em;
60
+ text-transform: uppercase;
61
+ }
62
+ .dsa-event-list-teaser__tags {
56
63
  display: flex;
57
64
  flex-wrap: wrap;
58
65
  gap: var(--ks-spacing-xxs) var(--ks-spacing-xxs);
@@ -5,6 +5,14 @@
5
5
  "description": "Display an event teaser with date, title and location",
6
6
  "type": "object",
7
7
  "properties": {
8
+ "category": {
9
+ "title": "Category",
10
+ "description": "Category of the event teaser",
11
+ "type": "string",
12
+ "examples": [
13
+ "Buyers"
14
+ ]
15
+ },
8
16
  "title": {
9
17
  "title": "Headline",
10
18
  "description": "Title of the event",
@@ -64,9 +72,9 @@
64
72
  },
65
73
  "additionalProperties": false
66
74
  },
67
- "categories": {
68
- "title": "Categories",
69
- "description": "Categories of the event",
75
+ "tags": {
76
+ "title": "Tags",
77
+ "description": "Tags associated with the event",
70
78
  "type": "array",
71
79
  "items": {
72
80
  "type": "string",
@@ -5,6 +5,12 @@
5
5
  "description": "Display an event teaser with date, title and location",
6
6
  "type": "object",
7
7
  "properties": {
8
+ "category": {
9
+ "title": "Category",
10
+ "description": "Category of the event teaser",
11
+ "type": "string",
12
+ "examples": ["Buyers"]
13
+ },
8
14
  "title": {
9
15
  "title": "Headline",
10
16
  "description": "Title of the event",
@@ -53,9 +59,9 @@
53
59
  }
54
60
  }
55
61
  },
56
- "categories": {
57
- "title": "Categories",
58
- "description": "Categories of the event",
62
+ "tags": {
63
+ "title": "Tags",
64
+ "description": "Tags associated with the event",
59
65
  "type": "array",
60
66
  "items": {
61
67
  "type": "string",
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { HTMLAttributes } from "react";
3
- import { EventListTeaserProps } from "../../EventListTeaserProps-796e306c.js";
3
+ import { EventListTeaserProps } from "../../EventListTeaserProps-5cc94436.js";
4
4
  declare const EventListTeaserContextDefault: import("react").ForwardRefExoticComponent<EventListTeaserProps & HTMLAttributes<HTMLAnchorElement> & import("react").RefAttributes<HTMLAnchorElement>>;
5
5
  declare const EventListTeaserContext: import("react").Context<import("react").ForwardRefExoticComponent<EventListTeaserProps & HTMLAttributes<HTMLAnchorElement> & import("react").RefAttributes<HTMLAnchorElement>>>;
6
6
  declare const EventListTeaser: import("react").ForwardRefExoticComponent<EventListTeaserProps & HTMLAttributes<HTMLAnchorElement> & import("react").RefAttributes<HTMLAnchorElement>>;
@@ -8,8 +8,8 @@ import { Picture } from '@kickstartds/base/lib/picture';
8
8
  import Markdown from 'markdown-to-jsx';
9
9
  import { TagLabel } from '@kickstartds/base/lib/tag-label';
10
10
 
11
- const EventListTeaserContextDefault = forwardRef(({ title, text, date, time, categories, location, image, ctaText, url, ariaLabel, className, ...rest }, ref) => {
12
- return (jsx(Container, { name: "event-list-teaser", children: jsxs("a", { className: classnames(className, "dsa-event-list-teaser"), ...rest, href: url, ref: ref, "aria-label": ariaLabel, children: [jsxs("div", { className: "dsa-event-list-teaser__content", children: [jsx("div", { className: "dsa-event-list-teaser__header", children: jsx("span", { className: "dsa-event-list-teaser__title", children: title }) }), categories && categories.length > 0 && (jsx("div", { className: "dsa-event-list-teaser__categories", children: categories.map((category) => (jsx(TagLabel, { label: category, size: "s" }, category))) })), jsx("div", { className: "dsa-event-list-teaser__infos", children: jsxs("div", { className: "dsa-event-list-teaser__details", children: [jsxs("div", { className: "dsa-event-list-teaser__date", children: [jsxs("span", { className: "dsa-event-list-teaser__info", children: [jsx(Icon, { "aria-hidden": true, icon: "date" }), date] }), jsxs("span", { className: "dsa-event-list-teaser__info", children: [jsx(Icon, { "aria-hidden": true, icon: "time" }), time] })] }), jsxs("div", { className: "dsa-event-list-teaser__location dsa-event-list-teaser__info", children: [jsx(Icon, { "aria-hidden": true, icon: "map-pin" }), jsxs("address", { children: [location?.name && (jsx("span", { className: "dsa-event-list-teaser__location-name", children: location.name })), jsx(Markdown, { className: "dsa-event-list-teaser__location-address", children: location?.address })] })] })] }) }), text && (jsx("p", { className: "dsa-event-list-teaser__teaser-text", children: text })), jsxs("div", { className: "dsa-event-list-teaser__cta", children: [jsx("span", { children: ctaText }), jsx(Icon, { "aria-hidden": true, icon: "chevron-right" })] })] }), image && image.src && (jsx("div", { className: "dsa-event-list-teaser__image", children: jsx(Picture, { src: image?.src, alt: image?.alt }) }))] }) }));
11
+ const EventListTeaserContextDefault = forwardRef(({ category, title, text, date, time, tags, location, image, ctaText, url, ariaLabel, className, ...rest }, ref) => {
12
+ return (jsx(Container, { name: "event-list-teaser", children: jsxs("a", { className: classnames(className, "dsa-event-list-teaser"), ...rest, href: url, ref: ref, "aria-label": ariaLabel, children: [jsxs("div", { className: "dsa-event-list-teaser__content", children: [jsxs("div", { className: "dsa-event-list-teaser__header", children: [category && (jsx("span", { className: "dsa-event-list-teaser__category", children: category })), jsx("span", { className: "dsa-event-list-teaser__title", children: title })] }), tags && tags.length > 0 && (jsx("div", { className: "dsa-event-list-teaser__tags", children: tags.map((category) => (jsx(TagLabel, { label: category, size: "s" }, category))) })), jsx("div", { className: "dsa-event-list-teaser__infos", children: jsxs("div", { className: "dsa-event-list-teaser__details", children: [jsxs("div", { className: "dsa-event-list-teaser__date", children: [jsxs("span", { className: "dsa-event-list-teaser__info", children: [jsx(Icon, { "aria-hidden": true, icon: "date" }), date] }), jsxs("span", { className: "dsa-event-list-teaser__info", children: [jsx(Icon, { "aria-hidden": true, icon: "time" }), time] })] }), jsxs("div", { className: "dsa-event-list-teaser__location dsa-event-list-teaser__info", children: [jsx(Icon, { "aria-hidden": true, icon: "map-pin" }), jsxs("address", { children: [location?.name && (jsx("span", { className: "dsa-event-list-teaser__location-name", children: location.name })), jsx(Markdown, { className: "dsa-event-list-teaser__location-address", children: location?.address })] })] })] }) }), text && (jsx("p", { className: "dsa-event-list-teaser__teaser-text", children: text })), jsxs("div", { className: "dsa-event-list-teaser__cta", children: [jsx("span", { children: ctaText }), jsx(Icon, { "aria-hidden": true, icon: "chevron-right" })] })] }), image && image.src && (jsx("div", { className: "dsa-event-list-teaser__image", children: jsx(Picture, { src: image?.src, alt: image?.alt }) }))] }) }));
13
13
  });
14
14
  const EventListTeaserContext = createContext(EventListTeaserContextDefault);
15
15
  const EventListTeaser = forwardRef((props, ref) => {
@@ -4,7 +4,7 @@
4
4
  --dsa-feature__title--color: var(--dsa-topic--color);
5
5
  --dsa-feature__title--font: var(--ks-font-interface-m);
6
6
  --dsa-feature__title--font-family: var(--dsa-topic--font-family);
7
- --dsa-feature__copy--color: var(--dsa-rich-text--color);
7
+ --dsa-feature__copy--color: var(--ks-text-color-copy);
8
8
  --dsa-feature__copy--font: var(--ks-font-copy-s);
9
9
  --dsa-feature__link--font: var(--ks-font-copy-s);
10
10
  --dsa-feature__link--font-weight: var(--dsa-link--font-weight);
@@ -111,7 +111,7 @@
111
111
  font-weight: var(--dsa-feature__title--font-weight, var(--ks-font-weight-semi-bold));
112
112
  }
113
113
  .dsa-features .dsa-feature__text {
114
- color: var(--dsa-feature__copy--color, var(--dsa-rich-text-color), var(--ks-text-color-default));
114
+ color: var(--dsa-feature__copy--color, var(--ks-text-color-copy));
115
115
  font: var(--dsa-feature__copy--font, var(--ks-font-copy-s));
116
116
  margin: 0;
117
117
  }
@@ -11,7 +11,7 @@
11
11
  --dsa-hero_color-neutral__headline--color: var(--ks-text-color-default);
12
12
  --dsa-hero_color-neutral__subheadline--color: var(--ks-text-color-default);
13
13
  --dsa-hero__copy--color: var(--ks-text-color-default);
14
- --dsa-hero__copy--font: var(--dsa-rich-text--font);
14
+ --dsa-hero__copy--font: var(--ks-font-copy-m);
15
15
  --dsa-hero_highlight-text__copy--font: var(--ks-font-copy-l);
16
16
  --dsa-hero_color-neutral__copy--color: var(--ks-text-color-default);
17
17
  --dsa-hero__textbox--background-color: var(--dsa-overlay-box_transparent--background-color);
@@ -77,7 +77,7 @@
77
77
  --c-visual_box--color: var(--dsa-hero__copy--color, var(--ks-text-color-default));
78
78
  --c-visual_box--border-radius: var(--dsa-hero__textbox--border-radius, var(--ks-border-radius-card));
79
79
  --c-visual_box--padding: var(--dsa-hero__textbox--padding, var(--ks-spacing-inset-squish-xl));
80
- --c-visual_text--font: var(--dsa-hero__copy--font, var(--dsa-rich-text--font));
80
+ --c-visual_text--font: var(--dsa-hero__copy--font, var(--ks-font-copy-m));
81
81
  }
82
82
  .c-visual.dsa-hero--highlight-text.c-visual {
83
83
  --dsa-hero__copy--font: var(--dsa-hero_highlight-text__copy--font, var(--ks-font-copy-l));
@@ -2,8 +2,8 @@
2
2
  --dsa-image-story--gap: var(--ks-spacing-m);
3
3
  --dsa-image-story--horizontal-padding: var(--dsa-content--horizontal-spacing);
4
4
  --dsa-image-story--vertical-padding: var(--ks-spacing-xl);
5
- --dsa-image-story__copy--font: var(--dsa-rich-text--font);
6
- --dsa-image-story__copy--color: var(--dsa-rich-text--color);
5
+ --dsa-image-story__copy--font: var(--ks-font-copy-m);
6
+ --dsa-image-story__copy--color: var(--ks-text-color-copy);
7
7
  }
8
8
 
9
9
  .c-storytelling.dsa-image-story {
@@ -30,8 +30,8 @@
30
30
  aspect-ratio: 1/1;
31
31
  }
32
32
  .c-storytelling.dsa-image-story .c-rich-text {
33
- font: var(--dsa-image-story__copy--font, var(--dsa-rich-text--font));
34
- color: var(--dsa-image-story__copy--color, var(--dsa-rich-text--color));
33
+ font: var(--dsa-image-story__copy--font, var(--ks-font-copy-m));
34
+ color: var(--dsa-image-story__copy--color, var(--ks-text-color-copy));
35
35
  }
36
36
  .c-storytelling.dsa-image-story .c-storytelling__box,
37
37
  .c-storytelling.dsa-image-story .c-storytelling__image {
@@ -1,13 +1,13 @@
1
1
  .dsa-image-text {
2
- --dsa-image-text--font: var(--dsa-rich-text--font);
3
- --dsa-image-text--color: var(--dsa-rich-text--color);
2
+ --dsa-image-text--font: var(--ks-font-copy-m);
3
+ --dsa-image-text--color: var(--ks-text-color-copy);
4
4
  --dsa-image-text_highlight--font: var(--ks-font-copy-l);
5
5
  --dsa-image-text_highlight--color: var(--ks-text-color-default);
6
6
  }
7
7
 
8
8
  .dsa-image-text .c-rich-text {
9
- --c-rich-text--font: var(--dsa-image-text--font, var(--dsa-rich-text--font), var(--ks-font-copy-m));
10
- --c-rich-text--color: var(--dsa-image-text--color, var(--dsa-rich-text--color), var(--ks-text-color-default));
9
+ --c-rich-text--font: var(--dsa-image-text--font, var(--ks-font-copy-m));
10
+ --c-rich-text--color: var(--dsa-image-text--color, var(--ks-text-color-default));
11
11
  }
12
12
  .dsa-image-text--highlight.dsa-image-text .c-rich-text {
13
13
  --c-rich-text--font: var(--dsa-image-text_highlight--font, var(--ks-font-copy-l));
@@ -29,8 +29,8 @@ interface SettingsProps {
29
29
  seo: SeoProps;
30
30
  iconSprite?: IconSprite;
31
31
  }
32
- export * from "../../BlogPostProps-6b3cff22.js";
33
- export * from "../../BlogOverviewProps-9f207f1c.js";
32
+ export * from "../../BlogPostProps-c760fd2a.js";
33
+ export * from "../../BlogOverviewProps-d62a0a9a.js";
34
34
  export * from "../../PageProps-aa29c554.js";
35
35
  export { IconSprite, SettingsProps };
36
36
  export * from "../../EventDetailProps-42a7eebe.js";
@@ -1,8 +1,8 @@
1
1
  .dsa-mosaic {
2
2
  --dsa-mosaic--vertical-padding: var(--l-section--space-default);
3
3
  --dsa-mosaic--horizontal-padding: var(--dsa-content--horizontal-spacing);
4
- --dsa-mosaic__copy--font: var(--dsa-rich-text--font);
5
- --dsa-mosaic__copy--color: var(--ks-text-color-default);
4
+ --dsa-mosaic__copy--font: var(--ks-font-copy-m);
5
+ --dsa-mosaic__copy--color: var(--ks-text-color-copy);
6
6
  --dsa-mosaic__headline--color: var(--dsa-headline--color);
7
7
  --dsa-mosaic__headline--font: var(--dsa-headline_h2--font);
8
8
  --dsa-mosaic__subheadline--color: var(--dsa-headline__subheadline--color);
@@ -20,8 +20,8 @@
20
20
  font-weight: var(--dsa-headline__subheadline--font-weight, var(--ks-font-weight-medium));
21
21
  }
22
22
  .dsa-mosaic .c-rich-text {
23
- font: var(--dsa-mosaic__copy--font, var(--dsa-rich-text--font, var(--ks-font-copy-m)));
24
- color: var(--dsa-mosaic__copy--color, var(--dsa-rich-text--color, var(--ks-text-color-copy)));
23
+ font: var(--dsa-mosaic__copy--font, var(--ks-font-copy-m));
24
+ color: var(--dsa-mosaic__copy--color, var(--ks-text-color-copy));
25
25
  }
26
26
  .dsa-mosaic .c-storytelling__box__content {
27
27
  max-width: var(--dsa-content--width_narrow);
@@ -37,10 +37,11 @@
37
37
  "title": "Style",
38
38
  "description": "Style of background",
39
39
  "enum": [
40
+ "default",
40
41
  "framed",
41
- "deko",
42
- "colorful"
43
- ]
42
+ "deko"
43
+ ],
44
+ "default": "default"
44
45
  },
45
46
  "backgroundColor": {
46
47
  "type": "string",
@@ -224,7 +225,7 @@
224
225
  "list",
225
226
  "slider"
226
227
  ],
227
- "default": "list"
228
+ "default": "default"
228
229
  },
229
230
  "tileWidth": {
230
231
  "type": "string",
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 08 Jul 2025 07:49:14 GMT
3
+ * Generated on Tue, 08 Jul 2025 10:25:05 GMT
4
4
  */
5
5
  :root, [ks-theme] {
6
6
  --ks-background-color-accent-base: var(--ks-color-fg-to-bg-9-base);
@@ -6,7 +6,7 @@ import { Icon } from '@kickstartds/base/lib/icon';
6
6
  import { Link } from '@kickstartds/base/lib/link';
7
7
 
8
8
  const PaginationContextDefault = forwardRef(({ pages, ariaLabels }, ref) => {
9
- return (jsxs("div", { className: "dsa-pagination", ref: ref, children: [pages.findIndex((page) => page.active) !== 0 && (jsxs(Fragment, { children: [jsx(Link, { "aria-label": ariaLabels.skipToFirstPage || "Skip to first page", className: "dsa-pagination__link dsa-pagination__link--icon dsa-pagination__link--skip-back", href: pages[0]?.url, children: jsx(Icon, { icon: "skip-back" }) }), jsx(Link, { "aria-label": ariaLabels.previousPage || "Go to previous page", className: "dsa-pagination__link dsa-pagination__link--icon dsa-pagination__link--prev", href: (() => {
9
+ return (jsxs("div", { className: "dsa-pagination", ref: ref, children: [pages.findIndex((page) => page.active) !== 0 && (jsxs(Fragment, { children: [jsx(Link, { "aria-label": ariaLabels?.skipToFirstPage || "Skip to first page", className: "dsa-pagination__link dsa-pagination__link--icon dsa-pagination__link--skip-back", href: pages[0]?.url, children: jsx(Icon, { icon: "skip-back" }) }), jsx(Link, { "aria-label": ariaLabels?.previousPage || "Go to previous page", className: "dsa-pagination__link dsa-pagination__link--icon dsa-pagination__link--prev", href: (() => {
10
10
  const activeIndex = pages.findIndex((page) => page.active);
11
11
  // Use the url of the next item after the active one, or "#" if at the end
12
12
  return pages[activeIndex - 1]?.url || "#";
@@ -31,16 +31,16 @@ const PaginationContextDefault = forwardRef(({ pages, ariaLabels }, ref) => {
31
31
  }
32
32
  return;
33
33
  }
34
- result.push(jsx(Link, { className: classnames("dsa-pagination__link", page.active && "dsa-pagination__link--active"), "aria-label": `${ariaLabels.goToPage} ${index + 1}` ||
34
+ result.push(jsx(Link, { className: classnames("dsa-pagination__link", page.active && "dsa-pagination__link--active"), "aria-label": `${ariaLabels?.goToPage} ${index + 1}` ||
35
35
  `Go to page ${index + 1}`, href: page.url, children: (index + 1).toString() }, index));
36
36
  lastRenderedIndex = index;
37
37
  });
38
38
  return result;
39
- })(), pages.findIndex((page) => page.active) !== pages.length - 1 && (jsxs(Fragment, { children: [jsx(Link, { className: "dsa-pagination__link dsa-pagination__link--icon dsa-pagination__link--next", "aria-label": ariaLabels.nextPage || "Go to next page", href: (() => {
39
+ })(), pages.findIndex((page) => page.active) !== pages.length - 1 && (jsxs(Fragment, { children: [jsx(Link, { className: "dsa-pagination__link dsa-pagination__link--icon dsa-pagination__link--next", "aria-label": ariaLabels?.nextPage || "Go to next page", href: (() => {
40
40
  const activeIndex = pages.findIndex((page) => page.active);
41
41
  // Use the url of the next item after the active one, or "#" if at the end
42
42
  return pages[activeIndex + 1]?.url || "#";
43
- })(), children: jsx(Icon, { icon: "chevron-right" }) }), jsx(Link, { "aria-label": ariaLabels.skipToLastPage || "Skip to last page", className: "dsa-pagination__link dsa-pagination__link--icon dsa-pagination__link--skip-forward", href: pages[pages.length - 1]?.url, children: jsx(Icon, { icon: "skip-forward" }) })] }))] }));
43
+ })(), children: jsx(Icon, { icon: "chevron-right" }) }), jsx(Link, { "aria-label": ariaLabels?.skipToLastPage || "Skip to last page", className: "dsa-pagination__link dsa-pagination__link--icon dsa-pagination__link--skip-forward", href: pages[pages.length - 1]?.url, children: jsx(Icon, { icon: "skip-forward" }) })] }))] }));
44
44
  });
45
45
  const PaginationContext = createContext(PaginationContextDefault);
46
46
  const Pagination = forwardRef((props, ref) => {