@kickstartds/ds-agency-premium 1.6.68--canary.45.1716.0 → 1.6.68--canary.45.1723.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 (36) hide show
  1. package/dist/{BlogOverviewProps-9f207f1c.d.ts → BlogOverviewProps-7caa223c.d.ts} +1 -1
  2. package/dist/{BlogPostProps-6b3cff22.d.ts → BlogPostProps-c760fd2a.d.ts} +1 -1
  3. package/dist/EventDetailProps-42a7eebe.d.ts +1 -1
  4. package/dist/{EventLocationProps-dd4aeaa9.d.ts → EventLocationProps-871bc198.d.ts} +6 -1
  5. package/dist/{PageProps-aa29c554.d.ts → PageProps-7caa223c.d.ts} +1 -1
  6. package/dist/{SectionProps-7caa223c.d.ts → SectionProps-00ddee3a.d.ts} +1 -1
  7. package/dist/components/blog-overview/index.d.ts +1 -1
  8. package/dist/components/blog-post/index.d.ts +1 -1
  9. package/dist/components/event-appointment/event-appointment.css +9 -2
  10. package/dist/components/event-appointment/index.js +1 -1
  11. package/dist/components/event-detail/event-detail.schema.dereffed.json +10 -0
  12. package/dist/components/event-detail/index.js +3 -2
  13. package/dist/components/event-latest/event-latest.css +5 -0
  14. package/dist/components/event-latest/event-latest.schema.dereffed.json +0 -47
  15. package/dist/components/event-latest/event-latest.schema.json +1 -37
  16. package/dist/components/event-latest/index.d.ts +0 -26
  17. package/dist/components/event-latest/index.js +7 -3
  18. package/dist/components/event-latest-teaser/event-latest-teaser.css +67 -21
  19. package/dist/components/event-latest-teaser/index.js +3 -2
  20. package/dist/components/event-location/event-location.css +35 -30
  21. package/dist/components/event-location/event-location.schema.dereffed.json +10 -0
  22. package/dist/components/event-location/event-location.schema.json +7 -0
  23. package/dist/components/event-location/index.d.ts +1 -1
  24. package/dist/components/event-location/index.js +4 -2
  25. package/dist/components/image-story/index.d.ts +1 -1
  26. package/dist/components/index/index.d.ts +3 -3
  27. package/dist/components/page/index.d.ts +1 -1
  28. package/dist/components/page-wrapper/tokens.css +1 -1
  29. package/dist/components/presets.json +66 -39
  30. package/dist/components/section/index.d.ts +1 -1
  31. package/dist/global.css +1 -1
  32. package/dist/tokens/themes.css +4 -4
  33. package/dist/tokens/tokens.css +1 -1
  34. package/dist/tokens/tokens.js +1 -1
  35. package/package.json +1 -1
  36. /package/dist/{ImageStoryProps-e853e1e7.d.ts → ImageStoryProps-00ddee3a.d.ts} +0 -0
@@ -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-00ddee3a.js";
7
7
  import { BlogTeaserProps } from "./BlogTeaserProps-f5855e93.js";
8
8
  import { CtaProps } from "./CtaProps-babe4ee6.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-7caa223c.js";
8
+ import { SectionProps } from "./SectionProps-00ddee3a.js";
9
9
  import { CtaProps } from "./CtaProps-babe4ee6.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 { EventLocationProps } from "./EventLocationProps-dd4aeaa9.js";
6
+ import { EventLocationProps } from "./EventLocationProps-871bc198.js";
7
7
  /**
8
8
  * Title of the event
9
9
  */
@@ -12,6 +12,10 @@ type Dates = EventAppointmentProps[];
12
12
  * Name of the event location
13
13
  */
14
14
  type LocationName = string;
15
+ /**
16
+ * Spacious is recommended for 1-2 appointments, Compact for more than 2.
17
+ */
18
+ type DisplayMode = "spacious" | "compact";
15
19
  /**
16
20
  * Address of the appointment
17
21
  */
