create-sitecore-jss 21.0.2 → 21.0.4

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 +7 -7
  3. package/dist/templates/angular/.env +33 -33
  4. package/dist/templates/angular/.eslintignore +2 -2
  5. package/dist/templates/angular/.eslintrc +79 -79
  6. package/dist/templates/angular/LICENSE.txt +202 -202
  7. package/dist/templates/angular/README.md +51 -51
  8. package/dist/templates/angular/angular.json +169 -169
  9. package/dist/templates/angular/data/component-content/Styleguide/ContentReuse/LoremIpsumContentBlock/en.yml +9 -9
  10. package/dist/templates/angular/data/content/Styleguide/ContentListField/Item1/en.yml +6 -6
  11. package/dist/templates/angular/data/content/Styleguide/ContentListField/Item2/en.yml +6 -6
  12. package/dist/templates/angular/data/content/Styleguide/ItemLinkField/Item1/en.yml +6 -6
  13. package/dist/templates/angular/data/content/Styleguide/ItemLinkField/Item2/en.yml +6 -6
  14. package/dist/templates/angular/data/dictionary/en.yml +4 -4
  15. package/dist/templates/angular/data/dictionary/{{language}}.yml +4 -4
  16. package/dist/templates/angular/data/routes/en.yml +61 -61
  17. package/dist/templates/angular/data/routes/graphql/en.yml +27 -27
  18. package/dist/templates/angular/data/routes/graphql/sample-1/en.yml +9 -9
  19. package/dist/templates/angular/data/routes/graphql/sample-2/en.yml +9 -9
  20. package/dist/templates/angular/data/routes/styleguide/custom-route-type/en.yml +12 -12
  21. package/dist/templates/angular/data/routes/styleguide/en.yml +253 -253
  22. package/dist/templates/angular/data/routes/styleguide/{{language}}.yml +25 -25
  23. package/dist/templates/angular/data/routes/{{language}}.yml +4 -4
  24. package/dist/templates/angular/e2e/tsconfig.e2e.json +15 -15
  25. package/dist/templates/angular/gitignore +47 -47
  26. package/dist/templates/angular/package.json +131 -131
  27. package/dist/templates/angular/sitecore/config/{{appName}}.config +90 -90
  28. package/dist/templates/angular/sitecore/definitions/components/graph-ql-integrated-demo.sitecore.graphql +71 -71
  29. package/dist/templates/angular/sitecore/gitignore +2 -2
  30. package/dist/templates/angular/src/app/app.component.html +1 -1
  31. package/dist/templates/angular/src/app/components/content-block/content-block.component.html +4 -4
  32. package/dist/templates/angular/src/app/components/gitignore +7 -7
  33. package/dist/templates/angular/src/app/components/graph-ql-connected-demo/graph-ql-connected-demo.component.graphql +69 -69
  34. package/dist/templates/angular/src/app/components/graph-ql-connected-demo/graph-ql-connected-demo.component.html +55 -55
  35. package/dist/templates/angular/src/app/components/graph-ql-integrated-demo/graph-ql-integrated-demo.component.html +47 -47
  36. package/dist/templates/angular/src/app/components/graph-ql-layout/graph-ql-layout.component.html +22 -22
  37. package/dist/templates/angular/src/app/components/styleguide-angular-lazy-loading/styleguide-angular-lazy-loading.component.html +5 -5
  38. package/dist/templates/angular/src/app/components/styleguide-component-params/styleguide-component-params.component.html +19 -19
  39. package/dist/templates/angular/src/app/components/styleguide-custom-route-type/styleguide-custom-route-type.component.html +14 -14
  40. package/dist/templates/angular/src/app/components/styleguide-field-usage-checkbox/styleguide-field-usage-checkbox.component.html +11 -11
  41. package/dist/templates/angular/src/app/components/styleguide-field-usage-content-list/styleguide-field-usage-content-list.component.html +26 -26
  42. package/dist/templates/angular/src/app/components/styleguide-field-usage-custom/styleguide-field-usage-custom.component.html +4 -4
  43. package/dist/templates/angular/src/app/components/styleguide-field-usage-date/styleguide-field-usage-date.component.html +27 -27
  44. package/dist/templates/angular/src/app/components/styleguide-field-usage-file/styleguide-field-usage-file.component.html +10 -10
  45. package/dist/templates/angular/src/app/components/styleguide-field-usage-image/styleguide-field-usage-image.component.html +30 -30
  46. package/dist/templates/angular/src/app/components/styleguide-field-usage-item-link/styleguide-field-usage-item-link.component.html +17 -17
  47. package/dist/templates/angular/src/app/components/styleguide-field-usage-link/styleguide-field-usage-link.component.html +44 -44
  48. package/dist/templates/angular/src/app/components/styleguide-field-usage-number/styleguide-field-usage-number.component.html +11 -11
  49. package/dist/templates/angular/src/app/components/styleguide-field-usage-rich-text/styleguide-field-usage-rich-text.component.html +11 -11
  50. package/dist/templates/angular/src/app/components/styleguide-field-usage-text/styleguide-field-usage-text.component.html +13 -13
  51. package/dist/templates/angular/src/app/components/styleguide-layout/styleguide-layout.component.html +20 -20
  52. package/dist/templates/angular/src/app/components/styleguide-layout-reuse/styleguide-layout-reuse.component.html +52 -52
  53. package/dist/templates/angular/src/app/components/styleguide-layout-tabs/styleguide-layout-tabs.component.html +37 -37
  54. package/dist/templates/angular/src/app/components/styleguide-layout-tabs-tab/styleguide-layout-tabs-tab.component.html +12 -12
  55. package/dist/templates/angular/src/app/components/styleguide-multilingual/styleguide-multilingual.component.html +15 -15
  56. package/dist/templates/angular/src/app/components/styleguide-route-fields/styleguide-route-fields.component.html +8 -8
  57. package/dist/templates/angular/src/app/components/styleguide-section/styleguide-section.component.html +7 -7
  58. package/dist/templates/angular/src/app/components/styleguide-sitecore-context/styleguide-sitecore-context.component.html +3 -3
  59. package/dist/templates/angular/src/app/components/styleguide-tracking/styleguide-tracking.component.html +175 -175
  60. package/dist/templates/angular/src/app/routing/layout/layout.component.html +17 -17
  61. package/dist/templates/angular/src/app/routing/navigation/navigation.component.html +21 -21
  62. package/dist/templates/angular/src/app/routing/not-found/not-found.component.html +7 -7
  63. package/dist/templates/angular/src/app/routing/server-error/server-error.component.html +3 -3
  64. package/dist/templates/angular/src/assets/images/sc_logo.svg +19 -19
  65. package/dist/templates/angular/src/index.html +12 -12
  66. package/dist/templates/angular/src/styles.css +26 -26
  67. package/dist/templates/angular/src/tsconfig.app.json +22 -22
  68. package/dist/templates/angular/src/tsconfig.server.json +21 -21
  69. package/dist/templates/angular/src/tsconfig.spec.json +24 -24
  70. package/dist/templates/angular/src/tsconfig.webpack-server.json +6 -6
  71. package/dist/templates/angular/tsconfig.json +30 -30
  72. package/dist/templates/nextjs/.babelrc +8 -8
  73. package/dist/templates/nextjs/.env +59 -59
  74. package/dist/templates/nextjs/.eslintrc +25 -25
  75. package/dist/templates/nextjs/.gitattributes +11 -11
  76. package/dist/templates/nextjs/.graphql-let.yml +10 -10
  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 +6 -6
  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 +19 -19
  84. package/dist/templates/nextjs/sitecore/config/{{appName}}.config +165 -165
  85. package/dist/templates/nextjs/src/assets/app.css +28 -28
  86. package/dist/templates/nextjs/src/temp/GraphQLIntrospectionResult.json +22215 -22215
  87. package/dist/templates/nextjs/src/temp/gitignore +3 -3
  88. package/dist/templates/nextjs/tsconfig.json +34 -34
  89. package/dist/templates/nextjs/tsconfig.scripts.json +6 -6
  90. package/dist/templates/nextjs-personalize/.env +15 -15
  91. package/dist/templates/nextjs-personalize/package.json +5 -5
  92. package/dist/templates/nextjs-styleguide/data/component-content/Styleguide/ContentReuse/LoremIpsumContentBlock/en.yml +9 -9
  93. package/dist/templates/nextjs-styleguide/data/content/Styleguide/ContentListField/Item1/en.yml +6 -6
  94. package/dist/templates/nextjs-styleguide/data/content/Styleguide/ContentListField/Item2/en.yml +6 -6
  95. package/dist/templates/nextjs-styleguide/data/content/Styleguide/ItemLinkField/Item1/en.yml +6 -6
  96. package/dist/templates/nextjs-styleguide/data/content/Styleguide/ItemLinkField/Item2/en.yml +6 -6
  97. package/dist/templates/nextjs-styleguide/data/dictionary/en.yml +4 -4
  98. package/dist/templates/nextjs-styleguide/data/dictionary/{{language}}.yml +4 -4
  99. package/dist/templates/nextjs-styleguide/data/routes/en.yml +63 -63
  100. package/dist/templates/nextjs-styleguide/data/routes/graphql/en.yml +27 -27
  101. package/dist/templates/nextjs-styleguide/data/routes/graphql/sample-1/en.yml +9 -9
  102. package/dist/templates/nextjs-styleguide/data/routes/graphql/sample-2/en.yml +9 -9
  103. package/dist/templates/nextjs-styleguide/data/routes/styleguide/custom-route-type/en.yml +12 -12
  104. package/dist/templates/nextjs-styleguide/data/routes/styleguide/en.yml +242 -242
  105. package/dist/templates/nextjs-styleguide/data/routes/styleguide/{{language}}.yml +25 -25
  106. package/dist/templates/nextjs-styleguide/data/routes/{{language}}.yml +4 -4
  107. package/dist/templates/nextjs-styleguide/package.json +13 -13
  108. package/dist/templates/nextjs-styleguide/sitecore/definitions/components/graphql/GraphQL-IntegratedDemo.sitecore.graphql +71 -71
  109. package/dist/templates/nextjs-styleguide/sitecore/gitignore +3 -3
  110. package/dist/templates/nextjs-styleguide/src/components/graphql/GraphQL-ConnectedDemo.dynamic.graphql +69 -69
  111. package/dist/templates/nextjs-styleguide-tracking/data/dictionary/en.yml +5 -5
  112. package/dist/templates/nextjs-styleguide-tracking/data/routes/tracking/en.yml +8 -8
  113. package/dist/templates/nextjs-sxa/package.json +10 -10
  114. package/dist/templates/nextjs-sxa/src/assets/basic/_component.scss +18 -18
  115. package/dist/templates/nextjs-sxa/src/assets/basic/_container.scss +80 -80
  116. package/dist/templates/nextjs-sxa/src/assets/basic/_fonts.scss +1 -1
  117. package/dist/templates/nextjs-sxa/src/assets/basic/_footer.scss +31 -31
  118. package/dist/templates/nextjs-sxa/src/assets/basic/_header.scss +50 -50
  119. package/dist/templates/nextjs-sxa/src/assets/basic/_navigation.scss +150 -150
  120. package/dist/templates/nextjs-sxa/src/assets/basic/_promo.scss +58 -58
  121. package/dist/templates/nextjs-sxa/src/assets/basic/_rich-text.scss +11 -11
  122. package/dist/templates/nextjs-sxa/src/assets/basic/_variables.scss +9 -9
  123. package/dist/templates/nextjs-sxa/src/assets/basic/main.scss +8 -8
  124. package/dist/templates/nextjs-sxa/src/assets/main.scss +5 -5
  125. package/dist/templates/nextjs-sxa/src/assets/sass/_app.scss +102 -102
  126. package/dist/templates/nextjs-sxa/src/assets/sass/abstracts/_functions.scss +8 -8
  127. package/dist/templates/nextjs-sxa/src/assets/sass/abstracts/_mixins.scss +121 -121
  128. package/dist/templates/nextjs-sxa/src/assets/sass/abstracts/_vars.scss +3 -3
  129. package/dist/templates/nextjs-sxa/src/assets/sass/abstracts/vars/_colors.scss +283 -283
  130. package/dist/templates/nextjs-sxa/src/assets/sass/abstracts/vars/_fontSizes.scss +16 -16
  131. package/dist/templates/nextjs-sxa/src/assets/sass/abstracts/vars/_margins.scss +10 -10
  132. package/dist/templates/nextjs-sxa/src/assets/sass/base/fonts/_fonts.scss +1 -1
  133. package/dist/templates/nextjs-sxa/src/assets/sass/base/fonts/index.scss +1 -1
  134. package/dist/templates/nextjs-sxa/src/assets/sass/base/index.scss +3 -3
  135. package/dist/templates/nextjs-sxa/src/assets/sass/base/links/_link-button.scss +26 -26
  136. package/dist/templates/nextjs-sxa/src/assets/sass/base/links/index.scss +1 -1
  137. package/dist/templates/nextjs-sxa/src/assets/sass/base/reset/_inputs.scss +58 -58
  138. package/dist/templates/nextjs-sxa/src/assets/sass/base/reset/_links.scss +14 -14
  139. package/dist/templates/nextjs-sxa/src/assets/sass/base/reset/_ui-datepicker.scss +7 -7
  140. package/dist/templates/nextjs-sxa/src/assets/sass/base/richtext/_richtext-files-icons.scss +86 -86
  141. package/dist/templates/nextjs-sxa/src/assets/sass/base/richtext/_richtext.scss +101 -101
  142. package/dist/templates/nextjs-sxa/src/assets/sass/base/richtext/index.scss +2 -2
  143. package/dist/templates/nextjs-sxa/src/assets/sass/base/typehead/_typehead.scss +95 -95
  144. package/dist/templates/nextjs-sxa/src/assets/sass/base/typehead/index.scss +1 -1
  145. package/dist/templates/nextjs-sxa/src/assets/sass/components/_component-column-splitter.scss +14 -14
  146. package/dist/templates/nextjs-sxa/src/assets/sass/components/_component-container.scss +18 -18
  147. package/dist/templates/nextjs-sxa/src/assets/sass/components/_component-image.scss +18 -18
  148. package/dist/templates/nextjs-sxa/src/assets/sass/components/_component-navigation.scss +51 -51
  149. package/dist/templates/nextjs-sxa/src/assets/sass/components/_component-promo.scss +42 -42
  150. package/dist/templates/nextjs-sxa/src/assets/sass/components/_component-richtext-content.scss +19 -19
  151. package/dist/templates/nextjs-sxa/src/assets/sass/components/common/_alignment.scss +25 -25
  152. package/dist/templates/nextjs-sxa/src/assets/sass/components/common/_boxed.scss +16 -16
  153. package/dist/templates/nextjs-sxa/src/assets/sass/components/common/_clearfix.scss +11 -11
  154. package/dist/templates/nextjs-sxa/src/assets/sass/components/common/_highlighted.scss +62 -62
  155. package/dist/templates/nextjs-sxa/src/assets/sass/components/common/_link-button.scss +16 -16
  156. package/dist/templates/nextjs-sxa/src/assets/sass/components/common/_promoted-box.scss +3 -3
  157. package/dist/templates/nextjs-sxa/src/assets/sass/components/common/index.scss +5 -5
  158. package/dist/templates/nextjs-sxa/src/assets/sass/components/container/_bordered.scss +23 -23
  159. package/dist/templates/nextjs-sxa/src/assets/sass/components/container/_title-row-box.scss +66 -66
  160. package/dist/templates/nextjs-sxa/src/assets/sass/components/container/index.scss +1 -1
  161. package/dist/templates/nextjs-sxa/src/assets/sass/components/image/_image-banner.scss +14 -14
  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 +2 -2
  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 +152 -152
  175. package/dist/templates/nextjs-sxa/src/assets/sass/components/navigation/_navigation-mobile.scss +89 -89
  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 +10 -10
  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 +24 -24
  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/node-headless-ssr-experience-edge/.env +6 -6
  193. package/dist/templates/node-headless-ssr-experience-edge/README.md +51 -51
  194. package/dist/templates/node-headless-ssr-experience-edge/package.json +38 -38
  195. package/dist/templates/node-headless-ssr-experience-edge/tsconfig.json +22 -22
  196. package/dist/templates/node-headless-ssr-proxy/.env +8 -8
  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 +60 -60
  200. package/dist/templates/node-headless-ssr-proxy/package.json +43 -43
  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/.env +36 -36
  204. package/dist/templates/react/.eslintrc +78 -78
  205. package/dist/templates/react/.prettierrc +9 -9
  206. package/dist/templates/react/LICENSE.txt +202 -202
  207. package/dist/templates/react/README.md +2400 -2400
  208. package/dist/templates/react/data/component-content/Styleguide/ContentReuse/LoremIpsumContentBlock/en.yml +9 -9
  209. package/dist/templates/react/data/content/Styleguide/ContentListField/Item1/en.yml +6 -6
  210. package/dist/templates/react/data/content/Styleguide/ContentListField/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 +247 -247
  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 +120 -120
  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-IntegratedDemo.sitecore.graphql +71 -71
  228. package/dist/templates/react/sitecore/gitignore +2 -2
  229. package/dist/templates/react/src/assets/app.css +19 -19
  230. package/dist/templates/react/src/assets/sc_logo.svg +19 -19
  231. package/dist/templates/react/src/components/GraphQL-ConnectedDemo/query.graphql +69 -69
  232. package/dist/templates/react/src/temp/GraphQLFragmentTypes.json +207 -207
  233. package/dist/templates/react/src/temp/gitignore +3 -3
  234. package/dist/templates/react-native/.buckconfig +6 -6
  235. package/dist/templates/react-native/.eslintrc +74 -74
  236. package/dist/templates/react-native/.gitattributes +1 -1
  237. package/dist/templates/react-native/.prettierrc +9 -9
  238. package/dist/templates/react-native/.vscode/launch.json +42 -42
  239. package/dist/templates/react-native/.vscode/settings.json +1 -1
  240. package/dist/templates/react-native/LICENSE.txt +202 -202
  241. package/dist/templates/react-native/README.MD +113 -113
  242. package/dist/templates/react-native/android/app/BUCK +55 -55
  243. package/dist/templates/react-native/android/app/build.gradle +201 -201
  244. package/dist/templates/react-native/android/app/build_defs.bzl +19 -19
  245. package/dist/templates/react-native/android/app/proguard-rules.pro +10 -10
  246. package/dist/templates/react-native/android/app/src/debug/AndroidManifest.xml +8 -8
  247. package/dist/templates/react-native/android/app/src/main/AndroidManifest.xml +26 -26
  248. package/dist/templates/react-native/android/app/src/main/java/com/{{appName}}/MainActivity.java +15 -15
  249. package/dist/templates/react-native/android/app/src/main/java/com/{{appName}}/MainApplication.java +74 -74
  250. package/dist/templates/react-native/android/app/src/main/res/values/strings.xml +3 -3
  251. package/dist/templates/react-native/android/app/src/main/res/values/styles.xml +9 -9
  252. package/dist/templates/react-native/android/build.gradle +38 -38
  253. package/dist/templates/react-native/android/gradle/wrapper/gradle-wrapper.properties +5 -5
  254. package/dist/templates/react-native/android/gradle.properties +21 -21
  255. package/dist/templates/react-native/android/gradlew +188 -188
  256. package/dist/templates/react-native/android/gradlew.bat +100 -100
  257. package/dist/templates/react-native/android/settings.gradle +3 -3
  258. package/dist/templates/react-native/app.json +3 -3
  259. package/dist/templates/react-native/assets/img/sc_logo.svg +16 -16
  260. package/dist/templates/react-native/data/content/Styleguide/ItemLinkField/Item1/en.json +10 -10
  261. package/dist/templates/react-native/data/routes/en.json +22 -22
  262. package/dist/templates/react-native/data/routes/styleguide/en.json +227 -227
  263. package/dist/templates/react-native/data/routes/styleguide/{{language}}.json +31 -31
  264. package/dist/templates/react-native/data/routes/{{language}}.json +7 -7
  265. package/dist/templates/react-native/gitignore +60 -60
  266. package/dist/templates/react-native/ios/Podfile +53 -53
  267. package/dist/templates/react-native/ios/{{appName}}/AppDelegate.h +15 -15
  268. package/dist/templates/react-native/ios/{{appName}}/AppDelegate.m +42 -42
  269. package/dist/templates/react-native/ios/{{appName}}/Base.lproj/LaunchScreen.xib +42 -42
  270. package/dist/templates/react-native/ios/{{appName}}/Images.xcassets/AppIcon.appiconset/Contents.json +38 -38
  271. package/dist/templates/react-native/ios/{{appName}}/Images.xcassets/Contents.json +6 -6
  272. package/dist/templates/react-native/ios/{{appName}}/Info.plist +57 -57
  273. package/dist/templates/react-native/ios/{{appName}}/main.m +16 -16
  274. package/dist/templates/react-native/ios/{{appName}}-tvOS/Info.plist +53 -53
  275. package/dist/templates/react-native/ios/{{appName}}-tvOSTests/Info.plist +24 -24
  276. package/dist/templates/react-native/ios/{{appName}}.xcodeproj/xcshareddata/xcschemes/BasicSampleReactNative-tvOS.xcscheme +129 -129
  277. package/dist/templates/react-native/ios/{{appName}}.xcodeproj/xcshareddata/xcschemes/BasicSampleReactNative.xcscheme +129 -129
  278. package/dist/templates/react-native/ios/{{appName}}Tests/BasicSampleReactNativeTests.m +72 -72
  279. package/dist/templates/react-native/ios/{{appName}}Tests/Info.plist +24 -24
  280. package/dist/templates/react-native/package.json +82 -82
  281. package/dist/templates/react-native/sitecore/config/{{appName}}.config +47 -47
  282. package/dist/templates/react-native/sitecore/gitignore +2 -2
  283. package/dist/templates/vue/.browserslistrc +2 -2
  284. package/dist/templates/vue/.env +35 -35
  285. package/dist/templates/vue/.prettierrc +9 -9
  286. package/dist/templates/vue/LICENSE.txt +202 -202
  287. package/dist/templates/vue/README.md +34 -34
  288. package/dist/templates/vue/data/component-content/Styleguide/ContentReuse/LoremIpsumContentBlock/en.yml +9 -9
  289. package/dist/templates/vue/data/content/Styleguide/ContentListField/Item1/en.yml +6 -6
  290. package/dist/templates/vue/data/content/Styleguide/ContentListField/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 +247 -247
  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 +91 -91
  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 +22 -22
  313. package/dist/templates/vue/src/assets/sc_logo.svg +19 -19
  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,22 +1,22 @@
