@kickstartds/ds-agency-premium 1.2.19 → 1.2.20

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.
@@ -1,6 +1,146 @@
1
1
  /// <reference types="react" />
2
2
  import { HTMLAttributes, FC, PropsWithChildren } from "react";
3
- import { SectionProps } from "../../SectionProps-93230a76.js";
3
+ /* eslint-disable */
4
+ /**
5
+ * This file was automatically generated by json-schema-to-typescript.
6
+ * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
7
+ * and run json-schema-to-typescript to regenerate this file.
8
+ */
9
+ import { CtaProps } from "../../CtaProps-93230a76.js";
10
+ import { FaqProps } from "../../FaqProps-ad618cd5.js";
11
+ import { FeaturesProps } from "../../FeaturesProps-b05859d6.js";
12
+ import { GalleryProps } from "../../GalleryProps-76e7de44.js";
13
+ import { HeroProps } from "../../HeroProps-cf82a16d.js";
14
+ import { ImageStoryProps } from "../../ImageStoryProps-03ff6d21.js";
15
+ import { ImageTextProps } from "../../ImageTextProps-9286cca4.js";
16
+ import { LogosProps } from "../../LogosProps-a8efd101.js";
17
+ import { MosaicProps } from "../../MosaicProps-aacb9422.js";
18
+ import { SliderProps } from "../../SliderProps-8cae490d.js";
19
+ import { StatsProps } from "../../StatsProps-17b0743a.js";
20
+ import { TeaserCardProps } from "../../TeaserCardProps-b9c28e78.js";
21
+ import { TestimonialsProps } from "../../TestimonialsProps-72bb9288.js";
22
+ import { TextProps } from "../../TextProps-a23170d2.js";
23
+ import { VideoCurtainProps } from "../../VideoCurtainProps-6c625a69.js";
24
+ import { ButtonProps } from "../../ButtonProps-03ff6d21.js";
25
+ /**
26
+ * Width of section to use
27
+ */
28
+ type Width = "full" | "max" | "wide" | "default" | "narrow";
29
+ /**
30
+ * Style of background
31
+ */
32
+ type Style = "stagelights" | "horizontalGradient" | "verticalGradient" | "accentTransition" | "boldTransition" | "symmetricGlow" | "anchorGlow";
33
+ /**
34
+ * Color of background
35
+ */
36
+ type Style1 = "default" | "accent" | "bold";
37
+ /**
38
+ * Show spotlight behind cursor
39
+ */
40
+ type Spotlight = boolean;
41
+ /**
42
+ * Amount of spacing before the section
43
+ */
44
+ type SpaceBefore = "default" | "small" | "none";
45
+ /**
46
+ * Amount of spacing after the section
47
+ */
48
+ type SpaceAfter = "default" | "small" | "none";
49
+ /**
50
+ * Whether to invert the section
51
+ */
52
+ type Inverted = boolean;
53
+ /**
54
+ * Reserve additional spacing for a floating header
55
+ */
56
+ type HeaderSpacing = boolean;
57
+ /**
58
+ * Headline Text for the section
59
+ */
60
+ type Headline = string;
61
+ /**
62
+ * Make the headline larger
63
+ */
64
+ type LargeHeadline = boolean;
65
+ /**
66
+ * Width of headline to use
67
+ */
68
+ type HeadlineWidth = "unset" | "narrow" | "default" | "wide";
69
+ /**
70
+ * Choose the text alignment for the headline
71
+ */
72
+ type HeadlineTextAlignment = "left" | "center" | "right";
73
+ /**
74
+ * Choose an alignment for positioning the headline
75
+ */
76
+ type HeadlineAlignment = "left" | "center" | "right";
77
+ /**
78
+ * Subheadline for the section
79
+ */
80
+ type Subheadline = string;
81
+ /**
82
+ * Switch the order of headline and subheadline
83
+ */
84
+ type SwitchHeadlineOrder = boolean;
85
+ /**
86
+ * Width of content to use
87
+ */
88
+ type ContentWidth = "unset" | "narrow" | "default" | "wide";
89
+ /**
90
+ * Choose an alignment for the content
91
+ */
92
+ type ContentAlignment = "left" | "center" | "right";
93
+ /**
94
+ * Size of gutter to use
95
+ */
96
+ type Gutter = "large" | "default" | "small" | "none";
97
+ /**
98
+ * Layout mode used for section contents
99
+ */
100
+ type Mode = "default" | "tile" | "list" | "slider";
101
+ /**
102
+ * Set min-width for the tiles in the grid
103
+ */
104
+ type TileWidth = "smallest" | "default" | "medium" | "large" | "largest";
105
+ /**
106
+ * Allowed components for content
107
+ */
108
+ type Content = (CtaProps | FaqProps | FeaturesProps | GalleryProps | HeroProps | ImageStoryProps | ImageTextProps | LogosProps | MosaicProps | SliderProps | StatsProps | TeaserCardProps | TestimonialsProps | TextProps | VideoCurtainProps)[];
109
+ /**
110
+ * Buttons of the Button Group
111
+ */
112
+ type Buttons = ButtonProps[];
113
+ /**
114
+ * Component used to layout components into pages
115
+ */
116
+ interface SectionProps {
117
+ width?: Width;
118
+ style?: Style;
119
+ backgroundColor?: Style1;
120
+ spotlight?: Spotlight;
121
+ spaceBefore?: SpaceBefore;
122
+ spaceAfter?: SpaceAfter;
123
+ inverted?: Inverted;
124
+ headerSpacing?: HeaderSpacing;
125
+ headline?: {
126
+ text?: Headline;
127
+ large?: LargeHeadline;
128
+ width?: HeadlineWidth;
129
+ textAlign?: HeadlineTextAlignment;
130
+ align?: HeadlineAlignment;
131
+ sub?: Subheadline;
132
+ switchOrder?: SwitchHeadlineOrder;
133
+ };
134
+ content?: {
135
+ width?: ContentWidth;
136
+ align?: ContentAlignment;
137
+ gutter?: Gutter;
138
+ mode?: Mode;
139
+ tileWidth?: TileWidth;
140
+ };
141
+ components?: Content;
142
+ buttons?: Buttons;
143
+ }
4
144
  declare const Section: import("react").ForwardRefExoticComponent<SectionProps & Omit<HTMLAttributes<HTMLElement>, "style" | "content"> & import("react").RefAttributes<HTMLDivElement>>;
5
145
  declare const SectionProvider: FC<PropsWithChildren<any>>;
6
146
  export { Section, SectionProvider };