@kickstartds/ds-agency-premium 1.4.12 → 1.4.13--canary.15.811.0

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.
Files changed (60) hide show
  1. package/dist/{BlogAsideProps-e1cbd5d3.d.ts → BlogAsideProps-99489f0b.d.ts} +11 -4
  2. package/dist/{BlogHeadProps-3f6e4072.d.ts → BlogHeadProps-f9a49428.d.ts} +1 -2
  3. package/dist/BlogOverviewProps-9f207f1c.d.ts +1 -1
  4. package/dist/{BlogPostProps-6b3cff22.d.ts → BlogPostProps-f9a49428.d.ts} +3 -3
  5. package/dist/{BlogTeaserProps-f5855e93.d.ts → BlogTeaserProps-525f7f9f.d.ts} +1 -2
  6. package/dist/components/blog-aside/blog-aside.css +8 -16
  7. package/dist/components/blog-aside/blog-aside.schema.dereffed.json +21 -7
  8. package/dist/components/blog-aside/blog-aside.schema.json +16 -5
  9. package/dist/components/blog-aside/index.d.ts +1 -1
  10. package/dist/components/blog-aside/index.js +2 -2
  11. package/dist/components/blog-head/blog-head.schema.dereffed.json +4 -18
  12. package/dist/components/blog-head/blog-head.schema.json +2 -1
  13. package/dist/components/blog-head/index.d.ts +1 -1
  14. package/dist/components/blog-head/index.js +1 -1
  15. package/dist/components/blog-overview/blog-overview.schema.dereffed.json +12 -54
  16. package/dist/components/blog-post/blog-post.schema.dereffed.json +25 -26
  17. package/dist/components/blog-post/blog-post.schema.json +1 -1
  18. package/dist/components/blog-post/index.d.ts +1 -1
  19. package/dist/components/blog-post/index.js +1 -1
  20. package/dist/components/blog-teaser/blog-teaser.schema.dereffed.json +4 -18
  21. package/dist/components/blog-teaser/blog-teaser.schema.json +2 -1
  22. package/dist/components/blog-teaser/index.d.ts +1 -1
  23. package/dist/components/blog-teaser/index.js +1 -1
  24. package/dist/components/contact/contact.css +125 -0
  25. package/dist/components/contact/contact.schema.dereffed.json +125 -0
  26. package/dist/components/contact/contact.schema.json +107 -0
  27. package/dist/components/contact/index.d.ts +70 -0
  28. package/dist/components/contact/index.js +16 -0
  29. package/dist/components/html/html.schema.json +25 -0
  30. package/dist/components/html/index.d.ts +26 -0
  31. package/dist/components/html/index.js +6 -0
  32. package/dist/components/index/index.d.ts +51 -4
  33. package/dist/components/nav-flyout/nav-flyout.css +6 -1
  34. package/dist/components/nav-main/index.js +0 -1
  35. package/dist/components/nav-toggle/nav-toggle.css +5 -0
  36. package/dist/components/nav-topbar/nav-topbar.css +7 -1
  37. package/dist/components/page-wrapper/index.js +6 -0
  38. package/dist/components/page-wrapper/tokens.css +9 -9
  39. package/dist/components/presets.json +197 -60
  40. package/dist/components/providers/index.js +7 -1
  41. package/dist/components/split/index.d.ts +2 -1
  42. package/dist/components/split/index.js +11 -1
  43. package/dist/components/split/split.css +36 -10
  44. package/dist/components/split/split.schema.dereffed.json +12 -3
  45. package/dist/components/split/split.schema.json +7 -1
  46. package/dist/static/img/people/author-john.png +0 -0
  47. package/dist/static/img/people/contact-jim.png +0 -0
  48. package/dist/static/img/people/contact-john.png +0 -0
  49. package/dist/static/img/people/portrait-young-girl-smiling.jpg +0 -0
  50. package/dist/tokens/themes.css +4 -4
  51. package/dist/tokens/tokens.css +9 -9
  52. package/dist/tokens/tokens.js +9 -9
  53. package/package.json +1 -1
  54. package/dist/BlogTagProps-f5855e93.d.ts +0 -16
  55. package/dist/PageProps-aa29c554.d.ts +0 -49
  56. package/dist/components/blog-tag/blog-tag.schema.dereffed.json +0 -21
  57. package/dist/components/blog-tag/blog-tag.schema.json +0 -16
  58. package/dist/components/nav-main/nav-main.css +0 -11
  59. package/dist/components/page/index.d.ts +0 -4
  60. package/dist/components/page/index.js +0 -6
