create-sitecore-jss 22.2.1-canary.3 → 22.2.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 (317) hide show
  1. package/LICENSE.MD +202 -202
  2. package/README.md +10 -10
  3. package/dist/templates/angular/.eslintignore +3 -3
  4. package/dist/templates/angular/.eslintrc +65 -65
  5. package/dist/templates/angular/LICENSE.txt +202 -202
  6. package/dist/templates/angular/README.md +53 -53
  7. package/dist/templates/angular/angular.json +177 -177
  8. package/dist/templates/angular/data/component-content/Styleguide/ContentReuse/LoremIpsumContentBlock/en.yml +9 -9
  9. package/dist/templates/angular/data/content/Styleguide/ContentListField/Item1/en.yml +6 -6
  10. package/dist/templates/angular/data/content/Styleguide/ContentListField/Item2/en.yml +6 -6
  11. package/dist/templates/angular/data/content/Styleguide/EditFrameDemo/Item1/en.yml +6 -6
  12. package/dist/templates/angular/data/content/Styleguide/EditFrameDemo/Item2/en.yml +6 -6
  13. package/dist/templates/angular/data/content/Styleguide/ItemLinkField/Item1/en.yml +6 -6
  14. package/dist/templates/angular/data/content/Styleguide/ItemLinkField/Item2/en.yml +6 -6
  15. package/dist/templates/angular/data/dictionary/en.yml +4 -4
  16. package/dist/templates/angular/data/dictionary/{{language}}.yml +4 -4
  17. package/dist/templates/angular/data/routes/en.yml +61 -61
  18. package/dist/templates/angular/data/routes/graphql/en.yml +27 -27
  19. package/dist/templates/angular/data/routes/graphql/sample-1/en.yml +9 -9
  20. package/dist/templates/angular/data/routes/graphql/sample-2/en.yml +9 -9
  21. package/dist/templates/angular/data/routes/styleguide/custom-route-type/en.yml +12 -12
  22. package/dist/templates/angular/data/routes/styleguide/en.yml +271 -271
  23. package/dist/templates/angular/data/routes/styleguide/{{language}}.yml +25 -25
  24. package/dist/templates/angular/data/routes/{{language}}.yml +4 -4
  25. package/dist/templates/angular/e2e/tsconfig.e2e.json +15 -15
  26. package/dist/templates/angular/gitignore +47 -47
  27. package/dist/templates/angular/package.json +127 -127
  28. package/dist/templates/angular/sitecore/config/{{appName}}.config +90 -90
  29. package/dist/templates/angular/sitecore/definitions/components/graph-ql-integrated-demo.sitecore.graphql +71 -71
  30. package/dist/templates/angular/sitecore/gitignore +2 -2
  31. package/dist/templates/angular/src/app/app.component.html +1 -1
  32. package/dist/templates/angular/src/app/components/content-block/content-block.component.html +4 -4
  33. package/dist/templates/angular/src/app/components/gitignore +7 -7
  34. package/dist/templates/angular/src/app/components/graph-ql-connected-demo/graph-ql-connected-demo.component.graphql +69 -69
  35. package/dist/templates/angular/src/app/components/graph-ql-connected-demo/graph-ql-connected-demo.component.html +55 -55
  36. package/dist/templates/angular/src/app/components/graph-ql-integrated-demo/graph-ql-integrated-demo.component.html +47 -47
  37. package/dist/templates/angular/src/app/components/graph-ql-layout/graph-ql-layout.component.html +22 -22
  38. package/dist/templates/angular/src/app/components/styleguide-angular-lazy-loading/styleguide-angular-lazy-loading.component.html +5 -5
  39. package/dist/templates/angular/src/app/components/styleguide-component-params/styleguide-component-params.component.html +19 -19
  40. package/dist/templates/angular/src/app/components/styleguide-custom-route-type/styleguide-custom-route-type.component.html +14 -14
  41. package/dist/templates/angular/src/app/components/styleguide-edit-frame/styleguide-edit-frame.component.html +19 -19
  42. package/dist/templates/angular/src/app/components/styleguide-field-usage-checkbox/styleguide-field-usage-checkbox.component.html +11 -11
  43. package/dist/templates/angular/src/app/components/styleguide-field-usage-content-list/styleguide-field-usage-content-list.component.html +26 -26
  44. package/dist/templates/angular/src/app/components/styleguide-field-usage-custom/styleguide-field-usage-custom.component.html +4 -4
  45. package/dist/templates/angular/src/app/components/styleguide-field-usage-date/styleguide-field-usage-date.component.html +27 -27
  46. package/dist/templates/angular/src/app/components/styleguide-field-usage-file/styleguide-field-usage-file.component.html +10 -10
  47. package/dist/templates/angular/src/app/components/styleguide-field-usage-image/styleguide-field-usage-image.component.html +30 -30
  48. package/dist/templates/angular/src/app/components/styleguide-field-usage-item-link/styleguide-field-usage-item-link.component.html +17 -17
  49. package/dist/templates/angular/src/app/components/styleguide-field-usage-link/styleguide-field-usage-link.component.html +44 -44
  50. package/dist/templates/angular/src/app/components/styleguide-field-usage-number/styleguide-field-usage-number.component.html +11 -11
  51. package/dist/templates/angular/src/app/components/styleguide-field-usage-rich-text/styleguide-field-usage-rich-text.component.html +11 -11
  52. package/dist/templates/angular/src/app/components/styleguide-field-usage-text/styleguide-field-usage-text.component.html +13 -13
  53. package/dist/templates/angular/src/app/components/styleguide-layout/styleguide-layout.component.html +20 -20
  54. package/dist/templates/angular/src/app/components/styleguide-layout-reuse/styleguide-layout-reuse.component.html +52 -52
  55. package/dist/templates/angular/src/app/components/styleguide-layout-tabs/styleguide-layout-tabs.component.html +37 -37
  56. package/dist/templates/angular/src/app/components/styleguide-layout-tabs-tab/styleguide-layout-tabs-tab.component.html +12 -12
  57. package/dist/templates/angular/src/app/components/styleguide-multilingual/styleguide-multilingual.component.html +15 -15
  58. package/dist/templates/angular/src/app/components/styleguide-route-fields/styleguide-route-fields.component.html +8 -8
  59. package/dist/templates/angular/src/app/components/styleguide-section/styleguide-section.component.html +7 -7
  60. package/dist/templates/angular/src/app/components/styleguide-sitecore-context/styleguide-sitecore-context.component.html +3 -3
  61. package/dist/templates/angular/src/app/components/styleguide-tracking/styleguide-tracking.component.html +175 -175
  62. package/dist/templates/angular/src/app/routing/layout/layout.component.html +17 -17
  63. package/dist/templates/angular/src/app/routing/navigation/navigation.component.html +21 -21
  64. package/dist/templates/angular/src/app/routing/not-found/not-found.component.html +7 -7
  65. package/dist/templates/angular/src/app/routing/server-error/server-error.component.html +3 -3
  66. package/dist/templates/angular/src/assets/images/sc_logo.svg +52 -52
  67. package/dist/templates/angular/src/index.html +12 -12
  68. package/dist/templates/angular/src/styles.css +34 -34
  69. package/dist/templates/angular/src/tsconfig.app.json +22 -22
  70. package/dist/templates/angular/src/tsconfig.server.json +21 -21
  71. package/dist/templates/angular/src/tsconfig.spec.json +24 -24
  72. package/dist/templates/angular/src/tsconfig.webpack-server.json +6 -6
  73. package/dist/templates/angular/tsconfig.json +31 -31
  74. package/dist/templates/nextjs/.eslintrc +26 -26
  75. package/dist/templates/nextjs/.gitattributes +11 -11
  76. package/dist/templates/nextjs/.graphql-let.yml +8 -8
  77. package/dist/templates/nextjs/.prettierrc +8 -8
  78. package/dist/templates/nextjs/.vscode/launch.json +15 -15
  79. package/dist/templates/nextjs/LICENSE.txt +202 -202
  80. package/dist/templates/nextjs/README.md +8 -8
  81. package/dist/templates/nextjs/gitignore +32 -32
  82. package/dist/templates/nextjs/package.json +87 -87
  83. package/dist/templates/nextjs/public/sc_logo.svg +52 -52
  84. package/dist/templates/nextjs/scripts/temp/gitignore +2 -2
  85. package/dist/templates/nextjs/sitecore/config/{{appName}}.config +165 -165
  86. package/dist/templates/nextjs/src/assets/app.css +36 -36
  87. package/dist/templates/nextjs/src/temp/GraphQLIntrospectionResult.json +22215 -22215
  88. package/dist/templates/nextjs/src/temp/gitignore +3 -3
  89. package/dist/templates/nextjs/tsconfig.json +37 -37
  90. package/dist/templates/nextjs/tsconfig.scripts.json +11 -11
  91. package/dist/templates/nextjs-styleguide/data/component-content/Styleguide/ContentReuse/LoremIpsumContentBlock/en.yml +9 -9
  92. package/dist/templates/nextjs-styleguide/data/content/Styleguide/ContentListField/Item1/en.yml +6 -6
  93. package/dist/templates/nextjs-styleguide/data/content/Styleguide/ContentListField/Item2/en.yml +6 -6
  94. package/dist/templates/nextjs-styleguide/data/content/Styleguide/EditFrameDemo/Item1/en.yml +6 -6
  95. package/dist/templates/nextjs-styleguide/data/content/Styleguide/EditFrameDemo/Item2/en.yml +6 -6
  96. package/dist/templates/nextjs-styleguide/data/content/Styleguide/ItemLinkField/Item1/en.yml +6 -6
  97. package/dist/templates/nextjs-styleguide/data/content/Styleguide/ItemLinkField/Item2/en.yml +6 -6
  98. package/dist/templates/nextjs-styleguide/data/dictionary/en.yml +4 -4
  99. package/dist/templates/nextjs-styleguide/data/dictionary/{{language}}.yml +4 -4
  100. package/dist/templates/nextjs-styleguide/data/routes/en.yml +63 -63
  101. package/dist/templates/nextjs-styleguide/data/routes/graphql/en.yml +27 -27
  102. package/dist/templates/nextjs-styleguide/data/routes/graphql/sample-1/en.yml +9 -9
  103. package/dist/templates/nextjs-styleguide/data/routes/graphql/sample-2/en.yml +9 -9
  104. package/dist/templates/nextjs-styleguide/data/routes/styleguide/custom-route-type/en.yml +12 -12
  105. package/dist/templates/nextjs-styleguide/data/routes/styleguide/en.yml +259 -259
  106. package/dist/templates/nextjs-styleguide/data/routes/styleguide/{{language}}.yml +25 -25
  107. package/dist/templates/nextjs-styleguide/data/routes/{{language}}.yml +4 -4
  108. package/dist/templates/nextjs-styleguide/package.json +14 -14
  109. package/dist/templates/nextjs-styleguide/sitecore/definitions/components/graphql/GraphQL-IntegratedDemo.sitecore.graphql +71 -71
  110. package/dist/templates/nextjs-styleguide/sitecore/gitignore +3 -3
  111. package/dist/templates/nextjs-styleguide/src/components/graphql/GraphQL-ConnectedDemo.dynamic.graphql +69 -69
  112. package/dist/templates/nextjs-styleguide-tracking/data/dictionary/en.yml +5 -5
  113. package/dist/templates/nextjs-styleguide-tracking/data/routes/tracking/en.yml +8 -8
  114. package/dist/templates/nextjs-sxa/package.json +11 -11
  115. package/dist/templates/nextjs-sxa/src/assets/basic/_component.scss +48 -48
  116. package/dist/templates/nextjs-sxa/src/assets/basic/_container.scss +64 -64
  117. package/dist/templates/nextjs-sxa/src/assets/basic/_fonts.scss +3 -3
  118. package/dist/templates/nextjs-sxa/src/assets/basic/_footer.scss +31 -31
  119. package/dist/templates/nextjs-sxa/src/assets/basic/_header.scss +49 -49
  120. package/dist/templates/nextjs-sxa/src/assets/basic/_navigation.scss +150 -150
  121. package/dist/templates/nextjs-sxa/src/assets/basic/_promo.scss +58 -58
  122. package/dist/templates/nextjs-sxa/src/assets/basic/_rich-text.scss +11 -11
  123. package/dist/templates/nextjs-sxa/src/assets/basic/_variables.scss +9 -9
  124. package/dist/templates/nextjs-sxa/src/assets/basic/main.scss +8 -8
  125. package/dist/templates/nextjs-sxa/src/assets/main.scss +4 -4
  126. package/dist/templates/nextjs-sxa/src/assets/sass/_app.scss +103 -103
  127. package/dist/templates/nextjs-sxa/src/assets/sass/abstracts/_functions.scss +8 -8
  128. package/dist/templates/nextjs-sxa/src/assets/sass/abstracts/_mixins.scss +121 -121
  129. package/dist/templates/nextjs-sxa/src/assets/sass/abstracts/_vars.scss +3 -3
  130. package/dist/templates/nextjs-sxa/src/assets/sass/abstracts/vars/_colors.scss +283 -283
  131. package/dist/templates/nextjs-sxa/src/assets/sass/abstracts/vars/_fontSizes.scss +16 -16
  132. package/dist/templates/nextjs-sxa/src/assets/sass/abstracts/vars/_margins.scss +10 -10
  133. package/dist/templates/nextjs-sxa/src/assets/sass/base/fonts/_fonts.scss +1 -1
  134. package/dist/templates/nextjs-sxa/src/assets/sass/base/fonts/index.scss +1 -1
  135. package/dist/templates/nextjs-sxa/src/assets/sass/base/index.scss +3 -3
  136. package/dist/templates/nextjs-sxa/src/assets/sass/base/links/_link-button.scss +26 -26
  137. package/dist/templates/nextjs-sxa/src/assets/sass/base/links/index.scss +1 -1
  138. package/dist/templates/nextjs-sxa/src/assets/sass/base/reset/_inputs.scss +58 -58
  139. package/dist/templates/nextjs-sxa/src/assets/sass/base/reset/_links.scss +14 -14
  140. package/dist/templates/nextjs-sxa/src/assets/sass/base/reset/_ui-datepicker.scss +7 -7
  141. package/dist/templates/nextjs-sxa/src/assets/sass/base/richtext/_richtext-files-icons.scss +86 -86
  142. package/dist/templates/nextjs-sxa/src/assets/sass/base/richtext/_richtext.scss +101 -101
  143. package/dist/templates/nextjs-sxa/src/assets/sass/base/richtext/index.scss +2 -2
  144. package/dist/templates/nextjs-sxa/src/assets/sass/base/typehead/_typehead.scss +95 -95
  145. package/dist/templates/nextjs-sxa/src/assets/sass/base/typehead/index.scss +1 -1
  146. package/dist/templates/nextjs-sxa/src/assets/sass/components/_component-column-splitter.scss +14 -14
  147. package/dist/templates/nextjs-sxa/src/assets/sass/components/_component-container.scss +27 -27
  148. package/dist/templates/nextjs-sxa/src/assets/sass/components/_component-image.scss +18 -18
  149. package/dist/templates/nextjs-sxa/src/assets/sass/components/_component-navigation.scss +51 -51
  150. package/dist/templates/nextjs-sxa/src/assets/sass/components/_component-promo.scss +42 -42
  151. package/dist/templates/nextjs-sxa/src/assets/sass/components/_component-richtext-content.scss +19 -19
  152. package/dist/templates/nextjs-sxa/src/assets/sass/components/common/_alignment.scss +25 -25
  153. package/dist/templates/nextjs-sxa/src/assets/sass/components/common/_boxed.scss +16 -16
  154. package/dist/templates/nextjs-sxa/src/assets/sass/components/common/_clearfix.scss +11 -11
  155. package/dist/templates/nextjs-sxa/src/assets/sass/components/common/_highlighted.scss +62 -62
  156. package/dist/templates/nextjs-sxa/src/assets/sass/components/common/_link-button.scss +16 -16
  157. package/dist/templates/nextjs-sxa/src/assets/sass/components/common/_promoted-box.scss +3 -3
  158. package/dist/templates/nextjs-sxa/src/assets/sass/components/common/index.scss +5 -5
  159. package/dist/templates/nextjs-sxa/src/assets/sass/components/container/_bordered.scss +23 -23
  160. package/dist/templates/nextjs-sxa/src/assets/sass/components/container/_title-row-box.scss +66 -66
  161. package/dist/templates/nextjs-sxa/src/assets/sass/components/container/index.scss +1 -1
  162. package/dist/templates/nextjs-sxa/src/assets/sass/components/image/_image-default-size.scss +6 -6
  163. package/dist/templates/nextjs-sxa/src/assets/sass/components/image/index.scss +1 -1
  164. package/dist/templates/nextjs-sxa/src/assets/sass/components/image-alignment/_image-left.scss +3 -3
  165. package/dist/templates/nextjs-sxa/src/assets/sass/components/image-alignment/_image-right.scss +3 -3
  166. package/dist/templates/nextjs-sxa/src/assets/sass/components/index.scss +17 -17
  167. package/dist/templates/nextjs-sxa/src/assets/sass/components/layout/_acaindent.scss +5 -5
  168. package/dist/templates/nextjs-sxa/src/assets/sass/components/layout/_background.scss +27 -27
  169. package/dist/templates/nextjs-sxa/src/assets/sass/components/layout/index.scss +1 -1
  170. package/dist/templates/nextjs-sxa/src/assets/sass/components/link-list/_component-link-list.scss +45 -45
  171. package/dist/templates/nextjs-sxa/src/assets/sass/components/link-list/_list-vertical.scss +20 -20
  172. package/dist/templates/nextjs-sxa/src/assets/sass/components/link-list/index.scss +2 -2
  173. package/dist/templates/nextjs-sxa/src/assets/sass/components/navigation/_navigation-fat.scss +58 -58
  174. package/dist/templates/nextjs-sxa/src/assets/sass/components/navigation/_navigation-main-horizontal-vertical.scss +176 -176
  175. package/dist/templates/nextjs-sxa/src/assets/sass/components/navigation/_navigation-mobile.scss +85 -85
  176. package/dist/templates/nextjs-sxa/src/assets/sass/components/navigation/_navigation-sidebar.scss +29 -29
  177. package/dist/templates/nextjs-sxa/src/assets/sass/components/navigation/_sitemap-navigation.scss +20 -20
  178. package/dist/templates/nextjs-sxa/src/assets/sass/components/navigation/index.scss +5 -5
  179. package/dist/templates/nextjs-sxa/src/assets/sass/components/promo/_absolute-bottom-link.scss +8 -8
  180. package/dist/templates/nextjs-sxa/src/assets/sass/components/promo/_promo-hero.scss +40 -40
  181. package/dist/templates/nextjs-sxa/src/assets/sass/components/promo/_promo-shadow.scss +42 -42
  182. package/dist/templates/nextjs-sxa/src/assets/sass/components/promo/index.scss +3 -3
  183. package/dist/templates/nextjs-sxa/src/assets/sass/components/rich-text/_rich-text-lists.scss +63 -63
  184. package/dist/templates/nextjs-sxa/src/assets/sass/components/rich-text/index.scss +1 -1
  185. package/dist/templates/nextjs-sxa/src/assets/sass/components/spacing/_background-colors.scss +14 -14
  186. package/dist/templates/nextjs-sxa/src/assets/sass/components/spacing/_indent.scss +13 -13
  187. package/dist/templates/nextjs-sxa/src/assets/sass/components/spacing/index.scss +2 -2
  188. package/dist/templates/nextjs-sxa/src/assets/sass/components/title/_component-title.scss +30 -30
  189. package/dist/templates/nextjs-sxa/src/assets/sass/components/title/index.scss +1 -1
  190. package/dist/templates/nextjs-sxa/src/assets/sass/main.scss +4 -4
  191. package/dist/templates/nextjs-sxa/src/assets/sass/variants/index.scss +5 -5
  192. package/dist/templates/nextjs-xmcloud/.env +19 -19
  193. package/dist/templates/nextjs-xmcloud/package.json +8 -8
  194. package/dist/templates/node-headless-ssr-experience-edge/README.md +56 -56
  195. package/dist/templates/node-headless-ssr-experience-edge/package.json +34 -34
  196. package/dist/templates/node-headless-ssr-experience-edge/tsconfig.json +22 -22
  197. package/dist/templates/node-headless-ssr-proxy/.vscode/launch.json +47 -47
  198. package/dist/templates/node-headless-ssr-proxy/LICENSE.txt +202 -202
  199. package/dist/templates/node-headless-ssr-proxy/README.md +65 -65
  200. package/dist/templates/node-headless-ssr-proxy/package.json +39 -39
  201. package/dist/templates/node-headless-ssr-proxy/src/error.html +200 -200
  202. package/dist/templates/node-headless-ssr-proxy/tsconfig.json +22 -22
  203. package/dist/templates/react/.prettierrc +9 -9
  204. package/dist/templates/react/LICENSE.txt +202 -202
  205. package/dist/templates/react/README.md +2402 -2402
  206. package/dist/templates/react/data/component-content/Styleguide/ContentReuse/LoremIpsumContentBlock/en.yml +9 -9
  207. package/dist/templates/react/data/content/Styleguide/ContentListField/Item1/en.yml +6 -6
  208. package/dist/templates/react/data/content/Styleguide/ContentListField/Item2/en.yml +6 -6
  209. package/dist/templates/react/data/content/Styleguide/EditFrameDemo/Item1/en.yml +6 -6
  210. package/dist/templates/react/data/content/Styleguide/EditFrameDemo/Item2/en.yml +6 -6
  211. package/dist/templates/react/data/content/Styleguide/ItemLinkField/Item1/en.yml +6 -6
  212. package/dist/templates/react/data/content/Styleguide/ItemLinkField/Item2/en.yml +6 -6
  213. package/dist/templates/react/data/dictionary/en.yml +4 -4
  214. package/dist/templates/react/data/dictionary/{{language}}.yml +4 -4
  215. package/dist/templates/react/data/routes/en.yml +61 -61
  216. package/dist/templates/react/data/routes/graphql/en.yml +27 -27
  217. package/dist/templates/react/data/routes/graphql/sample-1/en.yml +9 -9
  218. package/dist/templates/react/data/routes/graphql/sample-2/en.yml +9 -9
  219. package/dist/templates/react/data/routes/styleguide/custom-route-type/en.yml +12 -12
  220. package/dist/templates/react/data/routes/styleguide/en.yml +263 -263
  221. package/dist/templates/react/data/routes/styleguide/{{language}}.yml +26 -26
  222. package/dist/templates/react/data/routes/{{language}}.yml +4 -4
  223. package/dist/templates/react/gitignore +25 -25
  224. package/dist/templates/react/package.json +5 -5
  225. package/dist/templates/react/public/index.html +35 -35
  226. package/dist/templates/react/sitecore/config/{{appName}}.config +90 -90
  227. package/dist/templates/react/sitecore/definitions/components/graphql/GraphQL-IntegratedDemo.sitecore.graphql +71 -71
  228. package/dist/templates/react/sitecore/gitignore +2 -2
  229. package/dist/templates/react/src/assets/sc_logo.svg +52 -52
  230. package/dist/templates/react/src/components/graphql/query.graphql +69 -69
  231. package/dist/templates/react/src/temp/GraphQLFragmentTypes.json +207 -207
  232. package/dist/templates/react/src/temp/gitignore +3 -3
  233. package/dist/templates/react-native/.buckconfig +6 -6
  234. package/dist/templates/react-native/.eslintrc +74 -74
  235. package/dist/templates/react-native/.gitattributes +1 -1
  236. package/dist/templates/react-native/.prettierrc +9 -9
  237. package/dist/templates/react-native/.vscode/launch.json +42 -42
  238. package/dist/templates/react-native/.vscode/settings.json +1 -1
  239. package/dist/templates/react-native/LICENSE.txt +202 -202
  240. package/dist/templates/react-native/README.MD +115 -115
  241. package/dist/templates/react-native/android/app/BUCK +55 -55
  242. package/dist/templates/react-native/android/app/build.gradle +201 -201
  243. package/dist/templates/react-native/android/app/build_defs.bzl +19 -19
  244. package/dist/templates/react-native/android/app/proguard-rules.pro +10 -10
  245. package/dist/templates/react-native/android/app/src/debug/AndroidManifest.xml +8 -8
  246. package/dist/templates/react-native/android/app/src/main/AndroidManifest.xml +26 -26
  247. package/dist/templates/react-native/android/app/src/main/java/com/{{appName}}/MainActivity.java +15 -15
  248. package/dist/templates/react-native/android/app/src/main/java/com/{{appName}}/MainApplication.java +74 -74
  249. package/dist/templates/react-native/android/app/src/main/res/values/strings.xml +3 -3
  250. package/dist/templates/react-native/android/app/src/main/res/values/styles.xml +9 -9
  251. package/dist/templates/react-native/android/build.gradle +38 -38
  252. package/dist/templates/react-native/android/gradle/wrapper/gradle-wrapper.properties +5 -5
  253. package/dist/templates/react-native/android/gradle.properties +21 -21
  254. package/dist/templates/react-native/android/gradlew +188 -188
  255. package/dist/templates/react-native/android/gradlew.bat +100 -100
  256. package/dist/templates/react-native/android/settings.gradle +3 -3
  257. package/dist/templates/react-native/app.json +3 -3
  258. package/dist/templates/react-native/assets/img/sc_logo.svg +52 -52
  259. package/dist/templates/react-native/data/content/Styleguide/ItemLinkField/Item1/en.json +10 -10
  260. package/dist/templates/react-native/data/routes/en.json +22 -22
  261. package/dist/templates/react-native/data/routes/styleguide/en.json +227 -227
  262. package/dist/templates/react-native/data/routes/styleguide/{{language}}.json +31 -31
  263. package/dist/templates/react-native/data/routes/{{language}}.json +7 -7
  264. package/dist/templates/react-native/gitignore +60 -60
  265. package/dist/templates/react-native/ios/Podfile +53 -53
  266. package/dist/templates/react-native/ios/{{appName}}/AppDelegate.h +15 -15
  267. package/dist/templates/react-native/ios/{{appName}}/AppDelegate.m +42 -42
  268. package/dist/templates/react-native/ios/{{appName}}/Base.lproj/LaunchScreen.xib +42 -42
  269. package/dist/templates/react-native/ios/{{appName}}/Images.xcassets/AppIcon.appiconset/Contents.json +38 -38
  270. package/dist/templates/react-native/ios/{{appName}}/Images.xcassets/Contents.json +6 -6
  271. package/dist/templates/react-native/ios/{{appName}}/Info.plist +57 -57
  272. package/dist/templates/react-native/ios/{{appName}}/main.m +16 -16
  273. package/dist/templates/react-native/ios/{{appName}}-tvOS/Info.plist +53 -53
  274. package/dist/templates/react-native/ios/{{appName}}-tvOSTests/Info.plist +24 -24
  275. package/dist/templates/react-native/ios/{{appName}}.xcodeproj/xcshareddata/xcschemes/BasicSampleReactNative-tvOS.xcscheme +129 -129
  276. package/dist/templates/react-native/ios/{{appName}}.xcodeproj/xcshareddata/xcschemes/BasicSampleReactNative.xcscheme +129 -129
  277. package/dist/templates/react-native/ios/{{appName}}Tests/BasicSampleReactNativeTests.m +72 -72
  278. package/dist/templates/react-native/ios/{{appName}}Tests/Info.plist +24 -24
  279. package/dist/templates/react-native/package.json +78 -78
  280. package/dist/templates/react-native/sitecore/config/{{appName}}.config +47 -47
  281. package/dist/templates/react-native/sitecore/gitignore +2 -2
  282. package/dist/templates/vue/.browserslistrc +2 -2
  283. package/dist/templates/vue/.prettierrc +9 -9
  284. package/dist/templates/vue/LICENSE.txt +202 -202
  285. package/dist/templates/vue/README.md +36 -36
  286. package/dist/templates/vue/data/component-content/Styleguide/ContentReuse/LoremIpsumContentBlock/en.yml +9 -9
  287. package/dist/templates/vue/data/content/Styleguide/ContentListField/Item1/en.yml +6 -6
  288. package/dist/templates/vue/data/content/Styleguide/ContentListField/Item2/en.yml +6 -6
  289. package/dist/templates/vue/data/content/Styleguide/EditFrameDemo/Item1/en.yml +6 -6
  290. package/dist/templates/vue/data/content/Styleguide/EditFrameDemo/Item2/en.yml +6 -6
  291. package/dist/templates/vue/data/content/Styleguide/ItemLinkField/Item1/en.yml +6 -6
  292. package/dist/templates/vue/data/content/Styleguide/ItemLinkField/Item2/en.yml +6 -6
  293. package/dist/templates/vue/data/dictionary/en.yml +7 -7
  294. package/dist/templates/vue/data/dictionary/{{language}}.yml +7 -7
  295. package/dist/templates/vue/data/routes/en.yml +63 -63
  296. package/dist/templates/vue/data/routes/graphql/en.yml +34 -34
  297. package/dist/templates/vue/data/routes/graphql/sample-1/en.yml +9 -9
  298. package/dist/templates/vue/data/routes/graphql/sample-2/en.yml +9 -9
  299. package/dist/templates/vue/data/routes/styleguide/custom-route-type/en.yml +12 -12
  300. package/dist/templates/vue/data/routes/styleguide/en.yml +264 -264
  301. package/dist/templates/vue/data/routes/styleguide/{{language}}.yml +26 -26
  302. package/dist/templates/vue/data/routes/{{language}}.yml +4 -4
  303. package/dist/templates/vue/gitignore +25 -25
  304. package/dist/templates/vue/package.json +90 -90
  305. package/dist/templates/vue/public/img/icons/safari-pinned-tab.svg +75 -75
  306. package/dist/templates/vue/public/index.html +27 -27
  307. package/dist/templates/vue/public/manifest.json +14 -14
  308. package/dist/templates/vue/public/robots.txt +2 -2
  309. package/dist/templates/vue/sitecore/config/{{appName}}.config +89 -89
  310. package/dist/templates/vue/sitecore/definitions/components/GraphQL-IntegratedDemo.sitecore.graphql +71 -71
  311. package/dist/templates/vue/sitecore/gitignore +4 -4
  312. package/dist/templates/vue/src/assets/app.css +30 -30
  313. package/dist/templates/vue/src/assets/sc_logo.svg +52 -52
  314. package/dist/templates/vue/src/components/GraphQL/GraphQL-ConnectedDemo.query.graphql +69 -69
  315. package/dist/templates/vue/src/temp/GraphQLFragmentTypes.json +273 -273
  316. package/dist/templates/vue/src/temp/gitignore +3 -3
  317. package/package.json +2 -2
