@kickstartds/ds-agency-premium 1.5.26 → 1.5.27

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.
@@ -28,10 +28,6 @@ type Image = string;
28
28
  * The blog entry URL to link
29
29
  */
30
30
  type URL = string;
31
- /**
32
- * The label to use for the link
33
- */
34
- type Label = string;
35
31
  /**
36
32
  * Time to read for the blog post
37
33
  */
@@ -67,7 +63,6 @@ interface BlogTeaserProps {
67
63
  */
68
64
  interface Link {
69
65
  url: URL;
70
- label?: Label;
71
66
  }
72
67
  /**
73
68
  * The author of the blog post
@@ -77,4 +72,4 @@ interface Author {
77
72
  title?: Title;
78
73
  image?: Image1;
79
74
  }
80
- export { Date, Tags, Headline, TeaserText, Image, URL, Label, ReadingTime, Name, Title, Image1, BlogTeaserProps, Link, Author };
75
+ export { Date, Tags, Headline, TeaserText, Image, URL, ReadingTime, Name, Title, Image1, BlogTeaserProps, Link, Author };
@@ -8,7 +8,7 @@ import { FaqProps } from "./FaqProps-ad618cd5.js";
8
8
  import { FeaturesProps } from "./FeaturesProps-b05859d6.js";
9
9
  import { GalleryProps } from "./GalleryProps-76e7de44.js";
10
10
  import { HeroProps } from "./HeroProps-cf82a16d.js";
11
- import { ImageStoryProps } from "./ImageStoryProps-e853e1e7.js";
11
+ import { ImageStoryProps } from "./ImageStoryProps-03ff6d21.js";
12
12
  import { ImageTextProps } from "./ImageTextProps-9286cca4.js";
13
13
  import { LogosProps } from "./LogosProps-f9474fe2.js";
14
14
  import { MosaicProps } from "./MosaicProps-d52c7151.js";
@@ -3190,15 +3190,6 @@
3190
3190
  "examples": [
3191
3191
  "https://example.com"
3192
3192
  ]
3193
- },
3194
- "label": {
3195
- "title": "Label",
3196
- "description": "The label to use for the link",
3197
- "type": "string",
3198
- "examples": [
3199
- "Read more"
3200
- ],
3201
- "default": "Read more"
3202
3193
  }
3203
3194
  },
3204
3195
  "additionalProperties": false,
@@ -3355,15 +3346,6 @@
3355
3346
  "examples": [
3356
3347
  "https://example.com"
3357
3348
  ]
3358
- },
3359
- "label": {
3360
- "title": "Label",
3361
- "description": "The label to use for the link",
3362
- "type": "string",
3363
- "examples": [
3364
- "Read more"
3365
- ],
3366
- "default": "Read more"
3367
3349
  }
3368
3350
  },
3369
3351
  "additionalProperties": false,
@@ -3521,15 +3503,6 @@
3521
3503
  "examples": [
3522
3504
  "https://example.com"
3523
3505
  ]
3524
- },
3525
- "label": {
3526
- "title": "Label",
3527
- "description": "The label to use for the link",
3528
- "type": "string",
3529
- "examples": [
3530
- "Read more"
3531
- ],
3532
- "default": "Read more"
3533
3506
  }
3534
3507
  },
3535
3508
  "additionalProperties": false,
@@ -1,4 +1,4 @@
1
- import { BlogOverviewProps } from "../../BlogOverviewProps-9f207f1c.js";
1
+ import { BlogOverviewProps } from "../../BlogOverviewProps-83d399b4.js";
2
2
  import { FC, PropsWithChildren } from "react";
3
3
  declare const BlogOverview: FC<PropsWithChildren<BlogOverviewProps>>;
4
4
  export { BlogOverview };
@@ -1,4 +1,4 @@
1
- import { BlogPostProps } from "../../BlogPostProps-d9decb7c.js";
1
+ import { BlogPostProps } from "../../BlogPostProps-83d399b4.js";
2
2
  import { FC, PropsWithChildren } from "react";
3
3
  declare const BlogPost: FC<PropsWithChildren<BlogPostProps>>;
4
4
  export { BlogPost };
@@ -80,15 +80,6 @@
80
80
  "examples": [
81
81
  "https://example.com"
82
82
  ]
83
- },
84
- "label": {
85
- "title": "Label",
86
- "description": "The label to use for the link",
87
- "type": "string",
88
- "examples": [
89
- "Read more"
90
- ],
91
- "default": "Read more"
92
83
  }
93
84
  },
94
85
  "additionalProperties": false,
@@ -52,13 +52,6 @@
52
52
  "type": "string",
53
53
  "format": "uri",
54
54
  "examples": ["https://example.com"]
55
- },
56
- "label": {
57
- "title": "Label",
58
- "description": "The label to use for the link",
59
- "type": "string",
60
- "examples": ["Read more"],
61
- "default": "Read more"
62
55
  }
63
56
  },
64
57
  "additionalProperties": false,
@@ -29,7 +29,6 @@ const BlogTeaserContextDefault = forwardRef(({ date, tags = [], headline, teaser
29
29
  items: teaserMetaItems,
30
30
  }, link: link
31
31
  ? {
32
- label: link.label || "Read more",
33
32
  // @ts-expect-error
34
33
  target: link.url,
35
34
  }
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { HTMLAttributes } from "react";
3
- import { ImageStoryProps } from "../../ImageStoryProps-e853e1e7.js";
3
+ import { ImageStoryProps } from "../../ImageStoryProps-03ff6d21.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>>;
@@ -24,7 +24,7 @@ interface SettingsProps {
24
24
  */
25
25
  seo: SeoProps;
26
26
  }
