@salesforce/webapp-template-base-react-app-experimental 1.56.0 → 1.57.0

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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.57.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.56.1...v1.57.0) (2026-02-26)
7
+
8
+ ### Features
9
+
10
+ - **design:** added allowlist and disallowlist for component selection in hybrid editor ([#164](https://github.com/salesforce-experience-platform-emu/webapps/issues/164)) ([a78a9ba](https://github.com/salesforce-experience-platform-emu/webapps/commit/a78a9ba586d0c9cd0e3d82036b55472b19a74aec))
11
+
12
+ ## [1.56.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.56.0...v1.56.1) (2026-02-25)
13
+
14
+ **Note:** Version bump only for package @salesforce/webapp-template-base-react-app-experimental
15
+
6
16
  # [1.56.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.55.0...v1.56.0) (2026-02-25)
7
17
 
8
18
  **Note:** Version bump only for package @salesforce/webapp-template-base-react-app-experimental
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/webapp-template-base-react-app-experimental",
3
- "version": "1.56.0",
3
+ "version": "1.57.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -15,5 +15,5 @@
15
15
  "test:coverage": "npm run test",
16
16
  "test:e2e": "cd src/force-app/main/default/webapplications/base-react-app && rm -rf node_modules && npm install && npx playwright install chromium && npm run build:e2e && npx playwright test"
17
17
  },
18
- "gitHead": "580bc4db5f0190f3b7345056a9f16454455f3652"
18
+ "gitHead": "79d48250f085dbf33512c356b0ff5fb6acd239d3"
19
19
  }
@@ -5,6 +5,7 @@
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",
8
+ "dev:design": "vite --mode design",
8
9
  "build": "tsc -b && vite build",
9
10
  "build:e2e": "npm run build && node scripts/rewrite-e2e-assets.mjs",
10
11
  "lint": "eslint .",