@salesforce/lds-adapters-industries-tearsheet 1.261.0 → 1.262.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/package.json +5 -6
- package/sfdc/index.js +2 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-tearsheet",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "APIs for Tearsheets feature in FSC",
|
|
6
6
|
"main": "dist/es/es2018/industries-tearsheet.js",
|
|
@@ -39,15 +39,14 @@
|
|
|
39
39
|
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-industries-tearsheet",
|
|
40
40
|
"release:corejar": "yarn build && packages/core-build/scripts/core.js --adapter=lds-adapters-industries-tearsheet",
|
|
41
41
|
"start": "nx build:karma && karma start",
|
|
42
|
-
"test": "nx build:karma && karma start --single-run"
|
|
43
|
-
"test:compat": "nx build:karma && karma start --single-run --compat"
|
|
42
|
+
"test": "nx build:karma && karma start --single-run"
|
|
44
43
|
},
|
|
45
44
|
"dependencies": {
|
|
46
|
-
"@salesforce/lds-bindings": "^1.
|
|
45
|
+
"@salesforce/lds-bindings": "^1.262.0"
|
|
47
46
|
},
|
|
48
47
|
"devDependencies": {
|
|
49
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
50
|
-
"@salesforce/lds-karma": "^1.
|
|
48
|
+
"@salesforce/lds-compiler-plugins": "^1.262.0",
|
|
49
|
+
"@salesforce/lds-karma": "^1.262.0"
|
|
51
50
|
},
|
|
52
51
|
"nx": {
|
|
53
52
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -331,11 +331,8 @@ function bindExportsTo(luvio) {
|
|
|
331
331
|
};
|
|
332
332
|
}
|
|
333
333
|
withDefaultLuvio((luvio) => {
|
|
334
|
-
({
|
|
335
|
-
getTearsheets,
|
|
336
|
-
getTearsheets_imperative,
|
|
337
|
-
} = bindExportsTo(luvio));
|
|
334
|
+
({ getTearsheets, getTearsheets_imperative } = bindExportsTo(luvio));
|
|
338
335
|
});
|
|
339
336
|
|
|
340
337
|
export { getTearsheets, getTearsheets_imperative };
|
|
341
|
-
// version: 1.
|
|
338
|
+
// version: 1.262.0-d3c071fdc
|