@kickstartds/ds-agency-premium 1.6.68--canary.45.1671.0 → 1.6.68--canary.45.1678.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-63f63768.d.ts +387 -0
- package/dist/EventListAppointmentProps-da54c3b9.d.ts +38 -0
- 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/blog-overview.schema.dereffed.json +4 -2
- package/dist/components/blog-overview/index.d.ts +1 -1
- package/dist/components/blog-post/blog-post.schema.dereffed.json +4 -2
- package/dist/components/blog-post/index.d.ts +1 -1
- package/dist/components/event-detail/event-detail.schema.dereffed.json +203 -0
- package/dist/components/event-detail/event-detail.schema.json +73 -0
- package/dist/components/event-detail/index.d.ts +5 -0
- package/dist/components/event-detail/index.js +32 -0
- package/dist/components/event-header/event-header.css +6 -0
- package/dist/components/event-header/event-header.schema.dereffed.json +38 -0
- package/dist/components/event-header/event-header.schema.json +34 -0
- package/dist/components/event-header/index.d.ts +35 -0
- package/dist/components/event-header/index.js +20 -0
- package/dist/components/event-list-appointment/event-list-appointment.css +52 -0
- package/dist/components/event-list-appointment/event-list-appointment.schema.dereffed.json +47 -0
- package/dist/components/event-list-appointment/event-list-appointment.schema.json +44 -0
- package/dist/components/event-list-appointment/index.d.ts +7 -10
- package/dist/components/event-list-appointment/index.js +11 -9
- package/dist/components/event-list-entry/event-list-entry.css +42 -0
- package/dist/components/event-list-entry/event-list-entry.schema.dereffed.json +75 -0
- package/dist/components/event-list-entry/event-list-entry.schema.json +28 -0
- package/dist/components/event-list-entry/index.d.ts +28 -11
- package/dist/components/event-list-entry/index.js +12 -8
- package/dist/components/gallery/gallery.schema.dereffed.json +2 -1
- package/dist/components/gallery/gallery.schema.json +2 -1
- package/dist/components/gallery/index.js +1 -1
- package/dist/components/image-story/index.d.ts +1 -1
- package/dist/components/index/index.d.ts +4 -3
- package/dist/components/page/index.d.ts +1 -1
- package/dist/components/page/page.schema.dereffed.json +4 -2
- package/dist/components/page-wrapper/tokens.css +1 -1
- package/dist/components/presets.json +180 -53
- package/dist/components/section/index.d.ts +1 -1
- package/dist/components/section/section.schema.dereffed.json +4 -2
- package/dist/components/slider/slider.schema.dereffed.json +2 -1
- 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/EventProps-feae5a7c.d.ts +0 -88
- package/dist/components/event/event.schema.dereffed.json +0 -119
- package/dist/components/event/event.schema.json +0 -109
- package/dist/components/event/index.d.ts +0 -8
- package/dist/components/event/index.js +0 -26
- package/dist/components/event-list-appointment/event.css +0 -88
- /package/dist/{ImageStoryProps-e853e1e7.d.ts → ImageStoryProps-03ff6d21.d.ts} +0 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
.dsa-event-list-entry {
|
|
2
|
+
--dsa-event-list-entry__icon--size: calc(var(--ks-font-size-copy-m) * var(--ks-line-height-copy-m));
|
|
3
|
+
flex-wrap: wrap;
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-direction: row;
|
|
6
|
+
justify-content: space-between;
|
|
7
|
+
gap: var(--ks-spacing-stack-s) var(--ks-spacing-inline-m);
|
|
8
|
+
background-color: var(--ks-background-color-accent);
|
|
9
|
+
padding: var(--ks-spacing-inset-m);
|
|
10
|
+
border-radius: var(--ks-border-radius-surface);
|
|
11
|
+
}
|
|
12
|
+
.dsa-event-list-entry__icon {
|
|
13
|
+
width: 2rem;
|
|
14
|
+
height: 2rem;
|
|
15
|
+
}
|
|
16
|
+
.dsa-event-list-entry__row {
|
|
17
|
+
display: flex;
|
|
18
|
+
flex-direction: row;
|
|
19
|
+
gap: var(--ks-spacing-inline-m);
|
|
20
|
+
flex-wrap: wrap;
|
|
21
|
+
flex-shrink: 0;
|
|
22
|
+
flex-grow: 1;
|
|
23
|
+
flex-basis: 200px;
|
|
24
|
+
}
|
|
25
|
+
.dsa-event-list-entry__icon {
|
|
26
|
+
color: var(--ks-text-color-primary);
|
|
27
|
+
width: var(--dsa-event-list-entry__icon--size);
|
|
28
|
+
height: var(--dsa-event-list-entry__icon--size);
|
|
29
|
+
}
|
|
30
|
+
.dsa-event-list-entry__item {
|
|
31
|
+
display: flex;
|
|
32
|
+
gap: var(--ks-spacing-stack-xs);
|
|
33
|
+
}
|
|
34
|
+
.dsa-event-list-entry__appointments {
|
|
35
|
+
display: flex;
|
|
36
|
+
flex-direction: column;
|
|
37
|
+
gap: var(--ks-spacing-stack-s);
|
|
38
|
+
flex-grow: 1;
|
|
39
|
+
}
|
|
40
|
+
.dsa-event-list-entry .l-container--rich-text {
|
|
41
|
+
container-type: normal;
|
|
42
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "http://schema.mydesignsystem.com/event-list-entry.schema.json",
|
|
4
|
+
"title": "Event List Entry",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"properties": {
|
|
7
|
+
"dates": {
|
|
8
|
+
"title": "Dates",
|
|
9
|
+
"description": "List of dates of the event",
|
|
10
|
+
"type": "array",
|
|
11
|
+
"items": {
|
|
12
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
13
|
+
"$id": "http://schema.mydesignsystem.com/event-list-appointment.schema.json",
|
|
14
|
+
"title": "Event List Appointment",
|
|
15
|
+
"type": "object",
|
|
16
|
+
"properties": {
|
|
17
|
+
"date": {
|
|
18
|
+
"title": "Date",
|
|
19
|
+
"description": "Date of the appointment",
|
|
20
|
+
"type": "string",
|
|
21
|
+
"format": "date"
|
|
22
|
+
},
|
|
23
|
+
"time": {
|
|
24
|
+
"title": "Time",
|
|
25
|
+
"description": "Time of the appointment",
|
|
26
|
+
"type": "string"
|
|
27
|
+
},
|
|
28
|
+
"label": {
|
|
29
|
+
"title": "CTA Label",
|
|
30
|
+
"description": "Label for the call to action button",
|
|
31
|
+
"type": "string"
|
|
32
|
+
},
|
|
33
|
+
"href": {
|
|
34
|
+
"title": "Href",
|
|
35
|
+
"description": "URL for the call to action button",
|
|
36
|
+
"type": "string",
|
|
37
|
+
"format": "uri",
|
|
38
|
+
"default": "#"
|
|
39
|
+
},
|
|
40
|
+
"newTab": {
|
|
41
|
+
"title": "Open in New Tab",
|
|
42
|
+
"description": "Whether the link should open in a new tab",
|
|
43
|
+
"type": "boolean",
|
|
44
|
+
"default": true
|
|
45
|
+
},
|
|
46
|
+
"ariaLabel": {
|
|
47
|
+
"title": "Aria Label",
|
|
48
|
+
"description": "Aria label for the link",
|
|
49
|
+
"type": "string",
|
|
50
|
+
"default": "Event Appointment"
|
|
51
|
+
},
|
|
52
|
+
"type": {
|
|
53
|
+
"const": "event-list-appointment"
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"additionalProperties": false
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"address": {
|
|
60
|
+
"title": "Address",
|
|
61
|
+
"description": "Address of the appointment",
|
|
62
|
+
"type": "string"
|
|
63
|
+
},
|
|
64
|
+
"mapsLink": {
|
|
65
|
+
"title": "Maps Link",
|
|
66
|
+
"description": "Link to the location on a map",
|
|
67
|
+
"type": "string",
|
|
68
|
+
"format": "uri"
|
|
69
|
+
},
|
|
70
|
+
"type": {
|
|
71
|
+
"const": "event-list-entry"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
"additionalProperties": false
|
|
75
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "http://schema.mydesignsystem.com/event-list-entry.schema.json",
|
|
4
|
+
"title": "Event List Entry",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"properties": {
|
|
7
|
+
"dates": {
|
|
8
|
+
"title": "Dates",
|
|
9
|
+
"description": "List of dates of the event",
|
|
10
|
+
"type": "array",
|
|
11
|
+
"items": {
|
|
12
|
+
"$ref": "http://schema.mydesignsystem.com/event-list-appointment.schema.json"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"address": {
|
|
16
|
+
"title": "Address",
|
|
17
|
+
"description": "Address of the appointment",
|
|
18
|
+
"type": "string"
|
|
19
|
+
},
|
|
20
|
+
"mapsLink": {
|
|
21
|
+
"title": "Maps Link",
|
|
22
|
+
"description": "Link to the location on a map",
|
|
23
|
+
"type": "string",
|
|
24
|
+
"format": "uri"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"additionalProperties": false
|
|
28
|
+
}
|
|
@@ -1,13 +1,30 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* This file was automatically generated by json-schema-to-typescript.
|
|
5
|
+
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
6
|
+
* and run json-schema-to-typescript to regenerate this file.
|
|
7
|
+
*/
|
|
8
|
+
import { EventListAppointmentProps } from "../../EventListAppointmentProps-da54c3b9.js";
|
|
9
|
+
/**
|
|
10
|
+
* List of dates of the event
|
|
11
|
+
*/
|
|
12
|
+
type Dates = EventListAppointmentProps[];
|
|
13
|
+
/**
|
|
14
|
+
* Address of the appointment
|
|
15
|
+
*/
|
|
16
|
+
type Address = string;
|
|
17
|
+
/**
|
|
18
|
+
* Link to the location on a map
|
|
19
|
+
*/
|
|
20
|
+
type MapsLink = string;
|
|
3
21
|
interface EventListEntryProps {
|
|
4
|
-
dates?:
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
label?: string;
|
|
8
|
-
}>;
|
|
9
|
-
address?: string;
|
|
22
|
+
dates?: Dates;
|
|
23
|
+
address?: Address;
|
|
24
|
+
mapsLink?: MapsLink;
|
|
10
25
|
}
|
|
11
|
-
declare const
|
|
12
|
-
|
|
13
|
-
|
|
26
|
+
declare const EventListEntryContextDefault: import("react").ForwardRefExoticComponent<EventListEntryProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
27
|
+
declare const EventListEntryContext: import("react").Context<import("react").ForwardRefExoticComponent<EventListEntryProps & import("react").RefAttributes<HTMLDivElement>>>;
|
|
28
|
+
declare const EventListEntry: import("react").ForwardRefExoticComponent<EventListEntryProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
29
|
+
export type { EventListEntryProps };
|
|
30
|
+
export { EventListEntryContextDefault, EventListEntryContext, EventListEntry };
|
|
@@ -1,12 +1,16 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
1
|
+
import "./event-list-entry.css";
|
|
2
|
+
import { forwardRef, createElement, createContext, useContext } from 'react';
|
|
3
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
3
4
|
import { RichText } from '@kickstartds/base/lib/rich-text';
|
|
4
5
|
import { Icon } from '@kickstartds/base/lib/icon';
|
|
5
|
-
import '../
|
|
6
|
-
import 'react';
|
|
7
|
-
import 'classnames';
|
|
8
|
-
import '@kickstartds/base/lib/button';
|
|
6
|
+
import { EventListAppointment } from '../event-list-appointment/index.js';
|
|
9
7
|
|
|
10
|
-
const
|
|
8
|
+
const EventListEntryContextDefault = forwardRef(({ address, dates, ...rest }, ref) => (jsxs("div", { className: "dsa-event-list-entry", ...rest, ref: ref, children: [address && (jsx("div", { className: "dsa-event-list-entry__row", children: jsxs("address", { className: "dsa-event-list-entry__item dsa-event-list-entry__address", children: [jsx(Icon, { className: "dsa-event-list-entry__icon", icon: "map-pin" }), jsx(RichText, { text: address })] }) })), dates && dates.length > 0 && (jsx("div", { className: "dsa-event-list-entry__appointments", children: dates.map((item, index) => (createElement(EventListAppointment, { ...item, key: index }))) }))] })));
|
|
9
|
+
const EventListEntryContext = createContext(EventListEntryContextDefault);
|
|
10
|
+
const EventListEntry = forwardRef((props, ref) => {
|
|
11
|
+
const Component = useContext(EventListEntryContext);
|
|
12
|
+
return jsx(Component, { ...props, ref: ref });
|
|
13
|
+
});
|
|
14
|
+
EventListEntry.displayName = "EventListEntry";
|
|
11
15
|
|
|
12
|
-
export { EventListEntry };
|
|
16
|
+
export { EventListEntry, EventListEntryContext, EventListEntryContextDefault };
|
|
@@ -43,7 +43,8 @@
|
|
|
43
43
|
"type": "string",
|
|
44
44
|
"title": "Layout",
|
|
45
45
|
"description": "The layout of the gallery images",
|
|
46
|
-
"enum": ["stack", "smallTiles", "largeTiles"]
|
|
46
|
+
"enum": ["stack", "smallTiles", "largeTiles"],
|
|
47
|
+
"default": "smallTiles"
|
|
47
48
|
},
|
|
48
49
|
"aspectRatio": {
|
|
49
50
|
"type": "string",
|
|
@@ -4,7 +4,7 @@ import { forwardRef, useMemo, createContext, useContext } from 'react';
|
|
|
4
4
|
import classnames from 'classnames';
|
|
5
5
|
import { TextMedia } from '@kickstartds/base/lib/text-media';
|
|
6
6
|
|
|
7
|
-
const GalleryContextDefault = forwardRef(({ lightbox = false, layout = "
|
|
7
|
+
const GalleryContextDefault = forwardRef(({ lightbox = false, layout = "smallTiles", aspectRatio = "square", images = [], ...rest }, ref) => {
|
|
8
8
|
const galleryId = useMemo(() => `gallery-${Date.now()}`, []);
|
|
9
9
|
return (jsx("div", { ...rest, ref: ref, className: `dsa-gallery`, children: jsx("div", { className: classnames(`dsa-gallery__grid`, `dsa-gallery__grid--${layout === "smallTiles"
|
|
10
10
|
? "small-tiles"
|
|
@@ -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,7 +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
|
+
export * from "../../EventDetailProps-63f63768.js";
|
|
@@ -695,7 +695,8 @@
|
|
|
695
695
|
"stack",
|
|
696
696
|
"smallTiles",
|
|
697
697
|
"largeTiles"
|
|
698
|
-
]
|
|
698
|
+
],
|
|
699
|
+
"default": "smallTiles"
|
|
699
700
|
},
|
|
700
701
|
"aspectRatio": {
|
|
701
702
|
"type": "string",
|
|
@@ -1907,7 +1908,8 @@
|
|
|
1907
1908
|
"stack",
|
|
1908
1909
|
"smallTiles",
|
|
1909
1910
|
"largeTiles"
|
|
1910
|
-
]
|
|
1911
|
+
],
|
|
1912
|
+
"default": "smallTiles"
|
|
1911
1913
|
},
|
|
1912
1914
|
"aspectRatio": {
|
|
1913
1915
|
"type": "string",
|
|
@@ -761,6 +761,121 @@
|
|
|
761
761
|
},
|
|
762
762
|
"screenshot": "img/screenshots/page-archetypes-blog-post--blog-post.png"
|
|
763
763
|
},
|
|
764
|
+
{
|
|
765
|
+
"id": "page-archetypes-event-detail--event-detail",
|
|
766
|
+
"group": "Page Archetypes/Event Detail",
|
|
767
|
+
"name": "EventDetail",
|
|
768
|
+
"code": "<EventDetail\n appointments={[\n {\n address: 'Berlin Congress Center<br />\\n Alexanderplatz 1<br />\\n 10178 Berlin',\n ariaLabel: 'Event Appointment',\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 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 time: '09:00 – 17:00'\n }\n ],\n href: '#',\n mapsLink: 'https://maps.google.com/?q=Berlin+Congress+Center',\n newTab: true\n },\n {\n address: 'Köln Messe<br />\\n Messeplatz 1<br />\\n 50679 Köln',\n ariaLabel: 'Event Appointment',\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 time: '09:00 – 17:00'\n }\n ],\n href: '#',\n mapsLink: 'https://maps.google.com/?q=Köln+Messe',\n newTab: true\n }\n ]}\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 title=\"Systemics Design Conference 2025\"\n/>",
|
|
769
|
+
"args": {
|
|
770
|
+
"appointments": [
|
|
771
|
+
{
|
|
772
|
+
"href": "#",
|
|
773
|
+
"newTab": true,
|
|
774
|
+
"ariaLabel": "Event Appointment",
|
|
775
|
+
"address": "Berlin Congress Center<br />\n Alexanderplatz 1<br />\n 10178 Berlin",
|
|
776
|
+
"mapsLink": "https://maps.google.com/?q=Berlin+Congress+Center",
|
|
777
|
+
"dates": [
|
|
778
|
+
{
|
|
779
|
+
"date": "2025-09-18",
|
|
780
|
+
"time": "09:00 – 17:00",
|
|
781
|
+
"label": "Register",
|
|
782
|
+
"href": "#",
|
|
783
|
+
"ariaLabel": "Register for the event on 18th September 2025 from 09:00 to 17:00"
|
|
784
|
+
},
|
|
785
|
+
{
|
|
786
|
+
"date": "2025-09-18",
|
|
787
|
+
"time": "09:00 – 17:00",
|
|
788
|
+
"label": "Register",
|
|
789
|
+
"href": "#",
|
|
790
|
+
"ariaLabel": "Register for the event on 18th September 2025 from 09:00 to 17:00"
|
|
791
|
+
}
|
|
792
|
+
]
|
|
793
|
+
},
|
|
794
|
+
{
|
|
795
|
+
"href": "#",
|
|
796
|
+
"newTab": true,
|
|
797
|
+
"ariaLabel": "Event Appointment",
|
|
798
|
+
"address": "Köln Messe<br />\n Messeplatz 1<br />\n 50679 Köln",
|
|
799
|
+
"mapsLink": "https://maps.google.com/?q=Köln+Messe",
|
|
800
|
+
"dates": [
|
|
801
|
+
{
|
|
802
|
+
"date": "2025-09-18",
|
|
803
|
+
"time": "09:00 – 17:00",
|
|
804
|
+
"label": "Register",
|
|
805
|
+
"href": "#",
|
|
806
|
+
"ariaLabel": "Register for the event on 18th September 2025 from 09:00 to 17:00"
|
|
807
|
+
}
|
|
808
|
+
]
|
|
809
|
+
}
|
|
810
|
+
],
|
|
811
|
+
"images": [
|
|
812
|
+
{
|
|
813
|
+
"src": "img/close-up-young-business-team-working.png",
|
|
814
|
+
"alt": "Alt text Image 1",
|
|
815
|
+
"caption": "Caption Image 1"
|
|
816
|
+
},
|
|
817
|
+
{
|
|
818
|
+
"src": "img/low-angle-tall-building-with-many-windows_23-2148230392.png",
|
|
819
|
+
"alt": "Alt text Image 2",
|
|
820
|
+
"caption": "Caption Image 2"
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
"src": "img/full-shot-different-people-working-together.png",
|
|
824
|
+
"alt": "Alt text Image 3",
|
|
825
|
+
"caption": "Caption Image 3"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"src": "img/top-view-desk-with-keyboard-drawing-pad.png",
|
|
829
|
+
"alt": "Alt text Image 4",
|
|
830
|
+
"caption": "Caption Image 4"
|
|
831
|
+
}
|
|
832
|
+
],
|
|
833
|
+
"button": {
|
|
834
|
+
"label": "See all Events",
|
|
835
|
+
"target": "/#"
|
|
836
|
+
},
|
|
837
|
+
"title": "Systemics Design Conference 2025",
|
|
838
|
+
"categories": [
|
|
839
|
+
{
|
|
840
|
+
"label": "Conference"
|
|
841
|
+
},
|
|
842
|
+
{
|
|
843
|
+
"label": "Design Systems"
|
|
844
|
+
}
|
|
845
|
+
],
|
|
846
|
+
"intro": "A full-day event for design system professionals and enthusiasts. Join us to learn, share, and connect with like-minded individuals.",
|
|
847
|
+
"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 ",
|
|
848
|
+
"downloads": [
|
|
849
|
+
{
|
|
850
|
+
"name": "Product Brochure",
|
|
851
|
+
"format": "PDF",
|
|
852
|
+
"size": "2.5 MB",
|
|
853
|
+
"previewImage": "img/offset-image.png",
|
|
854
|
+
"url": "img/offset-image.png"
|
|
855
|
+
},
|
|
856
|
+
{
|
|
857
|
+
"name": "Company Brochure",
|
|
858
|
+
"previewImage": "assets/figma-cover.png",
|
|
859
|
+
"format": "PDF",
|
|
860
|
+
"size": "3.2 MB",
|
|
861
|
+
"url": "assets/figma-cover.png"
|
|
862
|
+
},
|
|
863
|
+
{
|
|
864
|
+
"name": "User Guide",
|
|
865
|
+
"format": "DOC",
|
|
866
|
+
"size": "20 KB",
|
|
867
|
+
"url": "assets/user-guide.doc"
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
"name": "Technical Specifications",
|
|
871
|
+
"format": "TXT",
|
|
872
|
+
"size": "12 KB",
|
|
873
|
+
"url": "assets/technical-specifications.txt"
|
|
874
|
+
}
|
|
875
|
+
]
|
|
876
|
+
},
|
|
877
|
+
"screenshot": "img/screenshots/page-archetypes-event-detail--event-detail.png"
|
|
878
|
+
},
|
|
764
879
|
{
|
|
765
880
|
"id": "components-contact--wide-image",
|
|
766
881
|
"group": "Components/Contact",
|
|
@@ -1388,63 +1503,75 @@
|
|
|
1388
1503
|
"screenshot": "img/screenshots/industry-downloads--mixed.png"
|
|
1389
1504
|
},
|
|
1390
1505
|
{
|
|
1391
|
-
"id": "
|
|
1392
|
-
"group": "
|
|
1506
|
+
"id": "event-event-header--default",
|
|
1507
|
+
"group": "Event/ Event Header",
|
|
1393
1508
|
"name": "Default",
|
|
1394
|
-
"code": "<
|
|
1509
|
+
"code": "<EventHeader\n address=\"Berlin Congress Center<br />\n 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 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 time: '09:00 – 17:00'\n }\n ]}\n mapsLink=\"https://maps.google.com/?q=Berlin+Congress+Center\"\n/>",
|
|
1395
1510
|
"args": {
|
|
1396
|
-
"
|
|
1397
|
-
"
|
|
1511
|
+
"address": "Berlin Congress Center<br />\n Alexanderplatz 1<br />\n 10178 Berlin",
|
|
1512
|
+
"mapsLink": "https://maps.google.com/?q=Berlin+Congress+Center",
|
|
1513
|
+
"dates": [
|
|
1398
1514
|
{
|
|
1399
|
-
"
|
|
1515
|
+
"date": "2025-09-18",
|
|
1516
|
+
"time": "09:00 – 17:00",
|
|
1517
|
+
"label": "Register",
|
|
1518
|
+
"href": "#",
|
|
1519
|
+
"ariaLabel": "Register for the event on 18th September 2025 from 09:00 to 17:00"
|
|
1400
1520
|
},
|
|
1401
1521
|
{
|
|
1402
|
-
"
|
|
1522
|
+
"date": "2025-09-18",
|
|
1523
|
+
"time": "09:00 – 17:00",
|
|
1524
|
+
"label": "Register",
|
|
1525
|
+
"href": "#",
|
|
1526
|
+
"ariaLabel": "Register for the event on 18th September 2025 from 09:00 to 17:00"
|
|
1403
1527
|
}
|
|
1404
|
-
]
|
|
1405
|
-
|
|
1406
|
-
|
|
1528
|
+
]
|
|
1529
|
+
},
|
|
1530
|
+
"screenshot": "img/screenshots/event-event-header--default.png"
|
|
1531
|
+
},
|
|
1532
|
+
{
|
|
1533
|
+
"id": "event-event-list-appointment--default",
|
|
1534
|
+
"group": "Event/ Event List Appointment",
|
|
1535
|
+
"name": "Default",
|
|
1536
|
+
"code": "<EventListAppointment\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\n time=\"09:00 – 17:00\"\n/>",
|
|
1537
|
+
"args": {
|
|
1538
|
+
"href": "#",
|
|
1539
|
+
"newTab": true,
|
|
1540
|
+
"ariaLabel": "Register for the event on 18th September 2025 from 09:00 to 17:00",
|
|
1541
|
+
"date": "2025-09-18",
|
|
1542
|
+
"time": "09:00 – 17:00",
|
|
1543
|
+
"label": "Register"
|
|
1544
|
+
},
|
|
1545
|
+
"screenshot": "img/screenshots/event-event-list-appointment--default.png"
|
|
1546
|
+
},
|
|
1547
|
+
{
|
|
1548
|
+
"id": "event-event-list-entry--default",
|
|
1549
|
+
"group": "Event/ Event List Entry",
|
|
1550
|
+
"name": "Default",
|
|
1551
|
+
"code": "<EventListEntry\n address=\"Berlin Congress Center<br />\n 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 mapsLink=\"https://maps.google.com/?q=Berlin+Congress+Center\"\n/>",
|
|
1552
|
+
"args": {
|
|
1553
|
+
"dates": [
|
|
1407
1554
|
{
|
|
1408
|
-
"
|
|
1409
|
-
"
|
|
1410
|
-
"
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
"label": "Register"
|
|
1415
|
-
},
|
|
1416
|
-
{
|
|
1417
|
-
"date": "2025-09-18",
|
|
1418
|
-
"time": "09:00 – 17:00",
|
|
1419
|
-
"label": "Register"
|
|
1420
|
-
}
|
|
1421
|
-
]
|
|
1555
|
+
"href": "#",
|
|
1556
|
+
"newTab": true,
|
|
1557
|
+
"ariaLabel": "Register for the event on 18th September 2025 from 09:00 to 17:00",
|
|
1558
|
+
"date": "2025-09-18",
|
|
1559
|
+
"time": "09:00 – 17:00",
|
|
1560
|
+
"label": "Register"
|
|
1422
1561
|
},
|
|
1423
1562
|
{
|
|
1424
|
-
"
|
|
1425
|
-
"
|
|
1426
|
-
"
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
"label": "Register"
|
|
1431
|
-
}
|
|
1432
|
-
]
|
|
1563
|
+
"href": "#",
|
|
1564
|
+
"newTab": true,
|
|
1565
|
+
"ariaLabel": "Register for the event on 18th September 2025 from 09:00 to 17:00",
|
|
1566
|
+
"date": "2025-09-18",
|
|
1567
|
+
"time": "09:00 – 17:00",
|
|
1568
|
+
"label": "Register"
|
|
1433
1569
|
}
|
|
1434
1570
|
],
|
|
1435
|
-
"
|
|
1436
|
-
"
|
|
1437
|
-
{
|
|
1438
|
-
"src": "/img/events/design-conference.jpg",
|
|
1439
|
-
"alt": "Attendees at the Systemics Design Conference"
|
|
1440
|
-
},
|
|
1441
|
-
{
|
|
1442
|
-
"src": "/img/events/speaker.jpg",
|
|
1443
|
-
"alt": "Keynote speaker on stage"
|
|
1444
|
-
}
|
|
1445
|
-
]
|
|
1571
|
+
"address": "Berlin Congress Center<br />\n Alexanderplatz 1<br />\n 10178 Berlin",
|
|
1572
|
+
"mapsLink": "https://maps.google.com/?q=Berlin+Congress+Center"
|
|
1446
1573
|
},
|
|
1447
|
-
"screenshot": "img/screenshots/
|
|
1574
|
+
"screenshot": "img/screenshots/event-event-list-entry--default.png"
|
|
1448
1575
|
},
|
|
1449
1576
|
{
|
|
1450
1577
|
"id": "components-faq--dropdown-list",
|
|
@@ -1944,9 +2071,9 @@
|
|
|
1944
2071
|
"caption": "Caption Image 7"
|
|
1945
2072
|
}
|
|
1946
2073
|
],
|
|
2074
|
+
"layout": "smallTiles",
|
|
1947
2075
|
"aspectRatio": "square",
|
|
1948
|
-
"lightbox": true
|
|
1949
|
-
"layout": "smallTiles"
|
|
2076
|
+
"lightbox": true
|
|
1950
2077
|
},
|
|
1951
2078
|
"screenshot": "img/screenshots/components-gallery--small-squares-with-lightbox.png"
|
|
1952
2079
|
},
|
|
@@ -1988,9 +2115,9 @@
|
|
|
1988
2115
|
"caption": "Caption Image 6"
|
|
1989
2116
|
}
|
|
1990
2117
|
],
|
|
2118
|
+
"layout": "largeTiles",
|
|
1991
2119
|
"aspectRatio": "landscape",
|
|
1992
|
-
"lightbox": false
|
|
1993
|
-
"layout": "largeTiles"
|
|
2120
|
+
"lightbox": false
|
|
1994
2121
|
},
|
|
1995
2122
|
"screenshot": "img/screenshots/components-gallery--large-landscape-tiles.png"
|
|
1996
2123
|
},
|
|
@@ -2037,9 +2164,9 @@
|
|
|
2037
2164
|
"caption": "Caption Image 7"
|
|
2038
2165
|
}
|
|
2039
2166
|
],
|
|
2167
|
+
"layout": "smallTiles",
|
|
2040
2168
|
"aspectRatio": "unset",
|
|
2041
|
-
"lightbox": true
|
|
2042
|
-
"layout": "smallTiles"
|
|
2169
|
+
"lightbox": true
|
|
2043
2170
|
},
|
|
2044
2171
|
"screenshot": "img/screenshots/components-gallery--free-aspect-ratio.png"
|
|
2045
2172
|
},
|
|
@@ -2066,9 +2193,9 @@
|
|
|
2066
2193
|
"caption": "Caption Image 3"
|
|
2067
2194
|
}
|
|
2068
2195
|
],
|
|
2196
|
+
"layout": "stack",
|
|
2069
2197
|
"aspectRatio": "landscape",
|
|
2070
|
-
"lightbox": false
|
|
2071
|
-
"layout": "stack"
|
|
2198
|
+
"lightbox": false
|
|
2072
2199
|
},
|
|
2073
2200
|
"screenshot": "img/screenshots/components-gallery--stack-landscape.png"
|
|
2074
2201
|
},
|
|
@@ -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>>;
|
|
@@ -681,7 +681,8 @@
|
|
|
681
681
|
"stack",
|
|
682
682
|
"smallTiles",
|
|
683
683
|
"largeTiles"
|
|
684
|
-
]
|
|
684
|
+
],
|
|
685
|
+
"default": "smallTiles"
|
|
685
686
|
},
|
|
686
687
|
"aspectRatio": {
|
|
687
688
|
"type": "string",
|
|
@@ -1893,7 +1894,8 @@
|
|
|
1893
1894
|
"stack",
|
|
1894
1895
|
"smallTiles",
|
|
1895
1896
|
"largeTiles"
|
|
1896
|
-
]
|
|
1897
|
+
],
|
|
1898
|
+
"default": "smallTiles"
|
|
1897
1899
|
},
|
|
1898
1900
|
"aspectRatio": {
|
|
1899
1901
|
"type": "string",
|