@appdirect/sfb-theme-plaza 0.0.1

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 (141) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/README.md +3 -0
  3. package/assets/css/platform-global/global-index.scss +1 -0
  4. package/assets/css/theme/components/_sticky-button-page-scroll.scss +15 -0
  5. package/assets/css/theme/definitions/_accessibility.scss +42 -0
  6. package/assets/css/theme/definitions/_colors.scss +58 -0
  7. package/assets/css/theme/definitions/_functions.scss +11 -0
  8. package/assets/css/theme/definitions/_mixins.scss +111 -0
  9. package/assets/css/theme/definitions/_typography.scss +48 -0
  10. package/assets/css/theme/definitions/_variables.scss +7 -0
  11. package/assets/css/theme/generic/_default.scss +126 -0
  12. package/assets/css/theme/generic/_normalize.scss +351 -0
  13. package/assets/css/theme/grid/_bootstrap-grid.scss +32 -0
  14. package/assets/css/theme/grid/_functions.scss +49 -0
  15. package/assets/css/theme/grid/_grid.scss +52 -0
  16. package/assets/css/theme/grid/_mock-grid.scss +36 -0
  17. package/assets/css/theme/grid/_variables.scss +42 -0
  18. package/assets/css/theme/layout/_reset.scss +5 -0
  19. package/assets/css/theme/mixins/_breakpoints.scss +123 -0
  20. package/assets/css/theme/mixins/_grid-framework.scss +67 -0
  21. package/assets/css/theme/mixins/_grid.scss +52 -0
  22. package/assets/css/theme/mixins/_scroll-button.scss +17 -0
  23. package/assets/css/theme/pages/_bundle.scss +10 -0
  24. package/assets/css/theme/pages/_listing.scss +3 -0
  25. package/assets/css/theme/pages/_product.scss +3 -0
  26. package/assets/css/theme/pages/_profile.scss +89 -0
  27. package/assets/css/theme/theme-index.scss +9 -0
  28. package/assets/css/theme/utilities/_display.scss +38 -0
  29. package/assets/css/theme/utilities/_flex.scss +51 -0
  30. package/assets/fonts/AppDirectIcons.woff +0 -0
  31. package/assets/fonts/slick/slick.eot +0 -0
  32. package/assets/fonts/slick/slick.svg +14 -0
  33. package/assets/fonts/slick/slick.ttf +0 -0
  34. package/assets/fonts/slick/slick.woff +0 -0
  35. package/assets/images/logo_white_2x.png +0 -0
  36. package/assets/js/listing.js +26 -0
  37. package/assets/js/polyfills/ie11CustomProperties.js +2 -0
  38. package/content/layout/base.html +80 -0
  39. package/content/layout/bundle.html +12 -0
  40. package/content/layout/profile.html +22 -0
  41. package/content/macros/profile/profile-navigation.html +38 -0
  42. package/content/macros/sfb-components-bundles.html +26 -0
  43. package/content/macros/sfb-custom-components-bundles.html +6 -0
  44. package/content/pages/bundle/bundle.html +9 -0
  45. package/content/pages/compare/compare.html +14 -0
  46. package/content/pages/error/error.html +49 -0
  47. package/content/pages/help/help.html +15 -0
  48. package/content/pages/home/home.html +14 -0
  49. package/content/pages/listing/listing-items.html +1 -0
  50. package/content/pages/listing/listing.html +25 -0
  51. package/content/pages/orderConfirmation/orderConfirmation.html +7 -0
  52. package/content/pages/profile/profile-add-lead.html +13 -0
  53. package/content/pages/profile/profile-add-question.html +13 -0
  54. package/content/pages/profile/profile-add-review.html +13 -0
  55. package/content/pages/profile/profile-configure.html +15 -0
  56. package/content/pages/profile/profile-cross-sell-management.html +12 -0
  57. package/content/pages/profile/profile-editions.html +17 -0
  58. package/content/pages/profile/profile-features.html +14 -0
  59. package/content/pages/profile/profile-questions.html +14 -0
  60. package/content/pages/profile/profile-resources.html +14 -0
  61. package/content/pages/profile/profile-reviews.html +14 -0
  62. package/content/pages/profile/profile-standaloneDomains.html +22 -0
  63. package/content/pages/profile/profile-support.html +15 -0
  64. package/content/pages/profile/profile-variants.html +15 -0
  65. package/content/pages/profile/profile.html +24 -0
  66. package/design-properties.json +18 -0
  67. package/editor-properties.json +231 -0
  68. package/env-data.json +2 -0
  69. package/header-footer/checkout.html +14 -0
  70. package/header-footer/css/footer/_INDEX.scss +264 -0
  71. package/header-footer/css/header-components/_INDEX.scss +11 -0
  72. package/header-footer/css/header-components/_MPLogo.scss +47 -0
  73. package/header-footer/css/header-components/_cart.scss +514 -0
  74. package/header-footer/css/header-components/_dropdown.scss +110 -0
  75. package/header-footer/css/header-components/_header.scss +85 -0
  76. package/header-footer/css/header-components/_icons.scss +123 -0
  77. package/header-footer/css/header-components/_mobile-menu.scss +46 -0
  78. package/header-footer/css/header-components/_myapps-dropdown.scss +111 -0
  79. package/header-footer/css/header-components/_notifications.scss +50 -0
  80. package/header-footer/css/header-components/_responsive.scss +78 -0
  81. package/header-footer/css/header-components/_search-bar.scss +17 -0
  82. package/header-footer/css/header-components/_tooltips.scss +60 -0
  83. package/header-footer/css/header-index.scss +4 -0
  84. package/header-footer/css/settings/_INDEX.scss +3 -0
  85. package/header-footer/css/settings/_custom-variables.scss +70 -0
  86. package/header-footer/css/settings/_font-icons.scss +53 -0
  87. package/header-footer/css/settings/_static-variables.scss +24 -0
  88. package/header-footer/footer.html +53 -0
  89. package/header-footer/logged-in.html +37 -0
  90. package/header-footer/logged-out.html +25 -0
  91. package/header-footer/sso.html +14 -0
  92. package/package.json +15 -0
  93. package/settings-schema.json +4 -0
  94. package/settings.json +1873 -0
  95. package/translations/cs-cz.yml +136 -0
  96. package/translations/cs.yml +136 -0
  97. package/translations/da-dk.yml +136 -0
  98. package/translations/da.yml +136 -0
  99. package/translations/de-de.yml +136 -0
  100. package/translations/de.yml +136 -0
  101. package/translations/el-gr.yml +136 -0
  102. package/translations/en-us.yml +177 -0
  103. package/translations/es-es.yml +136 -0
  104. package/translations/es-la.yml +136 -0
  105. package/translations/es.yml +136 -0
  106. package/translations/fi-fi.yml +136 -0
  107. package/translations/fi.yml +136 -0
  108. package/translations/fr-ca.yml +136 -0
  109. package/translations/fr-fr.yml +136 -0
  110. package/translations/fr.yml +136 -0
  111. package/translations/hr-hr.yml +136 -0
  112. package/translations/hr.yml +136 -0
  113. package/translations/hu-hu.yml +136 -0
  114. package/translations/hu.yml +136 -0
  115. package/translations/id-id.yml +136 -0
  116. package/translations/it-it.yml +136 -0
  117. package/translations/it.yml +136 -0
  118. package/translations/ja-jp.yml +136 -0
  119. package/translations/ja.yml +136 -0
  120. package/translations/ko-kr.yml +136 -0
  121. package/translations/ko.yml +136 -0
  122. package/translations/lt-lt.yml +136 -0
  123. package/translations/lt.yml +136 -0
  124. package/translations/nl-nl.yml +136 -0
  125. package/translations/nl.yml +136 -0
  126. package/translations/no-no.yml +136 -0
  127. package/translations/no.yml +136 -0
  128. package/translations/pt-br.yml +136 -0
  129. package/translations/pt.yml +136 -0
  130. package/translations/ru-ru.yml +136 -0
  131. package/translations/ru.yml +136 -0
  132. package/translations/sq-al.yml +136 -0
  133. package/translations/sq.yml +136 -0
  134. package/translations/sv-se.yml +136 -0
  135. package/translations/sv.yml +136 -0
  136. package/translations/th-th.yml +136 -0
  137. package/translations/th.yml +136 -0
  138. package/translations/tr-tr.yml +136 -0
  139. package/translations/tr.yml +136 -0
  140. package/translations/zh-cn.yml +136 -0
  141. package/translations/zh-tw.yml +136 -0
