@kickstartds/ds-agency-premium 1.6.71--canary.2185.e0de4f1.0 → 1.6.71--canary.2191.038e73e.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/{FaqProps-ad618cd5.d.ts → FaqProps-78384db5.d.ts} +7 -12
- package/dist/SectionProps-2a23ef89.d.ts +1 -1
- package/dist/SplitEvenProps-789f8508.d.ts +1 -1
- package/dist/SplitWeightedProps-789f8508.d.ts +1 -1
- package/dist/components/blog-overview/blog-overview.schema.dereffed.json +10 -10
- package/dist/components/blog-post/blog-post.schema.dereffed.json +10 -10
- package/dist/components/blog-post/index.d.ts +1 -1
- package/dist/components/blog-teaser/index.d.ts +1 -1
- package/dist/components/downloads/downloads.css +0 -1
- package/dist/components/faq/faq.schema.dereffed.json +2 -2
- package/dist/components/faq/faq.schema.json +2 -1
- package/dist/components/faq/index.d.ts +24 -7
- package/dist/components/faq/index.js +1 -1
- package/dist/components/index/index.d.ts +1 -1
- package/dist/components/page/page.schema.dereffed.json +10 -10
- package/dist/components/page-wrapper/tokens.css +1 -1
- package/dist/components/section/section.schema.dereffed.json +10 -10
- package/dist/components/split-even/split-even.schema.dereffed.json +4 -4
- package/dist/components/split-weighted/split-weighted.schema.dereffed.json +4 -4
- 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-c760fd2a.d.ts → BlogPostProps-6b3cff22.d.ts} +0 -0
- /package/dist/{BlogTeaserProps-d62a0a9a.d.ts → BlogTeaserProps-f5855e93.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-2a23ef89.js";
|
|
7
|
-
import { BlogTeaserProps } from "./BlogTeaserProps-
|
|
7
|
+
import { BlogTeaserProps } from "./BlogTeaserProps-f5855e93.js";
|
|
8
8
|
import { CtaProps } from "./CtaProps-789f8508.js";
|
|
9
9
|
import { SeoProps } from "./SeoProps-f2d6dcaa.js";
|
|
10
10
|
/**
|
|
@@ -8,20 +8,11 @@
|
|
|
8
8
|
*
|
|
9
9
|
* @minItems 1
|
|
10
10
|
*/
|
|
11
|
-
type Questions = [
|
|
12
|
-
{
|
|
13
|
-
question: Question;
|
|
14
|
-
answer: Answer;
|
|
15
|
-
},
|
|
16
|
-
...{
|
|
17
|
-
question: Question;
|
|
18
|
-
answer: Answer;
|
|
19
|
-
}[]
|
|
20
|
-
];
|
|
11
|
+
type Questions = [Question, ...Question[]];
|
|
21
12
|
/**
|
|
22
13
|
* The question
|
|
23
14
|
*/
|
|
24
|
-
type
|
|
15
|
+
type Question1 = string;
|
|
25
16
|
/**
|
|
26
17
|
* The answer to the question
|
|
27
18
|
*/
|
|
@@ -32,4 +23,8 @@ type Answer = string;
|
|
|
32
23
|
interface FaqProps {
|
|
33
24
|
questions: Questions;
|
|
34
25
|
}
|
|
35
|
-
|
|
26
|
+
interface Question {
|
|
27
|
+
question: Question1;
|
|
28
|
+
answer?: Answer;
|
|
29
|
+
}
|
|
30
|
+
export { Questions, Question1, Answer, FaqProps, Question };
|
|
@@ -8,7 +8,7 @@ import { ContentNavProps } from "./ContentNavProps-0e282a9f.js";
|
|
|
8
8
|
import { CtaProps } from "./CtaProps-789f8508.js";
|
|
9
9
|
import { DividerProps } from "./DividerProps-2ef31901.js";
|
|
10
10
|
import { DownloadsProps } from "./DownloadsProps-a49a977e.js";
|
|
11
|
-
import { FaqProps } from "./FaqProps-
|
|
11
|
+
import { FaqProps } from "./FaqProps-78384db5.js";
|
|
12
12
|
import { FeaturesProps } from "./FeaturesProps-a9041d97.js";
|
|
13
13
|
import { GalleryProps } from "./GalleryProps-76e7de44.js";
|
|
14
14
|
import { HeroProps } from "./HeroProps-fec6b267.js";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
import { CtaProps } from "./CtaProps-789f8508.js";
|
|
7
7
|
import { DividerProps } from "./DividerProps-2ef31901.js";
|
|
8
|
-
import { FaqProps } from "./FaqProps-
|
|
8
|
+
import { FaqProps } from "./FaqProps-78384db5.js";
|
|
9
9
|
import { FeaturesProps } from "./FeaturesProps-a9041d97.js";
|
|
10
10
|
import { GalleryProps } from "./GalleryProps-76e7de44.js";
|
|
11
11
|
import { HeroProps } from "./HeroProps-fec6b267.js";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
import { CtaProps } from "./CtaProps-789f8508.js";
|
|
7
7
|
import { DividerProps } from "./DividerProps-2ef31901.js";
|
|
8
|
-
import { FaqProps } from "./FaqProps-
|
|
8
|
+
import { FaqProps } from "./FaqProps-78384db5.js";
|
|
9
9
|
import { FeaturesProps } from "./FeaturesProps-a9041d97.js";
|
|
10
10
|
import { GalleryProps } from "./GalleryProps-76e7de44.js";
|
|
11
11
|
import { HeroProps } from "./HeroProps-fec6b267.js";
|
|
@@ -713,6 +713,7 @@
|
|
|
713
713
|
"title": "Questions",
|
|
714
714
|
"description": "The questions and answers in the Faq section",
|
|
715
715
|
"items": {
|
|
716
|
+
"title": "Question",
|
|
716
717
|
"type": "object",
|
|
717
718
|
"properties": {
|
|
718
719
|
"question": {
|
|
@@ -736,8 +737,7 @@
|
|
|
736
737
|
},
|
|
737
738
|
"additionalProperties": false,
|
|
738
739
|
"required": [
|
|
739
|
-
"question"
|
|
740
|
-
"answer"
|
|
740
|
+
"question"
|
|
741
741
|
]
|
|
742
742
|
},
|
|
743
743
|
"minItems": 1
|
|
@@ -3165,6 +3165,7 @@
|
|
|
3165
3165
|
"title": "Questions",
|
|
3166
3166
|
"description": "The questions and answers in the Faq section",
|
|
3167
3167
|
"items": {
|
|
3168
|
+
"title": "Question",
|
|
3168
3169
|
"type": "object",
|
|
3169
3170
|
"properties": {
|
|
3170
3171
|
"question": {
|
|
@@ -3188,8 +3189,7 @@
|
|
|
3188
3189
|
},
|
|
3189
3190
|
"additionalProperties": false,
|
|
3190
3191
|
"required": [
|
|
3191
|
-
"question"
|
|
3192
|
-
"answer"
|
|
3192
|
+
"question"
|
|
3193
3193
|
]
|
|
3194
3194
|
},
|
|
3195
3195
|
"minItems": 1
|
|
@@ -6010,6 +6010,7 @@
|
|
|
6010
6010
|
"title": "Questions",
|
|
6011
6011
|
"description": "The questions and answers in the Faq section",
|
|
6012
6012
|
"items": {
|
|
6013
|
+
"title": "Question",
|
|
6013
6014
|
"type": "object",
|
|
6014
6015
|
"properties": {
|
|
6015
6016
|
"question": {
|
|
@@ -6033,8 +6034,7 @@
|
|
|
6033
6034
|
},
|
|
6034
6035
|
"additionalProperties": false,
|
|
6035
6036
|
"required": [
|
|
6036
|
-
"question"
|
|
6037
|
-
"answer"
|
|
6037
|
+
"question"
|
|
6038
6038
|
]
|
|
6039
6039
|
},
|
|
6040
6040
|
"minItems": 1
|
|
@@ -8989,6 +8989,7 @@
|
|
|
8989
8989
|
"title": "Questions",
|
|
8990
8990
|
"description": "The questions and answers in the Faq section",
|
|
8991
8991
|
"items": {
|
|
8992
|
+
"title": "Question",
|
|
8992
8993
|
"type": "object",
|
|
8993
8994
|
"properties": {
|
|
8994
8995
|
"question": {
|
|
@@ -9012,8 +9013,7 @@
|
|
|
9012
9013
|
},
|
|
9013
9014
|
"additionalProperties": false,
|
|
9014
9015
|
"required": [
|
|
9015
|
-
"question"
|
|
9016
|
-
"answer"
|
|
9016
|
+
"question"
|
|
9017
9017
|
]
|
|
9018
9018
|
},
|
|
9019
9019
|
"minItems": 1
|
|
@@ -11834,6 +11834,7 @@
|
|
|
11834
11834
|
"title": "Questions",
|
|
11835
11835
|
"description": "The questions and answers in the Faq section",
|
|
11836
11836
|
"items": {
|
|
11837
|
+
"title": "Question",
|
|
11837
11838
|
"type": "object",
|
|
11838
11839
|
"properties": {
|
|
11839
11840
|
"question": {
|
|
@@ -11857,8 +11858,7 @@
|
|
|
11857
11858
|
},
|
|
11858
11859
|
"additionalProperties": false,
|
|
11859
11860
|
"required": [
|
|
11860
|
-
"question"
|
|
11861
|
-
"answer"
|
|
11861
|
+
"question"
|
|
11862
11862
|
]
|
|
11863
11863
|
},
|
|
11864
11864
|
"minItems": 1
|
|
@@ -985,6 +985,7 @@
|
|
|
985
985
|
"title": "Questions",
|
|
986
986
|
"description": "The questions and answers in the Faq section",
|
|
987
987
|
"items": {
|
|
988
|
+
"title": "Question",
|
|
988
989
|
"type": "object",
|
|
989
990
|
"properties": {
|
|
990
991
|
"question": {
|
|
@@ -1008,8 +1009,7 @@
|
|
|
1008
1009
|
},
|
|
1009
1010
|
"additionalProperties": false,
|
|
1010
1011
|
"required": [
|
|
1011
|
-
"question"
|
|
1012
|
-
"answer"
|
|
1012
|
+
"question"
|
|
1013
1013
|
]
|
|
1014
1014
|
},
|
|
1015
1015
|
"minItems": 1
|
|
@@ -3437,6 +3437,7 @@
|
|
|
3437
3437
|
"title": "Questions",
|
|
3438
3438
|
"description": "The questions and answers in the Faq section",
|
|
3439
3439
|
"items": {
|
|
3440
|
+
"title": "Question",
|
|
3440
3441
|
"type": "object",
|
|
3441
3442
|
"properties": {
|
|
3442
3443
|
"question": {
|
|
@@ -3460,8 +3461,7 @@
|
|
|
3460
3461
|
},
|
|
3461
3462
|
"additionalProperties": false,
|
|
3462
3463
|
"required": [
|
|
3463
|
-
"question"
|
|
3464
|
-
"answer"
|
|
3464
|
+
"question"
|
|
3465
3465
|
]
|
|
3466
3466
|
},
|
|
3467
3467
|
"minItems": 1
|
|
@@ -6282,6 +6282,7 @@
|
|
|
6282
6282
|
"title": "Questions",
|
|
6283
6283
|
"description": "The questions and answers in the Faq section",
|
|
6284
6284
|
"items": {
|
|
6285
|
+
"title": "Question",
|
|
6285
6286
|
"type": "object",
|
|
6286
6287
|
"properties": {
|
|
6287
6288
|
"question": {
|
|
@@ -6305,8 +6306,7 @@
|
|
|
6305
6306
|
},
|
|
6306
6307
|
"additionalProperties": false,
|
|
6307
6308
|
"required": [
|
|
6308
|
-
"question"
|
|
6309
|
-
"answer"
|
|
6309
|
+
"question"
|
|
6310
6310
|
]
|
|
6311
6311
|
},
|
|
6312
6312
|
"minItems": 1
|
|
@@ -9261,6 +9261,7 @@
|
|
|
9261
9261
|
"title": "Questions",
|
|
9262
9262
|
"description": "The questions and answers in the Faq section",
|
|
9263
9263
|
"items": {
|
|
9264
|
+
"title": "Question",
|
|
9264
9265
|
"type": "object",
|
|
9265
9266
|
"properties": {
|
|
9266
9267
|
"question": {
|
|
@@ -9284,8 +9285,7 @@
|
|
|
9284
9285
|
},
|
|
9285
9286
|
"additionalProperties": false,
|
|
9286
9287
|
"required": [
|
|
9287
|
-
"question"
|
|
9288
|
-
"answer"
|
|
9288
|
+
"question"
|
|
9289
9289
|
]
|
|
9290
9290
|
},
|
|
9291
9291
|
"minItems": 1
|
|
@@ -12106,6 +12106,7 @@
|
|
|
12106
12106
|
"title": "Questions",
|
|
12107
12107
|
"description": "The questions and answers in the Faq section",
|
|
12108
12108
|
"items": {
|
|
12109
|
+
"title": "Question",
|
|
12109
12110
|
"type": "object",
|
|
12110
12111
|
"properties": {
|
|
12111
12112
|
"question": {
|
|
@@ -12129,8 +12130,7 @@
|
|
|
12129
12130
|
},
|
|
12130
12131
|
"additionalProperties": false,
|
|
12131
12132
|
"required": [
|
|
12132
|
-
"question"
|
|
12133
|
-
"answer"
|
|
12133
|
+
"question"
|
|
12134
12134
|
]
|
|
12135
12135
|
},
|
|
12136
12136
|
"minItems": 1
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BlogPostProps } from "../../BlogPostProps-
|
|
1
|
+
import { BlogPostProps } from "../../BlogPostProps-6b3cff22.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-f5855e93.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>>;
|
|
@@ -63,7 +63,6 @@
|
|
|
63
63
|
}
|
|
64
64
|
@media (min-width: 992px) {
|
|
65
65
|
.dsa-downloads .dsa-downloads-item:hover .dsa-downloads-item__button span {
|
|
66
|
-
background: linear-gradient(270deg, var(--dsa-downloads-item--background-color_hover, var(--ks-background-color-accent)) 80%, transparent);
|
|
67
66
|
opacity: 1;
|
|
68
67
|
transform: translateX(0%);
|
|
69
68
|
}
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"title": "Questions",
|
|
11
11
|
"description": "The questions and answers in the Faq section",
|
|
12
12
|
"items": {
|
|
13
|
+
"title": "Question",
|
|
13
14
|
"type": "object",
|
|
14
15
|
"properties": {
|
|
15
16
|
"question": {
|
|
@@ -33,8 +34,7 @@
|
|
|
33
34
|
},
|
|
34
35
|
"additionalProperties": false,
|
|
35
36
|
"required": [
|
|
36
|
-
"question"
|
|
37
|
-
"answer"
|
|
37
|
+
"question"
|
|
38
38
|
]
|
|
39
39
|
},
|
|
40
40
|
"minItems": 1
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"title": "Questions",
|
|
11
11
|
"description": "The questions and answers in the Faq section",
|
|
12
12
|
"items": {
|
|
13
|
+
"title": "Question",
|
|
13
14
|
"type": "object",
|
|
14
15
|
"properties": {
|
|
15
16
|
"question": {
|
|
@@ -28,7 +29,7 @@
|
|
|
28
29
|
}
|
|
29
30
|
},
|
|
30
31
|
"additionalProperties": false,
|
|
31
|
-
"required": ["question"
|
|
32
|
+
"required": ["question"]
|
|
32
33
|
},
|
|
33
34
|
"minItems": 1
|
|
34
35
|
}
|
|
@@ -1,8 +1,25 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { HTMLAttributes } from "react";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
import { ReactNode, HTMLAttributes } from "react";
|
|
3
|
+
import { Question } from "../../FaqProps-78384db5.js";
|
|
4
|
+
import { FaqProps as FaqSchemaProps } from "../../FaqProps-78384db5.js";
|
|
5
|
+
type FaqProps = Omit<FaqSchemaProps, "questions"> & HTMLAttributes<HTMLDivElement> & {
|
|
6
|
+
questions: ({
|
|
7
|
+
children?: ReactNode;
|
|
8
|
+
} & Question)[];
|
|
9
|
+
};
|
|
10
|
+
declare const FaqContextDefault: import("react").ForwardRefExoticComponent<Omit<FaqSchemaProps, "questions"> & HTMLAttributes<HTMLDivElement> & {
|
|
11
|
+
questions: ({
|
|
12
|
+
children?: ReactNode;
|
|
13
|
+
} & Question)[];
|
|
14
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
15
|
+
declare const FaqContext: import("react").Context<import("react").ForwardRefExoticComponent<Omit<FaqSchemaProps, "questions"> & HTMLAttributes<HTMLDivElement> & {
|
|
16
|
+
questions: ({
|
|
17
|
+
children?: ReactNode;
|
|
18
|
+
} & Question)[];
|
|
19
|
+
} & import("react").RefAttributes<HTMLDivElement>>>;
|
|
20
|
+
declare const Faq: import("react").ForwardRefExoticComponent<Omit<FaqSchemaProps, "questions"> & HTMLAttributes<HTMLDivElement> & {
|
|
21
|
+
questions: ({
|
|
22
|
+
children?: ReactNode;
|
|
23
|
+
} & Question)[];
|
|
24
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
25
|
+
export { FaqProps, FaqContextDefault, FaqContext, Faq };
|
|
@@ -8,7 +8,7 @@ const defaults = {
|
|
|
8
8
|
"questions": []
|
|
9
9
|
};
|
|
10
10
|
|
|
11
|
-
const FaqContextDefault = forwardRef(({ questions, ...rest }, ref) => (jsx("div", { ...rest, ref: ref, className: `dsa-faq`, children: questions.map((question, index) => (jsx(CollapsibleBox, { summary: question.question, text: question.answer }, index))) })));
|
|
11
|
+
const FaqContextDefault = forwardRef(({ questions, children, ...rest }, ref) => (jsx("div", { ...rest, ref: ref, className: `dsa-faq`, children: questions.map((question, index) => (jsx(CollapsibleBox, { summary: question.question, text: question.answer, children: question.children }, index))) })));
|
|
12
12
|
const FaqContext = createContext(FaqContextDefault);
|
|
13
13
|
const Faq = forwardRef((props, ref) => {
|
|
14
14
|
const Component = useContext(FaqContext);
|
|
@@ -29,7 +29,7 @@ interface SettingsProps {
|
|
|
29
29
|
seo: SeoProps;
|
|
30
30
|
iconSprite?: IconSprite;
|
|
31
31
|
}
|
|
32
|
-
export * from "../../BlogPostProps-
|
|
32
|
+
export * from "../../BlogPostProps-6b3cff22.js";
|
|
33
33
|
export * from "../../BlogOverviewProps-9f207f1c.js";
|
|
34
34
|
export * from "../../PageProps-aa29c554.js";
|
|
35
35
|
export { IconSprite, SettingsProps };
|
|
@@ -713,6 +713,7 @@
|
|
|
713
713
|
"title": "Questions",
|
|
714
714
|
"description": "The questions and answers in the Faq section",
|
|
715
715
|
"items": {
|
|
716
|
+
"title": "Question",
|
|
716
717
|
"type": "object",
|
|
717
718
|
"properties": {
|
|
718
719
|
"question": {
|
|
@@ -736,8 +737,7 @@
|
|
|
736
737
|
},
|
|
737
738
|
"additionalProperties": false,
|
|
738
739
|
"required": [
|
|
739
|
-
"question"
|
|
740
|
-
"answer"
|
|
740
|
+
"question"
|
|
741
741
|
]
|
|
742
742
|
},
|
|
743
743
|
"minItems": 1
|
|
@@ -3165,6 +3165,7 @@
|
|
|
3165
3165
|
"title": "Questions",
|
|
3166
3166
|
"description": "The questions and answers in the Faq section",
|
|
3167
3167
|
"items": {
|
|
3168
|
+
"title": "Question",
|
|
3168
3169
|
"type": "object",
|
|
3169
3170
|
"properties": {
|
|
3170
3171
|
"question": {
|
|
@@ -3188,8 +3189,7 @@
|
|
|
3188
3189
|
},
|
|
3189
3190
|
"additionalProperties": false,
|
|
3190
3191
|
"required": [
|
|
3191
|
-
"question"
|
|
3192
|
-
"answer"
|
|
3192
|
+
"question"
|
|
3193
3193
|
]
|
|
3194
3194
|
},
|
|
3195
3195
|
"minItems": 1
|
|
@@ -6010,6 +6010,7 @@
|
|
|
6010
6010
|
"title": "Questions",
|
|
6011
6011
|
"description": "The questions and answers in the Faq section",
|
|
6012
6012
|
"items": {
|
|
6013
|
+
"title": "Question",
|
|
6013
6014
|
"type": "object",
|
|
6014
6015
|
"properties": {
|
|
6015
6016
|
"question": {
|
|
@@ -6033,8 +6034,7 @@
|
|
|
6033
6034
|
},
|
|
6034
6035
|
"additionalProperties": false,
|
|
6035
6036
|
"required": [
|
|
6036
|
-
"question"
|
|
6037
|
-
"answer"
|
|
6037
|
+
"question"
|
|
6038
6038
|
]
|
|
6039
6039
|
},
|
|
6040
6040
|
"minItems": 1
|
|
@@ -8989,6 +8989,7 @@
|
|
|
8989
8989
|
"title": "Questions",
|
|
8990
8990
|
"description": "The questions and answers in the Faq section",
|
|
8991
8991
|
"items": {
|
|
8992
|
+
"title": "Question",
|
|
8992
8993
|
"type": "object",
|
|
8993
8994
|
"properties": {
|
|
8994
8995
|
"question": {
|
|
@@ -9012,8 +9013,7 @@
|
|
|
9012
9013
|
},
|
|
9013
9014
|
"additionalProperties": false,
|
|
9014
9015
|
"required": [
|
|
9015
|
-
"question"
|
|
9016
|
-
"answer"
|
|
9016
|
+
"question"
|
|
9017
9017
|
]
|
|
9018
9018
|
},
|
|
9019
9019
|
"minItems": 1
|
|
@@ -11834,6 +11834,7 @@
|
|
|
11834
11834
|
"title": "Questions",
|
|
11835
11835
|
"description": "The questions and answers in the Faq section",
|
|
11836
11836
|
"items": {
|
|
11837
|
+
"title": "Question",
|
|
11837
11838
|
"type": "object",
|
|
11838
11839
|
"properties": {
|
|
11839
11840
|
"question": {
|
|
@@ -11857,8 +11858,7 @@
|
|
|
11857
11858
|
},
|
|
11858
11859
|
"additionalProperties": false,
|
|
11859
11860
|
"required": [
|
|
11860
|
-
"question"
|
|
11861
|
-
"answer"
|
|
11861
|
+
"question"
|
|
11862
11862
|
]
|
|
11863
11863
|
},
|
|
11864
11864
|
"minItems": 1
|
|
@@ -699,6 +699,7 @@
|
|
|
699
699
|
"title": "Questions",
|
|
700
700
|
"description": "The questions and answers in the Faq section",
|
|
701
701
|
"items": {
|
|
702
|
+
"title": "Question",
|
|
702
703
|
"type": "object",
|
|
703
704
|
"properties": {
|
|
704
705
|
"question": {
|
|
@@ -722,8 +723,7 @@
|
|
|
722
723
|
},
|
|
723
724
|
"additionalProperties": false,
|
|
724
725
|
"required": [
|
|
725
|
-
"question"
|
|
726
|
-
"answer"
|
|
726
|
+
"question"
|
|
727
727
|
]
|
|
728
728
|
},
|
|
729
729
|
"minItems": 1
|
|
@@ -3151,6 +3151,7 @@
|
|
|
3151
3151
|
"title": "Questions",
|
|
3152
3152
|
"description": "The questions and answers in the Faq section",
|
|
3153
3153
|
"items": {
|
|
3154
|
+
"title": "Question",
|
|
3154
3155
|
"type": "object",
|
|
3155
3156
|
"properties": {
|
|
3156
3157
|
"question": {
|
|
@@ -3174,8 +3175,7 @@
|
|
|
3174
3175
|
},
|
|
3175
3176
|
"additionalProperties": false,
|
|
3176
3177
|
"required": [
|
|
3177
|
-
"question"
|
|
3178
|
-
"answer"
|
|
3178
|
+
"question"
|
|
3179
3179
|
]
|
|
3180
3180
|
},
|
|
3181
3181
|
"minItems": 1
|
|
@@ -5996,6 +5996,7 @@
|
|
|
5996
5996
|
"title": "Questions",
|
|
5997
5997
|
"description": "The questions and answers in the Faq section",
|
|
5998
5998
|
"items": {
|
|
5999
|
+
"title": "Question",
|
|
5999
6000
|
"type": "object",
|
|
6000
6001
|
"properties": {
|
|
6001
6002
|
"question": {
|
|
@@ -6019,8 +6020,7 @@
|
|
|
6019
6020
|
},
|
|
6020
6021
|
"additionalProperties": false,
|
|
6021
6022
|
"required": [
|
|
6022
|
-
"question"
|
|
6023
|
-
"answer"
|
|
6023
|
+
"question"
|
|
6024
6024
|
]
|
|
6025
6025
|
},
|
|
6026
6026
|
"minItems": 1
|
|
@@ -8975,6 +8975,7 @@
|
|
|
8975
8975
|
"title": "Questions",
|
|
8976
8976
|
"description": "The questions and answers in the Faq section",
|
|
8977
8977
|
"items": {
|
|
8978
|
+
"title": "Question",
|
|
8978
8979
|
"type": "object",
|
|
8979
8980
|
"properties": {
|
|
8980
8981
|
"question": {
|
|
@@ -8998,8 +8999,7 @@
|
|
|
8998
8999
|
},
|
|
8999
9000
|
"additionalProperties": false,
|
|
9000
9001
|
"required": [
|
|
9001
|
-
"question"
|
|
9002
|
-
"answer"
|
|
9002
|
+
"question"
|
|
9003
9003
|
]
|
|
9004
9004
|
},
|
|
9005
9005
|
"minItems": 1
|
|
@@ -11820,6 +11820,7 @@
|
|
|
11820
11820
|
"title": "Questions",
|
|
11821
11821
|
"description": "The questions and answers in the Faq section",
|
|
11822
11822
|
"items": {
|
|
11823
|
+
"title": "Question",
|
|
11823
11824
|
"type": "object",
|
|
11824
11825
|
"properties": {
|
|
11825
11826
|
"question": {
|
|
@@ -11843,8 +11844,7 @@
|
|
|
11843
11844
|
},
|
|
11844
11845
|
"additionalProperties": false,
|
|
11845
11846
|
"required": [
|
|
11846
|
-
"question"
|
|
11847
|
-
"answer"
|
|
11847
|
+
"question"
|
|
11848
11848
|
]
|
|
11849
11849
|
},
|
|
11850
11850
|
"minItems": 1
|
|
@@ -287,6 +287,7 @@
|
|
|
287
287
|
"title": "Questions",
|
|
288
288
|
"description": "The questions and answers in the Faq section",
|
|
289
289
|
"items": {
|
|
290
|
+
"title": "Question",
|
|
290
291
|
"type": "object",
|
|
291
292
|
"properties": {
|
|
292
293
|
"question": {
|
|
@@ -310,8 +311,7 @@
|
|
|
310
311
|
},
|
|
311
312
|
"additionalProperties": false,
|
|
312
313
|
"required": [
|
|
313
|
-
"question"
|
|
314
|
-
"answer"
|
|
314
|
+
"question"
|
|
315
315
|
]
|
|
316
316
|
},
|
|
317
317
|
"minItems": 1
|
|
@@ -3132,6 +3132,7 @@
|
|
|
3132
3132
|
"title": "Questions",
|
|
3133
3133
|
"description": "The questions and answers in the Faq section",
|
|
3134
3134
|
"items": {
|
|
3135
|
+
"title": "Question",
|
|
3135
3136
|
"type": "object",
|
|
3136
3137
|
"properties": {
|
|
3137
3138
|
"question": {
|
|
@@ -3155,8 +3156,7 @@
|
|
|
3155
3156
|
},
|
|
3156
3157
|
"additionalProperties": false,
|
|
3157
3158
|
"required": [
|
|
3158
|
-
"question"
|
|
3159
|
-
"answer"
|
|
3159
|
+
"question"
|
|
3160
3160
|
]
|
|
3161
3161
|
},
|
|
3162
3162
|
"minItems": 1
|
|
@@ -347,6 +347,7 @@
|
|
|
347
347
|
"title": "Questions",
|
|
348
348
|
"description": "The questions and answers in the Faq section",
|
|
349
349
|
"items": {
|
|
350
|
+
"title": "Question",
|
|
350
351
|
"type": "object",
|
|
351
352
|
"properties": {
|
|
352
353
|
"question": {
|
|
@@ -370,8 +371,7 @@
|
|
|
370
371
|
},
|
|
371
372
|
"additionalProperties": false,
|
|
372
373
|
"required": [
|
|
373
|
-
"question"
|
|
374
|
-
"answer"
|
|
374
|
+
"question"
|
|
375
375
|
]
|
|
376
376
|
},
|
|
377
377
|
"minItems": 1
|
|
@@ -3192,6 +3192,7 @@
|
|
|
3192
3192
|
"title": "Questions",
|
|
3193
3193
|
"description": "The questions and answers in the Faq section",
|
|
3194
3194
|
"items": {
|
|
3195
|
+
"title": "Question",
|
|
3195
3196
|
"type": "object",
|
|
3196
3197
|
"properties": {
|
|
3197
3198
|
"question": {
|
|
@@ -3215,8 +3216,7 @@
|
|
|
3215
3216
|
},
|
|
3216
3217
|
"additionalProperties": false,
|
|
3217
3218
|
"required": [
|
|
3218
|
-
"question"
|
|
3219
|
-
"answer"
|
|
3219
|
+
"question"
|
|
3220
3220
|
]
|
|
3221
3221
|
},
|
|
3222
3222
|
"minItems": 1
|
package/dist/tokens/themes.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Fri, 15 Aug 2025
|
|
3
|
+
* Generated on Fri, 15 Aug 2025 08:41:58 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 Fri, 15 Aug 2025
|
|
2730
|
+
* Generated on Fri, 15 Aug 2025 08:42:03 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 Fri, 15 Aug 2025
|
|
5461
|
+
* Generated on Fri, 15 Aug 2025 08:42:01 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 Fri, 15 Aug 2025
|
|
8462
|
+
* Generated on Fri, 15 Aug 2025 08:42:05 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
|