@kickstartds/ds-agency-premium 1.4.11 → 1.4.12
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/{BlogPostProps-440f88a5.d.ts → BlogPostProps-6b3cff22.d.ts} +1 -1
- package/dist/PageProps-aa29c554.d.ts +49 -0
- package/dist/components/blog-post/blog-post.schema.dereffed.json +1 -0
- package/dist/components/blog-post/blog-post.schema.json +1 -1
- package/dist/components/blog-post/index.d.ts +1 -1
- package/dist/components/index/index.d.ts +4 -51
- package/dist/components/page/index.d.ts +4 -0
- package/dist/components/page/index.js +6 -0
- package/dist/components/page-wrapper/tokens.css +1 -1
- 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
|
@@ -0,0 +1,49 @@
|
|
|
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 { SectionProps } from "./SectionProps-83d399b4.js";
|
|
7
|
+
import { SeoProps } from "./SeoProps-f2d6dcaa.js";
|
|
8
|
+
/**
|
|
9
|
+
* Collection of sections (with their contents) to render on the page
|
|
10
|
+
*/
|
|
11
|
+
type Sections = SectionProps[];
|
|
12
|
+
/**
|
|
13
|
+
* Toggle default floating header behaviour set in global settings
|
|
14
|
+
*/
|
|
15
|
+
type ToggleFloating = boolean;
|
|
16
|
+
/**
|
|
17
|
+
* Toggle default inverted header behaviour set in global settings
|
|
18
|
+
*/
|
|
19
|
+
type ToggleInverted = boolean;
|
|
20
|
+
/**
|
|
21
|
+
* Toggle default inverted footer behaviour set in global settings
|
|
22
|
+
*/
|
|
23
|
+
type ToggleInverted1 = boolean;
|
|
24
|
+
/**
|
|
25
|
+
* Abstracts a page concept into JSON schema
|
|
26
|
+
*/
|
|
27
|
+
interface PageProps {
|
|
28
|
+
section?: Sections;
|
|
29
|
+
header?: Header;
|
|
30
|
+
footer?: Footer;
|
|
31
|
+
/**
|
|
32
|
+
* Referenced component SeoProps
|
|
33
|
+
*/
|
|
34
|
+
seo: SeoProps;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* Header settings for the page
|
|
38
|
+
*/
|
|
39
|
+
interface Header {
|
|
40
|
+
floating?: ToggleFloating;
|
|
41
|
+
inverted?: ToggleInverted;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Footer settings for the page
|
|
45
|
+
*/
|
|
46
|
+
interface Footer {
|
|
47
|
+
inverted?: ToggleInverted1;
|
|
48
|
+
}
|
|
49
|
+
export { Sections, ToggleFloating, ToggleInverted, ToggleInverted1, PageProps, Header, Footer };
|
|
@@ -1,12 +1,4 @@
|
|
|
1
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-83d399b4.js";
|
|
8
|
-
import { SeoProps } from "../../SeoProps-f2d6dcaa.js";
|
|
9
|
-
/* eslint-disable */
|
|
10
2
|
/**
|
|
11
3
|
* This file was automatically generated by json-schema-to-typescript.
|
|
12
4
|
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
@@ -14,47 +6,7 @@ import { SeoProps } from "../../SeoProps-f2d6dcaa.js";
|
|
|
14
6
|
*/
|
|
15
7
|
import { HeaderProps } from "../../HeaderProps-e22382f1.js";
|
|
16
8
|
import { FooterProps } from "../../FooterProps-171a3067.js";
|
|
17
|
-
|
|
18
|
-
* Collection of sections (with their contents) to render on the page
|
|
19
|
-
*/
|
|
20
|
-
type Sections = SectionProps[];
|
|
21
|
-
/**
|
|
22
|
-
* Toggle default floating header behaviour set in global settings
|
|
23
|
-
*/
|
|
24
|
-
type ToggleFloating = boolean;
|
|
25
|
-
/**
|
|
26
|
-
* Toggle default inverted header behaviour set in global settings
|
|
27
|
-
*/
|
|
28
|
-
type ToggleInverted = boolean;
|
|
29
|
-
/**
|
|
30
|
-
* Toggle default inverted footer behaviour set in global settings
|
|
31
|
-
*/
|
|
32
|
-
type ToggleInverted1 = boolean;
|
|
33
|
-
/**
|
|
34
|
-
* Abstracts a page concept into JSON schema
|
|
35
|
-
*/
|
|
36
|
-
interface PageProps {
|
|
37
|
-
section?: Sections;
|
|
38
|
-
header?: Header;
|
|
39
|
-
footer?: Footer;
|
|
40
|
-
/**
|
|
41
|
-
* Referenced component SeoProps
|
|
42
|
-
*/
|
|
43
|
-
seo: SeoProps;
|
|
44
|
-
}
|
|
45
|
-
/**
|
|
46
|
-
* Header settings for the page
|
|
47
|
-
*/
|
|
48
|
-
interface Header {
|
|
49
|
-
floating?: ToggleFloating;
|
|
50
|
-
inverted?: ToggleInverted;
|
|
51
|
-
}
|
|
52
|
-
/**
|
|
53
|
-
* Footer settings for the page
|
|
54
|
-
*/
|
|
55
|
-
interface Footer {
|
|
56
|
-
inverted?: ToggleInverted1;
|
|
57
|
-
}
|
|
9
|
+
import { SeoProps } from "../../SeoProps-f2d6dcaa.js";
|
|
58
10
|
/**
|
|
59
11
|
* Abstracts global settings made for a website into JSON Schema
|
|
60
12
|
*/
|
|
@@ -72,6 +24,7 @@ interface SettingsProps {
|
|
|
72
24
|
*/
|
|
73
25
|
seo: SeoProps;
|
|
74
26
|
}
|
|
75
|
-
export * from "../../BlogPostProps-
|
|
27
|
+
export * from "../../BlogPostProps-6b3cff22.js";
|
|
76
28
|
export * from "../../BlogOverviewProps-9f207f1c.js";
|
|
77
|
-
export
|
|
29
|
+
export * from "../../PageProps-aa29c554.js";
|
|
30
|
+
export { SettingsProps };
|
package/dist/tokens/themes.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Mon, 02 Sep 2024
|
|
3
|
+
* Generated on Mon, 02 Sep 2024 12:04:56 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 Mon, 02 Sep 2024
|
|
2730
|
+
* Generated on Mon, 02 Sep 2024 12:05:00 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 Mon, 02 Sep 2024
|
|
5461
|
+
* Generated on Mon, 02 Sep 2024 12:04:58 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 Mon, 02 Sep 2024
|
|
8462
|
+
* Generated on Mon, 02 Sep 2024 12:05:03 GMT
|
|
8463
8463
|
*/
|
|
8464
8464
|
:root [ks-theme=telekom] {
|
|
8465
8465
|
--ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
|
package/dist/tokens/tokens.css
CHANGED
package/dist/tokens/tokens.js
CHANGED