@arcgis/core-adapter 4.34.0-next.0 → 4.34.0-next.10

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() {
@@ -5419,6 +5419,28 @@ async function newSymbolsSimpleMarkerSymbol(properties) {
5419
5419
  const ModConstructor = await importSymbolsSimpleMarkerSymbol();
5420
5420
  return new ModConstructor(properties);
5421
5421
  }
5422
+ async function importSymbolsSupportElevationInfo() {
5423
+ if (isAMD) {
5424
+ return await window.$arcgis.import("esri/symbols/support/ElevationInfo");
5425
+ }
5426
+ const module2 = await import("@arcgis/core/symbols/support/ElevationInfo.js");
5427
+ return isDefaultModule(module2) ? module2.default : module2;
5428
+ }
5429
+ async function newSymbolsSupportElevationInfo(properties) {
5430
+ const ModConstructor = await importSymbolsSupportElevationInfo();
5431
+ return new ModConstructor(properties);
5432
+ }
5433
+ async function importSymbolsSupportFeatureExpressionInfo() {
5434
+ if (isAMD) {
5435
+ return await window.$arcgis.import("esri/symbols/support/FeatureExpressionInfo");
5436
+ }
5437
+ const module2 = await import("@arcgis/core/symbols/support/FeatureExpressionInfo.js");
5438
+ return isDefaultModule(module2) ? module2.default : module2;
5439
+ }
5440
+ async function newSymbolsSupportFeatureExpressionInfo(properties) {
5441
+ const ModConstructor = await importSymbolsSupportFeatureExpressionInfo();
5442
+ return new ModConstructor(properties);
5443
+ }
5422
5444
  async function importSymbolsSupportStyleOrigin() {
5423
5445
  if (isAMD) {
5424
5446
  return await window.$arcgis.import("esri/symbols/support/StyleOrigin");
@@ -10264,6 +10286,13 @@ async function importSmartMappingRenderersSupportRendererUtils() {
10264
10286
  const module2 = await import("@arcgis/core/smartMapping/renderers/support/rendererUtils.js");
10265
10287
  return isDefaultModule(module2) ? module2.default : module2;
10266
10288
  }
10289
+ async function importSmartMappingRenderersSupportSpikeUtils() {
10290
+ if (isAMD) {
10291
+ return await window.$arcgis.import("esri/smartMapping/renderers/support/spikeUtils");
10292
+ }
10293
+ const module2 = await import("@arcgis/core/smartMapping/renderers/support/spikeUtils.js");
10294
+ return isDefaultModule(module2) ? module2.default : module2;
10295
+ }
10267
10296
  async function importSmartMappingStatisticsClassBreaks() {
10268
10297
  if (isAMD) {
10269
10298
  return await window.$arcgis.import("esri/smartMapping/statistics/classBreaks");
@@ -11307,6 +11336,7 @@ exports.importSmartMappingRenderersPredominance = importSmartMappingRenderersPre
11307
11336
  exports.importSmartMappingRenderersRelationship = importSmartMappingRenderersRelationship;
11308
11337
  exports.importSmartMappingRenderersSize = importSmartMappingRenderersSize;
11309
11338
  exports.importSmartMappingRenderersSupportRendererUtils = importSmartMappingRenderersSupportRendererUtils;
11339
+ exports.importSmartMappingRenderersSupportSpikeUtils = importSmartMappingRenderersSupportSpikeUtils;
11310
11340
  exports.importSmartMappingRenderersType = importSmartMappingRenderersType;
11311
11341
  exports.importSmartMappingRenderersUnivariateColorSize = importSmartMappingRenderersUnivariateColorSize;
11312
11342
  exports.importSmartMappingStatisticsClassBreaks = importSmartMappingStatisticsClassBreaks;
@@ -11369,6 +11399,8 @@ exports.importSymbolsSimpleLineSymbol = importSymbolsSimpleLineSymbol;
11369
11399
  exports.importSymbolsSimpleMarkerSymbol = importSymbolsSimpleMarkerSymbol;
11370
11400
  exports.importSymbolsSupportCimConversionUtils = importSymbolsSupportCimConversionUtils;
11371
11401
  exports.importSymbolsSupportCimSymbolUtils = importSymbolsSupportCimSymbolUtils;
11402
+ exports.importSymbolsSupportElevationInfo = importSymbolsSupportElevationInfo;
11403
+ exports.importSymbolsSupportFeatureExpressionInfo = importSymbolsSupportFeatureExpressionInfo;
11372
11404
  exports.importSymbolsSupportJsonUtils = importSymbolsSupportJsonUtils;
11373
11405
  exports.importSymbolsSupportStyleOrigin = importSymbolsSupportStyleOrigin;
11374
11406
  exports.importSymbolsSupportSymbol3DVerticalOffset = importSymbolsSupportSymbol3DVerticalOffset;
@@ -12219,6 +12251,8 @@ exports.newSymbolsPolygonSymbol3D = newSymbolsPolygonSymbol3D;
12219
12251
  exports.newSymbolsSimpleFillSymbol = newSymbolsSimpleFillSymbol;
12220
12252
  exports.newSymbolsSimpleLineSymbol = newSymbolsSimpleLineSymbol;
12221
12253
  exports.newSymbolsSimpleMarkerSymbol = newSymbolsSimpleMarkerSymbol;
12254
+ exports.newSymbolsSupportElevationInfo = newSymbolsSupportElevationInfo;
12255
+ exports.newSymbolsSupportFeatureExpressionInfo = newSymbolsSupportFeatureExpressionInfo;
12222
12256
  exports.newSymbolsSupportStyleOrigin = newSymbolsSupportStyleOrigin;
12223
12257
  exports.newSymbolsSupportSymbol3DVerticalOffset = newSymbolsSupportSymbol3DVerticalOffset;
12224
12258
  exports.newSymbolsSymbol = newSymbolsSymbol;
package/dist/index.d.cts CHANGED
@@ -993,6 +993,10 @@ export declare function importSymbolsSimpleLineSymbol(): Promise<typeof __esri.S
993
993
  export declare function newSymbolsSimpleLineSymbol(properties: __esri.SimpleLineSymbolProperties): Promise<__esri.SimpleLineSymbol>;
994
994
  export declare function importSymbolsSimpleMarkerSymbol(): Promise<typeof __esri.SimpleMarkerSymbol>;
995
995
  export declare function newSymbolsSimpleMarkerSymbol(properties: __esri.SimpleMarkerSymbolProperties): Promise<__esri.SimpleMarkerSymbol>;
996
+ export declare function importSymbolsSupportElevationInfo(): Promise<typeof __esri.ElevationInfo>;
997
+ export declare function newSymbolsSupportElevationInfo(properties: __esri.ElevationInfoProperties): Promise<__esri.ElevationInfo>;
998
+ export declare function importSymbolsSupportFeatureExpressionInfo(): Promise<typeof __esri.FeatureExpressionInfo>;
999
+ export declare function newSymbolsSupportFeatureExpressionInfo(properties: __esri.FeatureExpressionInfoProperties): Promise<__esri.FeatureExpressionInfo>;
996
1000
  export declare function importSymbolsSupportStyleOrigin(): Promise<typeof __esri.StyleOrigin>;
997
1001
  export declare function newSymbolsSupportStyleOrigin(properties: __esri.StyleOriginProperties): Promise<__esri.StyleOrigin>;
998
1002
  export declare function importSymbolsSupportSymbol3DVerticalOffset(): Promise<typeof __esri.Symbol3DVerticalOffset>;
@@ -1833,6 +1837,7 @@ export declare function importSmartMappingRenderersSize(): Promise<typeof __esri
1833
1837
  export declare function importSmartMappingRenderersType(): Promise<typeof __esri.type>;
1834
1838
  export declare function importSmartMappingRenderersUnivariateColorSize(): Promise<typeof __esri.univariateColorSize>;
1835
1839
  export declare function importSmartMappingRenderersSupportRendererUtils(): Promise<typeof __esri.rendererUtils>;
1840
+ export declare function importSmartMappingRenderersSupportSpikeUtils(): Promise<typeof __esri.spikeUtils>;
1836
1841
  export declare function importSmartMappingStatisticsClassBreaks(): Promise<typeof __esri.statisticsClassBreaks>;
1837
1842
  export declare function importSmartMappingStatisticsHeatmapStatistics(): Promise<typeof __esri.heatmapStatistics>;
1838
1843
  export declare function importSmartMappingStatisticsHistogram(): Promise<typeof __esri.histogram>;
package/dist/index.d.ts CHANGED
@@ -993,6 +993,10 @@ export declare function importSymbolsSimpleLineSymbol(): Promise<typeof __esri.S
993
993
  export declare function newSymbolsSimpleLineSymbol(properties: __esri.SimpleLineSymbolProperties): Promise<__esri.SimpleLineSymbol>;
994
994
  export declare function importSymbolsSimpleMarkerSymbol(): Promise<typeof __esri.SimpleMarkerSymbol>;
995
995
  export declare function newSymbolsSimpleMarkerSymbol(properties: __esri.SimpleMarkerSymbolProperties): Promise<__esri.SimpleMarkerSymbol>;
996
+ export declare function importSymbolsSupportElevationInfo(): Promise<typeof __esri.ElevationInfo>;
997
+ export declare function newSymbolsSupportElevationInfo(properties: __esri.ElevationInfoProperties): Promise<__esri.ElevationInfo>;
998
+ export declare function importSymbolsSupportFeatureExpressionInfo(): Promise<typeof __esri.FeatureExpressionInfo>;
999
+ export declare function newSymbolsSupportFeatureExpressionInfo(properties: __esri.FeatureExpressionInfoProperties): Promise<__esri.FeatureExpressionInfo>;
996
1000
  export declare function importSymbolsSupportStyleOrigin(): Promise<typeof __esri.StyleOrigin>;
997
1001
  export declare function newSymbolsSupportStyleOrigin(properties: __esri.StyleOriginProperties): Promise<__esri.StyleOrigin>;
998
1002
  export declare function importSymbolsSupportSymbol3DVerticalOffset(): Promise<typeof __esri.Symbol3DVerticalOffset>;
@@ -1833,6 +1837,7 @@ export declare function importSmartMappingRenderersSize(): Promise<typeof __esri
1833
1837
  export declare function importSmartMappingRenderersType(): Promise<typeof __esri.type>;
1834
1838
  export declare function importSmartMappingRenderersUnivariateColorSize(): Promise<typeof __esri.univariateColorSize>;
1835
1839
  export declare function importSmartMappingRenderersSupportRendererUtils(): Promise<typeof __esri.rendererUtils>;
1840
+ export declare function importSmartMappingRenderersSupportSpikeUtils(): Promise<typeof __esri.spikeUtils>;
1836
1841
  export declare function importSmartMappingStatisticsClassBreaks(): Promise<typeof __esri.statisticsClassBreaks>;
1837
1842
  export declare function importSmartMappingStatisticsHeatmapStatistics(): Promise<typeof __esri.heatmapStatistics>;
1838
1843
  export declare function importSmartMappingStatisticsHistogram(): Promise<typeof __esri.histogram>;
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() {
@@ -5395,6 +5395,28 @@ async function newSymbolsSimpleMarkerSymbol(properties) {
5395
5395
  const ModConstructor = await importSymbolsSimpleMarkerSymbol();
5396
5396
  return new ModConstructor(properties);
5397
5397
  }
5398
+ async function importSymbolsSupportElevationInfo() {
5399
+ if (isAMD) {
5400
+ return await window.$arcgis.import("esri/symbols/support/ElevationInfo");
5401
+ }
5402
+ const module = await import("@arcgis/core/symbols/support/ElevationInfo.js");
5403
+ return isDefaultModule(module) ? module.default : module;
5404
+ }
5405
+ async function newSymbolsSupportElevationInfo(properties) {
5406
+ const ModConstructor = await importSymbolsSupportElevationInfo();
5407
+ return new ModConstructor(properties);
5408
+ }
5409
+ async function importSymbolsSupportFeatureExpressionInfo() {
5410
+ if (isAMD) {
5411
+ return await window.$arcgis.import("esri/symbols/support/FeatureExpressionInfo");
5412
+ }
5413
+ const module = await import("@arcgis/core/symbols/support/FeatureExpressionInfo.js");
5414
+ return isDefaultModule(module) ? module.default : module;
5415
+ }
5416
+ async function newSymbolsSupportFeatureExpressionInfo(properties) {
5417
+ const ModConstructor = await importSymbolsSupportFeatureExpressionInfo();
5418
+ return new ModConstructor(properties);
5419
+ }
5398
5420
  async function importSymbolsSupportStyleOrigin() {
5399
5421
  if (isAMD) {
5400
5422
  return await window.$arcgis.import("esri/symbols/support/StyleOrigin");
@@ -10240,6 +10262,13 @@ async function importSmartMappingRenderersSupportRendererUtils() {
10240
10262
  const module = await import("@arcgis/core/smartMapping/renderers/support/rendererUtils.js");
10241
10263
  return isDefaultModule(module) ? module.default : module;
10242
10264
  }
10265
+ async function importSmartMappingRenderersSupportSpikeUtils() {
10266
+ if (isAMD) {
10267
+ return await window.$arcgis.import("esri/smartMapping/renderers/support/spikeUtils");
10268
+ }
10269
+ const module = await import("@arcgis/core/smartMapping/renderers/support/spikeUtils.js");
10270
+ return isDefaultModule(module) ? module.default : module;
10271
+ }
10243
10272
  async function importSmartMappingStatisticsClassBreaks() {
10244
10273
  if (isAMD) {
10245
10274
  return await window.$arcgis.import("esri/smartMapping/statistics/classBreaks");
@@ -11284,6 +11313,7 @@ export {
11284
11313
  importSmartMappingRenderersRelationship,
11285
11314
  importSmartMappingRenderersSize,
11286
11315
  importSmartMappingRenderersSupportRendererUtils,
11316
+ importSmartMappingRenderersSupportSpikeUtils,
11287
11317
  importSmartMappingRenderersType,
11288
11318
  importSmartMappingRenderersUnivariateColorSize,
11289
11319
  importSmartMappingStatisticsClassBreaks,
@@ -11346,6 +11376,8 @@ export {
11346
11376
  importSymbolsSimpleMarkerSymbol,
11347
11377
  importSymbolsSupportCimConversionUtils,
11348
11378
  importSymbolsSupportCimSymbolUtils,
11379
+ importSymbolsSupportElevationInfo,
11380
+ importSymbolsSupportFeatureExpressionInfo,
11349
11381
  importSymbolsSupportJsonUtils,
11350
11382
  importSymbolsSupportStyleOrigin,
11351
11383
  importSymbolsSupportSymbol3DVerticalOffset,
@@ -12196,6 +12228,8 @@ export {
12196
12228
  newSymbolsSimpleFillSymbol,
12197
12229
  newSymbolsSimpleLineSymbol,
12198
12230
  newSymbolsSimpleMarkerSymbol,
12231
+ newSymbolsSupportElevationInfo,
12232
+ newSymbolsSupportFeatureExpressionInfo,
12199
12233
  newSymbolsSupportStyleOrigin,
12200
12234
  newSymbolsSupportSymbol3DVerticalOffset,
12201
12235
  newSymbolsSymbol,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcgis/core-adapter",
3
- "version": "4.34.0-next.0",
3
+ "version": "4.34.0-next.10",
4
4
  "description": "ArcGIS Core Adapter",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -21,6 +21,6 @@
21
21
  "tslib": "^2.8.1"
22
22
  },
23
23
  "peerDependencies": {
24
- "@arcgis/core": ">=4.33.0-next <4.34"
24
+ "@arcgis/core": ">=4.34.0-next <4.35"
25
25
  }
26
26
  }