@kickstartds/ds-agency-premium 1.2.21 → 1.2.22

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.
@@ -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
+ import { BlogTeaserProps } from "./BlogTeaserProps-525f7f9f.js";
7
+ import { CtaProps } from "./CtaProps-93230a76.js";
8
+ import { SeoProps } from "./SeoProps-f2d6dcaa.js";
9
+ /**
10
+ * Collection of posts to list on the page
11
+ */
12
+ type Posts = BlogTeaserProps[];
13
+ /**
14
+ * Collection of posts to list on the page
15
+ */
16
+ type Posts1 = BlogTeaserProps[];
17
+ /**
18
+ * Abstracts a blog overview concept into JSON schema
19
+ */
20
+ interface BlogOverviewProps {
21
+ /**
22
+ * Referenced component BlogTeaserProps
23
+ */
24
+ latest?: BlogTeaserProps;
25
+ list?: Posts;
26
+ more?: Posts1;
27
+ /**
28
+ * Referenced component CtaProps
29
+ */
30
+ cta?: CtaProps;
31
+ /**
32
+ * Referenced component SeoProps
33
+ */
34
+ seo: SeoProps;
35
+ }
36
+ export { Posts, Posts1, BlogOverviewProps };
@@ -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
+ import { BlogHeadProps } from "./BlogHeadProps-f9a49428.js";
7
+ import { BlogAsideProps } from "./BlogAsideProps-e1cbd5d3.js";
8
+ import { CtaProps } from "./CtaProps-93230a76.js";
9
+ import { SeoProps } from "./SeoProps-f2d6dcaa.js";
10
+ /**
11
+ * Body text for the blog post
12
+ */
13
+ type Text = string;
14
+ /**
15
+ * Abstracts a blog post concept into JSON schema
16
+ */
17
+ interface BlogPostProps {
18
+ /**
19
+ * Referenced component BlogHeadProps
20
+ */
21
+ head?: BlogHeadProps;
22
+ /**
23
+ * Referenced component BlogAsideProps
24
+ */
25
+ aside?: BlogAsideProps;
26
+ content?: Text;
27
+ /**
28
+ * Referenced component CtaProps
29
+ */
30
+ cta?: CtaProps;
31
+ /**
32
+ * Referenced component SeoProps
33
+ */
34
+ seo: SeoProps;
35
+ }
36
+ export { Text, BlogPostProps };
@@ -0,0 +1,37 @@
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
+ * Picture source
8
+ */
9
+ type Source = string;
10
+ /**
11
+ * Alt text to display for picture
12
+ */
13
+ type AltText = string;
14
+ /**
15
+ * Width of the picture
16
+ */
17
+ type Width = number;
18
+ /**
19
+ * Height of the picture
20
+ */
21
+ type Height = number;
22
+ interface FooterProps {
23
+ logo: Logo;
24
+ logoHref?: string;
25
+ navItems?: {
26
+ href: string;
27
+ label: string;
28
+ target?: string;
29
+ }[];
30
+ }
31
+ interface Logo {
32
+ src?: Source;
33
+ alt?: AltText;
34
+ width?: Width;
35
+ height?: Height;
36
+ }
37
+ export { Source, AltText, Width, Height, FooterProps, Logo };
@@ -0,0 +1,42 @@
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
+ * Picture source
8
+ */
9
+ type Source = string;
10
+ /**
11
+ * Alt text to display for picture
12
+ */
13
+ type AltText = string;
14
+ /**
15
+ * Width of the picture
16
+ */
17
+ type Width = number;
18
+ /**
19
+ * Height of the picture
20
+ */
21
+ type Height = number;
22
+ /**
23
+ * Make the header float over the first Section
24
+ */
25
+ type Floating = boolean;
26
+ interface HeaderProps {
27
+ logo: Logo;
28
+ logoHref?: string;
29
+ floating?: Floating;
30
+ navItems?: {
31
+ href: string;
32
+ label: string;
33
+ active?: boolean;
34
+ }[];
35
+ }
36
+ interface Logo {
37
+ src?: Source;
38
+ alt?: AltText;
39
+ width?: Width;
40
+ height?: Height;
41
+ }
42
+ export { Source, AltText, Width, Height, Floating, HeaderProps, Logo };
@@ -0,0 +1,141 @@
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-93230a76.js";
7
+ import { FaqProps } from "./FaqProps-ad618cd5.js";
8
+ import { FeaturesProps } from "./FeaturesProps-b05859d6.js";
9
+ import { GalleryProps } from "./GalleryProps-76e7de44.js";
10
+ import { HeroProps } from "./HeroProps-cf82a16d.js";
11
+ import { ImageStoryProps } from "./ImageStoryProps-24e0335c.js";
12
+ import { ImageTextProps } from "./ImageTextProps-9286cca4.js";
13
+ import { LogosProps } from "./LogosProps-a8efd101.js";
14
+ import { MosaicProps } from "./MosaicProps-aacb9422.js";
15
+ import { SliderProps } from "./SliderProps-8cae490d.js";
16
+ import { StatsProps } from "./StatsProps-17b0743a.js";
17
+ import { TeaserCardProps } from "./TeaserCardProps-b9c28e78.js";
18
+ import { TestimonialsProps } from "./TestimonialsProps-72bb9288.js";
19
+ import { TextProps } from "./TextProps-a23170d2.js";
20
+ import { VideoCurtainProps } from "./VideoCurtainProps-6c625a69.js";
21
+ import { ButtonProps } from "./ButtonProps-03ff6d21.js";
22
+ /**
23
+ * Width of section to use
24
+ */
25
+ type Width = "full" | "max" | "wide" | "default" | "narrow";
26
+ /**
27
+ * Style of background
28
+ */
29
+ type Style = "stagelights" | "horizontalGradient" | "verticalGradient" | "accentTransition" | "boldTransition" | "symmetricGlow" | "anchorGlow";
30
+ /**
31
+ * Color of background
32
+ */
33
+ type Style1 = "default" | "accent" | "bold";
34
+ /**
35
+ * Show spotlight behind cursor
36
+ */
37
+ type Spotlight = boolean;
38
+ /**
39
+ * Amount of spacing before the section
40
+ */
41
+ type SpaceBefore = "default" | "small" | "none";
42
+ /**
43
+ * Amount of spacing after the section
44
+ */
45
+ type SpaceAfter = "default" | "small" | "none";
46
+ /**
47
+ * Whether to invert the section
48
+ */
49
+ type Inverted = boolean;
50
+ /**
51
+ * Reserve additional spacing for a floating header
52
+ */
53
+ type HeaderSpacing = boolean;
54
+ /**
55
+ * Headline Text for the section
56
+ */
57
+ type Headline = string;
58
+ /**
59
+ * Make the headline larger
60
+ */
61
+ type LargeHeadline = boolean;
62
+ /**
63
+ * Width of headline to use
64
+ */
65
+ type HeadlineWidth = "unset" | "narrow" | "default" | "wide";
66
+ /**
67
+ * Choose the text alignment for the headline
68
+ */
69
+ type HeadlineTextAlignment = "left" | "center" | "right";
70
+ /**
71
+ * Choose an alignment for positioning the headline
72
+ */
73
+ type HeadlineAlignment = "left" | "center" | "right";
74
+ /**
75
+ * Subheadline for the section
76
+ */
77
+ type Subheadline = string;
78
+ /**
79
+ * Switch the order of headline and subheadline
80
+ */
81
+ type SwitchHeadlineOrder = boolean;
82
+ /**
83
+ * Width of content to use
84
+ */
85
+ type ContentWidth = "unset" | "narrow" | "default" | "wide";
86
+ /**
87
+ * Choose an alignment for the content
88
+ */
89
+ type ContentAlignment = "left" | "center" | "right";
90
+ /**
91
+ * Size of gutter to use
92
+ */
93
+ type Gutter = "large" | "default" | "small" | "none";
94
+ /**
95
+ * Layout mode used for section contents
96
+ */
97
+ type Mode = "default" | "tile" | "list" | "slider";
98
+ /**
99
+ * Set min-width for the tiles in the grid
100
+ */
101
+ type TileWidth = "smallest" | "default" | "medium" | "large" | "largest";
102
+ /**
103
+ * Allowed components for content
104
+ */
105
+ type Content = (CtaProps | FaqProps | FeaturesProps | GalleryProps | HeroProps | ImageStoryProps | ImageTextProps | LogosProps | MosaicProps | SliderProps | StatsProps | TeaserCardProps | TestimonialsProps | TextProps | VideoCurtainProps)[];
106
+ /**
107
+ * Buttons of the Button Group
108
+ */
109
+ type Buttons = ButtonProps[];
110
+ /**
111
+ * Component used to layout components into pages
112
+ */
113
+ interface SectionProps {
114
+ width?: Width;
115
+ style?: Style;
116
+ backgroundColor?: Style1;
117
+ spotlight?: Spotlight;
118
+ spaceBefore?: SpaceBefore;
119
+ spaceAfter?: SpaceAfter;
120
+ inverted?: Inverted;
121
+ headerSpacing?: HeaderSpacing;
122
+ headline?: {
123
+ text?: Headline;
124
+ large?: LargeHeadline;
125
+ width?: HeadlineWidth;
126
+ textAlign?: HeadlineTextAlignment;
127
+ align?: HeadlineAlignment;
128
+ sub?: Subheadline;
129
+ switchOrder?: SwitchHeadlineOrder;
130
+ };
131
+ content?: {
132
+ width?: ContentWidth;
133
+ align?: ContentAlignment;
134
+ gutter?: Gutter;
135
+ mode?: Mode;
136
+ tileWidth?: TileWidth;
137
+ };
138
+ components?: Content;
139
+ buttons?: Buttons;
140
+ }
141
+ export { Width, Style, Style1, Spotlight, SpaceBefore, SpaceAfter, Inverted, HeaderSpacing, Headline, LargeHeadline, HeadlineWidth, HeadlineTextAlignment, HeadlineAlignment, Subheadline, SwitchHeadlineOrder, ContentWidth, ContentAlignment, Gutter, Mode, TileWidth, Content, Buttons, SectionProps };
@@ -1,39 +1,4 @@
1
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 { BlogTeaserProps } from "../../BlogTeaserProps-525f7f9f.js";
9
- import { CtaProps } from "../../CtaProps-93230a76.js";
10
- import { SeoProps } from "../../SeoProps-f2d6dcaa.js";
11
- /**
12
- * Collection of posts to list on the page
13
- */
14
- type Posts = BlogTeaserProps[];
15
- /**
16
- * Collection of posts to list on the page
17
- */
18
- type Posts1 = BlogTeaserProps[];
19
- /**
20
- * Abstracts a blog overview concept into JSON schema
21
- */
22
- interface BlogOverviewProps {
23
- /**
24
- * Referenced component BlogTeaserProps
25
- */
26
- latest?: BlogTeaserProps;
27
- list?: Posts;
28
- more?: Posts1;
29
- /**
30
- * Referenced component CtaProps
31
- */
32
- cta?: CtaProps;
33
- /**
34
- * Referenced component SeoProps
35
- */
36
- seo: SeoProps;
37
- }
2
+ import { BlogOverviewProps } from "../../BlogOverviewProps-f385fc47.js";
38
3
  declare const BlogOverview: ({ latest, more, }: BlogOverviewProps) => import("react/jsx-runtime").JSX.Element;
