@salesforce/lwc-adapters-uiapi 1.419.0 → 1.421.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/main.js +7 -1
- package/package.json +4 -4
package/dist/main.js
CHANGED
|
@@ -572,7 +572,7 @@ function createResourceParamsImpl(config, configMetadata) {
|
|
|
572
572
|
}
|
|
573
573
|
return resourceParams;
|
|
574
574
|
}
|
|
575
|
-
// engine version: 0.160.
|
|
575
|
+
// engine version: 0.160.3-354dc58b
|
|
576
576
|
|
|
577
577
|
/**
|
|
578
578
|
* Returns true if the value acts like a Promise, i.e. has a "then" function,
|
|
@@ -33599,6 +33599,12 @@ const picklistValuesConfigPropertyNames = {
|
|
|
33599
33599
|
},
|
|
33600
33600
|
};
|
|
33601
33601
|
function validateAdapterConfig$z(untrusted, _config) {
|
|
33602
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
33603
|
+
const fieldApiName = untrusted.fieldApiName;
|
|
33604
|
+
if (typeof fieldApiName === 'string' && fieldApiName.includes(',')) {
|
|
33605
|
+
throw new TypeError(`adapter ${picklistValuesConfigPropertyNames.displayName} configuration must not have a comma in the fieldApiName: ${fieldApiName}`);
|
|
33606
|
+
}
|
|
33607
|
+
}
|
|
33602
33608
|
return validateAdapterConfig$y(untrusted, picklistValuesConfigPropertyNames);
|
|
33603
33609
|
}
|
|
33604
33610
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lwc-adapters-uiapi",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.421.0",
|
|
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.
|
|
34
|
+
"@salesforce/lds-adapters-uiapi": "^1.421.0"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@luvio/lwc-luvio": "0.160.
|
|
38
|
-
"@salesforce/lds-default-luvio": "^1.
|
|
37
|
+
"@luvio/lwc-luvio": "0.160.3",
|
|
38
|
+
"@salesforce/lds-default-luvio": "^1.421.0"
|
|
39
39
|
}
|
|
40
40
|
}
|