@kickstartds/ds-agency-premium 1.6.71--canary.45.1821.0 → 1.6.71--canary.45.1833.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 (35) hide show
  1. package/dist/SearchFilterProps-2fa6419b.d.ts +29 -0
  2. package/dist/SearchResultProps-224c2338.d.ts +33 -0
  3. package/dist/components/cta/cta.css +2 -2
  4. package/dist/components/event-registration/event-registration.css +17 -2
  5. package/dist/components/event-registration/index.js +1 -1
  6. package/dist/components/page-wrapper/index.js +8 -0
  7. package/dist/components/page-wrapper/tokens.css +1 -1
  8. package/dist/components/presets.json +227 -4
  9. package/dist/components/search/index.d.ts +19 -0
  10. package/dist/components/search/index.js +39 -0
  11. package/dist/components/search/search.schema.dereffed.json +134 -0
  12. package/dist/components/search/search.schema.json +18 -0
  13. package/dist/components/search-bar/index.d.ts +35 -0
  14. package/dist/components/search-bar/index.js +17 -0
  15. package/dist/components/search-bar/search-bar.css +33 -0
  16. package/dist/components/search-bar/search-bar.schema.dereffed.json +48 -0
  17. package/dist/components/search-bar/search-bar.schema.json +35 -0
  18. package/dist/components/search-filter/index.d.ts +7 -0
  19. package/dist/components/search-filter/index.js +15 -0
  20. package/dist/components/search-filter/search-filter.css +20 -0
  21. package/dist/components/search-filter/search-filter.schema.dereffed.json +69 -0
  22. package/dist/components/search-filter/search-filter.schema.json +46 -0
  23. package/dist/components/search-result/index.d.ts +7 -0
  24. package/dist/components/search-result/index.js +15 -0
  25. package/dist/components/search-result/search-result.css +26 -0
  26. package/dist/components/search-result/search-result.schema.dereffed.json +50 -0
  27. package/dist/components/search-result/search-result.schema.json +41 -0
  28. package/dist/global.css +1 -1
  29. package/dist/static/img/people/contact-person.png +0 -0
  30. package/dist/tokens/IconSprite.js +8 -0
  31. package/dist/tokens/icon-sprite.html +2 -0
  32. package/dist/tokens/themes.css +4 -4
  33. package/dist/tokens/tokens.css +1 -1
  34. package/dist/tokens/tokens.js +2 -1
  35. package/package.json +1 -1
@@ -0,0 +1,29 @@
1
+ /**
2
+ * This file was automatically generated by json-schema-to-typescript.
3
+ * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
4
+ * and run json-schema-to-typescript to regenerate this file.
5
+ */
6
+ interface SearchFilterProps {
7
+ /**
8
+ * The title of the search filter.
9
+ */
10
+ title?: string;
11
+ /**
12
+ * The categories to filter by.
13
+ */
14
+ categories?: {
15
+ /**
16
+ * The name of the category.
17
+ */
18
+ title?: string;
19
+ /**
20
+ * The number of items in the category.
21
+ */
22
+ amount?: string;
23
+ /**
24
+ * The URL to filter by this category.
25
+ */
26
+ url?: string;
27
+ }[];
28
+ }
29
+ export { SearchFilterProps };
@@ -0,0 +1,33 @@
1
+ /**
2
+ * This file was automatically generated by json-schema-to-typescript.
3
+ * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
4
+ * and run json-schema-to-typescript to regenerate this file.
5
+ */
6
+ /**
7
+ * A URL linking to the search result or more information.
8
+ */
9
+ type URL = string;
10
+ /**
11
+ * The title of the search result.
12
+ */
13
+ type Title = string;
14
+ /**
15
+ * The main content or description of the search result.
16
+ */
17
+ type Text = string;
18
+ /**
19
+ * Whether to display the link to the search result.
20
+ */
21
+ type ShowLink = boolean;
22
+ /**
23
+ * An ARIA label for accessibility purposes.
24
+ */
25
+ type ARIALabel = string;
26
+ interface SearchResultProps {
27
+ url?: URL;
28
+ title?: Title;
29
+ text?: Text;
30
+ showLink?: ShowLink;
31
+ ariaLabel?: ARIALabel;
32
+ }
33
+ export { URL, Title, Text, ShowLink, ARIALabel, SearchResultProps };
@@ -3,7 +3,7 @@
3
3
  --dsa-cta--border-radius: var(--ks-border-radius-surface);
4
4
  --dsa-cta__content--vertical-padding: var(--dsa-content--vertical-spacing);
5
5
  --dsa-cta__content--horizontal-padding: var(--dsa-content--horizontal-spacing);
6
- --dsa-cta__content--max-width: var(--dsa-content--width_narrow);
6
+ --dsa-cta__content--max-width: var(--dsa-tile--width_largest);
7
7
  --dsa-cta__headline--color: var(--dsa-headline--color);
8
8
  --dsa-cta__subheadline--color: var(--dsa-headline__subheadline--color);
9
9
  --dsa-cta__copy--font: var(--ks-font-copy-m);
@@ -46,7 +46,7 @@
46
46
  width: auto;
47
47
  }
48
48
  .dsa-cta.c-storytelling .c-storytelling__box__content {
49
- max-width: var(--dsa-cta__content--max-width, var(--dsa-content--width_narrow));
49
+ max-width: var(--dsa-cta__content--max-width, var(--dsa-tile--width_largest));
50
50
  }
51
51
  .dsa-cta.c-storytelling .c-storytelling__box:only-child {
52
52
  --c-storytelling--horizontal-padding: var(--dsa-cta__content--horizontal-padding);
@@ -2,6 +2,9 @@
2
2
  display: flex;
3
3
  flex-direction: column;
4
4
  gap: var(--ks-spacing-stack-s);
5
+ max-width: 500px;
6
+ margin: auto;
7
+ margin-top: 200px;
5
8
  }