1
- {
2
- "compilerOptions": {
3
- "newLine": "LF",
4
- "emitDecoratorMetadata": true,
5
- "experimentalDecorators": true,
6
- "noFallthroughCasesInSwitch": true,
7
- "rootDir": ".",
8
- "esModuleInterop": true,
9
- "forceConsistentCasingInFileNames": true,
10
- "strict": true,
11
- "noImplicitAny": true,
12
- "noUnusedLocals": true,
13
- "noUnusedParameters": true,
14
- "noImplicitReturns": true,
15
- "strictFunctionTypes": false,
16
- "downlevelIteration": true,
17
- "moduleResolution": "node",
18
- "isolatedModules": true,
19
- "allowSyntheticDefaultImports": true
20
- },
21
- "exclude": ["node_modules", "dist"]
22
- }
1
+ {
2
+ "compilerOptions": {
3
+ "newLine": "LF",
4
+ "emitDecoratorMetadata": true,
5
+ "experimentalDecorators": true,
6
+ "noFallthroughCasesInSwitch": true,
7
+ "rootDir": ".",
8
+ "esModuleInterop": true,
9
+ "forceConsistentCasingInFileNames": true,
10
+ "strict": true,
11
+ "noImplicitAny": true,
12
+ "noUnusedLocals": true,
13
+ "noUnusedParameters": true,
14
+ "noImplicitReturns": true,
15
+ "strictFunctionTypes": false,
16
+ "downlevelIteration": true,
17
+ "moduleResolution": "node",
18
+ "isolatedModules": true,
19
+ "allowSyntheticDefaultImports": true
20
+ },
21
+ "exclude": ["node_modules", "dist"]
22
+ }
@@ -1,36 +1,36 @@
1
- # create-react-app requires to use `REACT_APP_` prefix for environment variables
2
- # https://create-react-app.dev/docs/adding-custom-environment-variables/#adding-development-environment-variables-in-env
3
-
4
- # Your Sitecore API key is needed to build the app. Typically, the API key is
5
- # defined in `scjssconfig.json` (as `sitecore.apiKey`). This file may not exist
6
- # when building locally (if you've never run `jss setup`), or when building in a
7
- # higher environment (since `scjssconfig.json` is ignored from source control).
8
- # In this case, use this environment variable to provide the value at build time.
9
- REACT_APP_SITECORE_API_KEY=
10
-
11
- # Your Sitecore API hostname is needed to build the app. Typically, the API host is
12
- # defined in `scjssconfig.json` (as `sitecore.layoutServiceHost`). This file may
13
- # not exist when building locally (if you've never run `jss setup`), or when building
14
- # in a higher environment (since `scjssconfig.json` is ignored from source control).
15
- # In this case, use this environment variable to provide the value at build time.
16
- REACT_APP_SITECORE_API_HOST=
17
-
18
- # Your GraphQL Edge endpoint. This is required for Sitecore Experience Edge.
19
- # For Sitecore XM, this is typically optional. By default, the endpoint is calculated using
20
- # the resolved Sitecore API hostname + the `graphQLEndpointPath` defined in your `package.json`.
21
- REACT_APP_GRAPH_QL_ENDPOINT=
22
-
23
- # Your default app language.
24
- REACT_APP_DEFAULT_LANGUAGE=
25
-
26
- # The way in which layout and dictionary data is fetched from Sitecore
27
- REACT_APP_FETCH_WITH=<%- fetchWith %>
28
-
29
- # Sitecore JSS npm packages utilize the debug module for debug logging.
30
- # https://www.npmjs.com/package/debug
31
- # Set the REACT_APP_DEBUG environment variable to 'sitecore-jss:*' to see all logs:
32
- #REACT_APP_DEBUG=sitecore-jss:*
33
- # Or be selective and show for example only layout service logs:
34
- #REACT_APP_DEBUG=sitecore-jss:layout
35
- # Or everything BUT layout service logs:
36
- #REACT_APP_DEBUG=sitecore-jss:*,-sitecore-jss:layout
1
+ # create-react-app requires to use `REACT_APP_` prefix for environment variables
2
+ # https://create-react-app.dev/docs/adding-custom-environment-variables/#adding-development-environment-variables-in-env
3
+
4
+ # Your Sitecore API key is needed to build the app. Typically, the API key is
5
+ # defined in `scjssconfig.json` (as `sitecore.apiKey`). This file may not exist
6
+ # when building locally (if you've never run `jss setup`), or when building in a
7
+ # higher environment (since `scjssconfig.json` is ignored from source control).
8
+ # In this case, use this environment variable to provide the value at build time.
9
+ REACT_APP_SITECORE_API_KEY=
10
+
11
+ # Your Sitecore API hostname is needed to build the app. Typically, the API host is
12
+ # defined in `scjssconfig.json` (as `sitecore.layoutServiceHost`). This file may
13
+ # not exist when building locally (if you've never run `jss setup`), or when building
14
+ # in a higher environment (since `scjssconfig.json` is ignored from source control).
15
+ # In this case, use this environment variable to provide the value at build time.
16
+ REACT_APP_SITECORE_API_HOST=
17
+
18
+ # Your GraphQL Edge endpoint. This is required for Sitecore Experience Edge.
19
+ # For Sitecore XM, this is typically optional. By default, the endpoint is calculated using
20
+ # the resolved Sitecore API hostname + the `graphQLEndpointPath` defined in your `package.json`.
21
+ REACT_APP_GRAPH_QL_ENDPOINT=
22
+
23
+ # Your default app language.
24
+ REACT_APP_DEFAULT_LANGUAGE=
25
+
26
+ # The way in which layout and dictionary data is fetched from Sitecore
27
+ REACT_APP_FETCH_WITH=<%- fetchWith %>
28
+
29
+ # Sitecore JSS npm packages utilize the debug module for debug logging.
30
+ # https://www.npmjs.com/package/debug
31
+ # Set the REACT_APP_DEBUG environment variable to 'sitecore-jss:*' to see all logs:
32
+ #REACT_APP_DEBUG=sitecore-jss:*
33
+ # Or be selective and show for example only layout service logs:
34
+ #REACT_APP_DEBUG=sitecore-jss:layout
35
+ # Or everything BUT layout service logs:
36
+ #REACT_APP_DEBUG=sitecore-jss:*,-sitecore-jss:layout
@@ -1,78 +1,78 @@
1
- {
2
- "root": true,
3
- "extends": [
4
- "prettier",
5
- "plugin:import/errors",
6
- "plugin:import/warnings",
7
- "plugin:react/recommended",
8
- "plugin:yaml/recommended",
9
- "plugin:prettier/recommended"
10
- ],
11
- "parser": "babel-eslint",
12
- "parserOptions": {
13
- "ecmaFeatures": {
14
- "jsx": true
15
- }
16
- },
17
- "plugins": [
18
- "import",
19
- "react",
20
- "yaml"
21
- ],
22
- "settings": {
23
- "import/ignore": [
24
- "node_modules",
25
- ".png$",
26
- ".jpg$"
27
- ],
28
- "react": {
29
- "version": "detect"
30
- }
31
- },
32
- "globals": {
33
- "window": true,
34
- "document": true
35
- },
36
- "rules": {
37
- "import/no-unresolved": "off",
38
- "import/no-duplicates": "off",
39
- "import/no-named-as-default": "off",
40
- "import/no-extraneous-dependencies": [
41
- "error",
42
- {
43
- "devDependencies": true,
44
- "optionalDependencies": true
45
- }
46
- ],
47
- "linebreak-style": "off",
48
- "react/jsx-filename-extension": 0,
49
- "jsx-quotes": ["error", "prefer-double"],
50
- "import/prefer-default-export": "off",
51
- "react/forbid-prop-types": "off",
52
- "react/prop-types": 0,
53
- "react/no-danger": "off",
54
- "react/require-default-props": "off",
55
- "react/no-array-index-key": "off",
56
- "no-use-before-define": 0,
57
- "global-require": 0,
58
- "no-param-reassign": 0,
59
- "no-useless-escape": "off",
60
- "spaced-comment": "error",
61
- "curly": ["error", "multi-line"],
62
- "eol-last": ["error", "always"],
63
- "guard-for-in": "error",
64
- "no-unused-labels": "error",
65
- "no-caller": "error",
66
- "no-bitwise": "error",
67
- "no-multiple-empty-lines": "error",
68
- "no-new-wrappers": "error",
69
- "no-eval": "error",
70
- "dot-notation": "error",
71
- "no-trailing-spaces": "error",
72
- "no-unused-expressions": ["error", { "allowShortCircuit": true, "allowTernary": true }],
73
- "brace-style": "error",
74
- "quotes": ["error", "single"],
75
- "default-case": "error",
76
- "eqeqeq": "error"
77
- }
78
- }
1
+ {
2
+ "root": true,
3
+ "extends": [
4
+ "prettier",
5
+ "plugin:import/errors",
6
+ "plugin:import/warnings",
7
+ "plugin:react/recommended",
8
+ "plugin:yaml/recommended",
9
+ "plugin:prettier/recommended"
10
+ ],
11
+ "parser": "babel-eslint",
12
+ "parserOptions": {
13
+ "ecmaFeatures": {
14
+ "jsx": true
15
+ }
16
+ },
17
+ "plugins": [
18
+ "import",
19
+ "react",
20
+ "yaml"
21
+ ],
22
+ "settings": {
23
+ "import/ignore": [
24
+ "node_modules",
25
+ ".png$",
26
+ ".jpg$"
27
+ ],
28
+ "react": {
29
+ "version": "detect"
30
+ }
31
+ },
32
+ "globals": {
33
+ "window": true,
34
+ "document": true
35
+ },
36
+ "rules": {
37
+ "import/no-unresolved": "off",
38
+ "import/no-duplicates": "off",
39
+ "import/no-named-as-default": "off",
40
+ "import/no-extraneous-dependencies": [
41
+ "error",
42
+ {
43
+ "devDependencies": true,
44
+ "optionalDependencies": true
45
+ }
46
+ ],
47
+ "linebreak-style": "off",
48
+ "react/jsx-filename-extension": 0,
49
+ "jsx-quotes": ["error", "prefer-double"],
50
+ "import/prefer-default-export": "off",
51
+ "react/forbid-prop-types": "off",
52
+ "react/prop-types": 0,
53
+ "react/no-danger": "off",
54
+ "react/require-default-props": "off",
55
+ "react/no-array-index-key": "off",
56
+ "no-use-before-define": 0,
57
+ "global-require": 0,
58
+ "no-param-reassign": 0,
59
+ "no-useless-escape": "off",
60
+ "spaced-comment": "error",
61
+ "curly": ["error", "multi-line"],
62
+ "eol-last": ["error", "always"],
63
+ "guard-for-in": "error",
64
+ "no-unused-labels": "error",
65
+ "no-caller": "error",
66
+ "no-bitwise": "error",
67
+ "no-multiple-empty-lines": "error",
68
+ "no-new-wrappers": "error",
69
+ "no-eval": "error",
70
+ "dot-notation": "error",
71
+ "no-trailing-spaces": "error",
72
+ "no-unused-expressions": ["error", { "allowShortCircuit": true, "allowTernary": true }],
73
+ "brace-style": "error",
74
+ "quotes": ["error", "single"],
75
+ "default-case": "error",
76
+ "eqeqeq": "error"
77
+ }
78
+ }
@@ -1,9 +1,9 @@
1
- {
2
- "endOfLine": "crlf",
3
- "semi": true,
4
- "singleQuote": true,
5
- "tabWidth": 2,
6
- "useTabs": false,
7
- "trailingComma": "es5",
8
- "printWidth": 100
9
- }
1
+ {
2
+ "endOfLine": "crlf",
3
+ "semi": true,
4
+ "singleQuote": true,
5
+ "tabWidth": 2,
6
+ "useTabs": false,
7
+ "trailingComma": "es5",
8
+ "printWidth": 100
9
+ }