@kickstartds/ds-agency-premium 1.6.61 → 1.6.63

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.
@@ -17,7 +17,7 @@ import { MosaicProps } from "./MosaicProps-d52c7151.js";
17
17
  import { SliderProps } from "./SliderProps-93230a76.js";
18
18
  import { StatsProps } from "./StatsProps-bf5ef578.js";
19
19
  import { TeaserCardProps } from "./TeaserCardProps-b9c28e78.js";
20
- import { TestimonialsProps } from "./TestimonialsProps-f7211553.js";
20
+ import { TestimonialsProps } from "./TestimonialsProps-e344f597.js";
21
21
  import { TextProps } from "./TextProps-a23170d2.js";
22
22
  import { VideoCurtainProps } from "./VideoCurtainProps-6c625a69.js";
23
23
  import { ButtonProps } from "./ButtonProps-03ff6d21.js";
@@ -11,7 +11,7 @@ import { ImageTextProps } from "./ImageTextProps-9286cca4.js";
11
11
  import { LogosProps } from "./LogosProps-f9474fe2.js";
12
12
  import { StatsProps } from "./StatsProps-bf5ef578.js";
13
13
  import { TeaserCardProps } from "./TeaserCardProps-b9c28e78.js";
14
- import { TestimonialsProps } from "./TestimonialsProps-f7211553.js";
14
+ import { TestimonialsProps } from "./TestimonialsProps-e344f597.js";
15
15
  import { TextProps } from "./TextProps-a23170d2.js";
16
16
  /**
17
17
  * Automatically move to next slide after 4 seconds without user interaction
@@ -3,6 +3,14 @@
3
3
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
4
4
  * and run json-schema-to-typescript to regenerate this file.
5
5
  */
6
+ /**
7
+ * The testimonial layout
8
+ */
9
+ type Layout = "slider" | "list" | "alternating";
10
+ /**
11
+ * The style of the quote signs
12
+ */
13
+ type StyleOfTheQuoteSigns = "normal" | "large" | "none";
6
14
  /**
7
15
  * The testimonial quote
8
16
  */
@@ -27,10 +35,22 @@ type AltText = string;
27
35
  * The rating of the testimonial, from 1 to 5
28
36
  */
29
37
  type Rating = number;
38
+ /**
39
+ * Add testimonials featuring an image, a quote, a source and a rating
40
+ */
41
+ type Testimonials = Testimonial[];
42
+ /**
43
+ * Display testimonials with an optional image and rating
44
+ */
45
+ interface TestimonialsProps {
46
+ layout?: Layout;
47
+ quoteSigns?: StyleOfTheQuoteSigns;
48
+ testimonial?: Testimonials;
49
+ }
30
50
  /**
31
51
  * Testimonial entry of Testimonials component
32
52
  */
33
- interface TestimonialProps {
53
+ interface Testimonial {
34
54
  quote: Quote;
35
55
  name: Name;
36
56
  title?: Title;
@@ -40,4 +60,4 @@ interface TestimonialProps {
40
60
  };
41
61
  rating?: Rating;
42
62
  }
43
- export { Quote, Name, Title, Source, AltText, Rating, TestimonialProps };
63
+ export { Layout, StyleOfTheQuoteSigns, Quote, Name, Title, Source, AltText, Rating, Testimonials, TestimonialsProps, Testimonial };
@@ -2445,13 +2445,22 @@
2445
2445
  ],
2446
2446
  "default": "slider"
2447
2447
  },
2448
+ "quoteSigns": {
2449
+ "title": "Style of the quote signs",
2450
+ "description": "The style of the quote signs",
2451
+ "type": "string",
2452
+ "enum": [
2453
+ "normal",
2454
+ "large",
2455
+ "none"
2456
+ ],
2457
+ "default": "normal"
2458
+ },
2448
2459
  "testimonial": {
2449
2460
  "type": "array",
2450
2461
  "title": "Testimonials",
2451
2462
  "description": "Add testimonials featuring an image, a quote, a source and a rating",
2452
2463
  "items": {
2453
- "$schema": "http://json-schema.org/draft-07/schema#",
2454
- "$id": "http://schema.mydesignsystem.com/testimonial.schema.json",
2455
2464
  "title": "Testimonial",
2456
2465
  "description": "Testimonial entry of Testimonials component",
2457
2466
  "type": "object",
@@ -2504,9 +2513,6 @@
2504
2513
  "type": "integer",
2505
2514
  "minimum": 1,
2506
2515
  "maximum": 5
2507
- },
2508
- "type": {
2509
- "const": "testimonial"
2510
2516
  }
2511
2517
  },
2512
2518
  "additionalProperties": false,
@@ -2798,13 +2804,22 @@
2798
2804
  ],
2799
2805
  "default": "slider"
2800
2806
  },
2807
+ "quoteSigns": {
2808
+ "title": "Style of the quote signs",
2809
+ "description": "The style of the quote signs",
2810
+ "type": "string",
2811
+ "enum": [
2812
+ "normal",
2813
+ "large",
2814
+ "none"
2815
+ ],
2816
+ "default": "normal"
2817
+ },
2801
2818
  "testimonial": {
2802
2819
  "type": "array",
2803
2820
  "title": "Testimonials",
2804
2821
  "description": "Add testimonials featuring an image, a quote, a source and a rating",
2805
2822
  "items": {
2806
- "$schema": "http://json-schema.org/draft-07/schema#",
2807
- "$id": "http://schema.mydesignsystem.com/testimonial.schema.json",
2808
2823
  "title": "Testimonial",
2809
2824
  "description": "Testimonial entry of Testimonials component",
2810
2825
  "type": "object",
@@ -2857,9 +2872,6 @@
2857
2872
  "type": "integer",
2858
2873
  "minimum": 1,
2859
2874
  "maximum": 5
2860
- },
2861
- "type": {
2862
- "const": "testimonial"
2863
2875
  }
2864
2876
  },
2865
2877
  "additionalProperties": false,
@@ -2721,13 +2721,22 @@
2721
2721
  ],
2722
2722
  "default": "slider"
2723
2723
  },
