@kickstartds/ds-agency-premium 1.5.28 → 1.6.0--canary.18.1017.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.
@@ -28,6 +28,10 @@ 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;
31
35
  /**
32
36
  * Time to read for the blog post
33
37
  */
@@ -63,6 +67,7 @@ interface BlogTeaserProps {
63
67
  */
64
68
  interface Link {
65
69
  url: URL;
70
+ label?: Label;
66
71
  }
67
72
  /**
68
73
  * The author of the blog post
@@ -72,4 +77,4 @@ interface Author {
72
77
  title?: Title;
73
78
  image?: Image1;
74
79
  }
75
- export { Date, Tags, Headline, TeaserText, Image, URL, ReadingTime, Name, Title, Image1, BlogTeaserProps, Link, Author };
80
+ export { Date, Tags, Headline, TeaserText, Image, URL, Label, ReadingTime, Name, Title, Image1, BlogTeaserProps, Link, Author };
@@ -3190,6 +3190,15 @@
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"
3193
3202
  }
3194
3203
  },
3195
3204
  "additionalProperties": false,
@@ -3346,6 +3355,15 @@
3346
3355
  "examples": [
3347
3356
  "https://example.com"
3348
3357
  ]
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"
3349
3367
  }
3350
3368
  },
3351
3369
  "additionalProperties": false,
@@ -3503,6 +3521,15 @@
3503
3521
  "examples": [
3504
3522
  "https://example.com"
3505
3523
  ]
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"
3506
3533
  }
3507
3534
  },
3508
3535
  "additionalProperties": false,
@@ -80,6 +80,15 @@
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"
83
92
  }
84
93
  },
85
94
  "additionalProperties": false,
@@ -52,6 +52,13 @@
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"
55
62
  }
56
63
  },
57
64
  "additionalProperties": false,
@@ -29,6 +29,7 @@ const BlogTeaserContextDefault = forwardRef(({ date, tags = [], headline, teaser
29
29
  items: teaserMetaItems,
30
30
  }, link: link
31
31
  ? {
32
+ label: link.label || "Read more",
32
33
  // @ts-expect-error
33
34
  target: link.url,
34
35
  }
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 19 Sep 2024 08:06:42 GMT
3
+ * Generated on Thu, 19 Sep 2024 13:22:05 GMT
4
4
  */
5
5
  :root, [ks-theme] {
6
6
  --ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
@@ -102,14 +102,15 @@
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 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 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/>",
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"
112
+ "url": "https://example.com",
113
+ "label": "Read more"
113
114
  },
114
115
  "readingTime": "5 min read",
115
116
  "author": {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 19 Sep 2024 08:06:44 GMT
3
+ * Generated on Thu, 19 Sep 2024 13:22:08 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, 19 Sep 2024 08:06:48 GMT
2730
+ * Generated on Thu, 19 Sep 2024 13:22:12 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, 19 Sep 2024 08:06:46 GMT
5461
+ * Generated on Thu, 19 Sep 2024 13:22:10 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, 19 Sep 2024 08:06:50 GMT
8462
+ * Generated on Thu, 19 Sep 2024 13:22: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);
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 19 Sep 2024 08:06:42 GMT
3
+ * Generated on Thu, 19 Sep 2024 13:22:05 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, 19 Sep 2024 08:06:42 GMT
3
+ * Generated on Thu, 19 Sep 2024 13:22:06 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.28",
3
+ "version": "1.6.0--canary.18.1017.0",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kickstartDS/ds-agency-premium#readme",
6
6
  "bugs": {
@@ -81,10 +81,11 @@
81
81
  "@auto-it/released": "^11.0.1",
82
82
  "@kickstartds/base": "^4.0.2",
83
83
  "@kickstartds/blog": "^4.0.2",
84
+ "@kickstartds/cambria": "^1.0.5",
84
85
  "@kickstartds/content": "^4.0.0",
85
86
  "@kickstartds/core": "^4.0.2",
86
87
  "@kickstartds/form": "^4.0.2",
87
- "@kickstartds/jsonschema-utils": "^3.0.13",
88
+ "@kickstartds/jsonschema-utils": "^3.4.1",
88
89
  "@kickstartds/jsonschema2types": "^1.1.37",
89
90
  "@kickstartds/storybook-addon-component-tokens": "^3.0.0",
90
91
  "@kickstartds/storybook-addon-html": "^1.0.0",
@@ -114,9 +115,11 @@
114
115
  "happy-dom": "^13.3.1",
115
116
  "husky": "^8.0.3",
116
117
  "jest-image-snapshot": "^6.4.0",
118
+ "json-schema-traverse": "^1.0.0",
117
119
  "kickstartds": "^3.0.0",
118
120
  "lazysizes": "^5.3.2",
119
121
  "npm-run-all": "^4.1.5",
122
+ "object-traversal": "^1.0.1",
120
123
  "patch-package": "^8.0.0",
121
124
  "playroom": "^0.34.1",
122
125
  "postcss": "^8.4.29",