create-sitecore-jss 22.2.0-canary.1 → 22.2.0-canary.10

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 (300) hide show
  1. package/dist/bin.js +70 -28
  2. package/dist/common/index.js +5 -3
  3. package/dist/common/processes/install.js +9 -2
  4. package/dist/common/processes/next.js +3 -3
  5. package/dist/common/processes/transform.js +29 -14
  6. package/dist/common/prompts/base.js +0 -12
  7. package/dist/common/prompts/sxp.js +20 -0
  8. package/dist/common/utils/helpers.js +28 -43
  9. package/dist/init-runner.js +16 -11
  10. package/dist/initializers/angular/index.js +13 -0
  11. package/dist/initializers/angular/prompts.js +22 -1
  12. package/dist/initializers/angular-sxp/index.js +62 -0
  13. package/dist/initializers/angular-xmcloud/index.js +66 -0
  14. package/dist/initializers/nextjs/index.js +2 -2
  15. package/dist/initializers/nextjs/prompts.js +2 -0
  16. package/dist/initializers/nextjs/remove-dev-dependencies.js +2 -2
  17. package/dist/initializers/nextjs-multisite/index.js +1 -1
  18. package/dist/initializers/nextjs-styleguide/index.js +1 -1
  19. package/dist/initializers/nextjs-styleguide-tracking/index.js +1 -1
  20. package/dist/initializers/nextjs-sxa/index.js +1 -1
  21. package/dist/initializers/nextjs-xmcloud/index.js +1 -1
  22. package/dist/initializers/node-xmcloud-proxy/index.js +32 -0
  23. package/dist/initializers/react/index.js +3 -3
  24. package/dist/initializers/react/prompts.js +1 -1
  25. package/dist/initializers/react-native/prompts.js +1 -0
  26. package/dist/initializers/vue/prompts.js +1 -1
  27. package/dist/templates/angular/.env +5 -3
  28. package/dist/templates/angular/README.md +5 -45
  29. package/dist/templates/angular/angular.json +1 -6
  30. package/dist/templates/angular/package.json +5 -15
  31. package/dist/templates/angular/proxy.conf.js +5 -23
  32. package/dist/templates/angular/scripts/bootstrap.ts +5 -24
  33. package/dist/templates/angular/scripts/config/index.ts +28 -0
  34. package/dist/templates/angular/scripts/config/plugins/computed.ts +21 -0
  35. package/dist/templates/angular/scripts/config/plugins/fallback.ts +23 -0
  36. package/dist/templates/angular/scripts/config/plugins/package-json.ts +22 -0
  37. package/dist/templates/angular/scripts/config/plugins/scjssconfig.ts +29 -0
  38. package/dist/templates/angular/scripts/generate-config.ts +53 -73
  39. package/dist/templates/angular/scripts/generate-plugins.ts +28 -0
  40. package/dist/templates/angular/scripts/temp/gitignore +2 -0
  41. package/dist/templates/angular/scripts/update-graphql-fragment-data.ts +4 -2
  42. package/dist/templates/angular/server.bundle.ts +19 -1
  43. package/dist/templates/angular/src/app/JssState.ts +1 -4
  44. package/dist/templates/angular/src/app/app.module.ts +0 -2
  45. package/dist/templates/angular/src/app/components/app-components.shared.module.ts +4 -19
  46. package/dist/templates/angular/src/app/jss-context.server-side.service.ts +0 -2
  47. package/dist/templates/angular/src/app/lib/config.ts +16 -0
  48. package/dist/templates/angular/src/app/lib/dictionary-service-factory.ts +21 -13
  49. package/dist/templates/angular/src/app/lib/layout-service-factory.ts +20 -12
  50. package/dist/templates/angular/src/app/routing/layout/layout.component.html +1 -1
  51. package/dist/templates/angular/src/app/routing/layout/layout.component.ts +1 -2
  52. package/dist/templates/angular/src/app/routing/navigation/navigation.component.html +5 -6
  53. package/dist/templates/angular/src/app/routing/navigation/navigation.component.ts +1 -2
  54. package/dist/templates/angular/src/app/routing/routing.module.ts +14 -21
  55. package/dist/templates/angular/src/app/routing/scripts/scripts.component.html +1 -0
  56. package/dist/templates/angular/src/app/routing/scripts/scripts.component.ts +7 -0
  57. package/dist/templates/angular/src/app/routing/scripts/scripts.module.ts +8 -0
  58. package/dist/templates/angular/src/graphql-fragment-types.ts +0 -95
  59. package/dist/templates/angular/tsconfig.json +7 -2
  60. package/dist/templates/angular-sxp/package.json +12 -0
  61. package/dist/templates/angular-sxp/proxy.conf.js +43 -0
  62. package/dist/templates/angular-sxp/scripts/config/plugins/disconnected.ts +27 -0
  63. package/dist/templates/angular-sxp/src/app/components/app-components.shared.module.ts +35 -0
  64. package/dist/templates/{angular → angular-sxp}/src/app/jss-data-fetcher.service.ts +3 -1
  65. package/dist/templates/angular-sxp/src/app/routing/navigation/navigation.component.html +23 -0
  66. package/dist/templates/angular-sxp/src/app/routing/scripts/scripts.component.html +3 -0
  67. package/dist/templates/angular-sxp/src/app/routing/scripts/scripts.module.ts +9 -0
  68. package/dist/templates/{angular/src/app/routing → angular-sxp/src/app/routing/scripts}/visitor-identification/visitor-identification.component.ts +9 -3
  69. package/dist/templates/angular-sxp/src/graphql-fragment-types.ts +219 -0
  70. package/dist/templates/angular-xmcloud/.env +8 -0
  71. package/dist/templates/angular-xmcloud/angular.json +34 -0
  72. package/dist/templates/angular-xmcloud/package.json +15 -0
  73. package/dist/templates/angular-xmcloud/scripts/config/plugins/xmcloud.ts +23 -0
  74. package/dist/templates/angular-xmcloud/scripts/proxy-build.ts +15 -0
  75. package/dist/templates/angular-xmcloud/src/app/components/container/container.component.html +15 -0
  76. package/dist/templates/angular-xmcloud/src/app/components/container/container.component.ts +30 -0
  77. package/dist/templates/angular-xmcloud/src/app/components/richtext/richtext.component.html +13 -0
  78. package/dist/templates/angular-xmcloud/src/app/components/richtext/richtext.component.ts +16 -0
  79. package/dist/templates/angular-xmcloud/src/app/components/sxa.component.ts +15 -0
  80. package/dist/templates/angular-xmcloud/src/app/jss-link.service.ts +51 -0
  81. package/dist/templates/angular-xmcloud/src/app/lib/config.ts +15 -0
  82. package/dist/templates/angular-xmcloud/src/app/lib/graphql-client-factory.ts +44 -0
  83. package/dist/templates/angular-xmcloud/src/app/routing/layout/layout.component.html +39 -0
  84. package/dist/templates/angular-xmcloud/src/app/routing/layout/layout.component.ts +111 -0
  85. package/dist/templates/angular-xmcloud/src/assets/styles/basic/_component.scss +48 -0
  86. package/dist/templates/angular-xmcloud/src/assets/styles/basic/_container.scss +64 -0
  87. package/dist/templates/angular-xmcloud/src/assets/styles/basic/_fonts.scss +3 -0
  88. package/dist/templates/angular-xmcloud/src/assets/styles/basic/_footer.scss +31 -0
  89. package/dist/templates/angular-xmcloud/src/assets/styles/basic/_header.scss +49 -0
  90. package/dist/templates/angular-xmcloud/src/assets/styles/basic/_navigation.scss +150 -0
  91. package/dist/templates/angular-xmcloud/src/assets/styles/basic/_promo.scss +58 -0
  92. package/dist/templates/angular-xmcloud/src/assets/styles/basic/_rich-text.scss +11 -0
  93. package/dist/templates/angular-xmcloud/src/assets/styles/basic/_variables.scss +10 -0
  94. package/dist/templates/angular-xmcloud/src/assets/styles/basic/main.scss +8 -0
  95. package/dist/templates/angular-xmcloud/src/assets/styles/main.scss +4 -0
  96. package/dist/templates/angular-xmcloud/src/assets/styles/sass/_app.scss +103 -0
  97. package/dist/templates/angular-xmcloud/src/assets/styles/sass/abstracts/_functions.scss +8 -0
  98. package/dist/templates/angular-xmcloud/src/assets/styles/sass/abstracts/_mixins.scss +121 -0
  99. package/dist/templates/angular-xmcloud/src/assets/styles/sass/abstracts/_vars.scss +3 -0
  100. package/dist/templates/angular-xmcloud/src/assets/styles/sass/abstracts/vars/_colors.scss +283 -0
  101. package/dist/templates/angular-xmcloud/src/assets/styles/sass/abstracts/vars/_fontSizes.scss +16 -0
  102. package/dist/templates/angular-xmcloud/src/assets/styles/sass/abstracts/vars/_margins.scss +11 -0
  103. package/dist/templates/angular-xmcloud/src/assets/styles/sass/base/fonts/_fonts.scss +1 -0
  104. package/dist/templates/angular-xmcloud/src/assets/styles/sass/base/fonts/index.scss +1 -0
  105. package/dist/templates/angular-xmcloud/src/assets/styles/sass/base/index.scss +3 -0
  106. package/dist/templates/angular-xmcloud/src/assets/styles/sass/base/links/_link-button.scss +26 -0
  107. package/dist/templates/angular-xmcloud/src/assets/styles/sass/base/links/index.scss +1 -0
  108. package/dist/templates/angular-xmcloud/src/assets/styles/sass/base/reset/_inputs.scss +58 -0
  109. package/dist/templates/angular-xmcloud/src/assets/styles/sass/base/reset/_links.scss +14 -0
  110. package/dist/templates/angular-xmcloud/src/assets/styles/sass/base/reset/_ui-datepicker.scss +7 -0
  111. package/dist/templates/angular-xmcloud/src/assets/styles/sass/base/richtext/_richtext-files-icons.scss +86 -0
  112. package/dist/templates/angular-xmcloud/src/assets/styles/sass/base/richtext/_richtext.scss +101 -0
  113. package/dist/templates/angular-xmcloud/src/assets/styles/sass/base/richtext/index.scss +2 -0
  114. package/dist/templates/angular-xmcloud/src/assets/styles/sass/base/typehead/_typehead.scss +95 -0
  115. package/dist/templates/angular-xmcloud/src/assets/styles/sass/base/typehead/index.scss +1 -0
  116. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/_component-column-splitter.scss +14 -0
  117. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/_component-container.scss +27 -0
  118. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/_component-image.scss +18 -0
  119. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/_component-navigation.scss +51 -0
  120. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/_component-promo.scss +42 -0
  121. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/_component-richtext-content.scss +19 -0
  122. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/common/_alignment.scss +26 -0
  123. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/common/_boxed.scss +16 -0
  124. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/common/_clearfix.scss +11 -0
  125. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/common/_highlighted.scss +63 -0
  126. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/common/_link-button.scss +16 -0
  127. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/common/_promoted-box.scss +3 -0
  128. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/common/index.scss +6 -0
  129. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/container/_bordered.scss +24 -0
  130. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/container/_title-row-box.scss +66 -0
  131. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/container/index.scss +1 -0
  132. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/image/_image-default-size.scss +6 -0
  133. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/image/index.scss +1 -0
  134. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/image-alignment/_image-left.scss +3 -0
  135. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/image-alignment/_image-right.scss +3 -0
  136. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/index.scss +17 -0
  137. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/layout/_acaindent.scss +5 -0
  138. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/layout/_background.scss +27 -0
  139. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/layout/index.scss +1 -0
  140. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/link-list/_component-link-list.scss +45 -0
  141. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/link-list/_list-vertical.scss +20 -0
  142. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/link-list/index.scss +2 -0
  143. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/navigation/_navigation-fat.scss +58 -0
  144. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/navigation/_navigation-main-horizontal-vertical.scss +176 -0
  145. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/navigation/_navigation-mobile.scss +85 -0
  146. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/navigation/_navigation-sidebar.scss +29 -0
  147. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/navigation/_sitemap-navigation.scss +20 -0
  148. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/navigation/index.scss +5 -0
  149. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/promo/_absolute-bottom-link.scss +8 -0
  150. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/promo/_promo-hero.scss +40 -0
  151. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/promo/_promo-shadow.scss +42 -0
  152. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/promo/index.scss +3 -0
  153. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/rich-text/_rich-text-lists.scss +63 -0
  154. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/rich-text/index.scss +1 -0
  155. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/spacing/_background-colors.scss +14 -0
  156. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/spacing/_indent.scss +13 -0
  157. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/spacing/index.scss +2 -0
  158. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/title/_component-title.scss +30 -0
  159. package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/title/index.scss +1 -0
  160. package/dist/templates/angular-xmcloud/src/assets/styles/sass/main.scss +4 -0
  161. package/dist/templates/angular-xmcloud/src/assets/styles/sass/variants/index.scss +6 -0
  162. package/dist/templates/angular-xmcloud/src/assets/styles/sass/variants/link-list/index.scss +0 -0
  163. package/dist/templates/angular-xmcloud/src/assets/styles/sass/variants/navigation/index.scss +0 -0
  164. package/dist/templates/angular-xmcloud/src/assets/styles/sass/variants/page-content/index.scss +0 -0
  165. package/dist/templates/angular-xmcloud/src/assets/styles/sass/variants/promo/index.scss +0 -0
  166. package/dist/templates/angular-xmcloud/src/assets/styles/sass/variants/rich-text/index.scss +0 -0
  167. package/dist/templates/angular-xmcloud/src/assets/styles/sass/variants/title/index.scss +0 -0
  168. package/dist/templates/nextjs-sxa/src/assets/sass/components/_component-image.scss +1 -1
  169. package/dist/templates/node-xmcloud-proxy/.env +8 -0
  170. package/dist/templates/node-xmcloud-proxy/README.md +36 -0
  171. package/dist/templates/node-xmcloud-proxy/package.json +25 -0
  172. package/dist/templates/node-xmcloud-proxy/src/config.ts +19 -0
  173. package/dist/templates/node-xmcloud-proxy/src/index.ts +161 -0
  174. package/dist/templates/node-xmcloud-proxy/src/types.ts +59 -0
  175. package/dist/templates/node-xmcloud-proxy/tsconfig.json +22 -0
  176. package/package.json +2 -2
  177. /package/dist/templates/angular/src/app/lib/{client-factory.ts → graphql-client-factory.ts} +0 -0
  178. /package/dist/templates/{angular → angular-sxp}/data/component-content/Styleguide/ContentReuse/LoremIpsumContentBlock/en.yml +0 -0
  179. /package/dist/templates/{angular → angular-sxp}/data/component-content/gitignore +0 -0
  180. /package/dist/templates/{angular → angular-sxp}/data/content/Styleguide/ContentListField/Item1/en.yml +0 -0
  181. /package/dist/templates/{angular → angular-sxp}/data/content/Styleguide/ContentListField/Item2/en.yml +0 -0
  182. /package/dist/templates/{angular → angular-sxp}/data/content/Styleguide/EditFrameDemo/Item1/en.yml +0 -0
  183. /package/dist/templates/{angular → angular-sxp}/data/content/Styleguide/EditFrameDemo/Item2/en.yml +0 -0
  184. /package/dist/templates/{angular → angular-sxp}/data/content/Styleguide/ItemLinkField/Item1/en.yml +0 -0
  185. /package/dist/templates/{angular → angular-sxp}/data/content/Styleguide/ItemLinkField/Item2/en.yml +0 -0
  186. /package/dist/templates/{angular → angular-sxp}/data/content/gitignore +0 -0
  187. /package/dist/templates/{angular → angular-sxp}/data/dictionary/en.yml +0 -0
  188. /package/dist/templates/{angular → angular-sxp}/data/dictionary/{{language}}.yml +0 -0
  189. /package/dist/templates/{angular → angular-sxp}/data/media/files/jss.pdf +0 -0
  190. /package/dist/templates/{angular → angular-sxp}/data/media/img/jss_logo.png +0 -0
  191. /package/dist/templates/{angular → angular-sxp}/data/media/img/sc_logo.png +0 -0
  192. /package/dist/templates/{angular → angular-sxp}/data/routes/en.yml +0 -0
  193. /package/dist/templates/{angular → angular-sxp}/data/routes/graphql/en.yml +0 -0
  194. /package/dist/templates/{angular → angular-sxp}/data/routes/graphql/sample-1/en.yml +0 -0
  195. /package/dist/templates/{angular → angular-sxp}/data/routes/graphql/sample-2/en.yml +0 -0
  196. /package/dist/templates/{angular → angular-sxp}/data/routes/styleguide/custom-route-type/en.yml +0 -0
  197. /package/dist/templates/{angular → angular-sxp}/data/routes/styleguide/en.yml +0 -0
  198. /package/dist/templates/{angular → angular-sxp}/data/routes/styleguide/{{language}}.yml +0 -0
  199. /package/dist/templates/{angular → angular-sxp}/data/routes/{{language}}.yml +0 -0
  200. /package/dist/templates/{angular → angular-sxp}/scripts/disconnected-mode-proxy.ts +0 -0
  201. /package/dist/templates/{angular → angular-sxp}/scripts/lint-yml.ts +0 -0
  202. /package/dist/templates/{angular → angular-sxp}/sitecore/config/{{appName}}.config +0 -0
  203. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/component-content.sitecore.ts +0 -0
  204. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/Styleguide-Layout-Reuse.sitecore.ts +0 -0
  205. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/Styleguide-Layout-Tabs-Tab.sitecore.ts +0 -0
  206. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/Styleguide-Layout-Tabs.sitecore.ts +0 -0
  207. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/Styleguide-Layout.sitecore.ts +0 -0
  208. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/Styleguide-Multilingual.sitecore.ts +0 -0
  209. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/Styleguide-Section.sitecore.ts +0 -0
  210. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/content-block.sitecore.ts +0 -0
  211. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/graph-ql-connected-demo.sitecore.ts +0 -0
  212. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/graph-ql-integrated-demo.sitecore.graphql +0 -0
  213. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/graph-ql-integrated-demo.sitecore.ts +0 -0
  214. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/graph-ql-layout.sitecore.ts +0 -0
  215. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/styleguide-angular-lazy-loading.sitecore.ts +0 -0
  216. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/styleguide-component-params.sitecore.ts +0 -0
  217. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/styleguide-custom-route-type.sitecore.ts +0 -0
  218. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/styleguide-edit-frame.sitecore.ts +0 -0
  219. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/styleguide-field-usage-checkbox.sitecore.ts +0 -0
  220. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/styleguide-field-usage-content-list.sitecore.ts +0 -0
  221. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/styleguide-field-usage-custom.sitecore.ts +0 -0
  222. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/styleguide-field-usage-date.sitecore.ts +0 -0
  223. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/styleguide-field-usage-file.sitecore.ts +0 -0
  224. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/styleguide-field-usage-image.sitecore.ts +0 -0
  225. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/styleguide-field-usage-item-link.sitecore.ts +0 -0
  226. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/styleguide-field-usage-link.sitecore.ts +0 -0
  227. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/styleguide-field-usage-number.sitecore.ts +0 -0
  228. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/styleguide-field-usage-rich-text.sitecore.ts +0 -0
  229. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/styleguide-field-usage-text.sitecore.ts +0 -0
  230. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/styleguide-route-fields.sitecore.ts +0 -0
  231. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/styleguide-sitecore-context.sitecore.ts +0 -0
  232. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/components/styleguide-tracking.sitecore.ts +0 -0
  233. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/config.js +0 -0
  234. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/content.sitecore.ts +0 -0
  235. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/dictionary.sitecore.ts +0 -0
  236. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/placeholders.sitecore.ts +0 -0
  237. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/routes.sitecore.ts +0 -0
  238. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/templates/Styleguide-Explanatory-Component.sitecore.ts +0 -0
  239. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/templates/styleguide-content-list-template.sitecore.ts +0 -0
  240. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/templates/styleguide-edit-frame-list-item-template.sitecore.ts +0 -0
  241. /package/dist/templates/{angular → angular-sxp}/sitecore/definitions/templates/styleguide-item-link-template.sitecore.ts +0 -0
  242. /package/dist/templates/{angular → angular-sxp}/sitecore/gitignore +0 -0
  243. /package/dist/templates/{angular → angular-sxp}/sitecore/pipelines/example.patch.ts +0 -0
  244. /package/dist/templates/{angular → angular-sxp}/src/app/components/graph-ql-connected-demo/graph-ql-connected-demo.component.graphql +0 -0
  245. /package/dist/templates/{angular → angular-sxp}/src/app/components/graph-ql-connected-demo/graph-ql-connected-demo.component.html +0 -0
  246. /package/dist/templates/{angular → angular-sxp}/src/app/components/graph-ql-connected-demo/graph-ql-connected-demo.component.ts +0 -0
  247. /package/dist/templates/{angular → angular-sxp}/src/app/components/graph-ql-integrated-demo/graph-ql-integrated-demo.component.html +0 -0
  248. /package/dist/templates/{angular → angular-sxp}/src/app/components/graph-ql-integrated-demo/graph-ql-integrated-demo.component.ts +0 -0
  249. /package/dist/templates/{angular → angular-sxp}/src/app/components/graph-ql-layout/graph-ql-layout.component.html +0 -0
  250. /package/dist/templates/{angular → angular-sxp}/src/app/components/graph-ql-layout/graph-ql-layout.component.ts +0 -0
  251. /package/dist/templates/{angular → angular-sxp}/src/app/components/shared/styleguide-specimen/styleguide-specimen.component.ts +0 -0
  252. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-angular-lazy-loading/styleguide-angular-lazy-loading.component.html +0 -0
  253. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-angular-lazy-loading/styleguide-angular-lazy-loading.component.ts +0 -0
  254. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-angular-lazy-loading/styleguide-angular-lazy-loading.module.ts +0 -0
  255. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-component-params/styleguide-component-params.component.html +0 -0
  256. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-component-params/styleguide-component-params.component.ts +0 -0
  257. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-custom-route-type/styleguide-custom-route-type.component.html +0 -0
  258. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-custom-route-type/styleguide-custom-route-type.component.ts +0 -0
  259. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-edit-frame/styleguide-edit-frame.component.html +0 -0
  260. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-edit-frame/styleguide-edit-frame.component.ts +0 -0
  261. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-field-usage-checkbox/styleguide-field-usage-checkbox.component.html +0 -0
  262. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-field-usage-checkbox/styleguide-field-usage-checkbox.component.ts +0 -0
  263. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-field-usage-content-list/styleguide-field-usage-content-list.component.html +0 -0
  264. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-field-usage-content-list/styleguide-field-usage-content-list.component.ts +0 -0
  265. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-field-usage-custom/styleguide-field-usage-custom.component.html +0 -0
  266. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-field-usage-custom/styleguide-field-usage-custom.component.ts +0 -0
  267. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-field-usage-date/styleguide-field-usage-date.component.html +0 -0
  268. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-field-usage-date/styleguide-field-usage-date.component.ts +0 -0
  269. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-field-usage-file/styleguide-field-usage-file.component.html +0 -0
  270. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-field-usage-file/styleguide-field-usage-file.component.ts +0 -0
  271. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-field-usage-image/styleguide-field-usage-image.component.html +0 -0
  272. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-field-usage-image/styleguide-field-usage-image.component.ts +0 -0
  273. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-field-usage-item-link/styleguide-field-usage-item-link.component.html +0 -0
  274. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-field-usage-item-link/styleguide-field-usage-item-link.component.ts +0 -0
  275. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-field-usage-link/styleguide-field-usage-link.component.html +0 -0
  276. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-field-usage-link/styleguide-field-usage-link.component.ts +0 -0
  277. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-field-usage-number/styleguide-field-usage-number.component.html +0 -0
  278. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-field-usage-number/styleguide-field-usage-number.component.ts +0 -0
  279. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-field-usage-rich-text/styleguide-field-usage-rich-text.component.html +0 -0
  280. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-field-usage-rich-text/styleguide-field-usage-rich-text.component.ts +0 -0
  281. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-field-usage-text/styleguide-field-usage-text.component.html +0 -0
  282. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-field-usage-text/styleguide-field-usage-text.component.ts +0 -0
  283. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-layout/styleguide-layout.component.html +0 -0
  284. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-layout/styleguide-layout.component.ts +0 -0
  285. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-layout-reuse/styleguide-layout-reuse.component.html +0 -0
  286. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-layout-reuse/styleguide-layout-reuse.component.ts +0 -0
  287. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-layout-tabs/styleguide-layout-tabs.component.html +0 -0
  288. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-layout-tabs/styleguide-layout-tabs.component.ts +0 -0
  289. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-layout-tabs-tab/styleguide-layout-tabs-tab.component.html +0 -0
  290. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-layout-tabs-tab/styleguide-layout-tabs-tab.component.ts +0 -0
  291. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-multilingual/styleguide-multilingual.component.html +0 -0
  292. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-multilingual/styleguide-multilingual.component.ts +0 -0
  293. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-route-fields/styleguide-route-fields.component.html +0 -0
  294. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-route-fields/styleguide-route-fields.component.ts +0 -0
  295. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-section/styleguide-section.component.html +0 -0
  296. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-section/styleguide-section.component.ts +0 -0
  297. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-sitecore-context/styleguide-sitecore-context.component.html +0 -0
  298. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-sitecore-context/styleguide-sitecore-context.component.ts +0 -0
  299. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-tracking/styleguide-tracking.component.html +0 -0
  300. /package/dist/templates/{angular → angular-sxp}/src/app/components/styleguide-tracking/styleguide-tracking.component.ts +0 -0
