@kickstartds/ds-agency-premium 1.5.35 → 1.5.37

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.
Files changed (40) hide show
  1. package/dist/BlogOverviewProps-9f207f1c.d.ts +1 -1
  2. package/dist/{BlogPostProps-d9decb7c.d.ts → BlogPostProps-6b3cff22.d.ts} +1 -1
  3. package/dist/DividerProps-2ef31901.d.ts +26 -0
  4. package/dist/HtmlProps-8e3e725a.d.ts +23 -0
  5. package/dist/PageProps-aa29c554.d.ts +1 -1
  6. package/dist/{SectionProps-83d399b4.d.ts → SectionProps-7a46a8ad.d.ts} +3 -1
  7. package/dist/components/blog-overview/blog-overview.schema.dereffed.json +63 -0
  8. package/dist/components/blog-post/blog-post.schema.dereffed.json +63 -0
  9. package/dist/components/blog-post/index.d.ts +1 -1
  10. package/dist/components/divider/index.d.ts +1 -26
  11. package/dist/components/html/html.schema.dereffed.json +30 -0
  12. package/dist/components/html/html.schema.json +2 -2
  13. package/dist/components/html/index.d.ts +5 -27
  14. package/dist/components/index/index.d.ts +1 -1
  15. package/dist/components/page/page.schema.dereffed.json +63 -0
  16. package/dist/components/page-wrapper/tokens.css +1 -1
  17. package/dist/components/section/index.d.ts +1 -1
  18. package/dist/components/section/section.schema.dereffed.json +63 -0
  19. package/dist/components/section/section.schema.json +6 -0
  20. package/dist/static/img/screenshots/blog-blog-aside--default.png +0 -0
  21. package/dist/static/img/screenshots/blog-blog-author--default.png +0 -0
  22. package/dist/static/img/screenshots/components-contact--wide-image.png +0 -0
  23. package/dist/static/img/screenshots/components-stats--count-up-with-description.png +0 -0
  24. package/dist/static/img/screenshots/components-stats--count-up-with-icons.png +0 -0
  25. package/dist/static/img/screenshots/components-teaser-card--page-navigation.png +0 -0
  26. package/dist/static/img/screenshots/components-testimonials--slider-layout.png +0 -0
  27. package/dist/static/img/screenshots/components-testimonials--with-rating.png +0 -0
  28. package/dist/static/img/screenshots/layout-divider--accent.png +0 -0
  29. package/dist/static/img/screenshots/layout-divider--default.png +0 -0
  30. package/dist/static/img/screenshots/layout-footer--footer.png +0 -0
  31. package/dist/static/img/screenshots/layout-slider--with-arrows.png +0 -0
  32. package/dist/static/img/screenshots/layout-slider--with-autoplay.png +0 -0
  33. package/dist/static/img/screenshots/layout-slider--with-nav.png +0 -0
  34. package/dist/static/img/screenshots/layout-slider--with-teased-neighbours.png +0 -0
  35. package/dist/static/img/screenshots/pages-archetypes--blog-post.png +0 -0
  36. package/dist/static/img/screenshots/pages-archetypes--overview.png +0 -0
  37. package/dist/tokens/themes.css +4 -4
  38. package/dist/tokens/tokens.css +1 -1
  39. package/dist/tokens/tokens.js +1 -1
  40. package/package.json +1 -1
@@ -3,7 +3,7 @@
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
- import { SectionProps } from "./SectionProps-83d399b4.js";
6
+ import { SectionProps } from "./SectionProps-7a46a8ad.js";
7
7
  import { BlogTeaserProps } from "./BlogTeaserProps-f5855e93.js";
8
8
  import { CtaProps } from "./CtaProps-93230a76.js";
9
9
  import { SeoProps } from "./SeoProps-f2d6dcaa.js";
@@ -5,7 +5,7 @@
5
5
  */
6
6
  import { BlogHeadProps } from "./BlogHeadProps-3f6e4072.js";
7
7
  import { BlogAsideProps } from "./BlogAsideProps-d9decb7c.js";
8
- import { SectionProps } from "./SectionProps-83d399b4.js";
8
+ import { SectionProps } from "./SectionProps-7a46a8ad.js";
9
9
  import { CtaProps } from "./CtaProps-93230a76.js";
10
10
  import { SeoProps } from "./SeoProps-f2d6dcaa.js";