@@ -30,7 +34,8 @@ type Links = {
30
34
  interface EventLocationProps {
31
35
  dates?: Dates;
32
36
  locationName?: LocationName;
37
+ displayMode?: DisplayMode;
33
38
  address?: Address;
34
39
  links?: Links;
35
40
  }
36
- export { Dates, LocationName, Address, Links, EventLocationProps };
41
+ export { Dates, LocationName, DisplayMode, Address, Links, EventLocationProps };
@@ -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-00ddee3a.js";
7
7
  import { SeoProps } from "./SeoProps-f2d6dcaa.js";
8
8
  /**
9
9
  * Collection of sections (with their contents) to render on the page
@@ -10,7 +10,7 @@ import { FeaturesProps } from "./FeaturesProps-a9041d97.js";
10
10
  import { GalleryProps } from "./GalleryProps-76e7de44.js";
11
11
  import { HeroProps } from "./HeroProps-40f6c7f5.js";
12
12
  import { HtmlProps } from "./HtmlProps-9d091769.js";
13
- import { ImageStoryProps } from "./ImageStoryProps-e853e1e7.js";
13
+ import { ImageStoryProps } from "./ImageStoryProps-00ddee3a.js";
14
14
  import { ImageTextProps } from "./ImageTextProps-9286cca4.js";
15
15
  import { LogosProps } from "./LogosProps-f9474fe2.js";
16
16
  import { MosaicProps } from "./MosaicProps-d52c7151.js";
@@ -1,4 +1,4 @@
1
- import { BlogOverviewProps } from "../../BlogOverviewProps-9f207f1c.js";
1
+ import { BlogOverviewProps } from "../../BlogOverviewProps-7caa223c.js";
2
2
  import { FC, PropsWithChildren } from "react";
3
3
  declare const BlogOverview: FC<PropsWithChildren<BlogOverviewProps>>;
4
4
  export type { BlogOverviewProps };
@@ -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,8 @@
11
11
  gap: var(--ks-spacing-inline-s);
12
12
  padding: var(--ks-spacing-inset-s);
13
13
  border: var(--ks-border-width-default) solid var(--ks-border-color-interface-interactive);
14
- flex-grow: 0;
14
+ height: fit-content;
15
+ font: inherit;
15
16
  }
16
17
  .dsa-event-appointment:hover {
17
18
  border-color: var(--ks-border-color-interface-interactive-hover);
@@ -19,10 +20,16 @@
19
20
  .dsa-event-appointment__info {
20
21
  display: flex;
21
22
  gap: var(--ks-spacing-xxs);
22
- font: var(--ks-font-interface-s);
23
23
  text-decoration: none;
24
24
  align-items: center;
25
25
  }
26
+ .dsa-event-appointment__info--date {
27
+ font-weight: var(--ks-font-weight-semi-bold);
28
+ color: var(--ks-text-color-display);
29
+ }
30
+ .dsa-event-appointment__info--time {
31
+ font-weight: var(--ks-font-weight-regular);
32
+ }
26
33
  .dsa-event-appointment__infos {
27
34
  flex-direction: column;
28
35
  display: flex;
@@ -3,7 +3,7 @@ import { jsxs, jsx } from 'react/jsx-runtime';
3
3
  import { forwardRef, createContext, useContext } from 'react';
4
4
  import { Icon } from '@kickstartds/base/lib/icon';
5
5
 
6
- const EventAppointmentContextDefault = forwardRef(({ date, time, label, url, newTab, ariaLabel }, ref) => (jsxs("a", { className: "dsa-event-appointment", target: newTab ? "_blank" : "_self", "aria-label": ariaLabel, href: url, ref: ref, children: [jsxs("span", { className: "dsa-event-appointment__infos", children: [date && (jsxs("span", { className: "dsa-event-appointment__info", children: [jsx(Icon, { className: "dsa-event-appointment__icon", "aria-hidden": true, icon: "date" }), date] })), time && (jsxs("span", { className: "dsa-event-appointment__info", children: [jsx(Icon, { className: "dsa-event-appointment__icon", "aria-hidden": true, icon: "time" }), time] }))] }), jsxs("span", { className: "dsa-event-appointment__label", children: [label, jsx(Icon, { icon: "chevron-right" })] })] })));
6
+ const EventAppointmentContextDefault = forwardRef(({ date, time, label, url, newTab, ariaLabel }, ref) => (jsxs("a", { className: "dsa-event-appointment", target: newTab ? "_blank" : "_self", "aria-label": ariaLabel, href: url, ref: ref, children: [jsxs("span", { className: "dsa-event-appointment__infos", children: [date && (jsxs("span", { className: "dsa-event-appointment__info dsa-event-appointment__info--date", children: [jsx(Icon, { className: "dsa-event-appointment__icon", "aria-hidden": true, icon: "date" }), date] })), time && (jsxs("span", { className: "dsa-event-appointment__info dsa-event-appointment__info--time", children: [jsx(Icon, { className: "dsa-event-appointment__icon", "aria-hidden": true, icon: "time" }), time] }))] }), jsxs("span", { className: "dsa-event-appointment__label", children: [label, jsx(Icon, { icon: "chevron-right" })] })] })));
7
7
  const EventAppointmentContext = createContext(EventAppointmentContextDefault);
8
8
  const EventAppointment = forwardRef((props, ref) => {
9
9
  const Component = useContext(EventAppointmentContext);
@@ -114,6 +114,16 @@
114
114
  "Berlin Congress Center"
115
115
  ]
116
116
  },
117
+ "displayMode": {
118
+ "title": "Display Mode",
119
+ "description": "Spacious is recommended for 1-2 appointments, Compact for more than 2.",
120
+ "type": "string",
121
+ "enum": [
122
+ "spacious",
123
+ "compact"
124
+ ],
125
+ "default": "spacious"
126
+ },
117
127
  "address": {
118
128
  "title": "Address",
119
129
  "description": "Address of the appointment",
@@ -7,9 +7,10 @@ import { Gallery } from '../gallery/index.js';
7
7
  import { Downloads } from '../downloads/index.js';
8
8
  import { Headline } from '../headline/index.js';
9
9
  import 'react';
10
+ import 'classnames';
10
11
  import '@kickstartds/base/lib/icon';
11
12
  import '../event-appointment/index.js';
12
- import 'classnames';
13
+ import '@kickstartds/core/lib/container';
13
14
  import '@kickstartds/core/lib/react';
14
15
  import '@kickstartds/base/lib/section';
15
16
  import '../section/js/Section.client.js';
@@ -21,7 +22,7 @@ import '@kickstartds/base/lib/picture';
21
22
  import 'markdown-to-jsx';
22
23
  import '@kickstartds/base/lib/headline';
23
24
 
24
- const EventDetail = ({ title, categories, locations, description, intro, images, downloads, }) => (jsxs(Fragment, { children: [jsx(Section, { width: "narrow", spaceAfter: "none", children: jsx(EventHeader, { title: title, categories: categories, intro: intro }) }), locations && locations.length > 0 && (jsxs(Section, { width: "narrow", content: { mode: "list", gutter: "none" }, children: [jsx(Headline, { text: "Locations", level: "h3", style: "h3", className: "dsa-event__locations-headline" }), locations.map((appointment, index) => (jsx(EventLocation, { ...appointment }, index)))] })), description && (jsx(Section, { width: "narrow", spaceBefore: "none", children: jsx(RichText, { className: "dsa-event__description", text: description }) })), jsx(Section, { spaceBefore: "none", children: jsx(Gallery, { images: images, aspectRatio: "wide", layout: "smallTiles", lightbox: true }) }), downloads && downloads.length > 0 && (jsxs(Section, { width: "narrow", spaceBefore: "none", content: {
25
+ const EventDetail = ({ title, categories, locations, description, intro, images, downloads, }) => (jsxs(Fragment, { children: [jsx(Section, { width: "narrow", spaceAfter: "none", children: jsx(EventHeader, { title: title, categories: categories, intro: intro }) }), locations && locations.length > 0 && (jsxs(Section, { width: "default", content: { mode: "list", gutter: "none" }, children: [jsx(Headline, { text: "Locations", level: "h3", style: "h3", className: "dsa-event__locations-headline" }), locations.map((appointment, index) => (jsx(EventLocation, { ...appointment }, index)))] })), description && (jsx(Section, { width: "narrow", spaceBefore: "none", children: jsx(RichText, { className: "dsa-event__description", text: description }) })), jsx(Section, { spaceBefore: "none", children: jsx(Gallery, { images: images, aspectRatio: "wide", layout: "smallTiles", lightbox: true }) }), downloads && downloads.length > 0 && (jsxs(Section, { width: "narrow", spaceBefore: "none", content: {
25
26
  mode: "list",
26
27
  gutter: "none",
27
28
  }, spaceAfter: "none", children: [jsx(Headline, { text: "Downloads", level: "h3", style: "h3" }), jsx(Downloads, { downloads: downloads })] })), jsx(Section, { width: "narrow", buttons: [
@@ -0,0 +1,5 @@
1
+ .dsa-event-latest {
2
+ display: flex;
3
+ flex-direction: column;
4
+ gap: var(--ks-spacing-stack-s);
5
+ }
@@ -5,24 +5,6 @@
5
5
  "description": "Display a list of latest events, ordered chronologically",
6
6
  "type": "object",
7
7
  "properties": {
8
- "headline": {
9
- "title": "Headline",
10
- "description": "Headline for the listing",
11
- "type": "string",
12
- "format": "markdown",
13
- "examples": [
14
- "Latest Events"
15
- ]
16
- },
17
- "text": {
18
- "title": "Text",
19
- "description": "Additional text shown below the headline",
20
- "type": "string",
21
- "format": "markdown",
22
- "examples": [
23
- "Our next upcoming events"
24
- ]
25
- },
26
8
  "events": {
27
9
  "title": "Events",
28
10
  "description": "List of events to display",
@@ -148,35 +130,6 @@
148
130
  ]
149
131
  ]
150
132
  },
151
- "link": {
152
- "type": "object",
153
- "title": "Link",
154
- "description": "Link shown below the listing",
155
- "properties": {
156
- "url": {
157
- "title": "URL",
158
- "description": "The to link",
159
- "type": "string",
160
- "format": "uri",
161
- "examples": [
162
- "https://example.com"
163
- ]
164
- },
165
- "text": {
166
- "title": "Text",
167
- "description": "The text for the link",
168
- "type": "string",
169
- "default": "Show all events",
170
- "examples": [
171
- "Show all events"
172
- ]
173
- }
174
- },
175
- "additionalProperties": false,
176
- "required": [
177
- "url"
178
- ]
179
- },
180
133
  "className": {
181
134
  "type": "string"
182
135
  },
@@ -5,20 +5,6 @@
5
5
  "description": "Display a list of latest events, ordered chronologically",
6
6
  "type": "object",
7
7
  "properties": {
8
- "headline": {
9
- "title": "Headline",
10
- "description": "Headline for the listing",
11
- "type": "string",
12
- "format": "markdown",
13
- "examples": ["Latest Events"]
14
- },
15
- "text": {
16
- "title": "Text",
17
- "description": "Additional text shown below the headline",
18
- "type": "string",
19
- "format": "markdown",
20
- "examples": ["Our next upcoming events"]
21
- },
22
8
  "events": {
23
9
  "title": "Events",
24
10
  "description": "List of events to display",
@@ -50,29 +36,7 @@
50
36
  ]
51
37
  ]
52
38
  },
53
- "link": {
54
- "type": "object",
55
- "title": "Link",
56
- "description": "Link shown below the listing",
57
- "properties": {
58
- "url": {
59
- "title": "URL",
60
- "description": "The to link",
61
- "type": "string",
62
- "format": "uri",
63
- "examples": ["https://example.com"]
64
- },
65
- "text": {
66
- "title": "Text",
67
- "description": "The text for the link",
68
- "type": "string",
69
- "default": "Show all events",
70
- "examples": ["Show all events"]
71
- }
72
- },
73
- "additionalProperties": false,
74
- "required": ["url"]
75
- },
39
+
76
40
  "className": {
77
41
  "type": "string"
78
42
  }
@@ -7,14 +7,6 @@ import { HTMLAttributes } from "react";
7
7
  * and run json-schema-to-typescript to regenerate this file.
8
8
  */
9
9
  import { EventLatestTeaserProps } from "../../EventLatestTeaserProps-fc9d3281.js";
10
- /**
11
- * Headline for the listing
12
- */
13
- type Headline = string;
14
- /**
15
- * Additional text shown below the headline
16
- */
17
- type Text = string;
18
10
  /**
19
11
  * List of events to display
20
12
  *
@@ -24,31 +16,13 @@ type Events = [
24
16
  EventLatestTeaserProps,
25
17
  ...EventLatestTeaserProps[]
26
18
  ];
27
- /**
28
- * The to link
29
- */
30
- type URL = string;
31
- /**
32
- * The text for the link
33
- */
34
- type Text1 = string;
35
19
  /**
36
20
  * Display a list of latest events, ordered chronologically
37
21
  */
38
22
  interface EventLatestProps {
39
- headline?: Headline;
40
- text?: Text;
41
23
  events?: Events;
42
- link?: Link;
43
24
  className?: string;
44
25
  }
45
- /**
46
- * Link shown below the listing
47
- */
48
- interface Link {
49
- url: URL;
50
- text?: Text1;
51
- }
52
26
  declare const EventLatestContextDefault: import("react").ForwardRefExoticComponent<EventLatestProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
53
27
  declare const EventLatestContext: import("react").Context<import("react").ForwardRefExoticComponent<EventLatestProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>>;
54
28
  declare const EventLatest: import("react").ForwardRefExoticComponent<EventLatestProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
@@ -1,9 +1,13 @@
1
+ import "./event-latest.css";
1
2
  import { jsx } from 'react/jsx-runtime';
2
- import classnames from 'classnames';
3
3
  import { forwardRef, createContext, useContext } from 'react';
4
+ import { EventLatestTeaser } from '../event-latest-teaser/index.js';
5
+ import 'classnames';
6
+ import '@kickstartds/base/lib/icon';
7
+ import '@kickstartds/core/lib/container';
4
8
 
5
- const EventLatestContextDefault = forwardRef(({ headline, text, link, events, className, ...rest }, ref) => {
6
- return (jsx("div", { className: classnames(className, "dsa-event-latest"), ...rest, ref: ref, children: JSON.stringify({ headline, text, link, events, rest }) }));
9
+ const EventLatestContextDefault = forwardRef(({ events }, ref) => {
10
+ return (jsx("div", { className: "dsa-event-latest", ref: ref, children: events.map((event, index) => (jsx(EventLatestTeaser, { ...event }, index))) }));
7
11
  });
8
12
  const EventLatestContext = createContext(EventLatestContextDefault);
9
13
  const EventLatest = forwardRef((props, ref) => {
@@ -1,33 +1,80 @@
1
+ .l-container--event-latest-teaser {
2
+ /* stylelint-disable-next-line property-no-unknown */
3
+ container-name: event-latest-teaser;
4
+ }
5
+
1
6
  .dsa-event-latest-teaser {
2
7
  --g-link--border-radius: var(--ks-border-radius-surface);
3
8
  display: flex;
4
- align-items: center;
5
- gap: var(--ks-spacing-inline-m);
9
+ gap: var(--ks-spacing-inline-s);
6
10
  padding: var(--ks-spacing-inset-s);
11
+ flex-direction: column;
7
12
  border: var(--ks-border-width-default) solid var(--ks-border-color-card-interactive);
8
13
  }
14
+ @container event-latest-teaser (min-width: 640px) {
15
+ .dsa-event-latest-teaser {
16
+ flex-direction: row;
17
+ align-items: center;
18
+ gap: var(--ks-spacing-inline-m);
19
+ }
20
+ }
9
21
  .dsa-event-latest-teaser:hover {
10
22
  border-color: var(--ks-border-color-card-interactive-hover);
11
23
  }
12
- .dsa-event-latest-teaser__calendar {
24
+ .dsa-event-latest-teaser__content {
25
+ display: flex;
26
+ gap: var(--ks-spacing-stack-s) var(--ks-spacing-inline-s);
27
+ flex-grow: 1;
28
+ min-width: 0;
29
+ flex-direction: column;
30
+ }
31
+ @container event-latest-teaser (min-width: 640px) {
32
+ .dsa-event-latest-teaser__content {
33
+ flex-direction: row;
34
+ }
35
+ }
36
+ .dsa-event-latest-teaser .dsa-event-latest-teaser-calendar {
13
37
  align-self: start;
14
38
  position: relative;
15
- container-type: inline-size;
16
39
  background-color: var(--ks-background-color-primary);
17
40
  color: var(--ks-color-fg-inverted);
18
41
  border-radius: var(--ks-border-radius-control);
19
42
  display: flex;
20
- flex-direction: column;
21
- align-items: center;
43
+ align-items: flex-end;
22
44
  justify-content: center;
23
- padding: var(--ks-spacing-inset-stretch-xs);
45
+ gap: 0.25em;
46
+ padding: var(--ks-spacing-inset-s);
24
47
  flex-shrink: 0;
25
- width: calc(var(--ks-spacing-l) * 3);
26
- height: calc(var(--ks-spacing-l) * 3);
48
+ font: var(--ks-font-display-l);
49
+ font-weight: var(--ks-font-weight-semi-bold);
27
50
  }
28
- .dsa-event-latest-teaser__content {
51
+ @container event-latest-teaser (min-width: 640px) {
52
+ .dsa-event-latest-teaser .dsa-event-latest-teaser-calendar {
53
+ container-type: inline-size;
54
+ padding: var(--ks-spacing-xxs);
55
+ flex-direction: column;
56
+ align-items: center;
57
+ padding: var(--ks-spacing-inset-stretch-xs);
58
+ gap: var(--ks-spacing-xxs);
59
+ width: calc(var(--ks-spacing-l) * 3);
60
+ height: calc(var(--ks-spacing-l) * 3);
61
+ }
62
+ .dsa-event-latest-teaser .dsa-event-latest-teaser-calendar__month, .dsa-event-latest-teaser .dsa-event-latest-teaser-calendar__day {
63
+ font-weight: var(--ks-font-weight-semi-bold) !important;
64
+ font-family: var(--ks-font-family-display);
65
+ line-height: 1;
66
+ }
67
+ .dsa-event-latest-teaser .dsa-event-latest-teaser-calendar__day {
68
+ font-size: 50cqw;
69
+ }
70
+ .dsa-event-latest-teaser .dsa-event-latest-teaser-calendar__month {
71
+ font-size: 25cqw;
72
+ }
73
+ }
74
+ .dsa-event-latest-teaser__text {
29
75
  display: flex;
30
76
  flex-direction: column;
77
+ justify-content: center;
31
78
  gap: var(--ks-spacing-stack-xs);
32
79
  flex-grow: 1;
33
80
  }
@@ -36,29 +83,27 @@
36
83
  font-weight: var(--ks-font-weight-semi-bold);
37
84
  color: var(--ks-text-color-display);
38
85
  }
39
- .dsa-event-latest-teaser__month, .dsa-event-latest-teaser__day {
40
- font-weight: var(--ks-font-weight-semi-bold);
41
- font-family: var(--ks-font-family-display);
42
- }
43
- .dsa-event-latest-teaser__day {
44
- font-size: 50cqw;
45
- }
46
- .dsa-event-latest-teaser__month {
47
- font-size: 25cqw;
48
- }
49
86
  .dsa-event-latest-teaser__infos {
50
87
  display: flex;
51
88
  flex-wrap: wrap;
52
89
  gap: var(--ks-spacing-xxs) var(--ks-spacing-inline-s);
90
+ flex-direction: column;
91
+ align-items: flex-start;
92
+ }
93
+ @container event-latest-teaser (min-width: 640px) {
94
+ .dsa-event-latest-teaser__infos {
95
+ flex-direction: row;
96
+ }
53
97
  }
54
98
  .dsa-event-latest-teaser__info {
55
99
  display: flex;
56
- gap: var(--ks-spacing-xxs);
100
+ gap: calc(var(--ks-spacing-xxs) * 0.75);
57
101
  font: var(--ks-font-interface-s);
58
102
  align-items: center;
59
103
  color: var(--ks-text-color-interface);
60
104
  }
61
105
  .dsa-event-latest-teaser__info .icon {
106
+ align-self: flex-start;
62
107
  width: calc(var(--ks-font-size-interface-s) * var(--ks-line-height-interface-s));
63
108
  height: calc(var(--ks-font-size-interface-s) * var(--ks-line-height-interface-s));
64
109
  color: var(--ks-text-color-primary);
@@ -72,6 +117,7 @@
72
117
  display: flex;
73
118
  align-items: center;
74
119
  text-wrap: nowrap;
120
+ margin-left: auto;
75
121
  }
76
122
  .dsa-event-latest-teaser__cta .icon {
77
123
  width: calc(var(--ks-font-size-interface-s) * var(--ks-line-height-interface-s));
@@ -1,11 +1,12 @@
1
1
  import "./event-latest-teaser.css";
2
- import { jsxs, jsx } from 'react/jsx-runtime';
2
+ import { jsx, jsxs } from 'react/jsx-runtime';
3
3
  import classnames from 'classnames';
4
4
  import { forwardRef, createContext, useContext } from 'react';
5
5
  import { Icon } from '@kickstartds/base/lib/icon';
6
+ import { Container } from '@kickstartds/core/lib/container';
6
7
 
7
8
  const EventLatestTeaserContextDefault = forwardRef(({ date, title, cta, calendar, url, location, ariaLabel, className, ...rest }, ref) => {
8
- return (jsxs("a", { className: classnames(className, "dsa-event-latest-teaser"), ...rest, href: url, ref: ref, "aria-label": ariaLabel, children: [jsxs("span", { className: "dsa-event-latest-teaser__calendar", children: [jsx("span", { className: "dsa-event-latest-teaser__day", children: calendar.day }), jsx("span", { className: "dsa-event-latest-teaser__month", children: calendar.month })] }), jsxs("span", { className: "dsa-event-latest-teaser__content", children: [jsx("span", { className: "dsa-event-latest-teaser__title", children: title }), jsxs("span", { className: "dsa-event-latest-teaser__infos", children: [jsxs("span", { className: "dsa-event-latest-teaser__info", children: [jsx(Icon, { "aria-hidden": true, icon: "date" }), date] }), jsxs("span", { className: "dsa-event-latest-teaser__info", children: [jsx(Icon, { "aria-hidden": true, icon: "map-pin" }), location] })] })] }), jsxs("span", { className: "dsa-event-latest-teaser__cta", children: [jsx("span", { children: cta }), jsx(Icon, { "aria-hidden": true, icon: "chevron-right" })] })] }));
9
+ return (jsx(Container, { name: "event-latest-teaser", children: jsxs("a", { className: classnames(className, "dsa-event-latest-teaser"), ...rest, href: url, ref: ref, "aria-label": ariaLabel, children: [jsxs("span", { className: "dsa-event-latest-teaser__content", children: [jsxs("span", { className: "dsa-event-latest-teaser-calendar", children: [jsx("span", { className: "dsa-event-latest-teaser-calendar__day", children: calendar.day }), jsx("span", { className: "dsa-event-latest-teaser-calendar__month", children: calendar.month })] }), jsxs("span", { className: "dsa-event-latest-teaser__text", children: [jsx("span", { className: "dsa-event-latest-teaser__title", children: title }), jsxs("span", { className: "dsa-event-latest-teaser__infos", children: [jsxs("span", { className: "dsa-event-latest-teaser__info", children: [jsx(Icon, { "aria-hidden": true, icon: "date" }), date] }), jsxs("span", { className: "dsa-event-latest-teaser__info", children: [jsx(Icon, { "aria-hidden": true, icon: "map-pin" }), location] })] })] })] }), jsxs("span", { className: "dsa-event-latest-teaser__cta", children: [jsx("span", { children: cta }), jsx(Icon, { "aria-hidden": true, icon: "chevron-right" })] })] }) }));
9
10
  });
10
11
  const EventLatestTeaserContext = createContext(EventLatestTeaserContextDefault);
11
12
  const EventLatestTeaser = forwardRef((props, ref) => {
@@ -1,3 +1,12 @@
1
+ .l-container--event-location {
2
+ /* stylelint-disable-next-line property-no-unknown */
3
+ container-name: event-location;
4
+ }
5
+
6
+ .l-container--event-location + .l-container--event-location {
7
+ margin-top: var(--ks-spacing-stack-m);
8
+ }
9
+
1
10
  .dsa-event-location {
2
11
  --dsa-event-location__icon--size: calc(var(--ks-font-size-copy-m) * var(--ks-line-height-copy-m));
3
12
  flex-wrap: wrap;
@@ -8,16 +17,30 @@
8
17
  background-color: var(--ks-background-color-accent);
9
18
  padding: var(--ks-spacing-inset-m);
10
19
  border-radius: var(--ks-border-radius-surface);
20
+ --dsa-event-location__info--flex-basis: 280px;
21
+ --dsa-event-location__appointments--min-width: 12em;
11
22
  }
12
- .dsa-event-location + .dsa-event-location {
13
- margin-top: var(--ks-spacing-stack-m);
23
+ .dsa-event-location--spacious {
24
+ --dsa-event-location__info--flex-basis: 50%;
25
+ --dsa-event-location__appointments--min-width: 20em;
14
26
  }
15
- .dsa-event-location__content {
27
+ .dsa-event-location__info {
28
+ display: flex;
29
+ gap: var(--ks-spacing-inline-xs);
30
+ flex-shrink: 1;
31
+ flex-grow: 1;
32
+ flex-basis: var(--dsa-event-location__info--flex-basis, 280px);
33
+ }
34
+ .dsa-event-location__icon {
35
+ color: var(--ks-text-color-primary);
36
+ width: var(--dsa-event-location__icon--size);
37
+ height: var(--dsa-event-location__icon--size);
38
+ flex-shrink: 0;
39
+ }
40
+ .dsa-event-location__text {
16
41
  display: flex;
17
42
  flex-direction: column;
18
43
  gap: var(--ks-spacing-stack-s);
19
- flex-grow: 0;
20
- flex-grow: 0;
21
44
  }
22
45
  .dsa-event-location__name {
23
46
  font: var(--ks-font-interface-m);
@@ -31,35 +54,17 @@
31
54
  gap: var(--ks-spacing-xxs);
32
55
  }
33
56
  .dsa-event-location__link {
57
+ width: fit-content;
34
58
  font: var(--ks-font-interface-s);
35
59
  }
36
- .dsa-event-location__icon {
37
- width: 2rem;
38
- height: 2rem;
39
- }
40
- .dsa-event-location__row {
41
- display: flex;
42
- flex-direction: row;
43
- gap: var(--ks-spacing-inline-m);
44
- flex-wrap: wrap;
45
- flex-shrink: 0;
46
- flex-grow: 1;
47
- flex-basis: 200px;
48
- }
49
- .dsa-event-location__icon {
50
- color: var(--ks-text-color-primary);
51
- width: var(--dsa-event-location__icon--size);
52
- height: var(--dsa-event-location__icon--size);
53
- }
54
- .dsa-event-location__item {
55
- display: flex;
56
- gap: var(--ks-spacing-stack-xs);
57
- }
58
60
  .dsa-event-location__appointments {
59
- display: flex;
60
- flex-direction: column;
61
+ display: grid;
62
+ justify-content: flex-end;
61
63
  gap: var(--ks-spacing-stack-s);
62
- flex-grow: 1;
64
+ flex-grow: 100;
65
+ flex-shrink: 0;
66
+ grid-template-columns: repeat(auto-fill, minmax(min(var(--dsa-event-location__appointments--min-width, 12em), 100%), 1fr));
67
+ font: var(--ks-font-interface-s);
63
68
  }
64
69
  .dsa-event-location .l-container--rich-text {
65
70
  container-type: normal;
@@ -73,6 +73,16 @@
73
73
  "Berlin Congress Center"
74
74
  ]
75
75
  },
76
+ "displayMode": {
77
+ "title": "Display Mode",
78
+ "description": "Spacious is recommended for 1-2 appointments, Compact for more than 2.",
79
+ "type": "string",
80
+ "enum": [
81
+ "spacious",
82
+ "compact"
83
+ ],
84
+ "default": "spacious"
85
+ },
76
86
  "address": {
77
87
  "title": "Address",
78
88
  "description": "Address of the appointment",
@@ -18,6 +18,13 @@
18
18
  "type": "string",
19
19
  "examples": ["Berlin Congress Center"]
20
20
  },
21
+ "displayMode": {
22
+ "title": "Display Mode",
23
+ "description": "Spacious is recommended for 1-2 appointments, Compact for more than 2.",
24
+ "type": "string",
25
+ "enum": ["spacious", "compact"],
26
+ "default": "spacious"
27
+ },
21
28
  "address": {
22
29
  "title": "Address",
23
30
  "description": "Address of the appointment",
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { EventLocationProps } from "../../EventLocationProps-dd4aeaa9.js";
2
+ import { EventLocationProps } from "../../EventLocationProps-871bc198.js";
3
3
  declare const EventLocationContextDefault: import("react").ForwardRefExoticComponent<EventLocationProps & import("react").RefAttributes<HTMLDivElement>>;
4
4
  declare const EventLocationContext: import("react").Context<import("react").ForwardRefExoticComponent<EventLocationProps & import("react").RefAttributes<HTMLDivElement>>>;
5
5
  declare const EventLocation: import("react").ForwardRefExoticComponent<EventLocationProps & import("react").RefAttributes<HTMLDivElement>>;
@@ -1,11 +1,13 @@
1
1
  import "./event-location.css";
2
2
  import { forwardRef, createElement, createContext, useContext } from 'react';
3
- import { jsxs, jsx } from 'react/jsx-runtime';
3
+ import { jsx, jsxs } from 'react/jsx-runtime';
4
+ import classnames from 'classnames';
4
5
  import { RichText } from '@kickstartds/base/lib/rich-text';
5
6
  import { Icon } from '@kickstartds/base/lib/icon';
6
7
  import { EventAppointment } from '../event-appointment/index.js';
8
+ import { Container } from '@kickstartds/core/lib/container';
7
9
 
8
- const EventLocationContextDefault = forwardRef(({ locationName, address, dates, links, ...rest }, ref) => (jsxs("div", { className: "dsa-event-location", ...rest, ref: ref, children: [address && (jsx("div", { className: "dsa-event-location__row", children: jsxs("div", { className: "dsa-event-location__item ", children: [jsx(Icon, { className: "dsa-event-location__icon", icon: "map-pin", "aria-hidden": true }), jsxs("div", { className: "dsa-event-location__content", children: [jsx("span", { className: "sr-only", children: "Address:" }), jsxs("address", { className: "dsa-event-location__address", children: [locationName && (jsx("span", { className: "dsa-event-location__name", children: locationName })), address && jsx(RichText, { text: address })] }), links && links.length > 0 && (jsx("div", { className: "dsa-event-location__links", children: links.map((link, index) => (jsx("a", { href: link.url, target: link.newTab ? "_blank" : "_self", className: "dsa-event-location__link", children: link.label }, index))) }))] })] }) })), dates && dates.length > 0 && (jsxs("div", { className: "dsa-event-location__appointments", children: [jsx("span", { className: "sr-only", children: "Appointments:" }), dates.map((item, index) => (createElement(EventAppointment, { ...item, key: index })))] }))] })));
10
+ const EventLocationContextDefault = forwardRef(({ locationName, address, dates, links, displayMode, ...rest }, ref) => (jsx(Container, { name: "event-location", children: jsxs("div", { className: classnames("dsa-event-location", displayMode === "spacious" && `dsa-event-location--spacious`), ...rest, ref: ref, children: [address && (jsxs("div", { className: "dsa-event-location__info ", children: [jsx(Icon, { className: "dsa-event-location__icon", icon: "map-pin", "aria-hidden": true }), jsxs("div", { className: "dsa-event-location__text", children: [jsx("span", { className: "sr-only", children: "Address:" }), jsxs("address", { className: "dsa-event-location__address", children: [locationName && (jsx("span", { className: "dsa-event-location__name", children: locationName })), address && jsx(RichText, { text: address })] }), links && links.length > 0 && (jsx("div", { className: "dsa-event-location__links", children: links.map((link, index) => (jsx("a", { href: link.url, target: link.newTab ? "_blank" : "_self", className: "dsa-event-location__link", children: link.label }, index))) }))] })] })), dates && dates.length > 0 && (jsxs("div", { className: "dsa-event-location__appointments", children: [jsx("span", { className: "sr-only", children: "Appointments:" }), dates.map((item, index) => (createElement(EventAppointment, { ...item, key: index })))] }))] }) })));
9
11
  const EventLocationContext = createContext(EventLocationContextDefault);
10
12
  const EventLocation = forwardRef((props, ref) => {
11
13
  const Component = useContext(EventLocationContext);
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { HTMLAttributes } from "react";
3
- import { ImageStoryProps } from "../../ImageStoryProps-e853e1e7.js";
3
+ import { ImageStoryProps } from "../../ImageStoryProps-00ddee3a.js";
4
4
  declare const ImageStoryContextDefault: import("react").ForwardRefExoticComponent<ImageStoryProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
5
5
  declare const ImageStoryContext: import("react").Context<import("react").ForwardRefExoticComponent<ImageStoryProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>>;
6
6
  declare const ImageStory: import("react").ForwardRefExoticComponent<ImageStoryProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
@@ -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";
34
- export * from "../../PageProps-aa29c554.js";
32
+ export * from "../../BlogPostProps-c760fd2a.js";
33
+ export * from "../../BlogOverviewProps-7caa223c.js";
34
+ export * from "../../PageProps-7caa223c.js";
35
35
  export { IconSprite, SettingsProps };
36
36
  export * from "../../EventDetailProps-42a7eebe.js";
@@ -1,4 +1,4 @@
1
- import { PageProps } from "../../PageProps-aa29c554.js";
1
+ import { PageProps } from "../../PageProps-7caa223c.js";
2
2
  import { FC, PropsWithChildren } from "react";
3
3
  declare const Page: FC<PropsWithChildren<PageProps>>;
4
4
  export type { PageProps };
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 25 Jun 2025 10:54:31 GMT
3
+ * Generated on Thu, 26 Jun 2025 10:55:32 GMT
4
4
  */
5
5
  :root, [ks-theme] {
6
6
  --ks-background-color-accent-base: var(--ks-color-fg-to-bg-9-base);
@@ -767,7 +767,7 @@
767
767
  "id": "page-archetypes-event-detail--event-detail",
768
768
  "group": "Page Archetypes/Event Detail",
769
769
  "name": "EventDetail",
770
- "code": "<EventDetail\n button={{\n label: 'See all Events',\n url: '/#'\n }}\n categories={[\n {\n label: 'Conference'\n },\n {\n label: 'Design Systems'\n }\n ]}\n description=\"\nJoin us for a day of inspiring talks, hands-on workshops, and networking with design system experts from around the world.\n\n**Highlights:**\n- Keynotes from industry leaders\n- Practical sessions on design tokens, accessibility, and scaling systems\n- Evening networking event with food & drinks\n \"\n downloads={[\n {\n format: 'PDF',\n name: 'Product Brochure',\n previewImage: 'img/offset-image.png',\n size: '2.5 MB',\n url: 'img/offset-image.png'\n },\n {\n format: 'PDF',\n name: 'Company Brochure',\n previewImage: 'img/kickstartDS/CMS-Starter producthunt-slide-01.svg',\n size: '3.2 MB',\n url: 'img/kickstartDS/CMS-Starter producthunt-slide-01.svg'\n },\n {\n format: 'DOC',\n name: 'User Guide',\n size: '20 KB',\n url: 'assets/user-guide.doc'\n },\n {\n format: 'TXT',\n name: 'Technical Specifications',\n size: '12 KB',\n url: 'assets/technical-specifications.txt'\n }\n ]}\n images={[\n {\n alt: 'Alt text Image 1',\n caption: 'Caption Image 1',\n src: 'img/close-up-young-business-team-working.png'\n },\n {\n alt: 'Alt text Image 2',\n caption: 'Caption Image 2',\n src: 'img/low-angle-tall-building-with-many-windows_23-2148230392.png'\n },\n {\n alt: 'Alt text Image 3',\n caption: 'Caption Image 3',\n src: 'img/full-shot-different-people-working-together.png'\n },\n {\n alt: 'Alt text Image 4',\n caption: 'Caption Image 4',\n src: 'img/top-view-desk-with-keyboard-drawing-pad.png'\n }\n ]}\n intro=\"A full-day event for design system professionals and enthusiasts. Join us to learn, share, and connect with like-minded individuals.\"\n locations={[\n {\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 links: [\n {\n label: 'Open in Google Maps',\n newTab: true,\n url: 'https://maps.google.com/?q=Berlin+Congress+Center'\n }\n ],\n locationName: 'Berlin Congress Center'\n },\n {\n address: 'Messeplatz 1<br />\\n 50679 Köln',\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 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://www.berlincongresscenter.com'\n }\n ],\n locationName: 'Köln Messe'\n }\n ]}\n title=\"Systemics Design Conference 2025\"\n/>",
770
+ "code": "<EventDetail\n button={{\n label: 'See all Events',\n url: '/#'\n }}\n categories={[\n {\n label: 'Conference'\n },\n {\n label: 'Design Systems'\n }\n ]}\n description=\"\nJoin us for a day of inspiring talks, hands-on workshops, and networking with design system experts from around the world.\n\n**Highlights:**\n- Keynotes from industry leaders\n- Practical sessions on design tokens, accessibility, and scaling systems\n- Evening networking event with food & drinks\n \"\n downloads={[\n {\n format: 'PDF',\n name: 'Product Brochure',\n previewImage: 'img/offset-image.png',\n size: '2.5 MB',\n url: 'img/offset-image.png'\n },\n {\n format: 'PDF',\n name: 'Company Brochure',\n previewImage: 'img/kickstartDS/CMS-Starter producthunt-slide-01.svg',\n size: '3.2 MB',\n url: 'img/kickstartDS/CMS-Starter producthunt-slide-01.svg'\n },\n {\n format: 'DOC',\n name: 'User Guide',\n size: '20 KB',\n url: 'assets/user-guide.doc'\n },\n {\n format: 'TXT',\n name: 'Technical Specifications',\n size: '12 KB',\n url: 'assets/technical-specifications.txt'\n }\n ]}\n images={[\n {\n alt: 'Alt text Image 1',\n caption: 'Caption Image 1',\n src: 'img/close-up-young-business-team-working.png'\n },\n {\n alt: 'Alt text Image 2',\n caption: 'Caption Image 2',\n src: 'img/low-angle-tall-building-with-many-windows_23-2148230392.png'\n },\n {\n alt: 'Alt text Image 3',\n caption: 'Caption Image 3',\n src: 'img/full-shot-different-people-working-together.png'\n },\n {\n alt: 'Alt text Image 4',\n caption: 'Caption Image 4',\n src: 'img/top-view-desk-with-keyboard-drawing-pad.png'\n }\n ]}\n intro=\"A full-day event for design system professionals and enthusiasts. Join us to learn, share, and connect with like-minded individuals.\"\n locations={[\n {\n address: 'Messeplatz 1<br />\\n 50679 Köln',\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 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: 'compact',\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 locationName: 'Köln Messe'\n },\n {\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: 'compact',\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://www.berlincongresscenter.com'\n }\n ],\n locationName: 'Berlin Congress Center (BCC) Redaktion & Event GmbH & Co. KG'\n }\n ]}\n title=\"Systemics Design Conference 2025\"\n/>",
771
771
  "args": {
772
772
  "categories": [
773
773
  {
@@ -788,6 +788,14 @@
788
788
  "newTab": true,
789
789
  "ariaLabel": "Register for the event on 18th September 2025 from 09:00 to 17:00"
790
790
  },
791
+ {
792
+ "date": "2025-09-18",
793
+ "time": "09:00 – 17:00",
794
+ "label": "Register",
795
+ "url": "#",
796
+ "newTab": true,
797
+ "ariaLabel": "Register for the event on 18th September 2025 from 09:00 to 17:00"
798
+ },
791
799
  {
792
800
  "date": "2025-09-18",
793
801
  "time": "09:00 – 17:00",
@@ -797,8 +805,9 @@
797
805
  "ariaLabel": "Register for the event on 18th September 2025 from 09:00 to 17:00"
798
806
  }
799
807
  ],
800
- "locationName": "Berlin Congress Center",
801
- "address": "Alexanderplatz 1<br />\n 10178 Berlin",
808
+ "locationName": "Köln Messe",
809
+ "displayMode": "compact",
810
+ "address": "Messeplatz 1<br />\n 50679 Köln",
802
811
  "links": [
803
812
  {
804
813
  "newTab": true,
@@ -809,6 +818,14 @@
809
818
  },
810
819
  {
811
820
  "dates": [
821
+ {
822
+ "date": "2025-09-18",
823
+ "time": "09:00 – 17:00",
824
+ "label": "Register",
825
+ "url": "#",
826
+ "newTab": true,
827
+ "ariaLabel": "Register for the event on 18th September 2025 from 09:00 to 17:00"
828
+ },
812
829
  {
813
830
  "date": "2025-09-18",
814
831
  "time": "09:00 – 17:00",
@@ -818,8 +835,9 @@
818
835
  "ariaLabel": "Register for the event on 18th September 2025 from 09:00 to 17:00"
819
836
  }
820
837
  ],
821
- "locationName": "Köln Messe",
822
- "address": "Messeplatz 1<br />\n 50679 Köln",
838
+ "locationName": "Berlin Congress Center (BCC) Redaktion & Event GmbH & Co. KG",
839
+ "displayMode": "compact",
840
+ "address": "Alexanderplatz 1<br />\n 10178 Berlin",
823
841
  "links": [
824
842
  {
825
843
  "newTab": true,
@@ -1581,50 +1599,58 @@
1581
1599
  "id": "event-event-latest--default",
1582
1600
  "group": "Event/ Event Latest",
1583
1601
  "name": "Default",
1584
- "code": "<EventLatest\n events={[\n {\n ariaLabel: 'Event teaser for ',\n calendar: {\n day: '30',\n month: 'Dec'\n },\n cta: 'Show event',\n date: '12/30/2022',\n headline: 'Event 1',\n link: {\n text: 'Show event 1',\n url: 'https://example.com/event1'\n },\n location: 'Location 1',\n title: 'This is a event teaser title',\n url: 'https://example.com'\n },\n {\n ariaLabel: 'Event teaser for ',\n calendar: {\n day: '30',\n month: 'Dec'\n },\n cta: 'Show event',\n date: '01/15/2023',\n headline: 'Event 2',\n link: {\n text: 'Show event 2',\n url: 'https://example.com/event2'\n },\n location: 'Location 2',\n title: 'This is a event teaser title',\n url: 'https://example.com'\n }\n ]}\n headline=\"Latest events\"\n link={{\n text: 'Show event',\n url: '#'\n }}\n text=\"Check out our upcoming events and mark your calendar!\"\n/>",
1602
+ "code": "<EventLatest\n events={[\n {\n ariaLabel: 'Systemics Design Conference on September 18, 2025 in Berlin',\n calendar: {\n day: '18',\n month: 'Sep'\n },\n cta: 'View event',\n date: '09/18/2025',\n location: 'Berlin Congress Center, Berlin',\n title: 'Systemics Design Conference',\n url: 'https://systemics.events/conference-berlin'\n },\n {\n ariaLabel: 'UX Leadership Summit on October 5, 2025 in Cologne',\n calendar: {\n day: '05',\n month: 'Oct'\n },\n cta: 'View event',\n date: '10/05/2025',\n location: 'Köln Messe, Cologne',\n title: 'UX Leadership Summit',\n url: 'https://uxsummit.de/koeln-2025'\n },\n {\n ariaLabel: 'Frontend Future Days on November 12, 2025 in Hamburg',\n calendar: {\n day: '12',\n month: 'Nov'\n },\n cta: 'View event',\n date: '11/12/2025',\n location: 'Hamburg Digital Campus, Hamburg',\n title: 'Frontend Future Days',\n url: 'https://frontendfuture.de/hamburg'\n },\n {\n ariaLabel: 'Accessibility in Practice Workshop on December 1, 2025 online',\n calendar: {\n day: '01',\n month: 'Dec'\n },\n cta: 'View event',\n date: '12/01/2025',\n location: 'Online',\n title: 'Accessibility in Practice Workshop',\n url: 'https://a11yworkshop.com/dec-2025'\n }\n ]}\n />",
1585
1603
  "args": {
1586
- "headline": "Latest events",
1587
- "text": "Check out our upcoming events and mark your calendar!",
1588
1604
  "events": [
1589
1605
  {
1590
- "date": "12/30/2022",
1606
+ "date": "09/18/2025",
1591
1607
  "calendar": {
1592
- "month": "Dec",
1593
- "day": "30"
1608
+ "month": "Sep",
1609
+ "day": "18"
1594
1610
  },
1595
- "title": "This is a event teaser title",
1596
- "location": "Location 1",
1597
- "url": "https://example.com",
1598
- "cta": "Show event",
1599
- "ariaLabel": "Event teaser for ",
1600
- "headline": "Event 1",
1601
- "link": {
1602
- "url": "https://example.com/event1",
1603
- "text": "Show event 1"
1604
- }
1611
+ "title": "Systemics Design Conference",
1612
+ "location": "Berlin Congress Center, Berlin",
1613
+ "url": "https://systemics.events/conference-berlin",
1614
+ "cta": "View event",
1615
+ "ariaLabel": "Systemics Design Conference on September 18, 2025 in Berlin"
1605
1616
  },
1606
1617
  {
1607
- "date": "01/15/2023",
1618
+ "date": "10/05/2025",
1619
+ "calendar": {
1620
+ "month": "Oct",
1621
+ "day": "05"
1622
+ },
1623
+ "title": "UX Leadership Summit",
1624
+ "location": "Köln Messe, Cologne",
1625
+ "url": "https://uxsummit.de/koeln-2025",
1626
+ "cta": "View event",
1627
+ "ariaLabel": "UX Leadership Summit on October 5, 2025 in Cologne"
1628
+ },
1629
+ {
1630
+ "date": "11/12/2025",
1631
+ "calendar": {
1632
+ "month": "Nov",
1633
+ "day": "12"
1634
+ },
1635
+ "title": "Frontend Future Days",
1636
+ "location": "Hamburg Digital Campus, Hamburg",
1637
+ "url": "https://frontendfuture.de/hamburg",
1638
+ "cta": "View event",
1639
+ "ariaLabel": "Frontend Future Days on November 12, 2025 in Hamburg"
1640
+ },
1641
+ {
1642
+ "date": "12/01/2025",
1608
1643
  "calendar": {
1609
1644
  "month": "Dec",
1610
- "day": "30"
1645
+ "day": "01"
1611
1646
  },
1612
- "title": "This is a event teaser title",
1613
- "location": "Location 2",
1614
- "url": "https://example.com",
1615
- "cta": "Show event",
1616
- "ariaLabel": "Event teaser for ",
1617
- "headline": "Event 2",
1618
- "link": {
1619
- "url": "https://example.com/event2",
1620
- "text": "Show event 2"
1621
- }
1647
+ "title": "Accessibility in Practice Workshop",
1648
+ "location": "Online",
1649
+ "url": "https://a11yworkshop.com/dec-2025",
1650
+ "cta": "View event",
1651
+ "ariaLabel": "Accessibility in Practice Workshop on December 1, 2025 online"
1622
1652
  }
1623
- ],
1624
- "link": {
1625
- "url": "#",
1626
- "text": "Show event"
1627
- }
1653
+ ]
1628
1654
  },
1629
1655
  "screenshot": "img/screenshots/event-event-latest--default.png"
1630
1656
  },
@@ -1632,7 +1658,7 @@
1632
1658
  "id": "event-event-location--default",
1633
1659
  "group": "Event/ Event Location",
1634
1660
  "name": "Default",
1635
- "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 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/>",
1661
+ "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/>",
1636
1662
  "args": {
1637
1663
  "dates": [
1638
1664
  {
@@ -1653,6 +1679,7 @@
1653
1679
  }
1654
1680
  ],
1655
1681
  "locationName": "Berlin Congress Center",
1682
+ "displayMode": "spacious",
1656
1683
  "address": "Alexanderplatz 1<br />\n 10178 Berlin",
1657
1684
  "links": [
1658
1685
  {
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { HTMLAttributes, FC, PropsWithChildren } from "react";
3
- import { SectionProps } from "../../SectionProps-7caa223c.js";
3
+ import { SectionProps } from "../../SectionProps-00ddee3a.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>>;
package/dist/global.css CHANGED
@@ -347,7 +347,7 @@ h3 {
347
347
  [ks-inverted=false],
348
348
  [ks-inverted=true] {
349
349
  --spacing-base: 18px;
350
- --spacing-shrink-factor: 0.675;
350
+ --spacing-shrink-factor: 0.65;
351
351
  --spacing-grow-factor: 1.275;
352
352
  --spacing-bp-factor: 1.0135;
353
353
  --spacing-xxs-bp-factor: calc(1 * var(--spacing-bp-factor));
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 25 Jun 2025 10:54:34 GMT
3
+ * Generated on Thu, 26 Jun 2025 10:55:35 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, 25 Jun 2025 10:54:38 GMT
2730
+ * Generated on Thu, 26 Jun 2025 10:55:39 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, 25 Jun 2025 10:54:36 GMT
5461
+ * Generated on Thu, 26 Jun 2025 10:55:37 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, 25 Jun 2025 10:54:40 GMT
8462
+ * Generated on Thu, 26 Jun 2025 10:55:41 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, 25 Jun 2025 10:54:31 GMT
3
+ * Generated on Thu, 26 Jun 2025 10:55:32 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, 25 Jun 2025 10:54:31 GMT
3
+ * Generated on Thu, 26 Jun 2025 10:55:33 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.68--canary.45.1716.0",
3
+ "version": "1.6.68--canary.45.1723.0",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kickstartDS/ds-agency-premium#readme",
6
6
  "bugs": {