@salesforce/templates 66.1.1 → 66.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 (238) hide show
  1. package/lib/generators/projectGenerator.d.ts +6 -0
  2. package/lib/generators/projectGenerator.js +42 -3
  3. package/lib/generators/projectGenerator.js.map +1 -1
  4. package/lib/templates/project/reactb2e/.a4drules/README.md +35 -0
  5. package/lib/templates/project/reactb2e/.a4drules/a4d-webapp-generate.md +27 -0
  6. package/lib/templates/project/reactb2e/.a4drules/build-validation.md +78 -0
  7. package/lib/templates/project/reactb2e/.a4drules/code-quality.md +137 -0
  8. package/lib/templates/project/reactb2e/.a4drules/graphql/tools/knowledge/lds-explore-graphql-schema.md +227 -0
  9. package/lib/templates/project/reactb2e/.a4drules/graphql/tools/knowledge/lds-generate-graphql-mutationquery.md +212 -0
  10. package/lib/templates/project/reactb2e/.a4drules/graphql/tools/knowledge/lds-generate-graphql-readquery.md +185 -0
  11. package/lib/templates/project/reactb2e/.a4drules/graphql/tools/knowledge/lds-guide-graphql.md +205 -0
  12. package/lib/templates/project/reactb2e/.a4drules/graphql/tools/schemas/shared.graphqls +1150 -0
  13. package/lib/templates/project/reactb2e/.a4drules/graphql.md +409 -0
  14. package/lib/templates/project/reactb2e/.a4drules/images.md +13 -0
  15. package/lib/templates/project/reactb2e/.a4drules/react.md +387 -0
  16. package/lib/templates/project/reactb2e/.a4drules/react_image_processing.md +45 -0
  17. package/lib/templates/project/reactb2e/.a4drules/typescript.md +224 -0
  18. package/lib/templates/project/reactb2e/.a4drules/ui-layout.md +23 -0
  19. package/lib/templates/project/reactb2e/.a4drules/webapp-nav-and-placeholders.md +33 -0
  20. package/lib/templates/project/reactb2e/.a4drules/webapp-no-node-e.md +25 -0
  21. package/lib/templates/project/reactb2e/.a4drules/webapp-ui-first.md +32 -0
  22. package/lib/templates/project/reactb2e/.a4drules/webapp.md +75 -0
  23. package/lib/templates/project/reactb2e/.forceignore +15 -0
  24. package/lib/templates/project/reactb2e/.husky/pre-commit +4 -0
  25. package/lib/templates/project/reactb2e/.prettierignore +11 -0
  26. package/lib/templates/project/reactb2e/.prettierrc +17 -0
  27. package/lib/templates/project/reactb2e/AGENT.md +75 -0
  28. package/lib/templates/project/reactb2e/CHANGELOG.md +696 -0
  29. package/lib/templates/project/reactb2e/README.md +18 -0
  30. package/lib/templates/project/reactb2e/config/project-scratch-def.json +13 -0
  31. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/.graphqlrc.yml +2 -0
  32. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/.prettierignore +9 -0
  33. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/.prettierrc +11 -0
  34. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/appreacttemplateb2e.webapplication-meta.xml +7 -0
  35. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/build/vite.config.d.ts +2 -0
  36. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/build/vite.config.js +93 -0
  37. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/codegen.yml +94 -0
  38. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/e2e/app.spec.ts +17 -0
  39. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/eslint.config.js +141 -0
  40. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/index.html +13 -0
  41. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/package-lock.json +14392 -0
  42. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/package.json +58 -0
  43. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/playwright.config.ts +24 -0
  44. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/scripts/get-graphql-schema.mjs +68 -0
  45. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/scripts/rewrite-e2e-assets.mjs +23 -0
  46. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/src/api/graphql-operations-types.ts +116 -0
  47. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/src/api/utils/accounts.ts +33 -0
  48. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/src/api/utils/query/highRevenueAccountsQuery.graphql +29 -0
  49. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/src/app.tsx +22 -0
  50. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/src/appLayout.tsx +19 -0
  51. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/src/assets/icons/book.svg +3 -0
  52. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/src/assets/icons/copy.svg +4 -0
  53. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/src/assets/icons/rocket.svg +3 -0
  54. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/src/assets/icons/star.svg +3 -0
  55. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/src/assets/images/codey-1.png +0 -0
  56. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/src/assets/images/codey-2.png +0 -0
  57. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/src/assets/images/codey-3.png +0 -0
  58. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/src/assets/images/vibe-codey.svg +194 -0
  59. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/src/components/AgentforceConversationClient.tsx +127 -0
  60. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/src/index.ts +6 -0
  61. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/src/navigationMenu.tsx +80 -0
  62. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/src/pages/Home.tsx +12 -0
  63. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/src/pages/NotFound.tsx +18 -0
  64. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/src/router-utils.tsx +35 -0
  65. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/src/routes.tsx +22 -0
  66. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/src/styles/global.css +13 -0
  67. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/src/types/conversation.ts +21 -0
  68. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/tsconfig.json +36 -0
  69. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/tsconfig.node.json +13 -0
  70. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/vite-env.d.ts +1 -0
  71. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/vite.config.ts +102 -0
  72. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/vitest-env.d.ts +2 -0
  73. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/vitest.config.ts +11 -0
  74. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/vitest.setup.ts +1 -0
  75. package/lib/templates/project/reactb2e/force-app/main/default/webapplications/appreacttemplateb2e/webapplication.json +7 -0
  76. package/lib/templates/project/reactb2e/jest.config.js +6 -0
  77. package/lib/templates/project/reactb2e/package.json +38 -0
  78. package/lib/templates/project/reactb2e/scripts/apex/hello.apex +10 -0
  79. package/lib/templates/project/reactb2e/scripts/soql/account.soql +6 -0
  80. package/lib/templates/project/reactb2e/sfdx-project.json +12 -0
  81. package/lib/templates/project/reactb2x/.a4drules/README.md +35 -0
  82. package/lib/templates/project/reactb2x/.a4drules/a4d-webapp-generate.md +27 -0
  83. package/lib/templates/project/reactb2x/.a4drules/build-validation.md +78 -0
  84. package/lib/templates/project/reactb2x/.a4drules/code-quality.md +137 -0
  85. package/lib/templates/project/reactb2x/.a4drules/graphql/tools/knowledge/lds-explore-graphql-schema.md +227 -0
  86. package/lib/templates/project/reactb2x/.a4drules/graphql/tools/knowledge/lds-generate-graphql-mutationquery.md +212 -0
  87. package/lib/templates/project/reactb2x/.a4drules/graphql/tools/knowledge/lds-generate-graphql-readquery.md +185 -0
  88. package/lib/templates/project/reactb2x/.a4drules/graphql/tools/knowledge/lds-guide-graphql.md +205 -0
  89. package/lib/templates/project/reactb2x/.a4drules/graphql/tools/schemas/shared.graphqls +1150 -0
  90. package/lib/templates/project/reactb2x/.a4drules/graphql.md +409 -0
  91. package/lib/templates/project/reactb2x/.a4drules/images.md +13 -0
  92. package/lib/templates/project/reactb2x/.a4drules/react.md +387 -0
  93. package/lib/templates/project/reactb2x/.a4drules/react_image_processing.md +45 -0
  94. package/lib/templates/project/reactb2x/.a4drules/typescript.md +224 -0
  95. package/lib/templates/project/reactb2x/.a4drules/ui-layout.md +23 -0
  96. package/lib/templates/project/reactb2x/.a4drules/webapp-nav-and-placeholders.md +33 -0
  97. package/lib/templates/project/reactb2x/.a4drules/webapp-no-node-e.md +25 -0
  98. package/lib/templates/project/reactb2x/.a4drules/webapp-ui-first.md +32 -0
  99. package/lib/templates/project/reactb2x/.a4drules/webapp.md +75 -0
  100. package/lib/templates/project/reactb2x/.forceignore +15 -0
  101. package/lib/templates/project/reactb2x/.husky/pre-commit +4 -0
  102. package/lib/templates/project/reactb2x/.prettierignore +11 -0
  103. package/lib/templates/project/reactb2x/.prettierrc +17 -0
  104. package/lib/templates/project/reactb2x/AGENT.md +75 -0
  105. package/lib/templates/project/reactb2x/CHANGELOG.md +696 -0
  106. package/lib/templates/project/reactb2x/README.md +18 -0
  107. package/lib/templates/project/reactb2x/config/project-scratch-def.json +13 -0
  108. package/lib/templates/project/reactb2x/force-app/main/default/classes/WebAppAuthUtils.cls +68 -0
  109. package/lib/templates/project/reactb2x/force-app/main/default/classes/WebAppAuthUtils.cls-meta.xml +5 -0
  110. package/lib/templates/project/reactb2x/force-app/main/default/classes/WebAppChangePassword.cls +77 -0
  111. package/lib/templates/project/reactb2x/force-app/main/default/classes/WebAppChangePassword.cls-meta.xml +5 -0
  112. package/lib/templates/project/reactb2x/force-app/main/default/classes/WebAppForgotPassword.cls +71 -0
  113. package/lib/templates/project/reactb2x/force-app/main/default/classes/WebAppForgotPassword.cls-meta.xml +5 -0
  114. package/lib/templates/project/reactb2x/force-app/main/default/classes/WebAppLogin.cls +105 -0
  115. package/lib/templates/project/reactb2x/force-app/main/default/classes/WebAppLogin.cls-meta.xml +5 -0
  116. package/lib/templates/project/reactb2x/force-app/main/default/classes/WebAppRegistration.cls +162 -0
  117. package/lib/templates/project/reactb2x/force-app/main/default/classes/WebAppRegistration.cls-meta.xml +5 -0
  118. package/lib/templates/project/reactb2x/force-app/main/default/digitalExperienceConfigs/appreacttemplateb2x1.digitalExperienceConfig +8 -0
  119. package/lib/templates/project/reactb2x/force-app/main/default/digitalExperiences/site/appreacttemplateb2x1/appreacttemplateb2x1.digitalExperience-meta.xml +11 -0
  120. package/lib/templates/project/reactb2x/force-app/main/default/digitalExperiences/site/appreacttemplateb2x1/sfdc_cms__site/appreacttemplateb2x1/_meta.json +5 -0
  121. package/lib/templates/project/reactb2x/force-app/main/default/digitalExperiences/site/appreacttemplateb2x1/sfdc_cms__site/appreacttemplateb2x1/content.json +10 -0
  122. package/lib/templates/project/reactb2x/force-app/main/default/networks/appreacttemplateb2x.network +60 -0
  123. package/lib/templates/project/reactb2x/force-app/main/default/package.xml +20 -0
  124. package/lib/templates/project/reactb2x/force-app/main/default/sites/appreacttemplateb2x.site +31 -0
  125. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/.graphqlrc.yml +2 -0
  126. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/.prettierignore +9 -0
  127. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/.prettierrc +11 -0
  128. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/appreacttemplateb2x.webapplication-meta.xml +7 -0
  129. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/build/vite.config.d.ts +2 -0
  130. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/build/vite.config.js +93 -0
  131. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/codegen.yml +94 -0
  132. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/e2e/app.spec.ts +17 -0
  133. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/eslint.config.js +141 -0
  134. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/index.html +13 -0
  135. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/package-lock.json +18408 -0
  136. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/package.json +66 -0
  137. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/playwright.config.ts +24 -0
  138. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/scripts/get-graphql-schema.mjs +68 -0
  139. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/scripts/rewrite-e2e-assets.mjs +23 -0
  140. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/api/graphql-operations-types.ts +116 -0
  141. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/api/utils/accounts.ts +33 -0
  142. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/api/utils/query/highRevenueAccountsQuery.graphql +29 -0
  143. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/app.tsx +13 -0
  144. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/appLayout.tsx +11 -0
  145. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/assets/icons/book.svg +3 -0
  146. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/assets/icons/copy.svg +4 -0
  147. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/assets/icons/rocket.svg +3 -0
  148. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/assets/icons/star.svg +3 -0
  149. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/assets/images/codey-1.png +0 -0
  150. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/assets/images/codey-2.png +0 -0
  151. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/assets/images/codey-3.png +0 -0
  152. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/assets/images/vibe-codey.svg +194 -0
  153. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/alerts/status-alert.tsx +45 -0
  154. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/auth/authHelpers.ts +73 -0
  155. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/auth/authenticationConfig.ts +61 -0
  156. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/auth/authenticationRouteLayout.tsx +21 -0
  157. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/auth/privateRouteLayout.tsx +36 -0
  158. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/auth/sessionTimeout/SessionTimeoutValidator.tsx +616 -0
  159. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/auth/sessionTimeout/sessionTimeService.ts +161 -0
  160. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/auth/sessionTimeout/sessionTimeoutConfig.ts +77 -0
  161. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/footers/footer-link.tsx +36 -0
  162. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/forms/auth-form.tsx +81 -0
  163. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/forms/submit-button.tsx +49 -0
  164. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/layout/card-layout.tsx +23 -0
  165. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/layout/card-skeleton.tsx +38 -0
  166. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/layout/centered-page-layout.tsx +73 -0
  167. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/ui/alert.tsx +69 -0
  168. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/ui/button.tsx +67 -0
  169. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/ui/card.tsx +92 -0
  170. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/ui/dialog.tsx +143 -0
  171. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/ui/field.tsx +222 -0
  172. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/ui/index.ts +72 -0
  173. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/ui/input.tsx +19 -0
  174. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/ui/label.tsx +19 -0
  175. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/ui/pagination.tsx +112 -0
  176. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/ui/select.tsx +183 -0
  177. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/ui/separator.tsx +26 -0
  178. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/ui/skeleton.tsx +14 -0
  179. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/ui/spinner.tsx +15 -0
  180. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/ui/table.tsx +87 -0
  181. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components/ui/tabs.tsx +78 -0
  182. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/components.json +18 -0
  183. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/context/AuthContext.tsx +95 -0
  184. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/hooks/form.tsx +116 -0
  185. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/hooks/useCountdownTimer.ts +266 -0
  186. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/hooks/useRetryWithBackoff.ts +109 -0
  187. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/layouts/AuthAppLayout.tsx +12 -0
  188. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/lib/data-sdk.ts +21 -0
  189. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/lib/utils.ts +6 -0
  190. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/navigationMenu.tsx +80 -0
  191. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/pages/ChangePassword.tsx +107 -0
  192. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/pages/ForgotPassword.tsx +73 -0
  193. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/pages/Home.tsx +12 -0
  194. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/pages/Login.tsx +97 -0
  195. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/pages/NotFound.tsx +18 -0
  196. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/pages/Profile.tsx +178 -0
  197. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/pages/Register.tsx +138 -0
  198. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/pages/ResetPassword.tsx +107 -0
  199. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/router-utils.tsx +35 -0
  200. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/routes.tsx +71 -0
  201. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/styles/global.css +135 -0
  202. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/src/utils/helpers.ts +121 -0
  203. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/tsconfig.json +36 -0
  204. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/tsconfig.node.json +13 -0
  205. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/vite-env.d.ts +1 -0
  206. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/vite.config.ts +102 -0
  207. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/vitest-env.d.ts +2 -0
  208. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/vitest.config.ts +11 -0
  209. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/vitest.setup.ts +1 -0
  210. package/lib/templates/project/reactb2x/force-app/main/default/webapplications/appreacttemplateb2x/webapplication.json +7 -0
  211. package/lib/templates/project/reactb2x/jest.config.js +6 -0
  212. package/lib/templates/project/reactb2x/package.json +38 -0
  213. package/lib/templates/project/reactb2x/scripts/apex/hello.apex +10 -0
  214. package/lib/templates/project/reactb2x/scripts/soql/account.soql +6 -0
  215. package/lib/templates/project/reactb2x/sfdx-project.json +12 -0
  216. package/lib/templates/webapplication/reactbasic/.graphqlrc.yml +2 -0
  217. package/lib/templates/webapplication/reactbasic/build/vite.config.js +20 -1
  218. package/lib/templates/webapplication/reactbasic/codegen.yml +94 -0
  219. package/lib/templates/webapplication/reactbasic/e2e/app.spec.ts +0 -7
  220. package/lib/templates/webapplication/reactbasic/eslint.config.js +28 -0
  221. package/lib/templates/webapplication/reactbasic/package-lock.json +10090 -2874
  222. package/lib/templates/webapplication/reactbasic/package.json +16 -4
  223. package/lib/templates/webapplication/reactbasic/scripts/get-graphql-schema.mjs +68 -0
  224. package/lib/templates/webapplication/reactbasic/src/api/graphql-operations-types.ts +23 -34
  225. package/lib/templates/webapplication/reactbasic/src/api/utils/accounts.ts +33 -0
  226. package/lib/templates/webapplication/reactbasic/src/app.tsx +10 -1
  227. package/lib/templates/webapplication/reactbasic/src/appLayout.tsx +2 -0
  228. package/lib/templates/webapplication/reactbasic/src/navigationMenu.tsx +80 -0
  229. package/lib/templates/webapplication/reactbasic/src/router-utils.tsx +35 -0
  230. package/lib/templates/webapplication/reactbasic/src/routes.tsx +1 -7
  231. package/lib/templates/webapplication/reactbasic/vite.config.ts +20 -1
  232. package/lib/tsconfig.tsbuildinfo +1 -1
  233. package/lib/utils/types.d.ts +1 -1
  234. package/lib/utils/webappTemplateUtils.d.ts +54 -0
  235. package/lib/utils/webappTemplateUtils.js +219 -0
  236. package/lib/utils/webappTemplateUtils.js.map +1 -0
  237. package/package.json +7 -5
  238. package/lib/templates/webapplication/reactbasic/src/pages/About.tsx +0 -12
