@salesforce/lds-adapters-community-navigation-menu 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 +4 -5
- package/sfdc/index.js +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-community-navigation-menu",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Wire adapters Community Navigation Menu",
|
|
6
6
|
"main": "dist/es/es2018/community-navigation-menu.js",
|
|
@@ -24,16 +24,15 @@
|
|
|
24
24
|
"build:services": "rollup --bundleConfigAsCjs --config rollup.config.js",
|
|
25
25
|
"start": "nx build:karma && karma start",
|
|
26
26
|
"test": "nx build:karma && karma start --single-run",
|
|
27
|
-
"test:compat": "nx build:karma && karma start --single-run --compat",
|
|
28
27
|
"release:corejar": "yarn build && ../core-build/scripts/core.js --adapter=lds-adapters-community-navigation-menu",
|
|
29
28
|
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-community-navigation-menu"
|
|
30
29
|
},
|
|
31
30
|
"dependencies": {
|
|
32
|
-
"@salesforce/lds-bindings": "^1.
|
|
31
|
+
"@salesforce/lds-bindings": "^1.262.0"
|
|
33
32
|
},
|
|
34
33
|
"devDependencies": {
|
|
35
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
36
|
-
"@salesforce/lds-karma": "^1.
|
|
34
|
+
"@salesforce/lds-compiler-plugins": "^1.262.0",
|
|
35
|
+
"@salesforce/lds-karma": "^1.262.0"
|
|
37
36
|
},
|
|
38
37
|
"nx": {
|
|
39
38
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -387,7 +387,10 @@ let getCommunityNavigationMenu;
|
|
|
387
387
|
// Imperative GET Adapters
|
|
388
388
|
let getCommunityNavigationMenu_imperative;
|
|
389
389
|
// Adapter Metadata
|
|
390
|
-
const getCommunityNavigationMenuMetadata = {
|
|
390
|
+
const getCommunityNavigationMenuMetadata = {
|
|
391
|
+
apiFamily: 'CommunityNavigation',
|
|
392
|
+
name: 'getCommunityNavigationMenu',
|
|
393
|
+
};
|
|
391
394
|
// Notify Update Available
|
|
392
395
|
function bindExportsTo(luvio) {
|
|
393
396
|
// LDS Adapters
|
|
@@ -400,11 +403,8 @@ function bindExportsTo(luvio) {
|
|
|
400
403
|
};
|
|
401
404
|
}
|
|
402
405
|
withDefaultLuvio((luvio) => {
|
|
403
|
-
({
|
|
404
|
-
getCommunityNavigationMenu,
|
|
405
|
-
getCommunityNavigationMenu_imperative,
|
|
406
|
-
} = bindExportsTo(luvio));
|
|
406
|
+
({ getCommunityNavigationMenu, getCommunityNavigationMenu_imperative } = bindExportsTo(luvio));
|
|
407
407
|
});
|
|
408
408
|
|
|
409
409
|
export { getCommunityNavigationMenu, getCommunityNavigationMenu_imperative };
|
|
410
|
-
// version: 1.
|
|
410
|
+
// version: 1.262.0-d3c071fdc
|