11
11
  /**
@@ -0,0 +1,26 @@
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
+ /**
7
+ * Choose a variant for the divider
8
+ */
9
+ type StyleOfTheDivider = "default" | "accent";
10
+ /**
11
+ * Add additional css classes that should be applied to the divider
12
+ */
13
+ type AdditionalClasses = string;
14
+ /**
15
+ * Optional custom component identifier
16
+ */
17
+ type KsComponentAttribute = string;
18
+ /**
19
+ * Dividers bring clarity to a layout by grouping and dividing content in close proximity.
20
+ */
21
+ interface DividerProps {
22
+ variant?: StyleOfTheDivider;
23
+ className?: AdditionalClasses;
24
+ component?: KsComponentAttribute;
25
+ }
26
+ export { StyleOfTheDivider, AdditionalClasses, KsComponentAttribute, DividerProps };
@@ -0,0 +1,23 @@
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
+ type HTMLString = string;
7
+ /**
8
+ * Add additional css classes that should be applied to the element
9
+ */
10
+ type AdditionalClasses = string;
11
+ /**
12
+ * Optional custom component identifier
13
+ */
14
+ type KsComponentAttribute = string;
15
+ /**
16
+ * Display raw HTML.
17
+ */
18
+ interface HtmlProps {
19
+ html?: HTMLString;
20
+ className?: AdditionalClasses;
21
+ component?: KsComponentAttribute;
22
+ }
23
+ export { HTMLString, AdditionalClasses, KsComponentAttribute, HtmlProps };
@@ -3,7 +3,7 @@
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
- import { SectionProps } from "./SectionProps-83d399b4.js";
6
+ import { SectionProps } from "./SectionProps-7a46a8ad.js";
7
7
  import { SeoProps } from "./SeoProps-f2d6dcaa.js";
8
8
  /**
9
9
  * Collection of sections (with their contents) to render on the page
@@ -4,10 +4,12 @@
4
4
  * and run json-schema-to-typescript to regenerate this file.
5
5
  */
6
6
  import { CtaProps } from "./CtaProps-93230a76.js";
7
+ import { DividerProps } from "./DividerProps-2ef31901.js";
7
8
  import { FaqProps } from "./FaqProps-ad618cd5.js";
8
9
  import { FeaturesProps } from "./FeaturesProps-b05859d6.js";
9
10
  import { GalleryProps } from "./GalleryProps-76e7de44.js";
10
11
  import { HeroProps } from "./HeroProps-cf82a16d.js";
12
+ import { HtmlProps } from "./HtmlProps-8e3e725a.js";
11
13
  import { ImageStoryProps } from "./ImageStoryProps-e853e1e7.js";
12
14
  import { ImageTextProps } from "./ImageTextProps-9286cca4.js";
13
15
  import { LogosProps } from "./LogosProps-f9474fe2.js";
@@ -102,7 +104,7 @@ type TileWidth = "smallest" | "default" | "medium" | "large" | "largest";
102
104
  /**
103
105
  * Allowed components for content
104
106
  */
105
- type Content = (CtaProps | FaqProps | FeaturesProps | GalleryProps | HeroProps | ImageStoryProps | ImageTextProps | LogosProps | MosaicProps | SliderProps | StatsProps | TeaserCardProps | TestimonialsProps | TextProps | VideoCurtainProps)[];
107
+ type Content = (CtaProps | DividerProps | FaqProps | FeaturesProps | GalleryProps | HeroProps | HtmlProps | ImageStoryProps | ImageTextProps | LogosProps | MosaicProps | SliderProps | StatsProps | TeaserCardProps | TestimonialsProps | TextProps | VideoCurtainProps)[];
106
108
  /**
107
109
  * Buttons of the Button Group
108
110
  */
@@ -396,6 +396,39 @@
396
396
  },
397
397
  "additionalProperties": false
398
398
  },