2724
+ "quoteSigns": {
2725
+ "title": "Style of the quote signs",
2726
+ "description": "The style of the quote signs",
2727
+ "type": "string",
2728
+ "enum": [
2729
+ "normal",
2730
+ "large",
2731
+ "none"
2732
+ ],
2733
+ "default": "normal"
2734
+ },
2724
2735
  "testimonial": {
2725
2736
  "type": "array",
2726
2737
  "title": "Testimonials",
2727
2738
  "description": "Add testimonials featuring an image, a quote, a source and a rating",
2728
2739
  "items": {
2729
- "$schema": "http://json-schema.org/draft-07/schema#",
2730
- "$id": "http://schema.mydesignsystem.com/testimonial.schema.json",
2731
2740
  "title": "Testimonial",
2732
2741
  "description": "Testimonial entry of Testimonials component",
2733
2742
  "type": "object",
@@ -2780,9 +2789,6 @@
2780
2789
  "type": "integer",
2781
2790
  "minimum": 1,
2782
2791
  "maximum": 5
2783
- },
2784
- "type": {
2785
- "const": "testimonial"
2786
2792
  }
2787
2793
  },
2788
2794
  "additionalProperties": false,
@@ -3074,13 +3080,22 @@
3074
3080
  ],
3075
3081
  "default": "slider"
3076
3082
  },
3083
+ "quoteSigns": {
3084
+ "title": "Style of the quote signs",
3085
+ "description": "The style of the quote signs",
3086
+ "type": "string",
3087
+ "enum": [
3088
+ "normal",
3089
+ "large",
3090
+ "none"
3091
+ ],
3092
+ "default": "normal"
3093
+ },
3077
3094
  "testimonial": {
3078
3095
  "type": "array",
3079
3096
  "title": "Testimonials",
3080
3097
  "description": "Add testimonials featuring an image, a quote, a source and a rating",
3081
3098
  "items": {
3082
- "$schema": "http://json-schema.org/draft-07/schema#",
3083
- "$id": "http://schema.mydesignsystem.com/testimonial.schema.json",
3084
3099
  "title": "Testimonial",
3085
3100
  "description": "Testimonial entry of Testimonials component",
3086
3101
  "type": "object",
@@ -3133,9 +3148,6 @@
3133
3148
  "type": "integer",
3134
3149
  "minimum": 1,
3135
3150
  "maximum": 5
3136
- },
3137
- "type": {
3138
- "const": "testimonial"
3139
3151
  }
3140
3152
  },
3141
3153
  "additionalProperties": false,
@@ -2445,13 +2445,22 @@
2445
2445
  ],
2446
2446
  "default": "slider"
2447
2447
  },
2448
+ "quoteSigns": {
2449
+ "title": "Style of the quote signs",
2450
+ "description": "The style of the quote signs",
2451
+ "type": "string",
2452
+ "enum": [
2453
+ "normal",
2454
+ "large",
2455
+ "none"
2456
+ ],
2457
+ "default": "normal"
2458
+ },
2448
2459
  "testimonial": {
2449
2460
  "type": "array",
2450
2461
  "title": "Testimonials",
2451
2462
  "description": "Add testimonials featuring an image, a quote, a source and a rating",
2452
2463
  "items": {
2453
- "$schema": "http://json-schema.org/draft-07/schema#",
2454
- "$id": "http://schema.mydesignsystem.com/testimonial.schema.json",
2455
2464
  "title": "Testimonial",
2456
2465
  "description": "Testimonial entry of Testimonials component",
2457
2466
  "type": "object",
@@ -2504,9 +2513,6 @@
2504
2513
  "type": "integer",
2505
2514
  "minimum": 1,
2506
2515
  "maximum": 5
2507
- },
2508
- "type": {
2509
- "const": "testimonial"
2510
2516
  }
2511
2517
  },
2512
2518
  "additionalProperties": false,
@@ -2798,13 +2804,22 @@
2798
2804
  ],
2799
2805
  "default": "slider"
2800
2806
  },
2807
+ "quoteSigns": {
2808
+ "title": "Style of the quote signs",
2809
+ "description": "The style of the quote signs",
2810
+ "type": "string",
2811
+ "enum": [
2812
+ "normal",
2813
+ "large",
2814
+ "none"
2815
+ ],
2816
+ "default": "normal"
2817
+ },
2801
2818
  "testimonial": {
2802
2819
  "type": "array",
2803
2820
  "title": "Testimonials",
2804
2821
  "description": "Add testimonials featuring an image, a quote, a source and a rating",
2805
2822
  "items": {
2806
- "$schema": "http://json-schema.org/draft-07/schema#",
2807
- "$id": "http://schema.mydesignsystem.com/testimonial.schema.json",
2808
2823
  "title": "Testimonial",
2809
2824
  "description": "Testimonial entry of Testimonials component",
2810
2825
  "type": "object",
@@ -2857,9 +2872,6 @@
2857
2872
  "type": "integer",
2858
2873
  "minimum": 1,
2859
2874
  "maximum": 5
2860
- },
2861
- "type": {
2862
- "const": "testimonial"
2863
2875
  }
2864
2876
  },
2865
2877
  "additionalProperties": false,
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 27 Jan 2025 11:31:05 GMT
3
+ * Generated on Tue, 28 Jan 2025 07:39:06 GMT
4
4
  */
