@kickstartds/ds-agency-premium 1.6.71--canary.45.1833.0 → 1.6.71--canary.45.1840.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/BlogOverviewProps-9f207f1c.d.ts +1 -1
- package/dist/components/blog-post/index.d.ts +1 -1
- package/dist/components/blog-teaser/index.d.ts +1 -1
- package/dist/components/content-nav/content-nav.css +115 -0
- package/dist/components/content-nav/content-nav.schema.dereffed.json +61 -0
- package/dist/components/content-nav/content-nav.schema.json +52 -0
- package/dist/components/content-nav/index.d.ts +42 -0
- package/dist/components/content-nav/index.js +14 -0
- package/dist/components/features/features.css +1 -1
- package/dist/components/index/index.d.ts +1 -1
- package/dist/components/page-wrapper/tokens.css +1 -1
- package/dist/components/presets.json +53 -0
- package/dist/tokens/themes.css +4 -4
- package/dist/tokens/tokens.css +1 -1
- package/dist/tokens/tokens.js +1 -1
- package/package.json +1 -1
- /package/dist/{BlogPostProps-6b3cff22.d.ts → BlogPostProps-c760fd2a.d.ts} +0 -0
- /package/dist/{BlogTeaserProps-f5855e93.d.ts → BlogTeaserProps-d62a0a9a.d.ts} +0 -0
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* and run json-schema-to-typescript to regenerate this file.
|
|
5
5
|
*/
|
|
6
6
|
import { SectionProps } from "./SectionProps-21d04028.js";
|
|
7
|
-
import { BlogTeaserProps } from "./BlogTeaserProps-
|
|
7
|
+
import { BlogTeaserProps } from "./BlogTeaserProps-d62a0a9a.js";
|
|
8
8
|
import { CtaProps } from "./CtaProps-babe4ee6.js";
|
|
9
9
|
import { SeoProps } from "./SeoProps-f2d6dcaa.js";
|
|
10
10
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BlogPostProps } from "../../BlogPostProps-
|
|
1
|
+
import { BlogPostProps } from "../../BlogPostProps-c760fd2a.js";
|
|
2
2
|
import { FC, PropsWithChildren } from "react";
|
|
3
3
|
declare const BlogPost: FC<PropsWithChildren<BlogPostProps>>;
|
|
4
4
|
export type { BlogPostProps };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { HTMLAttributes } from "react";
|
|
3
|
-
import { BlogTeaserProps } from "../../BlogTeaserProps-
|
|
3
|
+
import { BlogTeaserProps } from "../../BlogTeaserProps-d62a0a9a.js";
|
|
4
4
|
declare const BlogTeaserContextDefault: import("react").ForwardRefExoticComponent<BlogTeaserProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
5
5
|
declare const BlogTeaserContext: import("react").Context<import("react").ForwardRefExoticComponent<BlogTeaserProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>>;
|
|
6
6
|
declare const BlogTeaser: import("react").ForwardRefExoticComponent<BlogTeaserProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
.dsa-content-nav {
|
|
2
|
+
--dsa-content-nav--padding: var(--ks-spacing-inset-m);
|
|
3
|
+
--dsa-content-nav--background-color: var(--ks-background-color-card);
|
|
4
|
+
--dsa-content-nav__topic--font: var(--dsa-topic--font);
|
|
5
|
+
--dsa-content-nav__topic--font-weight: var(--dsa-topic--font-weight);
|
|
6
|
+
--dsa-content-nav__topic--color: var(--dsa-topic--color);
|
|
7
|
+
--dsa-content-nav__topic--margin-top: var(--ks-spacing-stack-m);
|
|
8
|
+
--dsa-content-nav__image--aspect-ratio: 16 / 9;
|
|
9
|
+
--dsa-content-nav__image--border-radius: var(--ks-border-radius-card);
|
|
10
|
+
--dsa-content-nav__links--gap: var(--ks-spacing-stack-xs);
|
|
11
|
+
--dsa-content-nav__link--color: var(--ks-text-color-interface-interactive);
|
|
12
|
+
--dsa-content-nav__link--color_hover: var(--ks-text-color-interface-interactive-hover);
|
|
13
|
+
--dsa-content-nav__toggle-more--font: var(--ks-font-interface-m);
|
|
14
|
+
--dsa-content-nav__toggle-more--color: var(--dsa-link--color);
|
|
15
|
+
--dsa-content-nav__toggle-more--margin-top: var(--ks-spacing-stack-xs);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.dsa-content-nav {
|
|
19
|
+
max-width: 500px;
|
|
20
|
+
margin: auto;
|
|
21
|
+
margin-top: 50px;
|
|
22
|
+
border-radius: var(--ks-border-radius-card);
|
|
23
|
+
padding: var(--dsa-content-nav--padding, var(--ks-spacing-inset-m));
|
|
24
|
+
display: flex;
|
|
25
|
+
flex-direction: column;
|
|
26
|
+
background-color: var(--dsa-content-nav--background-color, var(--ks-background-color-card));
|
|
27
|
+
}
|
|
28
|
+
.dsa-content-nav__topic {
|
|
29
|
+
font: var(--dsa-content-nav__topic--font, var(--dsa-topic--font));
|
|
30
|
+
color: var(--dsa-content-nav__topic--color, var(--dsa-topic--color));
|
|
31
|
+
font-weight: var(--dsa-content-nav__topic--font-weight, var(--dsa-topic--font-weight));
|
|
32
|
+
margin-top: var(--dsa-content-nav__topic--margin-top, var(--ks-spacing-stack-m));
|
|
33
|
+
}
|
|
34
|
+
.dsa-content-nav__image img {
|
|
35
|
+
aspect-ratio: var(--dsa-content-nav__image--aspect-ratio, 16/9);
|
|
36
|
+
object-fit: cover;
|
|
37
|
+
border-radius: var(--dsa-content-nav__image--border-radius, var(--ks-border-radius-card));
|
|
38
|
+
}
|
|
39
|
+
.dsa-content-nav__links {
|
|
40
|
+
display: flex;
|
|
41
|
+
flex-direction: column;
|
|
42
|
+
gap: var(--dsa-content-nav__links--gap, var(--ks-spacing-stack-xs));
|
|
43
|
+
}
|
|
44
|
+
.dsa-content-nav__links--initial {
|
|
45
|
+
margin-top: var(--dsa-content-nav__links--margin-top, var(--ks-spacing-stack-s));
|
|
46
|
+
}
|
|
47
|
+
.dsa-content-nav__links--more {
|
|
48
|
+
margin-top: var(--dsa-content-nav__links--gap, var(--ks-spacing-stack-xs));
|
|
49
|
+
}
|
|
50
|
+
.dsa-content-nav__link {
|
|
51
|
+
--g-link--color: var(--dsa-content-nav__link--color, var(--ks-text-color-interface-interactive));
|
|
52
|
+
--g-link--color-hover: var(--dsa-content-nav__link--color_hover, var(--ks-text-color-interface-interactive-hover));
|
|
53
|
+
font: var(--ks-font-interface-m);
|
|
54
|
+
width: fit-content;
|
|
55
|
+
}
|
|
56
|
+
.dsa-content-nav__link--active {
|
|
57
|
+
font-weight: var(--ks-font-weight-bold);
|
|
58
|
+
color: var(--ks-color-text-active);
|
|
59
|
+
}
|
|
60
|
+
.dsa-content-nav__more-content {
|
|
61
|
+
display: grid;
|
|
62
|
+
grid-template-rows: 0fr;
|
|
63
|
+
transition: var(--ks-transition-collapse);
|
|
64
|
+
}
|
|
65
|
+
.dsa-content-nav__more-content .dsa-content-nav__links {
|
|
66
|
+
overflow: hidden;
|
|
67
|
+
}
|
|
68
|
+
.dsa-content-nav__more {
|
|
69
|
+
display: flex;
|
|
70
|
+
flex-direction: column;
|
|
71
|
+
}
|
|
72
|
+
.dsa-content-nav__more[open] .dsa-content-nav__more-content {
|
|
73
|
+
grid-template-rows: 1fr;
|
|
74
|
+
}
|
|
75
|
+
.dsa-content-nav__more[open] .dsa-content-nav__toggle-label--more {
|
|
76
|
+
display: none;
|
|
77
|
+
}
|
|
78
|
+
.dsa-content-nav__more[open] .dsa-content-nav__toggle-label--less {
|
|
79
|
+
display: block;
|
|
80
|
+
}
|
|
81
|
+
.dsa-content-nav__more[open] .icon {
|
|
82
|
+
transform: rotate(180deg);
|
|
83
|
+
}
|
|
84
|
+
.dsa-content-nav__toggle-more {
|
|
85
|
+
width: fit-content;
|
|
86
|
+
order: 2;
|
|
87
|
+
color: var(--dsa-content-nav__toggle-more--color, var(--dsa-link--color));
|
|
88
|
+
cursor: pointer;
|
|
89
|
+
font: var(--dsa-content-nav__toggle-more--font, var(--ks-font-interface-m));
|
|
90
|
+
display: flex;
|
|
91
|
+
align-items: center;
|
|
92
|
+
gap: calc(var(--ks-spacing-xxs) * 0.25);
|
|
93
|
+
transition: var(--ks-transition-hover);
|
|
94
|
+
margin-top: var(--dsa-content-nav__toggle-more--margin-top, var(--ks-spacing-stack-xs));
|
|
95
|
+
}
|
|
96
|
+
.dsa-content-nav__toggle-more:hover {
|
|
97
|
+
color: var(--dsa-link--color_hover);
|
|
98
|
+
}
|
|
99
|
+
.dsa-content-nav__toggle-more .icon {
|
|
100
|
+
transition: var(--ks-transition-collapse);
|
|
101
|
+
transform: translateY(0.05em);
|
|
102
|
+
font-size: inherit;
|
|
103
|
+
color: inherit;
|
|
104
|
+
width: 1.25em;
|
|
105
|
+
height: 1.25em;
|
|
106
|
+
}
|
|
107
|
+
.dsa-content-nav__toggle-label--more {
|
|
108
|
+
display: block;
|
|
109
|
+
}
|
|
110
|
+
.dsa-content-nav__toggle-label--less {
|
|
111
|
+
display: none;
|
|
112
|
+
}
|
|
113
|
+
.dsa-content-nav .c-button {
|
|
114
|
+
width: fit-content;
|
|
115
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "http://schema.mydesignsystem.com/content-nav.schema.json",
|
|
4
|
+
"title": "Content Nav",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"properties": {
|
|
7
|
+
"image": {
|
|
8
|
+
"type": "object",
|
|
9
|
+
"properties": {
|
|
10
|
+
"src": {
|
|
11
|
+
"type": "string",
|
|
12
|
+
"format": "uri",
|
|
13
|
+
"description": "URL of the image to display in the content nav."
|
|
14
|
+
},
|
|
15
|
+
"alt": {
|
|
16
|
+
"type": "string",
|
|
17
|
+
"description": "Alternative text for the image."
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"required": [
|
|
21
|
+
"src"
|
|
22
|
+
],
|
|
23
|
+
"additionalProperties": false
|
|
24
|
+
},
|
|
25
|
+
"topic": {
|
|
26
|
+
"type": "string",
|
|
27
|
+
"description": "The topic of the content being navigated."
|
|
28
|
+
},
|
|
29
|
+
"links": {
|
|
30
|
+
"type": "array",
|
|
31
|
+
"items": {
|
|
32
|
+
"type": "object",
|
|
33
|
+
"properties": {
|
|
34
|
+
"label": {
|
|
35
|
+
"type": "string",
|
|
36
|
+
"description": "The text label for the link."
|
|
37
|
+
},
|
|
38
|
+
"url": {
|
|
39
|
+
"type": "string",
|
|
40
|
+
"format": "uri",
|
|
41
|
+
"description": "The URL the link points to."
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"required": [
|
|
45
|
+
"label",
|
|
46
|
+
"url"
|
|
47
|
+
],
|
|
48
|
+
"additionalProperties": false
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"initiallyShown": {
|
|
52
|
+
"type": "number",
|
|
53
|
+
"default": 4,
|
|
54
|
+
"description": "Determines how many links are initially shown in the content nav. If there are more links, a 'Show More' button will be displayed."
|
|
55
|
+
},
|
|
56
|
+
"type": {
|
|
57
|
+
"const": "content-nav"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"additionalProperties": false
|
|
61
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "http://schema.mydesignsystem.com/content-nav.schema.json",
|
|
4
|
+
"title": "Content Nav",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"properties": {
|
|
7
|
+
"image": {
|
|
8
|
+
"type": "object",
|
|
9
|
+
"properties": {
|
|
10
|
+
"src": {
|
|
11
|
+
"type": "string",
|
|
12
|
+
"format": "uri",
|
|
13
|
+
"description": "URL of the image to display in the content nav."
|
|
14
|
+
},
|
|
15
|
+
"alt": {
|
|
16
|
+
"type": "string",
|
|
17
|
+
"description": "Alternative text for the image."
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"required": ["src"]
|
|
21
|
+
},
|
|
22
|
+
"topic": {
|
|
23
|
+
"type": "string",
|
|
24
|
+
"description": "The topic of the content being navigated."
|
|
25
|
+
},
|
|
26
|
+
"links": {
|
|
27
|
+
"type": "array",
|
|
28
|
+
"items": {
|
|
29
|
+
"type": "object",
|
|
30
|
+
"properties": {
|
|
31
|
+
"label": {
|
|
32
|
+
"type": "string",
|
|
33
|
+
"description": "The text label for the link."
|
|
34
|
+
},
|
|
35
|
+
"url": {
|
|
36
|
+
"type": "string",
|
|
37
|
+
"format": "uri",
|
|
38
|
+
"description": "The URL the link points to."
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"required": ["label", "url"],
|
|
42
|
+
"additionalProperties": false
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"initiallyShown": {
|
|
46
|
+
"type": "number",
|
|
47
|
+
"default": 4,
|
|
48
|
+
"description": "Determines how many links are initially shown in the content nav. If there are more links, a 'Show More' button will be displayed."
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"additionalProperties": false
|
|
52
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* This file was automatically generated by json-schema-to-typescript.
|
|
5
|
+
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
6
|
+
* and run json-schema-to-typescript to regenerate this file.
|
|
7
|
+
*/
|
|
8
|
+
interface ContentNavProps {
|
|
9
|
+
image?: {
|
|
10
|
+
/**
|
|
11
|
+
* URL of the image to display in the content nav.
|
|
12
|
+
*/
|
|
13
|
+
src: string;
|
|
14
|
+
/**
|
|
15
|
+
* Alternative text for the image.
|
|
16
|
+
*/
|
|
17
|
+
alt?: string;
|
|
18
|
+
};
|
|
19
|
+
/**
|
|
20
|
+
* The topic of the content being navigated.
|
|
21
|
+
*/
|
|
22
|
+
topic?: string;
|
|
23
|
+
links?: {
|
|
24
|
+
/**
|
|
25
|
+
* The text label for the link.
|
|
26
|
+
*/
|
|
27
|
+
label: string;
|
|
28
|
+
/**
|
|
29
|
+
* The URL the link points to.
|
|
30
|
+
*/
|
|
31
|
+
url: string;
|
|
32
|
+
}[];
|
|
33
|
+
/**
|
|
34
|
+
* Determines how many links are initially shown in the content nav. If there are more links, a 'Show More' button will be displayed.
|
|
35
|
+
*/
|
|
36
|
+
initiallyShown?: number;
|
|
37
|
+
}
|
|
38
|
+
declare const ContentNavContextDefault: import("react").ForwardRefExoticComponent<ContentNavProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
39
|
+
declare const ContentNavContext: import("react").Context<import("react").ForwardRefExoticComponent<ContentNavProps & import("react").RefAttributes<HTMLDivElement>>>;
|
|
40
|
+
declare const ContentNav: import("react").ForwardRefExoticComponent<ContentNavProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
41
|
+
export type { ContentNavProps };
|
|
42
|
+
export { ContentNavContextDefault, ContentNavContext, ContentNav };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import "./content-nav.css";
|
|
2
|
+
import { jsxs, jsx, Fragment } from 'react/jsx-runtime';
|
|
3
|
+
import { forwardRef, createContext, useContext } from 'react';
|
|
4
|
+
import { Icon } from '@kickstartds/base/lib/icon';
|
|
5
|
+
|
|
6
|
+
const ContentNavContextDefault = forwardRef(({ image, links, topic, initiallyShown }, ref) => (jsxs("div", { className: "dsa-content-nav", ref: ref, children: [image && (jsx("div", { className: "dsa-content-nav__image", children: jsx("img", { src: image.src, alt: image.alt }) })), topic && (jsx("div", { className: "dsa-content-nav__topic", children: jsx("span", { children: topic }) })), links && links.length > 0 && (jsxs(Fragment, { children: [jsx("div", { className: "dsa-content-nav__links dsa-content-nav__links--initial", children: links.slice(0, initiallyShown).map((link, index) => (jsx("a", { href: link.url, className: "dsa-content-nav__link", children: link.label }, index))) }), links.length > initiallyShown && (jsxs("details", { className: "dsa-content-nav__more", children: [jsxs("summary", { className: "dsa-content-nav__toggle-more", children: [jsx("span", { className: "dsa-content-nav__toggle-label--more", children: "Show more" }), jsx("span", { className: "dsa-content-nav__toggle-label--less", children: "Show less" }), jsx(Icon, { icon: "chevron-down" })] }), jsx("div", { className: "dsa-content-nav__more-content", children: jsx("div", { className: "dsa-content-nav__links dsa-content-nav__links--more", children: links.slice(initiallyShown).map((link, index) => (jsx("a", { href: link.url, className: "dsa-content-nav__link", children: link.label }, index))) }) })] }))] }))] })));
|
|
7
|
+
const ContentNavContext = createContext(ContentNavContextDefault);
|
|
8
|
+
const ContentNav = forwardRef((props, ref) => {
|
|
9
|
+
const Component = useContext(ContentNavContext);
|
|
10
|
+
return jsx(Component, { ...props, ref: ref });
|
|
11
|
+
});
|
|
12
|
+
ContentNav.displayName = "ContentNav";
|
|
13
|
+
|
|
14
|
+
export { ContentNav, ContentNavContext, ContentNavContextDefault };
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
}
|
|
107
107
|
.dsa-features .dsa-feature__title {
|
|
108
108
|
font: var(--dsa-feature__title--font, var(--ks-font-interface-m));
|
|
109
|
-
color: var(--dsa-feature__title--color, var(--
|
|
109
|
+
color: var(--dsa-feature__title--color, var(--dsa-topic--color));
|
|
110
110
|
font-family: var(--dsa-feature__title--font-family, var(--ks-font-family-display));
|
|
111
111
|
font-weight: var(--dsa-feature__title--font-weight, var(--ks-font-weight-semi-bold));
|
|
112
112
|
}
|
|
@@ -29,7 +29,7 @@ interface SettingsProps {
|
|
|
29
29
|
seo: SeoProps;
|
|
30
30
|
iconSprite?: IconSprite;
|
|
31
31
|
}
|
|
32
|
-
export * from "../../BlogPostProps-
|
|
32
|
+
export * from "../../BlogPostProps-c760fd2a.js";
|
|
33
33
|
export * from "../../BlogOverviewProps-9f207f1c.js";
|
|
34
34
|
export * from "../../PageProps-aa29c554.js";
|
|
35
35
|
export { IconSprite, SettingsProps };
|
|
@@ -1349,6 +1349,59 @@
|
|
|
1349
1349
|
},
|
|
1350
1350
|
"screenshot": "img/screenshots/components-contact--full-image-width.png"
|
|
1351
1351
|
},
|
|
1352
|
+
{
|
|
1353
|
+
"id": "industry-content-nav--default",
|
|
1354
|
+
"group": "Industry / Content Nav",
|
|
1355
|
+
"name": "Default",
|
|
1356
|
+
"code": "<ContentNav\n image={{\n alt: 'A group of people collaborating in an office setting',\n src: 'img/full-shot-different-people-working-together.png'\n }}\n initiallyShown={4}\n links={[\n {\n label: 'Market Insights',\n url: '#'\n },\n {\n label: 'Industry Trends',\n url: '#'\n },\n {\n label: 'Competitor Analysis',\n url: '#'\n },\n {\n label: 'Customer Feedback',\n url: '#'\n },\n {\n label: 'Sales Data',\n url: '#'\n },\n {\n label: 'Product Development',\n url: '#'\n },\n {\n label: 'Supply Chain Management',\n url: '#'\n },\n {\n label: 'Financial Performance',\n url: '#'\n },\n {\n label: 'Regulatory Compliance',\n url: '#'\n }\n ]}\n topic=\"Industry Intelligence\"\n/>",
|
|
1357
|
+
"args": {
|
|
1358
|
+
"initiallyShown": 4,
|
|
1359
|
+
"image": {
|
|
1360
|
+
"src": "img/full-shot-different-people-working-together.png",
|
|
1361
|
+
"alt": "A group of people collaborating in an office setting"
|
|
1362
|
+
},
|
|
1363
|
+
"topic": "Industry Intelligence",
|
|
1364
|
+
"links": [
|
|
1365
|
+
{
|
|
1366
|
+
"label": "Market Insights",
|
|
1367
|
+
"url": "#"
|
|
1368
|
+
},
|
|
1369
|
+
{
|
|
1370
|
+
"label": "Industry Trends",
|
|
1371
|
+
"url": "#"
|
|
1372
|
+
},
|
|
1373
|
+
{
|
|
1374
|
+
"label": "Competitor Analysis",
|
|
1375
|
+
"url": "#"
|
|
1376
|
+
},
|
|
1377
|
+
{
|
|
1378
|
+
"label": "Customer Feedback",
|
|
1379
|
+
"url": "#"
|
|
1380
|
+
},
|
|
1381
|
+
{
|
|
1382
|
+
"label": "Sales Data",
|
|
1383
|
+
"url": "#"
|
|
1384
|
+
},
|
|
1385
|
+
{
|
|
1386
|
+
"label": "Product Development",
|
|
1387
|
+
"url": "#"
|
|
1388
|
+
},
|
|
1389
|
+
{
|
|
1390
|
+
"label": "Supply Chain Management",
|
|
1391
|
+
"url": "#"
|
|
1392
|
+
},
|
|
1393
|
+
{
|
|
1394
|
+
"label": "Financial Performance",
|
|
1395
|
+
"url": "#"
|
|
1396
|
+
},
|
|
1397
|
+
{
|
|
1398
|
+
"label": "Regulatory Compliance",
|
|
1399
|
+
"url": "#"
|
|
1400
|
+
}
|
|
1401
|
+
]
|
|
1402
|
+
},
|
|
1403
|
+
"screenshot": "img/screenshots/industry-content-nav--default.png"
|
|
1404
|
+
},
|
|
1352
1405
|
{
|
|
1353
1406
|
"id": "components-cta--banner",
|
|
1354
1407
|
"group": "Components/Cta",
|
package/dist/tokens/themes.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Wed, 09 Jul 2025 06:40:40 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 Wed, 09 Jul 2025 06:40:44 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 Wed, 09 Jul 2025 06:40:42 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 Wed, 09 Jul 2025 06:40:46 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
|
File without changes
|
|
File without changes
|