27
- export * from "../../BlogPostProps-d9decb7c.js";
28
- export * from "../../BlogOverviewProps-9f207f1c.js";
29
- export * from "../../PageProps-aa29c554.js";
27
+ export * from "../../BlogPostProps-83d399b4.js";
28
+ export * from "../../BlogOverviewProps-83d399b4.js";
29
+ export * from "../../PageProps-83d399b4.js";
30
30
  export { SettingsProps };
@@ -1,4 +1,4 @@
1
- import { PageProps } from "../../PageProps-aa29c554.js";
1
+ import { PageProps } from "../../PageProps-83d399b4.js";
2
2
  import { FC, PropsWithChildren } from "react";
3
3
  declare const Page: FC<PropsWithChildren<PageProps>>;
4
4
  export { Page };
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 10 Sep 2024 15:40:31 GMT
3
+ * Generated on Wed, 11 Sep 2024 11:08:24 GMT
4
4
  */
5
5
  :root, [ks-theme] {
6
6
  --ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
@@ -102,15 +102,14 @@
102
102
  "id": "blog-blog-teaser--default",
103
103
  "group": "Blog/ Blog Teaser",
104
104
  "name": "Default",
105
- "code": "<BlogTeaser\n author={{\n image: 'img/people/author-emily.png',\n name: 'Jane Smith',\n title: 'Senior AI Researcher'\n }}\n date=\"12/30/2022\"\n headline=\"The Future of AI\"\n image=\"img/close-up-young-business-team-working.png\"\n link={{\n label: 'Read more',\n url: 'https://example.com'\n }}\n readingTime=\"5 min read\"\n tags={[\n {\n entry: 'Technology'\n },\n {\n entry: 'AI'\n }\n ]}\n teaserText=\"Dive into the future of AI in this detailed blog post. Discover how technology is rapidly evolving, the impact of AI on various industries, and what to expect in the coming years. Learn about the latest advancements, challenges, and the potential solutions that AI brings to the table.\"\n/>",
105
+ "code": "<BlogTeaser\n author={{\n image: 'img/people/author-emily.png',\n name: 'Jane Smith',\n title: 'Senior AI Researcher'\n }}\n date=\"12/30/2022\"\n headline=\"The Future of AI\"\n image=\"img/close-up-young-business-team-working.png\"\n link={{\n url: 'https://example.com'\n }}\n readingTime=\"5 min read\"\n tags={[\n {\n entry: 'Technology'\n },\n {\n entry: 'AI'\n }\n ]}\n teaserText=\"Dive into the future of AI in this detailed blog post. Discover how technology is rapidly evolving, the impact of AI on various industries, and what to expect in the coming years. Learn about the latest advancements, challenges, and the potential solutions that AI brings to the table.\"\n/>",
106
106
  "args": {
107
107
  "date": "12/30/2022",
108
108
  "headline": "The Future of AI",
109
109
  "teaserText": "Dive into the future of AI in this detailed blog post. Discover how technology is rapidly evolving, the impact of AI on various industries, and what to expect in the coming years. Learn about the latest advancements, challenges, and the potential solutions that AI brings to the table.",
110
110
  "image": "img/close-up-young-business-team-working.png",
111
111
  "link": {
112
- "url": "https://example.com",
113
- "label": "Read more"
112
+ "url": "https://example.com"
114
113
  },
115
114
  "readingTime": "5 min read",
116
115
  "author": {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 10 Sep 2024 15:40:33 GMT
3
+ * Generated on Wed, 11 Sep 2024 11:08:27 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, 10 Sep 2024 15:40:37 GMT
2730
+ * Generated on Wed, 11 Sep 2024 11:08:31 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, 10 Sep 2024 15:40:35 GMT
5461
+ * Generated on Wed, 11 Sep 2024 11:08:29 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, 10 Sep 2024 15:40:39 GMT
8462
+ * Generated on Wed, 11 Sep 2024 11:08:33 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 Tue, 10 Sep 2024 15:40:31 GMT
3
+ * Generated on Wed, 11 Sep 2024 11:08:24 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 Tue, 10 Sep 2024 15:40:31 GMT
3
+ * Generated on Wed, 11 Sep 2024 11:08:25 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.5.26",
3
+ "version": "1.5.27",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kickstartDS/ds-agency-premium#readme",
6
6
  "bugs": {