@kickstartds/ds-agency-premium 1.6.71--canary.45.1992.0 → 1.6.71--canary.45.1999.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 +1 -1
- package/dist/BlogPostProps-6b3cff22.d.ts +1 -1
- package/dist/BusinessCardProps-e10e7b62.d.ts +101 -0
- package/dist/ContentNavProps-0e282a9f.d.ts +36 -0
- package/dist/DownloadsProps-a49a977e.d.ts +34 -0
- package/dist/PageProps-aa29c554.d.ts +1 -1
- package/dist/{SectionProps-21d04028.d.ts → SectionProps-b9fd1bfd.d.ts} +6 -1
- package/dist/SplitEvenProps-789f8508.d.ts +65 -0
- package/dist/SplitWeightedProps-789f8508.d.ts +95 -0
- package/dist/components/blog-overview/blog-overview.schema.dereffed.json +11755 -0
- package/dist/components/blog-post/blog-post.schema.dereffed.json +11755 -0
- package/dist/components/blog-post/index.js +1 -1
- package/dist/components/breadcrumb/index.js +6 -1
- package/dist/components/business-card/index.d.ts +1 -101
- package/dist/components/business-card/index.js +11 -1
- package/dist/components/button/index.js +19 -9
- package/dist/components/button-group/index.js +11 -2
- package/dist/components/content-nav/index.d.ts +1 -36
- package/dist/components/content-nav/index.js +8 -1
- package/dist/components/downloads/index.d.ts +1 -34
- package/dist/components/downloads/index.js +6 -1
- package/dist/components/event-appointment/index.js +8 -1
- package/dist/components/event-detail/index.js +1 -1
- package/dist/components/event-filter/index.js +28 -1
- package/dist/components/event-header/index.js +6 -2
- package/dist/components/event-latest/index.js +6 -1
- package/dist/components/event-latest-teaser/index.js +6 -1
- package/dist/components/event-list-teaser/index.js +8 -1
- package/dist/components/event-location/index.js +8 -1
- package/dist/components/event-login/index.js +11 -1
- package/dist/components/event-registration/index.js +14 -1
- package/dist/components/headline/index.js +13 -4
- package/dist/components/page/page.schema.dereffed.json +11755 -0
- package/dist/components/page-wrapper/index.js +1 -1
- package/dist/components/page-wrapper/tokens.css +1 -1
- package/dist/components/pagination/index.js +13 -1
- package/dist/components/presets.json +4 -4
- package/dist/components/providers/index.js +1 -1
- package/dist/components/search-bar/index.js +4 -1
- package/dist/components/search-filter/index.js +6 -1
- package/dist/components/search-result/index.js +6 -1
- package/dist/components/section/index.d.ts +1 -1
- package/dist/components/section/section.schema.dereffed.json +11755 -0
- package/dist/components/section/section.schema.json +15 -0
- package/dist/components/slider/index.d.ts +3 -1
- package/dist/components/slider/index.js +19 -3
- package/dist/components/split-even/index.d.ts +9 -71
- package/dist/components/split-even/index.js +21 -2
- package/dist/components/split-weighted/index.d.ts +7 -99
- package/dist/components/split-weighted/index.js +33 -4
- 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
|
@@ -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-b9fd1bfd.js";
|
|
7
7
|
import { BlogTeaserProps } from "./BlogTeaserProps-f5855e93.js";
|
|
8
8
|
import { CtaProps } from "./CtaProps-789f8508.js";
|
|
9
9
|
import { SeoProps } from "./SeoProps-f2d6dcaa.js";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
import { BlogHeadProps } from "./BlogHeadProps-c04a5ed8.js";
|
|
7
7
|
import { BlogAsideProps } from "./BlogAsideProps-c760fd2a.js";
|
|
8
|
-
import { SectionProps } from "./SectionProps-
|
|
8
|
+
import { SectionProps } from "./SectionProps-b9fd1bfd.js";
|
|
9
9
|
import { CtaProps } from "./CtaProps-789f8508.js";
|
|
10
10
|
import { SeoProps } from "./SeoProps-f2d6dcaa.js";
|
|
11
11
|
/**
|
|
@@ -0,0 +1,101 @@
|
|
|
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
|
+
* Whether the business card content is centered.
|
|
8
|
+
*/
|
|
9
|
+
type Centered = boolean;
|
|
10
|
+
/**
|
|
11
|
+
* A headline or main topic for the business card, such as a job title or department.
|
|
12
|
+
*/
|
|
13
|
+
type Topic = string;
|
|
14
|
+
/**
|
|
15
|
+
* The physical or mailing address displayed on the business card.
|
|
16
|
+
*/
|
|
17
|
+
type Address = string;
|
|
18
|
+
/**
|
|
19
|
+
* A list of contact methods for the person or business (e.g., email, phone, website).
|
|
20
|
+
*/
|
|
21
|
+
type ContactInformation = {
|
|
22
|
+
/**
|
|
23
|
+
* Label describing the contact method (e.g., 'Email', 'Phone').
|
|
24
|
+
*/
|
|
25
|
+
label: string;
|
|
26
|
+
/**
|
|
27
|
+
* Icon name or identifier representing the contact method.
|
|
28
|
+
*/
|
|
29
|
+
icon?: string;
|
|
30
|
+
/**
|
|
31
|
+
* URL or link for the contact method, if applicable.
|
|
32
|
+
*/
|
|
33
|
+
url?: string;
|
|
34
|
+
}[];
|
|
35
|
+
/**
|
|
36
|
+
* A list of action buttons shown on the business card.
|
|
37
|
+
*/
|
|
38
|
+
type Buttons = {
|
|
39
|
+
/**
|
|
40
|
+
* Text label for the link.
|
|
41
|
+
*/
|
|
42
|
+
label: string;
|
|
43
|
+
/**
|
|
44
|
+
* URL the link points to.
|
|
45
|
+
*/
|
|
46
|
+
url: string;
|
|
47
|
+
}[];
|
|
48
|
+
interface BusinessCardProps {
|
|
49
|
+
centered?: Centered;
|
|
50
|
+
image?: BackgroundImage;
|
|
51
|
+
logo?: CompanyLogo;
|
|
52
|
+
topic?: Topic;
|
|
53
|
+
address?: Address;
|
|
54
|
+
avatar?: Avatar;
|
|
55
|
+
contact?: ContactInformation;
|
|
56
|
+
buttons?: Buttons;
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* A background or feature image displayed on the business card.
|
|
60
|
+
*/
|
|
61
|
+
interface BackgroundImage {
|
|
62
|
+
/**
|
|
63
|
+
* URL of the background image shown on the business card.
|
|
64
|
+
*/
|
|
65
|
+
src: string;
|
|
66
|
+
/**
|
|
67
|
+
* Alternative text describing the background image.
|
|
68
|
+
*/
|
|
69
|
+
alt?: string;
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* The logo of the company or organization displayed on the business card.
|
|
73
|
+
*/
|
|
74
|
+
interface CompanyLogo {
|
|
75
|
+
/**
|
|
76
|
+
* URL of the company or organization logo.
|
|
77
|
+
*/
|
|
78
|
+
src: string;
|
|
79
|
+
/**
|
|
80
|
+
* Alternative text describing the logo.
|
|
81
|
+
*/
|
|
82
|
+
alt?: string;
|
|
83
|
+
/**
|
|
84
|
+
* URL to the company's website or landing page.
|
|
85
|
+
*/
|
|
86
|
+
url?: string;
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* A profile image or avatar representing the person on the business card.
|
|
90
|
+
*/
|
|
91
|
+
interface Avatar {
|
|
92
|
+
/**
|
|
93
|
+
* URL of the person's avatar or profile image.
|
|
94
|
+
*/
|
|
95
|
+
src: string;
|
|
96
|
+
/**
|
|
97
|
+
* Alternative text describing the avatar.
|
|
98
|
+
*/
|
|
99
|
+
alt?: string;
|
|
100
|
+
}
|
|
101
|
+
export { Centered, Topic, Address, ContactInformation, Buttons, BusinessCardProps, BackgroundImage, CompanyLogo, Avatar };
|
|
@@ -0,0 +1,36 @@
|
|
|
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 ContentNavProps {
|
|
7
|
+
image?: {
|
|
8
|
+
/**
|
|
9
|
+
* URL of the image to display in the content nav.
|
|
10
|
+
*/
|
|
11
|
+
src: string;
|
|
12
|
+
/**
|
|
13
|
+
* Alternative text for the image.
|
|
14
|
+
*/
|
|
15
|
+
alt?: string;
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* The topic of the content being navigated.
|
|
19
|
+
*/
|
|
20
|
+
topic?: string;
|
|
21
|
+
links?: {
|
|
22
|
+
/**
|
|
23
|
+
* The text label for the link.
|
|
24
|
+
*/
|
|
25
|
+
label: string;
|
|
26
|
+
/**
|
|
27
|
+
* The URL the link points to.
|
|
28
|
+
*/
|
|
29
|
+
url: string;
|
|
30
|
+
}[];
|
|
31
|
+
/**
|
|
32
|
+
* Determines how many links are initially shown in the content nav. If there are more links, a 'Show More' button will be displayed.
|
|
33
|
+
*/
|
|
34
|
+
initiallyShown?: number;
|
|
35
|
+
}
|
|
36
|
+
export { ContentNavProps };
|
|
@@ -0,0 +1,34 @@
|
|
|
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 DownloadsProps {
|
|
7
|
+
downloads?: {
|
|
8
|
+
/**
|
|
9
|
+
* The name of the file
|
|
10
|
+
*/
|
|
11
|
+
name: string;
|
|
12
|
+
/**
|
|
13
|
+
* A brief description of the file
|
|
14
|
+
*/
|
|
15
|
+
description?: string;
|
|
16
|
+
/**
|
|
17
|
+
* A URL to an image that previews the file.
|
|
18
|
+
*/
|
|
19
|
+
previewImage?: string;
|
|
20
|
+
/**
|
|
21
|
+
* The URL to download the file from.
|
|
22
|
+
*/
|
|
23
|
+
url: string;
|
|
24
|
+
/**
|
|
25
|
+
* The size of the download file
|
|
26
|
+
*/
|
|
27
|
+
size?: string;
|
|
28
|
+
/**
|
|
29
|
+
* The format of the download file
|
|
30
|
+
*/
|
|
31
|
+
format?: string;
|
|
32
|
+
}[];
|
|
33
|
+
}
|
|
34
|
+
export { DownloadsProps };
|
|
@@ -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-b9fd1bfd.js";
|
|
7
7
|
import { SeoProps } from "./SeoProps-f2d6dcaa.js";
|
|
8
8
|
/**
|
|
9
9
|
* Collection of sections (with their contents) to render on the page
|
|
@@ -3,8 +3,11 @@
|
|
|
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 { BusinessCardProps } from "./BusinessCardProps-e10e7b62.js";
|
|
7
|
+
import { ContentNavProps } from "./ContentNavProps-0e282a9f.js";
|
|
6
8
|
import { CtaProps } from "./CtaProps-789f8508.js";
|
|
7
9
|
import { DividerProps } from "./DividerProps-2ef31901.js";
|
|
10
|
+
import { DownloadsProps } from "./DownloadsProps-a49a977e.js";
|
|
8
11
|
import { FaqProps } from "./FaqProps-ad618cd5.js";
|
|
9
12
|
import { FeaturesProps } from "./FeaturesProps-a9041d97.js";
|
|
10
13
|
import { GalleryProps } from "./GalleryProps-76e7de44.js";
|
|
@@ -15,6 +18,8 @@ import { ImageTextProps } from "./ImageTextProps-9286cca4.js";
|
|
|
15
18
|
import { LogosProps } from "./LogosProps-f9474fe2.js";
|
|
16
19
|
import { MosaicProps } from "./MosaicProps-d52c7151.js";
|
|
17
20
|
import { SliderProps } from "./SliderProps-789f8508.js";
|
|
21
|
+
import { SplitEvenProps } from "./SplitEvenProps-789f8508.js";
|
|
22
|
+
import { SplitWeightedProps } from "./SplitWeightedProps-789f8508.js";
|
|
18
23
|
import { StatsProps } from "./StatsProps-bf5ef578.js";
|
|
19
24
|
import { TeaserCardProps } from "./TeaserCardProps-994cb119.js";
|
|
20
25
|
import { TestimonialsProps } from "./TestimonialsProps-e344f597.js";
|
|
@@ -112,7 +117,7 @@ type TileWidth = "smallest" | "default" | "medium" | "large" | "largest";
|
|
|
112
117
|
/**
|
|
113
118
|
* Allowed components for content
|
|
114
119
|
*/
|
|
115
|
-
type Content = (CtaProps | DividerProps | FaqProps | FeaturesProps | GalleryProps | HeroProps | HtmlProps | ImageStoryProps | ImageTextProps | LogosProps | MosaicProps | SliderProps | StatsProps | TeaserCardProps | TestimonialsProps | TextProps | VideoCurtainProps)[];
|
|
120
|
+
type Content = (BusinessCardProps | ContentNavProps | CtaProps | DividerProps | DownloadsProps | FaqProps | FeaturesProps | GalleryProps | HeroProps | HtmlProps | ImageStoryProps | ImageTextProps | LogosProps | MosaicProps | SliderProps | SplitEvenProps | SplitWeightedProps | StatsProps | TeaserCardProps | TestimonialsProps | TextProps | VideoCurtainProps)[];
|
|
116
121
|
/**
|
|
117
122
|
* Buttons of the Button Group
|
|
118
123
|
*/
|
|
@@ -0,0 +1,65 @@
|
|
|
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
|
+
import { CtaProps } from "./CtaProps-789f8508.js";
|
|
7
|
+
import { DividerProps } from "./DividerProps-2ef31901.js";
|
|
8
|
+
import { FaqProps } from "./FaqProps-ad618cd5.js";
|
|
9
|
+
import { FeaturesProps } from "./FeaturesProps-a9041d97.js";
|
|
10
|
+
import { GalleryProps } from "./GalleryProps-76e7de44.js";
|
|
11
|
+
import { HeroProps } from "./HeroProps-fec6b267.js";
|
|
12
|
+
import { HtmlProps } from "./HtmlProps-9d091769.js";
|
|
13
|
+
import { ImageStoryProps } from "./ImageStoryProps-e853e1e7.js";
|
|
14
|
+
import { ImageTextProps } from "./ImageTextProps-9286cca4.js";
|
|
15
|
+
import { LogosProps } from "./LogosProps-f9474fe2.js";
|
|
16
|
+
import { MosaicProps } from "./MosaicProps-d52c7151.js";
|
|
17
|
+
import { SliderProps } from "./SliderProps-789f8508.js";
|
|
18
|
+
import { StatsProps } from "./StatsProps-bf5ef578.js";
|
|
19
|
+
import { TeaserCardProps } from "./TeaserCardProps-994cb119.js";
|
|
20
|
+
import { TestimonialsProps } from "./TestimonialsProps-e344f597.js";
|
|
21
|
+
import { TextProps } from "./TextProps-a23170d2.js";
|
|
22
|
+
import { VideoCurtainProps } from "./VideoCurtainProps-a2c0cc7f.js";
|
|
23
|
+
/**
|
|
24
|
+
* Sets the minimum width for each half of the split layout
|
|
25
|
+
*/
|
|
26
|
+
type ContentMinimumWidth = "narrow" | "medium" | "wide";
|
|
27
|
+
/**
|
|
28
|
+
* Sets the space between the content inside the two halves of the split layout
|
|
29
|
+
*/
|
|
30
|
+
type ContentGutter = "small" | "default" | "large" | "none";
|
|
31
|
+
/**
|
|
32
|
+
* Reverses the order of the sections on mobile devices
|
|
33
|
+
*/
|
|
34
|
+
type MobileReverse = boolean;
|
|
35
|
+
/**
|
|
36
|
+
* Aligns the content vertically within the sections
|
|
37
|
+
*/
|
|
38
|
+
type VerticalAlignment = "top" | "center" | "bottom" | "sticky";
|
|
39
|
+
/**
|
|
40
|
+
* Sets the vertical space between the content of the split layout
|
|
41
|
+
*/
|
|
42
|
+
type VerticalGutter = "large" | "default" | "small" | "none";
|
|
43
|
+
/**
|
|
44
|
+
* Sets the horizontal space between the content of the split layout
|
|
45
|
+
*/
|
|
46
|
+
type HorizontalGutter = "large" | "default" | "small" | "none";
|
|
47
|
+
/**
|
|
48
|
+
* Allowed components for the first half of the split layout
|
|
49
|
+
*/
|
|
50
|
+
type First = (CtaProps | DividerProps | FaqProps | FeaturesProps | GalleryProps | HeroProps | HtmlProps | ImageStoryProps | ImageTextProps | LogosProps | MosaicProps | SliderProps | StatsProps | TeaserCardProps | TestimonialsProps | TextProps | VideoCurtainProps)[];
|
|
51
|
+
/**
|
|
52
|
+
* Allowed components for the second half of the split layout
|
|
53
|
+
*/
|
|
54
|
+
type Second = (CtaProps | DividerProps | FaqProps | FeaturesProps | GalleryProps | HeroProps | HtmlProps | ImageStoryProps | ImageTextProps | LogosProps | MosaicProps | SliderProps | StatsProps | TeaserCardProps | TestimonialsProps | TextProps | VideoCurtainProps)[];
|
|
55
|
+
interface SplitEvenProps {
|
|
56
|
+
contentMinWidth?: ContentMinimumWidth;
|
|
57
|
+
contentGutter?: ContentGutter;
|
|
58
|
+
mobileReverse?: MobileReverse;
|
|
59
|
+
verticalAlign?: VerticalAlignment;
|
|
60
|
+
verticalGutter?: VerticalGutter;
|
|
61
|
+
horizontalGutter?: HorizontalGutter;
|
|
62
|
+
firstComponents?: First;
|
|
63
|
+
secondComponents?: Second;
|
|
64
|
+
}
|
|
65
|
+
export { ContentMinimumWidth, ContentGutter, MobileReverse, VerticalAlignment, VerticalGutter, HorizontalGutter, First, Second, SplitEvenProps };
|
|
@@ -0,0 +1,95 @@
|
|
|
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
|
+
import { CtaProps } from "./CtaProps-789f8508.js";
|
|
7
|
+
import { DividerProps } from "./DividerProps-2ef31901.js";
|
|
8
|
+
import { FaqProps } from "./FaqProps-ad618cd5.js";
|
|
9
|
+
import { FeaturesProps } from "./FeaturesProps-a9041d97.js";
|
|
10
|
+
import { GalleryProps } from "./GalleryProps-76e7de44.js";
|
|
11
|
+
import { HeroProps } from "./HeroProps-fec6b267.js";
|
|
12
|
+
import { HtmlProps } from "./HtmlProps-9d091769.js";
|
|
13
|
+
import { ImageStoryProps } from "./ImageStoryProps-e853e1e7.js";
|
|
14
|
+
import { ImageTextProps } from "./ImageTextProps-9286cca4.js";
|
|
15
|
+
import { LogosProps } from "./LogosProps-f9474fe2.js";
|
|
16
|
+
import { MosaicProps } from "./MosaicProps-d52c7151.js";
|
|
17
|
+
import { SliderProps } from "./SliderProps-789f8508.js";
|
|
18
|
+
import { StatsProps } from "./StatsProps-bf5ef578.js";
|
|
19
|
+
import { TeaserCardProps } from "./TeaserCardProps-994cb119.js";
|
|
20
|
+
import { TestimonialsProps } from "./TestimonialsProps-e344f597.js";
|
|
21
|
+
import { TextProps } from "./TextProps-a23170d2.js";
|
|
22
|
+
import { VideoCurtainProps } from "./VideoCurtainProps-a2c0cc7f.js";
|
|
23
|
+
/**
|
|
24
|
+
* Sets the vertical space between the content of the split layout
|
|
25
|
+
*/
|
|
26
|
+
type VerticalGutter = "large" | "default" | "small" | "none";
|
|
27
|
+
/**
|
|
28
|
+
* Sets the horizontal space between the content of the split layout
|
|
29
|
+
*/
|
|
30
|
+
type HorizontalGutter = "large" | "default" | "small" | "none";
|
|
31
|
+
/**
|
|
32
|
+
* Aligns the content vertically within the sections
|
|
33
|
+
*/
|
|
34
|
+
type VerticalAlignment = "top" | "center" | "bottom" | "sticky";
|
|
35
|
+
/**
|
|
36
|
+
* Sets the space between the content of the split layout
|
|
37
|
+
*/
|
|
38
|
+
type ContentGutter = "large" | "default" | "small" | "none";
|
|
39
|
+
/**
|
|
40
|
+
* Sets the minimum width of the main section
|
|
41
|
+
*/
|
|
42
|
+
type MinimumWidth = "narrow" | "default" | "wide";
|
|
43
|
+
/**
|
|
44
|
+
* Size of gutter to use
|
|
45
|
+
*/
|
|
46
|
+
type Gutter = "large" | "default" | "small" | "none";
|
|
47
|
+
/**
|
|
48
|
+
* Sets the minimum width of the main section
|
|
49
|
+
*/
|
|
50
|
+
type MinimumWidth1 = "narrow" | "default" | "wide";
|
|
51
|
+
/**
|
|
52
|
+
* Determines the order of sections on mobile devices
|
|
53
|
+
*/
|
|
54
|
+
type MobileOrder = "mainFirst" | "asideFirst";
|
|
55
|
+
/**
|
|
56
|
+
* Determines the order of sections on desktop devices
|
|
57
|
+
*/
|
|
58
|
+
type DesktopOrder = "mainFirst" | "asideFirst";
|
|
59
|
+
/**
|
|
60
|
+
* Allowed components for the main half of the split layout
|
|
61
|
+
*/
|
|
62
|
+
type Main = (CtaProps | DividerProps | FaqProps | FeaturesProps | GalleryProps | HeroProps | HtmlProps | ImageStoryProps | ImageTextProps | LogosProps | MosaicProps | SliderProps | StatsProps | TeaserCardProps | TestimonialsProps | TextProps | VideoCurtainProps)[];
|
|
63
|
+
/**
|
|
64
|
+
* Allowed components for the aside half of the split layout
|
|
65
|
+
*/
|
|
66
|
+
type Aside = (CtaProps | DividerProps | FaqProps | FeaturesProps | GalleryProps | HeroProps | HtmlProps | ImageStoryProps | ImageTextProps | LogosProps | MosaicProps | SliderProps | StatsProps | TeaserCardProps | TestimonialsProps | TextProps | VideoCurtainProps)[];
|
|
67
|
+
interface SplitWeightedProps {
|
|
68
|
+
verticalGutter?: VerticalGutter;
|
|
69
|
+
horizontalGutter?: HorizontalGutter;
|
|
70
|
+
verticalAlign?: VerticalAlignment;
|
|
71
|
+
mainLayout?: MainLayout;
|
|
72
|
+
asideLayout?: AsideLayout;
|
|
73
|
+
order?: Order;
|
|
74
|
+
mainComponents?: Main;
|
|
75
|
+
asideComponents?: Aside;
|
|
76
|
+
}
|
|
77
|
+
interface MainLayout {
|
|
78
|
+
gutter?: ContentGutter;
|
|
79
|
+
minWidth?: MinimumWidth;
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* Layout settings for the aside section of the split layout
|
|
83
|
+
*/
|
|
84
|
+
interface AsideLayout {
|
|
85
|
+
gutter?: Gutter;
|
|
86
|
+
minWidth?: MinimumWidth1;
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* Sets the order of the main and aside sections in the split layout
|
|
90
|
+
*/
|
|
91
|
+
interface Order {
|
|
92
|
+
mobile?: MobileOrder;
|
|
93
|
+
desktop?: DesktopOrder;
|
|
94
|
+
}
|
|
95
|
+
export { VerticalGutter, HorizontalGutter, VerticalAlignment, ContentGutter, MinimumWidth, Gutter, MinimumWidth1, MobileOrder, DesktopOrder, Main, Aside, SplitWeightedProps, MainLayout, AsideLayout, Order };
|