@@ -0,0 +1,24 @@
1
+ @import "sass/abstracts/vars";
2
+ @import "sass/abstracts/mixins";
3
+
4
+ .sxa-bordered {
5
+ box-sizing: border-box;
6
+ >.component-content {
7
+ padding: 0;
8
+ @include border-basic();
9
+ border-radius: 5px;
10
+ }
11
+ }
12
+
13
+ .column-splitter,
14
+ .row-splitter {
15
+ box-sizing: border-box;
16
+ .sxa-bordered {
17
+ padding: $default-padding !important;
18
+ >.component,
19
+ .scEmptyPlaceholder {
20
+ @include border-basic();
21
+ border-radius: 5px;
22
+ }
23
+ }
24
+ }
@@ -0,0 +1,66 @@
1
+ @import "sass/abstracts/vars";
2
+ @import "sass/abstracts/mixins";
3
+
4
+ .title-row-box {
5
+ @include border-basic();
6
+ box-sizing: border-box;
7
+ width: 100%;
8
+ height: 87px;
9
+ margin: 0;
10
+ padding: 0;
11
+ background: $container-title-row-bg;
12
+ >.component-content {
13
+ @include wrapper();
14
+ .title {
15
+ display: inline-block;
16
+ vertical-align: middle;
17
+ box-sizing: border-box;
18
+ margin: 23px 0 0 0;
19
+ padding: 0;
20
+ h1 {
21
+ @include font-size(2.2);
22
+ border: none;
23
+ }
24
+ @include respond-to(all-mobile) {
25
+ margin: 23px 0 0 20px;
26
+ }
27
+ }
28
+ .rich-text {
29
+ margin: 0;
30
+ h1, h2, h3, h4 {
31
+ margin: 0;
32
+ padding: 0;
33
+ }
34
+ }
35
+ .breadcrumb {
36
+ display: inline-block;
37
+ vertical-align: middle;
38
+ box-sizing: border-box;
39
+ @include font-size(1.4);
40
+ margin: 23px 0 0 0;
41
+ padding: 0;
42
+ float: right;
43
+ clear: both;
44
+ @include respond-to(tablet) {
45
+ margin: 23px 20px 0 0;
46
+ }
47
+ @include respond-to(mobile) {
48
+ display: none;
49
+ }
50
+ }
51
+ }
52
+ @include respond-to(all-mobile) {
53
+ .alpha {
54
+ vertical-align: middle;
55
+ box-sizing: border-box;
56
+ width: auto !important; //overrides grid
57
+ float: left;
58
+ }
59
+ .omega {
60
+ vertical-align: middle;
61
+ box-sizing: border-box;
62
+ width: auto !important; //overrides grid
63
+ float: right;
64
+ }
65
+ }
66
+ }
@@ -0,0 +1,6 @@
1
+ .image-default-size {
2
+ img {
3
+ max-width: none;
4
+ width: auto !important;
5
+ }
6
+ }
@@ -0,0 +1,3 @@
1
+ .image-left .component-content>div>img {
2
+ float: left;
3
+ }
@@ -0,0 +1,3 @@
1
+ .image-right .component-content>div>img {
2
+ float: right;
3
+ }
@@ -0,0 +1,17 @@
1
+ @import "component-column-splitter";
2
+ @import "component-container";
3
+ @import "component-image";
4
+ @import "component-navigation";
5
+ @import "component-promo";
6
+ @import "_component-richtext-content";
7
+
8
+ @import "common";
9
+ @import "container";
10
+ @import "layout";
11
+ @import "spacing";
12
+ @import "promo";
13
+ @import "spacing";
14
+ @import "title";
15
+ @import "image";
16
+ @import "link-list";
17
+ @import "rich-text";
@@ -0,0 +1,5 @@
1
+ @import "sass/abstracts/vars";
2
+
3
+ .alan-indent {
4
+ margin: 0 $extralarge-margin;
5
+ }
@@ -0,0 +1,27 @@
1
+ @import "sass/abstracts/vars";
2
+ @import "sass/abstracts/mixins";
3
+
4
+ %cover-bg {
5
+ background-repeat: no-repeat;
6
+ background-size: cover;
7
+ }
8
+ .cover-background {
9
+ >.component-content {
10
+ @extend %cover-bg;
11
+ }
12
+ }
13
+ .fix-background {
14
+ >.component-content {
15
+ @extend %cover-bg;
16
+ @include fixed-bg(left top);
17
+ }
18
+ }
19
+ .parallax-background {
20
+ >.component-content {
21
+ @extend %cover-bg;
22
+ @include fixed-bg(50% 0);
23
+ @include respond-to(mobile-large) {
24
+ background-attachment: scroll;
25
+ }
26
+ }
27
+ }
@@ -0,0 +1,45 @@
1
+ @import "sass/abstracts/mixins";
2
+ @import "sass/abstracts/vars";
3
+ @import 'font-awesome/scss/mixins';
4
+ @import "font-awesome/scss/variables";
5
+
6
+ .link-list {
7
+ background: $link-list-bg;
8
+ h1, h2, h3, h4, h5, h6 {
9
+ @include border-basic(bottom, $link-list-header-border);
10
+ }
11
+ >.component-content {
12
+ ul {
13
+ background: $link-list-items-bg;
14
+ }
15
+ li {
16
+ background: $link-list-item-bg;
17
+ display: block;
18
+ font-size: $font-normal;
19
+ a {
20
+ display: inline;
21
+ color: $link-list-item-color;
22
+ position: relative;
23
+ padding-left: 10px;
24
+ font-size: 1em;
25
+ text-decoration: none;
26
+ &:before {
27
+ @include fa-icon();
28
+ content: $fa-var-chevron-right;
29
+ position: absolute;
30
+ left: 0;
31
+ top: 50%;
32
+ transform: translateY(-50%);
33
+ font-size: 10px;
34
+ }
35
+ &:hover {
36
+ color: $link-list-item-color-active;
37
+ text-decoration: none;
38
+ border-bottom: 1px solid $link-list-item-border-active;
39
+ }
40
+ }
41
+ }
42
+ }
43
+ @import "../../base/links";
44
+ @import "../../variants/link-list";
45
+ }
@@ -0,0 +1,20 @@
1
+ @import 'sass/abstracts/vars';
2
+ @import 'sass/abstracts/mixins';
3
+
4
+ .link-list.list-vertical {
5
+ h3 {
6
+ background: $bg-basic-color;
7
+ width: 100%;
8
+ display: inline-block;
9
+ padding: 3px 5px;
10
+ @include border-basic();
11
+ }
12
+ a {
13
+ border: none;
14
+ }
15
+ li {
16
+ display: block;
17
+ margin-left: $middle-margin;
18
+ }
19
+ }
20
+
@@ -0,0 +1,2 @@
1
+ @import "component-link-list";
2
+ @import "list-vertical";
@@ -0,0 +1,58 @@
1
+ @import 'sass/abstracts/vars';
2
+ @import 'sass/abstracts/mixins';
3
+ @import 'font-awesome/scss/mixins';
4
+ @import 'font-awesome/scss/variables';
5
+
6
+ .navigation.navigation-fat {
7
+ background: $bg-basic-color;
8
+ @include border-basic();
9
+
10
+ a {
11
+ text-decoration: none;
12
+ }
13
+
14
+ nav > ul {
15
+ list-style: none;
16
+ padding: 10px 0;
17
+ overflow: hidden;
18
+ }
19
+
20
+ .rel-level1 {
21
+ margin: $small-margin;
22
+ padding: 0;
23
+ display: inline-block;
24
+ vertical-align: top;
25
+
26
+ &.submenu ul a {
27
+ position: relative;
28
+ &:before {
29
+ @include fa-icon();
30
+ transform: translateY(-50%);
31
+ position: absolute;
32
+ content: $fa-var-chevron-right;
33
+ top: 50%;
34
+ left: -9px;
35
+ font-size: 10px;
36
+ }
37
+ }
38
+ > .navigation-title > a {
39
+ @include border-basic(top, $border-basic-color, 2px);
40
+ border-bottom: 0;
41
+ background: $nav-bg-root;
42
+ padding: 5px 10px;
43
+ display: block;
44
+ width: auto;
45
+ &:hover {
46
+ border-color: $menu-hover-color;
47
+ }
48
+ }
49
+ > ul {
50
+ padding: 0;
51
+ }
52
+ }
53
+ .rel-level2 {
54
+ padding-left: $small-margin;
55
+ display: block;
56
+ }
57
+ }
58
+
@@ -0,0 +1,176 @@
1
+ @import 'sass/abstracts/vars';
2
+ @import 'sass/abstracts/mixins';
3
+ @import 'font-awesome/scss/mixins';
4
+ @import 'font-awesome/scss/variables';
5
+
6
+ $borderSize: 2px;
7
+
8
+ //Drop Down Navigation Common Part
9
+ .navigation.navigation-main {
10
+ .component-content > nav {
11
+ position: relative;
12
+ ul {
13
+ @include clearfix();
14
+ }
15
+ }
16
+ .rel-level1 {
17
+ float: left;
18
+ &.active {
19
+ > .navigation-title > a {
20
+ border-color: $nav-border-root;
21
+ }
22
+ }
23
+ > .navigation-title > a {
24
+ border-width: 2px 0 0 0;
25
+ border-color: transparent;
26
+ &:hover {
27
+ border-color: $nav-border-root;
28
+ }
29
+ }
30
+ &.submenu {
31
+ > .navigation-title a {
32
+ position: relative;
33
+ padding-right: 15px;
34
+ &:after {
35
+ @include fa-icon();
36
+ font-size: 10px;
37
+ content: $fa-var-chevron-down;
38
+ position: absolute;
39
+ transform: translateY(-50%);
40
+ top: 50%;
41
+ right: 0;
42
+ }
43
+ }
44
+ }
45
+ //submenu
46
+ > ul {
47
+ overflow: hidden;
48
+ display: none;
49
+ z-index: 10;
50
+ position: absolute;
51
+ top: 100%;
52
+ background: $nav-bg-submenu;
53
+ margin-left: 0;
54
+ margin-top: -$borderSize;
55
+ border-top: $borderSize solid $nav-border-submenu;
56
+ border-left: 1px solid $nav-submenu-item-border;
57
+ border-bottom: 1px solid $nav-submenu-item-border;
58
+ }
59
+ &:active,
60
+ &:hover {
61
+ > a {
62
+ & + ul {
63
+ display: block !important;
64
+ }
65
+ }
66
+ > ul {
67
+ display: block !important;
68
+ min-width: 60px;
69
+ }
70
+ }
71
+ &.active {
72
+ > .navigation-title > a:link,
73
+ > .navigation-title > a:visited {
74
+ color: $text-basic-active;
75
+ }
76
+ > span {
77
+ display: block;
78
+ padding: 10px 20px;
79
+ color: $text-white;
80
+ }
81
+ }
82
+ &.submenu.active {
83
+ border-color: $menu-active-color;
84
+ }
85
+ }
86
+ .rel-level2 {
87
+ &:hover,
88
+ &:focus {
89
+ transition: background 0.2s ease-in;
90
+ background: $nav-bg-submenu-active;
91
+ }
92
+ div > a {
93
+ display: block;
94
+ font-weight: normal;
95
+ font-size: $navigation-font-basic-submenu;
96
+ text-align: center;
97
+ &:hover,
98
+ &:focus {
99
+ color: $nav-color-submenu;
100
+ }
101
+ }
102
+ &.submenu {
103
+ box-sizing: border-box;
104
+ &.navigation-image {
105
+ text-align: center;
106
+ > a,
107
+ .field-navigationtext {
108
+ text-align: left;
109
+ }
110
+ }
111
+ }
112
+ }
113
+ // Additional styles fot drop down horizontal navigation
114
+ &.navigation-main-horizontal {
115
+ .submenu > ul {
116
+ padding-left: 0;
117
+ }
118
+ .rel-level1 {
119
+ &:active,
120
+ &:hover {
121
+ > a {
122
+ & + ul {
123
+ display: inline-flex !important;
124
+ flex-wrap: wrap;
125
+ }
126
+ }
127
+ > ul {
128
+ display: inline-flex !important;
129
+ flex-wrap: wrap;
130
+ }
131
+ }
132
+ > ul {
133
+ width: 100%;
134
+ clear: both;
135
+ left: 0;
136
+ }
137
+ }
138
+ .rel-level2 {
139
+ float: left;
140
+ padding: 10px;
141
+ @include border-basic(right, $nav-submenu-item-border, 1px);
142
+ flex-grow: 1;
143
+ flex-basis: 23%;
144
+ }
145
+ }
146
+ // Additional styles fot drop down vertical navigation
147
+ &.navigation-main-vertical {
148
+ .rel-level1 > ul {
149
+ padding-left: 0;
150
+ width: auto;
151
+ left: auto;
152
+ @include border-basic(right, $nav-submenu-item-border, 1px);
153
+ > li {
154
+ padding: 5px 10px;
155
+ }
156
+ }
157
+ .submenu {
158
+ ul {
159
+ li {
160
+ a:before {
161
+ @include fa-icon();
162
+ content: $fa-var-chevron-right;
163
+ display: block;
164
+ position: absolute;
165
+ left: 0;
166
+ font-size: 10px;
167
+ top: 18px;
168
+ transform: translateY(-50%);
169
+ padding-left: 7px;
170
+ }
171
+ }
172
+ }
173
+ }
174
+ }
175
+ }
176
+
@@ -0,0 +1,85 @@
1
+ @import 'sass/abstracts/vars';
2
+ @import 'sass/abstracts/mixins';
3
+ @import 'font-awesome/scss/mixins';
4
+ @import 'font-awesome/scss/variables';
5
+
6
+ .navigation.navigation-mobile {
7
+ nav > ul {
8
+ border: none;
9
+ @include border-basic();
10
+ }
11
+ .rel-level1 {
12
+ cursor: pointer;
13
+ margin: 0;
14
+ background: $bg-basic-color;
15
+ > .navigation-title {
16
+ border-bottom: 1px solid $border-basic-color;
17
+ margin: 0;
18
+ &:last-child {
19
+ border-bottom: none;
20
+ }
21
+ }
22
+ .navigation-title {
23
+ padding: 10px;
24
+ > a {
25
+ text-decoration: none;
26
+ color: $text-basic;
27
+ display: inline;
28
+ }
29
+ }
30
+ }
31
+ .rel-level2 {
32
+ display: list-item;
33
+ .navigation-title > a {
34
+ font-weight: 500;
35
+ }
36
+ }
37
+ .submenu {
38
+ > ul {
39
+ li {
40
+ position: relative;
41
+ a:before {
42
+ @include fa-icon();
43
+ content: $fa-var-chevron-right;
44
+ display: block;
45
+ position: absolute;
46
+ left: 0;
47
+ font-size: 10px;
48
+ top: 20px;
49
+ transform: translateY(-50%);
50
+ }
51
+ }
52
+ padding-left: 25px;
53
+ background: $nav-bg-submenu;
54
+ }
55
+ > ul {
56
+ display: none;
57
+ }
58
+ &.active{
59
+ > .navigation-title:before {
60
+ transform: rotate(180deg);
61
+ transition: 0.6s;
62
+ transform-style: preserve-3d;
63
+ }
64
+ > ul {
65
+ display: block;
66
+ }
67
+ }
68
+ > .navigation-title {
69
+ position: relative;
70
+ &:before {
71
+ @include fa-icon();
72
+ content: $fa-var-chevron-down;
73
+ display: block;
74
+ position: absolute;
75
+ right: 10px;
76
+ font-size: 10px;
77
+ top: 20px;
78
+ transform: translateY(-50%);
79
+ transform: rotate(0);
80
+ transition: 0.6s;
81
+ transform-style: preserve-3d;
82
+ }
83
+ }
84
+ }
85
+ }
@@ -0,0 +1,29 @@
1
+ @import "sass/abstracts/vars";
2
+ @import "sass/abstracts/mixins";
3
+
4
+ .navigation.navigation-sidebar {
5
+ a {
6
+ text-decoration: none;
7
+ }
8
+ nav>ul {
9
+ .rel-level1 {
10
+ >.navigation-title {
11
+ margin-bottom: 0;
12
+ >a {
13
+ padding: 5px 10px;
14
+ display: block;
15
+ position: relative;
16
+ z-index: 1;
17
+ margin-right: 0;
18
+ }
19
+ }
20
+ >ul {
21
+ margin-left: $small-margin;
22
+ margin-top: $extrasmall-margin;
23
+ }
24
+ }
25
+ .rel-level2 {
26
+ display: block;
27
+ }
28
+ }
29
+ }
@@ -0,0 +1,20 @@
1
+ @import 'sass/abstracts/vars';
2
+ @import 'sass/abstracts/mixins';
3
+ @import 'font-awesome/scss/mixins';
4
+ @import 'font-awesome/scss/variables';
5
+
6
+ .navigation.sitemap-navigation {
7
+ .level2 a {
8
+ position: relative;
9
+ padding-left: 10px;
10
+ &:before {
11
+ @include font-size(1.4);
12
+ @include fa-icon();
13
+ transform: translateY(-50%) scale(1, -1);
14
+ position: absolute;
15
+ content: $fa-var-share;
16
+ top: 50%;
17
+ left: -8px;
18
+ }
19
+ }
20
+ }
@@ -0,0 +1,5 @@
1
+ @import "navigation-main-horizontal-vertical";
2
+ @import "navigation-mobile";
3
+ @import "navigation-sidebar";
4
+ @import "sitemap-navigation";
5
+ @import "navigation-fat";
@@ -0,0 +1,8 @@
1
+ .promo.absolute-bottom-link {
2
+ position: relative;
3
+ .field-promolink {
4
+ position: absolute;
5
+ bottom: 10px;
6
+ right: 10px;
7
+ }
8
+ }
@@ -0,0 +1,40 @@
1
+ @import "sass/abstracts/vars";
2
+ @import "sass/abstracts/mixins";
3
+
4
+ .promo.promo-hero {
5
+ position: relative;
6
+ text-align: center;
7
+ &.promo-hero-half {
8
+ float: left;
9
+ width: 50%;
10
+ @include respond-to(all-mobile) {
11
+ float: none;
12
+ width: 100%;
13
+ }
14
+ }
15
+ .field-promotext {
16
+ display: inline-block;
17
+ transform: translateY(-50%);
18
+ position: absolute;
19
+ top: 50%;
20
+ left: 0;
21
+ right: 0;
22
+ padding: 20px;
23
+ color: $promo-hero-text-color;
24
+ background: $promo-bg-hero;
25
+ >a {
26
+ color: inherit;
27
+ text-decoration: none;
28
+ }
29
+ @include respond-to(all-mobile) {
30
+ width: 100%;
31
+ margin: 0;
32
+ h1 {
33
+ @include font-size(2.4);
34
+ }
35
+ h2, h3, h4 {
36
+ @include font-size(2.0);
37
+ }
38
+ }
39
+ }
40
+ }