@@ -0,0 +1,696 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## [1.48.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.48.1...v1.48.2) (2026-02-23)
7
+
8
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
9
+
10
+
11
+
12
+
13
+
14
+ ## [1.48.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.48.0...v1.48.1) (2026-02-21)
15
+
16
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
17
+
18
+
19
+
20
+
21
+
22
+ # [1.48.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.47.0...v1.48.0) (2026-02-20)
23
+
24
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
25
+
26
+
27
+
28
+
29
+
30
+ # [1.47.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.46.2...v1.47.0) (2026-02-20)
31
+
32
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
33
+
34
+
35
+
36
+
37
+
38
+ ## [1.46.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.46.1...v1.46.2) (2026-02-20)
39
+
40
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
41
+
42
+
43
+
44
+
45
+
46
+ ## [1.46.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.46.0...v1.46.1) (2026-02-20)
47
+
48
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
49
+
50
+
51
+
52
+
53
+
54
+ # [1.46.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.45.1...v1.46.0) (2026-02-20)
55
+
56
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
57
+
58
+
59
+
60
+
61
+
62
+ ## [1.45.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.45.0...v1.45.1) (2026-02-20)
63
+
64
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
65
+
66
+
67
+
68
+
69
+
70
+ # [1.45.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.44.0...v1.45.0) (2026-02-20)
71
+
72
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
73
+
74
+
75
+
76
+
77
+
78
+ # [1.44.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.43.1...v1.44.0) (2026-02-20)
79
+
80
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
81
+
82
+
83
+
84
+
85
+
86
+ ## [1.43.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.43.0...v1.43.1) (2026-02-20)
87
+
88
+
89
+ ### Bug Fixes
90
+
91
+ * fixing b2e template ([#137](https://github.com/salesforce-experience-platform-emu/webapps/issues/137)) ([73992a4](https://github.com/salesforce-experience-platform-emu/webapps/commit/73992a4b39a82f607b062a60dae16be494c80ba5))
92
+
93
+
94
+
95
+
96
+
97
+ # [1.43.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.42.0...v1.43.0) (2026-02-20)
98
+
99
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
100
+
101
+
102
+
103
+
104
+
105
+ # [1.42.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.41.0...v1.42.0) (2026-02-20)
106
+
107
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
108
+
109
+
110
+
111
+
112
+
113
+ # [1.41.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.40.0...v1.41.0) (2026-02-20)
114
+
115
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
116
+
117
+
118
+
119
+
120
+
121
+ # [1.40.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.39.0...v1.40.0) (2026-02-20)
122
+
123
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
124
+
125
+
126
+
127
+
128
+
129
+ # [1.39.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.38.1...v1.39.0) (2026-02-19)
130
+
131
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
132
+
133
+
134
+
135
+
136
+
137
+ ## [1.38.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.38.0...v1.38.1) (2026-02-19)
138
+
139
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
140
+
141
+
142
+
143
+
144
+
145
+ # [1.38.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.37.0...v1.38.0) (2026-02-19)
146
+
147
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
148
+
149
+
150
+
151
+
152
+
153
+ # [1.37.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.36.4...v1.37.0) (2026-02-19)
154
+
155
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
156
+
157
+
158
+
159
+
160
+
161
+ ## [1.36.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.36.3...v1.36.4) (2026-02-19)
162
+
163
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
164
+
165
+
166
+
167
+
168
+
169
+ ## [1.36.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.36.2...v1.36.3) (2026-02-19)
170
+
171
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
172
+
173
+
174
+
175
+
176
+
177
+ ## [1.36.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.36.1...v1.36.2) (2026-02-19)
178
+
179
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
180
+
181
+
182
+
183
+
184
+
185
+ ## [1.36.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.36.0...v1.36.1) (2026-02-19)
186
+
187
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
188
+
189
+
190
+
191
+
192
+
193
+ # [1.36.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.35.2...v1.36.0) (2026-02-19)
194
+
195
+
196
+ ### Features
197
+
198
+ * move graphql eslint config and data sdk dependencies into base app ([#111](https://github.com/salesforce-experience-platform-emu/webapps/issues/111)) ([e9f6cb0](https://github.com/salesforce-experience-platform-emu/webapps/commit/e9f6cb066d45b2922a8c65769a7309ffd1345a2c))
199
+
200
+
201
+
202
+
203
+
204
+ ## [1.35.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.35.1...v1.35.2) (2026-02-19)
205
+
206
+
207
+ ### Bug Fixes
208
+
209
+ * adding template tests in ci @W-20919457 ([#114](https://github.com/salesforce-experience-platform-emu/webapps/issues/114)) ([ebd3d5a](https://github.com/salesforce-experience-platform-emu/webapps/commit/ebd3d5a5d1d84d7ae69b216de82da4a09edb6cb8))
210
+
211
+
212
+
213
+
214
+
215
+ ## [1.35.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.35.0...v1.35.1) (2026-02-18)
216
+
217
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
218
+
219
+
220
+
221
+
222
+
223
+ # [1.35.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.34.0...v1.35.0) (2026-02-18)
224
+
225
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
226
+
227
+
228
+
229
+
230
+
231
+ # [1.34.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.33.6...v1.34.0) (2026-02-18)
232
+
233
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
234
+
235
+
236
+
237
+
238
+
239
+ ## [1.33.6](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.33.5...v1.33.6) (2026-02-18)
240
+
241
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
242
+
243
+
244
+
245
+
246
+
247
+ ## [1.33.5](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.33.4...v1.33.5) (2026-02-18)
248
+
249
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
250
+
251
+
252
+
253
+
254
+
255
+ ## [1.33.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.33.3...v1.33.4) (2026-02-17)
256
+
257
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
258
+
259
+
260
+
261
+
262
+
263
+ ## [1.33.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.33.2...v1.33.3) (2026-02-17)
264
+
265
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
266
+
267
+
268
+
269
+
270
+
271
+ ## [1.33.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.33.1...v1.33.2) (2026-02-17)
272
+
273
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
274
+
275
+
276
+
277
+
278
+
279
+ ## [1.33.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.33.0...v1.33.1) (2026-02-17)
280
+
281
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
282
+
283
+
284
+
285
+
286
+
287
+ # [1.33.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.32.0...v1.33.0) (2026-02-17)
288
+
289
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
290
+
291
+
292
+
293
+
294
+
295
+ # [1.32.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.31.0...v1.32.0) (2026-02-17)
296
+
297
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
298
+
299
+
300
+
301
+
302
+
303
+ # [1.31.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.30.1...v1.31.0) (2026-02-16)
304
+
305
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
306
+
307
+
308
+
309
+
310
+
311
+ ## [1.30.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.30.0...v1.30.1) (2026-02-16)
312
+
313
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
314
+
315
+
316
+
317
+
318
+
319
+ # [1.30.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.29.1...v1.30.0) (2026-02-13)
320
+
321
+
322
+ ### Features
323
+
324
+ * add feature and skill for Micro Frontends ([#110](https://github.com/salesforce-experience-platform-emu/webapps/issues/110)) ([489a939](https://github.com/salesforce-experience-platform-emu/webapps/commit/489a939b1c7c80eadd88d9daf8312400fbedb3c5))
325
+
326
+
327
+
328
+
329
+
330
+ ## [1.29.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.29.0...v1.29.1) (2026-02-13)
331
+
332
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
333
+
334
+
335
+
336
+
337
+
338
+ # [1.29.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.28.2...v1.29.0) (2026-02-12)
339
+
340
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
341
+
342
+
343
+
344
+
345
+
346
+ ## [1.28.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.28.1...v1.28.2) (2026-02-12)
347
+
348
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
349
+
350
+
351
+
352
+
353
+
354
+ ## [1.28.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.28.0...v1.28.1) (2026-02-12)
355
+
356
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
357
+
358
+
359
+
360
+
361
+
362
+ # [1.28.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.27.1...v1.28.0) (2026-02-12)
363
+
364
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
365
+
366
+
367
+
368
+
369
+
370
+ ## [1.27.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.27.0...v1.27.1) (2026-02-12)
371
+
372
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
373
+
374
+
375
+
376
+
377
+
378
+ # [1.27.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.26.0...v1.27.0) (2026-02-12)
379
+
380
+
381
+ ### Features
382
+
383
+ * defining graphql feature @W-20226218@ ([#83](https://github.com/salesforce-experience-platform-emu/webapps/issues/83)) ([51a9273](https://github.com/salesforce-experience-platform-emu/webapps/commit/51a92733063e1adf0c6e44ceab37162baddc2ffb))
384
+
385
+
386
+
387
+
388
+
389
+ # [1.26.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.25.2...v1.26.0) (2026-02-11)
390
+
391
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
392
+
393
+
394
+
395
+
396
+
397
+ ## [1.25.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.25.1...v1.25.2) (2026-02-11)
398
+
399
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
400
+
401
+
402
+
403
+
404
+
405
+ ## [1.25.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.25.0...v1.25.1) (2026-02-11)
406
+
407
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
408
+
409
+
410
+
411
+
412
+
413
+ # [1.25.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.24.0...v1.25.0) (2026-02-11)
414
+
415
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
416
+
417
+
418
+
419
+
420
+
421
+ # [1.24.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.23.0...v1.24.0) (2026-02-11)
422
+
423
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
424
+
425
+
426
+
427
+
428
+
429
+ # [1.23.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.22.1...v1.23.0) (2026-02-11)
430
+
431
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
432
+
433
+
434
+
435
+
436
+
437
+ ## [1.22.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.22.0...v1.22.1) (2026-02-11)
438
+
439
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
440
+
441
+
442
+
443
+
444
+
445
+ # [1.22.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.21.0...v1.22.0) (2026-02-10)
446
+
447
+
448
+ ### Features
449
+
450
+ * @W-20916499 use DataSDK ([#81](https://github.com/salesforce-experience-platform-emu/webapps/issues/81)) ([fbd88e5](https://github.com/salesforce-experience-platform-emu/webapps/commit/fbd88e58283925f8fe241e99c3f968ba2c614f48))
451
+
452
+
453
+
454
+
455
+
456
+ # [1.21.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.20.0...v1.21.0) (2026-02-10)
457
+
458
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
459
+
460
+
461
+
462
+
463
+
464
+ # [1.20.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.19.1...v1.20.0) (2026-02-10)
465
+
466
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
467
+
468
+
469
+
470
+
471
+
472
+ ## [1.19.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.19.0...v1.19.1) (2026-02-10)
473
+
474
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
475
+
476
+
477
+
478
+
479
+
480
+ # [1.19.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.18.0...v1.19.0) (2026-02-10)
481
+
482
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
483
+
484
+
485
+
486
+
487
+
488
+ # [1.18.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.17.1...v1.18.0) (2026-02-10)
489
+
490
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
491
+
492
+
493
+
494
+
495
+
496
+ ## [1.17.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.17.0...v1.17.1) (2026-02-09)
497
+
498
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
499
+
500
+
501
+
502
+
503
+
504
+ # [1.17.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.16.1...v1.17.0) (2026-02-09)
505
+
506
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
507
+
508
+
509
+
510
+
511
+
512
+ ## [1.16.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.16.0...v1.16.1) (2026-02-09)
513
+
514
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
515
+
516
+
517
+
518
+
519
+
520
+ # [1.16.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.15.0...v1.16.0) (2026-02-09)
521
+
522
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
523
+
524
+
525
+
526
+
527
+
528
+ # [1.15.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.14.0...v1.15.0) (2026-02-07)
529
+
530
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
531
+
532
+
533
+
534
+
535
+
536
+ # [1.14.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.13.0...v1.14.0) (2026-02-06)
537
+
538
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
539
+
540
+
541
+
542
+
543
+
544
+ # [1.13.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.12.0...v1.13.0) (2026-02-06)
545
+
546
+
547
+ ### Features
548
+
549
+ * adding a sample feature package for reference ([#77](https://github.com/salesforce-experience-platform-emu/webapps/issues/77)) ([94b4d8e](https://github.com/salesforce-experience-platform-emu/webapps/commit/94b4d8e5e89c10888868b8b014c1032ff4b6177d))
550
+
551
+
552
+
553
+
554
+
555
+ # [1.12.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.11.2...v1.12.0) (2026-02-06)
556
+
557
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
558
+
559
+
560
+
561
+
562
+
563
+ ## [1.11.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.11.1...v1.11.2) (2026-02-06)
564
+
565
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
566
+
567
+
568
+
569
+
570
+
571
+ ## [1.11.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.11.0...v1.11.1) (2026-02-05)
572
+
573
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
574
+
575
+
576
+
577
+
578
+
579
+ # [1.11.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.10.0...v1.11.0) (2026-02-05)
580
+
581
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
582
+
583
+
584
+
585
+
586
+
587
+ # [1.10.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.9.0...v1.10.0) (2026-02-05)
588
+
589
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
590
+
591
+
592
+
593
+
594
+
595
+ # [1.9.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.8.1...v1.9.0) (2026-02-05)
596
+
597
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
598
+
599
+
600
+
601
+
602
+
603
+ ## [1.8.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.8.0...v1.8.1) (2026-02-04)
604
+
605
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
606
+
607
+
608
+
609
+
610
+
611
+ # [1.8.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.7.0...v1.8.0) (2026-02-04)
612
+
613
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
614
+
615
+
616
+
617
+
618
+
619
+ # [1.7.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.6.2...v1.7.0) (2026-02-04)
620
+
621
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
622
+
623
+
624
+
625
+
626
+
627
+ ## [1.6.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.6.1...v1.6.2) (2026-02-04)
628
+
629
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
630
+
631
+
632
+
633
+
634
+
635
+ ## [1.6.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.6.0...v1.6.1) (2026-02-04)
636
+
637
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
638
+
639
+
640
+
641
+
642
+
643
+ # [1.6.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.5.1...v1.6.0) (2026-02-04)
644
+
645
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
646
+
647
+
648
+
649
+
650
+
651
+ ## [1.5.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.5.0...v1.5.1) (2026-02-04)
652
+
653
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
654
+
655
+
656
+
657
+
658
+
659
+ # [1.5.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.4.0...v1.5.0) (2026-02-03)
660
+
661
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
662
+
663
+
664
+
665
+
666
+
667
+ # [1.4.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.3.5...v1.4.0) (2026-02-03)
668
+
669
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
670
+
671
+
672
+
673
+
674
+
675
+ ## [1.3.5](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.3.4...v1.3.5) (2026-01-31)
676
+
677
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
678
+
679
+
680
+
681
+
682
+
683
+ ## [1.3.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.3.3...v1.3.4) (2026-01-31)
684
+
685
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
686
+
687
+
688
+
689
+
690
+
691
+ ## [1.3.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.3.2...v1.3.3) (2026-01-30)
692
+
693
+
694
+ ### Bug Fixes
695
+
696
+ * enabling npm publish for template packages ([#47](https://github.com/salesforce-experience-platform-emu/webapps/issues/47)) ([a8274f6](https://github.com/salesforce-experience-platform-emu/webapps/commit/a8274f606a2636c1fbdeade58f88a6797a12981e))