@kickstartds/ds-agency-premium 1.2.19 → 1.2.21
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/components/blog-overview/index.d.ts +36 -1
- package/dist/components/blog-post/index.d.ts +36 -1
- package/dist/components/footer/index.d.ts +37 -1
- package/dist/components/header/index.d.ts +42 -1
- package/dist/components/image-story/index.d.ts +1 -1
- package/dist/components/page-wrapper/index.d.ts +3 -2
- package/dist/components/page-wrapper/index.js +471 -6
- package/dist/components/page-wrapper/tokens.css +1 -1
- package/dist/components/section/index.d.ts +141 -1
- package/dist/components/testimonial/index.js +3 -3
- package/dist/components/testimonials/index.js +2 -2
- package/dist/tokens/themes.css +11186 -0
- package/dist/tokens/themes.css.d.ts +0 -0
- package/dist/tokens/themes.css.js +1 -0
- package/dist/tokens/tokens.css +1 -1
- package/dist/tokens/tokens.js +1 -1
- package/package.json +3 -3
- package/dist/BlogOverviewProps-f385fc47.d.ts +0 -36
- package/dist/BlogPostProps-0910f130.d.ts +0 -36
- package/dist/FooterProps-b5c16ab5.d.ts +0 -37
- package/dist/HeaderProps-ae331ab2.d.ts +0 -42
- package/dist/SectionProps-93230a76.d.ts +0 -141
- package/dist/components/index/index.d.ts +0 -50
- package/dist/components/index/index.js +0 -1
- package/dist/components/raw-page-wrapper/index.d.ts +0 -3
- package/dist/components/raw-page-wrapper/index.js +0 -492
- package/dist/static/tokens-business.css +0 -2725
- package/dist/static/tokens-google.css +0 -2729
- package/dist/static/tokens-ngo.css +0 -2999
- package/dist/static/tokens-telekom.css +0 -2725
- package/dist/static/tokens.css +0 -2730
- /package/dist/{ImageStoryProps-24e0335c.d.ts → ImageStoryProps-03ff6d21.d.ts} +0 -0
|
@@ -1,4 +1,39 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
|
|
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
|
+
}
|
|
3
38
|
declare const BlogOverview: ({ latest, more, }: BlogOverviewProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
39
|
export { BlogOverview };
|
|
@@ -1,4 +1,39 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
|
|
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
|
+
}
|
|
3
38
|
declare const BlogPost: ({ head, content, aside, cta }: BlogPostProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
39
|
export { BlogPost };
|
|
@@ -1,4 +1,40 @@
|
|
|
1
1
|
import { FC } from "react";
|
|
2
|
-
|
|
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
|
+
}
|
|
3
39
|
declare const Footer: FC<FooterProps>;
|
|
4
40
|
export { Footer };
|
|
@@ -1,4 +1,45 @@
|
|
|
1
1
|
import { FC } from "react";
|
|
2
|
-
|
|
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
|
+
}
|
|
3
44
|
declare const Header: FC<HeaderProps>;
|
|
4
45
|
export { Header };
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import { FC, PropsWithChildren } from "react";
|
|
2
|
+
declare const PageWrapper: FC<PropsWithChildren>;
|
|
3
|
+
export { PageWrapper };
|