6
9
  .dsa-event-registration__link {
7
10
  width: fit-content;
@@ -63,14 +66,26 @@
63
66
  .dsa-event-registration__form {
64
67
  display: flex;
65
68
  flex-direction: column;
66
- gap: var(--ks-spacing-stack-xs);
69
+ gap: var(--ks-spacing-stack-s);
67
70
  }
68
71
  .dsa-event-registration__form .c-button {
69
72
  align-self: flex-end;
70
73
  }
74
+ .dsa-event-registration__inputs {
75
+ display: flex;
76
+ flex-direction: column;
77
+ gap: var(--ks-spacing-stack-s);
78
+ }
79
+ .dsa-event-registration__footer {
80
+ display: flex;
81
+ justify-content: space-between;
82
+ align-items: flex-start;
83
+ flex-wrap: wrap;
84
+ gap: var(--ks-spacing-stack-xs) var(--ks-spacing-inline-m);
85
+ }
71
86
  .dsa-event-registration__mandatory-text {
72
87
  font: var(--ks-font-interface-xs);
73
88
  color: var(--ks-color-fg-alpha-4);
74
- margin-top: var(--ks-spacing-xxs);
75
89
  font-style: italic;
90
+ flex-basis: var(--dsa-tile--width_small);
76
91
  }
@@ -12,7 +12,7 @@ import 'classnames';
12
12
  import '@kickstartds/base/lib/headline';
13
13
  import '@kickstartds/base/lib/button';
14
14
 
15
- const EventRegistrationContextDefault = forwardRef(({ date, time, title, link, label, location, nameInput, emailInput, mandatoryText, cta, confirmationCheckboxLabel, }, ref) => (jsxs("div", { ref: ref, className: "dsa-event-registration", children: [jsx(Headline, { spaceAfter: "minimum", text: title, level: "h2", sub: label, switchOrder: true }), jsxs("div", { className: "dsa-event-registration__infos", children: [jsxs("div", { className: "dsa-event-registration__details", children: [jsxs("div", { className: "dsa-event-registration__date", children: [jsxs("span", { className: "dsa-event-registration__info", children: [jsx(Icon, { "aria-hidden": true, icon: "date" }), date] }), jsxs("span", { className: "dsa-event-registration__info", children: [jsx(Icon, { "aria-hidden": true, icon: "time" }), time] })] }), jsxs("div", { className: "dsa-event-registration__location dsa-event-registration__info", children: [jsx(Icon, { "aria-hidden": true, icon: "map-pin" }), jsxs("address", { children: [location?.name && (jsx("span", { className: "dsa-event-registration__location-name", children: location.name })), jsx(Markdown, { className: "dsa-event-registration__location-address", children: location?.address })] })] })] }), jsx(Link, { className: "dsa-event-registration__link", href: link?.url, children: link?.text })] }), jsxs("form", { className: "dsa-event-registration__form", children: [jsx(TextField, { label: nameInput.label, placeholder: nameInput?.placeholder }), jsx(TextField, { type: "email", label: emailInput.label, placeholder: emailInput?.placeholder }), jsx(Checkbox, { label: confirmationCheckboxLabel, name: "confirmation-checkbox", id: "confirmation-checkbox" }), jsx(Markdown, { className: "dsa-event-registration__mandatory-text", children: mandatoryText }), jsx(Button, { label: cta.label, url: cta.url, "aria-label": cta?.ariaLabel, variant: "primary", size: "small" })] })] })));
15
+ const EventRegistrationContextDefault = forwardRef(({ date, time, title, link, label, location, nameInput, emailInput, mandatoryText, cta, confirmationCheckboxLabel, }, ref) => (jsxs("div", { ref: ref, className: "dsa-event-registration", children: [jsx(Headline, { spaceAfter: "minimum", text: title, level: "h2", sub: label, switchOrder: true }), jsxs("div", { className: "dsa-event-registration__infos", children: [jsxs("div", { className: "dsa-event-registration__details", children: [jsxs("div", { className: "dsa-event-registration__date", children: [jsxs("span", { className: "dsa-event-registration__info", children: [jsx(Icon, { "aria-hidden": true, icon: "date" }), date] }), jsxs("span", { className: "dsa-event-registration__info", children: [jsx(Icon, { "aria-hidden": true, icon: "time" }), time] })] }), jsxs("div", { className: "dsa-event-registration__location dsa-event-registration__info", children: [jsx(Icon, { "aria-hidden": true, icon: "map-pin" }), jsxs("address", { children: [location?.name && (jsx("span", { className: "dsa-event-registration__location-name", children: location.name })), jsx(Markdown, { className: "dsa-event-registration__location-address", children: location?.address })] })] })] }), jsx(Link, { className: "dsa-event-registration__link", href: link?.url, children: link?.text })] }), jsxs("form", { className: "dsa-event-registration__form", children: [jsxs("div", { className: "dsa-event-registration__inputs", children: [jsx(TextField, { label: nameInput.label, placeholder: nameInput?.placeholder }), jsx(TextField, { type: "email", label: emailInput.label, placeholder: emailInput?.placeholder }), jsx(Checkbox, { label: confirmationCheckboxLabel, name: "confirmation-checkbox", id: "confirmation-checkbox" })] }), jsxs("div", { className: "dsa-event-registration__footer", children: [jsx(Markdown, { className: "dsa-event-registration__mandatory-text", children: mandatoryText }), jsx(Button, { label: cta.label, url: cta.url, "aria-label": cta?.ariaLabel, variant: "primary", size: "small" })] })] })] })));
16
16
  const EventRegistrationContext = createContext(EventRegistrationContextDefault);
17
17
  const EventRegistration = forwardRef((props, ref) => {
18
18
  const Component = useContext(EventRegistrationContext);
@@ -70,6 +70,14 @@ var IconSprite = (() => /*#__PURE__*/ jsxs("svg", {
70
70
  children: /*#__PURE__*/ jsx("path", {
71
71
  d: "M13.4 12L18.7 6.7C19.1 6.3 19.1 5.7 18.7 5.3C18.3 4.9 17.7 4.9 17.3 5.3L12 10.6L6.7 5.3C6.3 4.9 5.7 4.9 5.3 5.3C4.9 5.7 4.9 6.3 5.3 6.7L10.6 12L5.3 17.3C4.9 17.7 4.9 18.3 5.3 18.7C5.5 18.9 5.7 19 6 19C6.3 19 6.5 18.9 6.7 18.7L12 13.4L17.3 18.7C17.5 18.9 17.8 19 18 19C18.2 19 18.5 18.9 18.7 18.7C19.1 18.3 19.1 17.7 18.7 17.3L13.4 12Z"
72
72
  })
73
+ }), /*#__PURE__*/ jsx("symbol", {
74
+ id: "icon-search",
75
+ viewBox: "0 0 24 24",
76
+ children: /*#__PURE__*/ jsx("path", {
77
+ fillRule: "evenodd",
78
+ clipRule: "evenodd",
79
+ d: "M11 2C15.9706 2 20 6.02944 20 11C20 13.125 19.2618 15.0766 18.0303 16.6162L21.707 20.293C22.0972 20.6835 22.0974 21.3166 21.707 21.707C21.3166 22.0974 20.6835 22.0972 20.293 21.707L16.6162 18.0303C15.0766 19.2618 13.125 20 11 20C6.02944 20 2 15.9706 2 11C2 6.02944 6.02944 2 11 2ZM11 4C7.13401 4 4 7.13401 4 11C4 14.866 7.13401 18 11 18C12.89 18 14.6038 17.2497 15.8633 16.0322C15.8877 16.0012 15.9148 15.9719 15.9434 15.9434C15.9719 15.9148 16.0012 15.8877 16.0322 15.8633C17.2497 14.6038 18 12.89 18 11C18 7.13401 14.866 4 11 4Z"
80
+ })
73
81
  }), /*#__PURE__*/ jsxs("symbol", {
74
82
  id: "icon-skip-back",
75
83
  viewBox: "0 0 24 24",
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 08 Jul 2025 11:52:16 GMT
3
+ * Generated on Tue, 08 Jul 2025 14:19:26 GMT
4
4
  */
5
5
  :root, [ks-theme] {
6
6
  --ks-background-color-accent-base: var(--ks-color-fg-to-bg-9-base);
@@ -215,7 +215,7 @@
215
215
  "id": "page-archetypes-blog-overview--blog-overview",
216
216
  "group": "Page Archetypes/Blog Overview",
217
217
  "name": "BlogOverview",
218
- "code": "<BlogOverview\n cta={{\n align: 'center',\n buttons: [\n {\n icon: 'person',\n label: 'Contact us',\n url: '#'\n },\n {\n icon: 'date',\n label: 'Book a meeting',\n url: '#'\n }\n ],\n colorNeutral: false,\n contentAlign: 'center',\n fullWidth: true,\n headline: 'Get in touch',\n highlightText: false,\n image: {\n align: 'center',\n padding: false,\n src: 'img/contact-person.png'\n },\n inverted: false,\n order: {\n desktopImageLast: false,\n mobileImageLast: false\n },\n padding: false,\n sub: 'Chat with us about getting your product or platform to market faster',\n text: 'Our modular design approach allows for flexibility and scalability in your application\\'s architecture.',\n textAlign: 'left',\n width: 'wide'\n }}\n latest={{\n alt: 'Image of a business team working',\n author: {\n image: 'img/people/author-alex.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'Mastering the Art of Design Systems with Systemics: A Journey from Vision to Reality',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n text: 'Read article',\n url: 'https://example.com/article1'\n },\n readingTime: '5 min read',\n tags: [\n {\n entry: 'Design Systems'\n },\n {\n entry: 'Headless Websites'\n },\n {\n entry: 'Training'\n }\n ],\n teaserText: 'In this enlightening article, we delve into how Systemics, your go-to Design System agency, brings clarity and coherence to your brand\\'s digital presence. We discuss our unique approach to Design System Consulting, where we align your vision with actionable strategies for seamless and captivating user experiences.'\n }}\n latestTitle=\"Latest Post\"\n list={[\n {\n alt: 'Image of a business team working',\n author: {\n image: 'img/people/author-alex.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'Mastering the Art of Design Systems with Systemics',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n text: 'Read article',\n url: 'https://example.com/article1'\n },\n readingTime: '5 min read',\n tags: [\n {\n entry: 'Design Systems'\n }\n ],\n teaserText: 'In this enlightening article, we delve into how Systemics, your go-to Design System agency, brings clarity and coherence to your brand\\'s digital presence..'\n },\n {\n alt: 'Image of a business team working',\n author: {\n image: 'img/people/author-emily.png',\n name: 'Jane Doe',\n title: 'CTO'\n },\n date: '12/30/2022',\n headline: 'Unleashing Innovation with Headless Websites',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n text: 'Read article',\n url: 'https://example.com/article2'\n },\n readingTime: '5 min read',\n tags: [\n {\n entry: 'Headless Websites'\n }\n ],\n teaserText: 'Dive into the exciting world of headless architecture with Systemics. This article explores our Headless Websites service, a playground of innovation and creativity for brands seeking to redefine their digital journey.'\n },\n {\n alt: 'Image of a business team working',\n author: {\n image: 'img/people/author-alex.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'Investing in Digital Excellence: Systemics\\' Design System Trainings',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n text: 'Read article',\n url: 'https://example.com/article3'\n },\n readingTime: '5 min read',\n tags: [\n {\n entry: 'Training'\n }\n ],\n teaserText: 'Investing in your digital team\\'s growth is crucial for sustainable success. In this article, we highlight Systemics\\' Design System Trainings, designed to equip your team with the skills they need to harness your design system effectively.'\n }\n ]}\n listTitle=\"Recent Posts\"\n more={[\n {\n alt: 'Image of a business team working',\n author: {\n image: 'img/people/author-alex.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'Mastering the Art of Design Systems with Systemics',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n text: 'Read article',\n url: 'https://example.com/article1'\n },\n readingTime: '5 min read',\n tags: [\n {\n entry: 'Design Systems'\n }\n ],\n teaserText: 'In this enlightening article, we delve into how Systemics, your go-to Design System agency, brings clarity and coherence to your brand\\'s digital presence..'\n },\n {\n alt: 'Image of a business team working',\n author: {\n image: 'img/people/author-emily.png',\n name: 'Jane Doe',\n title: 'CTO'\n },\n date: '12/30/2022',\n headline: 'Unleashing Innovation with Headless Websites',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n text: 'Read article',\n url: 'https://example.com/article2'\n },\n readingTime: '5 min read',\n tags: [\n {\n entry: 'Headless Websites'\n }\n ],\n teaserText: 'Dive into the exciting world of headless architecture with Systemics. This article explores our Headless Websites service, a playground of innovation and creativity for brands seeking to redefine their digital journey.'\n }\n ]}\n moreTitle=\"Featured Posts\"\n section={[\n {\n backgroundColor: 'default',\n buttons: [\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n }\n ],\n content: {\n align: 'center',\n gutter: 'default',\n mode: 'default',\n tileWidth: 'default',\n width: 'unset'\n },\n headerSpacing: false,\n headline: {\n large: false,\n text: 'Section headline',\n width: 'unset'\n },\n inverted: false,\n spaceAfter: 'default',\n spaceBefore: 'default',\n spotlight: false,\n style: 'default',\n transition: 'default',\n width: 'default'\n },\n {\n backgroundColor: 'default',\n buttons: [\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n }\n ],\n content: {\n align: 'center',\n gutter: 'default',\n mode: 'default',\n tileWidth: 'default',\n width: 'unset'\n },\n headerSpacing: false,\n headline: {\n large: false,\n text: 'Section headline',\n width: 'unset'\n },\n inverted: false,\n spaceAfter: 'default',\n spaceBefore: 'default',\n spotlight: false,\n style: 'default',\n transition: 'default',\n width: 'default'\n },\n {\n backgroundColor: 'default',\n buttons: [\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n }\n ],\n content: {\n align: 'center',\n gutter: 'default',\n mode: 'default',\n tileWidth: 'default',\n width: 'unset'\n },\n headerSpacing: false,\n headline: {\n large: false,\n text: 'Section headline',\n width: 'unset'\n },\n inverted: false,\n spaceAfter: 'default',\n spaceBefore: 'default',\n spotlight: false,\n style: 'default',\n transition: 'default',\n width: 'default'\n }\n ]}\n/>",
218
+ "code": "<BlogOverview\n cta={{\n align: 'center',\n buttons: [\n {\n icon: 'person',\n label: 'Contact us',\n url: '#'\n },\n {\n icon: 'date',\n label: 'Book a meeting',\n url: '#'\n }\n ],\n colorNeutral: false,\n contentAlign: 'center',\n fullWidth: true,\n headline: 'Get in touch',\n highlightText: false,\n image: {\n align: 'center',\n padding: false,\n src: 'img/people/contact-person.png'\n },\n inverted: false,\n order: {\n desktopImageLast: false,\n mobileImageLast: false\n },\n padding: false,\n sub: 'Chat with us about getting your product or platform to market faster',\n text: 'Our modular design approach allows for flexibility and scalability in your application\\'s architecture.',\n textAlign: 'left',\n width: 'wide'\n }}\n latest={{\n alt: 'Image of a business team working',\n author: {\n image: 'img/people/author-alex.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'Mastering the Art of Design Systems with Systemics: A Journey from Vision to Reality',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n text: 'Read article',\n url: 'https://example.com/article1'\n },\n readingTime: '5 min read',\n tags: [\n {\n entry: 'Design Systems'\n },\n {\n entry: 'Headless Websites'\n },\n {\n entry: 'Training'\n }\n ],\n teaserText: 'In this enlightening article, we delve into how Systemics, your go-to Design System agency, brings clarity and coherence to your brand\\'s digital presence. We discuss our unique approach to Design System Consulting, where we align your vision with actionable strategies for seamless and captivating user experiences.'\n }}\n latestTitle=\"Latest Post\"\n list={[\n {\n alt: 'Image of a business team working',\n author: {\n image: 'img/people/author-alex.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'Mastering the Art of Design Systems with Systemics',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n text: 'Read article',\n url: 'https://example.com/article1'\n },\n readingTime: '5 min read',\n tags: [\n {\n entry: 'Design Systems'\n }\n ],\n teaserText: 'In this enlightening article, we delve into how Systemics, your go-to Design System agency, brings clarity and coherence to your brand\\'s digital presence..'\n },\n {\n alt: 'Image of a business team working',\n author: {\n image: 'img/people/author-emily.png',\n name: 'Jane Doe',\n title: 'CTO'\n },\n date: '12/30/2022',\n headline: 'Unleashing Innovation with Headless Websites',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n text: 'Read article',\n url: 'https://example.com/article2'\n },\n readingTime: '5 min read',\n tags: [\n {\n entry: 'Headless Websites'\n }\n ],\n teaserText: 'Dive into the exciting world of headless architecture with Systemics. This article explores our Headless Websites service, a playground of innovation and creativity for brands seeking to redefine their digital journey.'\n },\n {\n alt: 'Image of a business team working',\n author: {\n image: 'img/people/author-alex.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'Investing in Digital Excellence: Systemics\\' Design System Trainings',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n text: 'Read article',\n url: 'https://example.com/article3'\n },\n readingTime: '5 min read',\n tags: [\n {\n entry: 'Training'\n }\n ],\n teaserText: 'Investing in your digital team\\'s growth is crucial for sustainable success. In this article, we highlight Systemics\\' Design System Trainings, designed to equip your team with the skills they need to harness your design system effectively.'\n }\n ]}\n listTitle=\"Recent Posts\"\n more={[\n {\n alt: 'Image of a business team working',\n author: {\n image: 'img/people/author-alex.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'Mastering the Art of Design Systems with Systemics',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n text: 'Read article',\n url: 'https://example.com/article1'\n },\n readingTime: '5 min read',\n tags: [\n {\n entry: 'Design Systems'\n }\n ],\n teaserText: 'In this enlightening article, we delve into how Systemics, your go-to Design System agency, brings clarity and coherence to your brand\\'s digital presence..'\n },\n {\n alt: 'Image of a business team working',\n author: {\n image: 'img/people/author-emily.png',\n name: 'Jane Doe',\n title: 'CTO'\n },\n date: '12/30/2022',\n headline: 'Unleashing Innovation with Headless Websites',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n text: 'Read article',\n url: 'https://example.com/article2'\n },\n readingTime: '5 min read',\n tags: [\n {\n entry: 'Headless Websites'\n }\n ],\n teaserText: 'Dive into the exciting world of headless architecture with Systemics. This article explores our Headless Websites service, a playground of innovation and creativity for brands seeking to redefine their digital journey.'\n }\n ]}\n moreTitle=\"Featured Posts\"\n section={[\n {\n backgroundColor: 'default',\n buttons: [\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n }\n ],\n content: {\n align: 'center',\n gutter: 'default',\n mode: 'default',\n tileWidth: 'default',\n width: 'unset'\n },\n headerSpacing: false,\n headline: {\n large: false,\n text: 'Section headline',\n width: 'unset'\n },\n inverted: false,\n spaceAfter: 'default',\n spaceBefore: 'default',\n spotlight: false,\n style: 'default',\n transition: 'default',\n width: 'default'\n },\n {\n backgroundColor: 'default',\n buttons: [\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n }\n ],\n content: {\n align: 'center',\n gutter: 'default',\n mode: 'default',\n tileWidth: 'default',\n width: 'unset'\n },\n headerSpacing: false,\n headline: {\n large: false,\n text: 'Section headline',\n width: 'unset'\n },\n inverted: false,\n spaceAfter: 'default',\n spaceBefore: 'default',\n spotlight: false,\n style: 'default',\n transition: 'default',\n width: 'default'\n },\n {\n backgroundColor: 'default',\n buttons: [\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n }\n ],\n content: {\n align: 'center',\n gutter: 'default',\n mode: 'default',\n tileWidth: 'default',\n width: 'unset'\n },\n headerSpacing: false,\n headline: {\n large: false,\n text: 'Section headline',\n width: 'unset'\n },\n inverted: false,\n spaceAfter: 'default',\n spaceBefore: 'default',\n spotlight: false,\n style: 'default',\n transition: 'default',\n width: 'default'\n }\n ]}\n/>",
219
219
  "args": {
220
220
  "section": [
221
221
  {
@@ -519,7 +519,7 @@
519
519
  "image": {
520
520
  "padding": false,
521
521
  "align": "center",
522
- "src": "img/contact-person.png"
522
+ "src": "img/people/contact-person.png"
523
523
  },
524
524
  "order": {
525
525
  "mobileImageLast": false,
@@ -1050,6 +1050,170 @@
1050
1050
  },
1051
1051
  "screenshot": "img/screenshots/page-archetypes-event-list--event-list.png"
1052
1052
  },
1053
+ {
1054
+ "id": "page-archetypes-search--search",
1055
+ "group": "Page Archetypes/Search",
1056
+ "name": "Search",
1057
+ "code": "<Search\n events={[\n {\n category: 'Buyers',\n ctaText: 'Show event',\n date: 'FRI, JAN 16',\n image: {\n alt: 'This is an image of a flower',\n src: 'https://picsum.photos/seed/flower/800/600'\n },\n location: {\n address: 'Köln',\n name: 'Stadthalle'\n },\n tags: [\n 'AI'\n ],\n text: 'The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence. The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence.',\n time: '10:00',\n title: 'This is a event teaser title',\n url: 'https://example.com'\n },\n {\n category: 'Buyers',\n ctaText: 'Show event',\n date: 'FRI, JAN 16',\n image: {\n alt: 'This is an image of a flower',\n src: 'https://picsum.photos/seed/flower/800/600'\n },\n location: {\n address: 'Köln',\n name: 'Stadthalle'\n },\n tags: [\n 'AI'\n ],\n text: 'The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence. The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence.',\n time: '10:00',\n title: 'This is a event teaser title',\n url: 'https://example.com'\n },\n {\n category: 'Buyers',\n ctaText: 'Show event',\n date: 'FRI, JAN 16',\n image: {\n alt: 'This is an image of a flower',\n src: 'https://picsum.photos/seed/flower/800/600'\n },\n location: {\n address: 'Köln',\n name: 'Stadthalle'\n },\n tags: [\n 'AI'\n ],\n text: 'The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence. The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence.',\n time: '10:00',\n title: 'This is a event teaser title',\n url: 'https://example.com'\n }\n ]}\n filter={{\n applyButton: {\n label: 'Filter Appointments'\n },\n categories: {\n categoryCheckboxes: [\n 'Category Filter',\n 'Category Filter',\n 'Category Filter'\n ],\n title: 'Categories',\n toggle: true\n },\n datePicker: {\n dateFromInput: {\n label: 'From',\n placeholder: 'Select a date'\n },\n dateToInput: {\n label: 'To',\n placeholder: 'Select a date'\n },\n title: 'Find Appointment',\n toggle: true\n },\n resetButton: {\n label: 'Reset Filters'\n }\n }}\n searchFilter={{\n categories: [\n {\n amount: 10,\n title: 'Pages',\n url: '#'\n },\n {\n amount: 5,\n title: 'News',\n url: '#'\n },\n {\n amount: 2,\n title: 'Blog Posts',\n url: '#'\n }\n ],\n title: 'Search Filters'\n }}\n searchResults={[\n {\n ariaLabel: 'Search Result: AI Conference 2023',\n showLink: true,\n text: 'Join us for the annual **AI Conference** bringing together experts from around the world.\\n Register now to secure your spot and learn about the latest advancements in AI.',\n title: 'AI Conference 2023',\n url: 'https://www.example.com/ai-conference-2023'\n },\n {\n ariaLabel: 'Search Result: Web Development Summit 2023',\n showLink: true,\n text: 'Explore the future of web development at the **Web Development Summit**.\\n Discover new technologies and network with industry leaders.',\n title: 'Web Development Summit 2023',\n url: 'https://www.example.com/web-development-summit-2023'\n },\n {\n ariaLabel: 'Search Result: Data Science Bootcamp',\n showLink: true,\n text: 'Enhance your skills with our **Data Science Bootcamp**.\\n Learn from experts and work on real-world projects.',\n title: 'Data Science Bootcamp',\n url: 'https://www.example.com/data-science-bootcamp'\n },\n {\n ariaLabel: 'Search Result: AI Conference 2023',\n showLink: true,\n text: 'Join us for the annual **AI Conference** bringing together experts from around the world.\\n Register now to secure your spot and learn about the latest advancements in AI.',\n title: 'AI Conference 2023',\n url: 'https://www.example.com/ai-conference-2023'\n },\n {\n ariaLabel: 'Search Result: Web Development Summit 2023',\n showLink: true,\n text: 'Explore the future of web development at the **Web Development Summit**.\\n Discover new technologies and network with industry leaders.',\n title: 'Web Development Summit 2023',\n url: 'https://www.example.com/web-development-summit-2023'\n },\n {\n ariaLabel: 'Search Result: Data Science Bootcamp',\n showLink: true,\n text: 'Enhance your skills with our **Data Science Bootcamp**.\\n Learn from experts and work on real-world projects.',\n title: 'Data Science Bootcamp',\n url: 'https://www.example.com/data-science-bootcamp'\n }\n ]}\n/>",
1058
+ "args": {
1059
+ "filter": {
1060
+ "datePicker": {
1061
+ "title": "Find Appointment",
1062
+ "dateFromInput": {
1063
+ "label": "From",
1064
+ "placeholder": "Select a date"
1065
+ },
1066
+ "dateToInput": {
1067
+ "label": "To",
1068
+ "placeholder": "Select a date"
1069
+ },
1070
+ "toggle": true
1071
+ },
1072
+ "categories": {
1073
+ "title": "Categories",
1074
+ "categoryCheckboxes": [
1075
+ "Category Filter",
1076
+ "Category Filter",
1077
+ "Category Filter"
1078
+ ],
1079
+ "toggle": true
1080
+ },
1081
+ "applyButton": {
1082
+ "label": "Filter Appointments"
1083
+ },
1084
+ "resetButton": {
1085
+ "label": "Reset Filters"
1086
+ }
1087
+ },
1088
+ "events": [
1089
+ {
1090
+ "category": "Buyers",
1091
+ "title": "This is a event teaser title",
1092
+ "text": "The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence. The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence.",
1093
+ "date": "FRI, JAN 16",
1094
+ "time": "10:00",
1095
+ "location": {
1096
+ "name": "Stadthalle",
1097
+ "address": "Köln"
1098
+ },
1099
+ "tags": [
1100
+ "AI"
1101
+ ],
1102
+ "image": {
1103
+ "src": "https://picsum.photos/seed/flower/800/600",
1104
+ "alt": "This is an image of a flower"
1105
+ },
1106
+ "url": "https://example.com",
1107
+ "ctaText": "Show event"
1108
+ },
1109
+ {
1110
+ "category": "Buyers",
1111
+ "title": "This is a event teaser title",
1112
+ "text": "The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence. The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence.",
1113
+ "date": "FRI, JAN 16",
1114
+ "time": "10:00",
1115
+ "location": {
1116
+ "name": "Stadthalle",
1117
+ "address": "Köln"
1118
+ },
1119
+ "tags": [
1120
+ "AI"
1121
+ ],
1122
+ "image": {
1123
+ "src": "https://picsum.photos/seed/flower/800/600",
1124
+ "alt": "This is an image of a flower"
1125
+ },
1126
+ "url": "https://example.com",
1127
+ "ctaText": "Show event"
1128
+ },
1129
+ {
1130
+ "category": "Buyers",
1131
+ "title": "This is a event teaser title",
1132
+ "text": "The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence. The Future of AI is here and now - Join us to explore the latest advancements in artificial intelligence.",
1133
+ "date": "FRI, JAN 16",
1134
+ "time": "10:00",
1135
+ "location": {
1136
+ "name": "Stadthalle",
1137
+ "address": "Köln"
1138
+ },
1139
+ "tags": [
1140
+ "AI"
1141
+ ],
1142
+ "image": {
1143
+ "src": "https://picsum.photos/seed/flower/800/600",
1144
+ "alt": "This is an image of a flower"
1145
+ },
1146
+ "url": "https://example.com",
1147
+ "ctaText": "Show event"
1148
+ }
1149
+ ],
1150
+ "searchFilter": {
1151
+ "title": "Search Filters",
1152
+ "categories": [
1153
+ {
1154
+ "title": "Pages",
1155
+ "url": "#",
1156
+ "amount": 10
1157
+ },
1158
+ {
1159
+ "title": "News",
1160
+ "url": "#",
1161
+ "amount": 5
1162
+ },
1163
+ {
1164
+ "title": "Blog Posts",
1165
+ "url": "#",
1166
+ "amount": 2
1167
+ }
1168
+ ]
1169
+ },
1170
+ "searchResults": [
1171
+ {
1172
+ "url": "https://www.example.com/ai-conference-2023",
1173
+ "title": "AI Conference 2023",
1174
+ "text": "Join us for the annual **AI Conference** bringing together experts from around the world.\n Register now to secure your spot and learn about the latest advancements in AI.",
1175
+ "ariaLabel": "Search Result: AI Conference 2023",
1176
+ "showLink": true
1177
+ },
1178
+ {
1179
+ "url": "https://www.example.com/web-development-summit-2023",
1180
+ "title": "Web Development Summit 2023",
1181
+ "text": "Explore the future of web development at the **Web Development Summit**.\n Discover new technologies and network with industry leaders.",
1182
+ "ariaLabel": "Search Result: Web Development Summit 2023",
1183
+ "showLink": true
1184
+ },
1185
+ {
1186
+ "url": "https://www.example.com/data-science-bootcamp",
1187
+ "title": "Data Science Bootcamp",
1188
+ "text": "Enhance your skills with our **Data Science Bootcamp**.\n Learn from experts and work on real-world projects.",
1189
+ "ariaLabel": "Search Result: Data Science Bootcamp",
1190
+ "showLink": true
1191
+ },
1192
+ {
1193
+ "url": "https://www.example.com/ai-conference-2023",
1194
+ "title": "AI Conference 2023",
1195
+ "text": "Join us for the annual **AI Conference** bringing together experts from around the world.\n Register now to secure your spot and learn about the latest advancements in AI.",
1196
+ "ariaLabel": "Search Result: AI Conference 2023",
1197
+ "showLink": true
1198
+ },
1199
+ {
1200
+ "url": "https://www.example.com/web-development-summit-2023",
1201
+ "title": "Web Development Summit 2023",
1202
+ "text": "Explore the future of web development at the **Web Development Summit**.\n Discover new technologies and network with industry leaders.",
1203
+ "ariaLabel": "Search Result: Web Development Summit 2023",
1204
+ "showLink": true
1205
+ },
1206
+ {
1207
+ "url": "https://www.example.com/data-science-bootcamp",
1208
+ "title": "Data Science Bootcamp",
1209
+ "text": "Enhance your skills with our **Data Science Bootcamp**.\n Learn from experts and work on real-world projects.",
1210
+ "ariaLabel": "Search Result: Data Science Bootcamp",
1211
+ "showLink": true
1212
+ }
1213
+ ]
1214
+ },
1215
+ "screenshot": "img/screenshots/page-archetypes-search--search.png"
1216
+ },
1053
1217
  {
1054
1218
  "id": "components-contact--wide-image",
1055
1219
  "group": "Components/Contact",
@@ -1333,7 +1497,7 @@
1333
1497
  "id": "components-cta--contact-banner",
1334
1498
  "group": "Components/Cta",
1335
1499
  "name": "ContactBanner",
1336
- "code": "<Cta\n align=\"center\"\n buttons={[\n {\n icon: 'person',\n label: 'Contact us',\n url: '#'\n },\n {\n icon: 'date',\n label: 'Book a meeting',\n url: '#'\n }\n ]}\n headline=\"Get in touch\"\n image={{\n align: 'center',\n padding: false,\n src: 'img/contact-person.png'\n }}\n order={{\n desktopImageLast: false,\n mobileImageLast: false\n }}\n padding\n sub=\"Chat with us about getting your product or platform to market faster\"\n text=\"Our modular design approach allows for flexibility and scalability in your application's architecture.\"\n textAlign=\"left\"\n/>",
1500
+ "code": "<Cta\n align=\"center\"\n buttons={[\n {\n icon: 'person',\n label: 'Contact us',\n url: '#'\n },\n {\n icon: 'date',\n label: 'Book a meeting',\n url: '#'\n }\n ]}\n headline=\"Get in touch\"\n image={{\n align: 'center',\n padding: false,\n src: 'img/people/contact-person.png'\n }}\n order={{\n desktopImageLast: false,\n mobileImageLast: false\n }}\n padding\n sub=\"Chat with us about getting your product or platform to market faster\"\n text=\"Our modular design approach allows for flexibility and scalability in your application's architecture.\"\n textAlign=\"left\"\n/>",
1337
1501
  "args": {
1338
1502
  "headline": "Get in touch",
1339
1503
  "sub": "Chat with us about getting your product or platform to market faster",
@@ -1354,7 +1518,7 @@
1354
1518
  "image": {
1355
1519
  "padding": false,
1356
1520
  "align": "center",
1357
- "src": "img/contact-person.png"
1521
+ "src": "img/people/contact-person.png"
1358
1522
  },
1359
1523
  "order": {
1360
1524
  "mobileImageLast": false,
@@ -3340,6 +3504,65 @@
3340
3504
  },
3341
3505
  "screenshot": "img/screenshots/industry-pagination--default.png"
3342
3506
  },
3507
+ {
3508
+ "id": "industry-search-bar--default",
3509
+ "group": "Industry / Search Bar",
3510
+ "name": "Default",
3511
+ "code": "<SearchBar\n alternativeResult=\"AI Conference\"\n alternativeText=\"Did you mean\"\n buttonText=\"Search\"\n hint=\"Press <kbd>Enter</kbd> to search\"\n placeholder=\"Search...\"\n/>",
3512
+ "args": {
3513
+ "placeholder": "Search...",
3514
+ "buttonText": "Search",
3515
+ "hint": "Press <kbd>Enter</kbd> to search",
3516
+ "alternativeText": "Did you mean",
3517
+ "alternativeResult": "AI Conference"
3518
+ },
3519
+ "screenshot": "img/screenshots/industry-search-bar--default.png"
3520
+ },
3521
+ {
3522
+ "id": "industry-search-filter--default",
3523
+ "group": "Industry / Search Filter",
3524
+ "name": "Default",
3525
+ "code": "<SearchFilter\n categories={[\n {\n amount: '10',\n title: 'Pages',\n url: '#'\n },\n {\n amount: '5',\n title: 'News',\n url: '#'\n },\n {\n amount: '8',\n title: 'Blog Posts',\n url: '#'\n }\n ]}\n title=\"Search by category\"\n/>",
3526
+ "args": {
3527
+ "title": "Search by category",
3528
+ "categories": [
3529
+ {
3530
+ "title": "Pages",
3531
+ "amount": "10",
3532
+ "url": "#"
3533
+ },
3534
+ {
3535
+ "title": "News",
3536
+ "amount": "5",
3537
+ "url": "#"
3538
+ },
3539
+ {
3540
+ "title": "Blog Posts",
3541
+ "amount": "8",
3542
+ "url": "#"
3543
+ }
3544
+ ]
3545
+ },
3546
+ "screenshot": "img/screenshots/industry-search-filter--default.png"
3547
+ },
3548
+ {
3549
+ "id": "industry-search-result--default",
3550
+ "group": "Industry / Search Result",
3551
+ "name": "Default",
3552
+ "code": "<SearchResult\n ariaLabel=\"Search Result: AI Conference 2023\"\n link={{\n label: 'Read more',\n url: 'https://www.example.com/ai-conference-2023'\n }}\n showLink\n text=\"Join us for the annual **AI Conference** brings together experts from around the world\n[...] register now for the **AI Conference** to secure your spot\n[...] highlights from last year’s **AI Conference** included keynote speeches on machine learning\n[...] find out more about the **AI Conference** agenda and speakers\"\n title=\"AI Conference 2023\"\n url=\"https://www.example.com/ai-conference-2023\"\n/>",
3553
+ "args": {
3554
+ "url": "https://www.example.com/ai-conference-2023",
3555
+ "title": "AI Conference 2023",
3556
+ "text": "Join us for the annual **AI Conference** brings together experts from around the world\n[...] register now for the **AI Conference** to secure your spot\n[...] highlights from last year’s **AI Conference** included keynote speeches on machine learning\n[...] find out more about the **AI Conference** agenda and speakers",
3557
+ "showLink": true,
3558
+ "ariaLabel": "Search Result: AI Conference 2023",
3559
+ "link": {
3560
+ "url": "https://www.example.com/ai-conference-2023",
3561
+ "label": "Read more"
3562
+ }
3563
+ },
3564
+ "screenshot": "img/screenshots/industry-search-result--default.png"
3565
+ },
3343
3566
  {
3344
3567
  "id": "layout-section--dynamic-layout",
3345
3568
  "group": "Layout/Section",
@@ -0,0 +1,19 @@
1
+ import { FC, PropsWithChildren } from "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 { SearchFilterProps } from "../../SearchFilterProps-2fa6419b.js";
9
+ import { SearchResultProps } from "../../SearchResultProps-224c2338.js";
10
+ interface SearchProps {
11
+ /**
12
+ * Referenced component SearchFilterProps
13
+ */
14
+ searchFilter?: SearchFilterProps;
15
+ searchResults?: SearchResultProps[];
16
+ }
17
+ declare const Search: FC<PropsWithChildren<SearchProps>>;
18
+ export type { SearchProps };
19
+ export { Search };
@@ -0,0 +1,39 @@
1
+ import { jsx, Fragment, jsxs } from 'react/jsx-runtime';
2
+ import { Section } from '../section/index.js';
3
+ import { SplitWeighted } from '../split-weighted/index.js';
4
+ import { SearchFilter } from '../search-filter/index.js';
5
+ import { SearchResult } from '../search-result/index.js';
6
+ import { RichText } from '@kickstartds/base/lib/rich-text';
7
+ import { Pagination } from '../pagination/index.js';
8
+ import 'react';
9
+ import 'classnames';
10
+ import '@kickstartds/core/lib/react';
11
+ import '@kickstartds/base/lib/section';
12
+ import '../section/js/Section.client.js';
13
+ import '@kickstartds/core/lib/component';
14
+ import 'markdown-to-jsx';
15
+ import '@kickstartds/base/lib/link';
16
+ import '@kickstartds/base/lib/icon';
17
+
18
+ const Search = ({ searchFilter, searchResults, }) => (jsx(Fragment, { children: jsx(Section, { width: "wide", children: jsx(SplitWeighted, { verticalAlign: "sticky", mainLayout: {
19
+ minWidth: "narrow",
20
+ }, asideLayout: {
21
+ gutter: "small",
22
+ }, order: {
23
+ desktop: "asideFirst",
24
+ mobile: "asideFirst",
25
+ }, aside: jsxs(Fragment, { children: [jsx(SearchFilter, { ...searchFilter }), jsx(RichText, { text: `Showing 6 out of 18 results` })] }), main: jsxs(Fragment, { children: [searchResults.map((searchResult, index) => (jsx(SearchResult, { ...searchResult }, index))), jsx(Pagination, { pages: [
26
+ {
27
+ url: "https://example.com/page1",
28
+ active: true,
29
+ },
30
+ {
31
+ url: "https://example.com/page2",
32
+ },
33
+ {
34
+ url: "https://example.com/page3",
35
+ },
36
+ ] })] }) }) }) }));
37
+ Search.displayName = "Search";
38
+
39
+ export { Search };