@kickstartds/ds-agency-premium 1.3.5 → 1.3.7

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 (31) hide show
  1. package/dist/{FooterProps-55aaf559.d.ts → FooterProps-d28ccfb6.d.ts} +6 -1
  2. package/dist/{HeaderProps-ae331ab2.d.ts → HeaderProps-34d278ee.d.ts} +6 -1
  3. package/dist/SectionProps-93230a76.d.ts +1 -1
  4. package/dist/{SliderProps-8cae490d.d.ts → SliderProps-93230a76.d.ts} +16 -1
  5. package/dist/components/blog-post/index.d.ts +1 -1
  6. package/dist/components/button/index.d.ts +1 -1
  7. package/dist/components/footer/footer.schema.dereffed.json +6 -0
  8. package/dist/components/footer/footer.schema.json +6 -0
  9. package/dist/components/footer/index.d.ts +1 -1
  10. package/dist/components/footer/index.js +1 -1
  11. package/dist/components/header/header.schema.dereffed.json +6 -0
  12. package/dist/components/header/header.schema.json +6 -0
  13. package/dist/components/header/index.d.ts +1 -1
  14. package/dist/components/header/index.js +1 -1
  15. package/dist/components/index/index.d.ts +31 -4
  16. package/dist/components/page/page.schema.dereffed.json +1153 -1
  17. package/dist/components/page/page.schema.json +32 -0
  18. package/dist/components/page-wrapper/tokens.css +1 -1
  19. package/dist/components/presets.json +18 -16
  20. package/dist/components/section/section.schema.dereffed.json +1119 -1
  21. package/dist/components/section/section.schema.json +1 -1
  22. package/dist/components/settings/settings.schema.dereffed.json +12 -0
  23. package/dist/components/slider/index.d.ts +1 -1
  24. package/dist/components/slider/slider.schema.dereffed.json +1118 -0
  25. package/dist/components/slider/slider.schema.json +39 -0
  26. package/dist/components/testimonials/index.d.ts +1 -1
  27. package/dist/tokens/themes.css +4 -4
  28. package/dist/tokens/tokens.css +1 -1
  29. package/dist/tokens/tokens.js +1 -1
  30. package/package.json +1 -1
  31. /package/dist/{BlogPostProps-f9a49428.d.ts → BlogPostProps-0910f130.d.ts} +0 -0
@@ -196,7 +196,7 @@
196
196
  "list",
197
197
  "slider"
198
198
  ],
199
- "default": "default"
199
+ "default": "list"
200
200
  },
201
201
  "tileWidth": {
202
202
  "type": "string",
@@ -1382,6 +1382,1124 @@
1382
1382
  "description": "Additional css classes attached to the wrapping element",
1383
1383
  "type": "string"
1384
1384
  },
