@salesforce/webapp-template-app-react-template-b2x-experimental 1.73.0 → 1.74.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/dist/CHANGELOG.md +16 -0
- package/dist/force-app/main/default/webapplications/appreacttemplateb2x/package.json +3 -3
- package/dist/force-app/main/default/webapplications/appreacttemplateb2x/src/features/global-search/api/recordListGraphQLService.ts +1 -2
- package/dist/force-app/main/default/webapplications/appreacttemplateb2x/src/features/global-search/types/filters/filters.ts +1 -0
- package/dist/force-app/main/default/webapplications/appreacttemplateb2x/src/features/global-search/types/index.ts +1 -0
- package/dist/force-app/main/default/webapplications/appreacttemplateb2x/src/index.ts +10 -0
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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.74.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.73.1...v1.74.0) (2026-03-05)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [1.73.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.73.0...v1.73.1) (2026-03-05)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [1.73.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.72.0...v1.73.0) (2026-03-05)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"graphql:schema": "node scripts/get-graphql-schema.mjs"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@salesforce/sdk-data": "^1.
|
|
19
|
-
"@salesforce/webapp-experimental": "^1.
|
|
18
|
+
"@salesforce/sdk-data": "^1.74.0",
|
|
19
|
+
"@salesforce/webapp-experimental": "^1.74.0",
|
|
20
20
|
"@tailwindcss/vite": "^4.1.17",
|
|
21
21
|
"@tanstack/react-form": "^1.28.4",
|
|
22
22
|
"class-variance-authority": "^0.7.1",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"@graphql-eslint/eslint-plugin": "^4.1.0",
|
|
41
41
|
"@graphql-tools/utils": "^11.0.0",
|
|
42
42
|
"@playwright/test": "^1.49.0",
|
|
43
|
-
"@salesforce/vite-plugin-webapp-experimental": "^1.
|
|
43
|
+
"@salesforce/vite-plugin-webapp-experimental": "^1.74.0",
|
|
44
44
|
"@testing-library/jest-dom": "^6.6.3",
|
|
45
45
|
"@testing-library/react": "^16.1.0",
|
|
46
46
|
"@testing-library/user-event": "^14.5.2",
|
|
@@ -149,10 +149,9 @@ export function buildWhereFromCriteria(
|
|
|
149
149
|
|
|
150
150
|
for (const c of criteria) {
|
|
151
151
|
if (!c.fieldPath || !c.operator || !c.values?.length) continue;
|
|
152
|
-
const value = c.values[0];
|
|
153
152
|
const op = c.operator;
|
|
154
153
|
const parts = c.fieldPath.split(".");
|
|
155
|
-
const fieldClause = { [op]:
|
|
154
|
+
const fieldClause = op === "in" ? { in: c.values } : { [op]: c.values[0] };
|
|
156
155
|
if (parts.length === 1) {
|
|
157
156
|
conditions.push({ [parts[0]]: fieldClause });
|
|
158
157
|
} else {
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Package entry for @salesforce/webapp-template-feature-react-global-search-experimental.
|
|
3
|
+
* Exports only API, hooks, utils, types, and constants so that consuming apps do not
|
|
4
|
+
* pull in the feature's UI (routes, __inherit__ components) which depend on @radix-ui.
|
|
5
|
+
*/
|
|
6
|
+
export * from "./features/global-search/api";
|
|
7
|
+
export * from "./features/global-search/hooks";
|
|
8
|
+
export * from "./features/global-search/utils";
|
|
9
|
+
export * from "./features/global-search/types";
|
|
10
|
+
export * from "./constants";
|
package/dist/package.json
CHANGED