39
4
  export { BlogOverview };
@@ -1,39 +1,4 @@
1
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 { BlogHeadProps } from "../../BlogHeadProps-f9a49428.js";
9
- import { BlogAsideProps } from "../../BlogAsideProps-e1cbd5d3.js";
10
- import { CtaProps } from "../../CtaProps-93230a76.js";
11
- import { SeoProps } from "../../SeoProps-f2d6dcaa.js";
12
- /**
13
- * Body text for the blog post
14
- */
15
- type Text = string;
16
- /**
17
- * Abstracts a blog post concept into JSON schema
18
- */
19
- interface BlogPostProps {
20
- /**
21
- * Referenced component BlogHeadProps
22
- */
23
- head?: BlogHeadProps;
24
- /**
25
- * Referenced component BlogAsideProps
26
- */
27
- aside?: BlogAsideProps;
28
- content?: Text;
29
- /**
30
- * Referenced component CtaProps
31
- */
32
- cta?: CtaProps;
33
- /**
34
- * Referenced component SeoProps
35
- */
36
- seo: SeoProps;
37
- }
2
+ import { BlogPostProps } from "../../BlogPostProps-0910f130.js";
38
3
  declare const BlogPost: ({ head, content, aside, cta }: BlogPostProps) => import("react/jsx-runtime").JSX.Element;