@@ -1,17 +1,17 @@
1
- <app-navigation></app-navigation>
2
- <div class="container">
3
- <ng-container *ngIf="state === LayoutState.Layout">
4
- <app-visitor-identification></app-visitor-identification>
5
- <sc-placeholder
6
- name="<%- helper.getAppPrefix(appPrefix, appName) %>jss-main"
7
- [rendering]="route"
8
- (loaded)="onPlaceholderLoaded($event)"
9
- ></sc-placeholder>
10
- </ng-container>
11
-
12
- <app-not-found
13
- *ngIf="state === LayoutState.NotFound"
14
- [errorContextData]="errorContextData"
15
- ></app-not-found>
16
- <app-server-error *ngIf="state === LayoutState.Error"></app-server-error>
17
- </div>
1
+ <app-navigation></app-navigation>
2
+ <div class="container">
3
+ <ng-container *ngIf="state === LayoutState.Layout">
4
+ <app-visitor-identification></app-visitor-identification>
5
+ <sc-placeholder
6
+ name="<%- helper.getAppPrefix(appPrefix, appName) %>jss-main"
7
+ [rendering]="route"
8
+ (loaded)="onPlaceholderLoaded($event)"
9
+ ></sc-placeholder>
10
+ </ng-container>
11
+
12
+ <app-not-found
13
+ *ngIf="state === LayoutState.NotFound"
14
+ [errorContextData]="errorContextData"
15
+ ></app-not-found>
16
+ <app-server-error *ngIf="state === LayoutState.Error"></app-server-error>
17
+ </div>
@@ -1,21 +1,21 @@
1
- <div class="d-flex flex-column flex-md-row align-items-center p-3 px-md-4 mb-3 bg-white border-bottom">
2
- <h5 class="my-0 me-md-auto fw-normal">
3
- <a routerLink="/" class="text-dark" class="logo"></a>
4
- </h5>
5
- <nav class="my-2 my-md-0 me-md-3">
6
- <a
7
- class="p-2 text-dark"
8
- href="https://jss.sitecore.com"
9
- target="_blank"
10
- rel="noopener noreferrer"
11
- >
12
- {{ 'Documentation' | translate }}
13
- </a>
14
- <a routerLink="/styleguide" class="p-2 text-dark">
15
- {{ 'Styleguide' | translate }}
16
- </a>
17
- <a routerLink="/graphql" class="p-2 text-dark">
18
- {{ 'GraphQL' | translate }}
19
- </a>
20
- </nav>
21
- </div>
1
+ <div class="d-flex flex-column flex-md-row align-items-center p-3 px-md-4 mb-3 bg-white border-bottom">
2
+ <h5 class="my-0 me-md-auto fw-normal">
3
+ <a routerLink="/" class="text-dark" class="logo"></a>
4
+ </h5>
5
+ <nav class="my-2 my-md-0 me-md-3">
6
+ <a
7
+ class="p-2 text-dark"
8
+ href="https://jss.sitecore.com"
9
+ target="_blank"
10
+ rel="noopener noreferrer"
11
+ >
12
+ {{ 'Documentation' | translate }}
13
+ </a>
14
+ <a routerLink="/styleguide" class="p-2 text-dark">
15
+ {{ 'Styleguide' | translate }}
16
+ </a>
17
+ <a routerLink="/graphql" class="p-2 text-dark">
18
+ {{ 'GraphQL' | translate }}
19
+ </a>
20
+ </nav>
21
+ </div>
@@ -1,7 +1,7 @@
1
- <h1>Not found</h1>
2
- <p>This page does not exist.</p>
3
- <p>
4
- Site: {{errorContextData?.context?.site?.name}}
5
- <br />
6
- Language: {{errorContextData?.context?.language}}
7
- </p>
1
+ <h1>Not found</h1>
2
+ <p>This page does not exist.</p>
3
+ <p>
4
+ Site: {{errorContextData?.context?.site?.name}}
5
+ <br />
6
+ Language: {{errorContextData?.context?.language}}
7
+ </p>
@@ -1,3 +1,3 @@
1
- <p>
2
- 500: Internal Server Error
3
- </p>
1
+ <p>
2
+ 500: Internal Server Error
3
+ </p>
@@ -1,52 +1,52 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 27.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <svg width="221px" height="48px" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
- viewBox="0 0 668 143.7" style="enable-background:new 0 0 668 143.7;" xml:space="preserve">
5
- <style type="text/css">
6
- .st0{fill:#EB1F1F;}
7
- </style>
8
- <path d="M645.5,98.1V85.8h-27.6V73.5h24.7V62h-24.7V50.8H644V38.7h-39.9v59.4C604.1,98.1,645.5,98.1,645.5,98.1z M570.7,60.6
9
- c-0.6,0.9-1.5,1.7-2.5,2.2c-1.1,0.5-2.2,0.8-3.4,1s-2.4,0.3-3.6,0.3h-6.8V50.3h7.7c1.1,0,2.2,0.1,3.3,0.2c1.1,0.2,2.1,0.5,3.1,1
10
- c0.9,0.5,1.7,1.2,2.3,2c0.6,1,0.9,2.2,0.9,3.4C571.7,58.2,571.4,59.5,570.7,60.6 M589,98.1l-15.5-25.4c3.6-1,6.8-3,9.1-5.9
11
- c2.2-2.9,3.4-6.5,3.3-10.2c0.1-2.9-0.6-5.9-1.9-8.5c-1.2-2.2-3-4.1-5.2-5.5s-4.7-2.5-7.3-3c-2.7-0.6-5.5-0.9-8.3-0.9h-22.6v59.4h14
12
- V74.5h4.9l12.9,23.6H589z M508.1,75.6c-0.8,2.1-2,4.1-3.5,5.8c-1.5,1.6-3.4,2.9-5.4,3.8c-4.4,1.9-9.4,1.9-13.8,0
13
- c-2-0.9-3.8-2.2-5.3-3.8c-1.5-1.7-2.7-3.7-3.5-5.8c-1.7-4.7-1.7-9.9,0-14.6c0.7-2.1,1.9-4.1,3.5-5.7c3.2-3.3,7.6-5.2,12.2-5.2
14
- c2.4,0,4.7,0.4,6.9,1.4c2,0.9,3.9,2.2,5.4,3.8c1.5,1.7,2.7,3.6,3.5,5.7c0.9,2.3,1.3,4.7,1.3,7.2C509.4,70.7,509,73.2,508.1,75.6
15
- M522.3,55.3c-1.5-3.7-3.8-7.1-6.8-9.8s-6.5-4.8-10.3-6.2c-8.4-2.9-17.4-2.9-25.8,0c-3.8,1.4-7.2,3.5-10.2,6.2
16
- c-2.9,2.8-5.2,6.1-6.8,9.8c-1.7,4.1-2.5,8.5-2.4,12.9c0,4.4,0.8,8.7,2.4,12.8c1.5,3.8,3.8,7.2,6.8,10c2.9,2.8,6.4,5,10.2,6.4
17
- c8.3,3,17.5,3,25.8,0c3.8-1.4,7.3-3.6,10.3-6.4c2.9-2.8,5.2-6.2,6.8-10c1.7-4.1,2.5-8.5,2.4-12.9C524.8,63.7,523.9,59.4,522.3,55.3
18
- M451.4,89.8l-10-9.4c-1.4,1.8-3.1,3.3-5.1,4.4c-2.3,1.2-4.9,1.7-7.5,1.7c-2.3,0-4.6-0.4-6.8-1.3c-2-0.9-3.8-2.1-5.3-3.7
19
- c-1.5-1.7-2.7-3.6-3.5-5.7c-0.9-2.4-1.3-4.9-1.3-7.4s0.4-4.9,1.3-7.2c0.8-2.1,2-4.1,3.5-5.8c1.5-1.6,3.4-2.9,5.4-3.8
20
- c2.2-0.9,4.5-1.4,6.9-1.4c2.3,0,4.6,0.5,6.7,1.3c2.1,0.9,4,2.3,5.3,4.2l9.7-9.7c-2.7-3-6.1-5.2-9.9-6.5c-8.1-2.9-16.9-2.9-25,0
21
- c-3.8,1.3-7.3,3.4-10.3,6.2c-2.9,2.8-5.3,6.2-6.8,9.9c-1.7,4.1-2.5,8.5-2.5,12.9c-0.1,4.4,0.8,8.7,2.4,12.7
22
- c3.1,7.6,9.2,13.5,16.9,16.4c4.1,1.5,8.4,2.3,12.7,2.3c4.6,0.1,9.1-0.8,13.3-2.6C445.3,95.5,448.6,92.9,451.4,89.8 M383,98.1V85.8
23
- h-27.6V73.5H380V62h-24.6V50.8h26.1V38.7h-39.9v59.4L383,98.1z M325.8,50.9V38.7h-47.9v12.2h16.8V98H309V50.9H325.8z M262.2,38.7
24
- h-14.4v59.4h14.4V38.7z M230.3,44.5c-2.7-2.4-5.8-4.3-9.2-5.4c-3.3-1.2-6.8-1.8-10.3-1.8c-2.8,0-5.6,0.3-8.3,1
25
- c-2.6,0.7-5.1,1.8-7.4,3.4c-2.2,1.5-4,3.5-5.3,5.8c-1.4,2.6-2.1,5.5-2,8.5c-0.2,4.4,1.5,8.6,4.7,11.6c1.4,1.3,3.1,2.4,4.9,3.2
26
- c1.8,0.8,3.7,1.6,5.6,2.2c2,0.6,3.7,1.2,5.2,1.7c1.4,0.4,2.7,1,3.9,1.8c0.9,0.6,1.7,1.3,2.4,2.1c0.6,0.8,0.9,1.8,0.8,2.8
27
- c0,1-0.2,2.1-0.7,3c-0.4,0.8-1,1.5-1.8,2s-1.7,0.9-2.6,1.1c-1,0.2-2.1,0.3-3.1,0.3c-2.5,0-4.9-0.6-7.1-1.8c-2.2-1.1-4.2-2.6-5.7-4.5
28
- l-9.4,9.6c2.8,2.8,6.2,5,9.9,6.3c3.9,1.5,8.1,2.3,12.3,2.3c2.9,0,5.7-0.4,8.5-1.2c2.6-0.7,5.1-2,7.3-3.6c2.1-1.7,3.8-3.8,5-6.2
29
- c1.3-2.7,2-5.8,1.9-8.8c0.1-2.6-0.5-5.2-1.8-7.4c-1.1-1.9-2.6-3.6-4.4-5c-1.8-1.4-3.8-2.4-5.9-3.2c-2.2-0.8-4.3-1.6-6.3-2.2
30
- c-1.4-0.4-2.7-0.9-3.8-1.3c-1-0.4-2-0.8-2.9-1.4c-1.5-0.9-2.5-2.5-2.4-4.3c0-1,0.2-2,0.8-2.9c0.5-0.7,1.2-1.4,2-1.8
31
- c0.8-0.5,1.7-0.8,2.6-1c1-0.2,1.9-0.2,2.9-0.2c4.1,0.1,7.9,2,10.5,5.1L230.3,44.5z"/>
32
- <path class="st0" d="M68.6,104.8c5.6-0.7,11.1-2.4,16-5.2c12.1-6.8,19.1-18.4,19.7-32.7l0.1-1.2h16.8c-1-8.3-4.2-16.2-9.1-23
33
- L94.9,53.6c5.2,7.9,5.9,17.9,1.9,26.4C92.1,90.8,81,100.2,68.6,104.8"/>
34
- <path class="st0" d="M121.4,68.2h-14.6c-1,14.5-8.6,26.7-21,33.6c-7.2,3.9-15.2,6-23.4,5.9c-6.5,0-13-1.2-19.1-3.5
35
- c7.3,4.7,15.9,7.2,24.6,7.2H68c15.7,0,30.1-8.5,37.7-22.3l0.7-1.2l9.8,6.2c3.5-6.9,5.4-14.6,5.4-22.4
36
- C121.5,70.6,121.5,69.4,121.4,68.2"/>
37
- <path class="st0" d="M68,114L68,114c-15.7,0-30.4-7.8-40.9-21.1c11.6,24.8,41.2,35.5,65.9,23.8c9.2-4.3,16.9-11.4,22-20.2l-7.6-4.8
38
- C99.1,105.6,84.2,114.1,68,114"/>
39
- <path class="st0" d="M71.9,124c-28.8,0-52.2-23.4-52.2-52.2s23.4-52.2,52.2-52.2s52.2,23.4,52.2,52.2l0,0l0,0
40
- C124.1,100.6,100.8,124,71.9,124C72,124,72,124,71.9,124L71.9,124L71.9,124 M71.9,0C32.2,0,0,32.1,0,71.8s32.1,71.9,71.8,71.9
41
- s71.9-32.1,71.9-71.8v-0.1C143.7,32.2,111.6,0,71.9,0L71.9,0L71.9,0"/>
42
- <path d="M660.9,44.3v-1.9h1.1c0.3,0,0.6,0.1,0.9,0.2c0.3,0.1,0.4,0.4,0.4,0.7c0,0.4-0.2,0.7-0.5,0.8c-0.3,0.1-0.6,0.2-1,0.2H660.9z
43
- M659.7,48h1.2v-2.8h0.8l1.5,2.8h1.4l-1.8-2.9c0.5-0.1,0.8-0.3,1.1-0.6c0.3-0.3,0.4-0.7,0.4-1.2c0-0.4-0.1-0.7-0.2-0.9
44
- c-0.1-0.2-0.3-0.4-0.6-0.6c-0.2-0.2-0.5-0.3-0.8-0.3c-0.3-0.1-0.6-0.1-0.9-0.1h-2.3V48z M657.5,42.8c0.3-0.6,0.6-1.1,1.1-1.6
45
- c0.4-0.4,1-0.8,1.6-1.1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.3,0.1,1.9,0.4c0.6,0.3,1.1,0.6,1.6,1.1c0.4,0.4,0.8,1,1.1,1.6
46
- c0.3,0.6,0.4,1.2,0.4,1.9c0,0.7-0.1,1.3-0.4,1.9c-0.3,0.6-0.6,1.1-1.1,1.6c-0.4,0.5-1,0.8-1.6,1.1c-0.6,0.3-1.2,0.4-1.9,0.4
47
- c-0.7,0-1.3-0.1-1.9-0.4c-0.6-0.3-1.1-0.6-1.6-1.1c-0.4-0.5-0.8-1-1.1-1.6c-0.3-0.6-0.4-1.2-0.4-1.9C657.1,44,657.2,43.4,657.5,42.8
48
- M656.6,47c0.3,0.7,0.7,1.3,1.3,1.8c0.5,0.5,1.2,0.9,1.9,1.2c0.7,0.3,1.5,0.4,2.3,0.4s1.6-0.1,2.3-0.4c0.7-0.3,1.3-0.7,1.9-1.2
49
- c0.5-0.5,1-1.1,1.3-1.8c0.3-0.7,0.5-1.5,0.5-2.3s-0.2-1.6-0.5-2.3c-0.3-0.7-0.7-1.3-1.3-1.9c-0.5-0.5-1.2-0.9-1.9-1.2
50
- c-0.7-0.3-1.5-0.5-2.3-0.5s-1.6,0.2-2.3,0.5c-0.7,0.3-1.3,0.7-1.9,1.2c-0.5,0.5-1,1.1-1.3,1.9c-0.3,0.7-0.5,1.5-0.5,2.3
51
- S656.3,46.3,656.6,47"/>
52
- </svg>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 27.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg width="221px" height="48px" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 668 143.7" style="enable-background:new 0 0 668 143.7;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#EB1F1F;}
7
+ </style>
8
+ <path d="M645.5,98.1V85.8h-27.6V73.5h24.7V62h-24.7V50.8H644V38.7h-39.9v59.4C604.1,98.1,645.5,98.1,645.5,98.1z M570.7,60.6
9
+ c-0.6,0.9-1.5,1.7-2.5,2.2c-1.1,0.5-2.2,0.8-3.4,1s-2.4,0.3-3.6,0.3h-6.8V50.3h7.7c1.1,0,2.2,0.1,3.3,0.2c1.1,0.2,2.1,0.5,3.1,1
10
+ c0.9,0.5,1.7,1.2,2.3,2c0.6,1,0.9,2.2,0.9,3.4C571.7,58.2,571.4,59.5,570.7,60.6 M589,98.1l-15.5-25.4c3.6-1,6.8-3,9.1-5.9
11
+ c2.2-2.9,3.4-6.5,3.3-10.2c0.1-2.9-0.6-5.9-1.9-8.5c-1.2-2.2-3-4.1-5.2-5.5s-4.7-2.5-7.3-3c-2.7-0.6-5.5-0.9-8.3-0.9h-22.6v59.4h14
12
+ V74.5h4.9l12.9,23.6H589z M508.1,75.6c-0.8,2.1-2,4.1-3.5,5.8c-1.5,1.6-3.4,2.9-5.4,3.8c-4.4,1.9-9.4,1.9-13.8,0
13
+ c-2-0.9-3.8-2.2-5.3-3.8c-1.5-1.7-2.7-3.7-3.5-5.8c-1.7-4.7-1.7-9.9,0-14.6c0.7-2.1,1.9-4.1,3.5-5.7c3.2-3.3,7.6-5.2,12.2-5.2
14
+ c2.4,0,4.7,0.4,6.9,1.4c2,0.9,3.9,2.2,5.4,3.8c1.5,1.7,2.7,3.6,3.5,5.7c0.9,2.3,1.3,4.7,1.3,7.2C509.4,70.7,509,73.2,508.1,75.6
15
+ M522.3,55.3c-1.5-3.7-3.8-7.1-6.8-9.8s-6.5-4.8-10.3-6.2c-8.4-2.9-17.4-2.9-25.8,0c-3.8,1.4-7.2,3.5-10.2,6.2
16
+ c-2.9,2.8-5.2,6.1-6.8,9.8c-1.7,4.1-2.5,8.5-2.4,12.9c0,4.4,0.8,8.7,2.4,12.8c1.5,3.8,3.8,7.2,6.8,10c2.9,2.8,6.4,5,10.2,6.4
17
+ c8.3,3,17.5,3,25.8,0c3.8-1.4,7.3-3.6,10.3-6.4c2.9-2.8,5.2-6.2,6.8-10c1.7-4.1,2.5-8.5,2.4-12.9C524.8,63.7,523.9,59.4,522.3,55.3
18
+ M451.4,89.8l-10-9.4c-1.4,1.8-3.1,3.3-5.1,4.4c-2.3,1.2-4.9,1.7-7.5,1.7c-2.3,0-4.6-0.4-6.8-1.3c-2-0.9-3.8-2.1-5.3-3.7
19
+ c-1.5-1.7-2.7-3.6-3.5-5.7c-0.9-2.4-1.3-4.9-1.3-7.4s0.4-4.9,1.3-7.2c0.8-2.1,2-4.1,3.5-5.8c1.5-1.6,3.4-2.9,5.4-3.8
20
+ c2.2-0.9,4.5-1.4,6.9-1.4c2.3,0,4.6,0.5,6.7,1.3c2.1,0.9,4,2.3,5.3,4.2l9.7-9.7c-2.7-3-6.1-5.2-9.9-6.5c-8.1-2.9-16.9-2.9-25,0
21
+ c-3.8,1.3-7.3,3.4-10.3,6.2c-2.9,2.8-5.3,6.2-6.8,9.9c-1.7,4.1-2.5,8.5-2.5,12.9c-0.1,4.4,0.8,8.7,2.4,12.7
22
+ c3.1,7.6,9.2,13.5,16.9,16.4c4.1,1.5,8.4,2.3,12.7,2.3c4.6,0.1,9.1-0.8,13.3-2.6C445.3,95.5,448.6,92.9,451.4,89.8 M383,98.1V85.8
23
+ h-27.6V73.5H380V62h-24.6V50.8h26.1V38.7h-39.9v59.4L383,98.1z M325.8,50.9V38.7h-47.9v12.2h16.8V98H309V50.9H325.8z M262.2,38.7
24
+ h-14.4v59.4h14.4V38.7z M230.3,44.5c-2.7-2.4-5.8-4.3-9.2-5.4c-3.3-1.2-6.8-1.8-10.3-1.8c-2.8,0-5.6,0.3-8.3,1
25
+ c-2.6,0.7-5.1,1.8-7.4,3.4c-2.2,1.5-4,3.5-5.3,5.8c-1.4,2.6-2.1,5.5-2,8.5c-0.2,4.4,1.5,8.6,4.7,11.6c1.4,1.3,3.1,2.4,4.9,3.2
26
+ c1.8,0.8,3.7,1.6,5.6,2.2c2,0.6,3.7,1.2,5.2,1.7c1.4,0.4,2.7,1,3.9,1.8c0.9,0.6,1.7,1.3,2.4,2.1c0.6,0.8,0.9,1.8,0.8,2.8
27
+ c0,1-0.2,2.1-0.7,3c-0.4,0.8-1,1.5-1.8,2s-1.7,0.9-2.6,1.1c-1,0.2-2.1,0.3-3.1,0.3c-2.5,0-4.9-0.6-7.1-1.8c-2.2-1.1-4.2-2.6-5.7-4.5
28
+ l-9.4,9.6c2.8,2.8,6.2,5,9.9,6.3c3.9,1.5,8.1,2.3,12.3,2.3c2.9,0,5.7-0.4,8.5-1.2c2.6-0.7,5.1-2,7.3-3.6c2.1-1.7,3.8-3.8,5-6.2
29
+ c1.3-2.7,2-5.8,1.9-8.8c0.1-2.6-0.5-5.2-1.8-7.4c-1.1-1.9-2.6-3.6-4.4-5c-1.8-1.4-3.8-2.4-5.9-3.2c-2.2-0.8-4.3-1.6-6.3-2.2
30
+ c-1.4-0.4-2.7-0.9-3.8-1.3c-1-0.4-2-0.8-2.9-1.4c-1.5-0.9-2.5-2.5-2.4-4.3c0-1,0.2-2,0.8-2.9c0.5-0.7,1.2-1.4,2-1.8
31
+ c0.8-0.5,1.7-0.8,2.6-1c1-0.2,1.9-0.2,2.9-0.2c4.1,0.1,7.9,2,10.5,5.1L230.3,44.5z"/>
32
+ <path class="st0" d="M68.6,104.8c5.6-0.7,11.1-2.4,16-5.2c12.1-6.8,19.1-18.4,19.7-32.7l0.1-1.2h16.8c-1-8.3-4.2-16.2-9.1-23
33
+ L94.9,53.6c5.2,7.9,5.9,17.9,1.9,26.4C92.1,90.8,81,100.2,68.6,104.8"/>
34
+ <path class="st0" d="M121.4,68.2h-14.6c-1,14.5-8.6,26.7-21,33.6c-7.2,3.9-15.2,6-23.4,5.9c-6.5,0-13-1.2-19.1-3.5
35
+ c7.3,4.7,15.9,7.2,24.6,7.2H68c15.7,0,30.1-8.5,37.7-22.3l0.7-1.2l9.8,6.2c3.5-6.9,5.4-14.6,5.4-22.4
36
+ C121.5,70.6,121.5,69.4,121.4,68.2"/>
37
+ <path class="st0" d="M68,114L68,114c-15.7,0-30.4-7.8-40.9-21.1c11.6,24.8,41.2,35.5,65.9,23.8c9.2-4.3,16.9-11.4,22-20.2l-7.6-4.8
38
+ C99.1,105.6,84.2,114.1,68,114"/>
39
+ <path class="st0" d="M71.9,124c-28.8,0-52.2-23.4-52.2-52.2s23.4-52.2,52.2-52.2s52.2,23.4,52.2,52.2l0,0l0,0
40
+ C124.1,100.6,100.8,124,71.9,124C72,124,72,124,71.9,124L71.9,124L71.9,124 M71.9,0C32.2,0,0,32.1,0,71.8s32.1,71.9,71.8,71.9
41
+ s71.9-32.1,71.9-71.8v-0.1C143.7,32.2,111.6,0,71.9,0L71.9,0L71.9,0"/>
42
+ <path d="M660.9,44.3v-1.9h1.1c0.3,0,0.6,0.1,0.9,0.2c0.3,0.1,0.4,0.4,0.4,0.7c0,0.4-0.2,0.7-0.5,0.8c-0.3,0.1-0.6,0.2-1,0.2H660.9z
43
+ M659.7,48h1.2v-2.8h0.8l1.5,2.8h1.4l-1.8-2.9c0.5-0.1,0.8-0.3,1.1-0.6c0.3-0.3,0.4-0.7,0.4-1.2c0-0.4-0.1-0.7-0.2-0.9
44
+ c-0.1-0.2-0.3-0.4-0.6-0.6c-0.2-0.2-0.5-0.3-0.8-0.3c-0.3-0.1-0.6-0.1-0.9-0.1h-2.3V48z M657.5,42.8c0.3-0.6,0.6-1.1,1.1-1.6
45
+ c0.4-0.4,1-0.8,1.6-1.1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.3,0.1,1.9,0.4c0.6,0.3,1.1,0.6,1.6,1.1c0.4,0.4,0.8,1,1.1,1.6
46
+ c0.3,0.6,0.4,1.2,0.4,1.9c0,0.7-0.1,1.3-0.4,1.9c-0.3,0.6-0.6,1.1-1.1,1.6c-0.4,0.5-1,0.8-1.6,1.1c-0.6,0.3-1.2,0.4-1.9,0.4
47
+ c-0.7,0-1.3-0.1-1.9-0.4c-0.6-0.3-1.1-0.6-1.6-1.1c-0.4-0.5-0.8-1-1.1-1.6c-0.3-0.6-0.4-1.2-0.4-1.9C657.1,44,657.2,43.4,657.5,42.8
48
+ M656.6,47c0.3,0.7,0.7,1.3,1.3,1.8c0.5,0.5,1.2,0.9,1.9,1.2c0.7,0.3,1.5,0.4,2.3,0.4s1.6-0.1,2.3-0.4c0.7-0.3,1.3-0.7,1.9-1.2
49
+ c0.5-0.5,1-1.1,1.3-1.8c0.3-0.7,0.5-1.5,0.5-2.3s-0.2-1.6-0.5-2.3c-0.3-0.7-0.7-1.3-1.3-1.9c-0.5-0.5-1.2-0.9-1.9-1.2
50
+ c-0.7-0.3-1.5-0.5-2.3-0.5s-1.6,0.2-2.3,0.5c-0.7,0.3-1.3,0.7-1.9,1.2c-0.5,0.5-1,1.1-1.3,1.9c-0.3,0.7-0.5,1.5-0.5,2.3
51
+ S656.3,46.3,656.6,47"/>
52
+ </svg>
@@ -1,12 +1,12 @@
1
- <!doctype html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="utf-8">
5
- <base href="/">
6
- <title>JSS Angular</title>
7
- <meta name="viewport" content="width=device-width, initial-scale=1">
8
- </head>
9
- <body>
10
- <app-root></app-root>
11
- </body>
12
- </html>
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <base href="/">
6
+ <title>JSS Angular</title>
7
+ <meta name="viewport" content="width=device-width, initial-scale=1">
8
+ </head>
9
+ <body>
10
+ <app-root></app-root>
11
+ </body>
12
+ </html>
@@ -1,34 +1,34 @@
1
- a[target='_blank']:after {
2
- content: '\1F5D7'
3
- }
4
-
5
- .logo {
6
- background-image: url('assets/images/sc_logo.svg');
7
- display: block;
8
- height: 48px;
9
- width: 221px;
10
- }
11
-
12
- /*
13
- Hides Sitecore Experience Editor markup,
14
- if you run the app in connected mode while the Sitecore cookies
15
- are set to edit mode.
16
- */
17
- .scChromeData, .scpm { display: none !important; }
18
-
19
- /*
20
- Style for default content block
21
- */
22
- .contentTitle {
23
- font-size: 3.5rem;
24
- font-weight: 300;
25
- line-height: 1.2;
26
- }
27
-
28
- a {
29
- text-decoration: none;
30
- }
31
-
32
- a:hover {
33
- text-decoration: underline;
34
- }
1
+ a[target='_blank']:after {
2
+ content: '\1F5D7'
3
+ }
4
+
5
+ .logo {
6
+ background-image: url('assets/images/sc_logo.svg');
7
+ display: block;
8
+ height: 48px;
9
+ width: 221px;
10
+ }
11
+
12
+ /*
13
+ Hides Sitecore Experience Editor markup,
14
+ if you run the app in connected mode while the Sitecore cookies
15
+ are set to edit mode.
16
+ */
17
+ .scChromeData, .scpm { display: none !important; }
18
+
19
+ /*
20
+ Style for default content block
21
+ */
22
+ .contentTitle {
23
+ font-size: 3.5rem;
24
+ font-weight: 300;
25
+ line-height: 1.2;
26
+ }
27
+
28
+ a {
29
+ text-decoration: none;
30
+ }
31
+
32
+ a:hover {
33
+ text-decoration: underline;
34
+ }
@@ -1,22 +1,22 @@
1
- {
2
- "extends": "../tsconfig.json",
3
- "compilerOptions": {
4
- "outDir": "../out-tsc/app",
5
- "baseUrl": "./",
6
- "newLine": "LF",
7
- "types": []
8
- },
9
- "lib": [
10
- "esnext.asynciterable"
11
- ],
12
- "exclude": [
13
- "test.ts",
14
- "**/*.spec.ts",
15
- "**/*.sitecore.ts",
16
- "./app/jss-context.server-side.service.ts",
17
- "./app/i18n/jss-translation-server-loader.service.ts",
18
- "./app/app.server.module.ts",
19
- "./main.server.ts",
20
- "./environments/environment.prod.js"
21
- ],
22
- }
1
+ {
2
+ "extends": "../tsconfig.json",
3
+ "compilerOptions": {
4
+ "outDir": "../out-tsc/app",
5
+ "baseUrl": "./",
6
+ "newLine": "LF",
7
+ "types": []
8
+ },
9
+ "lib": [
10
+ "esnext.asynciterable"
11
+ ],
12
+ "exclude": [
13
+ "test.ts",
14
+ "**/*.spec.ts",
15
+ "**/*.sitecore.ts",
16
+ "./app/jss-context.server-side.service.ts",
17
+ "./app/i18n/jss-translation-server-loader.service.ts",
18
+ "./app/app.server.module.ts",
19
+ "./main.server.ts",
20
+ "./environments/environment.prod.js"
21
+ ],
22
+ }
@@ -1,21 +1,21 @@
1
- {
2
- "extends": "../tsconfig.json",
3
- "compilerOptions": {
4
- "outDir": "../out-tsc/app",
5
- "baseUrl": "./",
6
- "target": "ES2022",
7
- "module": "commonjs",
8
- "newLine": "LF",
9
- "types": []
10
- },
11
- "lib": [
12
- "esnext.asynciterable"
13
- ],
14
- "files": [
15
- "main.server.ts",
16
- "../server.bundle.ts"
17
- ],
18
- "angularCompilerOptions": {
19
- "entryModule": "app/app.server.module#AppServerModule"
20
- }
21
- }
1
+ {
2
+ "extends": "../tsconfig.json",
3
+ "compilerOptions": {
4
+ "outDir": "../out-tsc/app",
5
+ "baseUrl": "./",
6
+ "target": "ES2022",
7
+ "module": "commonjs",
8
+ "newLine": "LF",
9
+ "types": []
10
+ },
11
+ "lib": [
12
+ "esnext.asynciterable"
13
+ ],
14
+ "files": [
15
+ "main.server.ts",
16
+ "../server.bundle.ts"
17
+ ],
18
+ "angularCompilerOptions": {
19
+ "entryModule": "app/app.server.module#AppServerModule"
20
+ }
21
+ }
@@ -1,24 +1,24 @@
1
- {
2
- "extends": "../tsconfig.json",
3
- "compilerOptions": {
4
- "outDir": "../out-tsc/spec",
5
- "baseUrl": "./",
6
- "target": "es5",
7
- "newLine": "LF",
8
- "types": [
9
- "jasmine",
10
- "node"
11
- ]
12
- },
13
- "lib": [
14
- "esnext.asynciterable"
15
- ],
16
- "files": [
17
- "test.ts",
18
- "polyfills.ts"
19
- ],
20
- "include": [
21
- "**/*.spec.ts",
22
- "**/*.d.ts"
23
- ]
24
- }
1
+ {
2
+ "extends": "../tsconfig.json",
3
+ "compilerOptions": {
4
+ "outDir": "../out-tsc/spec",
5
+ "baseUrl": "./",
6
+ "target": "es5",
7
+ "newLine": "LF",
8
+ "types": [
9
+ "jasmine",
10
+ "node"
11
+ ]
12
+ },
13
+ "lib": [
14
+ "esnext.asynciterable"
15
+ ],
16
+ "files": [
17
+ "test.ts",
18
+ "polyfills.ts"
19
+ ],
20
+ "include": [
21
+ "**/*.spec.ts",
22
+ "**/*.d.ts"
23
+ ]
24
+ }
@@ -1,6 +1,6 @@
1
- {
2
- "extends": "../tsconfig.json",
3
- "compilerOptions": {
4
- "module": "commonjs"
5
- }
6
- }
1
+ {
2
+ "extends": "../tsconfig.json",
3
+ "compilerOptions": {
4
+ "module": "commonjs"
5
+ }
6
+ }
@@ -1,31 +1,31 @@
1
- {
2
- "compileOnSave": false,
3
- "compilerOptions": {
4
- "importHelpers": true,
5
- "outDir": "./dist/out-tsc",
6
- "sourceMap": true,
7
- "declaration": false,
8
- "moduleResolution": "node",
9
- "emitDecoratorMetadata": true,
10
- "allowSyntheticDefaultImports": true,
11
- "experimentalDecorators": true,
12
- "resolveJsonModule": true,
13
- "skipLibCheck": true,
14
- "allowJs": true,
15
- "target": "es2022",
16
- "module": "es2022",
17
- "noImplicitAny": true,
18
- "noImplicitReturns": true,
19
- "noImplicitThis": true,
20
- "noUnusedLocals": true,
21
- "noUnusedParameters": true,
22
- "newLine": "LF",
23
- "typeRoots": ["node_modules/@types"],
24
- "lib": ["es2018", "dom", "esnext.asynciterable"],
25
- "paths": {
26
- "@angular/*": ["../node_modules/@angular/*"],
27
- "rxjs": ["node_modules/rxjs", "../node_modules/rxjs"]
28
- },
29
- "baseUrl": "./"
30
- }
31
- }
1
+ {
2
+ "compileOnSave": false,
3
+ "compilerOptions": {
4
+ "importHelpers": true,
5
+ "outDir": "./dist/out-tsc",
6
+ "sourceMap": true,
7
+ "declaration": false,
8
+ "moduleResolution": "node",
9
+ "emitDecoratorMetadata": true,
10
+ "allowSyntheticDefaultImports": true,
11
+ "experimentalDecorators": true,
12
+ "resolveJsonModule": true,
13
+ "skipLibCheck": true,
14
+ "allowJs": true,
15
+ "target": "es2022",
16
+ "module": "es2022",
17
+ "noImplicitAny": true,
18
+ "noImplicitReturns": true,
19
+ "noImplicitThis": true,
20
+ "noUnusedLocals": true,
21
+ "noUnusedParameters": true,
22
+ "newLine": "LF",
23
+ "typeRoots": ["node_modules/@types"],
24
+ "lib": ["es2018", "dom", "esnext.asynciterable"],
25
+ "paths": {
26
+ "@angular/*": ["../node_modules/@angular/*"],
27
+ "rxjs": ["node_modules/rxjs", "../node_modules/rxjs"]
28
+ },
29
+ "baseUrl": "./"
30
+ }
31
+ }
@@ -1,26 +1,26 @@
1
- {
2
- "root": true,
3
- "extends": [
4
- "next",
5
- "next/core-web-vitals",
6
- "plugin:@typescript-eslint/recommended",
7
- "prettier",
8
- "plugin:yaml/recommended",
9
- "plugin:prettier/recommended"
10
- ],
11
- "plugins": [
12
- "@typescript-eslint",
13
- "prettier",
14
- "yaml",
15
- "react"
16
- ],
17
- "ignorePatterns": [".generated/**/*", "**/*.d.ts", "**/*.js"],
18
- "rules": {
19
- "@next/next/no-img-element": "off", // Don't force next/image
20
- "jsx-a11y/alt-text": ["warn", { "elements": ["img"] }], // Don't force alt for <Image/> (sourced from Sitecore media)
21
- "no-unused-vars": "off",
22
- "@typescript-eslint/no-unused-vars": "error",
23
- "@typescript-eslint/no-explicit-any": "error",
24
- "jsx-quotes": ["error", "prefer-double"]
25
- }
26
- }
1
+ {
2
+ "root": true,
3
+ "extends": [
4
+ "next",
5
+ "next/core-web-vitals",
6
+ "plugin:@typescript-eslint/recommended",
7
+ "prettier",
8
+ "plugin:yaml/recommended",
9
+ "plugin:prettier/recommended"
10
+ ],
11
+ "plugins": [
12
+ "@typescript-eslint",
13
+ "prettier",
14
+ "yaml",
15
+ "react"
16
+ ],
17
+ "ignorePatterns": [".generated/**/*", "**/*.d.ts", "**/*.js"],
18
+ "rules": {
19
+ "@next/next/no-img-element": "off", // Don't force next/image
20
+ "jsx-a11y/alt-text": ["warn", { "elements": ["img"] }], // Don't force alt for <Image/> (sourced from Sitecore media)
21
+ "no-unused-vars": "off",
22
+ "@typescript-eslint/no-unused-vars": "error",
23
+ "@typescript-eslint/no-explicit-any": "error",
24
+ "jsx-quotes": ["error", "prefer-double"]
25
+ }
26
+ }
@@ -1,11 +1,11 @@
1
- # Line endings for this repository
2
- # See: https://help.github.com/en/articles/configuring-git-to-handle-line-endings
3
- # This should line up with the expectations from .eslintrc
4
-
5
- # Set the default behavior, in case people don't have core.autocrlf set.
6
- * text=crlf
7
-
8
- # Declare files that will always have CRLF line endings on checkout.
9
- *.ts text eol=crlf
10
- *.tsx text eol=crlf
11
- *.js text eol=crlf
1
+ # Line endings for this repository
2
+ # See: https://help.github.com/en/articles/configuring-git-to-handle-line-endings
3
+ # This should line up with the expectations from .eslintrc
4
+
5
+ # Set the default behavior, in case people don't have core.autocrlf set.
6
+ * text=crlf
7
+
8
+ # Declare files that will always have CRLF line endings on checkout.
9
+ *.ts text eol=crlf
10
+ *.tsx text eol=crlf
11
+ *.js text eol=crlf
@@ -1,8 +1,8 @@
1
- schema:
2
- - './src/temp/GraphQLIntrospectionResult.json'
3
- documents: 'src/**/*.graphql'
4
- plugins:
5
- - typescript-operations
6
- - typed-document-node
7
- config:
8
- useIndexSignature: true
1
+ schema:
2
+ - './src/temp/GraphQLIntrospectionResult.json'
3
+ documents: 'src/**/*.graphql'
4
+ plugins:
5
+ - typescript-operations
6
+ - typed-document-node
7
+ config:
8
+ useIndexSignature: true
@@ -1,8 +1,8 @@
1
- {
2
- "endOfLine": "crlf",
3
- "semi": true,
4
- "singleQuote": true,
5
- "tabWidth": 2,
6
- "trailingComma": "es5",
7
- "printWidth": 100
8
- }
1
+ {
2
+ "endOfLine": "crlf",
3
+ "semi": true,
4
+ "singleQuote": true,
5
+ "tabWidth": 2,
6
+ "trailingComma": "es5",
7
+ "printWidth": 100
8
+ }