@kickstartds/ds-agency-premium 1.7.0--canary.46.1801.0 → 1.7.0--canary.46.1807.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/cms/hero.schema.json +51 -0
- package/dist/components/blog-post/index.d.ts +1 -1
- package/dist/components/hero/hero.schema.dereffed.json +28 -17
- package/dist/components/index/index.d.ts +1 -1
- package/dist/components/page-wrapper/tokens.css +1 -1
- package/dist/tokens/themes.css +4 -4
- package/dist/tokens/tokens.css +1 -1
- package/dist/tokens/tokens.js +1 -1
- package/package.json +4 -3
- /package/dist/{BlogPostProps-6b3cff22.d.ts → BlogPostProps-d9decb7c.d.ts} +0 -0
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "http://editor.mydesignsystem.com/hero.schema.json",
|
|
4
|
+
"title": "Hero",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"allOf": [
|
|
7
|
+
{
|
|
8
|
+
"type": "object",
|
|
9
|
+
"properties": {
|
|
10
|
+
"headline": {
|
|
11
|
+
"x-cms-hidden": false
|
|
12
|
+
},
|
|
13
|
+
"sub": {
|
|
14
|
+
"x-cms-hidden": false
|
|
15
|
+
},
|
|
16
|
+
"text": {
|
|
17
|
+
"x-cms-hidden": false
|
|
18
|
+
},
|
|
19
|
+
"highlightText": {
|
|
20
|
+
"x-cms-hidden": true
|
|
21
|
+
},
|
|
22
|
+
"colorNeutral": {
|
|
23
|
+
"x-cms-hidden": true
|
|
24
|
+
},
|
|
25
|
+
"height": {
|
|
26
|
+
"x-cms-hidden": true
|
|
27
|
+
},
|
|
28
|
+
"textbox": {
|
|
29
|
+
"x-cms-hidden": true
|
|
30
|
+
},
|
|
31
|
+
"buttons": {
|
|
32
|
+
"x-cms-hidden": false
|
|
33
|
+
},
|
|
34
|
+
"overlay": {
|
|
35
|
+
"x-cms-hidden": true
|
|
36
|
+
},
|
|
37
|
+
"image": {
|
|
38
|
+
"x-cms-hidden": false
|
|
39
|
+
},
|
|
40
|
+
"textPosition": {
|
|
41
|
+
"x-cms-hidden": true
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"additionalProperties": false
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"$ref": "http://schema.mydesignsystem.com/hero.schema.json"
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
"additionalProperties": false
|
|
51
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BlogPostProps } from "../../BlogPostProps-
|
|
1
|
+
import { BlogPostProps } from "../../BlogPostProps-d9decb7c.js";
|
|
2
2
|
import { FC, PropsWithChildren } from "react";
|
|
3
3
|
declare const BlogPost: FC<PropsWithChildren<BlogPostProps>>;
|
|
4
4
|
export type { BlogPostProps };
|
|
@@ -1,38 +1,47 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
-
"$id": "http://
|
|
3
|
+
"$id": "http://editor.mydesignsystem.com/hero.schema.json",
|
|
4
4
|
"title": "Hero",
|
|
5
5
|
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
6
7
|
"properties": {
|
|
8
|
+
"type": {
|
|
9
|
+
"const": "hero"
|
|
10
|
+
},
|
|
7
11
|
"headline": {
|
|
8
12
|
"title": "Headline",
|
|
9
13
|
"description": "Headline for the visual",
|
|
10
14
|
"type": "string",
|
|
11
|
-
"format": "markdown"
|
|
15
|
+
"format": "markdown",
|
|
16
|
+
"x-cms-hidden": false
|
|
12
17
|
},
|
|
13
18
|
"sub": {
|
|
14
19
|
"title": "Module Subheadline",
|
|
15
20
|
"description": "Subheadline below the module headline",
|
|
16
21
|
"type": "string",
|
|
17
|
-
"format": "markdown"
|
|
22
|
+
"format": "markdown",
|
|
23
|
+
"x-cms-hidden": false
|
|
18
24
|
},
|
|
19
25
|
"text": {
|
|
20
26
|
"title": "Module Text",
|
|
21
27
|
"description": "Info text for the module element",
|
|
22
28
|
"type": "string",
|
|
23
|
-
"format": "markdown"
|
|
29
|
+
"format": "markdown",
|
|
30
|
+
"x-cms-hidden": false
|
|
24
31
|
},
|
|
25
32
|
"highlightText": {
|
|
26
33
|
"type": "boolean",
|
|
27
34
|
"title": "Highlight Text",
|
|
28
35
|
"description": "Visually highlight the text",
|
|
29
|
-
"default": false
|
|
36
|
+
"default": false,
|
|
37
|
+
"x-cms-hidden": true
|
|
30
38
|
},
|
|
31
39
|
"colorNeutral": {
|
|
32
40
|
"title": "Color Neutral",
|
|
33
41
|
"description": "Make the text and buttons color neutral",
|
|
34
42
|
"default": false,
|
|
35
|
-
"type": "boolean"
|
|
43
|
+
"type": "boolean",
|
|
44
|
+
"x-cms-hidden": true
|
|
36
45
|
},
|
|
37
46
|
"height": {
|
|
38
47
|
"title": "Height",
|
|
@@ -43,13 +52,15 @@
|
|
|
43
52
|
"fullImage",
|
|
44
53
|
"fullScreen"
|
|
45
54
|
],
|
|
46
|
-
"default": "default"
|
|
55
|
+
"default": "default",
|
|
56
|
+
"x-cms-hidden": true
|
|
47
57
|
},
|
|
48
58
|
"textbox": {
|
|
49
59
|
"type": "boolean",
|
|
50
60
|
"title": "Textbox",
|
|
51
61
|
"default": true,
|
|
52
|
-
"description": "Toggle wether you want your text to be displayed within in box"
|
|
62
|
+
"description": "Toggle wether you want your text to be displayed within in box",
|
|
63
|
+
"x-cms-hidden": true
|
|
53
64
|
},
|
|
54
65
|
"buttons": {
|
|
55
66
|
"type": "array",
|
|
@@ -79,13 +90,15 @@
|
|
|
79
90
|
}
|
|
80
91
|
},
|
|
81
92
|
"additionalProperties": false
|
|
82
|
-
}
|
|
93
|
+
},
|
|
94
|
+
"x-cms-hidden": false
|
|
83
95
|
},
|
|
84
96
|
"overlay": {
|
|
85
97
|
"title": "Grid layer",
|
|
86
98
|
"description": "Enable grid layer",
|
|
87
99
|
"type": "boolean",
|
|
88
|
-
"default": false
|
|
100
|
+
"default": false,
|
|
101
|
+
"x-cms-hidden": true
|
|
89
102
|
},
|
|
90
103
|
"image": {
|
|
91
104
|
"title": "Background image",
|
|
@@ -148,7 +161,8 @@
|
|
|
148
161
|
"type": "string"
|
|
149
162
|
}
|
|
150
163
|
},
|
|
151
|
-
"additionalProperties": false
|
|
164
|
+
"additionalProperties": false,
|
|
165
|
+
"x-cms-hidden": false
|
|
152
166
|
},
|
|
153
167
|
"textPosition": {
|
|
154
168
|
"title": "Module aligment",
|
|
@@ -161,11 +175,8 @@
|
|
|
161
175
|
"corner"
|
|
162
176
|
],
|
|
163
177
|
"type": "string",
|
|
164
|
-
"default": "below"
|
|
165
|
-
|
|
166
|
-
"type": {
|
|
167
|
-
"const": "hero"
|
|
178
|
+
"default": "below",
|
|
179
|
+
"x-cms-hidden": true
|
|
168
180
|
}
|
|
169
|
-
}
|
|
170
|
-
"additionalProperties": false
|
|
181
|
+
}
|
|
171
182
|
}
|
|
@@ -29,7 +29,7 @@ interface SettingsProps {
|
|
|
29
29
|
seo: SeoProps;
|
|
30
30
|
iconSprite?: IconSprite;
|
|
31
31
|
}
|
|
32
|
-
export * from "../../BlogPostProps-
|
|
32
|
+
export * from "../../BlogPostProps-d9decb7c.js";
|
|
33
33
|
export * from "../../BlogOverviewProps-9f207f1c.js";
|
|
34
34
|
export * from "../../PageProps-aa29c554.js";
|
|
35
35
|
export { IconSprite, SettingsProps };
|
package/dist/tokens/themes.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Mon, 07 Jul 2025 10:39:14 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
|
|
2730
|
+
* Generated on Mon, 07 Jul 2025 10:39:18 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
|
|
5461
|
+
* Generated on Mon, 07 Jul 2025 10:39:16 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
|
|
8462
|
+
* Generated on Mon, 07 Jul 2025 10:39:20 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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kickstartds/ds-agency-premium",
|
|
3
|
-
"version": "1.7.0--canary.46.
|
|
3
|
+
"version": "1.7.0--canary.46.1807.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"homepage": "https://github.com/kickstartDS/ds-agency-premium#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
"import": "./dist/*.js"
|
|
30
30
|
},
|
|
31
31
|
"./*.json": "./dist/components/*.json",
|
|
32
|
+
"./cms/*.schema.json": "./dist/cms/*.schema.json",
|
|
32
33
|
"./*": {
|
|
33
34
|
"types": "./dist/components/*/index.d.ts",
|
|
34
35
|
"default": "./dist/components/*/index.js"
|
|
@@ -39,7 +40,7 @@
|
|
|
39
40
|
],
|
|
40
41
|
"scripts": {
|
|
41
42
|
"build-storybook": "yarn build-tokens && yarn schema && yarn token && storybook build",
|
|
42
|
-
"postbuild-storybook": "yarn presets && yarn playroom:build && mkdir -p dist/components && cp snippets.json dist/components/presets.json",
|
|
43
|
+
"postbuild-storybook": "yarn presets && yarn playroom:build && mkdir -p dist/components && cp snippets.json dist/components/presets.json && cp -r src/cms dist/",
|
|
43
44
|
"build-tokens-ds-agency": "kickstartDS tokens compile",
|
|
44
45
|
"build-tokens-business": "kickstartDS tokens compile --token-dictionary-path src/token-business/dictionary --sd-config-path sd.config-business.cjs",
|
|
45
46
|
"build-tokens-ngo": "kickstartDS tokens compile --token-dictionary-path src/token-ngo/dictionary --sd-config-path sd.config-ngo.cjs",
|
|
@@ -56,7 +57,7 @@
|
|
|
56
57
|
"prepare": "patch-package && husky install",
|
|
57
58
|
"prepublishOnly": "rm -rf dist && yarn build-tokens && yarn schema && rollup -c && yarn build-storybook",
|
|
58
59
|
"schema": "run-p schema:*",
|
|
59
|
-
"schema:dereference-schemas": "kickstartDS schema dereference",
|
|
60
|
+
"schema:dereference-schemas": "kickstartDS schema dereference --cms-path src/cms",
|
|
60
61
|
"schema:generate-props": "kickstartDS schema types",
|
|
61
62
|
"schema:layer-types": "kickstartDS schema layer",
|
|
62
63
|
"schema:create-defaults": "kickstartDS schema defaults",
|
|
File without changes
|