39
4
  export { BlogPost };
@@ -1,40 +1,4 @@
1
1
  import { FC } 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
- /**
9
- * Picture source
10
- */
11
- type Source = string;
12
- /**
13
- * Alt text to display for picture
14
- */
15
- type AltText = string;
16
- /**
17
- * Width of the picture
18
- */
19
- type Width = number;
20
- /**
21
- * Height of the picture
22
- */
23
- type Height = number;
24
- interface FooterProps {
25
- logo: Logo;
26
- logoHref?: string;
27
- navItems?: {
28
- href: string;
29
- label: string;
30
- target?: string;
31
- }[];
32
- }
33
- interface Logo {
34
- src?: Source;
35
- alt?: AltText;
36
- width?: Width;
37
- height?: Height;
38
- }
2
+ import { FooterProps } from "../../FooterProps-b5c16ab5.js";
39
3
  declare const Footer: FC<FooterProps>;
40
4
  export { Footer };
@@ -1,45 +1,4 @@
1
1
  import { FC } 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
- /**
9
- * Picture source
10
- */
11
- type Source = string;
12
- /**
13
- * Alt text to display for picture
14
- */
15
- type AltText = string;
16
- /**
17
- * Width of the picture
18
- */
19
- type Width = number;
20
- /**
21
- * Height of the picture
22
- */
23
- type Height = number;
24
- /**
25
- * Make the header float over the first Section
26
- */
27
- type Floating = boolean;
28
- interface HeaderProps {
29
- logo: Logo;
30
- logoHref?: string;
31
- floating?: Floating;
32
- navItems?: {
33
- href: string;
34
- label: string;
35
- active?: boolean;
36
- }[];
37
- }
38
- interface Logo {
39
- src?: Source;
40
- alt?: AltText;
41
- width?: Width;
42
- height?: Height;
43
- }
2
+ import { HeaderProps } from "../../HeaderProps-ae331ab2.js";
44
3
  declare const Header: FC<HeaderProps>;