399
+ {
400
+ "$schema": "http://json-schema.org/draft-07/schema#",
401
+ "$id": "http://schema.mydesignsystem.com/divider.schema.json",
402
+ "title": "Divider",
403
+ "description": "Dividers bring clarity to a layout by grouping and dividing content in close proximity.",
404
+ "type": "object",
405
+ "properties": {
406
+ "variant": {
407
+ "title": "Style of the divider",
408
+ "type": "string",
409
+ "description": "Choose a variant for the divider",
410
+ "enum": [
411
+ "default",
412
+ "accent"
413
+ ],
414
+ "default": "default"
415
+ },
416
+ "className": {
417
+ "type": "string",
418
+ "title": "Additional Classes",
419
+ "description": "Add additional css classes that should be applied to the divider"
420
+ },
421
+ "component": {
422
+ "title": "`ks-component` attribute",
423
+ "description": "Optional custom component identifier",
424
+ "type": "string"
425
+ },
426
+ "type": {
427
+ "const": "divider"
428
+ }
429
+ },
430
+ "additionalProperties": false
431
+ },
399
432
  {
400
433
  "$schema": "http://json-schema.org/draft-07/schema#",
401
434
  "$id": "http://schema.mydesignsystem.com/faq.schema.json",
@@ -858,6 +891,36 @@
858
891
  },
859
892
  "additionalProperties": false
860
893
  },
894
+ {
895
+ "$schema": "http://json-schema.org/draft-07/schema#",
896
+ "$id": "http://schema.mydesignsystem.com/html.schema.json",
897
+ "title": "Html",
898
+ "description": "Display raw HTML.",
899
+ "type": "object",
900
+ "properties": {
901
+ "html": {
902
+ "title": "HTML string",
903
+ "type": "string",
904
+ "examples": [
905
+ "<p>Hello world!</p>"
906
+ ]
907
+ },
908
+ "className": {
909
+ "title": "Additional Classes",
910
+ "description": "Add additional css classes that should be applied to the element",
911
+ "type": "string"
912
+ },
913
+ "component": {
914
+ "title": "`ks-component` attribute",
915
+ "description": "Optional custom component identifier",
916
+ "type": "string"
917
+ },
918
+ "type": {
919
+ "const": "html"
920
+ }
921
+ },
922
+ "additionalProperties": false
923
+ },
861
924
  {
862
925
  "$schema": "http://json-schema.org/draft-07/schema#",
863
926
  "$id": "http://schema.mydesignsystem.com/image-story.schema.json",
@@ -664,6 +664,39 @@
664
664
  },
665
665
  "additionalProperties": false
666
666
  },
667
+ {
668
+ "$schema": "http://json-schema.org/draft-07/schema#",
669
+ "$id": "http://schema.mydesignsystem.com/divider.schema.json",
670
+ "title": "Divider",
671
+ "description": "Dividers bring clarity to a layout by grouping and dividing content in close proximity.",
672
+ "type": "object",
673
+ "properties": {
674
+ "variant": {
675
+ "title": "Style of the divider",
676
+ "type": "string",
677
+ "description": "Choose a variant for the divider",
678
+ "enum": [
679
+ "default",
680
+ "accent"
681
+ ],
682
+ "default": "default"
683
+ },
684
+ "className": {
685
+ "type": "string",
686
+ "title": "Additional Classes",
687
+ "description": "Add additional css classes that should be applied to the divider"
688
+ },
689
+ "component": {
690
+ "title": "`ks-component` attribute",
691
+ "description": "Optional custom component identifier",
692
+ "type": "string"
693
+ },
694
+ "type": {
695
+ "const": "divider"
696
+ }
697
+ },
698
+ "additionalProperties": false
699
+ },
667
700
  {
668
701
  "$schema": "http://json-schema.org/draft-07/schema#",
669
702
  "$id": "http://schema.mydesignsystem.com/faq.schema.json",
@@ -1126,6 +1159,36 @@
1126
1159
  },
1127
1160
  "additionalProperties": false
1128
1161
  },
