@kickstartds/ds-agency-premium 1.6.68--canary.45.1719.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 (28) 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-location/event-location.css +35 -30
  14. package/dist/components/event-location/event-location.schema.dereffed.json +10 -0
  15. package/dist/components/event-location/event-location.schema.json +7 -0
  16. package/dist/components/event-location/index.d.ts +1 -1
  17. package/dist/components/event-location/index.js +4 -2
  18. package/dist/components/image-story/index.d.ts +1 -1
  19. package/dist/components/index/index.d.ts +3 -3
  20. package/dist/components/page/index.d.ts +1 -1
  21. package/dist/components/page-wrapper/tokens.css +1 -1
  22. package/dist/components/presets.json +25 -6
  23. package/dist/components/section/index.d.ts +1 -1
  24. package/dist/tokens/themes.css +4 -4
  25. package/dist/tokens/tokens.css +1 -1
  26. package/dist/tokens/tokens.js +1 -1
  27. package/package.json +1 -1
  28. /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: [
@@ -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;
26
+ }
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;
14
39
  }
15
- .dsa-event-location__content {
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-inline-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 14:11:24 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,
@@ -1640,7 +1658,7 @@
1640
1658
  "id": "event-event-location--default",
1641
1659
  "group": "Event/ Event Location",
1642
1660
  "name": "Default",
1643
- "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/>",
1644
1662
  "args": {
1645
1663
  "dates": [
1646
1664
  {
@@ -1661,6 +1679,7 @@
1661
1679
  }
1662
1680
  ],
1663
1681
  "locationName": "Berlin Congress Center",
1682
+ "displayMode": "spacious",
1664
1683
  "address": "Alexanderplatz 1<br />\n 10178 Berlin",
1665
1684
  "links": [
1666
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>>;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 25 Jun 2025 14:11:27 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 14:11:31 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 14:11:29 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 14:11:33 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 14:11:24 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 14:11:25 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.1719.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": {