@kickstartds/ds-agency-premium 1.6.17 → 1.6.19

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.
@@ -1,6 +1,6 @@
1
- .l-container--post-teaser {
1
+ .l-container--blog-teaser {
2
2
  /* stylelint-disable-next-line property-no-unknown */
3
- container-name: post-teaser;
3
+ container-name: blog-teaser;
4
4
  }
5
5
 
6
6
  .dsa-blog-teaser {
@@ -17,9 +17,10 @@
17
17
  --dsa-blog-teaser__meta--font: var(--ks-spacing-stack-s);
18
18
  --dsa-blog-teaser__meta--color: var(--ks-text-color-interface);
19
19
  --dsa-blog-teaser__meta__author--font-weight: var(--ks-font-weight-semi-bold);
20
- --dsa-post-teaser__image--border-radius: var(--ks-border-radius-card);
20
+ --dsa-blog-teaser__avatar--size: 2em;
21
+ --dsa-blog-teaser__image--border-radius: var(--ks-border-radius-card);
21
22
  }
22
- @container post-teaser (min-width: 640px) {
23
+ @container blog-teaser (min-width: 640px) {
23
24
  .dsa-blog-teaser {
24
25
  --dsa-blog-teaser--gap: var(--ks-spacing-stack-s) var(--ks-spacing-inline-s);
25
26
  --dsa-blog-teaser__topic--font-size: var(--ks-font-size-copy-xl);
@@ -27,7 +28,7 @@
27
28
  --dsa-blog-teaser__tag-label--font: var(--ks-font-interface-s);
28
29
  }
29
30
  }
30
- @container post-teaser (min-width: 1000px) {
31
+ @container blog-teaser (min-width: 1000px) {
31
32
  .dsa-blog-teaser {
32
33
  --dsa-blog-teaser__topic--font-size: var(--ks-font-size-copy-xxl);
33
34
  }
@@ -66,6 +67,7 @@
66
67
  --c-post-meta_item--font: var(--dsa-blog-teaser__meta--font, var(--ks-font-interface-s));
67
68
  --c-post-meta_item--gap: 0.35em;
68
69
  --c-post-meta_author--color: var(--dsa-blog-teaser__meta--color, var(--c-post-meta_item--color));
70
+ --c-post-meta_author--avatar-size: var(--dsa-blog-teaser__avatar--size, 2em);
69
71
  --c-post-meta_author--gap: 0.35em;
70
72
  --c-post-meta_author--font-weight: var(
71
73
  --dsa-blog-teaser__meta__author--font-weight,
@@ -17,7 +17,7 @@ const BlogTeaserContextDefault = forwardRef(({ date, tags = [], headline, teaser
17
17
  icon: "time",
18
18
  text: readingTime,
19
19
  });
20
- return (jsx(Container, { name: "post-teaser", children: jsx(PostTeaserContextDefault, { ...rest, className: classnames(className, "dsa-blog-teaser"),
20
+ return (jsx(Container, { name: "blog-teaser", children: jsx(PostTeaserContextDefault, { ...rest, className: classnames(className, "dsa-blog-teaser"),
21
21
  // @ts-expect-error
22
22
  image: { src: image, alt: headline }, meta: {
23
23
  author: author
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 20 Nov 2024 15:01:16 GMT
3
+ * Generated on Thu, 21 Nov 2024 10:53:34 GMT
4
4
  */
5
5
  :root, [ks-theme] {
6
6
  --ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
@@ -4,7 +4,7 @@ const identifier = "dsa.section";
4
4
  class Section extends Component {
5
5
  constructor(element) {
6
6
  super(element);
7
- if (element.classList.contains("l-section--spotlight")) {
7
+ if (element.classList.contains("dsa-section--spotlight")) {
8
8
  import('./spotlight.client.js').then((mod) => {
9
9
  const cleanup = mod.initSpotlight(element);
10
10
  this.onDisconnect(cleanup);
@@ -167,7 +167,7 @@
167
167
  width: 100%;
168
168
  height: 100%;
169
169
  position: absolute;
170
- background-image: radial-gradient(var(--dsa-section__spotlight--size) circle, var(--dsa-section__spotlight--color) 0%, var(--dsa-section__spotlight--color) calc(100% - var(--dsa-section__spotlight--blur)), transparent 100%, transparent 100%);
170
+ background-image: radial-gradient(var(--dsa-section__spotlight--size) circle at var(--dsa-section__spotlight--left) var(--dsa-section__spotlight--top), var(--dsa-section__spotlight--color) 0%, var(--dsa-section__spotlight--color) calc(100% - var(--dsa-section__spotlight--blur)), transparent 100%, transparent 100%);
171
171
  }
172
172
  .l-section.dsa-section .l-section__content {
173
173
  --l-section_buttons--space-before: var(--dsa-section__buttons--space-before, var(--l-section--gutter));
package/dist/global.css CHANGED
@@ -330,9 +330,9 @@ h3 {
330
330
  }
331
331
  }
332
332
 
333
- .l-container--post-teaser {
333
+ .l-container--blog-teaser {
334
334
  /* stylelint-disable-next-line property-no-unknown */
335
- container-name: post-teaser;
335
+ container-name: blog-teaser;
336
336
  }
337
337
 
338
338
  .dsa-blog-teaser {
@@ -349,9 +349,10 @@ h3 {
349
349
  --dsa-blog-teaser__meta--font: var(--ks-spacing-stack-s);
350
350
  --dsa-blog-teaser__meta--color: var(--ks-text-color-interface);
351
351
  --dsa-blog-teaser__meta__author--font-weight: var(--ks-font-weight-semi-bold);
352
- --dsa-post-teaser__image--border-radius: var(--ks-border-radius-card);
352
+ --dsa-blog-teaser__avatar--size: 2em;
353
+ --dsa-blog-teaser__image--border-radius: var(--ks-border-radius-card);
353
354
  }
354
- @container post-teaser (min-width: 640px) {
355
+ @container blog-teaser (min-width: 640px) {
355
356
  .dsa-blog-teaser {
356
357
  --dsa-blog-teaser--gap: var(--ks-spacing-stack-s) var(--ks-spacing-inline-s);
357
358
  --dsa-blog-teaser__topic--font-size: var(--ks-font-size-copy-xl);
@@ -359,7 +360,7 @@ h3 {
359
360
  --dsa-blog-teaser__tag-label--font: var(--ks-font-interface-s);
360
361
  }
361
362
  }
362
- @container post-teaser (min-width: 1000px) {
363
+ @container blog-teaser (min-width: 1000px) {
363
364
  .dsa-blog-teaser {
364
365
  --dsa-blog-teaser__topic--font-size: var(--ks-font-size-copy-xxl);
365
366
  }
@@ -398,6 +399,7 @@ h3 {
398
399
  --c-post-meta_item--font: var(--dsa-blog-teaser__meta--font, var(--ks-font-interface-s));
399
400
  --c-post-meta_item--gap: 0.35em;
400
401
  --c-post-meta_author--color: var(--dsa-blog-teaser__meta--color, var(--c-post-meta_item--color));
402
+ --c-post-meta_author--avatar-size: var(--dsa-blog-teaser__avatar--size, 2em);
401
403
  --c-post-meta_author--gap: 0.35em;
402
404
  --c-post-meta_author--font-weight: var(
403
405
  --dsa-blog-teaser__meta__author--font-weight,
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 20 Nov 2024 15:01:19 GMT
3
+ * Generated on Thu, 21 Nov 2024 10:53:37 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, 20 Nov 2024 15:01:23 GMT
2730
+ * Generated on Thu, 21 Nov 2024 10:53: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, 20 Nov 2024 15:01:21 GMT
5461
+ * Generated on Thu, 21 Nov 2024 10:53: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, 20 Nov 2024 15:01:25 GMT
8462
+ * Generated on Thu, 21 Nov 2024 10:53: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);
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 20 Nov 2024 15:01:16 GMT
3
+ * Generated on Thu, 21 Nov 2024 10:53:34 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 Wed, 20 Nov 2024 15:01:17 GMT
3
+ * Generated on Thu, 21 Nov 2024 10:53:35 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.17",
3
+ "version": "1.6.19",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kickstartDS/ds-agency-premium#readme",
6
6
  "bugs": {