@salesforce/lwc-adapters-uiapi 1.404.0-dev10 → 1.404.0-dev11

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 (2) hide show
  1. package/dist/main.js +6 -0
  2. package/package.json +3 -3
package/dist/main.js CHANGED
@@ -33571,6 +33571,12 @@ const picklistValuesConfigPropertyNames = {
33571
33571
  },
33572
33572
  };
33573
33573
  function validateAdapterConfig$z(untrusted, _config) {
33574
+ if (process.env.NODE_ENV !== 'production') {
33575
+ const fieldApiName = untrusted.fieldApiName;
33576
+ if (typeof fieldApiName === 'string' && fieldApiName.includes(',')) {
33577
+ throw new TypeError(`adapter ${picklistValuesConfigPropertyNames.displayName} configuration must not have a comma in the fieldApiName: ${fieldApiName}`);
33578
+ }
33579
+ }
33574
33580
  return validateAdapterConfig$y(untrusted, picklistValuesConfigPropertyNames);
33575
33581
  }
33576
33582
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lwc-adapters-uiapi",
3
- "version": "1.404.0-dev10",
3
+ "version": "1.404.0-dev11",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "UIAPI adapters with LWC bindings",
6
6
  "module": "dist/main.js",
@@ -31,10 +31,10 @@
31
31
  "clean": "rm -rf dist src/generated"
32
32
  },
33
33
  "devDependencies": {
34
- "@salesforce/lds-adapters-uiapi": "^1.404.0-dev10"
34
+ "@salesforce/lds-adapters-uiapi": "^1.404.0-dev11"
35
35
  },
36
36
  "dependencies": {
37
37
  "@luvio/lwc-luvio": "0.158.7",
38
- "@salesforce/lds-default-luvio": "^1.404.0-dev10"
38
+ "@salesforce/lds-default-luvio": "^1.404.0-dev11"
39
39
  }
40
40
  }