1385
+ "components": {
1386
+ "type": "array",
1387
+ "title": "Content",
1388
+ "description": "Allowed components for content",
1389
+ "items": {
1390
+ "anyOf": [
1391
+ {
1392
+ "$schema": "http://json-schema.org/draft-07/schema#",
1393
+ "$id": "http://schema.mydesignsystem.com/cta.schema.json",
1394
+ "title": "Cta",
1395
+ "type": "object",
1396
+ "properties": {
1397
+ "headline": {
1398
+ "title": "Component Headline",
1399
+ "description": "Headline for the Component element",
1400
+ "type": "string",
1401
+ "examples": [
1402
+ "Headline"
1403
+ ]
1404
+ },
1405
+ "sub": {
1406
+ "title": "Component Subheadline",
1407
+ "description": "Subheadline below the component headline",
1408
+ "type": "string",
1409
+ "examples": [
1410
+ "Subheadline"
1411
+ ]
1412
+ },
1413
+ "text": {
1414
+ "title": "Component Text",
1415
+ "description": "Info text for the component element",
1416
+ "type": "string"
1417
+ },
1418
+ "highlightText": {
1419
+ "type": "boolean",
1420
+ "title": "Highlight Text",
1421
+ "description": "Visually highlight the text",
1422
+ "default": false
1423
+ },
1424
+ "colorNeutral": {
1425
+ "title": "Color Neutral",
1426
+ "description": "Make the text and buttons color neutral",
1427
+ "default": false,
1428
+ "type": "boolean"
1429
+ },
1430
+ "fullWidth": {
1431
+ "title": "Width",
1432
+ "description": "Set the width of the content to the full width of the element",
1433
+ "type": "boolean",
1434
+ "default": false
1435
+ },
1436
+ "buttons": {
1437
+ "type": "array",
1438
+ "items": {
1439
+ "title": "Button",
1440
+ "type": "object",
1441
+ "properties": {
1442
+ "label": {
1443
+ "type": "string",
1444
+ "title": "Label",
1445
+ "description": "Text content to display inside the button",
1446
+ "examples": [
1447
+ "Book a meeting"
1448
+ ]
1449
+ },
1450
+ "icon": {
1451
+ "type": "string",
1452
+ "title": "Icon",
1453
+ "description": "Choose an icon"
1454
+ },
1455
+ "target": {
1456
+ "type": "string",
1457
+ "title": "Target",
1458
+ "description": "Target that should be linked, makes the button behave like a link semantically",
1459
+ "format": "uri"
1460
+ }
1461
+ },
1462
+ "additionalProperties": false
1463
+ }
1464
+ },
1465
+ "backgroundColor": {
1466
+ "title": "Background color",
1467
+ "description": "Background color for the whole element",
1468
+ "type": "string",
1469
+ "format": "color"
1470
+ },
1471
+ "backgroundImage": {
1472
+ "title": "Background image",
1473
+ "description": "Background image for the whole element",
1474
+ "type": "string",
1475
+ "format": "image"
1476
+ },
1477
+ "image": {
1478
+ "title": "Image",
1479
+ "description": "Image displayed alongside the text content",
1480
+ "type": "object",
1481
+ "properties": {
1482
+ "src": {
1483
+ "title": "Image source",
1484
+ "description": "Image source to use",
1485
+ "type": "string",
1486
+ "format": "image"
1487
+ },
1488
+ "padding": {
1489
+ "title": "Padding",
1490
+ "description": "Toggle padding of the image",
1491
+ "type": "boolean",
1492
+ "default": true
1493
+ },
1494
+ "alt": {
1495
+ "title": "Alt text",
1496
+ "description": "Image description",
1497
+ "type": "string"
1498
+ }
1499
+ },
1500
+ "additionalProperties": false
1501
+ },
1502
+ "order": {
1503
+ "title": "Order",
1504
+ "description": "Choose what comes first on mobile and desktop: image or text",
1505
+ "type": "object",
1506
+ "properties": {
1507
+ "mobileImageLast": {
1508
+ "title": "Mobile image after text",
1509
+ "description": "Switch to displaying the image after the text on mobile",
1510
+ "type": "boolean",
1511
+ "default": false
1512
+ },
1513
+ "desktopImageLast": {
1514
+ "title": "Desktop image after text",
1515
+ "description": "Switch to displaying the image after the text on desktop",
1516
+ "type": "boolean",
1517
+ "default": true
1518
+ }
1519
+ },
1520
+ "additionalProperties": false
1521
+ },
1522
+ "textAlign": {
1523
+ "title": "Text Alignment",
1524
+ "description": "Choose the alginment of the text",
1525
+ "enum": [
1526
+ "left",
1527
+ "center"
1528
+ ],
1529
+ "type": "string",
1530
+ "default": "left"
1531
+ },
1532
+ "contentAlign": {
1533
+ "title": "Vertical alignment of the content",
1534
+ "description": "Select a vertical alignment for the image",
1535
+ "type": "string",
1536
+ "enum": [
1537
+ "center",
1538
+ "top",
1539
+ "bottom"
1540
+ ],
1541
+ "default": "center"
1542
+ },
1543
+ "type": {
1544
+ "const": "cta"
1545
+ }
1546
+ },
1547
+ "additionalProperties": false
1548
+ },
1549
+ {
1550
+ "$schema": "http://json-schema.org/draft-07/schema#",
1551
+ "$id": "http://schema.mydesignsystem.com/features.schema.json",
1552
+ "title": "Features",
1553
+ "description": "Component used to display a set of features",
1554
+ "type": "object",
1555
+ "properties": {
1556
+ "layout": {
1557
+ "type": "string",
1558
+ "title": "Layout",
1559
+ "description": "The layout variant to use for the features",
1560
+ "enum": [
1561
+ "largeTiles",
1562
+ "smallTiles",
1563
+ "list"
1564
+ ],
1565
+ "default": "largeTiles"
1566
+ },
1567
+ "style": {
1568
+ "type": "string",
1569
+ "enum": [
1570
+ "intext",
1571
+ "stack",
1572
+ "centered",
1573
+ "besideLarge",
1574
+ "besideSmall"
1575
+ ],
1576
+ "default": "stack"
1577
+ },
1578
+ "ctas": {
1579
+ "type": "object",
1580
+ "properties": {
1581
+ "toggle": {
1582
+ "type": "boolean",
1583
+ "default": true,
1584
+ "title": "CTA Toggle",
1585
+ "description": "Activate/disable the CTAs"
1586
+ },
1587
+ "style": {
1588
+ "type": "string",
1589
+ "enum": [
1590
+ "button",
1591
+ "link",
1592
+ "intext"
1593
+ ],
1594
+ "default": "link"
1595
+ }
1596
+ },
1597
+ "additionalProperties": false
1598
+ },
1599
+ "feature": {
1600
+ "type": "array",
1601
+ "title": "Features",
1602
+ "description": "The features to display",
1603
+ "items": {
1604
+ "$schema": "http://json-schema.org/draft-07/schema#",
1605
+ "$id": "http://schema.mydesignsystem.com/feature.schema.json",
1606
+ "title": "Feature",
1607
+ "description": "Partial Component used to display a feature",
1608
+ "type": "object",
1609
+ "properties": {
1610
+ "icon": {
1611
+ "type": "string",
1612
+ "title": "Icon",
1613
+ "description": "The icon for the feature",
1614
+ "examples": [
1615
+ "person"
1616
+ ]
1617
+ },
1618
+ "title": {
1619
+ "type": "string",
1620
+ "title": "Title",
1621
+ "description": "The title of the feature",
1622
+ "examples": [
1623
+ "Feature 1"
1624
+ ]
1625
+ },
1626
+ "text": {
1627
+ "type": "string",
1628
+ "title": "Text",
1629
+ "description": "The description of the feature",
1630
+ "examples": [
1631
+ "This is a feature"
1632
+ ]
1633
+ },
1634
+ "style": {
1635
+ "type": "string",
1636
+ "enum": [
1637
+ "intext",
1638
+ "stack",
1639
+ "centered",
1640
+ "besideLarge",
1641
+ "besideSmall"
1642
+ ],
1643
+ "default": "stack"
1644
+ },
1645
+ "cta": {
1646
+ "type": "object",
1647
+ "title": "Call to Action",
1648
+ "description": "The call to action",
1649
+ "properties": {
1650
+ "target": {
1651
+ "type": "string",
1652
+ "title": "Call to Action target",
1653
+ "description": "The CTA target",
1654
+ "default": "#",
1655
+ "format": "uri"
1656
+ },
1657
+ "label": {
1658
+ "type": "string",
1659
+ "title": "Link Label",
1660
+ "description": "The text label displayed on the link",
1661
+ "default": "See more",
1662
+ "examples": [
1663
+ "See all our partners"
1664
+ ]
1665
+ },
1666
+ "toggle": {
1667
+ "type": "boolean",
1668
+ "title": "Call to Action Toggle",
1669
+ "description": "Activate/disable the CTAs",
1670
+ "default": true
1671
+ },
1672
+ "style": {
1673
+ "type": "string",
1674
+ "description": "Choose the style of the CTA",
1675
+ "enum": [
1676
+ "button",
1677
+ "link",
1678
+ "intext"
1679
+ ],
1680
+ "default": "link"
1681
+ }
1682
+ },
1683
+ "additionalProperties": false
1684
+ },
1685
+ "type": {
1686
+ "const": "feature"
1687
+ }
1688
+ },
1689
+ "additionalProperties": false,
1690
+ "required": [
1691
+ "title"
1692
+ ]
1693
+ },
1694
+ "minItems": 1,
1695
+ "maxItems": 8
1696
+ },
1697
+ "type": {
1698
+ "const": "features"
1699
+ }
1700
+ },
1701
+ "additionalProperties": false
1702
+ },
1703
+ {
1704
+ "$schema": "http://json-schema.org/draft-07/schema#",
1705
+ "$id": "http://schema.mydesignsystem.com/gallery.schema.json",
1706
+ "title": "Gallery",
1707
+ "description": "Component used to display a gallery of images",
1708
+ "type": "object",
1709
+ "properties": {
1710
+ "images": {
1711
+ "type": "array",
1712
+ "title": "Images",
1713
+ "description": "The images to display in the gallery",
1714
+ "items": {
1715
+ "type": "object",
1716
+ "properties": {
1717
+ "src": {
1718
+ "type": "string",
1719
+ "title": "src",
1720
+ "format": "image",
1721
+ "description": "The source of the image",
1722
+ "examples": [
1723
+ "https://example.com/image1.jpg"
1724
+ ]
1725
+ },
1726
+ "alt": {
1727
+ "type": "string",
1728
+ "title": "Alt text",
1729
+ "description": "Alt text of the image",
1730
+ "examples": [
1731
+ "https://example.com/image1.jpg"
1732
+ ]
1733
+ },
1734
+ "caption": {
1735
+ "type": "string",
1736
+ "format": "markdown",
1737
+ "title": "Caption",
1738
+ "description": "The caption of the image",
1739
+ "examples": [
1740
+ "Caption Image"
1741
+ ]
1742
+ }
1743
+ },
1744
+ "additionalProperties": false,
1745
+ "required": [
1746
+ "src"
1747
+ ]
1748
+ },
1749
+ "minItems": 1,
1750
+ "maxItems": 10
1751
+ },
1752
+ "layout": {
1753
+ "type": "string",
1754
+ "title": "Layout",
1755
+ "description": "The layout of the gallery images",
1756
+ "enum": [
1757
+ "stack",
1758
+ "smallTiles",
1759
+ "largeTiles"
1760
+ ]
1761
+ },
1762
+ "aspectRatio": {
1763
+ "type": "string",
1764
+ "title": "Aspect Ratio",
1765
+ "description": "The aspect ratio of the gallery images",
1766
+ "enum": [
1767
+ "unset",
1768
+ "square",
1769
+ "wide",
1770
+ "landscape"
1771
+ ],
1772
+ "default": "unset"
1773
+ },
1774
+ "lightbox": {
1775
+ "type": "boolean",
1776
+ "title": "Lightbox",
1777
+ "description": "Display images in a lightbox gallery",
1778
+ "default": false
1779
+ },
1780
+ "type": {
1781
+ "const": "gallery"
1782
+ }
1783
+ },
1784
+ "additionalProperties": false,
1785
+ "required": [
1786
+ "images"
1787
+ ]
1788
+ },
1789
+ {
1790
+ "$schema": "http://json-schema.org/draft-07/schema#",
1791
+ "$id": "http://schema.mydesignsystem.com/hero.schema.json",
1792
+ "title": "Hero",
1793
+ "type": "object",
1794
+ "properties": {
1795
+ "headline": {
1796
+ "title": "Headline",
1797
+ "description": "Headline for the visual",
1798
+ "type": "string"
1799
+ },
1800
+ "sub": {
1801
+ "title": "Module Subheadline",
1802
+ "description": "Subheadline below the module headline",
1803
+ "type": "string"
1804
+ },
1805
+ "text": {
1806
+ "title": "Module Text",
1807
+ "description": "Info text for the module element",
1808
+ "type": "string"
1809
+ },
1810
+ "highlightText": {
1811
+ "type": "boolean",
1812
+ "title": "Highlight Text",
1813
+ "description": "Visually highlight the text",
1814
+ "default": false
1815
+ },
1816
+ "colorNeutral": {
1817
+ "title": "Color Neutral",
1818
+ "description": "Make the text and buttons color neutral",
1819
+ "default": false,
1820
+ "type": "boolean"
1821
+ },
1822
+ "height": {
1823
+ "title": "Height",
1824
+ "type": "string",
1825
+ "enum": [
1826
+ "small",
1827
+ "default",
1828
+ "fullImage",
1829
+ "fullScreen"
1830
+ ],
1831
+ "default": "default"
1832
+ },
1833
+ "textbox": {
1834
+ "type": "boolean",
1835
+ "title": "Textbox",
1836
+ "default": true,
1837
+ "description": "Toggle wether you want your text to be displayed within in box"
1838
+ },
1839
+ "buttons": {
1840
+ "type": "array",
1841
+ "items": {
1842
+ "title": "Button",
1843
+ "type": "object",
1844
+ "properties": {
1845
+ "label": {
1846
+ "type": "string",
1847
+ "title": "Label",
1848
+ "description": "Text content to display inside the button",
1849
+ "examples": [
1850
+ "Book a meeting"
1851
+ ]
1852
+ },
1853
+ "icon": {
1854
+ "type": "string",
1855
+ "title": "Icon",
1856
+ "description": "Choose an icon"
1857
+ },
1858
+ "target": {
1859
+ "type": "string",
1860
+ "title": "Target",
1861
+ "description": "Target that should be linked, makes the button behave like a link semantically",
1862
+ "format": "uri"
1863
+ }
1864
+ },
1865
+ "additionalProperties": false
1866
+ }
1867
+ },
1868
+ "overlay": {
1869
+ "title": "Grid layer",
1870
+ "description": "Enable grid layer",
1871
+ "type": "boolean",
1872
+ "default": false
1873
+ },
1874
+ "image": {
1875
+ "title": "Background image",
1876
+ "description": "Sources of background images for different screen sizes",
1877
+ "type": "object",
1878
+ "required": [
1879
+ "srcMobile"
1880
+ ],
1881
+ "properties": {
1882
+ "srcMobile": {
1883
+ "title": "Mobile image source",
1884
+ "description": "Background image source for small screens",
1885
+ "type": "string",
1886
+ "format": "image",
1887
+ "examples": [
1888
+ "https://picsum.photos/seed/kdsvisual/640/270"
1889
+ ]
1890
+ },
1891
+ "srcTablet": {
1892
+ "title": "Tablet image source",
1893
+ "description": "Background image source for medium screens",
1894
+ "type": "string",
1895
+ "format": "image",
1896
+ "examples": [
1897
+ "https://picsum.photos/seed/kdsvisual/1280/540"
1898
+ ]
1899
+ },
1900
+ "srcDesktop": {
1901
+ "title": "Desktop image source",
1902
+ "description": "Background image source for large screens",
1903
+ "type": "string",
1904
+ "format": "image",
1905
+ "examples": [
1906
+ "https://picsum.photos/seed/kdsvisual/1920/810"
1907
+ ]
1908
+ },
1909
+ "src": {
1910
+ "title": "Optional source",
1911
+ "description": "Override for img tag of picture element, if needed",
1912
+ "type": "string",
1913
+ "format": "image",
1914
+ "examples": [
1915
+ "https://picsum.photos/seed/kdsvisual/640/270"
1916
+ ]
1917
+ },
1918
+ "indent": {
1919
+ "title": "Image indent",
1920
+ "description": "Choose to indent the image horizontally on small screens",
1921
+ "type": "string",
1922
+ "enum": [
1923
+ "none",
1924
+ "left",
1925
+ "right"
1926
+ ],
1927
+ "default": "none"
1928
+ },
1929
+ "alt": {
1930
+ "title": "Alt text",
1931
+ "description": "Alt text to display for picture",
1932
+ "type": "string"
1933
+ }
1934
+ },
1935
+ "additionalProperties": false
1936
+ },
1937
+ "textPosition": {
1938
+ "title": "Module aligment",
1939
+ "description": "Choose the alginment of the module content",
1940
+ "enum": [
1941
+ "center",
1942
+ "below",
1943
+ "left",
1944
+ "right"
1945
+ ],
1946
+ "type": "string",
1947
+ "default": "bottom"
1948
+ },
1949
+ "type": {
1950
+ "const": "hero"
1951
+ }
1952
+ },
1953
+ "additionalProperties": false
1954
+ },
1955
+ {
1956
+ "$schema": "http://json-schema.org/draft-07/schema#",
1957
+ "$id": "http://schema.mydesignsystem.com/image-text.schema.json",
1958
+ "title": "Image Text",
1959
+ "description": "Component used to display an image beside or above/below a text block",
1960
+ "type": "object",
1961
+ "properties": {
1962
+ "text": {
1963
+ "type": "string",
1964
+ "format": "markdown",
1965
+ "title": "Text",
1966
+ "description": "Text content to display beside the image",
1967
+ "examples": [
1968
+ "This is a sample text"
1969
+ ]
1970
+ },
1971
+ "highlightText": {
1972
+ "type": "boolean",
1973
+ "title": "Highlight Text",
1974
+ "description": "Visually highlight the text",
1975
+ "default": false
1976
+ },
1977
+ "image": {
1978
+ "type": "object",
1979
+ "properties": {
1980
+ "src": {
1981
+ "type": "string",
1982
+ "format": "image",
1983
+ "title": "Image Source",
1984
+ "description": "URL of the image to display",
1985
+ "examples": [
1986
+ "http://example.com/image.jpg"
1987
+ ]
1988
+ },
1989
+ "alt": {
1990
+ "type": "string",
1991
+ "title": "Alt Text",
1992
+ "description": "Alt text of the image",
1993
+ "examples": [
1994
+ "http://example.com/image.jpg"
1995
+ ]
1996
+ }
1997
+ },
1998
+ "additionalProperties": false
1999
+ },
2000
+ "layout": {
2001
+ "type": "string",
2002
+ "enum": [
2003
+ "above",
2004
+ "below",
2005
+ "beside-right",
2006
+ "beside-left"
2007
+ ],
2008
+ "title": "Layout",
2009
+ "description": "Position of the image relative to the text",
2010
+ "examples": [
2011
+ "above"
2012
+ ]
2013
+ },
2014
+ "type": {
2015
+ "const": "image-text"
2016
+ }
2017
+ },
2018
+ "required": [
2019
+ "text",
2020
+ "image",
2021
+ "layout"
2022
+ ],
2023
+ "additionalProperties": false
2024
+ },
2025
+ {
2026
+ "$schema": "http://json-schema.org/draft-07/schema#",
2027
+ "$id": "http://schema.mydesignsystem.com/logos.schema.json",
2028
+ "title": "Logos",
2029
+ "description": "Component used to display a set of logos",
2030
+ "type": "object",
2031
+ "properties": {
2032
+ "tagline": {
2033
+ "type": "string",
2034
+ "title": "Logo Tagline",
2035
+ "description": "A short tagline atop the logos",
2036
+ "examples": [
2037
+ "Your Success, Our Commitment"
2038
+ ]
2039
+ },
2040
+ "logo": {
2041
+ "type": "array",
2042
+ "title": "Logos",
2043
+ "description": "The logos to display",
2044
+ "items": {
2045
+ "$schema": "http://json-schema.org/draft-07/schema#",
2046
+ "$id": "http://schema.mydesignsystem.com/logo.schema.json",
2047
+ "title": "Logo",
2048
+ "description": "Logo entry for Logos component",
2049
+ "type": "object",
2050
+ "properties": {
2051
+ "src": {
2052
+ "type": "string",
2053
+ "format": "image",
2054
+ "title": "URL",
2055
+ "description": "The URL of the logo image",
2056
+ "examples": [
2057
+ "img/logos/logoipsum-212.svg",
2058
+ "img/logos/logoipsum-217.svg",
2059
+ "img/logos/logoipsum-239.svg",
2060
+ "img/logos/logoipsum-244.svg",
2061
+ "img/logos/logoipsum-250.svg",
2062
+ "img/logos/logoipsum-286.svg"
2063
+ ]
2064
+ },
2065
+ "alt": {
2066
+ "type": "string",
2067
+ "title": "Caption",
2068
+ "description": "The alt text of the logo",
2069
+ "examples": [
2070
+ "Logo 1"
2071
+ ]
2072
+ },
2073
+ "type": {
2074
+ "const": "logo"
2075
+ }
2076
+ },
2077
+ "additionalProperties": false,
2078
+ "required": [
2079
+ "src"
2080
+ ]
2081
+ },
2082
+ "minItems": 1,
2083
+ "maxItems": 20
2084
+ },
2085
+ "align": {
2086
+ "type": "string",
2087
+ "title": "Alignment",
2088
+ "description": "The alignment of the logo layout",
2089
+ "enum": [
2090
+ "left",
2091
+ "center"
2092
+ ],
2093
+ "default": "center"
2094
+ },
2095
+ "logosPerRow": {
2096
+ "type": "integer",
2097
+ "title": "Logos Per Row",
2098
+ "description": "The amount of logos to display per row",
2099
+ "minimum": 2,
2100
+ "maximum": 8,
2101
+ "examples": [
2102
+ 5
2103
+ ]
2104
+ },
2105
+ "cta": {
2106
+ "type": "object",
2107
+ "title": "Call to Action",
2108
+ "description": "The call to action",
2109
+ "properties": {
2110
+ "toggle": {
2111
+ "type": "boolean",
2112
+ "default": false,
2113
+ "title": "CTA Toggle",
2114
+ "description": "Activate/disable the CTA"
2115
+ },
2116
+ "text": {
2117
+ "type": "string",
2118
+ "title": "Call to Action Text",
2119
+ "description": "A short CTA text",
2120
+ "examples": [
2121
+ "Explore the success stories of our valued customers and discover more about their journey."
2122
+ ]
2123
+ },
2124
+ "link": {
2125
+ "type": "string",
2126
+ "title": "Call to Action Link",
2127
+ "description": "The CTA link",
2128
+ "default": "#",
2129
+ "format": "uri"
2130
+ },
2131
+ "label": {
2132
+ "type": "string",
2133
+ "title": "Link Label",
2134
+ "description": "The text label displayed on the link",
2135
+ "examples": [
2136
+ "See all our partners"
2137
+ ]
2138
+ },
2139
+ "style": {
2140
+ "type": "string",
2141
+ "enum": [
2142
+ "button",
2143
+ "text"
2144
+ ],
2145
+ "default": "text"
2146
+ }
2147
+ },
2148
+ "additionalProperties": false,
2149
+ "required": [
2150
+ "style",
2151
+ "link",
2152
+ "label"
2153
+ ]
2154
+ },
2155
+ "type": {
2156
+ "const": "logos"
2157
+ }
2158
+ },
2159
+ "additionalProperties": false,
2160
+ "required": [
2161
+ "logos"
2162
+ ]
2163
+ },
2164
+ {
2165
+ "$schema": "http://json-schema.org/draft-07/schema#",
2166
+ "$id": "http://schema.mydesignsystem.com/stats.schema.json",
2167
+ "title": "Stats",
2168
+ "description": "Component used to display stats with a number upcounter",
2169
+ "type": "object",
2170
+ "properties": {
2171
+ "stat": {
2172
+ "title": "Stats",
2173
+ "type": "array",
2174
+ "description": "The stats to display with a number upcounter",
2175
+ "items": {
2176
+ "$schema": "http://json-schema.org/draft-07/schema#",
2177
+ "$id": "http://schema.mydesignsystem.com/stat.schema.json",
2178
+ "title": "Stat",
2179
+ "description": "Stat entry of Stats component",
2180
+ "type": "object",
2181
+ "properties": {
2182
+ "number": {
2183
+ "title": "Number",
2184
+ "description": "The number of the stat",
2185
+ "type": "integer",
2186
+ "examples": [
2187
+ 1,
2188
+ 2,
2189
+ 3,
2190
+ 4
2191
+ ]
2192
+ },
2193
+ "description": {
2194
+ "title": "Description",
2195
+ "description": "Optional description of the stat",
2196
+ "type": "string",
2197
+ "format": "markdown"
2198
+ },
2199
+ "title": {
2200
+ "title": "Title",
2201
+ "description": "Title of the stat",
2202
+ "type": "string",
2203
+ "format": "markdown",
2204
+ "examples": [
2205
+ "Stat 1",
2206
+ "Stat 2",
2207
+ "Stat 3",
2208
+ "Stat 4"
2209
+ ]
2210
+ },
2211
+ "icon": {
2212
+ "title": "Icon",
2213
+ "description": "Optional icon of the stat",
2214
+ "type": "string",
2215
+ "examples": [
2216
+ "person",
2217
+ "home",
2218
+ "map"
2219
+ ]
2220
+ },
2221
+ "type": {
2222
+ "const": "stat"
2223
+ }
2224
+ },
2225
+ "additionalProperties": false,
2226
+ "required": [
2227
+ "number",
2228
+ "label"
2229
+ ],
2230
+ "examples": [
2231
+ {
2232
+ "number": 1,
2233
+ "label": "Stat 1"
2234
+ },
2235
+ {
2236
+ "number": 2,
2237
+ "label": "Stat 2"
2238
+ },
2239
+ {
2240
+ "number": 3,
2241
+ "label": "Stat 3"
2242
+ },
2243
+ {
2244
+ "value": 4,
2245
+ "label": "Stat 4"
2246
+ }
2247
+ ]
2248
+ },
2249
+ "minItems": 1,
2250
+ "maxItems": 4
2251
+ },
2252
+ "type": {
2253
+ "const": "stats"
2254
+ }
2255
+ },
2256
+ "additionalProperties": false,
2257
+ "required": [
2258
+ "stats"
2259
+ ]
2260
+ },
2261
+ {
2262
+ "$schema": "http://json-schema.org/draft-07/schema#",
2263
+ "$id": "http://schema.mydesignsystem.com/teaser-card.schema.json",
2264
+ "title": "Teaser Card",
2265
+ "description": "Component used to tease content",
2266
+ "type": "object",
2267
+ "properties": {
2268
+ "headline": {
2269
+ "type": "string",
2270
+ "title": "Headline",
2271
+ "description": "Headline for the teaser card",
2272
+ "format": "markdown"
2273
+ },
2274
+ "text": {
2275
+ "type": "string",
2276
+ "title": "Text",
2277
+ "description": "Body text for the teaser card",
2278
+ "format": "markdown"
2279
+ },
2280
+ "label": {
2281
+ "type": "string",
2282
+ "title": "Label",
2283
+ "description": "Label for the Teaser Card"
2284
+ },
2285
+ "layout": {
2286
+ "type": "string",
2287
+ "enum": [
2288
+ "stack",
2289
+ "row"
2290
+ ],
2291
+ "description": "Layout for the Teaser Card",
2292
+ "default": "stack"
2293
+ },
2294
+ "target": {
2295
+ "type": "string",
2296
+ "title": "Target",
2297
+ "description": "Target that should be linked",
2298
+ "format": "uri"
2299
+ },
2300
+ "button": {
2301
+ "type": "object",
2302
+ "properties": {
2303
+ "label": {
2304
+ "title": "Label",
2305
+ "type": "string",
2306
+ "description": "Label of the button. Still A11Y relevant when the button is hidden."
2307
+ },
2308
+ "chevron": {
2309
+ "title": "Icon",
2310
+ "description": "Toggle arrow icon",
2311
+ "type": "boolean",
2312
+ "default": false
2313
+ },
2314
+ "hidden": {
2315
+ "type": "boolean",
2316
+ "title": "Display Button",
2317
+ "description": "Toggle wether you want the card to have a visible button or not",
2318
+ "default": false
2319
+ }
2320
+ },
2321
+ "required": [
2322
+ "label"
2323
+ ],
2324
+ "additionalProperties": false
2325
+ },
2326
+ "image": {
2327
+ "type": "string",
2328
+ "title": "Image",
2329
+ "description": "Image to display as cover",
2330
+ "format": "image"
2331
+ },
2332
+ "imageRatio": {
2333
+ "type": "string",
2334
+ "enum": [
2335
+ "wide",
2336
+ "landscape",
2337
+ "square",
2338
+ "unset"
2339
+ ],
2340
+ "description": "Aspect ratio of the image",
2341
+ "default": "wide"
2342
+ },
2343
+ "type": {
2344
+ "const": "teaser-card"
2345
+ }
2346
+ },
2347
+ "additionalProperties": false,
2348
+ "required": [
2349
+ "topic",
2350
+ "target"
2351
+ ]
2352
+ },
2353
+ {
2354
+ "$schema": "http://json-schema.org/draft-07/schema#",
2355
+ "$id": "http://schema.mydesignsystem.com/testimonials.schema.json",
2356
+ "title": "Testimonials",
2357
+ "description": "Display testimonials with an optional image and rating",
2358
+ "type": "object",
2359
+ "properties": {
2360
+ "layout": {
2361
+ "title": "Layout",
2362
+ "description": "The testimonial layout",
2363
+ "type": "string",
2364
+ "enum": [
2365
+ "slider",
2366
+ "list",
2367
+ "alternating"
2368
+ ],
2369
+ "default": "slider"
2370
+ },
2371
+ "testimonial": {
2372
+ "type": "array",
2373
+ "title": "Testimonials",
2374
+ "description": "Add testimonials featuring an image, a quote, a source and a rating",
2375
+ "items": {
2376
+ "$schema": "http://json-schema.org/draft-07/schema#",
2377
+ "$id": "http://schema.mydesignsystem.com/testimonial.schema.json",
2378
+ "title": "Testimonial",
2379
+ "description": "Testimonial entry of Testimonials component",
2380
+ "type": "object",
2381
+ "properties": {
2382
+ "quote": {
2383
+ "title": "Quote",
2384
+ "description": "The testimonial quote",
2385
+ "type": "string",
2386
+ "format": "markdown",
2387
+ "examples": [
2388
+ "This product is amazing!"
2389
+ ]
2390
+ },
2391
+ "name": {
2392
+ "title": "Name",
2393
+ "description": "The name of the quote author",
2394
+ "type": "string",
2395
+ "examples": [
2396
+ "John Doe"
2397
+ ]
2398
+ },
2399
+ "title": {
2400
+ "title": "Title",
2401
+ "description": "The title of the quote author",
2402
+ "type": "string"
2403
+ },
2404
+ "image": {
2405
+ "type": "object",
2406
+ "properties": {
2407
+ "src": {
2408
+ "title": "Source",
2409
+ "description": "The image to display with the testimonial",
2410
+ "type": "string",
2411
+ "format": "image",
2412
+ "examples": [
2413
+ "https://example.com/image.jpg"
2414
+ ]
2415
+ },
2416
+ "alt": {
2417
+ "title": "Alt Text",
2418
+ "description": "The alt text of the image file",
2419
+ "type": "string"
2420
+ }
2421
+ },
2422
+ "additionalProperties": false
2423
+ },
2424
+ "rating": {
2425
+ "title": "Rating",
2426
+ "description": "The rating of the testimonial, from 1 to 5",
2427
+ "type": "integer",
2428
+ "minimum": 1,
2429
+ "maximum": 5
2430
+ },
2431
+ "type": {
2432
+ "const": "testimonial"
2433
+ }
2434
+ },
2435
+ "additionalProperties": false,
2436
+ "required": [
2437
+ "quote",
2438
+ "name",
2439
+ "image"
2440
+ ]
2441
+ }
2442
+ },
2443
+ "type": {
2444
+ "const": "testimonials"
2445
+ }
2446
+ },
2447
+ "additionalProperties": false
2448
+ },
2449
+ {
2450
+ "$schema": "http://json-schema.org/draft-07/schema#",
2451
+ "$id": "http://schema.mydesignsystem.com/text.schema.json",
2452
+ "title": "Text",
2453
+ "description": "Component used for displaying text in chapters",
2454
+ "type": "object",
2455
+ "properties": {
2456
+ "text": {
2457
+ "type": "string",
2458
+ "format": "markdown",
2459
+ "title": "Text",
2460
+ "description": "Text",
2461
+ "examples": [
2462
+ "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet."
2463
+ ]
2464
+ },
2465
+ "layout": {
2466
+ "type": "string",
2467
+ "title": "Layout",
2468
+ "description": "Variant of layout to be used",
2469
+ "enum": [
2470
+ "singleColumn",
2471
+ "multiColumn"
2472
+ ],
2473
+ "default": "singleColumn"
2474
+ },
2475
+ "align": {
2476
+ "type": "string",
2477
+ "title": "Alignment",
2478
+ "description": "Alignment of text",
2479
+ "enum": [
2480
+ "left",
2481
+ "center"
2482
+ ],
2483
+ "default": "left"
2484
+ },
2485
+ "highlightText": {
2486
+ "type": "boolean",
2487
+ "title": "Highlight Text",
2488
+ "description": "Visually highlight the text",
2489
+ "default": false
2490
+ },
2491
+ "type": {
2492
+ "const": "text"
2493
+ }
2494
+ },
2495
+ "additionalProperties": false,
2496
+ "required": [
2497
+ "text"
2498
+ ]
2499
+ }
2500
+ ]
2501
+ }
2502
+ },
1385
2503
  "typeProp": {
1386
2504
  "title": "Type",
1387
2505
  "description": "Type of the movement",