@kickstartds/ds-agency-premium 1.6.71--canary.45.1783.0 → 1.6.71--canary.45.1789.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 (34) hide show
  1. package/dist/BlogOverviewProps-9f207f1c.d.ts +1 -1
  2. package/dist/{EventListTeaserProps-cf4c7b20.d.ts → EventListTeaserProps-f5c6a5a9.d.ts} +21 -5
  3. package/dist/components/blog-post/index.d.ts +1 -1
  4. package/dist/components/blog-teaser/index.d.ts +1 -1
  5. package/dist/components/event-appointment/event-appointment.css +2 -3
  6. package/dist/components/event-appointment/event-appointment.schema.dereffed.json +1 -1
  7. package/dist/components/event-appointment/event-appointment.schema.json +1 -1
  8. package/dist/components/event-detail/event-detail.schema.dereffed.json +1 -1
  9. package/dist/components/event-filter/event-filter.css +6 -2
  10. package/dist/components/event-filter/index.js +4 -4
  11. package/dist/components/event-list/event-list.schema.dereffed.json +40 -12
  12. package/dist/components/event-list/index.d.ts +1 -1
  13. package/dist/components/event-list/index.js +5 -1
  14. package/dist/components/event-list-teaser/event-list-teaser.css +65 -18
  15. package/dist/components/event-list-teaser/event-list-teaser.schema.dereffed.json +40 -12
  16. package/dist/components/event-list-teaser/event-list-teaser.schema.json +32 -9
  17. package/dist/components/event-list-teaser/index.d.ts +1 -1
  18. package/dist/components/event-list-teaser/index.js +4 -2
  19. package/dist/components/event-location/event-location.schema.dereffed.json +1 -1
  20. package/dist/components/header/header.css +5 -0
  21. package/dist/components/index/index.d.ts +1 -1
  22. package/dist/components/nav-dropdown/nav-dropdown.css +1 -1
  23. package/dist/components/nav-topbar/nav-topbar.css +1 -1
  24. package/dist/components/page-wrapper/tokens.css +1 -1
  25. package/dist/components/presets.json +59 -35
  26. package/dist/components/split-even/split-even.css +0 -3
  27. package/dist/components/split-weighted/split-weighted.css +0 -3
  28. package/dist/global.css +3 -3
  29. package/dist/tokens/themes.css +4 -4
  30. package/dist/tokens/tokens.css +1 -1
  31. package/dist/tokens/tokens.js +1 -1
  32. package/package.json +1 -1
  33. /package/dist/{BlogPostProps-6b3cff22.d.ts → BlogPostProps-c760fd2a.d.ts} +0 -0
  34. /package/dist/{BlogTeaserProps-f5855e93.d.ts → BlogTeaserProps-d62a0a9a.d.ts} +0 -0
@@ -4,7 +4,7 @@
4
4
  * and run json-schema-to-typescript to regenerate this file.
5
5
  */
6
6
  import { SectionProps } from "./SectionProps-7caa223c.js";
7
- import { BlogTeaserProps } from "./BlogTeaserProps-f5855e93.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
  /**
@@ -10,7 +10,7 @@ type Headline = string;
10
10
  /**
11
11
  * Short teaser text for the event
12
12
  */
13
- type TeaserText = string;
13
+ type Text = string;
14
14
  /**
15
15
  * The date of the event
16
16
  */
@@ -20,9 +20,17 @@ type Date = string;
20
20
  */
21
21
  type Time = string;
22
22
  /**
23
- * Location of the event
23
+ * Name of the location
24
+ */
25
+ type LocationName = string;
26
+ /**
27
+ * Address of the location
28
+ */
29
+ type Address = string;
30
+ /**
31
+ * Categories of the event
24
32
  */
25
- type Location = string;
33
+ type Categories = string[];
26
34
  /**
27
35
  * URL of the image to display
28
36
  */
@@ -48,16 +56,24 @@ type ARIALabel = string;
48
56
  */
49
57
  interface EventListTeaserProps {
50
58
  title: Headline;
51
- teaserText?: TeaserText;
59
+ text?: Text;
52
60
  date: Date;
53
61
  time?: Time;
54
62
  location: Location;
63
+ categories?: Categories;
55
64
  image?: Image;
56
65
  url?: URL;
57
66
  cta?: CallToAction;
58
67
  ariaLabel?: ARIALabel;
59
68
  className?: string;
60
69
  }
70
+ /**
71
+ * Location of the event
72
+ */
73
+ interface Location {
74
+ name?: LocationName;
75
+ address?: Address;
76
+ }
61
77
  /**
62
78
  * Image to display in the teaser
63
79
  */
@@ -65,4 +81,4 @@ interface Image {
65
81
  src?: ImageSource;
66
82
  alt?: AltText;
67
83
  }
68
- export { Headline, TeaserText, Date, Time, Location, ImageSource, AltText, URL, CallToAction, ARIALabel, EventListTeaserProps, Image };
84
+ export { Headline, Text, Date, Time, LocationName, Address, Categories, ImageSource, AltText, URL, CallToAction, ARIALabel, EventListTeaserProps, Location, Image };
@@ -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 };
@@ -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>>;
@@ -1,6 +1,6 @@
1
1
  .dsa-event-appointment {
2
- --g-link--color: var(--ks-text-color-interface-interactive);
3
- --g-link--color-hover: var(--ks-text-color-interface-interactive);
2
+ --g-link--color: var(--ks-text-color-interface);
3
+ --g-link--color-hover: var(--ks-text-color-interface);
4
4
  --g-link--border-radius: var(--ks-border-radius-card);
5
5
  --g-link--background: var(--ks-background-color-default);
6
6
  --g-link--background-hover: var(--ks-background-color-default);
@@ -25,7 +25,6 @@
25
25
  }
26
26
  .dsa-event-appointment__info--date {
27
27
  font-weight: var(--ks-font-weight-semi-bold);
28
- color: var(--ks-text-color-display);
29
28
  }
30
29
  .dsa-event-appointment__info--time {
31
30
  font-weight: var(--ks-font-weight-regular);
@@ -10,7 +10,7 @@
10
10
  "type": "string",
11
11
  "format": "date",
12
12
  "examples": [
13
- "2025-09-18"
13
+ "18.09.2025"
14
14
  ]
15
15
  },
