@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.
- package/dist/{BlogAsideProps-e1cbd5d3.d.ts → BlogAsideProps-99489f0b.d.ts} +11 -4
- package/dist/{BlogHeadProps-3f6e4072.d.ts → BlogHeadProps-f9a49428.d.ts} +1 -2
- package/dist/BlogOverviewProps-9f207f1c.d.ts +1 -1
- package/dist/{BlogPostProps-6b3cff22.d.ts → BlogPostProps-f9a49428.d.ts} +3 -3
- package/dist/{BlogTeaserProps-f5855e93.d.ts → BlogTeaserProps-525f7f9f.d.ts} +1 -2
- package/dist/components/blog-aside/blog-aside.css +8 -16
- package/dist/components/blog-aside/blog-aside.schema.dereffed.json +21 -7
- package/dist/components/blog-aside/blog-aside.schema.json +16 -5
- package/dist/components/blog-aside/index.d.ts +1 -1
- package/dist/components/blog-aside/index.js +2 -2
- package/dist/components/blog-head/blog-head.schema.dereffed.json +4 -18
- package/dist/components/blog-head/blog-head.schema.json +2 -1
- package/dist/components/blog-head/index.d.ts +1 -1
- package/dist/components/blog-head/index.js +1 -1
- package/dist/components/blog-overview/blog-overview.schema.dereffed.json +12 -54
- package/dist/components/blog-post/blog-post.schema.dereffed.json +25 -26
- package/dist/components/blog-post/blog-post.schema.json +1 -1
- package/dist/components/blog-post/index.d.ts +1 -1
- package/dist/components/blog-post/index.js +1 -1
- package/dist/components/blog-teaser/blog-teaser.schema.dereffed.json +4 -18
- package/dist/components/blog-teaser/blog-teaser.schema.json +2 -1
- package/dist/components/blog-teaser/index.d.ts +1 -1
- package/dist/components/blog-teaser/index.js +1 -1
- package/dist/components/contact/contact.css +125 -0
- package/dist/components/contact/contact.schema.dereffed.json +125 -0
- package/dist/components/contact/contact.schema.json +107 -0
- package/dist/components/contact/index.d.ts +70 -0
- package/dist/components/contact/index.js +16 -0
- package/dist/components/html/html.schema.json +25 -0
- package/dist/components/html/index.d.ts +26 -0
- package/dist/components/html/index.js +6 -0
- package/dist/components/index/index.d.ts +51 -4
- package/dist/components/nav-flyout/nav-flyout.css +6 -1
- package/dist/components/nav-main/index.js +0 -1
- package/dist/components/nav-toggle/nav-toggle.css +5 -0
- package/dist/components/nav-topbar/nav-topbar.css +7 -1
- package/dist/components/page-wrapper/index.js +6 -0
- package/dist/components/page-wrapper/tokens.css +9 -9
- package/dist/components/presets.json +197 -60
- package/dist/components/providers/index.js +7 -1
- package/dist/components/split/index.d.ts +2 -1
- package/dist/components/split/index.js +11 -1
- package/dist/components/split/split.css +36 -10
- package/dist/components/split/split.schema.dereffed.json +12 -3
- package/dist/components/split/split.schema.json +7 -1
- package/dist/static/img/people/author-john.png +0 -0
- package/dist/static/img/people/contact-jim.png +0 -0
- package/dist/static/img/people/contact-john.png +0 -0
- package/dist/static/img/people/portrait-young-girl-smiling.jpg +0 -0
- package/dist/tokens/themes.css +4 -4
- package/dist/tokens/tokens.css +9 -9
- package/dist/tokens/tokens.js +9 -9
- package/package.json +1 -1
- package/dist/BlogTagProps-f5855e93.d.ts +0 -16
- package/dist/PageProps-aa29c554.d.ts +0 -49
- package/dist/components/blog-tag/blog-tag.schema.dereffed.json +0 -21
- package/dist/components/blog-tag/blog-tag.schema.json +0 -16
- package/dist/components/nav-main/nav-main.css +0 -11
- package/dist/components/page/index.d.ts +0 -4
- package/dist/components/page/index.js +0 -6
|
@@ -1,24 +1,50 @@
|
|
|
1
|
-
.l-split
|
|
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(--
|
|
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
|
|
23
|
+
.l-split {
|
|
8
24
|
justify-content: space-between;
|
|
9
25
|
}
|
|
10
26
|
}
|
|
11
|
-
.l-split
|
|
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--
|
|
17
|
-
flex-
|
|
18
|
-
|
|
19
|
-
|
|
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
|
-
|
|
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",
|
|
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
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
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 12:
|
|
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:
|
|
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:
|
|
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:
|
|
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);
|
package/dist/tokens/tokens.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Mon, 02 Sep 2024 12:
|
|
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-
|
|
120
|
-
--ks-border-color-accent-inverted-base: var(--ks-color-
|
|
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);
|
package/dist/tokens/tokens.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Mon, 02 Sep 2024 12:
|
|
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 = "#
|
|
119
|
-
export const KsBorderColorAccentInvertedBase = "#
|
|
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 = "#
|
|
815
|
-
export const KsTextColorDefaultInteractiveActiveBase = "#
|
|
816
|
-
export const KsTextColorDefaultInteractiveSelectedBase = "#
|
|
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 = "#
|
|
820
|
-
export const KsTextColorDefaultInvertedInteractiveActiveBase = "#
|
|
821
|
-
export const KsTextColorDefaultInvertedInteractiveSelectedBase = "#
|
|
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,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
|
-
}
|