@kickstartds/ds-agency-premium 1.6.9 → 1.6.10

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.
@@ -10,7 +10,7 @@ import { FeaturesProps } from "./FeaturesProps-e58616a5.js";
10
10
  import { GalleryProps } from "./GalleryProps-76e7de44.js";
11
11
  import { HeroProps } from "./HeroProps-cf82a16d.js";
12
12
  import { HtmlProps } from "./HtmlProps-8e95ed81.js";
13
- import { ImageStoryProps } from "./ImageStoryProps-03ff6d21.js";
13
+ import { ImageStoryProps } from "./ImageStoryProps-e853e1e7.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,4 +1,4 @@
1
- import { BlogOverviewProps } from "../../BlogOverviewProps-7a46a8ad.js";
1
+ import { BlogOverviewProps } from "../../BlogOverviewProps-9f207f1c.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-7a46a8ad.js";
1
+ import { BlogPostProps } from "../../BlogPostProps-6b3cff22.js";
2
2
  import { FC, PropsWithChildren } from "react";
3
3
  declare const BlogPost: FC<PropsWithChildren<BlogPostProps>>;
4
4
  export type { BlogPostProps };
@@ -1,4 +1,11 @@
1
+ .l-container--hero {
2
+ /* stylelint-disable-next-line property-no-unknown */
3
+ container-name: hero;
4
+ }
5
+
1
6
  .dsa-hero {
7
+ --dsa-hero--min-height: 18rem;
8
+ --dsa-hero--min-height_small: 13.2rem;
2
9
  --dsa-hero__headline--color: var(--dsa-headline--color);
3
10
  --dsa-hero__subheadline--color: var(--dsa-headline__subheadline--color);
4
11
  --dsa-hero_color-neutral__headline--color: var(--ks-text-color-default);
@@ -12,6 +19,24 @@
12
19
  --dsa-hero__textbox--background-color: var(--ks-color-bg-alpha-2);
13
20
  --dsa-hero__overlay--background: linear-gradient(0deg, var(--ks-background-color-default) 15%, transparent 50%);
14
21
  }
22
+ @container hero (min-width: 640px) {
23
+ .dsa-hero {
24
+ --dsa-hero--min-height: 21rem;
25
+ --dsa-hero--min-height_small: 13.35rem;
26
+ }
27
+ }
28
+ @container hero (min-width: 960px) {
29
+ .dsa-hero {
30
+ --dsa-hero--min-height: 31.5rem;
31
+ --dsa-hero--min-height_small: 15.8rem;
32
+ }
33
+ }
34
+ @container hero (min-width: 1024px) {
35
+ .dsa-hero {
36
+ --dsa-hero--min-height: 35rem;
37
+ --dsa-hero--min-height_small: 20rem;
38
+ }
39
+ }
15
40
 
