@kickstartds/ds-agency-premium 1.6.68--canary.45.1695.0 → 1.6.68--canary.45.1698.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.
- package/dist/{BlogOverviewProps-9f207f1c.d.ts → BlogOverviewProps-7caa223c.d.ts} +1 -1
- package/dist/{BlogPostProps-6b3cff22.d.ts → BlogPostProps-d9decb7c.d.ts} +1 -1
- package/dist/EventDetailProps-19b81db8.d.ts +1 -1
- package/dist/{EventListLocationProps-204fd84f.d.ts → EventListLocationProps-d4345e0e.d.ts} +16 -4
- package/dist/{PageProps-aa29c554.d.ts → PageProps-7caa223c.d.ts} +1 -1
- package/dist/{SectionProps-7caa223c.d.ts → SectionProps-03ff6d21.d.ts} +1 -1
- package/dist/components/blog-overview/index.d.ts +1 -1
- package/dist/components/blog-post/index.d.ts +1 -1
- package/dist/components/event-detail/event-detail.schema.dereffed.json +34 -8
- package/dist/components/event-detail/index.js +4 -4
- package/dist/components/event-list-appointment/event-list-appointment.css +6 -3
- package/dist/components/event-list-appointment/index.js +1 -1
- package/dist/components/event-list-location/event-list-location.css +25 -3
- package/dist/components/event-list-location/event-list-location.schema.dereffed.json +34 -8
- package/dist/components/event-list-location/event-list-location.schema.json +28 -6
- package/dist/components/event-list-location/index.d.ts +1 -1
- package/dist/components/event-list-location/index.js +1 -1
- package/dist/components/image-story/index.d.ts +1 -1
- package/dist/components/index/index.d.ts +3 -3
- package/dist/components/page/index.d.ts +1 -1
- package/dist/components/page-wrapper/tokens.css +1 -1
- package/dist/components/presets.json +39 -8
- package/dist/components/section/index.d.ts +1 -1
- package/dist/global.css +14 -2
- package/dist/tokens/themes.css +4 -4
- package/dist/tokens/tokens.css +1 -1
- package/dist/tokens/tokens.js +1 -1
- package/package.json +1 -1
- /package/dist/{ImageStoryProps-e853e1e7.d.ts → ImageStoryProps-03ff6d21.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-
|
|
6
|
+
import { SectionProps } from "./SectionProps-03ff6d21.js";
|
|
7
7
|
import { BlogTeaserProps } from "./BlogTeaserProps-f5855e93.js";
|
|
8
8
|
import { CtaProps } from "./CtaProps-8a0dba0d.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-d9decb7c.js";
|
|
8
|
-
import { SectionProps } from "./SectionProps-
|
|
8
|
+
import { SectionProps } from "./SectionProps-03ff6d21.js";
|
|
9
9
|
import { CtaProps } from "./CtaProps-8a0dba0d.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 { EventListLocationProps } from "./EventListLocationProps-
|
|
6
|
+
import { EventListLocationProps } from "./EventListLocationProps-d4345e0e.js";
|
|
7
7
|
/**
|
|
8
8
|
* Title of the event
|
|
9
9
|
*/
|
|
@@ -8,17 +8,29 @@ import { EventListAppointmentProps } from "./EventListAppointmentProps-da54c3b9.
|
|
|
8
8
|
* List of dates of the event
|
|
9
9
|
*/
|
|
10
10
|
type Dates = EventListAppointmentProps[];
|
|
11
|
+
/**
|
|
12
|
+
* Name of the event location
|
|
13
|
+
*/
|
|
14
|
+
type LocationName = string;
|
|
11
15
|
/**
|
|
12
16
|
* Address of the appointment
|
|
13
17
|
*/
|
|
14
18
|
type Address = string;
|
|
15
19
|
/**
|
|
16
|
-
*
|
|
20
|
+
* Links related to the event location
|
|
17
21
|
*/
|
|
18
|
-
type
|
|
22
|
+
type Links = {
|
|
23
|
+
href: string;
|
|
24
|
+
label: string;
|
|
25
|
+
/**
|
|
26
|
+
* Open link in a new tab
|
|
27
|
+
*/
|
|
28
|
+
newTab?: boolean;
|
|
29
|
+
}[];
|
|
19
30
|
interface EventListLocationProps {
|
|
20
31
|
dates?: Dates;
|
|
32
|
+
locationName?: LocationName;
|
|
21
33
|
address?: Address;
|
|
22
|
-
|
|
34
|
+
links?: Links;
|
|
23
35
|
}
|
|
24
|
-
export { Dates, Address,
|
|
36
|
+
export { Dates, LocationName, Address, Links, EventListLocationProps };
|
|
@@ -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-
|
|
6
|
+
import { SectionProps } from "./SectionProps-03ff6d21.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-7ef528ec.js";
|
|
|
10
10
|
import { GalleryProps } from "./GalleryProps-76e7de44.js";
|
|
11
11
|
import { HeroProps } from "./HeroProps-aa4e6431.js";
|
|
12
12
|
import { HtmlProps } from "./HtmlProps-9d091769.js";
|
|
13
|
-
import { ImageStoryProps } from "./ImageStoryProps-
|
|
13
|
+
import { ImageStoryProps } from "./ImageStoryProps-03ff6d21.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-
|
|
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-
|
|
1
|
+
import { BlogPostProps } from "../../BlogPostProps-d9decb7c.js";
|
|
2
2
|
import { FC, PropsWithChildren } from "react";
|
|
3
3
|
declare const BlogPost: FC<PropsWithChildren<BlogPostProps>>;
|
|
4
4
|
export type { BlogPostProps };
|
|
@@ -106,6 +106,14 @@
|
|
|
106
106
|
"additionalProperties": false
|
|
107
107
|
}
|
|
108
108
|
},
|
|
109
|
+
"locationName": {
|
|
110
|
+
"title": "Location Name",
|
|
111
|
+
"description": "Name of the event location",
|
|
112
|
+
"type": "string",
|
|
113
|
+
"examples": [
|
|
114
|
+
"Berlin Congress Center"
|
|
115
|
+
]
|
|
116
|
+
},
|
|
109
117
|
"address": {
|
|
110
118
|
"title": "Address",
|
|
111
119
|
"description": "Address of the appointment",
|
|
@@ -114,14 +122,32 @@
|
|
|
114
122
|
"Berlin Congress Center<br />Alexanderplatz 1<br />10178 Berlin"
|
|
115
123
|
]
|
|
116
124
|
},
|
|
117
|
-
"
|
|
118
|
-
"title": "
|
|
119
|
-
"description": "
|
|
120
|
-
"type": "
|
|
121
|
-
"
|
|
122
|
-
|
|
123
|
-
"
|
|
124
|
-
|
|
125
|
+
"links": {
|
|
126
|
+
"title": "Links",
|
|
127
|
+
"description": "Links related to the event location",
|
|
128
|
+
"type": "array",
|
|
129
|
+
"items": {
|
|
130
|
+
"type": "object",
|
|
131
|
+
"properties": {
|
|
132
|
+
"href": {
|
|
133
|
+
"type": "string",
|
|
134
|
+
"format": "uri"
|
|
135
|
+
},
|
|
136
|
+
"label": {
|
|
137
|
+
"type": "string"
|
|
138
|
+
},
|
|
139
|
+
"newTab": {
|
|
140
|
+
"type": "boolean",
|
|
141
|
+
"default": true,
|
|
142
|
+
"description": "Open link in a new tab"
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
"required": [
|
|
146
|
+
"href",
|
|
147
|
+
"label"
|
|
148
|
+
],
|
|
149
|
+
"additionalProperties": false
|
|
150
|
+
}
|
|
125
151
|
},
|
|
126
152
|
"type": {
|
|
127
153
|
"const": "event-list-location"
|
|
@@ -5,6 +5,7 @@ import { Section } from '../section/index.js';
|
|
|
5
5
|
import { EventHeader } from '../event-header/index.js';
|
|
6
6
|
import { Gallery } from '../gallery/index.js';
|
|
7
7
|
import { Downloads } from '../downloads/index.js';
|
|
8
|
+
import { Headline } from '../headline/index.js';
|
|
8
9
|
import 'react';
|
|
9
10
|
import '@kickstartds/base/lib/icon';
|
|
10
11
|
import '../event-list-appointment/index.js';
|
|
@@ -13,15 +14,14 @@ import '@kickstartds/core/lib/react';
|
|
|
13
14
|
import '@kickstartds/base/lib/section';
|
|
14
15
|
import '../section/js/Section.client.js';
|
|
15
16
|
import '@kickstartds/core/lib/component';
|
|
16
|
-
import '../headline/index.js';
|
|
17
|
-
import 'markdown-to-jsx';
|
|
18
|
-
import '@kickstartds/base/lib/headline';
|
|
19
17
|
import '../text/index.js';
|
|
20
18
|
import '@kickstartds/base/lib/tag-label';
|
|
21
19
|
import '@kickstartds/base/lib/text-media';
|
|
22
20
|
import '@kickstartds/base/lib/picture';
|
|
21
|
+
import 'markdown-to-jsx';
|
|
22
|
+
import '@kickstartds/base/lib/headline';
|
|
23
23
|
|
|
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 && (
|
|
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(EventListLocation, { ...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 && (jsx(Section, { width: "narrow", spaceBefore: "none", spaceAfter: "none", children: jsx(Downloads, { downloads: downloads }) })), jsx(Section, { width: "narrow", buttons: [
|
|
25
25
|
{
|
|
26
26
|
label: "See all Events",
|
|
27
27
|
target: "/#",
|
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
.dsa-event-list-appointment {
|
|
2
|
-
--g-link--text-decoration: none;
|
|
3
|
-
--g-link--text-decoration-hover: none;
|
|
4
2
|
--g-link--color: var(--ks-text-color-interface-interactive);
|
|
5
3
|
--g-link--color-hover: var(--ks-text-color-interface-interactive);
|
|
6
4
|
--g-link--border-radius: var(--ks-border-radius-control);
|
|
@@ -33,10 +31,15 @@
|
|
|
33
31
|
.dsa-event-list-appointment__label {
|
|
34
32
|
display: flex;
|
|
35
33
|
align-items: center;
|
|
36
|
-
color: var(--
|
|
34
|
+
color: var(--dsa-link--color);
|
|
37
35
|
font: var(--ks-font-interface-s);
|
|
38
36
|
align-self: flex-end;
|
|
39
37
|
font-weight: var(--ks-font-weight-semi-bold);
|
|
38
|
+
transition: var(--ks-transition-hover);
|
|
39
|
+
transition-property: color;
|
|
40
|
+
}
|
|
41
|
+
.dsa-event-list-appointment__label:hover {
|
|
42
|
+
color: var(--dsa-link--color_hover);
|
|
40
43
|
}
|
|
41
44
|
.dsa-event-list-appointment__label .icon {
|
|
42
45
|
width: 1.75em;
|
|
@@ -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 EventListAppointmentContextDefault = forwardRef(({ date, time, label, href, newTab, ariaLabel }, ref) => (jsxs("a", { className: "dsa-event-list-appointment", target: newTab ? "_blank" : "_self", "aria-label": ariaLabel, href: href, ref: ref, children: [jsxs("span", { className: "dsa-event-list-appointment__infos", children: [date && (jsxs("span", { className: "dsa-event-list-appointment__info", children: [jsx(Icon, { className: "dsa-event-list-appointment__icon", "aria-
|
|
6
|
+
const EventListAppointmentContextDefault = forwardRef(({ date, time, label, href, newTab, ariaLabel }, ref) => (jsxs("a", { className: "dsa-event-list-appointment", target: newTab ? "_blank" : "_self", "aria-label": ariaLabel, href: href, ref: ref, children: [jsxs("span", { className: "dsa-event-list-appointment__infos", children: [date && (jsxs("span", { className: "dsa-event-list-appointment__info", children: [jsx(Icon, { className: "dsa-event-list-appointment__icon", "aria-hidden": true, icon: "date" }), date] })), time && (jsxs("span", { className: "dsa-event-list-appointment__info", children: [jsx(Icon, { className: "dsa-event-list-appointment__icon", "aria-hidden": true, icon: "time" }), time] }))] }), jsxs("span", { className: "dsa-event-list-appointment__label", children: [label, jsx(Icon, { icon: "chevron-right" })] })] })));
|
|
7
7
|
const EventListAppointmentContext = createContext(EventListAppointmentContextDefault);
|
|
8
8
|
const EventListAppointment = forwardRef((props, ref) => {
|
|
9
9
|
const Component = useContext(EventListAppointmentContext);
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
.dsa-event-list-location {
|
|
2
|
-
--dsa-event-list-location__icon--size: calc(
|
|
3
|
-
var(--ks-font-size-copy-m) * var(--ks-line-height-copy-m)
|
|
4
|
-
);
|
|
2
|
+
--dsa-event-list-location__icon--size: calc(var(--ks-font-size-copy-m) * var(--ks-line-height-copy-m));
|
|
5
3
|
flex-wrap: wrap;
|
|
6
4
|
display: flex;
|
|
7
5
|
flex-direction: row;
|
|
@@ -11,6 +9,30 @@
|
|
|
11
9
|
padding: var(--ks-spacing-inset-m);
|
|
12
10
|
border-radius: var(--ks-border-radius-surface);
|
|
13
11
|
}
|
|
12
|
+
.dsa-event-list-location + .dsa-event-list-location {
|
|
13
|
+
margin-top: var(--ks-spacing-stack-m);
|
|
14
|
+
}
|
|
15
|
+
.dsa-event-list-location__content {
|
|
16
|
+
display: flex;
|
|
17
|
+
flex-direction: column;
|
|
18
|
+
gap: var(--ks-spacing-stack-s);
|
|
19
|
+
flex-grow: 0;
|
|
20
|
+
flex-grow: 0;
|
|
21
|
+
}
|
|
22
|
+
.dsa-event-list-location__name {
|
|
23
|
+
font: var(--ks-font-interface-m);
|
|
24
|
+
color: var(--dsa-topic--color);
|
|
25
|
+
font-weight: var(--dsa-topic--font-weight);
|
|
26
|
+
}
|
|
27
|
+
.dsa-event-list-location__links {
|
|
28
|
+
display: flex;
|
|
29
|
+
flex-direction: column;
|
|
30
|
+
justify-content: flex-end;
|
|
31
|
+
gap: var(--ks-spacing-xxs);
|
|
32
|
+
}
|
|
33
|
+
.dsa-event-list-location__link {
|
|
34
|
+
font: var(--ks-font-interface-s);
|
|
35
|
+
}
|
|
14
36
|
.dsa-event-list-location__icon {
|
|
15
37
|
width: 2rem;
|
|
16
38
|
height: 2rem;
|
|
@@ -65,6 +65,14 @@
|
|
|
65
65
|
"additionalProperties": false
|
|
66
66
|
}
|
|
67
67
|
},
|
|
68
|
+
"locationName": {
|
|
69
|
+
"title": "Location Name",
|
|
70
|
+
"description": "Name of the event location",
|
|
71
|
+
"type": "string",
|
|
72
|
+
"examples": [
|
|
73
|
+
"Berlin Congress Center"
|
|
74
|
+
]
|
|
75
|
+
},
|
|
68
76
|
"address": {
|
|
69
77
|
"title": "Address",
|
|
70
78
|
"description": "Address of the appointment",
|
|
@@ -73,14 +81,32 @@
|
|
|
73
81
|
"Berlin Congress Center<br />Alexanderplatz 1<br />10178 Berlin"
|
|
74
82
|
]
|
|
75
83
|
},
|
|
76
|
-
"
|
|
77
|
-
"title": "
|
|
78
|
-
"description": "
|
|
79
|
-
"type": "
|
|
80
|
-
"
|
|
81
|
-
|
|
82
|
-
"
|
|
83
|
-
|
|
84
|
+
"links": {
|
|
85
|
+
"title": "Links",
|
|
86
|
+
"description": "Links related to the event location",
|
|
87
|
+
"type": "array",
|
|
88
|
+
"items": {
|
|
89
|
+
"type": "object",
|
|
90
|
+
"properties": {
|
|
91
|
+
"href": {
|
|
92
|
+
"type": "string",
|
|
93
|
+
"format": "uri"
|
|
94
|
+
},
|
|
95
|
+
"label": {
|
|
96
|
+
"type": "string"
|
|
97
|
+
},
|
|
98
|
+
"newTab": {
|
|
99
|
+
"type": "boolean",
|
|
100
|
+
"default": true,
|
|
101
|
+
"description": "Open link in a new tab"
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"required": [
|
|
105
|
+
"href",
|
|
106
|
+
"label"
|
|
107
|
+
],
|
|
108
|
+
"additionalProperties": false
|
|
109
|
+
}
|
|
84
110
|
},
|
|
85
111
|
"type": {
|
|
86
112
|
"const": "event-list-location"
|
|
@@ -12,6 +12,12 @@
|
|
|
12
12
|
"$ref": "http://schema.mydesignsystem.com/event-list-appointment.schema.json"
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
|
+
"locationName": {
|
|
16
|
+
"title": "Location Name",
|
|
17
|
+
"description": "Name of the event location",
|
|
18
|
+
"type": "string",
|
|
19
|
+
"examples": ["Berlin Congress Center"]
|
|
20
|
+
},
|
|
15
21
|
"address": {
|
|
16
22
|
"title": "Address",
|
|
17
23
|
"description": "Address of the appointment",
|
|
@@ -20,12 +26,28 @@
|
|
|
20
26
|
"Berlin Congress Center<br />Alexanderplatz 1<br />10178 Berlin"
|
|
21
27
|
]
|
|
22
28
|
},
|
|
23
|
-
"
|
|
24
|
-
"title": "
|
|
25
|
-
"description": "
|
|
26
|
-
"type": "
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
+
"links": {
|
|
30
|
+
"title": "Links",
|
|
31
|
+
"description": "Links related to the event location",
|
|
32
|
+
"type": "array",
|
|
33
|
+
"items": {
|
|
34
|
+
"type": "object",
|
|
35
|
+
"properties": {
|
|
36
|
+
"href": {
|
|
37
|
+
"type": "string",
|
|
38
|
+
"format": "uri"
|
|
39
|
+
},
|
|
40
|
+
"label": {
|
|
41
|
+
"type": "string"
|
|
42
|
+
},
|
|
43
|
+
"newTab": {
|
|
44
|
+
"type": "boolean",
|
|
45
|
+
"default": true,
|
|
46
|
+
"description": "Open link in a new tab"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"required": ["href", "label"]
|
|
50
|
+
}
|
|
29
51
|
}
|
|
30
52
|
},
|
|
31
53
|
"additionalProperties": false
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { EventListLocationProps } from "../../EventListLocationProps-
|
|
2
|
+
import { EventListLocationProps } from "../../EventListLocationProps-d4345e0e.js";
|
|
3
3
|
declare const EventListLocationContextDefault: import("react").ForwardRefExoticComponent<EventListLocationProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
4
4
|
declare const EventListLocationContext: import("react").Context<import("react").ForwardRefExoticComponent<EventListLocationProps & import("react").RefAttributes<HTMLDivElement>>>;
|
|
5
5
|
declare const EventListLocation: import("react").ForwardRefExoticComponent<EventListLocationProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -5,7 +5,7 @@ import { RichText } from '@kickstartds/base/lib/rich-text';
|
|
|
5
5
|
import { Icon } from '@kickstartds/base/lib/icon';
|
|
6
6
|
import { EventListAppointment } from '../event-list-appointment/index.js';
|
|
7
7
|
|
|
8
|
-
const EventListLocationContextDefault = forwardRef(({ address, dates, ...rest }, ref) => (jsxs("div", { className: "dsa-event-list-location", ...rest, ref: ref, children: [address && (jsx("div", { className: "dsa-event-list-location__row", children: jsxs("
|
|
8
|
+
const EventListLocationContextDefault = forwardRef(({ locationName, address, dates, links, ...rest }, ref) => (jsxs("div", { className: "dsa-event-list-location", ...rest, ref: ref, children: [address && (jsx("div", { className: "dsa-event-list-location__row", children: jsxs("div", { className: "dsa-event-list-location__item ", children: [jsx(Icon, { className: "dsa-event-list-location__icon", icon: "map-pin", "aria-hidden": true }), jsxs("div", { className: "dsa-event-list-location__content", children: [jsx("span", { className: "sr-only", children: "Address:" }), jsxs("address", { className: "dsa-event-list-location__address", children: [locationName && (jsx("span", { className: "dsa-event-list-location__name", children: locationName })), address && jsx(RichText, { text: address })] }), links && links.length > 0 && (jsx("div", { className: "dsa-event-list-location__links", children: links.map((link, index) => (jsx("a", { href: link.href, target: link.newTab ? "_blank" : "_self", className: "dsa-event-list-location__link", children: link.label }, index))) }))] })] }) })), dates && dates.length > 0 && (jsxs("div", { className: "dsa-event-list-location__appointments", children: [jsx("span", { className: "sr-only", children: "Appointments:" }), dates.map((item, index) => (createElement(EventListAppointment, { ...item, key: index })))] }))] })));
|
|
9
9
|
const EventListLocationContext = createContext(EventListLocationContextDefault);
|
|
10
10
|
const EventListLocation = forwardRef((props, ref) => {
|
|
11
11
|
const Component = useContext(EventListLocationContext);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { HTMLAttributes } from "react";
|
|
3
|
-
import { ImageStoryProps } from "../../ImageStoryProps-
|
|
3
|
+
import { ImageStoryProps } from "../../ImageStoryProps-03ff6d21.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-
|
|
33
|
-
export * from "../../BlogOverviewProps-
|
|
34
|
-
export * from "../../PageProps-
|
|
32
|
+
export * from "../../BlogPostProps-d9decb7c.js";
|
|
33
|
+
export * from "../../BlogOverviewProps-7caa223c.js";
|
|
34
|
+
export * from "../../PageProps-7caa223c.js";
|
|
35
35
|
export { IconSprite, SettingsProps };
|
|
36
36
|
export * from "../../EventDetailProps-19b81db8.js";
|
|
@@ -765,7 +765,7 @@
|
|
|
765
765
|
"id": "page-archetypes-event-detail--event-detail",
|
|
766
766
|
"group": "Page Archetypes/Event Detail",
|
|
767
767
|
"name": "EventDetail",
|
|
768
|
-
"code": "<EventDetail\n button={{\n label: 'See all Events',\n target: '/#'\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: 'assets/figma-cover.png',\n size: '3.2 MB',\n url: 'assets/figma-cover.png'\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: '
|
|
768
|
+
"code": "<EventDetail\n button={{\n label: 'See all Events',\n target: '/#'\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: 'assets/figma-cover.png',\n size: '3.2 MB',\n url: 'assets/figma-cover.png'\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 href: '#',\n label: 'Register',\n newTab: true,\n time: '09:00 – 17:00'\n },\n {\n ariaLabel: 'Register for the event on 18th September 2025 from 09:00 to 17:00',\n date: '2025-09-18',\n href: '#',\n label: 'Register',\n newTab: true,\n time: '09:00 – 17:00'\n }\n ],\n links: [\n {\n href: 'https://maps.google.com/?q=Berlin+Congress+Center',\n label: 'Open in Google Maps',\n newTab: true\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 href: '#',\n label: 'Register',\n newTab: true,\n time: '09:00 – 17:00'\n }\n ],\n links: [\n {\n href: 'https://maps.google.com/?q=Berlin+Congress+Center',\n label: 'Open in Google Maps',\n newTab: true\n },\n {\n href: 'https://www.berlincongresscenter.com',\n label: 'Location Website',\n newTab: true\n }\n ],\n locationName: 'Köln Messe'\n }\n ]}\n title=\"Systemics Design Conference 2025\"\n/>",
|
|
769
769
|
"args": {
|
|
770
770
|
"categories": [
|
|
771
771
|
{
|
|
@@ -795,8 +795,15 @@
|
|
|
795
795
|
"ariaLabel": "Register for the event on 18th September 2025 from 09:00 to 17:00"
|
|
796
796
|
}
|
|
797
797
|
],
|
|
798
|
-
"
|
|
799
|
-
"
|
|
798
|
+
"locationName": "Berlin Congress Center",
|
|
799
|
+
"address": "Alexanderplatz 1<br />\n 10178 Berlin",
|
|
800
|
+
"links": [
|
|
801
|
+
{
|
|
802
|
+
"newTab": true,
|
|
803
|
+
"href": "https://maps.google.com/?q=Berlin+Congress+Center",
|
|
804
|
+
"label": "Open in Google Maps"
|
|
805
|
+
}
|
|
806
|
+
]
|
|
800
807
|
},
|
|
801
808
|
{
|
|
802
809
|
"dates": [
|
|
@@ -809,8 +816,20 @@
|
|
|
809
816
|
"ariaLabel": "Register for the event on 18th September 2025 from 09:00 to 17:00"
|
|
810
817
|
}
|
|
811
818
|
],
|
|
812
|
-
"
|
|
813
|
-
"
|
|
819
|
+
"locationName": "Köln Messe",
|
|
820
|
+
"address": "Messeplatz 1<br />\n 50679 Köln",
|
|
821
|
+
"links": [
|
|
822
|
+
{
|
|
823
|
+
"newTab": true,
|
|
824
|
+
"href": "https://maps.google.com/?q=Berlin+Congress+Center",
|
|
825
|
+
"label": "Open in Google Maps"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"newTab": true,
|
|
829
|
+
"href": "https://www.berlincongresscenter.com",
|
|
830
|
+
"label": "Location Website"
|
|
831
|
+
}
|
|
832
|
+
]
|
|
814
833
|
}
|
|
815
834
|
],
|
|
816
835
|
"images": [
|
|
@@ -1572,7 +1591,7 @@
|
|
|
1572
1591
|
"id": "event-event-list-location--default",
|
|
1573
1592
|
"group": "Event/ Event List Location",
|
|
1574
1593
|
"name": "Default",
|
|
1575
|
-
"code": "<EventListLocation\n address=\"
|
|
1594
|
+
"code": "<EventListLocation\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 href: '#',\n label: 'Register',\n newTab: true,\n time: '09:00 – 17:00'\n },\n {\n ariaLabel: 'Register for the event on 18th September 2025 from 09:00 to 17:00',\n date: '2025-09-18',\n href: '#',\n label: 'Register',\n newTab: true,\n time: '09:00 – 17:00'\n }\n ]}\n links={[\n {\n href: 'https://maps.google.com/?q=Berlin+Congress+Center',\n label: 'Open in Google Maps',\n newTab: true\n },\n {\n href: 'https://maps.google.com/?q=Berlin+Congress+Center',\n label: 'Location Website',\n newTab: true\n }\n ]}\n locationName=\"Berlin Congress Center\"\n/>",
|
|
1576
1595
|
"args": {
|
|
1577
1596
|
"dates": [
|
|
1578
1597
|
{
|
|
@@ -1592,8 +1611,20 @@
|
|
|
1592
1611
|
"ariaLabel": "Register for the event on 18th September 2025 from 09:00 to 17:00"
|
|
1593
1612
|
}
|
|
1594
1613
|
],
|
|
1595
|
-
"
|
|
1596
|
-
"
|
|
1614
|
+
"locationName": "Berlin Congress Center",
|
|
1615
|
+
"address": "Alexanderplatz 1<br />\n 10178 Berlin",
|
|
1616
|
+
"links": [
|
|
1617
|
+
{
|
|
1618
|
+
"newTab": true,
|
|
1619
|
+
"href": "https://maps.google.com/?q=Berlin+Congress+Center",
|
|
1620
|
+
"label": "Open in Google Maps"
|
|
1621
|
+
},
|
|
1622
|
+
{
|
|
1623
|
+
"newTab": true,
|
|
1624
|
+
"href": "https://maps.google.com/?q=Berlin+Congress+Center",
|
|
1625
|
+
"label": "Location Website"
|
|
1626
|
+
}
|
|
1627
|
+
]
|
|
1597
1628
|
},
|
|
1598
1629
|
"screenshot": "img/screenshots/event-event-list-location--default.png"
|
|
1599
1630
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { HTMLAttributes, FC, PropsWithChildren } from "react";
|
|
3
|
-
import { SectionProps } from "../../SectionProps-
|
|
3
|
+
import { SectionProps } from "../../SectionProps-03ff6d21.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
|
@@ -308,8 +308,8 @@ h3 {
|
|
|
308
308
|
--dsa-link--font-weight: var(--ks-font-weight-semi-bold);
|
|
309
309
|
--dsa-link--color: var(--ks-text-color-default-interactive);
|
|
310
310
|
--dsa-link--color_hover: var(--ks-text-color-default-interactive-hover);
|
|
311
|
-
--dsa-link--text-decoration:
|
|
312
|
-
--dsa-link--text-decoration_hover:
|
|
311
|
+
--dsa-link--text-decoration: none;
|
|
312
|
+
--dsa-link--text-decoration_hover: none;
|
|
313
313
|
--dsa-typo--highlight: var(--ks-color-primary);
|
|
314
314
|
--dsa-content--horizontal-spacing: var(--ks-spacing-inset-l);
|
|
315
315
|
--dsa-content--vertical-spacing: var(--ks-spacing-xxl);
|
|
@@ -933,6 +933,18 @@ hr.c-divider {
|
|
|
933
933
|
--c-divider--background: var(--ks-border-color-accent);
|
|
934
934
|
}
|
|
935
935
|
|
|
936
|
+
.sr-only {
|
|
937
|
+
position: absolute;
|
|
938
|
+
width: 1px;
|
|
939
|
+
height: 1px;
|
|
940
|
+
padding: 0;
|
|
941
|
+
margin: -1px;
|
|
942
|
+
overflow: hidden;
|
|
943
|
+
clip: rect(0, 0, 0, 0);
|
|
944
|
+
white-space: nowrap;
|
|
945
|
+
border: 0;
|
|
946
|
+
}
|
|
947
|
+
|
|
936
948
|
:root, [ks-inverted], [ks-theme] {
|
|
937
949
|
--g-link--font-weight: var(--dsa-link--font-weight, var(--ks-font-weight-semi-bold));
|
|
938
950
|
--g-link--text-decoration: var(--dsa-link--text-decoration, underline);
|
package/dist/tokens/themes.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Mon, 23 Jun 2025
|
|
3
|
+
* Generated on Mon, 23 Jun 2025 15:12:05 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 Mon, 23 Jun 2025
|
|
2730
|
+
* Generated on Mon, 23 Jun 2025 15:12:09 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 Mon, 23 Jun 2025
|
|
5461
|
+
* Generated on Mon, 23 Jun 2025 15:12:07 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 Mon, 23 Jun 2025
|
|
8462
|
+
* Generated on Mon, 23 Jun 2025 15:12:11 GMT
|
|
8463
8463
|
*/
|
|
8464
8464
|
:root [ks-theme=telekom] {
|
|
8465
8465
|
--ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
|
package/dist/tokens/tokens.css
CHANGED
package/dist/tokens/tokens.js
CHANGED
package/package.json
CHANGED
|
File without changes
|