@kickstartds/ds-agency-premium 1.4.14 → 1.4.16--canary.15.832.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/{BlogOverviewProps-83d399b4.d.ts → BlogOverviewProps-9f207f1c.d.ts} +2 -2
- package/dist/{BlogPostProps-3f6e4072.d.ts → BlogPostProps-99489f0b.d.ts} +2 -2
- package/dist/{PageProps-83d399b4.d.ts → PageProps-aa29c554.d.ts} +1 -1
- package/dist/{SectionProps-03ff6d21.d.ts → SectionProps-83d399b4.d.ts} +1 -1
- 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-overview/index.d.ts +1 -1
- package/dist/components/blog-post/blog-post.schema.dereffed.json +21 -7
- package/dist/components/blog-post/index.d.ts +1 -1
- package/dist/components/blog-post/index.js +1 -1
- package/dist/components/blog-teaser/index.d.ts +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/hero/hero.css +2 -2
- 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/image-story/index.d.ts +1 -1
- package/dist/components/index/index.d.ts +3 -3
- package/dist/components/page/index.d.ts +1 -1
- package/dist/components/page-wrapper/index.js +6 -0
- package/dist/components/page-wrapper/tokens.css +9 -9
- package/dist/components/presets.json +140 -6
- package/dist/components/providers/index.js +7 -1
- package/dist/components/section/index.d.ts +1 -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/components/video-curtain/video-curtain.css +2 -2
- 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/{BlogTeaserProps-71a3cb5c.d.ts → BlogTeaserProps-f5855e93.d.ts} +0 -0
- /package/dist/{ImageStoryProps-03ff6d21.d.ts → ImageStoryProps-e853e1e7.d.ts} +0 -0
|
@@ -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
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
.dsa-video-curtain {
|
|
2
|
-
--dsa-video-curtain__headline--color: var(--dsa-
|
|
2
|
+
--dsa-video-curtain__headline--color: var(--dsa-headline--color);
|
|
3
3
|
--dsa-video-curtain__subheadline--color: var(--dsa-headline__subheadline--color);
|
|
4
4
|
--dsa-video-curtain_color-neutral__headline--color: var(--ks-text-color-default);
|
|
5
5
|
--dsa-video-curtain_color-neutral__subheadline--color: var(--ks-text-color-default);
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
.c-visual.dsa-video-curtain .dsa-headline .dsa-headline__headline {
|
|
73
|
-
color: var(--dsa-video-curtain__headline--color, var(--dsa-
|
|
73
|
+
color: var(--dsa-video-curtain__headline--color, var(--dsa-headline--color, var(--ks-text-color-display)));
|
|
74
74
|
}
|
|
75
75
|
.c-visual.dsa-video-curtain .dsa-headline .dsa-headline__subheadline {
|
|
76
76
|
color: var(--dsa-video-curtain__subheadline--color, var(--dsa-headline__subheadline--color, var(--ks-text-color-primary)));
|
|
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 Tue, 03 Sep 2024
|
|
3
|
+
* Generated on Tue, 03 Sep 2024 13:04:09 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 Tue, 03 Sep 2024
|
|
2730
|
+
* Generated on Tue, 03 Sep 2024 13:04:13 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 Tue, 03 Sep 2024
|
|
5461
|
+
* Generated on Tue, 03 Sep 2024 13:04:11 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 Tue, 03 Sep 2024
|
|
8462
|
+
* Generated on Tue, 03 Sep 2024 13:04:14 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 Tue, 03 Sep 2024
|
|
3
|
+
* Generated on Tue, 03 Sep 2024 13:04:06 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 Tue, 03 Sep 2024
|
|
3
|
+
* Generated on Tue, 03 Sep 2024 13:04:07 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
|
File without changes
|
|
File without changes
|