45
4
  export { Header };
@@ -1,4 +1,4 @@
1
1
  import { FC } from "react";
2
- import { ImageStoryProps } from "../../ImageStoryProps-03ff6d21.js";
2
+ import { ImageStoryProps } from "../../ImageStoryProps-24e0335c.js";
3
3
  declare const ImageStory: FC<ImageStoryProps>;
4
4
  export { ImageStory };
@@ -0,0 +1,50 @@
1
+ /* eslint-disable */
2
+ /**
3
+ * This file was automatically generated by json-schema-to-typescript.
4
+ * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
5
+ * and run json-schema-to-typescript to regenerate this file.
6
+ */
7
+ import { SectionProps } from "../../SectionProps-93230a76.js";
8
+ import { SeoProps } from "../../SeoProps-f2d6dcaa.js";
9
+ /* eslint-disable */
10
+ /**
11
+ * This file was automatically generated by json-schema-to-typescript.
12
+ * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
13
+ * and run json-schema-to-typescript to regenerate this file.
14
+ */
15
+ import { HeaderProps } from "../../HeaderProps-ae331ab2.js";
16
+ import { FooterProps } from "../../FooterProps-b5c16ab5.js";
17
+ /**
18
+ * Collection of sections (with their contents) to render on the page
19
+ */
20
+ type Sections = SectionProps[];
21
+ /**
22
+ * Abstracts a page concept into JSON schema
23
+ */
24
+ interface PageProps {
25
+ section?: Sections;
26
+ /**
27
+ * Referenced component SeoProps
28
+ */
29
+ seo: SeoProps;
30
+ }
31
+ /**
32
+ * Abstracts global settings made for a website into JSON Schema
33
+ */
34
+ interface SettingsProps {
35
+ /**
36
+ * Referenced component HeaderProps
37
+ */
38
+ header: HeaderProps;
39
+ /**
40
+ * Referenced component FooterProps
41
+ */
42
+ footer: FooterProps;
43
+ /**
44
+ * Referenced component SeoProps
45
+ */
46
+ seo: SeoProps;
47
+ }
48
+ export * from "../../BlogPostProps-0910f130.js";
49
+ export * from "../../BlogOverviewProps-f385fc47.js";
50
+ export { Sections, PageProps, SettingsProps };
@@ -0,0 +1 @@
1
+
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Fri, 01 Mar 2024 17:15:07 GMT
3
+ * Generated on Fri, 01 Mar 2024 18:00:15 GMT
4
4
  */
