@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.
@@ -23,7 +23,7 @@ interface BlogPostProps {
23
23
  /**
24
24
  * Referenced component BlogHeadProps
25
25
  */
26
- head?: BlogHeadProps;
26
+ head: BlogHeadProps;
27
27
  /**
28
28
  * Referenced component BlogAsideProps
29
29
  */
@@ -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 };
@@ -5,6 +5,7 @@
5
5
  "description": "Abstracts a blog post concept into JSON schema",
6
6
  "type": "object",
7
7
  "required": [
8
+ "head",
8
9
  "seo"
9
10
  ],
10
11
  "properties": {
@@ -4,7 +4,7 @@
4
4
  "title": "Blog Post",
5
5
  "description": "Abstracts a blog post concept into JSON schema",
6
6
  "type": "object",
7
- "required": ["seo"],
7
+ "required": ["head", "seo"],
8
8
  "properties": {
9
9
  "head": {
10
10
  "$ref": "http://schema.mydesignsystem.com/blog-head.schema.json"
@@ -1,4 +1,4 @@
1
- import { BlogPostProps } from "../../BlogPostProps-440f88a5.js";
1
+ import { BlogPostProps } from "../../BlogPostProps-6b3cff22.js";
2
2
  import { FC, PropsWithChildren } from "react";
3
3
  declare const BlogPost: FC<PropsWithChildren<BlogPostProps>>;
4
4
  export { BlogPost };
@@ -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-440f88a5.js";
27
+ export * from "../../BlogPostProps-6b3cff22.js";
76
28
  export * from "../../BlogOverviewProps-9f207f1c.js";
77
- export { Sections, ToggleFloating, ToggleInverted, ToggleInverted1, PageProps, Header, Footer, SettingsProps };
29
+ export * from "../../PageProps-aa29c554.js";
30
+ export { SettingsProps };
@@ -0,0 +1,4 @@
1
+ import { PageProps } from "../../PageProps-aa29c554.js";
2
+ import { FC, PropsWithChildren } from "react";
3
+ declare const Page: FC<PropsWithChildren<PageProps>>;
4
+ export { Page };
@@ -0,0 +1,6 @@
1
+ import { jsx, Fragment } from 'react/jsx-runtime';
2
+
3
+ const Page = ({ children }) => (jsx(Fragment, { children: children }));
4
+ Page.displayName = "Page";
5
+
6
+ export { Page };
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 02 Sep 2024 07:55:58 GMT
3
+ * Generated on Mon, 02 Sep 2024 12:04:53 GMT
4
4
  */
5
5
  :root, [ks-theme] {
6
6
  --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 Mon, 02 Sep 2024 07:56:01 GMT
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 07:56:05 GMT
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 07:56:03 GMT
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 07:56:08 GMT
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);
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 02 Sep 2024 07:55:58 GMT
3
+ * Generated on Mon, 02 Sep 2024 12:04:53 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 Mon, 02 Sep 2024 07:55:59 GMT
3
+ * Generated on Mon, 02 Sep 2024 12:04:53 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.4.11",
3
+ "version": "1.4.12",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kickstartDS/ds-agency-premium#readme",
6
6
  "bugs": {