@@ -1,24 +1,50 @@
1
- .l-split--sidebarRight {
1
+ .l-split {
2
+ --dsa-split--gap-vertical: var(--ks-spacing-stack-l);
3
+ --dsa-split--gap-horizontal: var(--ks-spacing-inline-l);
4
+ --dsa-split__side--top-margin: var(--ks-spacing-stack-l);
5
+ --dsa-split__side--flex-basis: 210px;
6
+ }
7
+
8
+ .l-split {
2
9
  display: flex;
3
10
  flex-wrap: wrap;
4
- gap: var(--ks-spacing-stack-l) var(--ks-spacing-inline-xl);
11
+ gap: var(--dsa-split--gap-horizontal) var(--dsa-split--gap-horizontal);
12
+ }
13
+ .l-split--narrow {
14
+ --split__main--flex-basis: var(--l-section--content-width-narrow);
15
+ }
16
+ .l-split--medium {
17
+ --split__main--flex-basis: var(--l-section--content-width-default);
18
+ }
19
+ .l-split--wide {
20
+ --split__main--flex-basis: var(--l-section--content-width-wide);
5
21
  }
6
22
  @media (min-width: 48em) {
7
- .l-split--sidebarRight {
23
+ .l-split {
8
24
  justify-content: space-between;
9
25
  }
10
26
  }
11
- .l-split--sidebarRight > :first-child {
12
- flex-basis: calc(var(--l-section--content-width-default) - var(--l-section--content-padding) * 2);
27
+ .l-split > * {
13
28
  flex-grow: 1;
14
29
  flex-shrink: 1;
15
30
  }
16
- .l-split--sidebarRight > :last-child {
17
- flex-grow: 1;
18
- flex-shrink: 1;
19
- flex-basis: 210px;
31
+ .l-split--sidebar-right > :first-child {
32
+ flex-basis: calc(var(--split__main--flex-basis) - var(--l-section--content-padding) * 2);
33
+ }
34
+ .l-split--sidebar-right > :last-child {
35
+ flex-basis: var(--dsa-split__side--flex-basis, 210px);
36
+ position: -webkit-sticky;
37
+ position: sticky;
38
+ top: var(--dsa-split__side--top-margin, var(--ks-spacing-stack-l));
39
+ height: fit-content;
40
+ }
41
+ .l-split--sidebar-left > :last-child {
42
+ flex-basis: calc(var(--split__main--flex-basis) - var(--l-section--content-padding) * 2);
43
+ }
44
+ .l-split--sidebar-left > :first-child {
45
+ flex-basis: var(--dsa-split__side--flex-basis, 210px);
20
46
  position: -webkit-sticky;
21
47
  position: sticky;
22
- top: var(--ks-spacing-stack-l);
48
+ top: var(--dsa-split__side--top-margin, var(--ks-spacing-stack-l));
23
49
  height: fit-content;
24
50
  }
@@ -8,9 +8,18 @@
8
8
  "type": "string",
9
9
  "enum": [
10
10
  "sidebarRight",
11
- "sidebarLeft",
12
- "even"
13
- ]
11
+ "sidebarLeft"
12
+ ],
13
+ "default": "sidebarRight"
14
+ },
15
+ "mainSectionWidth": {
16
+ "type": "string",
17
+ "enum": [
18
+ "narrow",
19
+ "medium",
20
+ "wide"
21
+ ],
22
+ "default": "medium"
14
23
  },
15
24
  "type": {
16
25
  "const": "split"
@@ -6,7 +6,13 @@
6
6
  "properties": {
7
7
  "layout": {
8
8
  "type": "string",
9
- "enum": ["sidebarRight", "sidebarLeft", "even"]
9
+ "enum": ["sidebarRight", "sidebarLeft"],
10
+ "default": "sidebarRight"
11
+ },
12
+ "mainSectionWidth": {
13
+ "type": "string",
14
+ "enum": ["narrow", "medium", "wide"],
15
+ "default": "medium"
10
16
  }
11
17
  },
12
18
  "additionalProperties": false
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 02 Sep 2024 12:04:56 GMT
3
+ * Generated on Mon, 02 Sep 2024 12:20:00 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 12:05:00 GMT
2730
+ * Generated on Mon, 02 Sep 2024 12:20:04 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 12:04:58 GMT
5461
+ * Generated on Mon, 02 Sep 2024 12:20:02 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 12:05:03 GMT
8462
+ * Generated on Mon, 02 Sep 2024 12:20:06 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 12:04:53 GMT
3
+ * Generated on Mon, 02 Sep 2024 12:19:58 GMT
4
4
  */
5
5
 
6
6
  :root, [ks-theme] {
@@ -116,8 +116,8 @@
116
116
  --ks-background-color-secondary-inverted-interactive-active-base: var(--ks-color-secondary-inverted-to-bg-2-base);
117
117
  --ks-background-color-secondary-inverted-interactive-selected-base: var(--ks-color-secondary-inverted-to-bg-4-base);
118
118
  --ks-background-color-secondary-inverted-translucent-base: var(--ks-color-secondary-inverted-alpha-5-base);
119
- --ks-border-color-accent-base: var(--ks-color-primary-to-bg-8-base);
120
- --ks-border-color-accent-inverted-base: var(--ks-color-primary-inverted-to-bg-8-base);
119
+ --ks-border-color-accent-base: var(--ks-color-fg-to-bg-7-base);
120
+ --ks-border-color-accent-inverted-base: var(--ks-color-fg-inverted-to-bg-7-base);
121
121
  --ks-border-color-clear-base: var(--ks-color-transparent-base);
122
122
  --ks-border-color-clear-interactive-base: var(--ks-color-transparent-base);
123
123
  --ks-border-color-clear-interactive-hover-base: var(--ks-color-primary-alpha-8-base);
@@ -808,14 +808,14 @@
808
808
  --ks-spacing-inset-stretch-xl: var(--ks-spacing-xxl) var(--ks-spacing-xl);
809
809
  --ks-text-color-default-base: var(--ks-color-fg-base);
810
810
  --ks-text-color-default-interactive-base: var(--ks-color-link-base);
811
- --ks-text-color-default-interactive-hover-base: var(--ks-color-link-base);
812
- --ks-text-color-default-interactive-active-base: var(--ks-color-link-base);
813
- --ks-text-color-default-interactive-selected-base: var(--ks-color-link-base);
811
+ --ks-text-color-default-interactive-hover-base: var(--ks-color-link-to-fg-5-base);
812
+ --ks-text-color-default-interactive-active-base: var(--ks-color-link-to-fg-5-base);
813
+ --ks-text-color-default-interactive-selected-base: var(--ks-color-link-to-fg-5-base);
814
814
  --ks-text-color-default-inverted-base: var(--ks-color-fg-inverted-base);
815
815
  --ks-text-color-default-inverted-interactive-base: var(--ks-color-link-inverted-base);
816
- --ks-text-color-default-inverted-interactive-hover-base: var(--ks-color-link-inverted-base);
817
- --ks-text-color-default-inverted-interactive-active-base: var(--ks-color-link-inverted-base);
818
- --ks-text-color-default-inverted-interactive-selected-base: var(--ks-color-link-inverted-base);
816
+ --ks-text-color-default-inverted-interactive-hover-base: var(--ks-color-link-inverted-to-fg-5-base);
817
+ --ks-text-color-default-inverted-interactive-active-base: var(--ks-color-link-inverted-to-fg-5-base);
818
+ --ks-text-color-default-inverted-interactive-selected-base: var(--ks-color-link-inverted-to-fg-5-base);
819
819
  --ks-text-color-copy-base: var(--ks-color-fg-alpha-3-base);
820
820
  --ks-text-color-copy-interactive-base: var(--ks-color-link-base);
821
821
  --ks-text-color-copy-interactive-hover-base: var(--ks-color-link-to-fg-2-base);
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 02 Sep 2024 12:04:53 GMT
3
+ * Generated on Mon, 02 Sep 2024 12:19:58 GMT
4
4
  */
5
5
 
6
6
  export const KsBackgroundColorAccentBase = "#230a2b";
@@ -115,8 +115,8 @@ export const KsBackgroundColorSecondaryInvertedInteractiveHoverBase = "#e43489";
115
115
  export const KsBackgroundColorSecondaryInvertedInteractiveActiveBase = "#e43489";
116
116
  export const KsBackgroundColorSecondaryInvertedInteractiveSelectedBase = "#e868a6";
117
117
  export const KsBackgroundColorSecondaryInvertedTranslucentBase = "rgba(226, 24, 121, 0.5)";
118
- export const KsBorderColorAccentBase = "#230a2b";
119
- export const KsBorderColorAccentInvertedBase = "#dcd6f2";
118
+ export const KsBorderColorAccentBase = "#424355";
119
+ export const KsBorderColorAccentInvertedBase = "#b9b9c0";
120
120
  export const KsBorderColorClearBase = "rgba(0, 0, 0, 0)";
121
121
  export const KsBorderColorClearInteractiveBase = "rgba(0, 0, 0, 0)";
122
122
  export const KsBorderColorClearInteractiveHoverBase = "rgba(226, 24, 121, 0.13)";
@@ -811,14 +811,14 @@ export const KsSpacingInsetStretchL = "1.7768rem 1.2469rem";
811
811
  export const KsSpacingInsetStretchXl = "2.5319rem 1.7768rem";
812
812
  export const KsTextColorDefaultBase = "#ffffff";
813
813
  export const KsTextColorDefaultInteractiveBase = "#b7a5ff";
814
- export const KsTextColorDefaultInteractiveHoverBase = "#b7a5ff";
815
- export const KsTextColorDefaultInteractiveActiveBase = "#b7a5ff";
816
- export const KsTextColorDefaultInteractiveSelectedBase = "#b7a5ff";
814
+ export const KsTextColorDefaultInteractiveHoverBase = "#dbd2ff";
815
+ export const KsTextColorDefaultInteractiveActiveBase = "#dbd2ff";
816
+ export const KsTextColorDefaultInteractiveSelectedBase = "#dbd2ff";
817
817
  export const KsTextColorDefaultInvertedBase = "#06081f";
818
818
  export const KsTextColorDefaultInvertedInteractiveBase = "#6642f6";
819
- export const KsTextColorDefaultInvertedInteractiveHoverBase = "#6642f6";
820
- export const KsTextColorDefaultInvertedInteractiveActiveBase = "#6642f6";
821
- export const KsTextColorDefaultInvertedInteractiveSelectedBase = "#6642f6";
819
+ export const KsTextColorDefaultInvertedInteractiveHoverBase = "#36258b";
820
+ export const KsTextColorDefaultInvertedInteractiveActiveBase = "#36258b";
821
+ export const KsTextColorDefaultInvertedInteractiveSelectedBase = "#36258b";
822
822
  export const KsTextColorCopyBase = "rgba(255, 255, 255, 0.76)";
823
823
  export const KsTextColorCopyInteractiveBase = "#b7a5ff";
824
824
  export const KsTextColorCopyInteractiveHoverBase = "#c0b1ff";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kickstartds/ds-agency-premium",
3
- "version": "1.4.12",
3
+ "version": "1.4.13--canary.15.811.0",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kickstartDS/ds-agency-premium#readme",
6
6
  "bugs": {
@@ -1,16 +0,0 @@
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
- * Name of the tag entry
8
- */
9
- type Entry = string;
10
- /**
11
- * Tag given to a blog post
12
- */
13
- interface BlogTagProps {
14
- entry: Entry;
15
- }
16
- export { Entry, BlogTagProps };
@@ -1,49 +0,0 @@
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,21 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "$id": "http://schema.mydesignsystem.com/blog-tag.schema.json",
4
- "title": "Blog Tag",
5
- "description": "Tag given to a blog post",
6
- "type": "object",
7
- "properties": {
8
- "entry": {
9
- "title": "Entry",
10
- "description": "Name of the tag entry",
11
- "type": "string"
12
- },
13
- "type": {
14
- "const": "blog-tag"
15
- }
16
- },
17
- "additionalProperties": false,
18
- "required": [
19
- "entry"
20
- ]
21
- }
@@ -1,16 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "$id": "http://schema.mydesignsystem.com/blog-tag.schema.json",
4
- "title": "Blog Tag",
5
- "description": "Tag given to a blog post",
6
- "type": "object",
7
- "properties": {
8
- "entry": {
9
- "title": "Entry",
10
- "description": "Name of the tag entry",
11
- "type": "string"
12
- }
13
- },
14
- "additionalProperties": false,
15
- "required": ["entry"]
16
- }
@@ -1,11 +0,0 @@
1
- @media (min-width: 62rem) {
2
- .dsa-nav-main .dsa-nav-flyout,
3
- .dsa-nav-main .dsa-nav-toggle {
4
- display: none;
5
- }
6
- }
7
- @media (max-width: 62rem) {
8
- .dsa-nav-main .dsa-nav-topbar {
9
- display: none;
10
- }
11
- }
@@ -1,4 +0,0 @@
1
- import { PageProps } from "../../PageProps-aa29c554.js";
2
- import { FC, PropsWithChildren } from "react";
3
- declare const Page: FC<PropsWithChildren<PageProps>>;
4
- export { Page };
@@ -1,6 +0,0 @@
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 };