@salesforce/lds-adapters-community-navigation-menu 1.260.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 +9 -7
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,22 +387,24 @@ 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
|
+
};
|
|
394
|
+
// Notify Update Available
|
|
391
395
|
function bindExportsTo(luvio) {
|
|
392
396
|
// LDS Adapters
|
|
393
397
|
const getCommunityNavigationMenu_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getCommunityNavigationMenu', getCommunityNavigationMenuAdapterFactory), getCommunityNavigationMenuMetadata);
|
|
394
398
|
return {
|
|
395
399
|
getCommunityNavigationMenu: createWireAdapterConstructor(luvio, getCommunityNavigationMenu_ldsAdapter, getCommunityNavigationMenuMetadata),
|
|
396
400
|
// Imperative GET Adapters
|
|
397
|
-
getCommunityNavigationMenu_imperative: createImperativeAdapter(luvio, getCommunityNavigationMenu_ldsAdapter, getCommunityNavigationMenuMetadata)
|
|
401
|
+
getCommunityNavigationMenu_imperative: createImperativeAdapter(luvio, getCommunityNavigationMenu_ldsAdapter, getCommunityNavigationMenuMetadata),
|
|
402
|
+
// Notify Update Availables
|
|
398
403
|
};
|
|
399
404
|
}
|
|
400
405
|
withDefaultLuvio((luvio) => {
|
|
401
|
-
({
|
|
402
|
-
getCommunityNavigationMenu,
|
|
403
|
-
getCommunityNavigationMenu_imperative
|
|
404
|
-
} = bindExportsTo(luvio));
|
|
406
|
+
({ getCommunityNavigationMenu, getCommunityNavigationMenu_imperative } = bindExportsTo(luvio));
|
|
405
407
|
});
|
|
406
408
|
|
|
407
409
|
export { getCommunityNavigationMenu, getCommunityNavigationMenu_imperative };
|
|
408
|
-
// version: 1.
|
|
410
|
+
// version: 1.262.0-d3c071fdc
|