@kickstartds/ds-agency-premium 1.3.31 → 1.3.32--canary.565.63e8986.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{FooterProps-10c950a6.d.ts → FooterProps-9f94ed98.d.ts} +2 -7
- package/dist/{HeaderProps-7be94a61.d.ts → HeaderProps-c41aeb76.d.ts} +14 -9
- package/dist/LogosProps-58c84ccc.d.ts +242 -0
- package/dist/SectionProps-93230a76.d.ts +1 -1
- package/dist/SliderProps-93230a76.d.ts +1 -1
- package/dist/components/blog-post/index.d.ts +1 -1
- package/dist/components/button/button.css +3 -0
- package/dist/components/button/index.d.ts +1 -1
- package/dist/components/cta/cta.css +2 -2
- package/dist/components/footer/footer.css +14 -10
- package/dist/components/footer/footer.schema.dereffed.json +9 -12
- package/dist/components/footer/footer.schema.json +25 -11
- package/dist/components/footer/index.d.ts +1 -1
- package/dist/components/footer/index.js +2 -3
- package/dist/components/header/header.css +16 -0
- package/dist/components/header/header.schema.dereffed.json +26 -13
- package/dist/components/header/header.schema.json +6 -24
- package/dist/components/header/index.d.ts +1 -1
- package/dist/components/header/index.js +3 -7
- package/dist/components/image/image.schema.dereffed.json +1 -1
- package/dist/components/image/image.schema.json +1 -1
- package/dist/components/image/index.d.ts +1 -1
- package/dist/components/index/index.d.ts +3 -3
- package/dist/components/logo/logo.schema.dereffed.json +19 -43
- package/dist/components/logo/logo.schema.json +17 -41
- package/dist/components/logos/index.d.ts +1 -1
- package/dist/components/logos/index.js +1 -1
- package/dist/components/logos/logos.css +6 -10
- package/dist/components/logos/logos.schema.dereffed.json +5 -0
- package/dist/components/logos/logos.schema.json +1 -27
- package/dist/components/nav-main/index.d.ts +37 -8
- package/dist/components/nav-main/index.js +2 -3
- package/dist/components/nav-main/nav-main.css +45 -33
- package/dist/components/nav-main/nav-main.schema.dereffed.json +26 -28
- package/dist/components/nav-main/nav-main.schema.json +53 -4
- package/dist/components/page/page.schema.dereffed.json +10 -0
- package/dist/components/page-wrapper/tokens.css +1 -1
- package/dist/components/picture/picture.schema.json +1 -1
- package/dist/components/presets.json +9 -25
- package/dist/components/section/section.schema.dereffed.json +10 -0
- package/dist/components/settings/settings.schema.dereffed.json +35 -25
- package/dist/components/slider/slider.schema.dereffed.json +5 -0
- package/dist/global.css +1099 -0
- package/dist/static/favicon/favicon-192-192.png +1 -1
- package/dist/tokens/themes.css +4 -4
- package/dist/tokens/tokens.css +1 -1
- package/dist/tokens/tokens.js +1 -1
- package/package.json +1 -1
- package/dist/LogoProps-01796f0a.d.ts +0 -44
- package/dist/LogosProps-f9474fe2.d.ts +0 -97
- package/dist/components/logo/index.d.ts +0 -4
- package/dist/components/logo/index.js +0 -12
- package/dist/components/logo/logo.css +0 -7
- /package/dist/{BlogPostProps-e1cbd5d3.d.ts → BlogPostProps-0910f130.d.ts} +0 -0
|
@@ -5,38 +5,39 @@
|
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
7
7
|
"logo": {
|
|
8
|
-
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
9
|
-
"$id": "http://schema.mydesignsystem.com/logo.schema.json",
|
|
10
8
|
"title": "Logo",
|
|
11
9
|
"type": "object",
|
|
12
10
|
"properties": {
|
|
11
|
+
"href": {
|
|
12
|
+
"title": "Link",
|
|
13
|
+
"description": "Add a link to the logo",
|
|
14
|
+
"type": "string",
|
|
15
|
+
"format": "uri",
|
|
16
|
+
"default": "/"
|
|
17
|
+
},
|
|
13
18
|
"src": {
|
|
14
19
|
"title": "Source",
|
|
15
|
-
"description": "
|
|
20
|
+
"description": "Logo file source",
|
|
16
21
|
"type": "string",
|
|
17
|
-
"format": "image"
|
|
22
|
+
"format": "image",
|
|
23
|
+
"examples": [
|
|
24
|
+
"logo.svg"
|
|
25
|
+
]
|
|
18
26
|
},
|
|
19
27
|
"srcInverted": {
|
|
20
|
-
"title": "Source",
|
|
21
|
-
"description": "
|
|
28
|
+
"title": "Source Inverted",
|
|
29
|
+
"description": "Logo inverted file source",
|
|
22
30
|
"type": "string",
|
|
23
|
-
"format": "image"
|
|
31
|
+
"format": "image",
|
|
32
|
+
"examples": [
|
|
33
|
+
"logo-inverted.svg"
|
|
34
|
+
]
|
|
24
35
|
},
|
|
25
36
|
"alt": {
|
|
26
37
|
"title": "Alt text",
|
|
27
38
|
"description": "Alt text to display for picture",
|
|
28
39
|
"type": "string"
|
|
29
40
|
},
|
|
30
|
-
"homepageHref": {
|
|
31
|
-
"type": "string",
|
|
32
|
-
"format": "uri",
|
|
33
|
-
"default": "/"
|
|
34
|
-
},
|
|
35
|
-
"inverted": {
|
|
36
|
-
"type": "boolean",
|
|
37
|
-
"title": "Inverted",
|
|
38
|
-
"description": "Toggle wether the inverted or default version of the logo is being displayed"
|
|
39
|
-
},
|
|
40
41
|
"width": {
|
|
41
42
|
"title": "Width",
|
|
42
43
|
"description": "Width of the picture",
|
|
@@ -54,22 +55,19 @@
|
|
|
54
55
|
"examples": [
|
|
55
56
|
300
|
|
56
57
|
]
|
|
57
|
-
},
|
|
58
|
-
"className": {
|
|
59
|
-
"title": "Additional Classes",
|
|
60
|
-
"description": "Add additional css classes that should be applied to the logo",
|
|
61
|
-
"type": "string"
|
|
62
|
-
},
|
|
63
|
-
"type": {
|
|
64
|
-
"const": "logo"
|
|
65
58
|
}
|
|
66
59
|
},
|
|
67
60
|
"additionalProperties": false
|
|
68
61
|
},
|
|
69
|
-
"
|
|
62
|
+
"logoHref": {
|
|
63
|
+
"type": "string",
|
|
64
|
+
"format": "uri",
|
|
65
|
+
"default": "/"
|
|
66
|
+
},
|
|
67
|
+
"flyoutLogoInverted": {
|
|
70
68
|
"type": "boolean",
|
|
71
|
-
"title": "Flyout Inverted",
|
|
72
|
-
"description": "Toggle the inversion of the
|
|
69
|
+
"title": "Flyout Logo Inverted",
|
|
70
|
+
"description": "Toggle the inversion of the logo inside the mobile navigation",
|
|
73
71
|
"default": false
|
|
74
72
|
},
|
|
75
73
|
"items": {
|
|
@@ -5,12 +5,61 @@
|
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
7
7
|
"logo": {
|
|
8
|
-
"
|
|
8
|
+
"title": "Logo",
|
|
9
|
+
"type": "object",
|
|
10
|
+
"properties": {
|
|
11
|
+
"href": {
|
|
12
|
+
"title": "Link",
|
|
13
|
+
"description": "Add a link to the logo",
|
|
14
|
+
"type": "string",
|
|
15
|
+
"format": "uri",
|
|
16
|
+
"default": "/"
|
|
17
|
+
},
|
|
18
|
+
"src": {
|
|
19
|
+
"title": "Source",
|
|
20
|
+
"description": "Logo file source",
|
|
21
|
+
"type": "string",
|
|
22
|
+
"format": "image",
|
|
23
|
+
"examples": ["logo.svg"]
|
|
24
|
+
},
|
|
25
|
+
"srcInverted": {
|
|
26
|
+
"title": "Source Inverted",
|
|
27
|
+
"description": "Logo inverted file source",
|
|
28
|
+
"type": "string",
|
|
29
|
+
"format": "image",
|
|
30
|
+
"examples": ["logo-inverted.svg"]
|
|
31
|
+
},
|
|
32
|
+
"alt": {
|
|
33
|
+
"title": "Alt text",
|
|
34
|
+
"description": "Alt text to display for picture",
|
|
35
|
+
"type": "string"
|
|
36
|
+
},
|
|
37
|
+
"width": {
|
|
38
|
+
"title": "Width",
|
|
39
|
+
"description": "Width of the picture",
|
|
40
|
+
"type": "integer",
|
|
41
|
+
"minimum": 0,
|
|
42
|
+
"examples": [300]
|
|
43
|
+
},
|
|
44
|
+
"height": {
|
|
45
|
+
"title": "Height",
|
|
46
|
+
"description": "Height of the picture",
|
|
47
|
+
"type": "integer",
|
|
48
|
+
"minimum": 0,
|
|
49
|
+
"examples": [300]
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"additionalProperties": false
|
|
53
|
+
},
|
|
54
|
+
"logoHref": {
|
|
55
|
+
"type": "string",
|
|
56
|
+
"format": "uri",
|
|
57
|
+
"default": "/"
|
|
9
58
|
},
|
|
10
|
-
"
|
|
59
|
+
"flyoutLogoInverted": {
|
|
11
60
|
"type": "boolean",
|
|
12
|
-
"title": "Flyout Inverted",
|
|
13
|
-
"description": "Toggle the inversion of the
|
|
61
|
+
"title": "Flyout Logo Inverted",
|
|
62
|
+
"description": "Toggle the inversion of the logo inside the mobile navigation",
|
|
14
63
|
"default": false
|
|
15
64
|
},
|
|
16
65
|
"items": {
|
|
@@ -1113,6 +1113,8 @@
|
|
|
1113
1113
|
"title": "Logos",
|
|
1114
1114
|
"description": "The logos to display",
|
|
1115
1115
|
"items": {
|
|
1116
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
1117
|
+
"$id": "http://schema.mydesignsystem.com/logo.schema.json",
|
|
1116
1118
|
"title": "Logo",
|
|
1117
1119
|
"description": "Logo entry for Logos component",
|
|
1118
1120
|
"type": "object",
|
|
@@ -1138,6 +1140,9 @@
|
|
|
1138
1140
|
"examples": [
|
|
1139
1141
|
"Logo 1"
|
|
1140
1142
|
]
|
|
1143
|
+
},
|
|
1144
|
+
"type": {
|
|
1145
|
+
"const": "logo"
|
|
1141
1146
|
}
|
|
1142
1147
|
},
|
|
1143
1148
|
"additionalProperties": false,
|
|
@@ -2085,6 +2090,8 @@
|
|
|
2085
2090
|
"title": "Logos",
|
|
2086
2091
|
"description": "The logos to display",
|
|
2087
2092
|
"items": {
|
|
2093
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
2094
|
+
"$id": "http://schema.mydesignsystem.com/logo.schema.json",
|
|
2088
2095
|
"title": "Logo",
|
|
2089
2096
|
"description": "Logo entry for Logos component",
|
|
2090
2097
|
"type": "object",
|
|
@@ -2110,6 +2117,9 @@
|
|
|
2110
2117
|
"examples": [
|
|
2111
2118
|
"Logo 1"
|
|
2112
2119
|
]
|
|
2120
|
+
},
|
|
2121
|
+
"type": {
|
|
2122
|
+
"const": "logo"
|
|
2113
2123
|
}
|
|
2114
2124
|
},
|
|
2115
2125
|
"additionalProperties": false,
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
},
|
|
38
38
|
"className": {
|
|
39
39
|
"title": "Additional Classes",
|
|
40
|
-
"description": "Add additional css classes that should be applied to the
|
|
40
|
+
"description": "Add additional css classes that should be applied to the button",
|
|
41
41
|
"type": "string"
|
|
42
42
|
},
|
|
43
43
|
"style": {
|
|
@@ -1156,17 +1156,16 @@
|
|
|
1156
1156
|
"id": "layout-footer--footer",
|
|
1157
1157
|
"group": "Layout/Footer",
|
|
1158
1158
|
"name": "Footer",
|
|
1159
|
-
"code": "<Footer\n byline=\"© 2024 systemics Inc. All rights reserved.\"\n logo={{\n alt: 'Systemics Logo',\n height: 40,\n
|
|
1159
|
+
"code": "<Footer\n byline=\"© 2024 systemics Inc. All rights reserved.\"\n logo={{\n alt: 'Systemics Logo',\n height: 40,\n lazy: false,\n src: '/logo.svg',\n width: 176\n }}\n logoHref=\"/\"\n navItems={[\n {\n href: '#',\n label: 'Nav Item'\n },\n {\n active: true,\n href: '#',\n label: 'Active Item'\n },\n {\n href: '#',\n label: 'Another Item'\n },\n {\n href: '#',\n label: 'One more Item'\n },\n {\n href: '#',\n label: 'Last Item'\n }\n ]}\n/>",
|
|
1160
1160
|
"args": {
|
|
1161
1161
|
"logo": {
|
|
1162
1162
|
"src": "/logo.svg",
|
|
1163
|
-
"srcInverted": "/logo-inverted.svg",
|
|
1164
|
-
"inverted": false,
|
|
1165
|
-
"homepageHref": "#",
|
|
1166
1163
|
"alt": "Systemics Logo",
|
|
1167
1164
|
"width": 176,
|
|
1168
|
-
"height": 40
|
|
1165
|
+
"height": 40,
|
|
1166
|
+
"lazy": false
|
|
1169
1167
|
},
|
|
1168
|
+
"logoHref": "/",
|
|
1170
1169
|
"byline": "© 2024 systemics Inc. All rights reserved.",
|
|
1171
1170
|
"inverted": false,
|
|
1172
1171
|
"navItems": [
|
|
@@ -1370,17 +1369,18 @@
|
|
|
1370
1369
|
"id": "layout-header--header",
|
|
1371
1370
|
"group": "Layout/Header",
|
|
1372
1371
|
"name": "Header",
|
|
1373
|
-
"code": "<Header\n logo={{\n alt: 'Systemics Logo',\n height: 40,\n
|
|
1372
|
+
"code": "<Header\n logo={{\n alt: 'Systemics Logo',\n height: 40,\n lazy: false,\n src: '/logo.svg',\n srcInverted: '/logo-inverted.svg',\n width: 176\n }}\n logoHref=\"/\"\n navItems={[\n {\n href: '#',\n label: 'Nav Item'\n },\n {\n active: true,\n href: '#',\n label: 'Active Item'\n },\n {\n href: '#',\n label: 'Another Item'\n },\n {\n href: '#',\n label: 'One more Item'\n },\n {\n href: '#',\n label: 'Last Item'\n }\n ]}\n/>",
|
|
1374
1373
|
"args": {
|
|
1375
1374
|
"logo": {
|
|
1376
1375
|
"src": "/logo.svg",
|
|
1377
1376
|
"srcInverted": "/logo-inverted.svg",
|
|
1378
|
-
"homepageHref": "#",
|
|
1379
1377
|
"alt": "Systemics Logo",
|
|
1380
1378
|
"width": 176,
|
|
1381
|
-
"height": 40
|
|
1379
|
+
"height": 40,
|
|
1380
|
+
"lazy": false
|
|
1382
1381
|
},
|
|
1383
|
-
"
|
|
1382
|
+
"logoHref": "/",
|
|
1383
|
+
"flyoutLogoInverted": false,
|
|
1384
1384
|
"floating": false,
|
|
1385
1385
|
"inverted": false,
|
|
1386
1386
|
"navItems": [
|
|
@@ -1735,22 +1735,6 @@
|
|
|
1735
1735
|
},
|
|
1736
1736
|
"screenshot": "img/screenshots/components-image--custom-aspect-ratio.png"
|
|
1737
1737
|
},
|
|
1738
|
-
{
|
|
1739
|
-
"id": "layout-logo--logo",
|
|
1740
|
-
"group": "Layout/Logo",
|
|
1741
|
-
"name": "Logo",
|
|
1742
|
-
"code": "<Logo\n alt=\"Systemics Logo\"\n height={40}\n homepageHref=\"#\"\n src=\"/logo.svg\"\n srcInverted=\"/logo-inverted.svg\"\n width={176}\n/>",
|
|
1743
|
-
"args": {
|
|
1744
|
-
"homepageHref": "#",
|
|
1745
|
-
"width": 176,
|
|
1746
|
-
"height": 40,
|
|
1747
|
-
"src": "/logo.svg",
|
|
1748
|
-
"srcInverted": "/logo-inverted.svg",
|
|
1749
|
-
"inverted": false,
|
|
1750
|
-
"alt": "Systemics Logo"
|
|
1751
|
-
},
|
|
1752
|
-
"screenshot": "img/screenshots/layout-logo--logo.png"
|
|
1753
|
-
},
|
|
1754
1738
|
{
|
|
1755
1739
|
"id": "components-logos--centered-with-button",
|
|
1756
1740
|
"group": "Components/Logos",
|
|
@@ -1099,6 +1099,8 @@
|
|
|
1099
1099
|
"title": "Logos",
|
|
1100
1100
|
"description": "The logos to display",
|
|
1101
1101
|
"items": {
|
|
1102
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
1103
|
+
"$id": "http://schema.mydesignsystem.com/logo.schema.json",
|
|
1102
1104
|
"title": "Logo",
|
|
1103
1105
|
"description": "Logo entry for Logos component",
|
|
1104
1106
|
"type": "object",
|
|
@@ -1124,6 +1126,9 @@
|
|
|
1124
1126
|
"examples": [
|
|
1125
1127
|
"Logo 1"
|
|
1126
1128
|
]
|
|
1129
|
+
},
|
|
1130
|
+
"type": {
|
|
1131
|
+
"const": "logo"
|
|
1127
1132
|
}
|
|
1128
1133
|
},
|
|
1129
1134
|
"additionalProperties": false,
|
|
@@ -2071,6 +2076,8 @@
|
|
|
2071
2076
|
"title": "Logos",
|
|
2072
2077
|
"description": "The logos to display",
|
|
2073
2078
|
"items": {
|
|
2079
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
2080
|
+
"$id": "http://schema.mydesignsystem.com/logo.schema.json",
|
|
2074
2081
|
"title": "Logo",
|
|
2075
2082
|
"description": "Logo entry for Logos component",
|
|
2076
2083
|
"type": "object",
|
|
@@ -2096,6 +2103,9 @@
|
|
|
2096
2103
|
"examples": [
|
|
2097
2104
|
"Logo 1"
|
|
2098
2105
|
]
|
|
2106
|
+
},
|
|
2107
|
+
"type": {
|
|
2108
|
+
"const": "logo"
|
|
2099
2109
|
}
|
|
2100
2110
|
},
|
|
2101
2111
|
"additionalProperties": false,
|
|
@@ -20,28 +20,36 @@
|
|
|
20
20
|
"title": "Logo",
|
|
21
21
|
"type": "object",
|
|
22
22
|
"properties": {
|
|
23
|
+
"href": {
|
|
24
|
+
"title": "Link",
|
|
25
|
+
"description": "Add a link to the logo",
|
|
26
|
+
"type": "string",
|
|
27
|
+
"format": "uri",
|
|
28
|
+
"default": "/"
|
|
29
|
+
},
|
|
23
30
|
"src": {
|
|
24
31
|
"title": "Source",
|
|
25
|
-
"description": "
|
|
32
|
+
"description": "Logo file source",
|
|
26
33
|
"type": "string",
|
|
27
|
-
"format": "image"
|
|
34
|
+
"format": "image",
|
|
35
|
+
"examples": [
|
|
36
|
+
"logo.svg"
|
|
37
|
+
]
|
|
28
38
|
},
|
|
29
39
|
"srcInverted": {
|
|
30
|
-
"title": "Source",
|
|
31
|
-
"description": "
|
|
40
|
+
"title": "Source Inverted",
|
|
41
|
+
"description": "Logo inverted file source",
|
|
32
42
|
"type": "string",
|
|
33
|
-
"format": "image"
|
|
43
|
+
"format": "image",
|
|
44
|
+
"examples": [
|
|
45
|
+
"logo-inverted.svg"
|
|
46
|
+
]
|
|
34
47
|
},
|
|
35
48
|
"alt": {
|
|
36
49
|
"title": "Alt text",
|
|
37
50
|
"description": "Alt text to display for picture",
|
|
38
51
|
"type": "string"
|
|
39
52
|
},
|
|
40
|
-
"homepageHref": {
|
|
41
|
-
"type": "string",
|
|
42
|
-
"format": "uri",
|
|
43
|
-
"default": "/"
|
|
44
|
-
},
|
|
45
53
|
"width": {
|
|
46
54
|
"title": "Width",
|
|
47
55
|
"description": "Width of the picture",
|
|
@@ -63,10 +71,15 @@
|
|
|
63
71
|
},
|
|
64
72
|
"additionalProperties": false
|
|
65
73
|
},
|
|
66
|
-
"
|
|
74
|
+
"logoHref": {
|
|
75
|
+
"type": "string",
|
|
76
|
+
"format": "uri",
|
|
77
|
+
"default": "/"
|
|
78
|
+
},
|
|
79
|
+
"flyoutLogoInverted": {
|
|
67
80
|
"type": "boolean",
|
|
68
|
-
"title": "Flyout Inverted",
|
|
69
|
-
"description": "Toggle the inversion of the
|
|
81
|
+
"title": "Flyout Logo Inverted",
|
|
82
|
+
"description": "Toggle the inversion of the logo inside the mobile navigation",
|
|
70
83
|
"default": false
|
|
71
84
|
},
|
|
72
85
|
"floating": {
|
|
@@ -152,24 +165,16 @@
|
|
|
152
165
|
"title": "Source",
|
|
153
166
|
"description": "Picture source",
|
|
154
167
|
"type": "string",
|
|
155
|
-
"format": "image"
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
"description": "Picture source",
|
|
160
|
-
"type": "string",
|
|
161
|
-
"format": "image"
|
|
168
|
+
"format": "image",
|
|
169
|
+
"examples": [
|
|
170
|
+
"https://picsum.photos/seed/kdspicture/300/300"
|
|
171
|
+
]
|
|
162
172
|
},
|
|
163
173
|
"alt": {
|
|
164
174
|
"title": "Alt text",
|
|
165
175
|
"description": "Alt text to display for picture",
|
|
166
176
|
"type": "string"
|
|
167
177
|
},
|
|
168
|
-
"homepageHref": {
|
|
169
|
-
"type": "string",
|
|
170
|
-
"format": "uri",
|
|
171
|
-
"default": "/"
|
|
172
|
-
},
|
|
173
178
|
"width": {
|
|
174
179
|
"title": "Width",
|
|
175
180
|
"description": "Width of the picture",
|
|
@@ -191,6 +196,11 @@
|
|
|
191
196
|
},
|
|
192
197
|
"additionalProperties": false
|
|
193
198
|
},
|
|
199
|
+
"logoHref": {
|
|
200
|
+
"type": "string",
|
|
201
|
+
"format": "uri",
|
|
202
|
+
"default": "/"
|
|
203
|
+
},
|
|
194
204
|
"byline": {
|
|
195
205
|
"title": "Byline",
|
|
196
206
|
"description": "Small line of text displayed below the logo",
|
|
@@ -717,6 +717,8 @@
|
|
|
717
717
|
"title": "Logos",
|
|
718
718
|
"description": "The logos to display",
|
|
719
719
|
"items": {
|
|
720
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
721
|
+
"$id": "http://schema.mydesignsystem.com/logo.schema.json",
|
|
720
722
|
"title": "Logo",
|
|
721
723
|
"description": "Logo entry for Logos component",
|
|
722
724
|
"type": "object",
|
|
@@ -742,6 +744,9 @@
|
|
|
742
744
|
"examples": [
|
|
743
745
|
"Logo 1"
|
|
744
746
|
]
|
|
747
|
+
},
|
|
748
|
+
"type": {
|
|
749
|
+
"const": "logo"
|
|
745
750
|
}
|
|
746
751
|
},
|
|
747
752
|
"additionalProperties": false,
|