@salesforce/webapp-template-app-react-template-b2x-experimental 1.72.0 → 1.73.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.
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.73.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.73.0...v1.73.1) (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.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.72.0...v1.73.0) (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.72.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.71.3...v1.72.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.72.0",
19
- "@salesforce/webapp-experimental": "^1.72.0",
18
+ "@salesforce/sdk-data": "^1.73.1",
19
+ "@salesforce/webapp-experimental": "^1.73.1",
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.72.0",
43
+ "@salesforce/vite-plugin-webapp-experimental": "^1.73.1",
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]: value };
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 {
@@ -12,6 +12,7 @@ export const FILTER_OPERATORS = [
12
12
  "eq", // Equals
13
13
  "ne", // Not equals
14
14
  "like", // Pattern matching (contains)
15
+ "in", // In list (multiple values)
15
16
  "gt", // Greater than
16
17
  "gte", // Greater than or equal
17
18
  "lt", // Less than
@@ -1,4 +1,5 @@
1
1
  export * from "./filters/filters";
2
+ export * from "./filters/picklist";
2
3
  export * from "./objectInfo/objectInfo";
3
4
  export * from "./recordDetail/recordDetail";
4
5
  export * from "./search/searchResults";
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/webapp-template-base-sfdx-project-experimental",
3
- "version": "1.72.0",
3
+ "version": "1.73.1",
4
4
  "description": "Base SFDX project template",
5
5
  "private": true,
6
6
  "files": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/webapp-template-app-react-template-b2x-experimental",
3
- "version": "1.72.0",
3
+ "version": "1.73.1",
4
4
  "description": "Base reference app template",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "author": "",