5
5
  :root, [ks-theme] {
6
6
  --ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
@@ -3100,9 +3100,10 @@
3100
3100
  "id": "components-testimonials--simple",
3101
3101
  "group": "Components/Testimonials",
3102
3102
  "name": "Simple",
3103
- "code": "<Testimonials\n layout=\"slider\"\n testimonial={[\n {\n image: {\n alt: 'Alt Text Customer 1',\n src: 'img/people/author-emily.png'\n },\n name: 'Emily Johnson',\n quote: 'Working with Systemics technology has been a game-changer for our brand. Their design system expertise brought harmony to our user experiences, making our digital platforms not just functional, but truly captivating.',\n title: undefined\n }\n ]}\n/>",
3103
+ "code": "<Testimonials\n layout=\"slider\"\n quoteSigns=\"normal\"\n testimonial={[\n {\n image: {\n alt: 'Alt Text Customer 1',\n src: 'img/people/author-emily.png'\n },\n name: 'Emily Johnson',\n quote: 'Working with Systemics technology has been a game-changer for our brand. Their design system expertise brought harmony to our user experiences, making our digital platforms not just functional, but truly captivating.',\n title: undefined\n }\n ]}\n/>",
3104
3104
  "args": {
3105
3105
  "layout": "slider",
3106
+ "quoteSigns": "normal",
3106
3107
  "testimonial": [
3107
3108
  {
3108
3109
  "quote": "Working with Systemics technology has been a game-changer for our brand. Their design system expertise brought harmony to our user experiences, making our digital platforms not just functional, but truly captivating.",
@@ -3120,9 +3121,10 @@
3120
3121
  "id": "components-testimonials--with-title",
3121
3122
  "group": "Components/Testimonials",
3122
3123
  "name": "WithTitle",
3123
- "code": "<Testimonials\n layout=\"slider\"\n testimonial={[\n {\n image: {\n alt: 'Alt Text Customer 1',\n src: 'img/people/author-emily.png'\n },\n name: 'Emily Johnson',\n quote: 'Working with Systemics technology has been a game-changer for our brand. Their design system expertise brought harmony to our user experiences, making our digital platforms not just functional, but truly captivating.',\n title: 'Chief Marketing Officer at TechFusion Enterprises'\n }\n ]}\n/>",
3124
+ "code": "<Testimonials\n layout=\"slider\"\n quoteSigns=\"normal\"\n testimonial={[\n {\n image: {\n alt: 'Alt Text Customer 1',\n src: 'img/people/author-emily.png'\n },\n name: 'Emily Johnson',\n quote: 'Working with Systemics technology has been a game-changer for our brand. Their design system expertise brought harmony to our user experiences, making our digital platforms not just functional, but truly captivating.',\n title: 'Chief Marketing Officer at TechFusion Enterprises'\n }\n ]}\n/>",
3124
3125
  "args": {
3125
3126
  "layout": "slider",
3127
+ "quoteSigns": "normal",
3126
3128
  "testimonial": [
3127
3129
  {
3128
3130
  "quote": "Working with Systemics technology has been a game-changer for our brand. Their design system expertise brought harmony to our user experiences, making our digital platforms not just functional, but truly captivating.",
@@ -3141,9 +3143,10 @@
3141
3143
  "id": "components-testimonials--list-layout",
3142
3144
  "group": "Components/Testimonials",
3143
3145
  "name": "ListLayout",
3144
- "code": "<Testimonials\n layout=\"list\"\n testimonial={[\n {\n image: {\n alt: 'Alt Text Customer 1',\n src: 'img/people/author-emily.png'\n },\n name: 'Emily Johnson',\n quote: 'Working with Systemics technology has been a game-changer for our brand. Their design system expertise brought harmony to our user experiences, making our digital platforms not just functional, but truly captivating.',\n rating: 5,\n title: 'Chief Marketing Officer at TechFusion Enterprises'\n },\n {\n image: {\n alt: 'Alt Text Customer 2',\n src: 'img/people/author-john.png'\n },\n name: 'John Smith',\n quote: 'Systemics\\'s design system transformed our development process. The consistency it introduced across our platforms not only saved us time but also boosted our brand\\'s credibility. It\\'s a partnership that continues to pay dividends.',\n rating: 4,\n title: 'Director of Digital Strategy at EcoTech Solutions'\n },\n {\n image: {\n alt: 'Alt Text Customer 3',\n src: 'img/people/author-alex.png'\n },\n name: 'Alex Chen',\n quote: 'As a startup, we needed to hit the ground running. Systemics\\'s approach streamlined our dev and design process, allowing us to scale faster and focus on what truly matters - building a product that stands out in the market.',\n rating: 5,\n title: 'CEO of LaunchPad Innovations'\n }\n ]}\n/>",
3146
+ "code": "<Testimonials\n layout=\"list\"\n quoteSigns=\"normal\"\n testimonial={[\n {\n image: {\n alt: 'Alt Text Customer 1',\n src: 'img/people/author-emily.png'\n },\n name: 'Emily Johnson',\n quote: 'Working with Systemics technology has been a game-changer for our brand. Their design system expertise brought harmony to our user experiences, making our digital platforms not just functional, but truly captivating.',\n rating: 5,\n title: 'Chief Marketing Officer at TechFusion Enterprises'\n },\n {\n image: {\n alt: 'Alt Text Customer 2',\n src: 'img/people/author-john.png'\n },\n name: 'John Smith',\n quote: 'Systemics\\'s design system transformed our development process. The consistency it introduced across our platforms not only saved us time but also boosted our brand\\'s credibility. It\\'s a partnership that continues to pay dividends.',\n rating: 4,\n title: 'Director of Digital Strategy at EcoTech Solutions'\n },\n {\n image: {\n alt: 'Alt Text Customer 3',\n src: 'img/people/author-alex.png'\n },\n name: 'Alex Chen',\n quote: 'As a startup, we needed to hit the ground running. Systemics\\'s approach streamlined our dev and design process, allowing us to scale faster and focus on what truly matters - building a product that stands out in the market.',\n rating: 5,\n title: 'CEO of LaunchPad Innovations'\n }\n ]}\n/>",
3145
3147
  "args": {
3146
3148
  "layout": "list",
3149
+ "quoteSigns": "normal",
3147
3150
  "testimonial": [
3148
3151
  {
3149
3152
  "quote": "Working with Systemics technology has been a game-changer for our brand. Their design system expertise brought harmony to our user experiences, making our digital platforms not just functional, but truly captivating.",
@@ -3183,9 +3186,10 @@
3183
3186
  "id": "components-testimonials--slider-layout",
3184
3187
  "group": "Components/Testimonials",
3185
3188
  "name": "SliderLayout",
3186
- "code": "<Testimonials\n layout=\"slider\"\n testimonial={[\n {\n image: {\n alt: 'Alt Text Customer 1',\n src: 'img/people/author-emily.png'\n },\n name: 'Emily Johnson',\n quote: 'Working with Systemics technology has been a game-changer for our brand. Their design system expertise brought harmony to our user experiences, making our digital platforms not just functional, but truly captivating.',\n title: 'Chief Marketing Officer at TechFusion Enterprises'\n },\n {\n image: {\n alt: 'Alt Text Customer 2',\n src: 'img/people/author-john.png'\n },\n name: 'John Smith',\n quote: 'Systemics\\'s design system transformed our development process. The consistency it introduced across our platforms not only saved us time but also boosted our brand\\'s credibility. It\\'s a partnership that continues to pay dividends.',\n title: 'Director of Digital Strategy at EcoTech Solutions'\n },\n {\n image: {\n alt: 'Alt Text Customer 3',\n src: 'img/people/author-alex.png'\n },\n name: 'Alex Chen',\n quote: 'As a startup, we needed to hit the ground running. Systemics\\'s approach streamlined our dev and design process, allowing us to scale faster and focus on what truly matters - building a product that stands out in the market.',\n title: 'CEO of LaunchPad Innovations'\n }\n ]}\n/>",
3189
+ "code": "<Testimonials\n layout=\"slider\"\n quoteSigns=\"normal\"\n testimonial={[\n {\n image: {\n alt: 'Alt Text Customer 1',\n src: 'img/people/author-emily.png'\n },\n name: 'Emily Johnson',\n quote: 'Working with Systemics technology has been a game-changer for our brand. Their design system expertise brought harmony to our user experiences, making our digital platforms not just functional, but truly captivating.',\n title: 'Chief Marketing Officer at TechFusion Enterprises'\n },\n {\n image: {\n alt: 'Alt Text Customer 2',\n src: 'img/people/author-john.png'\n },\n name: 'John Smith',\n quote: 'Systemics\\'s design system transformed our development process. The consistency it introduced across our platforms not only saved us time but also boosted our brand\\'s credibility. It\\'s a partnership that continues to pay dividends.',\n title: 'Director of Digital Strategy at EcoTech Solutions'\n },\n {\n image: {\n alt: 'Alt Text Customer 3',\n src: 'img/people/author-alex.png'\n },\n name: 'Alex Chen',\n quote: 'As a startup, we needed to hit the ground running. Systemics\\'s approach streamlined our dev and design process, allowing us to scale faster and focus on what truly matters - building a product that stands out in the market.',\n title: 'CEO of LaunchPad Innovations'\n }\n ]}\n/>",
3187
3190
  "args": {
3188
3191
  "layout": "slider",
3192
+ "quoteSigns": "normal",
3189
3193
  "testimonial": [
3190
3194
  {
3191
3195
  "quote": "Working with Systemics technology has been a game-changer for our brand. Their design system expertise brought harmony to our user experiences, making our digital platforms not just functional, but truly captivating.",
@@ -3222,9 +3226,10 @@
3222
3226
  "id": "components-testimonials--with-rating",
3223
3227
  "group": "Components/Testimonials",
3224
3228
  "name": "WithRating",
3225
- "code": "<Testimonials\n layout=\"slider\"\n testimonial={[\n {\n image: {\n alt: 'Alt Text Customer 1',\n src: 'img/people/author-emily.png'\n },\n name: 'Emily Johnson',\n quote: 'Working with Systemics technology has been a game-changer for our brand. Their design system expertise brought harmony to our user experiences, making our digital platforms not just functional, but truly captivating.',\n rating: 5,\n title: 'Chief Marketing Officer at TechFusion Enterprises'\n },\n {\n image: {\n alt: 'Alt Text Customer 2',\n src: 'img/people/author-john.png'\n },\n name: 'John Smith',\n quote: 'Systemics\\'s design system transformed our development process. The consistency it introduced across our platforms not only saved us time but also boosted our brand\\'s credibility. It\\'s a partnership that continues to pay dividends.',\n rating: 4,\n title: 'Director of Digital Strategy at EcoTech Solutions'\n },\n {\n image: {\n alt: 'Alt Text Customer 3',\n src: 'img/people/author-alex.png'\n },\n name: 'Alex Chen',\n quote: 'As a startup, we needed to hit the ground running. Systemics\\'s approach streamlined our dev and design process, allowing us to scale faster and focus on what truly matters - building a product that stands out in the market.',\n rating: 5,\n title: 'CEO of LaunchPad Innovations'\n }\n ]}\n/>",
3229
+ "code": "<Testimonials\n layout=\"slider\"\n quoteSigns=\"normal\"\n testimonial={[\n {\n image: {\n alt: 'Alt Text Customer 1',\n src: 'img/people/author-emily.png'\n },\n name: 'Emily Johnson',\n quote: 'Working with Systemics technology has been a game-changer for our brand. Their design system expertise brought harmony to our user experiences, making our digital platforms not just functional, but truly captivating.',\n rating: 5,\n title: 'Chief Marketing Officer at TechFusion Enterprises'\n },\n {\n image: {\n alt: 'Alt Text Customer 2',\n src: 'img/people/author-john.png'\n },\n name: 'John Smith',\n quote: 'Systemics\\'s design system transformed our development process. The consistency it introduced across our platforms not only saved us time but also boosted our brand\\'s credibility. It\\'s a partnership that continues to pay dividends.',\n rating: 4,\n title: 'Director of Digital Strategy at EcoTech Solutions'\n },\n {\n image: {\n alt: 'Alt Text Customer 3',\n src: 'img/people/author-alex.png'\n },\n name: 'Alex Chen',\n quote: 'As a startup, we needed to hit the ground running. Systemics\\'s approach streamlined our dev and design process, allowing us to scale faster and focus on what truly matters - building a product that stands out in the market.',\n rating: 5,\n title: 'CEO of LaunchPad Innovations'\n }\n ]}\n/>",
3226
3230
  "args": {
3227
3231
  "layout": "slider",
3232
+ "quoteSigns": "normal",
3228
3233
  "testimonial": [
3229
3234
  {
3230
3235
  "quote": "Working with Systemics technology has been a game-changer for our brand. Their design system expertise brought harmony to our user experiences, making our digital platforms not just functional, but truly captivating.",
@@ -3264,9 +3269,10 @@
3264
3269
  "id": "components-testimonials--alternating-layout",
3265
3270
  "group": "Components/Testimonials",
3266
3271
  "name": "AlternatingLayout",
3267
- "code": "<Testimonials\n layout=\"alternating\"\n testimonial={[\n {\n image: {\n alt: 'Alt Text Customer 1',\n src: 'img/people/author-emily.png'\n },\n name: 'Emily Johnson',\n quote: 'Working with Systemics technology has been a game-changer for our brand. Their design system expertise brought harmony to our user experiences, making our digital platforms not just functional, but truly captivating.',\n rating: 5,\n title: 'Chief Marketing Officer at TechFusion Enterprises'\n },\n {\n image: {\n alt: 'Alt Text Customer 2',\n src: 'img/people/author-john.png'\n },\n name: 'John Smith',\n quote: 'Systemics\\'s design system transformed our development process. The consistency it introduced across our platforms not only saved us time but also boosted our brand\\'s credibility. It\\'s a partnership that continues to pay dividends.',\n rating: 4,\n title: 'Director of Digital Strategy at EcoTech Solutions'\n },\n {\n image: {\n alt: 'Alt Text Customer 3',\n src: 'img/people/author-alex.png'\n },\n name: 'Alex Chen',\n quote: 'As a startup, we needed to hit the ground running. Systemics\\'s approach streamlined our dev and design process, allowing us to scale faster and focus on what truly matters - building a product that stands out in the market.',\n rating: 5,\n title: 'CEO of LaunchPad Innovations'\n }\n ]}\n/>",
3272
+ "code": "<Testimonials\n layout=\"alternating\"\n quoteSigns=\"normal\"\n testimonial={[\n {\n image: {\n alt: 'Alt Text Customer 1',\n src: 'img/people/author-emily.png'\n },\n name: 'Emily Johnson',\n quote: 'Working with Systemics technology has been a game-changer for our brand. Their design system expertise brought harmony to our user experiences, making our digital platforms not just functional, but truly captivating.',\n rating: 5,\n title: 'Chief Marketing Officer at TechFusion Enterprises'\n },\n {\n image: {\n alt: 'Alt Text Customer 2',\n src: 'img/people/author-john.png'\n },\n name: 'John Smith',\n quote: 'Systemics\\'s design system transformed our development process. The consistency it introduced across our platforms not only saved us time but also boosted our brand\\'s credibility. It\\'s a partnership that continues to pay dividends.',\n rating: 4,\n title: 'Director of Digital Strategy at EcoTech Solutions'\n },\n {\n image: {\n alt: 'Alt Text Customer 3',\n src: 'img/people/author-alex.png'\n },\n name: 'Alex Chen',\n quote: 'As a startup, we needed to hit the ground running. Systemics\\'s approach streamlined our dev and design process, allowing us to scale faster and focus on what truly matters - building a product that stands out in the market.',\n rating: 5,\n title: 'CEO of LaunchPad Innovations'\n }\n ]}\n/>",
3268
3273
  "args": {
3269
3274
  "layout": "alternating",
3275
+ "quoteSigns": "normal",
3270
3276
  "testimonial": [
3271
3277
  {
3272
3278
  "quote": "Working with Systemics technology has been a game-changer for our brand. Their design system expertise brought harmony to our user experiences, making our digital platforms not just functional, but truly captivating.",
@@ -2431,13 +2431,22 @@
2431
2431
  ],
2432
2432
  "default": "slider"
2433
2433
  },
2434
+ "quoteSigns": {
2435
+ "title": "Style of the quote signs",
2436
+ "description": "The style of the quote signs",
2437
+ "type": "string",
2438
+ "enum": [
2439
+ "normal",
2440
+ "large",
2441
+ "none"
2442
+ ],
2443
+ "default": "normal"
2444
+ },
2434
2445
  "testimonial": {
2435
2446
  "type": "array",
2436
2447
  "title": "Testimonials",
2437
2448
  "description": "Add testimonials featuring an image, a quote, a source and a rating",
2438
2449
  "items": {
2439
- "$schema": "http://json-schema.org/draft-07/schema#",
2440
- "$id": "http://schema.mydesignsystem.com/testimonial.schema.json",
2441
2450
  "title": "Testimonial",
2442
2451
  "description": "Testimonial entry of Testimonials component",
2443
2452
  "type": "object",
@@ -2490,9 +2499,6 @@
2490
2499
  "type": "integer",
2491
2500
  "minimum": 1,
2492
2501
  "maximum": 5
2493
- },
2494
- "type": {
2495
- "const": "testimonial"
2496
2502
  }
2497
2503
  },
2498
2504
  "additionalProperties": false,
@@ -2784,13 +2790,22 @@
2784
2790
  ],
2785
2791
  "default": "slider"
2786
2792
  },
2793
+ "quoteSigns": {
2794
+ "title": "Style of the quote signs",
2795
+ "description": "The style of the quote signs",
2796
+ "type": "string",
2797
+ "enum": [
2798
+ "normal",
2799
+ "large",
2800
+ "none"
2801
+ ],
2802
+ "default": "normal"
2803
+ },
2787
2804
  "testimonial": {
2788
2805
  "type": "array",
2789
2806
  "title": "Testimonials",
2790
2807
  "description": "Add testimonials featuring an image, a quote, a source and a rating",
2791
2808
  "items": {
2792
- "$schema": "http://json-schema.org/draft-07/schema#",
2793
- "$id": "http://schema.mydesignsystem.com/testimonial.schema.json",
2794
2809
  "title": "Testimonial",
2795
2810
  "description": "Testimonial entry of Testimonials component",
2796
2811
  "type": "object",
@@ -2843,9 +2858,6 @@
2843
2858
  "type": "integer",
2844
2859
  "minimum": 1,
2845
2860
  "maximum": 5
2846
- },
2847
- "type": {
2848
- "const": "testimonial"
2849
2861
  }
2850
2862
  },
2851
2863
  "additionalProperties": false,
@@ -1005,13 +1005,22 @@
1005
1005
  ],
1006
1006
  "default": "slider"
1007
1007
  },
1008
+ "quoteSigns": {
1009
+ "title": "Style of the quote signs",
1010
+ "description": "The style of the quote signs",
1011
+ "type": "string",
1012
+ "enum": [
1013
+ "normal",
1014
+ "large",
1015
+ "none"
1016
+ ],
1017
+ "default": "normal"
1018
+ },
1008
1019
  "testimonial": {
1009
1020
  "type": "array",
1010
1021
  "title": "Testimonials",
1011
1022
  "description": "Add testimonials featuring an image, a quote, a source and a rating",
1012
1023
  "items": {
1013
- "$schema": "http://json-schema.org/draft-07/schema#",
1014
- "$id": "http://schema.mydesignsystem.com/testimonial.schema.json",
1015
1024
  "title": "Testimonial",
1016
1025
  "description": "Testimonial entry of Testimonials component",
1017
1026
  "type": "object",
@@ -1064,9 +1073,6 @@
1064
1073
  "type": "integer",
1065
1074
  "minimum": 1,
1066
1075
  "maximum": 5
1067
- },
1068
- "type": {
1069
- "const": "testimonial"
1070
1076
  }
1071
1077
  },
1072
1078
  "additionalProperties": false,
@@ -1,6 +1,53 @@
1
1
  /// <reference types="react" />
2
2
  import { HTMLAttributes } from "react";
3
- import { TestimonialProps } from "../../TestimonialProps-94bdeac9.js";
3
+ /* eslint-disable */
4
+ /**
5
+ * This file was automatically generated by json-schema-to-typescript.
6
+ * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
7
+ * and run json-schema-to-typescript to regenerate this file.
8
+ */
9
+ /**
10
+ * The testimonial quote
11
+ */
12
+ type Quote = string;
13
+ /**
14
+ * The style of the quote signs
15
+ */
16
+ type StyleOfTheQuoteSigns = "normal" | "large" | "none";
17
+ /**
18
+ * The name of the quote author
19
+ */
20
+ type Name = string;
21
+ /**
22
+ * The title of the quote author
23
+ */
24
+ type Title = string;
25
+ /**
26
+ * The image to display with the testimonial
27
+ */
28
+ type Source = string;
29
+ /**
30
+ * The alt text of the image file
31
+ */
32
+ type AltText = string;
33
+ /**
34
+ * The rating of the testimonial, from 1 to 5
35
+ */
36
+ type Rating = number;
37
+ /**
38
+ * Testimonial entry of Testimonials component
39
+ */
40
+ interface TestimonialProps {
41
+ quote: Quote;
42
+ quoteSigns?: StyleOfTheQuoteSigns;
43
+ name: Name;
44
+ title?: Title;
45
+ image: {
46
+ src?: Source;
47
+ alt?: AltText;
48
+ };
49
+ rating?: Rating;
50
+ }
4
51
  declare const TestimonialContextDefault: import("react").ForwardRefExoticComponent<{
5
52
  layout: string;
6
53
  index: number;
@@ -1,8 +1,11 @@
1
1
  import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
2
2
  import { forwardRef, createContext, useContext } from 'react';
3
3
  import { Quote } from '@kickstartds/content/lib/quote';
4
+ import classnames from 'classnames';
4
5
 
5
- const TestimonialContextDefault = forwardRef(({ image, quote, name, title, layout, index, rating, ...rest }, ref) => (jsx(Quote, { ...rest, ref: ref, className: layout === "alternating" && index % 2 === 1 ? "c-quote--reverse" : "", text: quote, source: name, byline: title, image: image && image.src, renderSource: () => (jsxs(Fragment, { children: [rating ? (jsx("div", { children: [...Array(rating)].map((_, index) => (jsx("span", { children: "\u2605" }, index))) })) : (""), jsx("div", { className: "c-quote__source", children: name })] })) })));
6
+ const TestimonialContextDefault = forwardRef(({ image, quote, name, title, layout, index, rating, quoteSigns, ...rest }, ref) => (jsx(Quote, { ...rest, ref: ref, className: classnames(layout === "alternating" && index % 2 === 1 ? "c-quote--reverse" : "", quoteSigns === "normal" || quoteSigns === "none"
7
+ ? "c-quote--small-signs"
8
+ : ""), text: quoteSigns === "normal" ? `"${quote}"` : quote, source: name, byline: title, image: image && image.src, renderSource: () => (jsxs(Fragment, { children: [rating ? (jsx("div", { children: [...Array(rating)].map((_, index) => (jsx("span", { children: "\u2605" }, index))) })) : (""), jsx("div", { className: "c-quote__source", children: name })] })) })));
6
9
  const TestimonialContext = createContext(TestimonialContextDefault);
7
10
  const Testimonial = forwardRef((props, ref) => {
8
11
  const Component = useContext(TestimonialContext);
@@ -14,6 +14,17 @@
14
14
  "This product is amazing!"
15
15
  ]
16
16
  },
17
+ "quoteSigns": {
18
+ "title": "Style of the quote signs",
19
+ "description": "The style of the quote signs",
20
+ "type": "string",
21
+ "enum": [
22
+ "normal",
23
+ "large",
24
+ "none"
25
+ ],
26
+ "default": "normal"
27
+ },
17
28
  "name": {
18
29
  "title": "Name",
19
30
  "description": "The name of the quote author",
@@ -12,6 +12,13 @@
12
12
  "format": "markdown",
13
13
  "examples": ["This product is amazing!"]
14
14
  },
15
+ "quoteSigns": {
16
+ "title": "Style of the quote signs",
17
+ "description": "The style of the quote signs",
18
+ "type": "string",
19
+ "enum": ["normal", "large", "none"],
20
+ "default": "normal"
21
+ },
15
22
  "name": {
16
23
  "title": "Name",
17
24
  "description": "The name of the quote author",
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { HTMLAttributes } from "react";
3
- import { TestimonialsProps } from "../../TestimonialsProps-f7211553.js";
3
+ import { TestimonialsProps } from "../../TestimonialsProps-e344f597.js";
4
4
  import { SliderProps } from "../../SliderProps-93230a76.js";
5
5
  interface ConditionalSliderProps extends SliderProps {
6
6
  layout: "slider" | "list" | "alternating";
@@ -15,8 +15,8 @@ const ConditionalSlider = forwardRef(({ layout, children, arrows, nav, ...props
15
15
  return (jsx("div", { className: "dsa-testimonials dsa-testimonials--list", ...props, ref: ref, children: children }));
16
16
  }
17
17
  });
18
- const TestimonialsContextDefault = forwardRef(({ testimonial: testimonials = [], layout = "slider", ...props }, ref) => {
19
- return (jsx(ConditionalSlider, { layout: layout, arrows: true, nav: true, ...props, ref: ref, children: testimonials.map((testimonial, index) => (createElement(Testimonial, { ...testimonial, index: index, layout: layout, key: index }))) }));
18
+ const TestimonialsContextDefault = forwardRef(({ testimonial: testimonials = [], layout = "slider", quoteSigns = "normal", ...props }, ref) => {
19
+ return (jsx(ConditionalSlider, { layout: layout, arrows: true, nav: true, ...props, ref: ref, children: testimonials.map((testimonial, index) => (createElement(Testimonial, { ...testimonial, quoteSigns: quoteSigns, index: index, layout: layout, key: index }))) }));
20
20
  });
21
21
  const TestimonialsContext = createContext(TestimonialsContextDefault);
22
22
  const Testimonials = forwardRef((props, ref) => {
@@ -1,37 +1,54 @@
1
+ @charset "UTF-8";
1
2
  .dsa-testimonials {
2
- --dsa-testimonial__source--font: var(--ks-font-copy-m);
3
- --dsa-testimonial__icon--font-family: var(--ks-font-family-copy);
4
- --dsa-testimonial__icon--font-size: 3em;
5
- --dsa-testimonial__icon--color: var(--ks-text-color-primary);
6
- --dsa-testimonial__byline--font: var(--ks-font-copy-m);
7
- --dsa-testimonial__byline--font-weight: var(--ks-font-weight-regular);
8
- --dsa-testimonial__image--max-width: 40%;
9
- --dsa-testimonial__source--color: var(--ks-text-color-default);
10
- --dsa-testimonial__byline--color: var(--ks-text-color-copy);
11
- --testimonials__copy--margin-bottom: var(--ks-spacing-stack-s);
12
- --dsa-testimonial--padding-left: var(--ks-spacing-xl);
13
- --dsa-testimonial__copy--font: var(--ks-font-copy-l);
14
- --dsa-testimonial__list--gap: var(--ks-spacing-stack-xl);
3
+ --dsa-testimonials--padding-left: calc(var(--dsa-testimonials__icon--font-size) / 6);
4
+ --dsa-testimonials--padding-top: 0.5em;
5
+ --dsa-testimonials__copy--font: var(--ks-font-copy-l);
6
+ --dsa-testimonials__copy--margin-bottom: var(--ks-spacing-stack-s);
7
+ --dsa-testimonials__source--font: var(--ks-font-copy-m);
8
+ --dsa-testimonials__source--font-style: normal;
9
+ --dsa-testimonials__source--color: var(--ks-text-color-default);
10
+ --dsa-testimonials__source--text-transform: normal;
11
+ --dsa-testimonials__source--font-weight: var(--ks-font-weight-bold);
12
+ --dsa-testimonials__icon--font-family: var(--ks-font-family-copy);
13
+ --dsa-testimonials__icon--font-size: 10em;
14
+ --dsa-testimonials__icon--color: var(--ks-color-fg-alpha-8);
15
+ --dsa-testimonials__icon--content: "”";
16
+ --dsa-testimonials__icon--left: 0.15em;
17
+ --dsa-testimonials__icon--transform: translate(-50%, -10%);
18
+ --dsa-testimonials__byline--font: var(--ks-font-copy-m);
19
+ --dsa-testimonials__byline--font-weight: var(--ks-font-weight-regular);
20
+ --dsa-testimonials__byline--color: var(--ks-text-color-copy);
21
+ --dsa-testimonials__image--max-width: 40%;
22
+ --dsa-testimonials__list--gap: var(--ks-spacing-stack-xl);
15
23
  }
16
24
  @container quote (min-width: 640px) {
17
25
  .dsa-testimonials {
18
- --dsa-testimonial__image--max-width: 40%;
26
+ --dsa-testimonials__image--max-width: 40%;
19
27
  }
20
28
  }
21
29
  @container quote (min-width: 960px) {
22
30
  .dsa-testimonials {
23
- --c-quote_content--padding-left: var(--ks-spacing-l);
31
+ --dsa-testimonials--padding-left: var(--ks-spacing-inline-xl);
24
32
  }
25
33
  }
26
34
 
27
35
  .dsa-testimonials .c-quote {
28
- --c-quote_source--font: var(--dsa-testimonial__source--font, var(--ks-font-copy-m));
29
- --c-quote_icon--font-family: var(--dsa-testimonial__icon--font-family, var(--ks-font-family-copy));
30
- --c-quote_icon--font-size: var(--dsa-testimonial__icon--font-size, 3em);
31
- --c-quote_icon--color: var(--dsa-testimonial__icon--color, var(--ks-text-color-primary));
32
- --c-quote_byline--font: var(--dsa-testimonial__byline--font, var(--ks-font-copy-m));
33
- --c-quote_byline--font-weight: var(--dsa-testimonial__byline--font-weight, var(--ks-font-weight-regular));
34
- --c-quote_image--max-width: var(--dsa-testimonial__image--max-width, 40%);
36
+ --c-quote_text--font: var(--dsa-testimonials__copy--font, var(--ks-font-copy-l));
37
+ --c-quote_text--margin-bottom: var(--dsa-testimonials__copy--margin-bottom, var(--ks-spacing-stack-s));
38
+ --c-quote_source--font: var(--dsa-testimonials__source--font, (--ks-font-copy-s));
39
+ --c-quote_source--font-style: var(--dsa-testimonials__source--font-style, normal);
40
+ --c-quote_source--font-weight: var(--dsa-testimonials__source--font-weight, var(--ks-font-weight-bold));
41
+ --c-quote_source--text-transform: var(--dsa-testimonials__source--text-transform, uppercase);
42
+ --c-quote_icon--font-family: var(--dsa-testimonials__icon--font-family, var(--ks-font-family-copy));
43
+ --c-quote_icon--font-size: var(--dsa-testimonials__icon--font-size, 3em);
44
+ --c-quote_icon--color: var(--dsa-testimonials__icon--color, var(--ks-text-color-primary));
45
+ --c-quote_icon--content: var(--dsa-testimonials__icon--content, "”");
46
+ --c-quote_icon--left: var(--dsa-testimonials__icon--left, calc(var(--c-quote_content--padding-left) / 2));
47
+ --c-quote_icon--transform: var(--dsa-testimonials__icon--transform, translateX(-50%));
48
+ --c-quote_byline--font: var(--dsa-testimonials__byline--font, var(--ks-font-copy-m));
49
+ --c-quote_byline--font-weight: var(--dsa-testimonials__byline--font-weight, var(--ks-font-weight-regular));
50
+ --c-quote_image--max-width: var(--dsa-testimonials__image--max-width, 40%);
51
+ --c-quote_content--padding-left: var(--dsa-testimonials--padding-left, var(--ks-spacing-inline-l));
35
52
  }
36
53
  .dsa-testimonials .c-slider-main {
37
54
  --c-slider_bullet--outline-color-active: var(--ks-text-color-primary);
@@ -40,22 +57,24 @@
40
57
  .dsa-testimonials--list {
41
58
  display: flex;
42
59
  flex-direction: column;
43
- gap: var(--dsa-testimonial__list--gap, var(--ks-spacing-stack-xl));
60
+ gap: var(--dsa-testimonials__list--gap, var(--ks-spacing-stack-xl));
44
61
  }
45
62
  .dsa-testimonials .c-quote__source {
46
- color: var(--dsa-testimonial__source--color, var(--ks-text-color-default));
63
+ color: var(--dsa-testimonials__source--color, var(--ks-text-color-default));
47
64
  }
48
65
  .dsa-testimonials .c-quote__byline {
49
- color: var(--dsa-testimonial__byline--color, var(--ks-text-color-copy));
66
+ color: var(--dsa-testimonials__byline--color, var(--ks-text-color-copy));
50
67
  }
51
68
  .dsa-testimonials .c-quote__text {
52
- margin-bottom: var(--testimonials__copy--margin-bottom, var(--ks-spacing-stack-s));
69
+ position: relative;
70
+ z-index: 1;
71
+ margin-bottom: var(--dsa-testimonials__copy--margin-bottom, var(--ks-spacing-stack-s));
53
72
  }
54
73
  .dsa-testimonials .c-quote--reverse {
55
74
  flex-direction: row-reverse;
56
75
  }
57
76
  .dsa-testimonials .c-quote--reverse .c-quote__content {
58
- padding-right: var(--dsa-testimonial--padding-left, var(--ks-spacing-xl));
77
+ padding-right: var(--dsa-testimonials--padding-left, var(--ks-spacing-xl));
59
78
  padding-left: unset;
60
79
  }
61
80
  .dsa-testimonials .c-quote--reverse .c-quote__content:before {
@@ -63,8 +82,15 @@
63
82
  top: 0;
64
83
  left: unset;
65
84
  }
85
+ .dsa-testimonials .c-quote.c-quote--small-signs .c-quote__content {
86
+ padding: 0;
87
+ }
88
+ .dsa-testimonials .c-quote.c-quote--small-signs .c-quote__content::before {
89
+ content: "";
90
+ }
66
91
  .dsa-testimonials .c-quote .c-quote__content {
67
- font: var(--dsa-testimonial__copy--font, var(--ks-font-copy-l));
92
+ font: var(--dsa-testimonials__copy--font, var(--ks-font-copy-l));
93
+ padding-top: var(--dsa-testimonials--padding-top, 0.5em);
68
94
  }
69
95
  .dsa-testimonials .c-quote .c-quote__content::before {
70
96
  line-height: 0.7;
@@ -16,13 +16,22 @@
16
16
  ],
17
17
  "default": "slider"
18
18
  },
19
+ "quoteSigns": {
20
+ "title": "Style of the quote signs",
21
+ "description": "The style of the quote signs",
22
+ "type": "string",
23
+ "enum": [
24
+ "normal",
25
+ "large",
26
+ "none"
27
+ ],
28
+ "default": "normal"
29
+ },
19
30
  "testimonial": {
20
31
  "type": "array",
21
32
  "title": "Testimonials",
22
33
  "description": "Add testimonials featuring an image, a quote, a source and a rating",
23
34
  "items": {
24
- "$schema": "http://json-schema.org/draft-07/schema#",
25
- "$id": "http://schema.mydesignsystem.com/testimonial.schema.json",
26
35
  "title": "Testimonial",
27
36
  "description": "Testimonial entry of Testimonials component",
28
37
  "type": "object",
@@ -75,9 +84,6 @@
75
84
  "type": "integer",
76
85
  "minimum": 1,
77
86
  "maximum": 5
78
- },
79
- "type": {
80
- "const": "testimonial"
81
87
  }
82
88
  },
83
89
  "additionalProperties": false,
@@ -12,12 +12,41 @@
12
12
  "enum": ["slider", "list", "alternating"],
13
13
  "default": "slider"
14
14
  },
15
+ "quoteSigns": {
16
+ "title": "Style of the quote signs",
17
+ "description": "The style of the quote signs",
18
+ "type": "string",
19
+ "enum": ["normal", "large", "none"],
20
+ "default": "normal"
21
+ },
15
22
  "testimonial": {
16
23
  "type": "array",
17
24
  "title": "Testimonials",
18
25
  "description": "Add testimonials featuring an image, a quote, a source and a rating",
19
26
  "items": {
20
- "$ref": "http://schema.mydesignsystem.com/testimonial.schema.json"
27
+ "title": "Testimonial",
28
+ "description": "Testimonial entry of Testimonials component",
29
+ "type": "object",
30
+ "properties": {
31
+ "quote": {
32
+ "$ref": "http://schema.mydesignsystem.com/testimonial.schema.json#/properties/quote"
33
+ },
34
+
35
+ "name": {
36
+ "$ref": "http://schema.mydesignsystem.com/testimonial.schema.json#/properties/name"
37
+ },
38
+ "title": {
39
+ "$ref": "http://schema.mydesignsystem.com/testimonial.schema.json#/properties/title"
40
+ },
41
+ "image": {
42
+ "$ref": "http://schema.mydesignsystem.com/testimonial.schema.json#/properties/image"
43
+ },
44
+ "rating": {
45
+ "$ref": "http://schema.mydesignsystem.com/testimonial.schema.json#/properties/rating"
46
+ }
47
+ },
48
+ "additionalProperties": false,
49
+ "required": ["quote", "name", "image"]
21
50
  }
22
51
  }
23
52
  },
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 27 Jan 2025 11:31:07 GMT
3
+ * Generated on Tue, 28 Jan 2025 07:39:09 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 Mon, 27 Jan 2025 11:31:12 GMT
2730
+ * Generated on Tue, 28 Jan 2025 07:39:13 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 Mon, 27 Jan 2025 11:31:10 GMT
5461
+ * Generated on Tue, 28 Jan 2025 07:39:11 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 Mon, 27 Jan 2025 11:31:14 GMT
8462
+ * Generated on Tue, 28 Jan 2025 07:39:15 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 Mon, 27 Jan 2025 11:31:05 GMT
3
+ * Generated on Tue, 28 Jan 2025 07:39:06 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 Mon, 27 Jan 2025 11:31:05 GMT
3
+ * Generated on Tue, 28 Jan 2025 07:39:07 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.6.61",
3
+ "version": "1.6.63",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kickstartDS/ds-agency-premium#readme",
6
6
  "bugs": {
@@ -1,22 +0,0 @@
1
- /**
2
- * This file was automatically generated by json-schema-to-typescript.
3
- * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
4
- * and run json-schema-to-typescript to regenerate this file.
5
- */
6
- import { TestimonialProps } from "./TestimonialProps-94bdeac9.js";
7
- /**
8
- * The testimonial layout
9
- */
10
- type Layout = "slider" | "list" | "alternating";
11
- /**
12
- * Add testimonials featuring an image, a quote, a source and a rating
13
- */
14
- type Testimonials = TestimonialProps[];
15
- /**
16
- * Display testimonials with an optional image and rating
17
- */
18
- interface TestimonialsProps {
19
- layout?: Layout;
20
- testimonial?: Testimonials;
21
- }
22
- export { Layout, Testimonials, TestimonialsProps };