1162
+ {
1163
+ "$schema": "http://json-schema.org/draft-07/schema#",
1164
+ "$id": "http://schema.mydesignsystem.com/html.schema.json",
1165
+ "title": "Html",
1166
+ "description": "Display raw HTML.",
1167
+ "type": "object",
1168
+ "properties": {
1169
+ "html": {
1170
+ "title": "HTML string",
1171
+ "type": "string",
1172
+ "examples": [
1173
+ "<p>Hello world!</p>"
1174
+ ]
1175
+ },
1176
+ "className": {
1177
+ "title": "Additional Classes",
1178
+ "description": "Add additional css classes that should be applied to the element",
1179
+ "type": "string"
1180
+ },
1181
+ "component": {
1182
+ "title": "`ks-component` attribute",
1183
+ "description": "Optional custom component identifier",
1184
+ "type": "string"
1185
+ },
1186
+ "type": {
1187
+ "const": "html"
1188
+ }
1189
+ },
1190
+ "additionalProperties": false
1191
+ },
1129
1192
  {
1130
1193
  "$schema": "http://json-schema.org/draft-07/schema#",
1131
1194
  "$id": "http://schema.mydesignsystem.com/image-story.schema.json",
@@ -1,4 +1,4 @@
1
- import { BlogPostProps } from "../../BlogPostProps-d9decb7c.js";
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,31 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { HTMLAttributes, FC, PropsWithChildren } from "react";
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
- * Choose a variant for the divider
11
- */
12
- type StyleOfTheDivider = "default" | "accent";
13
- /**
14
- * Add additional css classes that should be applied to the divider
15
- */
16
- type AdditionalClasses = string;
17
- /**
18
- * Optional custom component identifier
19
- */
20
- type KsComponentAttribute = string;
21
- /**
22
- * Dividers bring clarity to a layout by grouping and dividing content in close proximity.
23
- */
24
- interface DividerProps {
25
- variant?: StyleOfTheDivider;
26
- className?: AdditionalClasses;
27
- component?: KsComponentAttribute;
28
- }
3
+ import { DividerProps } from "../../DividerProps-2ef31901.js";
29
4
  declare const DividerContextDefault: import("react").ForwardRefExoticComponent<DividerProps & HTMLAttributes<HTMLHRElement> & import("react").RefAttributes<HTMLHRElement>>;
30
5
  declare const DividerContext: import("react").Context<import("react").ForwardRefExoticComponent<DividerProps & HTMLAttributes<HTMLHRElement> & import("react").RefAttributes<HTMLHRElement>>>;
31
6
  declare const Divider: import("react").ForwardRefExoticComponent<DividerProps & HTMLAttributes<HTMLHRElement> & import("react").RefAttributes<HTMLHRElement>>;
@@ -0,0 +1,30 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "http://schema.mydesignsystem.com/html.schema.json",
4
+ "title": "Html",
5
+ "description": "Display raw HTML.",
6
+ "type": "object",
7
+ "properties": {
8
+ "html": {
9
+ "title": "HTML string",
10
+ "type": "string",
11
+ "examples": [
12
+ "<p>Hello world!</p>"
13
+ ]
14
+ },
15
+ "className": {
16
+ "title": "Additional Classes",
17
+ "description": "Add additional css classes that should be applied to the element",
18
+ "type": "string"
19
+ },
20
+ "component": {
21
+ "title": "`ks-component` attribute",
22
+ "description": "Optional custom component identifier",
23
+ "type": "string"
24
+ },
25
+ "type": {
26
+ "const": "html"
27
+ }
28
+ },
29
+ "additionalProperties": false
30
+ }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "http://json-schema.org/draft-07/schema#",
3
- "$id": "http://schema.kickstartds.com/base/html.schema.json",
4
- "title": "HTML",
3
+ "$id": "http://schema.mydesignsystem.com/html.schema.json",
4
+ "title": "Html",
5
5
  "description": "Display raw HTML.",
6
6
  "type": "object",
7
7
  "properties": {
@@ -1,30 +1,8 @@
1
1
  /// <reference types="react" />
2
2
  import { HTMLAttributes } from "react";
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 `yarn run schema` to regenerate this file.
8
- */
9
- type HTMLString = string;
10
- /**
11
- * Add additional css classes that should be applied to the element
12
- */
13
- type AdditionalClasses = string;
14
- /**
15
- * Optional custom component identifier
16
- */
17
- type KsComponentAttribute = string;
18
- /**
19
- * Display raw HTML.
20
- */
21
- interface HTMLProps {
22
- html?: HTMLString;
23
- className?: AdditionalClasses;
24
- component?: KsComponentAttribute;
25
- }
26
- declare const HtmlContextDefault: import("react").ForwardRefExoticComponent<HTMLProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
27
- declare const HtmlContext: import("react").Context<import("react").ForwardRefExoticComponent<HTMLProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>>;
28
- declare const Html: import("react").ForwardRefExoticComponent<HTMLProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
29
- export type { HTMLProps };
3
+ import { HtmlProps } from "../../HtmlProps-8e3e725a.js";
4
+ declare const HtmlContextDefault: import("react").ForwardRefExoticComponent<HtmlProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
5
+ declare const HtmlContext: import("react").Context<import("react").ForwardRefExoticComponent<HtmlProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>>;
6
+ declare const Html: import("react").ForwardRefExoticComponent<HtmlProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
7
+ export type { HtmlProps };
30
8
  export { HtmlContextDefault, HtmlContext, Html };
@@ -24,7 +24,7 @@ interface SettingsProps {
24
24
  */
25
25
  seo: SeoProps;
26
26
  }
27
- export * from "../../BlogPostProps-d9decb7c.js";
27
+ export * from "../../BlogPostProps-6b3cff22.js";
28
28
  export * from "../../BlogOverviewProps-9f207f1c.js";
29
29
  export * from "../../PageProps-aa29c554.js";
30
30
  export { SettingsProps };
@@ -396,6 +396,39 @@
396
396
  },
