@arcgis/core-adapter 4.34.0-next.1 → 4.34.0-next.3

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
@@ -10264,6 +10264,13 @@ async function importSmartMappingRenderersSupportRendererUtils() {
10264
10264
  const module2 = await import("@arcgis/core/smartMapping/renderers/support/rendererUtils.js");
10265
10265
  return isDefaultModule(module2) ? module2.default : module2;
10266
10266
  }
10267
+ async function importSmartMappingRenderersSupportSpikeUtils() {
10268
+ if (isAMD) {
10269
+ return await window.$arcgis.import("esri/smartMapping/renderers/support/spikeUtils");
10270
+ }
10271
+ const module2 = await import("@arcgis/core/smartMapping/renderers/support/spikeUtils.js");
10272
+ return isDefaultModule(module2) ? module2.default : module2;
10273
+ }
10267
10274
  async function importSmartMappingStatisticsClassBreaks() {
10268
10275
  if (isAMD) {
10269
10276
  return await window.$arcgis.import("esri/smartMapping/statistics/classBreaks");
@@ -11307,6 +11314,7 @@ exports.importSmartMappingRenderersPredominance = importSmartMappingRenderersPre
11307
11314
  exports.importSmartMappingRenderersRelationship = importSmartMappingRenderersRelationship;
11308
11315
  exports.importSmartMappingRenderersSize = importSmartMappingRenderersSize;
11309
11316
  exports.importSmartMappingRenderersSupportRendererUtils = importSmartMappingRenderersSupportRendererUtils;
11317
+ exports.importSmartMappingRenderersSupportSpikeUtils = importSmartMappingRenderersSupportSpikeUtils;
11310
11318
  exports.importSmartMappingRenderersType = importSmartMappingRenderersType;
11311
11319
  exports.importSmartMappingRenderersUnivariateColorSize = importSmartMappingRenderersUnivariateColorSize;
11312
11320
  exports.importSmartMappingStatisticsClassBreaks = importSmartMappingStatisticsClassBreaks;
package/dist/index.d.cts CHANGED
@@ -1833,6 +1833,7 @@ export declare function importSmartMappingRenderersSize(): Promise<typeof __esri
1833
1833
  export declare function importSmartMappingRenderersType(): Promise<typeof __esri.type>;
1834
1834
  export declare function importSmartMappingRenderersUnivariateColorSize(): Promise<typeof __esri.univariateColorSize>;
1835
1835
  export declare function importSmartMappingRenderersSupportRendererUtils(): Promise<typeof __esri.rendererUtils>;
1836
+ export declare function importSmartMappingRenderersSupportSpikeUtils(): Promise<typeof __esri.spikeUtils>;
1836
1837
  export declare function importSmartMappingStatisticsClassBreaks(): Promise<typeof __esri.statisticsClassBreaks>;
1837
1838
  export declare function importSmartMappingStatisticsHeatmapStatistics(): Promise<typeof __esri.heatmapStatistics>;
1838
1839
  export declare function importSmartMappingStatisticsHistogram(): Promise<typeof __esri.histogram>;
package/dist/index.d.ts CHANGED
@@ -1833,6 +1833,7 @@ export declare function importSmartMappingRenderersSize(): Promise<typeof __esri
1833
1833
  export declare function importSmartMappingRenderersType(): Promise<typeof __esri.type>;
1834
1834
  export declare function importSmartMappingRenderersUnivariateColorSize(): Promise<typeof __esri.univariateColorSize>;
1835
1835
  export declare function importSmartMappingRenderersSupportRendererUtils(): Promise<typeof __esri.rendererUtils>;
1836
+ export declare function importSmartMappingRenderersSupportSpikeUtils(): Promise<typeof __esri.spikeUtils>;
1836
1837
  export declare function importSmartMappingStatisticsClassBreaks(): Promise<typeof __esri.statisticsClassBreaks>;
1837
1838
  export declare function importSmartMappingStatisticsHeatmapStatistics(): Promise<typeof __esri.heatmapStatistics>;
1838
1839
  export declare function importSmartMappingStatisticsHistogram(): Promise<typeof __esri.histogram>;
package/dist/index.js CHANGED
@@ -10240,6 +10240,13 @@ async function importSmartMappingRenderersSupportRendererUtils() {
10240
10240
  const module = await import("@arcgis/core/smartMapping/renderers/support/rendererUtils.js");
10241
10241
  return isDefaultModule(module) ? module.default : module;
10242
10242
  }
10243
+ async function importSmartMappingRenderersSupportSpikeUtils() {
10244
+ if (isAMD) {
10245
+ return await window.$arcgis.import("esri/smartMapping/renderers/support/spikeUtils");
10246
+ }
10247
+ const module = await import("@arcgis/core/smartMapping/renderers/support/spikeUtils.js");
10248
+ return isDefaultModule(module) ? module.default : module;
10249
+ }
10243
10250
  async function importSmartMappingStatisticsClassBreaks() {
10244
10251
  if (isAMD) {
10245
10252
  return await window.$arcgis.import("esri/smartMapping/statistics/classBreaks");
@@ -11284,6 +11291,7 @@ export {
11284
11291
  importSmartMappingRenderersRelationship,
11285
11292
  importSmartMappingRenderersSize,
11286
11293
  importSmartMappingRenderersSupportRendererUtils,
11294
+ importSmartMappingRenderersSupportSpikeUtils,
11287
11295
  importSmartMappingRenderersType,
11288
11296
  importSmartMappingRenderersUnivariateColorSize,
11289
11297
  importSmartMappingStatisticsClassBreaks,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcgis/core-adapter",
3
- "version": "4.34.0-next.1",
3
+ "version": "4.34.0-next.3",
4
4
  "description": "ArcGIS Core Adapter",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",