16
41
  .l-container--visual {
17
42
  /* stylelint-disable-next-line property-no-unknown */
@@ -21,6 +46,7 @@
21
46
  .c-visual.dsa-hero {
22
47
  --c-visual_overlay--background-size: 100%;
23
48
  --c-visual_overlay--background: transparent;
49
+ min-height: var(--dsa-hero--min-height);
24
50
  }
25
51
  .c-visual.dsa-hero .c-visual__box {
26
52
  --c-visual_box--background: var(--dsa-hero__textbox--background-color, var(--ks-color-bg-alpha-2));
@@ -37,6 +63,9 @@
37
63
  --dsa-hero__headline--color: var(--dsa-hero_color-neutral__copy--color, var(--ks-text-color-default));
38
64
  --dsa-hero__subheadline--color: var(--dsa-hero_color-neutral__copy--color, var(--ks-text-color-default));
39
65
  }
66
+ .c-visual.dsa-hero.c-visual--small {
67
+ min-height: var(--dsa-hero--min-height_small);
68
+ }
40
69
  @container visual (min-width: 640px) {
41
70
  .c-visual.dsa-hero {
42
71
  --c-visual_overlay--background: radial-gradient(
@@ -14,7 +14,7 @@ const HeroContextDefault = forwardRef(({ headline, sub, height, text, highlightT
14
14
  // @ts-expect-error
15
15
  , {
16
16
  // @ts-expect-error
17
- value: ButtonGroup, children: jsx(Container, { name: "visual", children: jsx(VisualContextDefault, { ...rest, ref: ref, className: classnames(`dsa-hero dsa-hero--content-${textPosition}`, highlightText ? `dsa-hero--highlight-text` : "", colorNeutral ? `dsa-hero--color-neutral` : "", className), height: height, overlay: overlay, box: {
17
+ value: ButtonGroup, children: jsx(Container, { name: "hero", children: jsx(VisualContextDefault, { ...rest, ref: ref, className: classnames(`dsa-hero dsa-hero--content-${textPosition}`, highlightText ? `dsa-hero--highlight-text` : "", colorNeutral ? `dsa-hero--color-neutral` : "", className), height: height, overlay: overlay, box: {
18
18
  background: textbox === true ? "solid" : "transparent",
19
19
  enabled: true,
20
20
  vertical: textPosition === "below" ? "bottom" : "center",
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { HTMLAttributes } from "react";
3
- import { ImageStoryProps } from "../../ImageStoryProps-03ff6d21.js";
3
+ import { ImageStoryProps } from "../../ImageStoryProps-e853e1e7.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,7 +29,7 @@ interface SettingsProps {
29
29
  seo: SeoProps;
30
30
  iconSprite?: IconSprite;
31
31
  }
32
- export * from "../../BlogPostProps-7a46a8ad.js";
33
- export * from "../../BlogOverviewProps-7a46a8ad.js";
34
- export * from "../../PageProps-7a46a8ad.js";
32
+ export * from "../../BlogPostProps-6b3cff22.js";
33
+ export * from "../../BlogOverviewProps-9f207f1c.js";
34
+ export * from "../../PageProps-aa29c554.js";
35
35
  export { IconSprite, SettingsProps };
@@ -1,4 +1,4 @@
1
- import { PageProps } from "../../PageProps-7a46a8ad.js";
1
+ import { PageProps } from "../../PageProps-aa29c554.js";
2
2
  import { FC, PropsWithChildren } from "react";
3
3
  declare const Page: FC<PropsWithChildren<PageProps>>;
4
4
  export type { PageProps };
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 14 Nov 2024 12:36:01 GMT
3
+ * Generated on Mon, 18 Nov 2024 19:05:55 GMT
4
4
  */
5
5
  :root, [ks-theme] {
6
6
  --ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 14 Nov 2024 12:36:04 GMT
3
+ * Generated on Mon, 18 Nov 2024 19:05:58 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 Thu, 14 Nov 2024 12:36:08 GMT
2730
+ * Generated on Mon, 18 Nov 2024 19:06:02 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 Thu, 14 Nov 2024 12:36:06 GMT
5461
+ * Generated on Mon, 18 Nov 2024 19:06:00 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 Thu, 14 Nov 2024 12:36:10 GMT
8462
+ * Generated on Mon, 18 Nov 2024 19:06:03 GMT
8463
8463
  */
8464
8464
  :root [ks-theme=telekom] {
8465
8465
  --ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 14 Nov 2024 12:36:01 GMT
3
+ * Generated on Mon, 18 Nov 2024 19:05:55 GMT
4
4
  */
5
5
 
6
6
  :root, [ks-theme] {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 14 Nov 2024 12:36:02 GMT
3
+ * Generated on Mon, 18 Nov 2024 19:05:56 GMT
4
4
  */
5
5
 
6
6
  export const KsBackgroundColorAccentBase = "#230a2b";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kickstartds/ds-agency-premium",
3
- "version": "1.6.9",
3
+ "version": "1.6.10",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kickstartDS/ds-agency-premium#readme",
6
6
  "bugs": {