5
5
  :root, [ks-theme] {
6
6
  --ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
@@ -1,146 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { HTMLAttributes, FC, PropsWithChildren } from "react";
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
- }
3
+ import { SectionProps } from "../../SectionProps-93230a76.js";
144
4
  declare const Section: import("react").ForwardRefExoticComponent<SectionProps & Omit<HTMLAttributes<HTMLElement>, "style" | "content"> & import("react").RefAttributes<HTMLDivElement>>;
145
5
  declare const SectionProvider: FC<PropsWithChildren<any>>;
146
6
  export { Section, SectionProvider };
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Fri, 01 Mar 2024 17:15:10 GMT
3
+ * Generated on Fri, 01 Mar 2024 18:00:18 GMT
4
4
  */
5
5
  :root [ks-theme=business] {
6
6
  --ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
@@ -2727,7 +2727,7 @@
2727
2727
  }
2728
2728
  /**
2729
2729
  * Do not edit directly
2730
- * Generated on Fri, 01 Mar 2024 17:15:14 GMT
2730
+ * Generated on Fri, 01 Mar 2024 18:00:23 GMT
2731
2731
  */
2732
2732
  :root [ks-theme=google] {
2733
2733
  --ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
@@ -5458,7 +5458,7 @@
5458
5458
  }
5459
5459
  /**
5460
5460
  * Do not edit directly
5461
- * Generated on Fri, 01 Mar 2024 17:15:12 GMT
5461
+ * Generated on Fri, 01 Mar 2024 18:00:21 GMT
5462
5462
  */
5463
5463
  :root [ks-theme=ngo] {
5464
5464
  --ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
@@ -8459,7 +8459,7 @@
8459
8459
  }
8460
8460
  /**
8461
8461
  * Do not edit directly
8462
- * Generated on Fri, 01 Mar 2024 17:15:16 GMT
8462
+ * Generated on Fri, 01 Mar 2024 18:00:25 GMT
8463
8463
  */
8464
8464
  :root [ks-theme=telekom] {
8465
8465
  --ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Fri, 01 Mar 2024 17:15:07 GMT
3
+ * Generated on Fri, 01 Mar 2024 18:00:15 GMT
4
4
  */
5
5
 
6
6
  :root, [ks-theme] {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Fri, 01 Mar 2024 17:15:08 GMT
3
+ * Generated on Fri, 01 Mar 2024 18:00:16 GMT
4
4
  */
5
5
 
6
6
  export const KsBackgroundColorAccentBase = "#230a2b";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kickstartds/ds-agency-premium",
3
- "version": "1.2.21",
3
+ "version": "1.2.22",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kickstartDS/ds-agency-premium#readme",
6
6
  "bugs": {