package/settings.json ADDED
@@ -0,0 +1,1873 @@
1
+ {
2
+ "pages" : {
3
+ "global" : {
4
+ "components" : {
5
+ "Header" : {
6
+ "components" : {
7
+ "HeaderAnnouncementBar:orderable:a34bf07d-1553-4e7d-86aa-c9ed2df75685" : {
8
+ "announcementBarLink" : {
9
+ "value" : "uieditor.global.Header.HeaderAnnouncementBar:orderable:a34bf07d-1553-4e7d-86aa-c9ed2df75685.announcementBarLink",
10
+ "isLocalized" : true,
11
+ "type" : "INPUT"
12
+ },
13
+ "announcementBarBackgroundColor" : {
14
+ "value" : "#04296a",
15
+ "type" : "COLORPICKER"
16
+ },
17
+ "announcementBarOpenInNewTab" : {
18
+ "value" : false,
19
+ "type" : "TOGGLE_CHECK"
20
+ },
21
+ "announcementBarTextColor" : {
22
+ "value" : "#ffffff",
23
+ "type" : "COLORPICKER"
24
+ },
25
+ "announcementBarLinkTextColor" : {
26
+ "value" : "#f3ff06",
27
+ "type" : "COLORPICKER"
28
+ },
29
+ "announcementBarTextAlignment" : {
30
+ "value" : "center",
31
+ "type" : "DROPDOWN"
32
+ },
33
+ "announcementBarHeight" : {
34
+ "value" : 30,
35
+ "type" : "SLIDER"
36
+ },
37
+ "announcementBarMessage" : {
38
+ "value" : "uieditor.global.Header.HeaderAnnouncementBar:orderable:a34bf07d-1553-4e7d-86aa-c9ed2df75685.announcementBarMessage",
39
+ "isLocalized" : true,
40
+ "type" : "TEXTAREA"
41
+ },
42
+ "announcementBarBorderColor" : {
43
+ "value" : "rgba(255, 255, 255, 0)",
44
+ "type" : "COLORPICKER"
45
+ },
46
+ "announcementBarTextSize" : {
47
+ "value" : "medium",
48
+ "type" : "DROPDOWN"
49
+ }
50
+ },
51
+ "HeaderAuxiliaryBar:orderable:a34bf07d-1553-4e7d-86aa-c9ed2df75686" : {
52
+ "auxBarBackgroundColor" : {
53
+ "value" : "#0076ce",
54
+ "type" : "COLORPICKER"
55
+ },
56
+ "auxBarTextColorHover" : {
57
+ "value" : "#fcfdfd",
58
+ "type" : "COLORPICKER"
59
+ },
60
+ "displayLanguageSwitcher" : {
61
+ "value" : true,
62
+ "type" : "TOGGLE"
63
+ },
64
+ "auxBarTextColor" : {
65
+ "value" : "#ffffff",
66
+ "type" : "COLORPICKER"
67
+ },
68
+ "auxBarTextSize" : {
69
+ "value" : "medium",
70
+ "type" : "DROPDOWN"
71
+ },
72
+ "auxBarBorderColor" : {
73
+ "value" : "#0076ce",
74
+ "type" : "COLORPICKER"
75
+ },
76
+ "auxBarLinkSpacing" : {
77
+ "value" : 15,
78
+ "type" : "SLIDER"
79
+ },
80
+ "auxBarTextAlignment" : {
81
+ "value" : "right",
82
+ "type" : "DROPDOWN"
83
+ },
84
+ "auxBarHeight" : {
85
+ "value" : 40,
86
+ "type" : "SLIDER"
87
+ }
88
+ },
89
+ "HeaderHomeBar:orderable:a34bf07d-1553-4e7d-86aa-c9ed2df75687" : {
90
+ "logoHeight" : {
91
+ "value" : 82,
92
+ "type" : "SLIDER"
93
+ },
94
+ "homeBarBackgroundColor" : {
95
+ "value" : "#0076ce",
96
+ "type" : "COLORPICKER"
97
+ },
98
+ "logoTargetType" : {
99
+ "value" : "home_page",
100
+ "type" : "RADIO"
101
+ },
102
+ "logoTheme" : {
103
+ "value" : "logoImage",
104
+ "type" : "LOGO"
105
+ },
106
+ "displayRegistrationLink" : {
107
+ "value" : true,
108
+ "type" : "TOGGLE"
109
+ },
110
+ "displayCart" : {
111
+ "value" : true,
112
+ "type" : "TOGGLE"
113
+ },
114
+ "homeBarBorderColor" : {
115
+ "value" : "#0076ce",
116
+ "type" : "COLORPICKER"
117
+ },
118
+ "homeBarTextHoverColor" : {
119
+ "value" : "#fcfdfd",
120
+ "type" : "COLORPICKER"
121
+ },
122
+ "homeBarTextActiveColor" : {
123
+ "value" : "#fcfdfd",
124
+ "type" : "COLORPICKER"
125
+ },
126
+ "homeBarPadding" : {
127
+ "value" : 15,
128
+ "type" : "SLIDER"
129
+ },
130
+ "displayLoginLink" : {
131
+ "value" : true,
132
+ "type" : "TOGGLE"
133
+ },
134
+ "homeBarTextColor" : {
135
+ "value" : "#ffffff",
136
+ "type" : "COLORPICKER"
137
+ },
138
+ "homeBarTextSize" : {
139
+ "value" : "large",
140
+ "type" : "DROPDOWN"
141
+ }
142
+ },
143
+ "HeaderNavigationBar:orderable:a34bf07d-1553-4e7d-86aa-c9ed2df75688" : {
144
+ "navBarTextSize" : {
145
+ "value" : "medium",
146
+ "type" : "DROPDOWN"
147
+ },
148
+ "navBarPadding" : {
149
+ "value" : 10,
150
+ "type" : "SLIDER"
151
+ },
152
+ "navBarBorderColor" : {
153
+ "value" : "#cbcbcb",
154
+ "type" : "COLORPICKER"
155
+ },
156
+ "navBarBackgroundColor" : {
157
+ "value" : "#ffffff",
158
+ "type" : "COLORPICKER"
159
+ },
160
+ "navBarTextColor" : {
161
+ "value" : "#474747",
162
+ "type" : "COLORPICKER"
163
+ },
164
+ "navBarTextAlignment" : {
165
+ "value" : "left",
166
+ "type" : "DROPDOWN"
167
+ },
168
+ "navBarLinkSpacing" : {
169
+ "value" : 20,
170
+ "type" : "SLIDER"
171
+ },
172
+ "navBarTextHoverColor" : {
173
+ "value" : "#0076ce",
174
+ "type" : "COLORPICKER"
175
+ }
176
+ },
177
+ "HeaderSearchBar" : {
178
+ "searchPlaceholder" : {
179
+ "value" : "uieditor.global.Header.HeaderSearchBar.searchPlaceholder",
180
+ "isLocalized" : true,
181
+ "type" : "INPUT"
182
+ },
183
+ "searchBarHeight" : {
184
+ "value" : "medium",
185
+ "type" : "DROPDOWN"
186
+ },
187
+ "searchIcon" : {
188
+ "value" : {
189
+ "alt" : ""
190
+ },
191
+ "type" : "IMAGE_UPLOADER"
192
+ },
193
+ "searchCornerRadius" : {
194
+ "value" : 24,
195
+ "type" : "SLIDER"
196
+ },
197
+ "visibilityHeader" : {
198
+ "value" : "",
199
+ "type" : "GROUP_HEADER"
200
+ },
201
+ "searchBarLocation" : {
202
+ "value" : "navigation_bar",
203
+ "type" : "RADIO"
204
+ },
205
+ "searchBorderColor" : {
206
+ "value" : "#cbcbcb",
207
+ "type" : "COLORPICKER"
208
+ },
209
+ "settingsHeader" : {
210
+ "value" : "",
211
+ "type" : "GROUP_HEADER"
212
+ },
213
+ "searchBarMaxWidth" : {
214
+ "value" : 500,
215
+ "type" : "SLIDER"
216
+ },
217
+ "searchBorderVisible" : {
218
+ "value" : true,
219
+ "type" : "TOGGLE"
220
+ },
221
+ "searchIconColor" : {
222
+ "value" : "#ffffff",
223
+ "type" : "COLORPICKER"
224
+ },
225
+ "searchButtonColor" : {
226
+ "value" : "#0076ce",
227
+ "type" : "COLORPICKER"
228
+ },
229
+ "searchBackgroundColor" : {
230
+ "value" : "#ffffff",
231
+ "type" : "COLORPICKER"
232
+ }
233
+ }
234
+ },
235
+ "orderableComponents" : [ {
236
+ "name" : "HeaderAnnouncementBar",
237
+ "id" : "HeaderAnnouncementBar:orderable:a34bf07d-1553-4e7d-86aa-c9ed2df75685",
238
+ "isVisible" : true
239
+ }, {
240
+ "name" : "HeaderAuxiliaryBar",
241
+ "id" : "HeaderAuxiliaryBar:orderable:a34bf07d-1553-4e7d-86aa-c9ed2df75686",
242
+ "isVisible" : true
243
+ }, {
244
+ "name" : "HeaderHomeBar",
245
+ "id" : "HeaderHomeBar:orderable:a34bf07d-1553-4e7d-86aa-c9ed2df75687",
246
+ "isVisible" : true
247
+ }, {
248
+ "name" : "HeaderNavigationBar",
249
+ "id" : "HeaderNavigationBar:orderable:a34bf07d-1553-4e7d-86aa-c9ed2df75688",
250
+ "isVisible" : true
251
+ } ]
252
+ },
253
+ "Footer" : {
254
+ "bottomBarBackground" : {
255
+ "value" : "#202122",
256
+ "type" : "COLORPICKER"
257
+ },
258
+ "newsletterLogoPosition" : {
259
+ "value" : "left",
260
+ "type" : "DROPDOWN"
261
+ },
262
+ "copyright" : {
263
+ "value" : "uieditor.global.Footer.copyright",
264
+ "isLocalized" : true,
265
+ "type" : "INPUT"
266
+ },
267
+ "footerText" : {
268
+ "value" : "#ffffff",
269
+ "type" : "COLORPICKER"
270
+ },
271
+ "newsletterButtonStyle" : {
272
+ "value" : "primary",
273
+ "type" : "RADIO"
274
+ },
275
+ "bottomBarText" : {
276
+ "value" : "#ffffff",
277
+ "type" : "COLORPICKER"
278
+ },
279
+ "newsletterSocialPosition" : {
280
+ "value" : "left",
281
+ "type" : "DROPDOWN"
282
+ },
283
+ "settingsHeader" : {
284
+ "value" : "",
285
+ "type" : "GROUP_HEADER"
286
+ },
287
+ "displaySocialMedia" : {
288
+ "value" : true,
289
+ "type" : "TOGGLE"
290
+ },
291
+ "navSeparatorColor" : {
292
+ "value" : "",
293
+ "type" : "COLORPICKER"
294
+ },
295
+ "footerBackground" : {
296
+ "value" : "#7e7e86",
297
+ "type" : "COLORPICKER"
298
+ },
299
+ "displayNavSeparator" : {
300
+ "value" : false,
301
+ "type" : "TOGGLE"
302
+ },
303
+ "selectedLogo" : {
304
+ "value" : "logoImage",
305
+ "type" : "LOGO"
306
+ },
307
+ "newsletterButtonLink" : {
308
+ "value" : "uieditor.sfbComponent.footer.newsletterButtonLink.defaultValue",
309
+ "isLocalized" : true,
310
+ "type" : "INPUT"
311
+ },
312
+ "footerStyleHeader" : {
313
+ "value" : "",
314
+ "type" : "GROUP_HEADER"
315
+ },
316
+ "logoSize" : {
317
+ "value" : 82,
318
+ "type" : "SLIDER"
319
+ },
320
+ "socialIconColor" : {
321
+ "value" : "",
322
+ "type" : "COLORPICKER"
323
+ },
324
+ "socials" : {
325
+ "value" : {
326
+ "items" : [ {
327
+ "label" : "Facebook",
328
+ "icon" : "facebook",
329
+ "values" : {
330
+ "accountLink" : {
331
+ "value" : "https://www.facebook.com"
332
+ },
333
+ "uploadIcon" : {
334
+ "value" : { },
335
+ "type" : "IMAGE_UPLOADER",
336
+ "isLocalized" : false
337
+ }
338
+ },
339
+ "isVisible" : true,
340
+ "deletable" : false,
341
+ "editable" : false
342
+ }, {
343
+ "label" : "Twitter",
344
+ "icon" : "twitter",
345
+ "values" : {
346
+ "accountLink" : {
347
+ "value" : "https://www.twitter.com"
348
+ },
349
+ "uploadIcon" : {
350
+ "value" : { },
351
+ "type" : "IMAGE_UPLOADER",
352
+ "isLocalized" : false
353
+ }
354
+ },
355
+ "isVisible" : true,
356
+ "deletable" : false,
357
+ "editable" : false
358
+ }, {
359
+ "label" : "Instagram",
360
+ "icon" : "instagram",
361
+ "values" : {
362
+ "accountLink" : {
363
+ "value" : "https://www.instagram.com"
364
+ },
365
+ "uploadIcon" : {
366
+ "value" : { },
367
+ "type" : "IMAGE_UPLOADER",
368
+ "isLocalized" : false
369
+ }
370
+ },
371
+ "isVisible" : true,
372
+ "deletable" : false,
373
+ "editable" : false
374
+ }, {
375
+ "label" : "LinkedIn",
376
+ "icon" : "linkedin",
377
+ "values" : {
378
+ "accountLink" : {
379
+ "value" : "https://www.linkedin.com"
380
+ },
381
+ "uploadIcon" : {
382
+ "value" : { },
383
+ "type" : "IMAGE_UPLOADER",
384
+ "isLocalized" : false
385
+ }
386
+ },
387
+ "isVisible" : true,
388
+ "deletable" : false,
389
+ "editable" : false
390
+ }, {
391
+ "label" : "YouTube",
392
+ "icon" : "youtube",
393
+ "values" : {
394
+ "accountLink" : {
395
+ "value" : "https://www.youtube.com"
396
+ },
397
+ "uploadIcon" : {
398
+ "value" : { },
399
+ "type" : "IMAGE_UPLOADER",
400
+ "isLocalized" : false
401
+ }
402
+ },
403
+ "isVisible" : true,
404
+ "deletable" : false,
405
+ "editable" : false
406
+ } ]
407
+ },
408
+ "type" : "DRAWER_LIST"
409
+ },
410
+ "newsletterButtonLabel" : {
411
+ "value" : "uieditor.sfbComponent.footer.newsletterButtonLabel.defaultValue",
412
+ "isLocalized" : true,
413
+ "type" : "INPUT"
414
+ },
415
+ "socialIconPosition" : {
416
+ "value" : "right",
417
+ "type" : "DROPDOWN"
418
+ },
419
+ "displayLogo" : {
420
+ "value" : false,
421
+ "type" : "TOGGLE_CHECK"
422
+ },
423
+ "newsletterText" : {
424
+ "value" : "uieditor.sfbComponent.footer.newsletterText.defaultValue",
425
+ "isLocalized" : true,
426
+ "type" : "INPUT"
427
+ },
428
+ "navigationHeader" : {
429
+ "value" : "",
430
+ "type" : "GROUP_HEADER"
431
+ },
432
+ "displayDefaultSocialIcons" : {
433
+ "value" : true,
434
+ "type" : "TOGGLE"
435
+ },
436
+ "layout" : {
437
+ "value" : "newsletter_social",
438
+ "type" : "RADIO"
439
+ },
440
+ "newsletterTitle" : {
441
+ "value" : "uieditor.sfbComponent.footer.newsletterTitle.defaultValue",
442
+ "isLocalized" : true,
443
+ "type" : "INPUT"
444
+ },
445
+ "logoPosition" : {
446
+ "value" : "bottomRight",
447
+ "type" : "DROPDOWN"
448
+ },
449
+ "size" : {
450
+ "value" : "medium",
451
+ "type" : "DROPDOWN"
452
+ },
453
+ "displayLanguageSwitcher" : {
454
+ "value" : true,
455
+ "type" : "TOGGLE"
456
+ },
457
+ "newsletterHeader" : {
458
+ "value" : "",
459
+ "type" : "GROUP_HEADER"
460
+ }
461
+ }
462
+ },
463
+ "orderableComponents" : [ ]
464
+ },
465
+ "home" : {
466
+ "components" : {
467
+ "Carousel:orderable:c06a8060-3014-49c8-80a4-18995de16c3c" : {
468
+ "backgroundColor" : {
469
+ "value" : "#b6b6b6",
470
+ "type" : "COLORPICKER"
471
+ },
472
+ "slides" : {
473
+ "value" : [ {
474
+ "contentType" : "IMAGE_ONLY",
475
+ "slideData" : {
476
+ "slideName" : "Product Promotion",
477
+ "title" : "Image banner title",
478
+ "text" : "Give customers details about the banner content. You can also add a link to redirect the user to a product or page that you want to promote. ",
479
+ "image" : {
480
+ "type" : "IMAGE_UPLOADER",
481
+ "filename" : "AppWise_image.jpg",
482
+ "url" : "https://d33na3ni6eqf5j.cloudfront.net/5dd60cb8-8d15-4cec-b6bd-1a85ae666f76/05da8a68-5d65-40d3-a68e-a043e800989e.jpg"
483
+ },
484
+ "textSize" : "medium",
485
+ "titleSize" : "medium",
486
+ "textAlignment" : "left",
487
+ "slideLink" : "https://www.appdirect.com/products/appwise/features/integrations",
488
+ "textColor" : "#ffffff",
489
+ "titleColor" : "#ffffff",
490
+ "imageSizing" : "fill",
491
+ "overlayColor" : "#b6b6b6",
492
+ "backgroundColor" : "#b6b6b6"
493
+ }
494
+ } ],
495
+ "type" : "SLIDES"
496
+ },
497
+ "delay" : {
498
+ "value" : 5,
499
+ "type" : "DROPDOWN"
500
+ },
501
+ "backgroundImg" : {
502
+ "value" : {
503
+ "alt" : ""
504
+ },
505
+ "type" : "IMAGE_UPLOADER"
506
+ },
507
+ "isDisplayCarets" : {
508
+ "value" : true,
509
+ "type" : "TOGGLE_CHECK"
510
+ },
511
+ "isAutorotate" : {
512
+ "value" : true,
513
+ "type" : "TOGGLE_CHECK"
514
+ },
515
+ "headingSpacer" : {
516
+ "value" : "",
517
+ "type" : "GROUP_HEADER"
518
+ },
519
+ "caretsColorTheme" : {
520
+ "value" : "uieditor.sfbComponent.carousel.caretsColorTheme.dark",
521
+ "type" : "DROPDOWN"
522
+ },
523
+ "backgroundType" : {
524
+ "value" : "color",
525
+ "type" : "RADIO"
526
+ },
527
+ "isDisplayDots" : {
528
+ "value" : true,
529
+ "type" : "TOGGLE_CHECK"
530
+ },
531
+ "isDisplayCaretsOnHover" : {
532
+ "value" : true,
533
+ "type" : "TOGGLE_CHECK"
534
+ },
535
+ "height" : {
536
+ "value" : 400,
537
+ "type" : "DROPDOWN"
538
+ }
539
+ },
540
+ "FeaturedProduct:orderable:b0774fbb-6868-4428-a338-ce0c4e599a4e" : {
541
+ "imageMask" : {
542
+ "value" : "noMask",
543
+ "type" : "RADIO"
544
+ },
545
+ "cardBorderColor" : {
546
+ "value" : "#FFFFFF",
547
+ "type" : "COLORPICKER"
548
+ },
549
+ "tabBorderRadius" : {
550
+ "value" : 8,
551
+ "type" : "SLIDER"
552
+ },
553
+ "tabPosition" : {
554
+ "value" : "left",
555
+ "type" : "DROPDOWN"
556
+ },
557
+ "buttonType" : {
558
+ "value" : "primary",
559
+ "type" : "RADIO"
560
+ },
561
+ "tabTitle" : {
562
+ "value" : "Just added",
563
+ "type" : "INPUT"
564
+ },
565
+ "isPriceVisible" : {
566
+ "value" : true,
567
+ "type" : "TOGGLE_CHECK"
568
+ },
569
+ "imageBackgroundColor" : {
570
+ "value" : "#fffafa",
571
+ "type" : "COLORPICKER"
572
+ },
573
+ "tabBackgroundColor" : {
574
+ "value" : "#474747",
575
+ "type" : "COLORPICKER"
576
+ },
577
+ "imageSize" : {
578
+ "value" : "scaleToFit",
579
+ "type" : "RADIO"
580
+ },
581
+ "containerBackgroundColor" : {
582
+ "value" : "#ffffff",
583
+ "type" : "COLORPICKER"
584
+ },
585
+ "product" : {
586
+ "value" : {
587
+ "id" : 399461,
588
+ "name" : "Dropbox Business integration [Sample]",
589
+ "description" : "Give teams more reasons to use ACME by syncing commercial documents stored on Dropbox. Make it easier for sales to collaborate with prospects, customers, and other internal users.",
590
+ "overviewImageUrl" : "https://d3bql97l1ytoxn.cloudfront.net/app_resources/399461/overview/image5277682306114343707.png"
591
+ },
592
+ "type" : "PRODUCT"
593
+ },
594
+ "customProductTitle" : {
595
+ "value" : "",
596
+ "type" : "TEXTAREA"
597
+ },
598
+ "tabHeading" : {
599
+ "value" : "",
600
+ "type" : "GROUP_HEADER"
601
+ },
602
+ "imagePosition" : {
603
+ "value" : "right",
604
+ "type" : "RADIO"
605
+ },
606
+ "isShadowVisible" : {
607
+ "value" : true,
608
+ "type" : "TOGGLE_CHECK"
609
+ },
610
+ "productDescriptionColor" : {
611
+ "value" : "#474747",
612
+ "type" : "COLORPICKER"
613
+ },
614
+ "productTitleColor" : {
615
+ "value" : "#474747",
616
+ "type" : "COLORPICKER"
617
+ },
618
+ "productTextAlignment" : {
619
+ "value" : "topLeft",
620
+ "type" : "DROPDOWN"
621
+ },
622
+ "customProductDescription" : {
623
+ "value" : "",
624
+ "type" : "TEXTAREA"
625
+ },
626
+ "isButtonVisible" : {
627
+ "value" : true,
628
+ "type" : "TOGGLE_CHECK"
629
+ },
630
+ "buttonLabel" : {
631
+ "value" : "Shop now",
632
+ "type" : "INPUT"
633
+ },
634
+ "tabTextColor" : {
635
+ "value" : "#FFFFFF",
636
+ "type" : "COLORPICKER"
637
+ },
638
+ "size" : {
639
+ "value" : "large",
640
+ "type" : "RADIO"
641
+ },
642
+ "imageHeading" : {
643
+ "value" : "",
644
+ "type" : "GROUP_HEADER"
645
+ },
646
+ "customImage" : {
647
+ "value" : {
648
+ "type" : "IMAGE_UPLOADER",
649
+ "filename" : "Dropbox-Logo.png",
650
+ "url" : "https://d3bql97l1ytoxn.cloudfront.net/c54ad30b-eafa-4ffc-8a72-c07aa9ade4b0/1c141942-1f7e-4a2d-b469-5a32df6f2e50.png",
651
+ "alt" : ""
652
+ },
653
+ "type" : "IMAGE_UPLOADER"
654
+ },
655
+ "cardBorderRadius" : {
656
+ "value" : 8,
657
+ "type" : "SLIDER"
658
+ },
659
+ "cardShadowColor" : {
660
+ "value" : "rgba(0,1,0,0.2)",
661
+ "type" : "COLORPICKER"
662
+ },
663
+ "productPricingColor" : {
664
+ "value" : "#474747",
665
+ "type" : "COLORPICKER"
666
+ },
667
+ "productHeading" : {
668
+ "value" : "",
669
+ "type" : "GROUP_HEADER"
670
+ },
671
+ "productBackgroundColor" : {
672
+ "value" : "#f5f5f5",
673
+ "type" : "COLORPICKER"
674
+ }
675
+ },
676
+ "Slider:orderable:a34bf07d-1553-4e7d-86aa-c9ed2df75685" : {
677
+ "hasQuickview" : {
678
+ "value" : true,
679
+ "type" : "TOGGLE"
680
+ },
681
+ "productsList" : {
682
+ "value" : {
683
+ "contentType" : "dynamic",
684
+ "queries" : {
685
+ "sort" : "POPULARITY"
686
+ }
687
+ },
688
+ "type" : "PRODUCTS_LIST"
689
+ },
690
+ "isShadowVisible" : {
691
+ "value" : true,
692
+ "type" : "TOGGLE_CHECK"
693
+ },
694
+ "textBackgroundColor" : {
695
+ "value" : "#FFFFFF",
696
+ "type" : "COLORPICKER"
697
+ },
698
+ "sliderOptions" : {
699
+ "value" : true,
700
+ "type" : "TOGGLE"
701
+ },
702
+ "tileBackgroundColor" : {
703
+ "value" : "#EAEAEA",
704
+ "type" : "COLORPICKER"
705
+ },
706
+ "quickviewOptions" : {
707
+ "value" : [ "isQuickviewVisible" ],
708
+ "type" : "CHECKBOX"
709
+ },
710
+ "sliderSettings" : {
711
+ "value" : "",
712
+ "type" : "GROUP_HEADER"
713
+ },
714
+ "displayOptions" : {
715
+ "value" : [ "isDescriptionVisible", "isRatingsVisible" ],
716
+ "type" : "CHECKBOX"
717
+ },
718
+ "buttonLabel" : {
719
+ "value" : "uieditor.home.Slider:orderable:a34bf07d-1553-4e7d-86aa-c9ed2df75685.buttonLabel",
720
+ "isLocalized" : true,
721
+ "type" : "INPUT"
722
+ },
723
+ "layout" : {
724
+ "value" : "classic",
725
+ "type" : "RADIO"
726
+ },
727
+ "maxRows" : {
728
+ "value" : 2,
729
+ "type" : "RADIO"
730
+ },
731
+ "size" : {
732
+ "value" : "small",
733
+ "type" : "RADIO"
734
+ },
735
+ "borderRadius" : {
736
+ "value" : 8,
737
+ "type" : "SLIDER"
738
+ },
739
+ "quickviewDisplayOptions" : {
740
+ "value" : [ "isScreenshotVisible" ],
741
+ "type" : "CHECKBOX"
742
+ },
743
+ "tileCtaLabel" : {
744
+ "value" : "Buy Now",
745
+ "type" : "INPUT"
746
+ },
747
+ "quickviewViewMode" : {
748
+ "value" : "default",
749
+ "type" : "DROPDOWN"
750
+ },
751
+ "sliderTitle" : {
752
+ "value" : "uieditor.home.Slider:orderable:a34bf07d-1553-4e7d-86aa-c9ed2df75685.sliderTitle",
753
+ "isLocalized" : true,
754
+ "type" : "INPUT"
755
+ },
756
+ "cardBorderRadius" : {
757
+ "value" : 8,
758
+ "type" : "SLIDER"
759
+ }
760
+ },
761
+ "Slider:orderable:906daff8-d299-42ba-b873-91bf4798ba69" : {
762
+ "hasQuickview" : {
763
+ "value" : true,
764
+ "type" : "TOGGLE"
765
+ },
766
+ "productsList" : {
767
+ "value" : {
768
+ "contentType" : "dynamic",
769
+ "queries" : {
770
+ "sort" : "ALPHABETICAL"
771
+ }
772
+ },
773
+ "type" : "PRODUCTS_LIST"
774
+ },
775
+ "isShadowVisible" : {
776
+ "value" : true,
777
+ "type" : "TOGGLE_CHECK"
778
+ },
779
+ "textBackgroundColor" : {
780
+ "value" : "#FFFFFF",
781
+ "type" : "COLORPICKER"
782
+ },
783
+ "sliderOptions" : {
784
+ "value" : true,
785
+ "type" : "TOGGLE"
786
+ },
787
+ "tileBackgroundColor" : {
788
+ "value" : "#EAEAEA",
789
+ "type" : "COLORPICKER"
790
+ },
791
+ "quickviewOptions" : {
792
+ "value" : [ "isQuickviewVisible" ],
793
+ "type" : "CHECKBOX"
794
+ },
795
+ "sliderSettings" : {
796
+ "value" : "",
797
+ "type" : "GROUP_HEADER"
798
+ },
799
+ "displayOptions" : {
800
+ "value" : [ "isDescriptionVisible", "isRatingsVisible" ],
801
+ "type" : "CHECKBOX"
802
+ },
803
+ "buttonLabel" : {
804
+ "value" : "uieditor.home.Slider:orderable:906daff8-d299-42ba-b873-91bf4798ba69.buttonLabel",
805
+ "isLocalized" : true,
806
+ "type" : "INPUT"
807
+ },
808
+ "layout" : {
809
+ "value" : "square",
810
+ "type" : "RADIO"
811
+ },
812
+ "maxRows" : {
813
+ "value" : 2,
814
+ "type" : "RADIO"
815
+ },
816
+ "size" : {
817
+ "value" : "small",
818
+ "type" : "RADIO"
819
+ },
820
+ "borderRadius" : {
821
+ "value" : 8,
822
+ "type" : "SLIDER"
823
+ },
824
+ "quickviewDisplayOptions" : {
825
+ "value" : [ "isScreenshotVisible" ],
826
+ "type" : "CHECKBOX"
827
+ },
828
+ "tileCtaLabel" : {
829
+ "value" : "Buy Now",
830
+ "type" : "INPUT"
831
+ },
832
+ "quickviewViewMode" : {
833
+ "value" : "default",
834
+ "type" : "DROPDOWN"
835
+ },
836
+ "sliderTitle" : {
837
+ "value" : "uieditor.home.Slider:orderable:906daff8-d299-42ba-b873-91bf4798ba69.sliderTitle",
838
+ "isLocalized" : true,
839
+ "type" : "INPUT"
840
+ },
841
+ "cardBorderRadius" : {
842
+ "value" : 8,
843
+ "type" : "SLIDER"
844
+ }
845
+ },
846
+ "ProductGroups:orderable:5cd5fc27-823f-4497-9b7d-b75034e835f7" : {
847
+ "contentAlignment" : {
848
+ "value" : "space-evenly",
849
+ "type" : "DROPDOWN"
850
+ },
851
+ "displaySettings" : {
852
+ "value" : "",
853
+ "type" : "GROUP_HEADER"
854
+ },
855
+ "contentSettings" : {
856
+ "value" : "",
857
+ "type" : "GROUP_HEADER"
858
+ },
859
+ "displayUpperTitle" : {
860
+ "value" : false,
861
+ "type" : "TOGGLE_CHECK"
862
+ },
863
+ "productGroupsTabTitle" : {
864
+ "value" : "Product Groups",
865
+ "type" : "INPUT"
866
+ },
867
+ "cardBorderColor" : {
868
+ "value" : "#ffffff",
869
+ "type" : "COLORPICKER"
870
+ },
871
+ "rowGap" : {
872
+ "value" : 28,
873
+ "type" : "SLIDER"
874
+ },
875
+ "displayHeaderDescription" : {
876
+ "value" : true,
877
+ "type" : "TOGGLE_CHECK"
878
+ },
879
+ "upperTitleColor" : {
880
+ "value" : "#474747",
881
+ "type" : "COLORPICKER"
882
+ },
883
+ "displayHeaderTitle" : {
884
+ "value" : true,
885
+ "type" : "TOGGLE_CHECK"
886
+ },
887
+ "displayTitle" : {
888
+ "value" : true,
889
+ "type" : "TOGGLE_CHECK"
890
+ },
891
+ "buttonAlignment" : {
892
+ "value" : "center",
893
+ "type" : "DROPDOWN"
894
+ },
895
+ "displayBorder" : {
896
+ "value" : true,
897
+ "type" : "TOGGLE_CHECK"
898
+ },
899
+ "buttonType" : {
900
+ "value" : "primary",
901
+ "type" : "RADIO"
902
+ },
903
+ "titleColor" : {
904
+ "value" : "#474747",
905
+ "type" : "COLORPICKER"
906
+ },
907
+ "imageBackgroundColor" : {
908
+ "value" : "#ffffff",
909
+ "type" : "COLORPICKER"
910
+ },
911
+ "containerBackgroundColor" : {
912
+ "value" : "#eeeeee",
913
+ "type" : "COLORPICKER"
914
+ },
915
+ "shadowColor" : {
916
+ "value" : "rgba(0,1,0,0.2)",
917
+ "type" : "COLORPICKER"
918
+ },
919
+ "displayDescription" : {
920
+ "value" : true,
921
+ "type" : "TOGGLE_CHECK"
922
+ },
923
+ "upperTitleAlignment" : {
924
+ "value" : "left",
925
+ "type" : "DROPDOWN"
926
+ },
927
+ "cardCornerRadius" : {
928
+ "value" : "15",
929
+ "type" : "SLIDER"
930
+ },
931
+ "displayButton" : {
932
+ "value" : true,
933
+ "type" : "TOGGLE_CHECK"
934
+ },
935
+ "onHoverBorderOnly" : {
936
+ "value" : false,
937
+ "type" : "TOGGLE_CHECK"
938
+ },
939
+ "descriptionColor" : {
940
+ "value" : "#474747",
941
+ "type" : "COLORPICKER"
942
+ },
943
+ "onHoverShadowOnly" : {
944
+ "value" : true,
945
+ "type" : "TOGGLE_CHECK"
946
+ },
947
+ "productGroupsList" : {
948
+ "value" : {
949
+ "data" : [ {
950
+ "uuid" : "1f3a0a81-ac43-4cfe-8f43-30ef5a72ba92",
951
+ "panelTitle" : {
952
+ "value" : "prefix.uieditor.home.ProductGroups:orderable.panelTitle.5cd5fc27-823f-4497-9b7d-b75034e835f7.1",
953
+ "isLocalized" : true,
954
+ "type" : "INPUT"
955
+ },
956
+ "upperTitle" : {
957
+ "value" : "prefix.uieditor.home.ProductGroups:orderable.upperTitle.5cd5fc27-823f-4497-9b7d-b75034e835f7.1",
958
+ "isLocalized" : true,
959
+ "type" : "INPUT"
960
+ },
961
+ "title" : {
962
+ "value" : "prefix.uieditor.home.ProductGroups:orderable.title.5cd5fc27-823f-4497-9b7d-b75034e835f7.1",
963
+ "isLocalized" : true,
964
+ "type" : "INPUT"
965
+ },
966
+ "description" : {
967
+ "value" : "prefix.uieditor.home.ProductGroups:orderable.description.5cd5fc27-823f-4497-9b7d-b75034e835f7.1",
968
+ "isLocalized" : true,
969
+ "type" : "INPUT"
970
+ },
971
+ "buttonLabel" : {
972
+ "value" : "prefix.uieditor.home.ProductGroups:orderable.buttonLabel.5cd5fc27-823f-4497-9b7d-b75034e835f7.1",
973
+ "isLocalized" : true,
974
+ "type" : "INPUT"
975
+ },
976
+ "customLink" : {
977
+ "value" : "",
978
+ "type" : "INPUT"
979
+ },
980
+ "link" : {
981
+ "value" : "/en-US/listing?filter=FEATURED&filter=FREE&filter=FREE_TRIAL&order=POPULARITY",
982
+ "type" : "INPUT"
983
+ },
984
+ "imageSize" : {
985
+ "value" : "scaleToFit",
986
+ "type" : "RADIO"
987
+ },
988
+ "customImage" : {
989
+ "type" : "IMAGE_UPLOADER",
990
+ "defaultValue" : {
991
+ "filename" : "People New-10.jpg",
992
+ "type" : "IMAGE_UPLOADER",
993
+ "url" : "https://d3bql97l1ytoxn.cloudfront.net/f3b6ded5-720a-44b9-b229-dfb19282d9c1/36a6ece6-d03e-4ea8-a9c6-bd2614f178e7.jpg",
994
+ "alt" : ""
995
+ },
996
+ "isAltVisible" : true
997
+ },
998
+ "useCustomLink" : false,
999
+ "isVisible" : true,
1000
+ "editorData" : {
1001
+ "localGroups" : {
1002
+ "group-attr-0" : true
1003
+ },
1004
+ "localSubGroups" : {
1005
+ "subgroup-attr--FEATURED" : true,
1006
+ "subgroup-attr--FREE" : true,
1007
+ "subgroup-attr--FREE_TRIAL" : true
1008
+ },
1009
+ "order" : "POPULARITY"
1010
+ }
1011
+ }, {
1012
+ "uuid" : "34284f4f-80a8-4e5d-ba70-7435b3aa7bf5",
1013
+ "panelTitle" : {
1014
+ "value" : "prefix.uieditor.home.ProductGroups:orderable.panelTitle.5cd5fc27-823f-4497-9b7d-b75034e835f7.2",
1015
+ "isLocalized" : true,
1016
+ "type" : "INPUT"
1017
+ },
1018
+ "upperTitle" : {
1019
+ "value" : "prefix.uieditor.home.ProductGroups:orderable.upperTitle.5cd5fc27-823f-4497-9b7d-b75034e835f7.2",
1020
+ "isLocalized" : true,
1021
+ "type" : "INPUT"
1022
+ },
1023
+ "title" : {
1024
+ "value" : "prefix.uieditor.home.ProductGroups:orderable.title.5cd5fc27-823f-4497-9b7d-b75034e835f7.2",
1025
+ "isLocalized" : true,
1026
+ "type" : "INPUT"
1027
+ },
1028
+ "description" : {
1029
+ "value" : "prefix.uieditor.home.ProductGroups:orderable.description.5cd5fc27-823f-4497-9b7d-b75034e835f7.2",
1030
+ "isLocalized" : true,
1031
+ "type" : "INPUT"
1032
+ },
1033
+ "buttonLabel" : {
1034
+ "value" : "prefix.uieditor.home.ProductGroups:orderable.buttonLabel.5cd5fc27-823f-4497-9b7d-b75034e835f7.2",
1035
+ "isLocalized" : true,
1036
+ "type" : "INPUT"
1037
+ },
1038
+ "customLink" : {
1039
+ "value" : "",
1040
+ "type" : "INPUT"
1041
+ },
1042
+ "link" : {
1043
+ "value" : "/en-US/listing?filter=FEATURED&filter=FREE&filter=FREE_TRIAL&order=POPULARITY",
1044
+ "type" : "INPUT"
1045
+ },
1046
+ "imageSize" : {
1047
+ "value" : "scaleToFit",
1048
+ "type" : "RADIO"
1049
+ },
1050
+ "customImage" : {
1051
+ "type" : "IMAGE_UPLOADER",
1052
+ "defaultValue" : {
1053
+ "filename" : "People New-10.jpg",
1054
+ "type" : "IMAGE_UPLOADER",
1055
+ "url" : "https://d3bql97l1ytoxn.cloudfront.net/8d6acf1f-65de-4ed4-9c9c-cf5b96d395d4/d38938cb-fdf2-4825-9622-d88b9e0b05f5.jpg",
1056
+ "alt" : ""
1057
+ },
1058
+ "isAltVisible" : true
1059
+ },
1060
+ "useCustomLink" : false,
1061
+ "isVisible" : true,
1062
+ "editorData" : {
1063
+ "localGroups" : {
1064
+ "group-attr-0" : true
1065
+ },
1066
+ "localSubGroups" : {
1067
+ "subgroup-attr--FEATURED" : true,
1068
+ "subgroup-attr--FREE" : true,
1069
+ "subgroup-attr--FREE_TRIAL" : true
1070
+ },
1071
+ "order" : "POPULARITY"
1072
+ }
1073
+ }, {
1074
+ "uuid" : "77087322-407b-4734-bd62-d72c2a0b56a4",
1075
+ "panelTitle" : {
1076
+ "value" : "prefix.uieditor.home.ProductGroups:orderable.panelTitle.5cd5fc27-823f-4497-9b7d-b75034e835f7.3",
1077
+ "isLocalized" : true,
1078
+ "type" : "INPUT"
1079
+ },
1080
+ "upperTitle" : {
1081
+ "value" : "prefix.uieditor.home.ProductGroups:orderable.upperTitle.5cd5fc27-823f-4497-9b7d-b75034e835f7.3",
1082
+ "isLocalized" : true,
1083
+ "type" : "INPUT"
1084
+ },
1085
+ "title" : {
1086
+ "value" : "prefix.uieditor.home.ProductGroups:orderable.title.5cd5fc27-823f-4497-9b7d-b75034e835f7.3",
1087
+ "isLocalized" : true,
1088
+ "type" : "INPUT"
1089
+ },
1090
+ "description" : {
1091
+ "value" : "prefix.uieditor.home.ProductGroups:orderable.description.5cd5fc27-823f-4497-9b7d-b75034e835f7.3",
1092
+ "isLocalized" : true,
1093
+ "type" : "INPUT"
1094
+ },
1095
+ "buttonLabel" : {
1096
+ "value" : "prefix.uieditor.home.ProductGroups:orderable.buttonLabel.5cd5fc27-823f-4497-9b7d-b75034e835f7.3",
1097
+ "isLocalized" : true,
1098
+ "type" : "INPUT"
1099
+ },
1100
+ "customLink" : {
1101
+ "value" : "",
1102
+ "type" : "INPUT"
1103
+ },
1104
+ "link" : {
1105
+ "value" : "/en-US/listing?order=POPULARITY",
1106
+ "type" : "INPUT"
1107
+ },
1108
+ "imageSize" : {
1109
+ "value" : "scaleToFit",
1110
+ "type" : "RADIO"
1111
+ },
1112
+ "customImage" : {
1113
+ "type" : "IMAGE_UPLOADER",
1114
+ "defaultValue" : {
1115
+ "filename" : "People New-10.jpg",
1116
+ "type" : "IMAGE_UPLOADER",
1117
+ "url" : "https://d3bql97l1ytoxn.cloudfront.net/c499b1ff-0e8e-4f39-948e-37baa666a0e1/7eecbc38-f35c-4b20-a37b-f41f539260c8.jpg",
1118
+ "alt" : ""
1119
+ },
1120
+ "isAltVisible" : true
1121
+ },
1122
+ "useCustomLink" : false,
1123
+ "isVisible" : true,
1124
+ "editorData" : {
1125
+ "localGroups" : { },
1126
+ "localSubGroups" : { },
1127
+ "order" : "POPULARITY"
1128
+ }
1129
+ } ],
1130
+ "name" : "PRODUCT_GROUPS_LIST"
1131
+ },
1132
+ "type" : "MENU_LINK"
1133
+ },
1134
+ "imageCornerRadius" : {
1135
+ "value" : 0,
1136
+ "type" : "SLIDER"
1137
+ },
1138
+ "headerDescription" : {
1139
+ "value" : "uieditor.home.ProductGroups:orderable:5cd5fc27-823f-4497-9b7d-b75034e835f7.headerDescription",
1140
+ "isLocalized" : true,
1141
+ "type" : "TEXTAREA"
1142
+ },
1143
+ "cardBackgroundColor" : {
1144
+ "value" : "#ffffff",
1145
+ "type" : "COLORPICKER"
1146
+ },
1147
+ "componentSettings" : {
1148
+ "value" : "",
1149
+ "type" : "GROUP_HEADER"
1150
+ },
1151
+ "columnGap" : {
1152
+ "value" : "9",
1153
+ "type" : "SLIDER"
1154
+ },
1155
+ "size" : {
1156
+ "value" : "medium",
1157
+ "type" : "RADIO"
1158
+ },
1159
+ "displayShadow" : {
1160
+ "value" : true,
1161
+ "type" : "TOGGLE_CHECK"
1162
+ },
1163
+ "textAlignment" : {
1164
+ "value" : "center",
1165
+ "type" : "DROPDOWN"
1166
+ },
1167
+ "headerTextAlignment" : {
1168
+ "value" : "left",
1169
+ "type" : "DROPDOWN"
1170
+ },
1171
+ "style" : {
1172
+ "value" : "card",
1173
+ "type" : "RADIO"
1174
+ },
1175
+ "headerTitle" : {
1176
+ "value" : "uieditor.home.ProductGroups:orderable:5cd5fc27-823f-4497-9b7d-b75034e835f7.headerTitle",
1177
+ "isLocalized" : true,
1178
+ "type" : "INPUT"
1179
+ }
1180
+ },
1181
+ "StickyButtonPageScroll" : {
1182
+ "visibleDesktop" : {
1183
+ "value" : false,
1184
+ "type" : "TOGGLE"
1185
+ }
1186
+ }
1187
+ },
1188
+ "orderableComponents" : [ {
1189
+ "name" : "Carousel",
1190
+ "id" : "Carousel:orderable:c06a8060-3014-49c8-80a4-18995de16c3c",
1191
+ "isVisible" : true
1192
+ }, {
1193
+ "name" : "FeaturedProduct",
1194
+ "id" : "FeaturedProduct:orderable:b0774fbb-6868-4428-a338-ce0c4e599a4e",
1195
+ "isVisible" : true
1196
+ }, {
1197
+ "name" : "Slider",
1198
+ "id" : "Slider:orderable:906daff8-d299-42ba-b873-91bf4798ba69",
1199
+ "isVisible" : true
1200
+ }, {
1201
+ "name" : "Slider",
1202
+ "id" : "Slider:orderable:a34bf07d-1553-4e7d-86aa-c9ed2df75685",
1203
+ "isVisible" : true
1204
+ }, {
1205
+ "name" : "ProductGroups",
1206
+ "id" : "ProductGroups:orderable:5cd5fc27-823f-4497-9b7d-b75034e835f7",
1207
+ "isVisible" : true
1208
+ } ]
1209
+ },
1210
+ "profile" : {
1211
+ "components" : {
1212
+ "ProductDescription:orderable:59db9f73-9caa-48b2-9df9-da98413e7de8" : {
1213
+ "isAddonsVisible" : {
1214
+ "value" : true,
1215
+ "type" : "TOGGLE"
1216
+ },
1217
+ "isPricesVisible" : {
1218
+ "value" : true,
1219
+ "type" : "TOGGLE"
1220
+ },
1221
+ "layout" : {
1222
+ "value" : "horizontal-thumbnails",
1223
+ "type" : "DROPDOWN"
1224
+ }
1225
+ },
1226
+ "ProductReviews:orderable:7d021438-3800-4fb9-9577-e809dcf15df7" : {
1227
+ "isAvatarVisible" : {
1228
+ "value" : true,
1229
+ "type" : "TOGGLE"
1230
+ },
1231
+ "position" : {
1232
+ "value" : "right",
1233
+ "type" : "DROPDOWN"
1234
+ }
1235
+ },
1236
+ "ProductTopFeatures:orderable:d7254b33-ac88-4945-a248-edf6a87a2b16" : {
1237
+ "numberOfColumns" : {
1238
+ "value" : "two",
1239
+ "type" : "DROPDOWN"
1240
+ },
1241
+ "withImages" : {
1242
+ "value" : false,
1243
+ "type" : "TOGGLE"
1244
+ }
1245
+ },
1246
+ "ProductAdditionalInfo:orderable:83a7e00c-b3d5-4d64-8919-a9cb3fa2d5b3" : {
1247
+ "headerBackground" : {
1248
+ "value" : "#F5F5F5",
1249
+ "type" : "COLORPICKER"
1250
+ },
1251
+ "infoPosition" : {
1252
+ "value" : "left",
1253
+ "type" : "DROPDOWN"
1254
+ },
1255
+ "sideBarBackground" : {
1256
+ "value" : "#FFFF",
1257
+ "type" : "COLORPICKER"
1258
+ },
1259
+ "columnCount" : {
1260
+ "value" : "1",
1261
+ "type" : "DROPDOWN"
1262
+ },
1263
+ "sideBarBorder" : {
1264
+ "value" : "#CBCBCB",
1265
+ "type" : "COLORPICKER"
1266
+ }
1267
+ },
1268
+ "ProductResources:orderable:7c059217-1dbc-4b75-a6ee-a7ca740facd6" : {
1269
+ "spacing" : {
1270
+ "value" : 0,
1271
+ "type" : "SLIDER"
1272
+ },
1273
+ "columns" : {
1274
+ "value" : "3",
1275
+ "type" : "DROPDOWN"
1276
+ }
1277
+ },
1278
+ "ProductBanner" : {
1279
+ "bannerBackgroundColor" : {
1280
+ "value" : "#ffffff",
1281
+ "type" : "COLORPICKER"
1282
+ },
1283
+ "descTextSize" : {
1284
+ "value" : "medium",
1285
+ "type" : "DROPDOWN"
1286
+ },
1287
+ "backgroundImg" : {
1288
+ "value" : {},
1289
+ "type" : "IMAGE_UPLOADER"
1290
+ },
1291
+ "textColor" : {
1292
+ "value" : "dark",
1293
+ "type" : "DROPDOWN"
1294
+ },
1295
+ "settingsHeight" : {
1296
+ "value" : "medium",
1297
+ "type" : "DROPDOWN"
1298
+ },
1299
+ "showRatings" : {
1300
+ "value" : true,
1301
+ "type" : "TOGGLE"
1302
+ },
1303
+ "backgroundType" : {
1304
+ "value" : "color",
1305
+ "type" : "RADIO"
1306
+ },
1307
+ "productNameSize" : {
1308
+ "value" : "medium",
1309
+ "type" : "DROPDOWN"
1310
+ }
1311
+ },
1312
+ "StickyButtonPageScroll" : {
1313
+ "visibleDesktop" : {
1314
+ "value" : false,
1315
+ "type" : "TOGGLE"
1316
+ }
1317
+ }
1318
+ },
1319
+ "orderableComponents" : [ {
1320
+ "name" : "ProductDescription",
1321
+ "id" : "ProductDescription:orderable:59db9f73-9caa-48b2-9df9-da98413e7de8"
1322
+ }, {
1323
+ "name" : "ProductTopFeatures",
1324
+ "id" : "ProductTopFeatures:orderable:d7254b33-ac88-4945-a248-edf6a87a2b16"
1325
+ }, {
1326
+ "name" : "FeaturedCustomers",
1327
+ "id" : "FeaturedCustomers:orderable:6b6fac12-233f-43ab-b2d1-4bb988b49992"
1328
+ }, {
1329
+ "name" : "ProductReviews",
1330
+ "id" : "ProductReviews:orderable:7d021438-3800-4fb9-9577-e809dcf15df7"
1331
+ }, {
1332
+ "name" : "ProductAdditionalInfo",
1333
+ "id" : "ProductAdditionalInfo:orderable:83a7e00c-b3d5-4d64-8919-a9cb3fa2d5b3"
1334
+ }, {
1335
+ "name" : "ProductQuestions",
1336
+ "id" : "ProductQuestions:orderable:80e6ff9a-500f-489c-a2cd-e7dadc3bc38c"
1337
+ }, {
1338
+ "name" : "ProductResources",
1339
+ "id" : "ProductResources:orderable:7c059217-1dbc-4b75-a6ee-a7ca740facd6"
1340
+ }]
1341
+ }
1342
+ },
1343
+ "menus" : {
1344
+ "HOME_BAR_MENU" : {
1345
+ "menuType" : "MENU_LINK",
1346
+ "menu" : [ {
1347
+ "uuid" : "2a16c9dc-ce14-4acf-b8b7-2302cc79de7a",
1348
+ "title" : {
1349
+ "value" : "uieditor.menuItem.title.2a16c9dc-ce14-4acf-b8b7-2302cc79de7a",
1350
+ "isLocalized" : true,
1351
+ "type" : "INPUT"
1352
+ },
1353
+ "link" : {
1354
+ "value" : "uieditor.menuItem.link.2a16c9dc-ce14-4acf-b8b7-2302cc79de7a",
1355
+ "isLocalized" : true,
1356
+ "type" : "INPUT"
1357
+ },
1358
+ "type" : "CUSTOM_LINK",
1359
+ "openInNewTab" : false,
1360
+ "isVisible" : true,
1361
+ "isDisabled" : false,
1362
+ "children" : [ {
1363
+ "uuid" : "2af435e4-3f06-416c-9fc2-a53a18fab456",
1364
+ "title" : {
1365
+ "value" : "uieditor.menuItem.title.2af435e4-3f06-416c-9fc2-a53a18fab456",
1366
+ "isLocalized" : true,
1367
+ "type" : "INPUT"
1368
+ },
1369
+ "link" : {
1370
+ "value" : "uieditor.menuItem.link.2af435e4-3f06-416c-9fc2-a53a18fab456",
1371
+ "isLocalized" : true,
1372
+ "type" : "INPUT"
1373
+ },
1374
+ "type" : "CUSTOM_LINK",
1375
+ "openInNewTab" : false,
1376
+ "isVisible" : true,
1377
+ "isDisabled" : false
1378
+ } ]
1379
+ }, {
1380
+ "uuid" : "0bd21919-a513-4518-b4c0-728c5a167287",
1381
+ "title" : {
1382
+ "value" : "uieditor.menuItem.title.0bd21919-a513-4518-b4c0-728c5a167287",
1383
+ "isLocalized" : true,
1384
+ "type" : "INPUT"
1385
+ },
1386
+ "link" : {
1387
+ "value" : "uieditor.menuItem.link.0bd21919-a513-4518-b4c0-728c5a167287",
1388
+ "isLocalized" : true,
1389
+ "type" : "INPUT"
1390
+ },
1391
+ "type" : "CUSTOM_LINK",
1392
+ "openInNewTab" : false,
1393
+ "isVisible" : true,
1394
+ "isDisabled" : false,
1395
+ "children" : [ {
1396
+ "uuid" : "8dfd1b51-b032-40bf-b925-0b142d57f9ab",
1397
+ "title" : {
1398
+ "value" : "uieditor.menuItem.title.8dfd1b51-b032-40bf-b925-0b142d57f9ab",
1399
+ "isLocalized" : true,
1400
+ "type" : "INPUT"
1401
+ },
1402
+ "link" : {
1403
+ "value" : "uieditor.menuItem.link.8dfd1b51-b032-40bf-b925-0b142d57f9ab",
1404
+ "isLocalized" : true,
1405
+ "type" : "INPUT"
1406
+ },
1407
+ "type" : "CUSTOM_LINK",
1408
+ "openInNewTab" : false,
1409
+ "isVisible" : true,
1410
+ "isDisabled" : false
1411
+ } ]
1412
+ }, {
1413
+ "uuid" : "157f07c0-ace7-4787-8f74-eb82641ee568",
1414
+ "title" : {
1415
+ "value" : "uieditor.menuItem.title.157f07c0-ace7-4787-8f74-eb82641ee568",
1416
+ "isLocalized" : true,
1417
+ "type" : "INPUT"
1418
+ },
1419
+ "link" : {
1420
+ "value" : "uieditor.menuItem.link.157f07c0-ace7-4787-8f74-eb82641ee568",
1421
+ "isLocalized" : true,
1422
+ "type" : "INPUT"
1423
+ },
1424
+ "type" : "CUSTOM_LINK",
1425
+ "openInNewTab" : false,
1426
+ "isVisible" : true,
1427
+ "isDisabled" : false,
1428
+ "children" : [ {
1429
+ "uuid" : "1376c96c-7e34-41ea-aabf-be03a9426c29",
1430
+ "title" : {
1431
+ "value" : "uieditor.menuItem.title.1376c96c-7e34-41ea-aabf-be03a9426c29",
1432
+ "isLocalized" : true,
1433
+ "type" : "INPUT"
1434
+ },
1435
+ "link" : {
1436
+ "value" : "uieditor.menuItem.link.1376c96c-7e34-41ea-aabf-be03a9426c29",
1437
+ "isLocalized" : true,
1438
+ "type" : "INPUT"
1439
+ },
1440
+ "type" : "CUSTOM_LINK",
1441
+ "openInNewTab" : true,
1442
+ "isVisible" : true,
1443
+ "isDisabled" : false
1444
+ } ]
1445
+ } ]
1446
+ },
1447
+ "BOTTOM_BAR_MENU" : {
1448
+ "menuType" : "MENU_LINK",
1449
+ "menu" : [ {
1450
+ "uuid" : "852ddfca-cb29-431b-91a8-c53849bce6aa",
1451
+ "title" : {
1452
+ "value" : "uieditor.menuItem.title.852ddfca-cb29-431b-91a8-c53849bce6aa",
1453
+ "isLocalized" : true,
1454
+ "type" : "INPUT"
1455
+ },
1456
+ "link" : {
1457
+ "value" : "uieditor.menuItem.link.852ddfca-cb29-431b-91a8-c53849bce6aa",
1458
+ "isLocalized" : true,
1459
+ "type" : "INPUT"
1460
+ },
1461
+ "type" : "CUSTOM_LINK",
1462
+ "openInNewTab" : true,
1463
+ "isVisible" : true,
1464
+ "isDisabled" : false,
1465
+ "editorType" : "CONTACT_US"
1466
+ }, {
1467
+ "uuid" : "93edf021-a3e3-4686-b686-e7e41e84f61e",
1468
+ "title" : {
1469
+ "value" : "uieditor.menuItem.title.93edf021-a3e3-4686-b686-e7e41e84f61e",
1470
+ "isLocalized" : true,
1471
+ "type" : "INPUT"
1472
+ },
1473
+ "link" : {
1474
+ "value" : "uieditor.menuItem.link.93edf021-a3e3-4686-b686-e7e41e84f61e",
1475
+ "isLocalized" : true,
1476
+ "type" : "INPUT"
1477
+ },
1478
+ "type" : "CUSTOM_LINK",
1479
+ "openInNewTab" : true,
1480
+ "isVisible" : true,
1481
+ "isDisabled" : false,
1482
+ "editorType" : "HELP_CENTER"
1483
+ }, {
1484
+ "uuid" : "f5223632-235f-48df-b096-ea3463b20101",
1485
+ "title" : {
1486
+ "value" : "uieditor.menuItem.title.f5223632-235f-48df-b096-ea3463b20101",
1487
+ "isLocalized" : true,
1488
+ "type" : "INPUT"
1489
+ },
1490
+ "link" : {
1491
+ "value" : "uieditor.menuItem.link.f5223632-235f-48df-b096-ea3463b20101",
1492
+ "isLocalized" : true,
1493
+ "type" : "INPUT"
1494
+ },
1495
+ "type" : "CUSTOM_LINK",
1496
+ "openInNewTab" : true,
1497
+ "isVisible" : true,
1498
+ "isDisabled" : false,
1499
+ "editorType" : "PRIVACY_POLICY"
1500
+ }, {
1501
+ "uuid" : "78fd1c6c-ba78-43cf-b764-2d0c710065e5",
1502
+ "title" : {
1503
+ "value" : "uieditor.menuItem.title.78fd1c6c-ba78-43cf-b764-2d0c710065e5",
1504
+ "isLocalized" : true,
1505
+ "type" : "INPUT"
1506
+ },
1507
+ "link" : {
1508
+ "value" : "uieditor.menuItem.link.78fd1c6c-ba78-43cf-b764-2d0c710065e5",
1509
+ "isLocalized" : true,
1510
+ "type" : "INPUT"
1511
+ },
1512
+ "type" : "CUSTOM_LINK",
1513
+ "openInNewTab" : true,
1514
+ "isVisible" : true,
1515
+ "isDisabled" : false,
1516
+ "editorType" : "TERMS_AND_CONDITIONS"
1517
+ }, {
1518
+ "uuid" : "93edf021-a3e3-4686-b686-e7e41e84f82f",
1519
+ "title" : {
1520
+ "value" : "uieditor.menuItem.title.93edf021-a3e3-4686-b686-e7e41e84f82f",
1521
+ "isLocalized" : true,
1522
+ "type" : "INPUT"
1523
+ },
1524
+ "link" : {
1525
+ "value" : "uieditor.menuItem.link.93edf021-a3e3-4686-b686-e7e41e84f82f",
1526
+ "isLocalized" : true,
1527
+ "type" : "INPUT"
1528
+ },
1529
+ "type" : "CUSTOM_LINK",
1530
+ "openInNewTab" : true,
1531
+ "isVisible" : true,
1532
+ "isDisabled" : false,
1533
+ "editorType" : "LANGUAGE"
1534
+ }, {
1535
+ "uuid" : "09729997-817e-47a2-a2ae-baf308df1899",
1536
+ "title" : {
1537
+ "value" : "uieditor.menuItem.title.09729997-817e-47a2-a2ae-baf308df1899",
1538
+ "isLocalized" : true,
1539
+ "type" : "INPUT"
1540
+ },
1541
+ "link" : {
1542
+ "value" : "uieditor.menuItem.link.09729997-817e-47a2-a2ae-baf308df1899",
1543
+ "isLocalized" : true,
1544
+ "type" : "INPUT"
1545
+ },
1546
+ "type" : "CUSTOM_LINK",
1547
+ "openInNewTab" : true,
1548
+ "isVisible" : true,
1549
+ "isDisabled" : false
1550
+ } ]
1551
+ },
1552
+ "FOOTER_MENU" : {
1553
+ "menuType" : "MENU_LINK",
1554
+ "menu" : [ {
1555
+ "uuid" : "50b2a008-d1df-42fa-9bdf-17a8446210d6",
1556
+ "title" : {
1557
+ "value" : "uieditor.menuItem.title.50b2a008-d1df-42fa-9bdf-17a8446210d6",
1558
+ "isLocalized" : true,
1559
+ "type" : "INPUT"
1560
+ },
1561
+ "link" : {
1562
+ "value" : "uieditor.menuItem.link.50b2a008-d1df-42fa-9bdf-17a8446210d6",
1563
+ "isLocalized" : true,
1564
+ "type" : "INPUT"
1565
+ },
1566
+ "type" : "CUSTOM_LINK",
1567
+ "openInNewTab" : false,
1568
+ "isVisible" : true,
1569
+ "isDisabled" : false,
1570
+ "children" : [ {
1571
+ "uuid" : "89b4d743-b405-43a0-b6ab-9877fcdee455",
1572
+ "title" : {
1573
+ "value" : "uieditor.menuItem.title.89b4d743-b405-43a0-b6ab-9877fcdee455",
1574
+ "isLocalized" : true,
1575
+ "type" : "INPUT"
1576
+ },
1577
+ "link" : {
1578
+ "value" : "uieditor.menuItem.link.89b4d743-b405-43a0-b6ab-9877fcdee455",
1579
+ "isLocalized" : true,
1580
+ "type" : "INPUT"
1581
+ },
1582
+ "type" : "CUSTOM_LINK",
1583
+ "openInNewTab" : true,
1584
+ "isVisible" : true,
1585
+ "isDisabled" : false
1586
+ }, {
1587
+ "uuid" : "e96e3929-2bea-4283-8139-9fee0053487c",
1588
+ "title" : {
1589
+ "value" : "uieditor.menuItem.title.e96e3929-2bea-4283-8139-9fee0053487c",
1590
+ "isLocalized" : true,
1591
+ "type" : "INPUT"
1592
+ },
1593
+ "link" : {
1594
+ "value" : "uieditor.menuItem.link.e96e3929-2bea-4283-8139-9fee0053487c",
1595
+ "isLocalized" : true,
1596
+ "type" : "INPUT"
1597
+ },
1598
+ "type" : "CUSTOM_LINK",
1599
+ "openInNewTab" : true,
1600
+ "isVisible" : true,
1601
+ "isDisabled" : false
1602
+ }, {
1603
+ "uuid" : "03a90d85-ce76-4ba6-bafb-89abdd8e1bc6",
1604
+ "title" : {
1605
+ "value" : "uieditor.menuItem.title.03a90d85-ce76-4ba6-bafb-89abdd8e1bc6",
1606
+ "isLocalized" : true,
1607
+ "type" : "INPUT"
1608
+ },
1609
+ "link" : {
1610
+ "value" : "uieditor.menuItem.link.03a90d85-ce76-4ba6-bafb-89abdd8e1bc6",
1611
+ "isLocalized" : true,
1612
+ "type" : "INPUT"
1613
+ },
1614
+ "type" : "CUSTOM_LINK",
1615
+ "openInNewTab" : true,
1616
+ "isVisible" : true,
1617
+ "isDisabled" : false
1618
+ } ]
1619
+ }, {
1620
+ "uuid" : "50b2a008-d1df-42fa-8bdf-17a8446210d7",
1621
+ "title" : {
1622
+ "value" : "uieditor.menuItem.title.50b2a008-d1df-42fa-8bdf-17a8446210d7",
1623
+ "isLocalized" : true,
1624
+ "type" : "INPUT"
1625
+ },
1626
+ "link" : {
1627
+ "value" : "uieditor.menuItem.link.50b2a008-d1df-42fa-8bdf-17a8446210d7",
1628
+ "isLocalized" : true,
1629
+ "type" : "INPUT"
1630
+ },
1631
+ "type" : "CUSTOM_LINK",
1632
+ "openInNewTab" : false,
1633
+ "isVisible" : true,
1634
+ "isDisabled" : false,
1635
+ "children" : [ {
1636
+ "uuid" : "89b4d743-b405-43a0-86ab-9877fcdee475",
1637
+ "title" : {
1638
+ "value" : "uieditor.menuItem.title.89b4d743-b405-43a0-86ab-9877fcdee475",
1639
+ "isLocalized" : true,
1640
+ "type" : "INPUT"
1641
+ },
1642
+ "link" : {
1643
+ "value" : "uieditor.menuItem.link.89b4d743-b405-43a0-86ab-9877fcdee475",
1644
+ "isLocalized" : true,
1645
+ "type" : "INPUT"
1646
+ },
1647
+ "type" : "CUSTOM_LINK",
1648
+ "openInNewTab" : true,
1649
+ "isVisible" : true,
1650
+ "isDisabled" : false
1651
+ }, {
1652
+ "uuid" : "e96e3929-2bea-4283-1139-9fee00534872",
1653
+ "title" : {
1654
+ "value" : "uieditor.menuItem.title.e96e3929-2bea-4283-1139-9fee00534872",
1655
+ "isLocalized" : true,
1656
+ "type" : "INPUT"
1657
+ },
1658
+ "link" : {
1659
+ "value" : "uieditor.menuItem.link.e96e3929-2bea-4283-1139-9fee00534872",
1660
+ "isLocalized" : true,
1661
+ "type" : "INPUT"
1662
+ },
1663
+ "type" : "CUSTOM_LINK",
1664
+ "openInNewTab" : true,
1665
+ "isVisible" : true,
1666
+ "isDisabled" : false
1667
+ }, {
1668
+ "uuid" : "03a90d85-ce76-4ba6-bafb-28abdd8e1bca",
1669
+ "title" : {
1670
+ "value" : "uieditor.menuItem.title.03a90d85-ce76-4ba6-bafb-28abdd8e1bca",
1671
+ "isLocalized" : true,
1672
+ "type" : "INPUT"
1673
+ },
1674
+ "link" : {
1675
+ "value" : "uieditor.menuItem.link.03a90d85-ce76-4ba6-bafb-28abdd8e1bca",
1676
+ "isLocalized" : true,
1677
+ "type" : "INPUT"
1678
+ },
1679
+ "type" : "CUSTOM_LINK",
1680
+ "openInNewTab" : true,
1681
+ "isVisible" : true,
1682
+ "isDisabled" : false
1683
+ } ]
1684
+ }, {
1685
+ "uuid" : "8b8d3953-2257-43f7-97db-46db02c08b81",
1686
+ "title" : {
1687
+ "value" : "uieditor.menuItem.title.8b8d3953-2257-43f7-97db-46db02c08b81",
1688
+ "isLocalized" : true,
1689
+ "type" : "INPUT"
1690
+ },
1691
+ "link" : {
1692
+ "value" : "uieditor.menuItem.link.8b8d3953-2257-43f7-97db-46db02c08b81",
1693
+ "isLocalized" : true,
1694
+ "type" : "INPUT"
1695
+ },
1696
+ "type" : "CUSTOM_LINK",
1697
+ "openInNewTab" : false,
1698
+ "isVisible" : true,
1699
+ "isDisabled" : false,
1700
+ "children" : [ {
1701
+ "uuid" : "ac106ade-9286-43eb-91d3-4b2a9d46321b",
1702
+ "title" : {
1703
+ "value" : "uieditor.menuItem.title.ac106ade-9286-43eb-91d3-4b2a9d46321b",
1704
+ "isLocalized" : true,
1705
+ "type" : "INPUT"
1706
+ },
1707
+ "link" : {
1708
+ "value" : "uieditor.menuItem.link.ac106ade-9286-43eb-91d3-4b2a9d46321b",
1709
+ "isLocalized" : true,
1710
+ "type" : "INPUT"
1711
+ },
1712
+ "type" : "CUSTOM_LINK",
1713
+ "openInNewTab" : false,
1714
+ "isVisible" : true,
1715
+ "isDisabled" : false
1716
+ }, {
1717
+ "uuid" : "d6af892e-bbd8-4211-9bed-d5e7b4ba2684",
1718
+ "title" : {
1719
+ "value" : "uieditor.menuItem.title.d6af892e-bbd8-4211-9bed-d5e7b4ba2684",
1720
+ "isLocalized" : true,
1721
+ "type" : "INPUT"
1722
+ },
1723
+ "link" : {
1724
+ "value" : "uieditor.menuItem.link.d6af892e-bbd8-4211-9bed-d5e7b4ba2684",
1725
+ "isLocalized" : true,
1726
+ "type" : "INPUT"
1727
+ },
1728
+ "type" : "CUSTOM_LINK",
1729
+ "openInNewTab" : false,
1730
+ "isVisible" : true,
1731
+ "isDisabled" : false
1732
+ } ]
1733
+ } ]
1734
+ },
1735
+ "NAVIGATION_BAR_MENU" : {
1736
+ "menuType" : "MENU_LINK",
1737
+ "menu" : [ {
1738
+ "uuid" : "212818b0-6987-4941-8786-1925073e7f6f",
1739
+ "title" : {
1740
+ "value" : "uieditor.menuItem.title.212818b0-6987-4941-8786-1925073e7f6f",
1741
+ "isLocalized" : true,
1742
+ "type" : "INPUT"
1743
+ },
1744
+ "link" : {
1745
+ "value" : "uieditor.menuItem.link.212818b0-6987-4941-8786-1925073e7f6f",
1746
+ "isLocalized" : true,
1747
+ "type" : "INPUT"
1748
+ },
1749
+ "type" : "CUSTOM_LINK",
1750
+ "openInNewTab" : false,
1751
+ "isVisible" : true,
1752
+ "isDisabled" : false
1753
+ } ]
1754
+ },
1755
+ "AUXILIARY_BAR_MENU" : {
1756
+ "menuType" : "MENU_LINK",
1757
+ "menu" : [ {
1758
+ "uuid" : "a7113cc8-a1bc-4e56-b5a4-a57001f8ec78",
1759
+ "title" : {
1760
+ "value" : "uieditor.menuItem.title.a7113cc8-a1bc-4e56-b5a4-a57001f8ec78",
1761
+ "isLocalized" : true,
1762
+ "type" : "INPUT"
1763
+ },
1764
+ "link" : {
1765
+ "value" : "uieditor.menuItem.link.a7113cc8-a1bc-4e56-b5a4-a57001f8ec78",
1766
+ "isLocalized" : true,
1767
+ "type" : "INPUT"
1768
+ },
1769
+ "type" : "CUSTOM_LINK",
1770
+ "openInNewTab" : false,
1771
+ "isVisible" : true,
1772
+ "isDisabled" : false
1773
+ }, {
1774
+ "uuid" : "46ca9ab2-0fc5-4533-b561-d0a6fdebd3db",
1775
+ "title" : {
1776
+ "value" : "uieditor.menuItem.title.46ca9ab2-0fc5-4533-b561-d0a6fdebd3db",
1777
+ "isLocalized" : true,
1778
+ "type" : "INPUT"
1779
+ },
1780
+ "link" : {
1781
+ "value" : "uieditor.menuItem.link.46ca9ab2-0fc5-4533-b561-d0a6fdebd3db",
1782
+ "isLocalized" : true,
1783
+ "type" : "INPUT"
1784
+ },
1785
+ "type" : "CUSTOM_LINK",
1786
+ "openInNewTab" : false,
1787
+ "isVisible" : true,
1788
+ "isDisabled" : false
1789
+ } ]
1790
+ }
1791
+ },
1792
+ "globalStyles" : {
1793
+ "namespaces" : {
1794
+ "storefront" : {
1795
+ "headingBaseSize" : {
1796
+ "value" : "16px",
1797
+ "type" : "DROPDOWN"
1798
+ },
1799
+ "bodyBaseSize" : {
1800
+ "value" : "16px",
1801
+ "type" : "DROPDOWN"
1802
+ },
1803
+ "ratingStars" : {
1804
+ "value" : "#f7d619",
1805
+ "type" : "COLORPICKER"
1806
+ },
1807
+ "bodyFont" : {
1808
+ "value" : {
1809
+ "type" : "GOOGLE_FONTS",
1810
+ "fontGroup" : {
1811
+ "key" : "googleFonts",
1812
+ "label" : "Google Fonts"
1813
+ },
1814
+ "fontFamily" : "Open Sans"
1815
+ },
1816
+ "type" : "FONT_PICKER"
1817
+ },
1818
+ "headingFont" : {
1819
+ "value" : {
1820
+ "type" : "GOOGLE_FONTS",
1821
+ "fontGroup" : {
1822
+ "key" : "googleFonts",
1823
+ "label" : "Google Fonts"
1824
+ },
1825
+ "fontFamily" : "Ubuntu"
1826
+ },
1827
+ "type" : "FONT_PICKER"
1828
+ },
1829
+ "primaryColor" : {
1830
+ "value" : "#0076ce",
1831
+ "type" : "COLORPICKER"
1832
+ },
1833
+ "linkText" : {
1834
+ "value" : "#0071c7",
1835
+ "type" : "COLORPICKER"
1836
+ },
1837
+ "altEmphasisColor" : {
1838
+ "value" : "#d14600",
1839
+ "type" : "COLORPICKER"
1840
+ },
1841
+ "bodyText" : {
1842
+ "value" : "#474747",
1843
+ "type" : "COLORPICKER"
1844
+ },
1845
+ "logoImage" : {
1846
+ "value" : {
1847
+ "type" : "IMAGE_UPLOADER",
1848
+ "filename" : "ACME_logo_white.png",
1849
+ "url" : "https://d33na3ni6eqf5j.cloudfront.net/73199857-53b9-4c85-bed7-b1fdab531130/2923ad77-25ec-4eb6-8360-c3fdff436dd4.png"
1850
+ },
1851
+ "type" : "IMAGE_UPLOADER"
1852
+ },
1853
+ "pageBackground" : {
1854
+ "value" : "#fafafa",
1855
+ "type" : "COLORPICKER"
1856
+ },
1857
+ "titleText" : {
1858
+ "value" : "#474747",
1859
+ "type" : "COLORPICKER"
1860
+ },
1861
+ "emphasisColor" : {
1862
+ "value" : "#00802b",
1863
+ "type" : "COLORPICKER"
1864
+ },
1865
+ "secondaryColor" : {
1866
+ "value" : "#f1f1f1",
1867
+ "type" : "COLORPICKER"
1868
+ }
1869
+ }
1870
+ },
1871
+ "fontFamilies" : [ ]
1872
+ }
1873
+ }