397
397
  "additionalProperties": false
398
398
  },
399
+ {
400
+ "$schema": "http://json-schema.org/draft-07/schema#",
401
+ "$id": "http://schema.mydesignsystem.com/divider.schema.json",
402
+ "title": "Divider",
403
+ "description": "Dividers bring clarity to a layout by grouping and dividing content in close proximity.",
404
+ "type": "object",
405
+ "properties": {
406
+ "variant": {
407
+ "title": "Style of the divider",
408
+ "type": "string",
409
+ "description": "Choose a variant for the divider",
410
+ "enum": [
411
+ "default",
412
+ "accent"
413
+ ],
414
+ "default": "default"
415
+ },
416
+ "className": {
417
+ "type": "string",
418
+ "title": "Additional Classes",
419
+ "description": "Add additional css classes that should be applied to the divider"
420
+ },
421
+ "component": {
422
+ "title": "`ks-component` attribute",
423
+ "description": "Optional custom component identifier",
424
+ "type": "string"
425
+ },
426
+ "type": {
427
+ "const": "divider"
428
+ }
429
+ },
430
+ "additionalProperties": false
431
+ },
399
432
  {
400
433
  "$schema": "http://json-schema.org/draft-07/schema#",
401
434
  "$id": "http://schema.mydesignsystem.com/faq.schema.json",
@@ -858,6 +891,36 @@
858
891
  },
859
892
  "additionalProperties": false
860
893
  },
894
+ {
895
+ "$schema": "http://json-schema.org/draft-07/schema#",
896
+ "$id": "http://schema.mydesignsystem.com/html.schema.json",
897
+ "title": "Html",
898
+ "description": "Display raw HTML.",
899
+ "type": "object",
900
+ "properties": {
901
+ "html": {
902
+ "title": "HTML string",
903
+ "type": "string",
904
+ "examples": [
905
+ "<p>Hello world!</p>"
906
+ ]
907
+ },
908
+ "className": {
909
+ "title": "Additional Classes",
910
+ "description": "Add additional css classes that should be applied to the element",
911
+ "type": "string"
912
+ },
913
+ "component": {
914
+ "title": "`ks-component` attribute",
915
+ "description": "Optional custom component identifier",
916
+ "type": "string"
917
+ },
918
+ "type": {
919
+ "const": "html"
920
+ }
921
+ },
922
+ "additionalProperties": false
923
+ },
861
924
  {
862
925
  "$schema": "http://json-schema.org/draft-07/schema#",
863
926
  "$id": "http://schema.mydesignsystem.com/image-story.schema.json",
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 14 Oct 2024 17:20:41 GMT
3
+ * Generated on Wed, 23 Oct 2024 16:43:36 GMT
4
4
  */
5
5
  :root, [ks-theme] {
6
6
  --ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { HTMLAttributes, FC, PropsWithChildren } from "react";
3
- import { SectionProps } from "../../SectionProps-83d399b4.js";
3
+ import { SectionProps } from "../../SectionProps-7a46a8ad.js";
4
4
  declare const SectionContextDefault: import("react").ForwardRefExoticComponent<SectionProps & Omit<HTMLAttributes<HTMLElement>, "style" | "content"> & import("react").RefAttributes<HTMLDivElement>>;
5
5
  declare const SectionContext: import("react").Context<import("react").ForwardRefExoticComponent<SectionProps & Omit<HTMLAttributes<HTMLElement>, "style" | "content"> & import("react").RefAttributes<HTMLDivElement>>>;
6
6
  declare const Section: import("react").ForwardRefExoticComponent<SectionProps & Omit<HTMLAttributes<HTMLElement>, "style" | "content"> & import("react").RefAttributes<HTMLDivElement>>;
@@ -382,6 +382,39 @@
382
382
  },
383
383
  "additionalProperties": false
384
384
  },
