@salesforce/ui-bundle-template-app-react-sample-b2e 1.117.2 → 1.117.3

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,14 @@
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.117.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.117.2...v1.117.3) (2026-03-29)
7
+
8
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
9
+
10
+
11
+
12
+
13
+
6
14
  ## [1.117.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.117.1...v1.117.2) (2026-03-29)
7
15
 
8
16
  **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
@@ -0,0 +1,11 @@
1
+ import type { ComponentProps } from "react";
2
+
3
+ export const nonNegativeNumberInputProps: ComponentProps<"input"> = {
4
+ min: 0,
5
+ onKeyDown: (event) => {
6
+ if (event.key === "-" || event.key === "Minus") event.preventDefault();
7
+ },
8
+ onPaste: (event) => {
9
+ if (event.clipboardData.getData("text").includes("-")) event.preventDefault();
10
+ },
11
+ };
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@salesforce/webapp-template-base-sfdx-project-experimental",
3
- "version": "1.117.2",
3
+ "version": "1.117.3",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@salesforce/webapp-template-base-sfdx-project-experimental",
9
- "version": "1.117.2",
9
+ "version": "1.117.3",
10
10
  "license": "SEE LICENSE IN LICENSE.txt",
11
11
  "devDependencies": {
12
12
  "@lwc/eslint-plugin-lwc": "^3.3.0",
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/ui-bundle-template-base-sfdx-project",
3
- "version": "1.117.2",
3
+ "version": "1.117.3",
4
4
  "description": "Base SFDX project template",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "publishConfig": {
@@ -60,8 +60,8 @@ if [ ! -f "$SCHEMA" ]; then
60
60
  echo "ERROR: schema.graphql not found at $SCHEMA"
61
61
  echo " Make sure you are running from the SFDX project root, or pass the path explicitly:"
62
62
  echo " bash $0 --schema <path/to/schema.graphql> <EntityName>"
63
- echo " If the file is missing entirely, generate it from the webapp dir:"
64
- echo " cd force-app/main/default/webapplications/<app-name> && npm run graphql:schema"
63
+ echo " If the file is missing entirely, generate it from the ui-bundle dir:"
64
+ echo " cd force-app/main/default/uiBundles/<app-name> && npm run graphql:schema"
65
65
  exit 1
66
66
  fi
67
67
 
@@ -73,8 +73,8 @@ fi
73
73
 
74
74
  if [ ! -s "$SCHEMA" ]; then
75
75
  echo "ERROR: schema.graphql is empty at $SCHEMA"
76
- echo " Regenerate it from the webapp dir:"
77
- echo " cd force-app/main/default/webapplications/<app-name> && npm run graphql:schema"
76
+ echo " Regenerate it from the ui-bundle dir:"
77
+ echo " cd force-app/main/default/uiBundles/<app-name> && npm run graphql:schema"
78
78
  exit 1
79
79
  fi
80
80
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/ui-bundle-template-app-react-sample-b2e",
3
- "version": "1.117.2",
3
+ "version": "1.117.3",
4
4
  "description": "Salesforce sample property rental React app",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "author": "",