16
16
  "time": {
@@ -9,7 +9,7 @@
9
9
  "description": "Date of the appointment",
10
10
  "type": "string",
11
11
  "format": "date",
12
- "examples": ["2025-09-18"]
12
+ "examples": ["18.09.2025"]
13
13
  },
14
14
  "time": {
15
15
  "title": "Time",
@@ -61,7 +61,7 @@
61
61
  "type": "string",
62
62
  "format": "date",
63
63
  "examples": [
64
- "2025-09-18"
64
+ "18.09.2025"
65
65
  ]
66
66
  },
67
67
  "time": {
@@ -1,15 +1,19 @@
1
1
  .dsa-event-filter {
2
2
  border-radius: var(--ks-border-radius-card);
3
- border: var(--ks-border-width-default) solid var(--ks-border-color-card);
4
3
  padding: var(--ks-spacing-inset-m);
5
4
  display: flex;
6
5
  flex-direction: column;
7
- gap: var(--ks-spacing-stack-m);
6
+ gap: var(--ks-spacing-stack-s);
7
+ background-color: var(--ks-background-color-card);
8
8
  }
9
9
  .dsa-event-filter__item {
10
+ background-color: var(--ks-background-color-default);
11
+ padding: var(--ks-spacing-inset-squish-m);
12
+ border-radius: var(--ks-border-radius-card);
10
13
  display: flex;
11
14
  flex-direction: column;
12
15
  gap: var(--ks-spacing-stack-xs);
16
+ margin-bottom: var(--ks-spacing-stack-s);
13
17
  }
14
18
  .dsa-event-filter__topic {
15
19
  font: var(--dsa-topic--font);
@@ -1,5 +1,5 @@
1
1
  import "./event-filter.css";
2
- import { jsxs, jsx } from 'react/jsx-runtime';
2
+ import { jsxs, Fragment, jsx } from 'react/jsx-runtime';
3
3
  import { forwardRef, createContext, useContext } from 'react';
4
4
  import { TextField } from '@kickstartds/form/lib/text-field';
5
5
  import { Checkbox } from '@kickstartds/form/lib/checkbox';
@@ -17,9 +17,9 @@ const EventFilterContextDefault = forwardRef(({ categories = {
17
17
  label: "Filter Appointments",
18
18
  }, resetButton = {
19
19
  label: "Reset Filters",
20
- }, }, ref) => (jsxs("div", { className: "dsa-event-filter", ref: ref, children: [datePicker?.toggle && (jsxs("div", { className: "dsa-event-filter__item", children: [jsx("span", { className: "dsa-event-filter__topic", children: datePicker.title || "Find Appointment" }), jsxs("div", { className: "dsa-event-filter__date-picker", children: [jsx(TextField, { label: datePicker.dateFromInput.label || "From", placeholder: datePicker.dateFromInput.placeholder || "Select a date" }), jsx(TextField, { label: datePicker.dateToInput.label || "To", placeholder: datePicker.dateToInput.placeholder || "Select a date" })] })] })), categories && categories?.toggle && (jsxs("div", { className: "dsa-event-filter__item", children: [jsx("span", { className: "dsa-event-filter__topic", children: categories?.title || "Categories" }), jsx("div", { className: "dsa-event-filter__categories", children: categories &&
21
- categories.categoryCheckboxes.length > 0 &&
22
- categories.categoryCheckboxes.map((category, index) => (jsx(Checkbox, { label: category }, index))) })] })), jsxs("div", { className: "dsa-event-filter__buttons", children: [jsx(Button, { size: "small", label: applyButton?.label || "Filter Appointments", variant: "primary", onClick: () => {
20
+ }, }, ref) => (jsxs("div", { className: "dsa-event-filter", ref: ref, children: [datePicker?.toggle && (jsxs(Fragment, { children: [jsx("span", { className: "dsa-event-filter__topic", children: datePicker.title || "Find Appointment" }), jsx("div", { className: "dsa-event-filter__item", children: jsxs("div", { className: "dsa-event-filter__date-picker", children: [jsx(TextField, { label: datePicker.dateFromInput.label || "From", placeholder: datePicker.dateFromInput.placeholder || "Select a date" }), jsx(TextField, { label: datePicker.dateToInput.label || "To", placeholder: datePicker.dateToInput.placeholder || "Select a date" })] }) })] })), categories && categories?.toggle && (jsxs(Fragment, { children: [jsx("span", { className: "dsa-event-filter__topic", children: categories?.title || "Categories" }), jsx("div", { className: "dsa-event-filter__item", children: jsx("div", { className: "dsa-event-filter__categories", children: categories &&
21
+ categories.categoryCheckboxes.length > 0 &&
22
+ categories.categoryCheckboxes.map((category, index) => (jsx(Checkbox, { label: category }, index))) }) })] })), jsxs("div", { className: "dsa-event-filter__buttons", children: [jsx(Button, { size: "small", label: applyButton?.label || "Filter Appointments", variant: "primary", onClick: () => {
23
23
  // Handle button click
24
24
  } }), jsx(Button, { size: "small", label: resetButton?.label || "Reset Filters", onClick: () => {
25
25
  // Handle button click
@@ -140,13 +140,13 @@
140
140
  "This is a event teaser title"
141
141
  ]
142
142
  },
143
- "teaserText": {
144
- "title": "Teaser Text",
143
+ "text": {
144
+ "title": "Text",
145
145
  "description": "Short teaser text for the event",
146
146
  "type": "string",
147
147
  "format": "markdown",
148
148
  "examples": [
149
- "This is a short teaser text for the event"
149
+ "The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence. The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence."
150
150
  ]
151
151
  },
152
152
  "date": {
@@ -155,7 +155,7 @@
155
155
  "type": "string",
156
156
  "format": "date",
157
157
  "examples": [
158
- "12.30.2022"
158
+ "FRI, JAN 16"
159
159
  ]
160
160
  },
161
161
  "time": {
@@ -169,10 +169,41 @@
169
169
  "location": {
170
170
  "title": "Location",
171
171
  "description": "Location of the event",
172
- "type": "string",
173
- "format": "markdown",
174
- "examples": [
175
- "This is a location"
172
+ "type": "object",
173
+ "properties": {
174
+ "name": {
175
+ "type": "string",
176
+ "title": "Location Name",
177
+ "description": "Name of the location",
178
+ "examples": [
179
+ "Stadthalle"
180
+ ]
181
+ },
182
+ "address": {
183
+ "type": "string",
184
+ "title": "Address",
185
+ "description": "Address of the location",
186
+ "examples": [
187
+ "Köln"
188
+ ]
189
+ }
190
+ },
191
+ "additionalProperties": false
192
+ },
193
+ "categories": {
194
+ "title": "Categories",
195
+ "description": "Categories of the event",
196
+ "type": "array",
197
+ "items": {
198
+ "type": "string",
199
+ "examples": [
200
+ "AI",
201
+ "Technology",
202
+ "Innovation"
203
+ ]
204
+ },
205
+ "default": [
206
+ "AI"
176
207
  ]
177
208
  },
178
209
  "image": {
@@ -220,10 +251,7 @@
220
251
  "ariaLabel": {
221
252
  "title": "ARIA Label",
222
253
  "description": "ARIA label for accessibility",
223
- "type": "string",
224
- "examples": [
225
- "Event teaser for "
226
- ]
254
+ "type": "string"
227
255
  },
228
256
  "className": {
229
257
  "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-cf4c7b20.js";
9
+ import { EventListTeaserProps } from "../../EventListTeaserProps-f5c6a5a9.js";
10
10
  interface EventListProps {
11
11
  /**
12
12
  * Referenced component EventFilterProps
@@ -16,8 +16,12 @@ import '@kickstartds/base/lib/button';
16
16
  import '@kickstartds/base/lib/icon';
17
17
  import '@kickstartds/core/lib/container';
18
18
  import '@kickstartds/base/lib/picture';
19
+ import 'markdown-to-jsx';
20
+ import '@kickstartds/base/lib/tag-label';
19
21
 
20
- const EventList = ({ filter, events, }) => (jsx(Fragment, { children: jsx(Section, { width: "wide", children: jsx(SplitWeighted, { verticalAlign: "sticky", order: {
22
+ const EventList = ({ filter, events, }) => (jsx(Fragment, { children: jsx(Section, { width: "wide", children: jsx(SplitWeighted, { verticalAlign: "sticky", mainLayout: {
23
+ minWidth: "narrow",
24
+ }, order: {
21
25
  desktop: "asideFirst",
22
26
  mobile: "asideFirst",
23
27
  }, aside: jsx(EventFilter, { ...filter }), main: jsx(Fragment, { children: events.map((event, index) => (jsx(EventListTeaser, { ...event }, index))) }) }) }) }));
@@ -5,70 +5,117 @@
5
5
 
6
6
  .dsa-event-list-teaser {
7
7
  --g-link--border-radius: var(--ks-border-radius-card);
8
- display: flex;
9
- gap: var(--ks-spacing-inline-s);
10
- padding: var(--ks-spacing-inset-s);
8
+ display: block;
11
9
  border: var(--ks-border-width-default) solid var(--ks-border-color-card-interactive);
10
+ display: flex;
11
+ flex-direction: column;
12
+ padding: var(--ks-spacing-inset-stretch-m);
13
+ gap: var(--ks-spacing-stack-m) var(--ks-spacing-inline-m);
14
+ position: relative;
15
+ flex-wrap: wrap;
12
16
  }
13
17
  .dsa-event-list-teaser:hover {
14
18
  border-color: var(--ks-border-color-card-interactive-hover);
15
19
  }
16
- .dsa-event-list-teaser__content {
20
+ .dsa-event-list-teaser:hover .dsa-event-list-teaser__categories {
21
+ border-color: var(--ks-border-color-card-interactive-hover);
22
+ }
23
+ .dsa-event-list-teaser__header {
17
24
  display: flex;
25
+ flex-direction: column;
18
26
  gap: var(--ks-spacing-stack-s) var(--ks-spacing-inline-s);
19
- flex-grow: 1;
27
+ }
28
+ .dsa-event-list-teaser__content {
20
29
  flex-wrap: wrap;
21
- min-width: 0;
30
+ display: flex;
31
+ justify-content: space-between;
32
+ gap: var(--ks-spacing-stack-s);
22
33
  }
23
34
  .dsa-event-list-teaser__text {
24
35
  display: flex;
25
36
  flex-direction: column;
26
- justify-content: center;
27
- gap: var(--ks-spacing-stack-m);
28
- flex-basis: var(--dsa-tile--width_large);
29
- flex-grow: 1000;
37
+ gap: var(--ks-spacing-stack-s);
38
+ flex-basis: var(--dsa-tile--width_small);
39
+ flex-grow: 10;
40
+ flex-shrink: 0;
30
41
  }
31
42
  .dsa-event-list-teaser__image {
32
43
  flex-shrink: 1;
33
- flex-grow: 0;
34
- flex-basis: var(--dsa-tile--width_medium);
44
+ flex-grow: 5;
45
+ flex-basis: var(--dsa-tile--width_smallest);
46
+ aspect-ratio: 4/3;
35
47
  }
36
48
  .dsa-event-list-teaser__image img {
37
49
  object-fit: cover;
38
50
  border-radius: var(--ks-border-radius-card);
39
51
  width: 100%;
40
- height: 100%;
52
+ aspect-ratio: 4/3;
41
53
  }
42
54
  .dsa-event-list-teaser__teaser-text {
43
- font: var(--ks-font-copy-m);
55
+ font: var(--ks-font-copy-s);
44
56
  color: var(--ks-text-color-interface);
45
57
  margin: 0;
46
58
  }
47
59
  .dsa-event-list-teaser__title {
60
+ max-width: var(--dsa-tile--width_large);
48
61
  font: var(--ks-font-display-m);
49
62
  font-weight: var(--ks-font-weight-semi-bold);
50
63
  color: var(--ks-text-color-display);
51
64
  }
52
- .dsa-event-list-teaser__infos {
65
+ .dsa-event-list-teaser__address {
66
+ margin: 0;
67
+ }
68
+ .dsa-event-list-teaser__details {
53
69
  display: flex;
54
70
  flex-wrap: wrap;
55
- gap: var(--ks-spacing-xxs) var(--ks-spacing-inline-s);
56
- align-items: flex-start;
71
+ gap: var(--ks-spacing-stack-s) var(--ks-spacing-inline-s);
72
+ }
73
+ .dsa-event-list-teaser__date {
74
+ display: flex;
75
+ flex-direction: column;
76
+ gap: var(--ks-spacing-xxs);
77
+ }
78
+ .dsa-event-list-teaser__date > .dsa-event-list-teaser__info:first-child {
79
+ font-weight: var(--ks-font-weight-semi-bold);
80
+ }
81
+ .dsa-event-list-teaser__categories {
82
+ display: flex;
83
+ flex-wrap: wrap;
84
+ gap: var(--ks-spacing-xxs) var(--ks-spacing-xxs);
85
+ max-width: var(--dsa-tile--width_small);
86
+ }
87
+ .dsa-event-list-teaser__infos {
88
+ display: flex;
89
+ flex-direction: column;
90
+ gap: var(--ks-spacing-stack-s);
91
+ background-color: var(--ks-background-color-accent);
92
+ padding: var(--ks-spacing-inset-s);
93
+ border-radius: var(--ks-border-radius-card);
94
+ }
95
+ .dsa-event-list-teaser__location {
96
+ flex-basis: var(--dsa-tile--width_small);
97
+ }
98
+ .dsa-event-list-teaser__name {
99
+ font-weight: var(--ks-font-weight-semi-bold);
100
+ color: var(--dsa-topic--color);
57
101
  }
58
102
  .dsa-event-list-teaser__info {
59
103
  display: flex;
60
104
  gap: calc(var(--ks-spacing-xxs) * 0.75);
61
105
  font: var(--ks-font-interface-s);
62
106
  align-items: center;
107
+ justify-content: flex-start;
63
108
  color: var(--ks-text-color-interface);
64
109
  }
110
+ .dsa-event-list-teaser__info--location {
111
+ flex-basis: 100%;
112
+ }
65
113
  .dsa-event-list-teaser__info .icon {
66
114
  align-self: flex-start;
67
115
  width: calc(var(--ks-font-size-interface-s) * var(--ks-line-height-interface-s));
68
116
  height: calc(var(--ks-font-size-interface-s) * var(--ks-line-height-interface-s));
69
117
  color: var(--ks-text-color-primary);
70
118
  flex-shrink: 0;
71
- flex-grow: 1;
72
119
  }
73
120
  .dsa-event-list-teaser__cta {
74
121
  font: var(--ks-font-interface-s);
@@ -14,13 +14,13 @@
14
14
  "This is a event teaser title"
15
15
  ]
16
16
  },
17
- "teaserText": {
18
- "title": "Teaser Text",
17
+ "text": {
18
+ "title": "Text",
19
19
  "description": "Short teaser text for the event",
20
20
  "type": "string",
21
21
  "format": "markdown",
22
22
  "examples": [
23
- "This is a short teaser text for the event"
23
+ "The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence. The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence."
24
24
  ]
25
25
  },
26
26
  "date": {
@@ -29,7 +29,7 @@
29
29
  "type": "string",
30
30
  "format": "date",
31
31
  "examples": [
32
- "12.30.2022"
32
+ "FRI, JAN 16"
33
33
  ]
34
34
  },
35
35
  "time": {
@@ -43,10 +43,41 @@
43
43
  "location": {
44
44
  "title": "Location",
45
45
  "description": "Location of the event",
46
- "type": "string",
47
- "format": "markdown",
48
- "examples": [
49
- "This is a location"
46
+ "type": "object",
47
+ "properties": {
48
+ "name": {
49
+ "type": "string",
50
+ "title": "Location Name",
51
+ "description": "Name of the location",
52
+ "examples": [
53
+ "Stadthalle"
54
+ ]
55
+ },
56
+ "address": {
57
+ "type": "string",
58
+ "title": "Address",
59
+ "description": "Address of the location",
60
+ "examples": [
61
+ "Köln"
62
+ ]
63
+ }
64
+ },
65
+ "additionalProperties": false
66
+ },
67
+ "categories": {
68
+ "title": "Categories",
69
+ "description": "Categories of the event",
70
+ "type": "array",
71
+ "items": {
72
+ "type": "string",
73
+ "examples": [
74
+ "AI",
75
+ "Technology",
76
+ "Innovation"
77
+ ]
78
+ },
79
+ "default": [
80
+ "AI"
50
81
  ]
51
82
  },
52
83
  "image": {
@@ -94,10 +125,7 @@
94
125
  "ariaLabel": {
95
126
  "title": "ARIA Label",
96
127
  "description": "ARIA label for accessibility",
97
- "type": "string",
98
- "examples": [
99
- "Event teaser for "
100
- ]
128
+ "type": "string"
101
129
  },
102
130
  "className": {
103
131
  "type": "string"
@@ -12,19 +12,21 @@
12
12
  "format": "markdown",
13
13
  "examples": ["This is a event teaser title"]
14
14
  },
15
- "teaserText": {
16
- "title": "Teaser Text",
15
+ "text": {
16
+ "title": "Text",
17
17
  "description": "Short teaser text for the event",
18
18
  "type": "string",
19
19
  "format": "markdown",
20
- "examples": ["This is a short teaser text for the event"]
20
+ "examples": [
21
+ "The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence. The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence."
22
+ ]
21
23
  },
22
24
  "date": {
23
25
  "title": "Date",
24
26
  "description": "The date of the event",
25
27
  "type": "string",
26
28
  "format": "date",
27
- "examples": ["12.30.2022"]
29
+ "examples": ["FRI, JAN 16"]
28
30
  },
29
31
  "time": {
30
32
  "title": "Time",
@@ -35,9 +37,31 @@
35
37
  "location": {
36
38
  "title": "Location",
37
39
  "description": "Location of the event",
38
- "type": "string",
39
- "format": "markdown",
40
- "examples": ["This is a location"]
40
+ "type": "object",
41
+ "properties": {
42
+ "name": {
43
+ "type": "string",
44
+ "title": "Location Name",
45
+ "description": "Name of the location",
46
+ "examples": ["Stadthalle"]
47
+ },
48
+ "address": {
49
+ "type": "string",
50
+ "title": "Address",
51
+ "description": "Address of the location",
52
+ "examples": ["Köln"]
53
+ }
54
+ }
55
+ },
56
+ "categories": {
57
+ "title": "Categories",
58
+ "description": "Categories of the event",
59
+ "type": "array",
60
+ "items": {
61
+ "type": "string",
62
+ "examples": ["AI", "Technology", "Innovation"]
63
+ },
64
+ "default": ["AI"]
41
65
  },
42
66
  "image": {
43
67
  "title": "Image",
@@ -75,8 +99,7 @@
75
99
  "ariaLabel": {
76
100
  "title": "ARIA Label",
77
101
  "description": "ARIA label for accessibility",
78
- "type": "string",
79
- "examples": ["Event teaser for "]
102
+ "type": "string"
80
103
  },
81
104
  "className": {
82
105
  "type": "string"
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { HTMLAttributes } from "react";
3
- import { EventListTeaserProps } from "../../EventListTeaserProps-cf4c7b20.js";
3
+ import { EventListTeaserProps } from "../../EventListTeaserProps-f5c6a5a9.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>>;
@@ -5,9 +5,11 @@ import { forwardRef, createContext, useContext } from 'react';
5
5
  import { Icon } from '@kickstartds/base/lib/icon';
6
6
  import { Container } from '@kickstartds/core/lib/container';
7
7
  import { Picture } from '@kickstartds/base/lib/picture';
8
+ import Markdown from 'markdown-to-jsx';
9
+ import { TagLabel } from '@kickstartds/base/lib/tag-label';
8
10
 
9
- const EventListTeaserContextDefault = forwardRef(({ title, teaserText, date, time, location, image, cta, url, ariaLabel, className, ...rest }, ref) => {
10
- return (jsx(Container, { name: "event-list-teaser", children: jsx("a", { className: classnames(className, "dsa-event-list-teaser"), ...rest, href: url, ref: ref, "aria-label": ariaLabel, children: jsxs("span", { className: "dsa-event-list-teaser__content", children: [jsxs("span", { className: "dsa-event-list-teaser__text", children: [jsx("span", { className: "dsa-event-list-teaser__title", children: title }), jsx("p", { className: "dsa-event-list-teaser__teaser-text", children: teaserText }), jsxs("span", { className: "dsa-event-list-teaser__infos", 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("span", { className: "dsa-event-list-teaser__info", children: [jsx(Icon, { "aria-hidden": true, icon: "map-pin" }), location] })] }), jsxs("span", { className: "dsa-event-list-teaser__cta", children: [jsx("span", { children: cta }), 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(({ title, text, date, time, categories, location, image, cta, 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: [jsx("div", { className: "dsa-event-list-teaser__header", children: jsx("span", { className: "dsa-event-list-teaser__title", children: title }) }), jsxs("div", { className: "dsa-event-list-teaser__content", children: [jsxs("div", { className: "dsa-event-list-teaser__text", children: [jsxs("div", { className: "dsa-event-list-teaser__infos", children: [jsx("div", { className: "dsa-event-list-teaser__categories", children: categories.map((category) => (jsx(TagLabel, { label: category, size: "s" }, category))) }), 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] })] }), jsx("div", { className: "dsa-event-list-teaser__location", children: jsxs("span", { className: "dsa-event-list-teaser__info", children: [jsx(Icon, { "aria-hidden": true, icon: "map-pin" }), jsxs("span", { className: "dsa-event-list-teaser__location-text", children: [location?.name && (jsx("span", { className: "dsa-event-list-teaser__name", children: location.name })), jsx(Markdown, { className: "dsa-event-list-teaser__address", children: location?.address })] })] }) })] })] }), jsx("p", { className: "dsa-event-list-teaser__teaser-text", children: text }), jsxs("div", { className: "dsa-event-list-teaser__cta", children: [jsx("span", { children: cta }), 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
13
  });
12
14
  const EventListTeaserContext = createContext(EventListTeaserContextDefault);
13
15
  const EventListTeaser = forwardRef((props, ref) => {
@@ -20,7 +20,7 @@
20
20
  "type": "string",
21
21
  "format": "date",
22
22
  "examples": [
23
- "2025-09-18"
23
+ "18.09.2025"
24
24
  ]
25
25
  },
26
26
  "time": {
@@ -78,6 +78,11 @@
78
78
  justify-content: space-between;
79
79
  align-items: flex-start;
80
80
  }
81
+ @media (min-width: 62rem) {
82
+ .dsa-header__content {
83
+ align-items: center;
84
+ }
85
+ }
81
86
  .dsa-header--floating .dsa-header__content {
82
87
  max-width: calc(var(--dsa-header--max-width) + var(--dsa-header_floating--spacing-horizontal) * 2);
83
88
  padding: 0 var(--dsa-header_floating--spacing-horizontal);
@@ -29,7 +29,7 @@ interface SettingsProps {
29
29
  seo: SeoProps;
30
30
  iconSprite?: IconSprite;
31
31
  }
32
- export * from "../../BlogPostProps-6b3cff22.js";
32
+ export * from "../../BlogPostProps-c760fd2a.js";
33
33
  export * from "../../BlogOverviewProps-9f207f1c.js";
34
34
  export * from "../../PageProps-aa29c554.js";
35
35
  export { IconSprite, SettingsProps };
@@ -11,7 +11,7 @@
11
11
  --dsa-nav-dropdown__label--background-color_hover: var(--ks-color-fg-alpha-8);
12
12
  --dsa-nav-dropdown__label--background-color_active: unset;
13
13
  --dsa-nav-dropdown__label--border-radius: var(--ks-border-radius-control);
14
- --dsa-nav-dropdown__label--font: var(--ks-font-interface-m);
14
+ --dsa-nav-dropdown__label--font: var(--ks-font-interface-s);
15
15
  --dsa-nav-dropdown__label--font-family: var(--ks-font-family-display);
16
16
  --dsa-nav-dropdown__label--font-weight: var(--ks-font-weight-semi-bold);
17
17
  --dsa-nav-dropdown__label--font-weight_active: var(--ks-font-weight-bold);
@@ -5,7 +5,7 @@
5
5
  --dsa-nav-topbar__label--background-color: transparent;
6
6
  --dsa-nav-topbar__label--background-color_hover: var(--ks-color-fg-alpha-8);
7
7
  --dsa-nav-topbar__label--background-color_active: transparent;
8
- --dsa-nav-topbar__label--font: var(--ks-font-interface-m);
8
+ --dsa-nav-topbar__label--font: var(--ks-font-interface-s);
9
9
  --dsa-nav-topbar__label--font-family: var(--ks-font-family-display);
10
10
  --dsa-nav-topbar__label--font-weight: var(--ks-font-weight-semi-bold);
11
11
  --dsa-nav-topbar__label--font-weight_active: var(--ks-font-weight-bold);
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 03 Jul 2025 12:16:09 GMT
3
+ * Generated on Fri, 04 Jul 2025 12:26:25 GMT
4
4
  */
5
5
  :root, [ks-theme] {
6
6
  --ks-background-color-accent-base: var(--ks-color-fg-to-bg-9-base);
@@ -939,7 +939,7 @@
939
939
  "id": "page-archetypes-event-list--event-list",
940
940
  "group": "Page Archetypes/Event List",
941
941
  "name": "EventList",
942
- "code": "<EventList\n events={[\n {\n ariaLabel: 'Event teaser for ',\n cta: 'Show event',\n date: '12.30.2022',\n image: {\n alt: 'This is an image of a flower',\n src: 'https://picsum.photos/seed/flower/800/600'\n },\n location: 'This is a location',\n teaserText: 'This is a short teaser text for the event',\n time: '10:00',\n title: 'This is a event teaser title',\n url: 'https://example.com'\n },\n {\n ariaLabel: 'Event teaser for ',\n cta: 'Show event',\n date: '12.30.2022',\n image: {\n alt: 'This is an image of a flower',\n src: 'https://picsum.photos/seed/flower/800/600'\n },\n location: 'This is a location',\n teaserText: 'This is a short teaser text for the event',\n time: '10:00',\n title: 'This is a event teaser title',\n url: 'https://example.com'\n },\n {\n ariaLabel: 'Event teaser for ',\n cta: 'Show event',\n date: '12.30.2022',\n image: {\n alt: 'This is an image of a flower',\n src: 'https://picsum.photos/seed/flower/800/600'\n },\n location: 'This is a location',\n teaserText: 'This is a short teaser text for the event',\n time: '10:00',\n title: 'This is a event teaser title',\n url: 'https://example.com'\n }\n ]}\n filter={{\n applyButton: {\n label: 'Filter Appointments'\n },\n categories: {\n categoryCheckboxes: [\n 'All',\n 'Buyers',\n 'Sellers',\n 'Renters',\n 'Landlords',\n 'Tenants'\n ],\n title: 'Categories',\n toggle: true\n },\n datePicker: {\n dateFromInput: {\n label: 'From',\n placeholder: 'Select a date'\n },\n dateToInput: {\n label: 'To',\n placeholder: 'Select a date'\n },\n title: 'Find Appointment',\n toggle: true\n },\n resetButton: {\n label: 'Reset Filters'\n }\n }}\n/>",
942
+ "code": "<EventList\n events={[\n {\n categories: [\n 'Buyers',\n 'Sellers',\n 'Renters'\n ],\n cta: 'Show appointment',\n date: 'FRI, JAN 16',\n image: {\n alt: 'A futuristic AI concept image',\n src: 'https://picsum.photos/seed/flower/800/600'\n },\n location: {\n address: '123 Main St<br/>\\n10115 Berlin',\n name: 'Berlin Convention Center'\n },\n text: 'Join us for the Real Estate Expo 2025, where industry leaders will discuss the future of real estate.',\n time: '10:00 AM',\n title: 'Real Estate Expo 2025',\n url: 'https://example.com'\n },\n {\n categories: [\n 'AI'\n ],\n cta: 'Show appointment',\n date: '14.01.2025',\n image: {\n alt: 'A futuristic AI concept image',\n src: 'https://picsum.photos/seed/flower/800/600'\n },\n location: {\n address: '123 Main St<br/>\\n50677 Cologne',\n name: 'Cologne Exhibition Center'\n },\n text: 'The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence. AI is transforming industries and shaping the future. Don\\'t miss out on this opportunity to learn from experts and network with peers.',\n time: '15:30 - 17:00',\n title: 'The Future of AI',\n url: 'https://example.com'\n },\n {\n categories: [\n 'Sustainability',\n 'Technology'\n ],\n cta: 'Show appointment',\n date: '20/30/2025',\n image: {\n alt: 'A futuristic AI concept image',\n src: 'https://picsum.photos/seed/flower/800/600'\n },\n location: {\n address: '123 Main St<br/>\\n50677 Cologne',\n name: 'Cologne Exhibition Center'\n },\n text: 'Welcome to the Global Innovations Summit 2025, where we will explore the latest advancements in sustainable technologies. Join us for a day of insightful discussions and networking opportunities with industry leaders.',\n time: 'from 17:00',\n title: 'Global Innovations Summit 2025: Advancing Sustainable Technologies',\n url: 'https://example.com'\n }\n ]}\n filter={{\n applyButton: {\n label: 'Filter Appointments'\n },\n categories: {\n categoryCheckboxes: [\n 'All',\n 'Buyers',\n 'Sellers',\n 'Renters',\n 'Landlords',\n 'Tenants'\n ],\n title: 'Categories',\n toggle: true\n },\n datePicker: {\n dateFromInput: {\n label: 'From',\n placeholder: 'Select a date'\n },\n dateToInput: {\n label: 'To',\n placeholder: 'Select a date'\n },\n title: 'Find Appointment',\n toggle: true\n },\n resetButton: {\n label: 'Reset Filters'\n }\n }}\n/>",
943
943
  "args": {
944
944
  "filter": {
945
945
  "datePicker": {
@@ -975,46 +975,64 @@
975
975
  },
976
976
  "events": [
977
977
  {
978
- "title": "This is a event teaser title",
979
- "teaserText": "This is a short teaser text for the event",
980
- "date": "12.30.2022",
981
- "time": "10:00",
982
- "location": "This is a location",
978
+ "title": "Real Estate Expo 2025",
979
+ "text": "Join us for the Real Estate Expo 2025, where industry leaders will discuss the future of real estate.",
980
+ "date": "FRI, JAN 16",
981
+ "time": "10:00 AM",
982
+ "location": {
983
+ "name": "Berlin Convention Center",
984
+ "address": "123 Main St<br/>\n10115 Berlin"
985
+ },
986
+ "categories": [
987
+ "Buyers",
988
+ "Sellers",
989
+ "Renters"
990
+ ],
983
991
  "image": {
984
992
  "src": "https://picsum.photos/seed/flower/800/600",
985
- "alt": "This is an image of a flower"
993
+ "alt": "A futuristic AI concept image"
986
994
  },
987
995
  "url": "https://example.com",
988
- "cta": "Show event",
989
- "ariaLabel": "Event teaser for "
996
+ "cta": "Show appointment"
990
997
  },
991
998
  {
992
- "title": "This is a event teaser title",
993
- "teaserText": "This is a short teaser text for the event",
994
- "date": "12.30.2022",
995
- "time": "10:00",
996
- "location": "This is a location",
999
+ "title": "The Future of AI",
1000
+ "text": "The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence. AI is transforming industries and shaping the future. Don't miss out on this opportunity to learn from experts and network with peers.",
1001
+ "date": "14.01.2025",
1002
+ "time": "15:30 - 17:00",
1003
+ "location": {
1004
+ "name": "Cologne Exhibition Center",
1005
+ "address": "123 Main St<br/>\n50677 Cologne"
1006
+ },
1007
+ "categories": [
1008
+ "AI"
1009
+ ],
997
1010
  "image": {
998
1011
  "src": "https://picsum.photos/seed/flower/800/600",
999
- "alt": "This is an image of a flower"
1012
+ "alt": "A futuristic AI concept image"
1000
1013
  },
1001
1014
  "url": "https://example.com",
1002
- "cta": "Show event",
1003
- "ariaLabel": "Event teaser for "
1015
+ "cta": "Show appointment"
1004
1016
  },
1005
1017
  {
1006
- "title": "This is a event teaser title",
1007
- "teaserText": "This is a short teaser text for the event",
1008
- "date": "12.30.2022",
1009
- "time": "10:00",
1010
- "location": "This is a location",
1018
+ "title": "Global Innovations Summit 2025: Advancing Sustainable Technologies",
1019
+ "text": "Welcome to the Global Innovations Summit 2025, where we will explore the latest advancements in sustainable technologies. Join us for a day of insightful discussions and networking opportunities with industry leaders.",
1020
+ "date": "20/30/2025",
1021
+ "time": "from 17:00",
1022
+ "location": {
1023
+ "name": "Cologne Exhibition Center",
1024
+ "address": "123 Main St<br/>\n50677 Cologne"
1025
+ },
1026
+ "categories": [
1027
+ "Sustainability",
1028
+ "Technology"
1029
+ ],
1011
1030
  "image": {
1012
1031
  "src": "https://picsum.photos/seed/flower/800/600",
1013
- "alt": "This is an image of a flower"
1032
+ "alt": "A futuristic AI concept image"
1014
1033
  },
1015
1034
  "url": "https://example.com",
1016
- "cta": "Show event",
1017
- "ariaLabel": "Event teaser for "
1035
+ "cta": "Show appointment"
1018
1036
  }
1019
1037
  ]
1020
1038
  },
@@ -1650,9 +1668,9 @@
1650
1668
  "id": "event-event-appointment--default",
1651
1669
  "group": "Event/ Event Appointment",
1652
1670
  "name": "Default",
1653
- "code": "<EventAppointment\n ariaLabel=\"Register for the event on 18th September 2025 from 09:00 to 17:00\"\n date=\"2025-09-18\"\n label=\"Register\"\n newTab\n time=\"09:00 – 17:00\"\n url=\"#\"\n/>",
1671
+ "code": "<EventAppointment\n ariaLabel=\"Register for the event on 18th September 2025 from 09:00 to 17:00\"\n date=\"18.09.2025\"\n label=\"Register\"\n newTab\n time=\"09:00 – 17:00\"\n url=\"#\"\n/>",
1654
1672
  "args": {
1655
- "date": "2025-09-18",
1673
+ "date": "18.09.2025",
1656
1674
  "time": "09:00 – 17:00",
1657
1675
  "label": "Register",
1658
1676
  "url": "#",
@@ -1805,20 +1823,26 @@
1805
1823
  "id": "event-event-list-teaser--default",
1806
1824
  "group": "Event/ Event List Teaser",
1807
1825
  "name": "Default",
1808
- "code": "<EventListTeaser\n ariaLabel=\"Event teaser for \"\n cta=\"Show event\"\n date=\"12/30/2025\"\n image={{\n alt: 'A futuristic AI concept image',\n src: 'https://picsum.photos/seed/flower/800/600'\n }}\n link={{\n text: 'Show event',\n url: '#'\n }}\n location=\"Berlin, Germany\"\n teaserText=\"The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence.\"\n time=\"10:00\"\n title=\"The Future of AI\"\n url=\"https://example.com\"\n/>",
1826
+ "code": "<EventListTeaser\n categories={[\n 'AI'\n ]}\n cta=\"Show event\"\n date=\"30.12.2025\"\n image={{\n alt: 'A futuristic AI concept image',\n src: 'https://picsum.photos/seed/flower/800/600'\n }}\n link={{\n text: 'Show event',\n url: '#'\n }}\n location={{\n address: 'Köln',\n name: 'Stadthalle'\n }}\n teaserText=\"The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence.\"\n text=\"The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence. The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence.\"\n time=\"10:00\"\n title=\"The Future of AI\"\n url=\"https://example.com\"\n/>",
1809
1827
  "args": {
1810
1828
  "title": "The Future of AI",
1811
- "teaserText": "The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence.",
1812
- "date": "12/30/2025",
1829
+ "text": "The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence. The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence.",
1830
+ "date": "30.12.2025",
1813
1831
  "time": "10:00",
1814
- "location": "Berlin, Germany",
1832
+ "location": {
1833
+ "name": "Stadthalle",
1834
+ "address": "Köln"
1835
+ },
1836
+ "categories": [
1837
+ "AI"
1838
+ ],
1815
1839
  "image": {
1816
1840
  "src": "https://picsum.photos/seed/flower/800/600",
1817
1841
  "alt": "A futuristic AI concept image"
1818
1842
  },
1819
1843
  "url": "https://example.com",
1820
1844
  "cta": "Show event",
1821
- "ariaLabel": "Event teaser for ",
1845
+ "teaserText": "The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence.",
1822
1846
  "link": {
1823
1847
  "url": "#",
1824
1848
  "text": "Show event"
@@ -1830,11 +1854,11 @@
1830
1854
  "id": "event-event-location--default",
1831
1855
  "group": "Event/ Event Location",
1832
1856
  "name": "Default",
1833
- "code": "<EventLocation\n address=\"Alexanderplatz 1<br />\n 10178 Berlin\"\n dates={[\n {\n ariaLabel: 'Register for the event on 18th September 2025 from 09:00 to 17:00',\n date: '2025-09-18',\n label: 'Register',\n newTab: true,\n time: '09:00 – 17:00',\n url: '#'\n },\n {\n ariaLabel: 'Register for the event on 18th September 2025 from 09:00 to 17:00',\n date: '2025-09-18',\n label: 'Register',\n newTab: true,\n time: '09:00 – 17:00',\n url: '#'\n }\n ]}\n displayMode=\"spacious\"\n links={[\n {\n label: 'Open in Google Maps',\n newTab: true,\n url: 'https://maps.google.com/?q=Berlin+Congress+Center'\n },\n {\n label: 'Location Website',\n newTab: true,\n url: 'https://maps.google.com/?q=Berlin+Congress+Center'\n }\n ]}\n locationName=\"Berlin Congress Center\"\n/>",
1857
+ "code": "<EventLocation\n address=\"Alexanderplatz 1<br />\n 10178 Berlin\"\n dates={[\n {\n ariaLabel: 'Register for the event on 18th September 2025 from 09:00 to 17:00',\n date: '18.09.2025',\n label: 'Register',\n newTab: true,\n time: '09:00 – 17:00',\n url: '#'\n },\n {\n ariaLabel: 'Register for the event on 18th September 2025 from 09:00 to 17:00',\n date: '18.09.2025',\n label: 'Register',\n newTab: true,\n time: '09:00 – 17:00',\n url: '#'\n }\n ]}\n displayMode=\"spacious\"\n links={[\n {\n label: 'Open in Google Maps',\n newTab: true,\n url: 'https://maps.google.com/?q=Berlin+Congress+Center'\n },\n {\n label: 'Location Website',\n newTab: true,\n url: 'https://maps.google.com/?q=Berlin+Congress+Center'\n }\n ]}\n locationName=\"Berlin Congress Center\"\n/>",
1834
1858
  "args": {
1835
1859
  "dates": [
1836
1860
  {
1837
- "date": "2025-09-18",
1861
+ "date": "18.09.2025",
1838
1862
  "time": "09:00 – 17:00",
1839
1863
  "label": "Register",
1840
1864
  "url": "#",
@@ -1842,7 +1866,7 @@
1842
1866
  "ariaLabel": "Register for the event on 18th September 2025 from 09:00 to 17:00"
1843
1867
  },
1844
1868
  {
1845
- "date": "2025-09-18",
1869
+ "date": "18.09.2025",
1846
1870
  "time": "09:00 – 17:00",
1847
1871
  "label": "Register",
1848
1872
  "url": "#",
@@ -97,7 +97,4 @@
97
97
  }
98
98
  .l-split-even__content--gutter-large {
99
99
  gap: var(--dsa-split-even__content--gutter_large, var(--ks-spacing-stack-xl));
100
- }
101
- .l-split-even__content .c-button {
102
- width: fit-content;
103
100
  }
@@ -85,9 +85,6 @@
85
85
  .l-split-weighted__content .l-split-weighted__content-container--gutter-none {
86
86
  gap: 0;
87
87
  }
88
- .l-split-weighted__content .c-button {
89
- width: fit-content;
90
- }
91
88
  .l-split-weighted__main {
92
89
  flex-basis: var(--dsa-split-weighted__main--flex-basis_default, calc(var(--dsa-content--width_default) * 1));
93
90
  flex-grow: 1000;
package/dist/global.css CHANGED
@@ -323,7 +323,7 @@ h3 {
323
323
  --dsa-tile--width_medium: calc(var(--ks-font-size-copy-m) * 20);
324
324
  --dsa-tile--width_large: calc(var(--ks-font-size-copy-m) * 28);
325
325
  --dsa-tile--width_largest: calc(var(--ks-font-size-copy-m) * 38);
326
- --dsa-logo--height: 2.25rem;
326
+ --dsa-logo--height: 2rem;
327
327
  --dsa-header--height: calc(var(--dsa-logo--height) + var(--ks-spacing-stack-m) + var(--ks-spacing-stack-m));
328
328
  }
329
329
  @media (min-width: 48em) {
@@ -333,12 +333,12 @@ h3 {
333
333
  }
334
334
  @media (min-width: 48em) {
335
335
  :root, [ks-inverted], [ks-theme] {
336
- --dsa-logo--height: 2.5rem;
336
+ --dsa-logo--height: 2.25rem;
337
337
  }
338
338
  }
339
339
  @media (min-width: 62em) {
340
340
  :root, [ks-inverted], [ks-theme] {
341
- --dsa-logo--height: 3rem;
341
+ --dsa-logo--height: 2.5rem;
342
342
  }
343
343
  }
344
344
 
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 03 Jul 2025 12:16:12 GMT
3
+ * Generated on Fri, 04 Jul 2025 12:26:28 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 Thu, 03 Jul 2025 12:16:18 GMT
2730
+ * Generated on Fri, 04 Jul 2025 12:26:32 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 Thu, 03 Jul 2025 12:16:15 GMT
5461
+ * Generated on Fri, 04 Jul 2025 12:26:30 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 Thu, 03 Jul 2025 12:16:20 GMT
8462
+ * Generated on Fri, 04 Jul 2025 12:26:35 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 Thu, 03 Jul 2025 12:16:09 GMT
3
+ * Generated on Fri, 04 Jul 2025 12:26:25 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 Thu, 03 Jul 2025 12:16:09 GMT
3
+ * Generated on Fri, 04 Jul 2025 12:26:26 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.1783.0",
3
+ "version": "1.6.71--canary.45.1789.0",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kickstartDS/ds-agency-premium#readme",
6
6
  "bugs": {