385
+ {
386
+ "$schema": "http://json-schema.org/draft-07/schema#",
387
+ "$id": "http://schema.mydesignsystem.com/divider.schema.json",
388
+ "title": "Divider",
389
+ "description": "Dividers bring clarity to a layout by grouping and dividing content in close proximity.",
390
+ "type": "object",
391
+ "properties": {
392
+ "variant": {
393
+ "title": "Style of the divider",
394
+ "type": "string",
395
+ "description": "Choose a variant for the divider",
396
+ "enum": [
397
+ "default",
398
+ "accent"
399
+ ],
400
+ "default": "default"
401
+ },
402
+ "className": {
403
+ "type": "string",
404
+ "title": "Additional Classes",
405
+ "description": "Add additional css classes that should be applied to the divider"
406
+ },
407
+ "component": {
408
+ "title": "`ks-component` attribute",
409
+ "description": "Optional custom component identifier",
410
+ "type": "string"
411
+ },
412
+ "type": {
413
+ "const": "divider"
414
+ }
415
+ },
416
+ "additionalProperties": false
417
+ },
385
418
  {
386
419
  "$schema": "http://json-schema.org/draft-07/schema#",
387
420
  "$id": "http://schema.mydesignsystem.com/faq.schema.json",
@@ -844,6 +877,36 @@
844
877
  },
845
878
  "additionalProperties": false
846
879
  },
880
+ {
881
+ "$schema": "http://json-schema.org/draft-07/schema#",
882
+ "$id": "http://schema.mydesignsystem.com/html.schema.json",
883
+ "title": "Html",
884
+ "description": "Display raw HTML.",
885
+ "type": "object",
886
+ "properties": {
887
+ "html": {
888
+ "title": "HTML string",
889
+ "type": "string",
890
+ "examples": [
891
+ "<p>Hello world!</p>"
892
+ ]
893
+ },
894
+ "className": {
895
+ "title": "Additional Classes",
896
+ "description": "Add additional css classes that should be applied to the element",
897
+ "type": "string"
898
+ },
899
+ "component": {
900
+ "title": "`ks-component` attribute",
901
+ "description": "Optional custom component identifier",
902
+ "type": "string"
903
+ },
904
+ "type": {
905
+ "const": "html"
906
+ }
907
+ },
908
+ "additionalProperties": false
909
+ },
847
910
  {
848
911
  "$schema": "http://json-schema.org/draft-07/schema#",
849
912
  "$id": "http://schema.mydesignsystem.com/image-story.schema.json",
@@ -165,6 +165,9 @@
165
165
  {
166
166
  "$ref": "http://schema.mydesignsystem.com/cta.schema.json"
167
167
  },
168
+ {
169
+ "$ref": "http://schema.mydesignsystem.com/divider.schema.json"
170
+ },
168
171
  {
169
172
  "$ref": "http://schema.mydesignsystem.com/faq.schema.json"
170
173
  },
@@ -177,6 +180,9 @@
177
180
  {
178
181
  "$ref": "http://schema.mydesignsystem.com/hero.schema.json"
179
182
  },
183
+ {
184
+ "$ref": "http://schema.mydesignsystem.com/html.schema.json"
185
+ },
180
186
  {
181
187
  "$ref": "http://schema.mydesignsystem.com/image-story.schema.json"
182
188
  },
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 14 Oct 2024 17:20:44 GMT
3
+ * Generated on Wed, 23 Oct 2024 16:43: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 Mon, 14 Oct 2024 17:20:47 GMT
2730
+ * Generated on Wed, 23 Oct 2024 16:43: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 Mon, 14 Oct 2024 17:20:46 GMT
5461
+ * Generated on Wed, 23 Oct 2024 16:43: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 Mon, 14 Oct 2024 17:20:49 GMT
8462
+ * Generated on Wed, 23 Oct 2024 16:43: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);
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 14 Oct 2024 17:20:41 GMT
3
+ * Generated on Wed, 23 Oct 2024 16:43:36 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, 14 Oct 2024 17:20:42 GMT
3
+ * Generated on Wed, 23 Oct 2024 16:43:37 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.5.35",
3
+ "version": "1.5.37",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kickstartDS/ds-agency-premium#readme",
6
6
  "bugs": {