@kickstartds/ds-agency-premium 1.2.26 → 1.2.28
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/{SectionProps-93230a76.d.ts → SectionProps-83d399b4.d.ts} +2 -2
- package/dist/{TestimonialsProps-72bb9288.d.ts → TestimonialsProps-f7211553.d.ts} +4 -4
- package/dist/components/blog-overview/index.d.ts +1 -1
- package/dist/components/blog-post/index.d.ts +1 -1
- package/dist/components/image-story/index.d.ts +1 -1
- package/dist/components/index/index.d.ts +3 -3
- package/dist/components/page/page.schema.dereffed.json +3 -6
- package/dist/components/page-wrapper/tokens.css +1 -1
- package/dist/components/section/index.d.ts +1 -1
- package/dist/components/section/section.schema.dereffed.json +3 -6
- package/dist/components/testimonials/index.d.ts +1 -1
- package/dist/components/testimonials/index.js +1 -1
- package/dist/components/testimonials/testimonials.schema.dereffed.json +3 -6
- package/dist/components/testimonials/testimonials.schema.json +3 -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/{BlogOverviewProps-f385fc47.d.ts → BlogOverviewProps-93230a76.d.ts} +0 -0
- /package/dist/{BlogPostProps-0910f130.d.ts → BlogPostProps-93230a76.d.ts} +0 -0
- /package/dist/{ImageStoryProps-24e0335c.d.ts → ImageStoryProps-03ff6d21.d.ts} +0 -0
|
@@ -8,14 +8,14 @@ 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-
|
|
11
|
+
import { ImageStoryProps } from "./ImageStoryProps-03ff6d21.js";
|
|
12
12
|
import { ImageTextProps } from "./ImageTextProps-9286cca4.js";
|
|
13
13
|
import { LogosProps } from "./LogosProps-58c84ccc.js";
|
|
14
14
|
import { MosaicProps } from "./MosaicProps-aacb9422.js";
|
|
15
15
|
import { SliderProps } from "./SliderProps-8cae490d.js";
|
|
16
16
|
import { StatsProps } from "./StatsProps-bf5ef578.js";
|
|
17
17
|
import { TeaserCardProps } from "./TeaserCardProps-b9c28e78.js";
|
|
18
|
-
import { TestimonialsProps } from "./TestimonialsProps-
|
|
18
|
+
import { TestimonialsProps } from "./TestimonialsProps-f7211553.js";
|
|
19
19
|
import { TextProps } from "./TextProps-a23170d2.js";
|
|
20
20
|
import { VideoCurtainProps } from "./VideoCurtainProps-6c625a69.js";
|
|
21
21
|
import { ButtonProps } from "./ButtonProps-03ff6d21.js";
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
*/
|
|
6
6
|
import { TestimonialProps } from "./TestimonialProps-94bdeac9.js";
|
|
7
7
|
/**
|
|
8
|
-
* The testimonial
|
|
8
|
+
* The testimonial layout
|
|
9
9
|
*/
|
|
10
|
-
type
|
|
10
|
+
type Layout = "slider" | "list" | "alternating";
|
|
11
11
|
/**
|
|
12
12
|
* Add testimonials featuring an image, a quote, a source and a rating
|
|
13
13
|
*/
|
|
@@ -16,7 +16,7 @@ type Testimonials = TestimonialProps[];
|
|
|
16
16
|
* Display testimonials with an optional image and rating
|
|
17
17
|
*/
|
|
18
18
|
interface TestimonialsProps {
|
|
19
|
-
layout?:
|
|
19
|
+
layout?: Layout;
|
|
20
20
|
testimonial?: Testimonials;
|
|
21
21
|
}
|
|
22
|
-
export {
|
|
22
|
+
export { Layout, Testimonials, TestimonialsProps };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { BlogOverviewProps } from "../../BlogOverviewProps-
|
|
2
|
+
import { BlogOverviewProps } from "../../BlogOverviewProps-93230a76.js";
|
|
3
3
|
declare const BlogOverview: ({ latest, more, }: BlogOverviewProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export { BlogOverview };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { BlogPostProps } from "../../BlogPostProps-
|
|
2
|
+
import { BlogPostProps } from "../../BlogPostProps-93230a76.js";
|
|
3
3
|
declare const BlogPost: ({ head, content, aside, cta }: BlogPostProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export { BlogPost };
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
5
5
|
* and run json-schema-to-typescript to regenerate this file.
|
|
6
6
|
*/
|
|
7
|
-
import { SectionProps } from "../../SectionProps-
|
|
7
|
+
import { SectionProps } from "../../SectionProps-83d399b4.js";
|
|
8
8
|
import { SeoProps } from "../../SeoProps-f2d6dcaa.js";
|
|
9
9
|
/* eslint-disable */
|
|
10
10
|
/**
|
|
@@ -45,6 +45,6 @@ interface SettingsProps {
|
|
|
45
45
|
*/
|
|
46
46
|
seo: SeoProps;
|
|
47
47
|
}
|
|
48
|
-
export * from "../../BlogPostProps-
|
|
49
|
-
export * from "../../BlogOverviewProps-
|
|
48
|
+
export * from "../../BlogPostProps-93230a76.js";
|
|
49
|
+
export * from "../../BlogOverviewProps-93230a76.js";
|
|
50
50
|
export { Sections, PageProps, SettingsProps };
|
|
@@ -1599,8 +1599,8 @@
|
|
|
1599
1599
|
"type": "object",
|
|
1600
1600
|
"properties": {
|
|
1601
1601
|
"layout": {
|
|
1602
|
-
"title": "
|
|
1603
|
-
"description": "The testimonial
|
|
1602
|
+
"title": "Layout",
|
|
1603
|
+
"description": "The testimonial layout",
|
|
1604
1604
|
"type": "string",
|
|
1605
1605
|
"enum": [
|
|
1606
1606
|
"slider",
|
|
@@ -1685,10 +1685,7 @@
|
|
|
1685
1685
|
"const": "testimonials"
|
|
1686
1686
|
}
|
|
1687
1687
|
},
|
|
1688
|
-
"additionalProperties": false
|
|
1689
|
-
"required": [
|
|
1690
|
-
"quote"
|
|
1691
|
-
]
|
|
1688
|
+
"additionalProperties": false
|
|
1692
1689
|
},
|
|
1693
1690
|
{
|
|
1694
1691
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { HTMLAttributes, FC, PropsWithChildren } from "react";
|
|
3
|
-
import { SectionProps } from "../../SectionProps-
|
|
3
|
+
import { SectionProps } from "../../SectionProps-83d399b4.js";
|
|
4
4
|
declare const Section: import("react").ForwardRefExoticComponent<SectionProps & Omit<HTMLAttributes<HTMLElement>, "style" | "content"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
5
5
|
declare const SectionProvider: FC<PropsWithChildren<any>>;
|
|
6
6
|
export { Section, SectionProvider };
|
|
@@ -1585,8 +1585,8 @@
|
|
|
1585
1585
|
"type": "object",
|
|
1586
1586
|
"properties": {
|
|
1587
1587
|
"layout": {
|
|
1588
|
-
"title": "
|
|
1589
|
-
"description": "The testimonial
|
|
1588
|
+
"title": "Layout",
|
|
1589
|
+
"description": "The testimonial layout",
|
|
1590
1590
|
"type": "string",
|
|
1591
1591
|
"enum": [
|
|
1592
1592
|
"slider",
|
|
@@ -1671,10 +1671,7 @@
|
|
|
1671
1671
|
"const": "testimonials"
|
|
1672
1672
|
}
|
|
1673
1673
|
},
|
|
1674
|
-
"additionalProperties": false
|
|
1675
|
-
"required": [
|
|
1676
|
-
"quote"
|
|
1677
|
-
]
|
|
1674
|
+
"additionalProperties": false
|
|
1678
1675
|
},
|
|
1679
1676
|
{
|
|
1680
1677
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { HTMLAttributes, FC, PropsWithChildren } from "react";
|
|
2
|
-
import { TestimonialsProps } from "../../TestimonialsProps-
|
|
2
|
+
import { TestimonialsProps } from "../../TestimonialsProps-f7211553.js";
|
|
3
3
|
import { SliderProps } from "../../SliderProps-8cae490d.js";
|
|
4
4
|
interface ConditionalSliderProps extends SliderProps {
|
|
5
5
|
layout: "slider" | "list" | "alternating";
|
|
@@ -14,7 +14,7 @@ const ConditionalSlider = ({ layout, children, arrows, nav, ...props }) => {
|
|
|
14
14
|
return (jsx("div", { className: "dsa-testimonials dsa-testimonials--list", ...props, children: children }));
|
|
15
15
|
}
|
|
16
16
|
};
|
|
17
|
-
const Testimonials = ({ testimonial, layout = "slider", ...props }) => {
|
|
17
|
+
const Testimonials = ({ testimonial = [], layout = "slider", ...props }) => {
|
|
18
18
|
return (jsx(ConditionalSlider, { layout: layout, arrows: true, nav: true, ...props, children: testimonial.map((testimonial, index) => (createElement(Testimonial, { ...testimonial, index: index, layout: layout, key: index }))) }));
|
|
19
19
|
};
|
|
20
20
|
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
"type": "object",
|
|
7
7
|
"properties": {
|
|
8
8
|
"layout": {
|
|
9
|
-
"title": "
|
|
10
|
-
"description": "The testimonial
|
|
9
|
+
"title": "Layout",
|
|
10
|
+
"description": "The testimonial layout",
|
|
11
11
|
"type": "string",
|
|
12
12
|
"enum": [
|
|
13
13
|
"slider",
|
|
@@ -92,8 +92,5 @@
|
|
|
92
92
|
"const": "testimonials"
|
|
93
93
|
}
|
|
94
94
|
},
|
|
95
|
-
"additionalProperties": false
|
|
96
|
-
"required": [
|
|
97
|
-
"quote"
|
|
98
|
-
]
|
|
95
|
+
"additionalProperties": false
|
|
99
96
|
}
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
"type": "object",
|
|
7
7
|
"properties": {
|
|
8
8
|
"layout": {
|
|
9
|
-
"title": "
|
|
10
|
-
"description": "The testimonial
|
|
9
|
+
"title": "Layout",
|
|
10
|
+
"description": "The testimonial layout",
|
|
11
11
|
"type": "string",
|
|
12
12
|
"enum": ["slider", "list", "alternating"],
|
|
13
13
|
"default": "slider"
|
|
@@ -21,6 +21,5 @@
|
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
},
|
|
24
|
-
"additionalProperties": false
|
|
25
|
-
"required": ["quote"]
|
|
24
|
+
"additionalProperties": false
|
|
26
25
|
}
|
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, 04 Mar 2024 11:00:39 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, 04 Mar 2024 11:00: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 Mon, 04 Mar 2024 11:00:41 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, 04 Mar 2024 11:00:47 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
|
|
File without changes
|