@arcgis/core-adapter 4.34.0-next.7 → 4.34.0-next.8

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/index.cjs CHANGED
@@ -30,7 +30,7 @@ async function loadUndocumentedModule(modulePath, deferredImport) {
30
30
  if (isAMD) {
31
31
  return await window.$arcgis.import(modulePath);
32
32
  }
33
- const module2 = deferredImport();
33
+ const module2 = await deferredImport();
34
34
  return isDefaultModule(module2) ? module2.default : module2;
35
35
  }
36
36
  async function importIdentityIdentityManager() {
package/dist/index.js CHANGED
@@ -6,7 +6,7 @@ async function loadUndocumentedModule(modulePath, deferredImport) {
6
6
  if (isAMD) {
7
7
  return await window.$arcgis.import(modulePath);
8
8
  }
9
- const module = deferredImport();
9
+ const module = await deferredImport();
10
10
  return isDefaultModule(module) ? module.default : module;
11
11
  }
12
12
  async function importIdentityIdentityManager() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcgis/core-adapter",
3
- "version": "4.34.0-next.7",
3
+ "version": "4.34.0-next.8",
4
4
  "description": "ArcGIS Core Adapter",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",