@kickstartds/ds-agency-premium 1.6.71--canary.45.1762.0 → 1.6.71--canary.45.1768.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/{BlogPostProps-6b3cff22.d.ts → BlogPostProps-7caa223c.d.ts} +1 -1
- package/dist/SectionProps-7caa223c.d.ts +1 -1
- package/dist/components/blog-aside/index.d.ts +1 -1
- package/dist/components/blog-overview/index.d.ts +1 -1
- package/dist/components/blog-post/index.d.ts +1 -1
- package/dist/components/blog-post/index.js +1 -1
- 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/tokens.css +1 -1
- package/dist/components/presets.json +120 -101
- package/dist/components/split-even/index.d.ts +11 -6
- package/dist/components/split-even/index.js +1 -1
- package/dist/components/split-even/split-even.css +46 -38
- package/dist/components/split-even/split-even.schema.dereffed.json +19 -6
- package/dist/components/split-even/split-even.schema.json +13 -6
- package/dist/components/split-weighted/index.d.ts +3 -3
- package/dist/components/split-weighted/split-weighted.css +16 -8
- package/dist/components/split-weighted/split-weighted.schema.dereffed.json +3 -1
- package/dist/components/split-weighted/split-weighted.schema.json +3 -3
- 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
- /package/dist/{BlogAsideProps-c760fd2a.d.ts → BlogAsideProps-fb0241df.d.ts} +0 -0
- /package/dist/{BlogOverviewProps-9f207f1c.d.ts → BlogOverviewProps-7caa223c.d.ts} +0 -0
- /package/dist/{ImageStoryProps-e853e1e7.d.ts → ImageStoryProps-00ddee3a.d.ts} +0 -0
- /package/dist/{PageProps-aa29c554.d.ts → PageProps-7caa223c.d.ts} +0 -0
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* and run json-schema-to-typescript to regenerate this file.
|
|
5
5
|
*/
|
|
6
6
|
import { BlogHeadProps } from "./BlogHeadProps-c04a5ed8.js";
|
|
7
|
-
import { BlogAsideProps } from "./BlogAsideProps-
|
|
7
|
+
import { BlogAsideProps } from "./BlogAsideProps-fb0241df.js";
|
|
8
8
|
import { SectionProps } from "./SectionProps-7caa223c.js";
|
|
9
9
|
import { CtaProps } from "./CtaProps-babe4ee6.js";
|
|
10
10
|
import { SeoProps } from "./SeoProps-f2d6dcaa.js";
|
|
@@ -10,7 +10,7 @@ import { FeaturesProps } from "./FeaturesProps-a9041d97.js";
|
|
|
10
10
|
import { GalleryProps } from "./GalleryProps-76e7de44.js";
|
|
11
11
|
import { HeroProps } from "./HeroProps-40f6c7f5.js";
|
|
12
12
|
import { HtmlProps } from "./HtmlProps-9d091769.js";
|
|
13
|
-
import { ImageStoryProps } from "./ImageStoryProps-
|
|
13
|
+
import { ImageStoryProps } from "./ImageStoryProps-00ddee3a.js";
|
|
14
14
|
import { ImageTextProps } from "./ImageTextProps-9286cca4.js";
|
|
15
15
|
import { LogosProps } from "./LogosProps-f9474fe2.js";
|
|
16
16
|
import { MosaicProps } from "./MosaicProps-d52c7151.js";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { HTMLAttributes } from "react";
|
|
3
|
-
import { BlogAsideProps } from "../../BlogAsideProps-
|
|
3
|
+
import { BlogAsideProps } from "../../BlogAsideProps-fb0241df.js";
|
|
4
4
|
declare const BlogAsideContextDefault: import("react").ForwardRefExoticComponent<BlogAsideProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
5
5
|
declare const BlogAsideContext: import("react").Context<import("react").ForwardRefExoticComponent<BlogAsideProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>>;
|
|
6
6
|
declare const BlogAside: import("react").ForwardRefExoticComponent<BlogAsideProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BlogOverviewProps } from "../../BlogOverviewProps-
|
|
1
|
+
import { BlogOverviewProps } from "../../BlogOverviewProps-7caa223c.js";
|
|
2
2
|
import { FC, PropsWithChildren } from "react";
|
|
3
3
|
declare const BlogOverview: FC<PropsWithChildren<BlogOverviewProps>>;
|
|
4
4
|
export type { BlogOverviewProps };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BlogPostProps } from "../../BlogPostProps-
|
|
1
|
+
import { BlogPostProps } from "../../BlogPostProps-7caa223c.js";
|
|
2
2
|
import { FC, PropsWithChildren } from "react";
|
|
3
3
|
declare const BlogPost: FC<PropsWithChildren<BlogPostProps>>;
|
|
4
4
|
export type { BlogPostProps };
|
|
@@ -30,7 +30,7 @@ import '@kickstartds/base/lib/button';
|
|
|
30
30
|
import '../button-group/index.js';
|
|
31
31
|
import '@kickstartds/base/lib/button-group';
|
|
32
32
|
|
|
33
|
-
const BlogPost = ({ head, content, aside, cta, children, }) => (jsxs(Fragment, { children: [jsx(Section, { width: "wide", children: jsx(SplitWeighted, { sticky: true, mainLayout: {
|
|
33
|
+
const BlogPost = ({ head, content, aside, cta, children, }) => (jsxs(Fragment, { children: [jsx(Section, { width: "wide", children: jsx(SplitWeighted, { sticky: true, horizontalGutter: "large", mainLayout: {
|
|
34
34
|
minWidth: "narrow",
|
|
35
35
|
}, main: jsxs(Fragment, { children: [head && jsx(BlogHead, { ...head }), content ? jsx(Text, { text: content }) : children] }), context: aside && jsx(BlogAside, { ...aside }) }) }), cta && (jsx(Fragment, { children: jsx(Section, { backgroundColor: "accent", content: { mode: "list" }, children: jsx(Cta, { ...cta }) }) }))] }));
|
|
36
36
|
BlogPost.displayName = "BlogPost";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { HTMLAttributes } from "react";
|
|
3
|
-
import { ImageStoryProps } from "../../ImageStoryProps-
|
|
3
|
+
import { ImageStoryProps } from "../../ImageStoryProps-00ddee3a.js";
|
|
4
4
|
declare const ImageStoryContextDefault: import("react").ForwardRefExoticComponent<ImageStoryProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
5
5
|
declare const ImageStoryContext: import("react").Context<import("react").ForwardRefExoticComponent<ImageStoryProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>>;
|
|
6
6
|
declare const ImageStory: import("react").ForwardRefExoticComponent<ImageStoryProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -29,8 +29,8 @@ interface SettingsProps {
|
|
|
29
29
|
seo: SeoProps;
|
|
30
30
|
iconSprite?: IconSprite;
|
|
31
31
|
}
|
|
32
|
-
export * from "../../BlogPostProps-
|
|
33
|
-
export * from "../../BlogOverviewProps-
|
|
34
|
-
export * from "../../PageProps-
|
|
32
|
+
export * from "../../BlogPostProps-7caa223c.js";
|
|
33
|
+
export * from "../../BlogOverviewProps-7caa223c.js";
|
|
34
|
+
export * from "../../PageProps-7caa223c.js";
|
|
35
35
|
export { IconSprite, SettingsProps };
|
|
36
36
|
export * from "../../EventDetailProps-42a7eebe.js";
|
|
@@ -3591,13 +3591,14 @@
|
|
|
3591
3591
|
"id": "layout-split-even--text-with-logos",
|
|
3592
3592
|
"group": "Layout/Split Even",
|
|
3593
3593
|
"name": "TextWithLogos",
|
|
3594
|
-
"code": "<SplitEven\n contentGutter=\"small\"\n contentMinWidth=\"medium\"\n first={<><
|
|
3594
|
+
"code": "<SplitEven\n contentGutter=\"small\"\n contentMinWidth=\"medium\"\n first={<><Cta buttons={[{label: 'Learn more'}]} headline=\"Discover our solutions for Industry 4.0\" highlightText text=\"We help companies make their production processes more efficient and future-proof through digitalization, automation, and smart technologies. Rely on our many years of experience in the industrial sector.\n\nRevolutionize your manufacturing with our tailored solutions designed to meet the specific needs of your industry.\"/><Cta buttons={[{label: 'Learn more'}]} headline=\"Discover our solutions for Industry 4.0\" highlightText text=\"We help companies make their production processes more efficient and future-proof through digitalization, automation, and smart technologies. Rely on our many years of experience in the industrial sector.\n\nRevolutionize your manufacturing with our tailored solutions designed to meet the specific needs of your industry.\"/><Cta buttons={[{label: 'Learn more'}]} headline=\"Discover our solutions for Industry 4.0\" highlightText text=\"We help companies make their production processes more efficient and future-proof through digitalization, automation, and smart technologies. Rely on our many years of experience in the industrial sector.\n\nRevolutionize your manufacturing with our tailored solutions designed to meet the specific needs of your industry.\"/><Cta buttons={[{label: 'Learn more'}]} headline=\"Discover our solutions for Industry 4.0\" highlightText text=\"We help companies make their production processes more efficient and future-proof through digitalization, automation, and smart technologies. Rely on our many years of experience in the industrial sector.\n\nRevolutionize your manufacturing with our tailored solutions designed to meet the specific needs of your industry.\"/></>}\n horizontalGutter=\"default\"\n mobileLayout=\"stack\"\n second={<><Logos logo={[{alt: 'Logo 1', src: 'img/logos/logoipsum-344.svg'}, {alt: 'Logo 2', src: 'img/logos/logoipsum-347.svg'}, {alt: 'Logo 3', src: 'img/logos/logoipsum-352.svg'}, {alt: 'Logo 4', src: 'img/logos/logoipsum-356.svg'}, {alt: 'Logo 5', src: 'img/logos/logoipsum-358.svg'}, {alt: 'Logo 6', src: 'img/logos/logoipsum-369.svg'}]} logosPerRow={3}/></>}\n sectionMinWidth=\"wide\"\n verticalAlign=\"sticky\"\n verticalGutter=\"default\"\n/>",
|
|
3595
3595
|
"args": {
|
|
3596
3596
|
"contentMinWidth": "medium",
|
|
3597
3597
|
"contentGutter": "small",
|
|
3598
3598
|
"mobileLayout": "stack",
|
|
3599
|
-
"verticalAlign": "
|
|
3600
|
-
"
|
|
3599
|
+
"verticalAlign": "sticky",
|
|
3600
|
+
"verticalGutter": "default",
|
|
3601
|
+
"horizontalGutter": "default",
|
|
3601
3602
|
"sectionMinWidth": "wide",
|
|
3602
3603
|
"first": {
|
|
3603
3604
|
"key": null,
|
|
@@ -3609,9 +3610,14 @@
|
|
|
3609
3610
|
"key": null,
|
|
3610
3611
|
"ref": null,
|
|
3611
3612
|
"props": {
|
|
3612
|
-
"
|
|
3613
|
-
"
|
|
3614
|
-
"
|
|
3613
|
+
"highlightText": true,
|
|
3614
|
+
"headline": "Discover our solutions for Industry 4.0",
|
|
3615
|
+
"text": "We help companies make their production processes more efficient and future-proof through digitalization, automation, and smart technologies. Rely on our many years of experience in the industrial sector.\n\nRevolutionize your manufacturing with our tailored solutions designed to meet the specific needs of your industry.",
|
|
3616
|
+
"buttons": [
|
|
3617
|
+
{
|
|
3618
|
+
"label": "Learn more"
|
|
3619
|
+
}
|
|
3620
|
+
]
|
|
3615
3621
|
},
|
|
3616
3622
|
"_owner": null
|
|
3617
3623
|
},
|
|
@@ -3621,7 +3627,13 @@
|
|
|
3621
3627
|
"ref": null,
|
|
3622
3628
|
"props": {
|
|
3623
3629
|
"highlightText": true,
|
|
3624
|
-
"
|
|
3630
|
+
"headline": "Discover our solutions for Industry 4.0",
|
|
3631
|
+
"text": "We help companies make their production processes more efficient and future-proof through digitalization, automation, and smart technologies. Rely on our many years of experience in the industrial sector.\n\nRevolutionize your manufacturing with our tailored solutions designed to meet the specific needs of your industry.",
|
|
3632
|
+
"buttons": [
|
|
3633
|
+
{
|
|
3634
|
+
"label": "Learn more"
|
|
3635
|
+
}
|
|
3636
|
+
]
|
|
3625
3637
|
},
|
|
3626
3638
|
"_owner": null
|
|
3627
3639
|
},
|
|
@@ -3630,8 +3642,30 @@
|
|
|
3630
3642
|
"key": null,
|
|
3631
3643
|
"ref": null,
|
|
3632
3644
|
"props": {
|
|
3633
|
-
"
|
|
3634
|
-
"
|
|
3645
|
+
"highlightText": true,
|
|
3646
|
+
"headline": "Discover our solutions for Industry 4.0",
|
|
3647
|
+
"text": "We help companies make their production processes more efficient and future-proof through digitalization, automation, and smart technologies. Rely on our many years of experience in the industrial sector.\n\nRevolutionize your manufacturing with our tailored solutions designed to meet the specific needs of your industry.",
|
|
3648
|
+
"buttons": [
|
|
3649
|
+
{
|
|
3650
|
+
"label": "Learn more"
|
|
3651
|
+
}
|
|
3652
|
+
]
|
|
3653
|
+
},
|
|
3654
|
+
"_owner": null
|
|
3655
|
+
},
|
|
3656
|
+
{
|
|
3657
|
+
"type": {},
|
|
3658
|
+
"key": null,
|
|
3659
|
+
"ref": null,
|
|
3660
|
+
"props": {
|
|
3661
|
+
"highlightText": true,
|
|
3662
|
+
"headline": "Discover our solutions for Industry 4.0",
|
|
3663
|
+
"text": "We help companies make their production processes more efficient and future-proof through digitalization, automation, and smart technologies. Rely on our many years of experience in the industrial sector.\n\nRevolutionize your manufacturing with our tailored solutions designed to meet the specific needs of your industry.",
|
|
3664
|
+
"buttons": [
|
|
3665
|
+
{
|
|
3666
|
+
"label": "Learn more"
|
|
3667
|
+
}
|
|
3668
|
+
]
|
|
3635
3669
|
},
|
|
3636
3670
|
"_owner": null
|
|
3637
3671
|
}
|
|
@@ -3688,13 +3722,14 @@
|
|
|
3688
3722
|
"id": "layout-split-even--faq-with-form",
|
|
3689
3723
|
"group": "Layout/Split Even",
|
|
3690
3724
|
"name": "FAQWithForm",
|
|
3691
|
-
"code": "<SplitEven\n contentGutter=\"small\"\n contentMinWidth=\"medium\"\n first={<><Headline level=\"h2\" text=\"Frequently Asked Questions\"/><Faq questions={[{answer: 'Experience the speed & scalability unlike anything seen before with our Headless CMS powered websites, web apps & composable architecture.', question: 'What are the benefits of investing in a Design System?'}, {answer: 'Experience the speed & scalability unlike anything seen before with our Headless CMS powered websites, web apps & composable architecture.', question: 'What is a Design System?'}, {answer: 'A Headless CMS plays a crucial role in a Design System by providing a content-first approach. It separates the back-end content from the front-end presentation layer, allowing for seamless integration with any design system. This results in a flexible, scalable, and platform-agnostic system that ensures content consistency across all platforms and devices.', question: 'What is the role of a Headless CMS in a Design System?'}]} /></>}\n
|
|
3725
|
+
"code": "<SplitEven\n contentGutter=\"small\"\n contentMinWidth=\"medium\"\n first={<><Headline level=\"h2\" text=\"Frequently Asked Questions\"/><Faq questions={[{answer: 'Experience the speed & scalability unlike anything seen before with our Headless CMS powered websites, web apps & composable architecture.', question: 'What are the benefits of investing in a Design System?'}, {answer: 'Experience the speed & scalability unlike anything seen before with our Headless CMS powered websites, web apps & composable architecture.', question: 'What is a Design System?'}, {answer: 'A Headless CMS plays a crucial role in a Design System by providing a content-first approach. It separates the back-end content from the front-end presentation layer, allowing for seamless integration with any design system. This results in a flexible, scalable, and platform-agnostic system that ensures content consistency across all platforms and devices.', question: 'What is the role of a Headless CMS in a Design System?'}]} /></>}\n horizontalGutter=\"large\"\n mobileLayout=\"stack\"\n second={<><Headline level=\"h3\" spaceAfter=\"minimum\" style=\"h3\" text=\"Still have questions?\"/><No Display Name label=\"Ask us directly!\" /><Button label=\"Submit\" /></>}\n sectionMinWidth=\"medium\"\n verticalAlign=\"top\"\n verticalGutter=\"large\"\n/>",
|
|
3692
3726
|
"args": {
|
|
3693
3727
|
"contentMinWidth": "medium",
|
|
3694
3728
|
"contentGutter": "small",
|
|
3695
3729
|
"mobileLayout": "stack",
|
|
3696
3730
|
"verticalAlign": "top",
|
|
3697
|
-
"
|
|
3731
|
+
"verticalGutter": "large",
|
|
3732
|
+
"horizontalGutter": "large",
|
|
3698
3733
|
"sectionMinWidth": "medium",
|
|
3699
3734
|
"first": {
|
|
3700
3735
|
"key": null,
|
|
@@ -3780,48 +3815,49 @@
|
|
|
3780
3815
|
"screenshot": "img/screenshots/layout-split-even--faq-with-form.png"
|
|
3781
3816
|
},
|
|
3782
3817
|
{
|
|
3783
|
-
"id": "layout-split-
|
|
3784
|
-
"group": "Layout/Split
|
|
3785
|
-
"name": "
|
|
3786
|
-
"code": "<
|
|
3818
|
+
"id": "layout-split-weighted--text-with-contact",
|
|
3819
|
+
"group": "Layout/Split Weighted",
|
|
3820
|
+
"name": "TextWithContact",
|
|
3821
|
+
"code": "<SplitWeighted\n context={<><Contact image={{aspectRatio: 'wide', fullWidth: true, src: 'img/people/contact-isabella.png'}} links={[{ariaLabel: 'Isabella Doe on Twitter', icon: 'twitter', label: '@Isabella_Doe', url: '#'}, {ariaLabel: 'Isabella Doe on LinkedIn', icon: 'linkedin', label: 'Isabella.Doe', url: 'mailto:mail@example.com'}]} subtitle=\"Creative Director\" title=\"Isabella Doe\"/></>}\n contextLayout={{\n gutter: 'default',\n minWidth: 'wide'\n }}\n horizontalGutter=\"default\"\n main={<><Cta buttons={[{label: 'Learn more'}]} headline=\"Discover our solutions for Industry 4.0\" text=\"We help companies make their production processes more efficient and future-proof through digitalization, automation, and smart technologies. Rely on our many years of experience in the industrial sector.\n\nRevolutionize your manufacturing with our tailored solutions designed to meet the specific needs of your industry.\"/></>}\n mainLayout={{\n gutter: 'default',\n minWidth: 'wide'\n }}\n order={{\n desktop: 'mainFirst',\n mobile: 'mainFirst'\n }}\n verticalGutter=\"large\"\n/>",
|
|
3787
3822
|
"args": {
|
|
3788
|
-
"
|
|
3789
|
-
"
|
|
3790
|
-
"
|
|
3791
|
-
"
|
|
3792
|
-
|
|
3793
|
-
|
|
3794
|
-
|
|
3823
|
+
"verticalGutter": "large",
|
|
3824
|
+
"horizontalGutter": "default",
|
|
3825
|
+
"sticky": false,
|
|
3826
|
+
"mainLayout": {
|
|
3827
|
+
"gutter": "default",
|
|
3828
|
+
"minWidth": "wide"
|
|
3829
|
+
},
|
|
3830
|
+
"contextLayout": {
|
|
3831
|
+
"gutter": "default",
|
|
3832
|
+
"minWidth": "wide"
|
|
3833
|
+
},
|
|
3834
|
+
"order": {
|
|
3835
|
+
"mobile": "mainFirst",
|
|
3836
|
+
"desktop": "mainFirst"
|
|
3837
|
+
},
|
|
3838
|
+
"main": {
|
|
3795
3839
|
"key": null,
|
|
3796
3840
|
"ref": null,
|
|
3797
3841
|
"props": {
|
|
3798
|
-
"children":
|
|
3799
|
-
{
|
|
3800
|
-
|
|
3801
|
-
|
|
3802
|
-
|
|
3803
|
-
"
|
|
3804
|
-
|
|
3805
|
-
|
|
3806
|
-
|
|
3807
|
-
|
|
3808
|
-
|
|
3842
|
+
"children": {
|
|
3843
|
+
"type": {},
|
|
3844
|
+
"key": null,
|
|
3845
|
+
"ref": null,
|
|
3846
|
+
"props": {
|
|
3847
|
+
"headline": "Discover our solutions for Industry 4.0",
|
|
3848
|
+
"text": "We help companies make their production processes more efficient and future-proof through digitalization, automation, and smart technologies. Rely on our many years of experience in the industrial sector.\n\nRevolutionize your manufacturing with our tailored solutions designed to meet the specific needs of your industry.",
|
|
3849
|
+
"buttons": [
|
|
3850
|
+
{
|
|
3851
|
+
"label": "Learn more"
|
|
3852
|
+
}
|
|
3853
|
+
]
|
|
3809
3854
|
},
|
|
3810
|
-
|
|
3811
|
-
|
|
3812
|
-
"key": null,
|
|
3813
|
-
"ref": null,
|
|
3814
|
-
"props": {
|
|
3815
|
-
"highlightText": true,
|
|
3816
|
-
"text": "We help companies make their production processes more efficient and future-proof through digitalization, automation, and smart technologies. Rely on our many years of experience in the industrial sector.\n\nRevolutionize your manufacturing with our tailored solutions designed to meet the specific needs of your industry."
|
|
3817
|
-
},
|
|
3818
|
-
"_owner": null
|
|
3819
|
-
}
|
|
3820
|
-
]
|
|
3855
|
+
"_owner": null
|
|
3856
|
+
}
|
|
3821
3857
|
},
|
|
3822
3858
|
"_owner": null
|
|
3823
3859
|
},
|
|
3824
|
-
"
|
|
3860
|
+
"context": {
|
|
3825
3861
|
"key": null,
|
|
3826
3862
|
"ref": null,
|
|
3827
3863
|
"props": {
|
|
@@ -3830,17 +3866,27 @@
|
|
|
3830
3866
|
"key": null,
|
|
3831
3867
|
"ref": null,
|
|
3832
3868
|
"props": {
|
|
3833
|
-
"
|
|
3834
|
-
"
|
|
3835
|
-
|
|
3836
|
-
"
|
|
3837
|
-
"
|
|
3869
|
+
"title": "Isabella Doe",
|
|
3870
|
+
"subtitle": "Creative Director",
|
|
3871
|
+
"image": {
|
|
3872
|
+
"src": "img/people/contact-isabella.png",
|
|
3873
|
+
"aspectRatio": "wide",
|
|
3874
|
+
"fullWidth": true
|
|
3838
3875
|
},
|
|
3839
|
-
"
|
|
3840
|
-
|
|
3841
|
-
|
|
3842
|
-
|
|
3843
|
-
|
|
3876
|
+
"links": [
|
|
3877
|
+
{
|
|
3878
|
+
"icon": "twitter",
|
|
3879
|
+
"url": "#",
|
|
3880
|
+
"label": "@Isabella_Doe",
|
|
3881
|
+
"ariaLabel": "Isabella Doe on Twitter"
|
|
3882
|
+
},
|
|
3883
|
+
{
|
|
3884
|
+
"url": "mailto:mail@example.com",
|
|
3885
|
+
"icon": "linkedin",
|
|
3886
|
+
"label": "Isabella.Doe",
|
|
3887
|
+
"ariaLabel": "Isabella Doe on LinkedIn"
|
|
3888
|
+
}
|
|
3889
|
+
]
|
|
3844
3890
|
},
|
|
3845
3891
|
"_owner": null
|
|
3846
3892
|
}
|
|
@@ -3848,20 +3894,20 @@
|
|
|
3848
3894
|
"_owner": null
|
|
3849
3895
|
}
|
|
3850
3896
|
},
|
|
3851
|
-
"screenshot": "img/screenshots/layout-split-
|
|
3897
|
+
"screenshot": "img/screenshots/layout-split-weighted--text-with-contact.png"
|
|
3852
3898
|
},
|
|
3853
3899
|
{
|
|
3854
|
-
"id": "layout-split-weighted--text-with-
|
|
3900
|
+
"id": "layout-split-weighted--text-with-teaser",
|
|
3855
3901
|
"group": "Layout/Split Weighted",
|
|
3856
|
-
"name": "
|
|
3857
|
-
"code": "<SplitWeighted\n context={
|
|
3902
|
+
"name": "TextWithTeaser",
|
|
3903
|
+
"code": "<SplitWeighted\n context={<TeaserCard button={{chevron: false, hidden: false, label: 'Read more'}} headline=\"Transforming Industry\" image=\"img/logos/castaway.svg\" imageRatio=\"landscape\" layout=\"row\" text=\"with Smart Solutions\" url=\"#\"/>}\n contextLayout={{\n gutter: 'default',\n minWidth: 'narrow'\n }}\n horizontalGutter=\"default\"\n main={<><Headline level=\"h2\" spaceAfter=\"minimum\" text=\"Innovative solutions for Industry 4.0\"/><Text highlightText text=\"We help companies make their production processes more efficient and future-proof through digitalization, automation, and smart technologies. Rely on our many years of experience in the industrial sector.\n\nRevolutionize your manufacturing with our tailored solutions designed to meet the specific needs of your industry.\"/></>}\n mainLayout={{\n gutter: 'small',\n minWidth: 'wide'\n }}\n order={{\n desktop: 'mainFirst',\n mobile: 'mainFirst'\n }}\n verticalGutter=\"default\"\n/>",
|
|
3858
3904
|
"args": {
|
|
3859
3905
|
"verticalGutter": "default",
|
|
3860
|
-
"horizontalGutter": "
|
|
3906
|
+
"horizontalGutter": "default",
|
|
3861
3907
|
"sticky": false,
|
|
3862
3908
|
"mainLayout": {
|
|
3863
3909
|
"gutter": "small",
|
|
3864
|
-
"minWidth": "
|
|
3910
|
+
"minWidth": "wide"
|
|
3865
3911
|
},
|
|
3866
3912
|
"contextLayout": {
|
|
3867
3913
|
"gutter": "default",
|
|
@@ -3896,59 +3942,32 @@
|
|
|
3896
3942
|
"text": "We help companies make their production processes more efficient and future-proof through digitalization, automation, and smart technologies. Rely on our many years of experience in the industrial sector.\n\nRevolutionize your manufacturing with our tailored solutions designed to meet the specific needs of your industry."
|
|
3897
3943
|
},
|
|
3898
3944
|
"_owner": null
|
|
3899
|
-
},
|
|
3900
|
-
{
|
|
3901
|
-
"type": {},
|
|
3902
|
-
"key": null,
|
|
3903
|
-
"ref": null,
|
|
3904
|
-
"props": {
|
|
3905
|
-
"label": "Learn more",
|
|
3906
|
-
"variant": "primary"
|
|
3907
|
-
},
|
|
3908
|
-
"_owner": null
|
|
3909
3945
|
}
|
|
3910
3946
|
]
|
|
3911
3947
|
},
|
|
3912
3948
|
"_owner": null
|
|
3913
3949
|
},
|
|
3914
3950
|
"context": {
|
|
3951
|
+
"type": {},
|
|
3915
3952
|
"key": null,
|
|
3916
3953
|
"ref": null,
|
|
3917
3954
|
"props": {
|
|
3918
|
-
"
|
|
3919
|
-
|
|
3920
|
-
"
|
|
3921
|
-
"
|
|
3922
|
-
"
|
|
3923
|
-
|
|
3924
|
-
|
|
3925
|
-
|
|
3926
|
-
|
|
3927
|
-
|
|
3928
|
-
|
|
3929
|
-
},
|
|
3930
|
-
"links": [
|
|
3931
|
-
{
|
|
3932
|
-
"icon": "twitter",
|
|
3933
|
-
"url": "#",
|
|
3934
|
-
"label": "@Isabella_Doe",
|
|
3935
|
-
"ariaLabel": "Isabella Doe on Twitter"
|
|
3936
|
-
},
|
|
3937
|
-
{
|
|
3938
|
-
"url": "mailto:mail@example.com",
|
|
3939
|
-
"icon": "linkedin",
|
|
3940
|
-
"label": "Isabella.Doe",
|
|
3941
|
-
"ariaLabel": "Isabella Doe on LinkedIn"
|
|
3942
|
-
}
|
|
3943
|
-
]
|
|
3944
|
-
},
|
|
3945
|
-
"_owner": null
|
|
3946
|
-
}
|
|
3955
|
+
"layout": "row",
|
|
3956
|
+
"button": {
|
|
3957
|
+
"chevron": false,
|
|
3958
|
+
"hidden": false,
|
|
3959
|
+
"label": "Read more"
|
|
3960
|
+
},
|
|
3961
|
+
"imageRatio": "landscape",
|
|
3962
|
+
"headline": "Transforming Industry",
|
|
3963
|
+
"text": "with Smart Solutions",
|
|
3964
|
+
"image": "img/logos/castaway.svg",
|
|
3965
|
+
"url": "#"
|
|
3947
3966
|
},
|
|
3948
3967
|
"_owner": null
|
|
3949
3968
|
}
|
|
3950
3969
|
},
|
|
3951
|
-
"screenshot": "img/screenshots/layout-split-weighted--text-with-
|
|
3970
|
+
"screenshot": "img/screenshots/layout-split-weighted--text-with-teaser.png"
|
|
3952
3971
|
},
|
|
3953
3972
|
{
|
|
3954
3973
|
"id": "components-stats--count-up-with-icons",
|
|
@@ -13,7 +13,7 @@ import { FeaturesProps } from "../../FeaturesProps-a9041d97.js";
|
|
|
13
13
|
import { GalleryProps } from "../../GalleryProps-76e7de44.js";
|
|
14
14
|
import { HeroProps } from "../../HeroProps-40f6c7f5.js";
|
|
15
15
|
import { HtmlProps } from "../../HtmlProps-9d091769.js";
|
|
16
|
-
import { ImageStoryProps } from "../../ImageStoryProps-
|
|
16
|
+
import { ImageStoryProps } from "../../ImageStoryProps-00ddee3a.js";
|
|
17
17
|
import { ImageTextProps } from "../../ImageTextProps-9286cca4.js";
|
|
18
18
|
import { LogosProps } from "../../LogosProps-f9474fe2.js";
|
|
19
19
|
import { MosaicProps } from "../../MosaicProps-d52c7151.js";
|
|
@@ -30,7 +30,7 @@ type ContentMinimumWidth = "narrow" | "medium" | "wide";
|
|
|
30
30
|
/**
|
|
31
31
|
* Sets the space between the content inside the two halves of the split layout
|
|
32
32
|
*/
|
|
33
|
-
type ContentGutter = "narrow" | "
|
|
33
|
+
type ContentGutter = "narrow" | "default" | "wide" | "none";
|
|
34
34
|
/**
|
|
35
35
|
* Determines the layout of the sections on mobile devices
|
|
36
36
|
*/
|
|
@@ -38,11 +38,15 @@ type MobileLayout = "stack" | "stackReverse";
|
|
|
38
38
|
/**
|
|
39
39
|
* Aligns the content vertically within the sections
|
|
40
40
|
*/
|
|
41
|
-
type VerticalAlignment = "top" | "center" | "bottom";
|
|
41
|
+
type VerticalAlignment = "top" | "center" | "bottom" | "sticky";
|
|
42
42
|
/**
|
|
43
|
-
* Sets the space between the
|
|
43
|
+
* Sets the vertical space between the content of the split layout
|
|
44
44
|
*/
|
|
45
|
-
type
|
|
45
|
+
type VerticalGutter = "large" | "default" | "small" | "none";
|
|
46
|
+
/**
|
|
47
|
+
* Sets the horizontal space between the content of the split layout
|
|
48
|
+
*/
|
|
49
|
+
type HorizontalGutter = "large" | "default" | "small" | "none";
|
|
46
50
|
/**
|
|
47
51
|
* Allowed components for the first half of the split layout
|
|
48
52
|
*/
|
|
@@ -56,7 +60,8 @@ interface SplitEvenProps {
|
|
|
56
60
|
contentGutter?: ContentGutter;
|
|
57
61
|
mobileLayout?: MobileLayout;
|
|
58
62
|
verticalAlign?: VerticalAlignment;
|
|
59
|
-
|
|
63
|
+
verticalGutter?: VerticalGutter;
|
|
64
|
+
horizontalGutter?: HorizontalGutter;
|
|
60
65
|
firstComponents?: First;
|
|
61
66
|
secondComponents?: Second;
|
|
62
67
|
}
|
|
@@ -2,6 +2,6 @@ import "./split-even.css";
|
|
|
2
2
|
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
3
3
|
import classnames from 'classnames';
|
|
4
4
|
|
|
5
|
-
const SplitEven = ({ mobileLayout = "stack", contentMinWidth = "medium", verticalAlign = "top",
|
|
5
|
+
const SplitEven = ({ mobileLayout = "stack", contentMinWidth = "medium", verticalAlign = "top", horizontalGutter = "default", verticalGutter = "default", contentGutter = "default", first, second, }) => (jsxs("div", { className: classnames("l-split-even", mobileLayout === "stackReverse" && "l-split-even--mobile_stack-reverse", horizontalGutter && `l-split-even--h-gutter-${horizontalGutter}`, verticalGutter && `l-split-even--v-gutter-${verticalGutter}`, contentMinWidth && `l-split-even--width-${contentMinWidth}`, verticalAlign && `l-split-even--align-${verticalAlign}`), children: [jsx("div", { className: classnames("l-split-even__content l-split-even__content--first", contentGutter && `l-split-even__content--gutter-${contentGutter}`), children: verticalAlign === "sticky" ? (jsx("div", { className: "l-split-even__sticky-container", children: first })) : (first) }), jsx("div", { className: classnames("l-split-even__content l-split-even__content--second", contentGutter && `l-split-even__content--gutter-${contentGutter}`), children: verticalAlign === "sticky" ? (jsx("div", { className: "l-split-even__sticky-container", children: second })) : (second) })] }));
|
|
6
6
|
|
|
7
7
|
export { SplitEven };
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
.l-split-even {
|
|
2
|
-
--dsa-split-even--
|
|
3
|
-
--dsa-split-even--gutter_default: var(--ks-spacing-stack-m)
|
|
4
|
-
--dsa-split-even--
|
|
2
|
+
--dsa-split-even--sticky-margin: var(--ks-spacing-stack-xl);
|
|
3
|
+
--dsa-split-even--v-gutter_default: var(--ks-spacing-stack-m);
|
|
4
|
+
--dsa-split-even--v-gutter_small: var(--ks-spacing-stack-l);
|
|
5
|
+
--dsa-split-even--v-gutter_large: var(--dsa-content--vertical-spacing);
|
|
6
|
+
--dsa-split-even--h-gutter_default: var(--ks-spacing-inline-l);
|
|
7
|
+
--dsa-split-even--h-gutter_small: var(--ks-spacing-inline-m);
|
|
8
|
+
--dsa-split-even--h-gutter_large: var(--ks-spacing-xxl);
|
|
5
9
|
--dsa-split-even__content--gutter_small: var(--ks-spacing-stack-s);
|
|
6
10
|
--dsa-split-even__content--gutter_default: var(--ks-spacing-stack-m);
|
|
7
11
|
--dsa-split-even__content--gutter_large: var(--ks-spacing-stack-xl);
|
|
@@ -11,9 +15,29 @@
|
|
|
11
15
|
}
|
|
12
16
|
|
|
13
17
|
.l-split-even {
|
|
18
|
+
--dsa-split-even--v-gutter: var(--dsa-split-even--v-gutter_default, var(--ks-spacing-stack-m));
|
|
19
|
+
--dsa-split-even--h-gutter: var(--dsa-split-even--h-gutter_default, var(--ks-spacing-inline-l));
|
|
14
20
|
display: flex;
|
|
15
21
|
flex-wrap: wrap;
|
|
16
|
-
gap: var(--dsa-split-even--gutter);
|
|
22
|
+
gap: var(--dsa-split-even--v-gutter) var(--dsa-split-even--h-gutter);
|
|
23
|
+
}
|
|
24
|
+
.l-split-even--v-gutter-small {
|
|
25
|
+
--dsa-split-even--v-gutter: var(--dsa-split-even--v-gutter_small, var(--ks-spacing-stack-l));
|
|
26
|
+
}
|
|
27
|
+
.l-split-even--v-gutter-large {
|
|
28
|
+
--dsa-split-even--v-gutter: var(--dsa-split-even--v-gutter_large, var(--dsa-content--vertical-spacing));
|
|
29
|
+
}
|
|
30
|
+
.l-split-even--v-gutter-none {
|
|
31
|
+
--dsa-split-even--v-gutter: 0;
|
|
32
|
+
}
|
|
33
|
+
.l-split-even--h-gutter-small {
|
|
34
|
+
--dsa-split-even--h-gutter: var(--dsa-split-even--h-gutter_small, var(--ks-spacing-inline-m));
|
|
35
|
+
}
|
|
36
|
+
.l-split-even--h-gutter-large {
|
|
37
|
+
--dsa-split-even--h-gutter: var(--dsa-split-even--h-gutter_large, var(--ks-spacing-xxl));
|
|
38
|
+
}
|
|
39
|
+
.l-split-even--h-gutter-none {
|
|
40
|
+
--dsa-split-even--h-gutter: 0;
|
|
17
41
|
}
|
|
18
42
|
.l-split-even--width-narrow {
|
|
19
43
|
--dsa-split-even__content--flex-basis: var(
|
|
@@ -33,39 +57,6 @@
|
|
|
33
57
|
var(--dsa-tile--width_large)
|
|
34
58
|
);
|
|
35
59
|
}
|
|
36
|
-
.l-split-even--gutter-none {
|
|
37
|
-
--dsa-split-even--gutter: 0;
|
|
38
|
-
}
|
|
39
|
-
.l-split-even--gutter-default {
|
|
40
|
-
--dsa-split-even--gutter: var(
|
|
41
|
-
--dsa-split-even--gutter_default,
|
|
42
|
-
var(--ks-spacing-stack-m) var(--ks-spacing-inline-m)
|
|
43
|
-
);
|
|
44
|
-
}
|
|
45
|
-
.l-split-even--gutter-small {
|
|
46
|
-
--dsa-split-even--gutter: var(
|
|
47
|
-
--dsa-split-even--gutter_small,
|
|
48
|
-
var(--ks-spacing-stack-s) var(--ks-spacing-inline-s)
|
|
49
|
-
);
|
|
50
|
-
}
|
|
51
|
-
.l-split-even--gutter-large {
|
|
52
|
-
--dsa-split-even--gutter: var(
|
|
53
|
-
--dsa-split-even--gutter_large,
|
|
54
|
-
var(--ks-spacing-stack-xl) var(--ks-spacing-inline-xl)
|
|
55
|
-
);
|
|
56
|
-
}
|
|
57
|
-
.l-split-even--content-gutter-none {
|
|
58
|
-
--dsa-split-even__content--gutter: 0;
|
|
59
|
-
}
|
|
60
|
-
.l-split-even--content-gutter-medium {
|
|
61
|
-
--dsa-split-even__content--gutter: var(--dsa-split-even__content--gutter_default, var(--ks-spacing-stack-m));
|
|
62
|
-
}
|
|
63
|
-
.l-split-even--content-gutter-small {
|
|
64
|
-
--dsa-split-even__content--gutter: var(--dsa-split-even__content--gutter_small, var(--ks-spacing-stack-s));
|
|
65
|
-
}
|
|
66
|
-
.l-split-even--content-gutter-large {
|
|
67
|
-
--dsa-split-even__content--gutter: var(--dsa-split-even__content--gutter_large, var(--ks-spacing-stack-xl));
|
|
68
|
-
}
|
|
69
60
|
.l-split-even--align-top {
|
|
70
61
|
align-items: flex-start;
|
|
71
62
|
}
|
|
@@ -75,6 +66,14 @@
|
|
|
75
66
|
.l-split-even--align-bottom {
|
|
76
67
|
align-items: flex-end;
|
|
77
68
|
}
|
|
69
|
+
.l-split-even--align-sticky {
|
|
70
|
+
position: relative;
|
|
71
|
+
}
|
|
72
|
+
.l-split-even--align-sticky .l-split-even__sticky-container {
|
|
73
|
+
position: sticky;
|
|
74
|
+
top: var(--dsa-split-even--sticky-margin, var(--ks-spacing-stack-xl));
|
|
75
|
+
height: fit-content;
|
|
76
|
+
}
|
|
78
77
|
.l-split-even--mobile_stack-reverse {
|
|
79
78
|
flex-wrap: wrap-reverse;
|
|
80
79
|
}
|
|
@@ -88,7 +87,16 @@
|
|
|
88
87
|
flex: 1 1 var(--dsa-split-even__content--flex-basis);
|
|
89
88
|
display: flex;
|
|
90
89
|
flex-direction: column;
|
|
91
|
-
gap: var(--dsa-split-even__content--
|
|
90
|
+
gap: var(--dsa-split-even__content--gutter_default, var(--ks-spacing-stack-m));
|
|
91
|
+
}
|
|
92
|
+
.l-split-even__content--gutter-none {
|
|
93
|
+
gap: 0;
|
|
94
|
+
}
|
|
95
|
+
.l-split-even__content--gutter-small {
|
|
96
|
+
gap: var(--dsa-split-even__content--gutter_small, var(--ks-spacing-stack-s));
|
|
97
|
+
}
|
|
98
|
+
.l-split-even__content--gutter-large {
|
|
99
|
+
gap: var(--dsa-split-even__content--gutter_large, var(--ks-spacing-stack-xl));
|
|
92
100
|
}
|
|
93
101
|
.l-split-even__content .c-button {
|
|
94
102
|
width: fit-content;
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
"type": "string",
|
|
22
22
|
"enum": [
|
|
23
23
|
"narrow",
|
|
24
|
-
"
|
|
24
|
+
"default",
|
|
25
25
|
"wide",
|
|
26
26
|
"none"
|
|
27
27
|
],
|
|
28
|
-
"default": "
|
|
28
|
+
"default": "default"
|
|
29
29
|
},
|
|
30
30
|
"mobileLayout": {
|
|
31
31
|
"title": "Mobile Layout",
|
|
@@ -44,14 +44,27 @@
|
|
|
44
44
|
"enum": [
|
|
45
45
|
"top",
|
|
46
46
|
"center",
|
|
47
|
-
"bottom"
|
|
47
|
+
"bottom",
|
|
48
|
+
"sticky"
|
|
48
49
|
],
|
|
49
50
|
"default": "top"
|
|
50
51
|
},
|
|
51
|
-
"
|
|
52
|
-
"title": "Gutter",
|
|
52
|
+
"verticalGutter": {
|
|
53
|
+
"title": "Vertical Gutter",
|
|
54
|
+
"description": "Sets the vertical space between the content of the split layout",
|
|
55
|
+
"type": "string",
|
|
56
|
+
"enum": [
|
|
57
|
+
"large",
|
|
58
|
+
"default",
|
|
59
|
+
"small",
|
|
60
|
+
"none"
|
|
61
|
+
],
|
|
62
|
+
"default": "default"
|
|
63
|
+
},
|
|
64
|
+
"horizontalGutter": {
|
|
65
|
+
"title": "Horizontal Gutter",
|
|
66
|
+
"description": "Sets the horizontal space between the content of the split layout",
|
|
53
67
|
"type": "string",
|
|
54
|
-
"description": "Sets the space between the two halves of the split layout",
|
|
55
68
|
"enum": [
|
|
56
69
|
"large",
|
|
57
70
|
"default",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"title": "Content Gutter",
|
|
16
16
|
"description": "Sets the space between the content inside the two halves of the split layout",
|
|
17
17
|
"type": "string",
|
|
18
|
-
"enum": ["narrow", "
|
|
19
|
-
"default": "
|
|
18
|
+
"enum": ["narrow", "default", "wide", "none"],
|
|
19
|
+
"default": "default"
|
|
20
20
|
},
|
|
21
21
|
"mobileLayout": {
|
|
22
22
|
"title": "Mobile Layout",
|
|
@@ -29,13 +29,20 @@
|
|
|
29
29
|
"title": "Vertical Alignment",
|
|
30
30
|
"type": "string",
|
|
31
31
|
"description": "Aligns the content vertically within the sections",
|
|
32
|
-
"enum": ["top", "center", "bottom"],
|
|
32
|
+
"enum": ["top", "center", "bottom", "sticky"],
|
|
33
33
|
"default": "top"
|
|
34
34
|
},
|
|
35
|
-
"
|
|
36
|
-
"title": "Gutter",
|
|
35
|
+
"verticalGutter": {
|
|
36
|
+
"title": "Vertical Gutter",
|
|
37
|
+
"description": "Sets the vertical space between the content of the split layout",
|
|
38
|
+
"type": "string",
|
|
39
|
+
"enum": ["large", "default", "small", "none"],
|
|
40
|
+
"default": "default"
|
|
41
|
+
},
|
|
42
|
+
"horizontalGutter": {
|
|
43
|
+
"title": "Horizontal Gutter",
|
|
44
|
+
"description": "Sets the horizontal space between the content of the split layout",
|
|
37
45
|
"type": "string",
|
|
38
|
-
"description": "Sets the space between the two halves of the split layout",
|
|
39
46
|
"enum": ["large", "default", "small", "none"],
|
|
40
47
|
"default": "default"
|
|
41
48
|
},
|
|
@@ -13,7 +13,7 @@ import { FeaturesProps } from "../../FeaturesProps-a9041d97.js";
|
|
|
13
13
|
import { GalleryProps } from "../../GalleryProps-76e7de44.js";
|
|
14
14
|
import { HeroProps } from "../../HeroProps-40f6c7f5.js";
|
|
15
15
|
import { HtmlProps } from "../../HtmlProps-9d091769.js";
|
|
16
|
-
import { ImageStoryProps } from "../../ImageStoryProps-
|
|
16
|
+
import { ImageStoryProps } from "../../ImageStoryProps-00ddee3a.js";
|
|
17
17
|
import { ImageTextProps } from "../../ImageTextProps-9286cca4.js";
|
|
18
18
|
import { LogosProps } from "../../LogosProps-f9474fe2.js";
|
|
19
19
|
import { MosaicProps } from "../../MosaicProps-d52c7151.js";
|
|
@@ -42,7 +42,7 @@ type ContentGutter = "large" | "default" | "small" | "none";
|
|
|
42
42
|
/**
|
|
43
43
|
* Sets the minimum width of the main section
|
|
44
44
|
*/
|
|
45
|
-
type MinimumWidth = "narrow" | "wide";
|
|
45
|
+
type MinimumWidth = "narrow" | "default" | "wide";
|
|
46
46
|
/**
|
|
47
47
|
* Size of gutter to use
|
|
48
48
|
*/
|
|
@@ -50,7 +50,7 @@ type Gutter = "large" | "default" | "small" | "none";
|
|
|
50
50
|
/**
|
|
51
51
|
* Sets the minimum width of the main section
|
|
52
52
|
*/
|
|
53
|
-
type MinimumWidth1 = "narrow" | "wide";
|
|
53
|
+
type MinimumWidth1 = "narrow" | "default" | "wide";
|
|
54
54
|
/**
|
|
55
55
|
* Determines the order of sections on mobile devices
|
|
56
56
|
*/
|
|
@@ -1,18 +1,20 @@
|
|
|
1
1
|
.l-split-weighted {
|
|
2
|
-
--dsa-split-weighted--sticky-margin: var(--ks-spacing-stack-
|
|
2
|
+
--dsa-split-weighted--sticky-margin: var(--ks-spacing-stack-xl);
|
|
3
3
|
--dsa-split-weighted--v-gutter_default: var(--ks-spacing-stack-m);
|
|
4
4
|
--dsa-split-weighted--v-gutter_small: var(--ks-spacing-stack-l);
|
|
5
5
|
--dsa-split-weighted--v-gutter_large: var(--dsa-content--vertical-spacing);
|
|
6
6
|
--dsa-split-weighted--h-gutter_default: var(--ks-spacing-inline-l);
|
|
7
7
|
--dsa-split-weighted--h-gutter_small: var(--ks-spacing-inline-m);
|
|
8
8
|
--dsa-split-weighted--h-gutter_large: var(--ks-spacing-xxl);
|
|
9
|
-
--dsa-split-weighted__main--flex-
|
|
10
|
-
--dsa-split-weighted__main--flex-
|
|
9
|
+
--dsa-split-weighted__main--flex-basis_default: var(--dsa-tile--width_large);
|
|
10
|
+
--dsa-split-weighted__main--flex-basis_narrow: var(--dsa-tile--width_medium);
|
|
11
|
+
--dsa-split-weighted__main--flex-basis_wide: var(--dsa-tile--width_largest);
|
|
11
12
|
--dsa-split-weighted__main--gutter_default: var(--ks-spacing-stack-l);
|
|
12
13
|
--dsa-split-weighted__main--gutter_small: var(--ks-spacing-stack-s);
|
|
13
14
|
--dsa-split-weighted__main--gutter_large: var(--dsa-content--vertical-spacing);
|
|
14
|
-
--dsa-split-weighted__context--flex-basis_narrow: var(--dsa-tile--width_small);
|
|
15
15
|
--dsa-split-weighted__context--flex-basis_default: var(--dsa-tile--width_medium);
|
|
16
|
+
--dsa-split-weighted__context--flex-basis_narrow: var(--dsa-tile--width_small);
|
|
17
|
+
--dsa-split-weighted__context--flex-basis_wide: var(--dsa-tile--width_large);
|
|
16
18
|
--dsa-split-weighted__context--gutter_default: var(--ks-spacing-stack-s);
|
|
17
19
|
--dsa-split-weighted__context--gutter_small: var(--ks-spacing-stack-xs);
|
|
18
20
|
--dsa-split-weighted__context--gutter_large: var(--ks-spacing-stack-m);
|
|
@@ -30,7 +32,7 @@
|
|
|
30
32
|
}
|
|
31
33
|
.l-split-weighted--sticky .l-split-weighted__sticky-container {
|
|
32
34
|
position: sticky;
|
|
33
|
-
top: var(--dsa-split-weighted--sticky-margin, var(--ks-spacing-stack-
|
|
35
|
+
top: var(--dsa-split-weighted--sticky-margin, var(--ks-spacing-stack-xl));
|
|
34
36
|
height: fit-content;
|
|
35
37
|
}
|
|
36
38
|
.l-split-weighted--desktop-context-first {
|
|
@@ -68,10 +70,13 @@
|
|
|
68
70
|
flex-basis: var(--dsa-split-weighted__main--flex-basis_default, calc(var(--dsa-content--width_default) * 1));
|
|
69
71
|
flex-grow: 1000;
|
|
70
72
|
flex-shrink: 1;
|
|
71
|
-
gap: var(--dsa-split-weighted__main--gutter_default, var(--
|
|
73
|
+
gap: var(--dsa-split-weighted__main--gutter_default, var(--dsa-content--width_narrow));
|
|
72
74
|
}
|
|
73
75
|
.l-split-weighted__main--width-narrow {
|
|
74
|
-
flex-basis: var(--dsa-split-weighted__main--flex-basis_narrow,
|
|
76
|
+
flex-basis: var(--dsa-split-weighted__main--flex-basis_narrow, var(--dsa-tile--width_large));
|
|
77
|
+
}
|
|
78
|
+
.l-split-weighted__main--width-wide {
|
|
79
|
+
flex-basis: var(--dsa-split-weighted__main--flex-basis_wide, var(--dsa-content--width_default));
|
|
75
80
|
}
|
|
76
81
|
.l-split-weighted__main--gutter-small {
|
|
77
82
|
gap: var(--dsa-split-weighted__main--gutter_small, var(--ks-spacing-stack-s));
|
|
@@ -83,13 +88,16 @@
|
|
|
83
88
|
gap: 0;
|
|
84
89
|
}
|
|
85
90
|
.l-split-weighted__context {
|
|
86
|
-
flex-basis: var(--dsa-split-weighted__context--flex-basis_default, var(--dsa-tile--
|
|
91
|
+
flex-basis: var(--dsa-split-weighted__context--flex-basis_default, var(--dsa-tile--width_medium));
|
|
87
92
|
flex-grow: 1;
|
|
88
93
|
gap: var(--dsa-split-weighted__context--gutter_default, var(--ks-spacing-stack-s));
|
|
89
94
|
}
|
|
90
95
|
.l-split-weighted__context--width-narrow {
|
|
91
96
|
flex-basis: var(--dsa-split-weighted__context--flex-basis_narrow, var(--dsa-tile--width_small));
|
|
92
97
|
}
|
|
98
|
+
.l-split-weighted__context--width-wide {
|
|
99
|
+
flex-basis: var(--dsa-split-weighted__context--flex-basis_wide, var(--dsa-tile--width_large));
|
|
100
|
+
}
|
|
93
101
|
.l-split-weighted__context--gutter-small {
|
|
94
102
|
gap: var(--dsa-split-weighted__context--gutter_small, var(--ks-spacing-stack-xs));
|
|
95
103
|
}
|
|
@@ -56,6 +56,7 @@
|
|
|
56
56
|
"type": "string",
|
|
57
57
|
"enum": [
|
|
58
58
|
"narrow",
|
|
59
|
+
"default",
|
|
59
60
|
"wide"
|
|
60
61
|
],
|
|
61
62
|
"default": "wide"
|
|
@@ -85,9 +86,10 @@
|
|
|
85
86
|
"type": "string",
|
|
86
87
|
"enum": [
|
|
87
88
|
"narrow",
|
|
89
|
+
"default",
|
|
88
90
|
"wide"
|
|
89
91
|
],
|
|
90
|
-
"default": "
|
|
92
|
+
"default": "default"
|
|
91
93
|
}
|
|
92
94
|
},
|
|
93
95
|
"additionalProperties": false
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"title": "Minimum Width",
|
|
40
40
|
"description": "Sets the minimum width of the main section",
|
|
41
41
|
"type": "string",
|
|
42
|
-
"enum": ["narrow", "wide"],
|
|
42
|
+
"enum": ["narrow", "default", "wide"],
|
|
43
43
|
"default": "wide"
|
|
44
44
|
}
|
|
45
45
|
}
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
"title": "Minimum Width",
|
|
60
60
|
"description": "Sets the minimum width of the main section",
|
|
61
61
|
"type": "string",
|
|
62
|
-
"enum": ["narrow", "wide"],
|
|
63
|
-
"default": "
|
|
62
|
+
"enum": ["narrow", "default", "wide"],
|
|
63
|
+
"default": "default"
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
66
|
},
|
package/dist/tokens/themes.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Wed, 02 Jul 2025
|
|
3
|
+
* Generated on Wed, 02 Jul 2025 12:38:36 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 Wed, 02 Jul 2025
|
|
2730
|
+
* Generated on Wed, 02 Jul 2025 12:38:41 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 Wed, 02 Jul 2025
|
|
5461
|
+
* Generated on Wed, 02 Jul 2025 12:38:39 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 Wed, 02 Jul 2025
|
|
8462
|
+
* Generated on Wed, 02 Jul 2025 12:38:43 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
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|