@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
@@ -0,0 +1,49 @@
1
+ <!doctype html>
2
+
3
+ <html lang="en">
4
+ <head>
5
+ <meta charset="utf-8">
6
+ <meta name="viewport" content="width=device-width, user-scalable=no" />
7
+ <link rel="stylesheet" type="text/css" href="{{ r("/assets/css/theme/theme-index.css") }}">
8
+ <style>
9
+ body, html {
10
+ height: 100%;
11
+ }
12
+ h1 {
13
+ font-size: 6em
14
+ }
15
+ .container {
16
+ width: 610px;
17
+ text-align: center;
18
+ }
19
+ </style>
20
+ </head>
21
+
22
+ <body class="d-flex justify-content-center align-items-center">
23
+ <div class="main-region container">
24
+ <div>
25
+ <div>
26
+ <h1>{{ statusCode | default('404') }}</h1>
27
+ <h2>Sorry, we couldn't find it.</h2>
28
+ <p class="text-center">Page Not Found ({{ statusCode | default('404') }})</p>
29
+ </div>
30
+ <hr/>
31
+ <div>
32
+ <p>Apologies, but the page you are looking for could not be found. It may have moved or the url might be misspelled.</p>
33
+ <p><strong>Where would you like to go from here?</strong></p>
34
+ <menu class="toggle_buttons">
35
+ <button class="button" onclick="window.history.back();return false">
36
+ <span>Go to Previous Page</span>
37
+ </button>
38
+ <button class="button" onclick="var win = this.ownerDocument.defaultView || this.ownerDocument.parentWindow; if (win == window) { window.location.href='../'; } ;return false">
39
+ <span>AppDirect Home</span>
40
+ </button>
41
+ <button class="button" onclick="window.location.href='http://support.appdirect.com';return false;">
42
+ <span>Contact Support</span>
43
+ </button>
44
+ </menu>
45
+ </div>
46
+ </div>
47
+ </div>
48
+ </body>
49
+ </html>
@@ -0,0 +1,15 @@
1
+ {% extends "/layout/base.html" %}
2
+
3
+ {% block mainTitle %}
4
+ <h1 class="sr-only">{{i18n.frequentlyAskedQuestions}}</h1>
5
+ {% endblock %}
6
+
7
+ {% block content %}
8
+ <div class="global-component-spacer">
9
+ <div class="row">
10
+ <div class="col">
11
+ <component name="Faq" id="Faq1"></component>
12
+ </div>
13
+ </div>
14
+ </div>
15
+ {% endblock %}
@@ -0,0 +1,14 @@
1
+ {% extends "/layout/base.html" %}
2
+ {% block data %}
3
+ <data type="navigator" />
4
+ {% endblock %}
5
+ {% block dataPage %}home{% endblock %}
6
+
7
+ {% block mainTitle %}
8
+ <h1 class="sr-only">{{config.marketplaceName}}</h1>
9
+ {% endblock %}
10
+
11
+ {% block content %}
12
+ <PageOrderableContainer name="PageOrderableContainer" id="PageOrderableContainer1"></PageOrderableContainer>
13
+ <component name="StickyButtonPageScroll" id="StickyButtonPageScroll"></component>
14
+ {% endblock %}
@@ -0,0 +1 @@
1
+ listing items
@@ -0,0 +1,25 @@
1
+ {% extends "/layout/base.html" %}
2
+
3
+ {% block data %}
4
+ <data type="navigator" />
5
+ {% endblock %}
6
+
7
+ {% block mainTitle %}
8
+ <h1 class="sr-only">{{listingProducts.i18n.allApplications}}</h1>
9
+ {% endblock %}
10
+
11
+ {% block content %}
12
+ <div class="global-component-spacer js-listing">
13
+ <component name="ProductListingControls" id="CategoryListingControls-ListingPage" editorVisible="false"></component>
14
+ <div class="row listing listing-page row--spaced">
15
+ <div class="col-md-3 col-sm-12 category-sidebar js-sidebar">
16
+ <component name="CategorySidebar" id="CategorySidebar-ListingPage"></component>
17
+ </div>
18
+ <div class="col-md-9 col-sm-12 js-product-listing">
19
+ <component name="ProductListing" id="ProductListing-ListingPage"></component>
20
+ </div>
21
+ </div>
22
+ </div>
23
+ <script src="{{ r('/assets/js/listing.js') }}"></script>
24
+ <script>$(".js-listing").filterListing();</script>
25
+ {% endblock %}
@@ -0,0 +1,7 @@
1
+ {% extends "/layout/base.html" %}
2
+
3
+ {% block content %}
4
+ <div style="margin: 80px 0;">
5
+ <component name="OrderConfirmation" id="order-confirmation"></component>
6
+ </div>
7
+ {% endblock %}
@@ -0,0 +1,13 @@
1
+ {% from "/macros/profile/profile-navigation.html" import profileNavigation %}
2
+ {% extends "/layout/profile.html" %}
3
+
4
+ {% block data %}
5
+ <data type="navigator" />
6
+ <data type="application-additional-content" value="questions" />
7
+ {% endblock %}
8
+
9
+ {% block profileContentHeader %}{% endblock %}
10
+
11
+ {% block profileContent %}
12
+ <component name="ProductLeadForm" id="ProductleadForm-AddLead"></component>
13
+ {% endblock %}
@@ -0,0 +1,13 @@
1
+ {% from "/macros/profile/profile-navigation.html" import profileNavigation %}
2
+ {% extends "/layout/profile.html" %}
3
+
4
+ {% block data %}
5
+ <data type="navigator" />
6
+ <data type="application-additional-content" value="questions" />
7
+ {% endblock %}
8
+
9
+ {% block profileContentHeader %}{% endblock %}
10
+
11
+ {% block profileContent %}
12
+ <component name="ProductQuestionForm" id="ProductQuestionForm-AddQuestions"></component>
13
+ {% endblock %}
@@ -0,0 +1,13 @@
1
+ {% from "/macros/profile/profile-navigation.html" import profileNavigation %}
2
+ {% extends "/layout/profile.html" %}
3
+
4
+ {% block data %}
5
+ <data type="navigator" />
6
+ <data type="application-additional-content" value="questions" />
7
+ {% endblock %}
8
+
9
+ {% block profileContentHeader %}{% endblock %}
10
+
11
+ {% block profileContent %}
12
+ <component name="ProductReviewForm" id="ProductReviewForm-AddReview"></component>
13
+ {% endblock %}
@@ -0,0 +1,15 @@
1
+ {% extends "/layout/profile.html" %}
2
+
3
+ {% block data %}
4
+ <data type="navigator" />
5
+ <data type="application-additional-content" value="addonProducts,questions" />
6
+ {% endblock %}
7
+
8
+ {% block profileContentHeader %}{% endblock %}
9
+
10
+
11
+ {% block profileContent %}
12
+ <div class="global-component-nospacer">
13
+ <component name="ProductConfigurator" id="ProductConfigurator1"></component>
14
+ </div>
15
+ {% endblock %}
@@ -0,0 +1,12 @@
1
+ {% extends "/layout/profile.html" %}
2
+
3
+ {% block data %}
4
+ <data type="navigator" />
5
+ <data type="application-additional-content" value="addonProducts,questions" />
6
+ {% endblock %}
7
+
8
+ {% block profileContentHeader %}{% endblock %}
9
+
10
+ {% block profileContent %}
11
+ <component name="ProductAssociatedDomain" id="ProductAssociatedDomain1"></component>
12
+ {% endblock %}
@@ -0,0 +1,17 @@
1
+ {% from "/macros/profile/profile-navigation.html" import profileNavigation %}
2
+ {% extends "/layout/profile.html" %}
3
+
4
+ {% block data %}
5
+ <data type="navigator" />
6
+ <data type="application-additional-content" value="recommendations,addonProducts,callToActionsEditions,questions" />
7
+ {% endblock %}
8
+
9
+ {% block mainTitle %}
10
+ <h1 class="sr-only">{{application.summary.title}}</h1>
11
+ {% endblock %}
12
+
13
+ {% block profileContent %}
14
+ <component name="GraphQLAdapter" id="GraphQLAdapter"></component>
15
+ <component name="VolumeDiscountCard" id="VolumeDiscountCard"></component>
16
+ <component name="ProductPricing" id="ProductPricing1"></component>
17
+ {% endblock %}
@@ -0,0 +1,14 @@
1
+ {% extends "/layout/profile.html" %}
2
+
3
+ {% block data %}
4
+ <data type="navigator" />
5
+ <data type="application-additional-content" value="recommendations,relatedProducts,questions" />
6
+ {% endblock %}
7
+
8
+ {% block mainTitle %}
9
+ <h1 class="sr-only">{{application.summary.title}}</h1>
10
+ {% endblock %}
11
+
12
+ {% block profileContent %}
13
+ <component name="FeatureDetails" id="FeatureDetails1"></component>
14
+ {% endblock %}
@@ -0,0 +1,14 @@
1
+ {% extends "/layout/profile.html" %}
2
+
3
+ {% block data %}
4
+ <data type="navigator" />
5
+ <data type="application-additional-content" value="recommendations,relatedProducts,questions" />
6
+ {% endblock %}
7
+
8
+ {% block mainTitle %}
9
+ <h1 class="sr-only">{{application.summary.title}}</h1>
10
+ {% endblock %}
11
+
12
+ {% block profileContent %}
13
+ <component name="ProductQuestions" id="ProductQuestions1"></component>
14
+ {% endblock %}
@@ -0,0 +1,14 @@
1
+ {% extends "/layout/profile.html" %}
2
+
3
+ {% block data %}
4
+ <data type="navigator" />
5
+ <data type="application-additional-content" value="recommendations,relatedProducts,questions" />
6
+ {% endblock %}
7
+
8
+ {% block mainTitle %}
9
+ <h1 class="sr-only">{{application.summary.title}}</h1>
10
+ {% endblock %}
11
+
12
+ {% block profileContent %}
13
+ <component name="ProductResources" id="ProductResources1"></component>
14
+ {% endblock %}
@@ -0,0 +1,14 @@
1
+ {% extends "/layout/profile.html" %}
2
+
3
+ {% block data %}
4
+ <data type="navigator" />
5
+ <data type="application-additional-content" value="recommendations,relatedProducts,questions" />
6
+ {% endblock %}
7
+
8
+ {% block mainTitle %}
9
+ <h1 class="sr-only">{{application.summary.title}}</h1>
10
+ {% endblock %}
11
+
12
+ {% block profileContent %}
13
+ <component name="ProductReviews" id="ProductReviews1"></component>
14
+ {% endblock %}
@@ -0,0 +1,22 @@
1
+ {% from "/macros/profile/profile-navigation.html" import profileNavigation %}
2
+ {% extends "/layout/profile.html" %}
3
+ {% block profileSpacer %}{% endblock %}
4
+ {% block data %}
5
+ <data type="navigator" />
6
+ <data type="application-additional-content" value="recommendations,relatedProducts,questions,answers,reviews" />
7
+ {% endblock %}
8
+
9
+ {% block profileContentHeader %}
10
+ <component name="ProductBanner" id="ProductBanner"></component>
11
+ <component name="ProductTabMenu" id="ProductTabMenu"></component>
12
+ {% endblock %}
13
+
14
+ {% block profileContent %}
15
+ <div class="global-component-spacer">
16
+ <component name="DomainApp" id="DomainApp"></component>
17
+ </div>
18
+ {% endblock %}
19
+
20
+ {% block belowProfileContent %}
21
+ <component name="ProductSimilarApps" id="ProductSimilarApps"></component>
22
+ {% endblock %}
@@ -0,0 +1,15 @@
1
+ {% from "/macros/profile/profile-navigation.html" import profileNavigation %}
2
+ {% extends "/layout/profile.html" %}
3
+
4
+ {% block data %}
5
+ <data type="navigator" />
6
+ <data type="application-additional-content" value="questions" />
7
+ {% endblock %}
8
+
9
+ {% block mainTitle %}
10
+ <h1 class="sr-only">{{application.summary.title}}</h1>
11
+ {% endblock %}
12
+
13
+ {% block profileContent %}
14
+ <component class="support-page" name="ProductAdditionalInfo" id="ProductAdditionalInfo1"></component>
15
+ {% endblock %}
@@ -0,0 +1,15 @@
1
+ {% extends "/layout/profile.html" %}
2
+
3
+ {% block data %}
4
+ <data type="navigator" />
5
+ <data type="application-additional-content" value="addonProducts,questions" />
6
+ {% endblock %}
7
+
8
+ {% block profileContentHeader %}{% endblock %}
9
+
10
+
11
+ {% block profileContent %}
12
+ <div class="global-component-nospacer">
13
+ <component name="ProductVariants" id="ProductVariants"></component>
14
+ </div>
15
+ {% endblock %}
@@ -0,0 +1,24 @@
1
+ {% from "/macros/profile/profile-navigation.html" import profileNavigation %}
2
+ {% extends "/layout/profile.html" %}
3
+ {% block profileSpacer %}{% endblock %}
4
+ {% block data %}
5
+ <data type="navigator" />
6
+ <data type="application-additional-content" value="recommendations,relatedProducts,questions,answers,reviews" />
7
+ {% endblock %}
8
+
9
+ {% block mainTitle %}
10
+ <h1 class="sr-only">{{application.summary.title}}</h1>
11
+ {% endblock %}
12
+
13
+ {% block profileContentHeader %}
14
+ <component name="ProductBanner" id="ProductBanner"></component>
15
+ <component name="ProductTabMenu" id="ProductTabMenu"></component>
16
+ {% endblock %}
17
+
18
+ {% block profileContent %}
19
+ <PageOrderableContainer name="PageOrderableContainer" id="PageOrderableContainerProfilePage"></PageOrderableContainer>
20
+ {% endblock %}
21
+
22
+ {% block belowProfileContent %}
23
+ <component name="ProductSimilarApps" id="ProductSimilarApps"></component>
24
+ {% endblock %}
@@ -0,0 +1,18 @@
1
+ {
2
+ "headerNavBg": "#0076ce",
3
+ "headerNavBorderColor": "#0076ce",
4
+ "headerNavItemBgHover": "#1187df",
5
+ "headerNavItemBgSelected": "#006dc5",
6
+ "headerNavFontColor": "#ffffff",
7
+ "headerNavFontHoverColor": "#d2d5d9",
8
+ "headerNavFontSelectedColor": "#fcfdfd",
9
+ "headerNavTooltipBg": "#2d2a27",
10
+ "headerNavTooltipFontColor": "#fff",
11
+ "headerNavDropdownFontColor": "#474747",
12
+ "headerNavDropdownBg": "#fff",
13
+ "headerNavDropdownBorderColor": "#eaeaea",
14
+ "headerNavDropdownBorderColorHover": "#007b99",
15
+ "headerNavDropdownBgHover": "#0076ce30",
16
+ "headerNavDropdownFontColorHover": "#fff",
17
+ "headerNavDropdownMarginRight": "0"
18
+ }
@@ -0,0 +1,231 @@
1
+ {
2
+ "globalStyles": {
3
+ "colors": {
4
+ "name": "Colors",
5
+ "iconName": "styles",
6
+ "componentName": "Colors",
7
+ "form": {
8
+ "description": {
9
+ "title": "uieditor.editorProperties.globalStyles.colors.description.title",
10
+ "type": "TEXT_BLOCK"
11
+ },
12
+ "primaryColor": {
13
+ "title": "uieditor.editorProperties.globalStyles.colors.primaryColor.title",
14
+ "type": "COLORPICKER",
15
+ "defaultValue": "#0076ce",
16
+ "caption": "uieditor.editorProperties.globalStyles.colors.primaryColor.caption"
17
+ },
18
+ "secondaryColor": {
19
+ "title": "uieditor.editorProperties.globalStyles.colors.secondaryColor.title",
20
+ "type": "COLORPICKER",
21
+ "defaultValue": "#f1f1f1",
22
+ "caption": "uieditor.editorProperties.globalStyles.colors.secondaryColor.caption"
23
+ },
24
+ "emphasisColor": {
25
+ "title": "uieditor.editorProperties.globalStyles.colors.emphasisColor.title",
26
+ "type": "COLORPICKER",
27
+ "defaultValue": "#00802b",
28
+ "caption": "uieditor.editorProperties.globalStyles.colors.emphasisColor.caption"
29
+ },
30
+ "altEmphasisColor": {
31
+ "title": "uieditor.editorProperties.globalStyles.colors.altEmphasisColor.title",
32
+ "type": "COLORPICKER",
33
+ "defaultValue": "#d14600",
34
+ "caption": "uieditor.editorProperties.globalStyles.colors.altEmphasisColor.caption"
35
+ },
36
+ "titleText": {
37
+ "title": "uieditor.editorProperties.globalStyles.colors.titleText.title",
38
+ "defaultValue": "#474747",
39
+ "type": "COLORPICKER"
40
+ },
41
+ "bodyText": {
42
+ "title": "uieditor.editorProperties.globalStyles.colors.bodyText.title",
43
+ "defaultValue": "#474747",
44
+ "type": "COLORPICKER"
45
+ },
46
+ "linkText": {
47
+ "title": "uieditor.editorProperties.globalStyles.colors.linkText.title",
48
+ "defaultValue": "#0071c7",
49
+ "type": "COLORPICKER"
50
+ },
51
+ "ratingStars": {
52
+ "title": "uieditor.editorProperties.globalStyles.colors.ratingStars.title",
53
+ "defaultValue": "#f7d619",
54
+ "type": "COLORPICKER"
55
+ },
56
+ "pageBackground": {
57
+ "title": "uieditor.editorProperties.globalStyles.colors.pageBackground.title",
58
+ "defaultValue": "#fafafa",
59
+ "type": "COLORPICKER"
60
+ }
61
+ }
62
+ },
63
+ "logo": {
64
+ "name": "Logos",
65
+ "iconName": "app",
66
+ "componentName": "Logos",
67
+ "form": {
68
+ "logoImage": {
69
+ "title": "uieditor.editorProperties.globalStyles.logo.logoImage.title",
70
+ "type": "IMAGE_UPLOADER",
71
+ "placeholder": "uieditor.editorProperties.globalStyles.logo.logoImage.placeholder",
72
+ "defaultValue": "",
73
+ "caption": "uieditor.editorProperties.globalStyles.logo.logoImage.caption"
74
+ },
75
+ "darkLogo": {
76
+ "title": "uieditor.editorProperties.globalStyles.logo.darkLogo.title",
77
+ "type": "IMAGE_UPLOADER",
78
+ "placeholder": "uieditor.editorProperties.globalStyles.logo.logoImage.placeholder",
79
+ "defaultValue": "",
80
+ "caption": "uieditor.editorProperties.globalStyles.logo.logoImage.caption"
81
+ }
82
+ }
83
+ },
84
+ "typography": {
85
+ "name": "Typography",
86
+ "iconName": "title",
87
+ "componentName": "Typography",
88
+ "form": {
89
+ "headingSpacer": {
90
+ "type": "GROUP_HEADER",
91
+ "title": "uieditor.editorProperties.globalStyles.typography.headingSpacer.title",
92
+ "symbol": "style"
93
+ },
94
+ "headingFont": {
95
+ "title": "uieditor.editorProperties.globalStyles.typography.headingFont.title",
96
+ "type": "FONT_PICKER",
97
+ "placeholder": "uieditor.editorProperties.globalStyles.typography.headingFont.label"
98
+ },
99
+ "headingBaseSize": {
100
+ "title": "uieditor.editorProperties.globalStyles.typography.headingBaseSize.title",
101
+ "type": "DROPDOWN",
102
+ "defaultValue": "16px",
103
+ "options": [{
104
+ "value": "16px",
105
+ "label": "16px"
106
+ }, {
107
+ "value": "18px",
108
+ "label": "18px"
109
+ }, {
110
+ "value": "20px",
111
+ "label": "20px"
112
+ }, {
113
+ "value": "22px",
114
+ "label": "22px"
115
+ }, {
116
+ "value": "24px",
117
+ "label": "24px"
118
+ }, {
119
+ "value": "26px",
120
+ "label": "26px"
121
+ }, {
122
+ "value": "28px",
123
+ "label": "28px"
124
+ }, {
125
+ "value": "30px",
126
+ "label": "30px"
127
+ }, {
128
+ "value": "32px",
129
+ "label": "32px"
130
+ }, {
131
+ "value": "34px",
132
+ "label": "34px"
133
+ }, {
134
+ "value": "36px",
135
+ "label": "36px"
136
+ }]
137
+ },
138
+ "baseSpacer": {
139
+ "type": "GROUP_HEADER",
140
+ "title": "uieditor.editorProperties.globalStyles.typography.baseSpacer.title",
141
+ "symbol": "style"
142
+ },
143
+ "bodyFont": {
144
+ "title": "uieditor.editorProperties.globalStyles.typography.bodyFont.title",
145
+ "type": "FONT_PICKER",
146
+ "placeholder": "uieditor.editorProperties.globalStyles.typography.bodyFont.label"
147
+ },
148
+ "bodyBaseSize": {
149
+ "title": "uieditor.editorProperties.globalStyles.typography.bodyBaseSize.title",
150
+ "type": "DROPDOWN",
151
+ "defaultValue": "16px",
152
+ "options": [{
153
+ "value": "14px",
154
+ "label": "14px"
155
+ }, {
156
+ "value": "15px",
157
+ "label": "15px"
158
+ }, {
159
+ "value": "16px",
160
+ "label": "16px"
161
+ }, {
162
+ "value": "17px",
163
+ "label": "17px"
164
+ }, {
165
+ "value": "18px",
166
+ "label": "18px"
167
+ }, {
168
+ "value": "19px",
169
+ "label": "19px"
170
+ }, {
171
+ "value": "20px",
172
+ "label": "20px"
173
+ }]
174
+ },
175
+ "fontUploadSpacer": {
176
+ "type": "GROUP_HEADER",
177
+ "title": "uieditor.editorProperties.globalStyles.typography.fontUploadSpacer.title",
178
+ "symbol": "style"
179
+ },
180
+ "fontUploader": {
181
+ "type": "FONT_UPLOADER",
182
+ "placeholder": "uieditor.editorProperties.globalStyles.typography.fontUploader.placeholder",
183
+ "caption": "uieditor.editorProperties.globalStyles.typography.fontUploader.caption",
184
+ "dropzonePlaceholder": "uieditor.editorProperties.globalStyles.typography.fontUploader.dropzone.placeholder"
185
+ }
186
+ }
187
+ }
188
+ },
189
+ "menus": {
190
+ "auxiliaryBar" : {
191
+ "label":"uieditor.menu.auxiliaryBar",
192
+ "type":"navigation",
193
+ "icon": "ellipsis",
194
+ "form": {
195
+ "type": "MENU_LINK"
196
+ }
197
+ },
198
+ "homeBar" : {
199
+ "label":"uieditor.menu.homeBar",
200
+ "type":"navigation",
201
+ "icon": "universalNavHome",
202
+ "form": {
203
+ "type": "MENU_LINK"
204
+ }
205
+ },
206
+ "navigationBar" : {
207
+ "label":"uieditor.menu.navigationBar",
208
+ "type":"navigation",
209
+ "icon": "hamburger",
210
+ "form": {
211
+ "type": "MENU_LINK"
212
+ }
213
+ },
214
+ "footer" : {
215
+ "label":"uieditor.menu.footer",
216
+ "type":"navigation",
217
+ "icon": "footer",
218
+ "form": {
219
+ "type": "MENU_LINK"
220
+ }
221
+ },
222
+ "bottomBar" : {
223
+ "label":"uieditor.menu.bottomBar",
224
+ "type":"navigation",
225
+ "icon": "footer",
226
+ "form": {
227
+ "type": "MENU_LINK"
228
+ }
229
+ }
230
+ }
231
+ }
package/env-data.json ADDED
@@ -0,0 +1,2 @@
1
+ {}
2
+
@@ -0,0 +1,14 @@
1
+ <header id="ad-universalnav">
2
+ <div class="ad-uniheader ad-sso-header">
3
+ <div class="layout-default adb-layout-default">
4
+ <div class="ad-uniheader__container">
5
+ <nav aria-label="Marketplace Menu" class="ad-uniheader__container--section">
6
+ <h2 id="marketplace-menu-label" class="not-visible">Marketplace Menu</h2>
7
+ <ul class="ad-uniheader__container--section-left">
8
+ {{MPLOGO-COMPONENT}}
9
+ </ul>
10
+ </nav>
11
+ </div>
12
+ </div>
13
+ </div>
14
+ </header>