@arcgis/core-adapter 4.34.0-next.3 → 4.34.0-next.31
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 +95 -1
- package/dist/index.d.cts +14 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +95 -1
- package/package.json +1 -1
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() {
|
|
@@ -293,6 +293,39 @@ async function newCoreWorkersConnection() {
|
|
|
293
293
|
const ModConstructor = await importCoreWorkersConnection();
|
|
294
294
|
return new ModConstructor();
|
|
295
295
|
}
|
|
296
|
+
async function importEffectsFocusAreas() {
|
|
297
|
+
if (isAMD) {
|
|
298
|
+
return await window.$arcgis.import("esri/effects/FocusAreas");
|
|
299
|
+
}
|
|
300
|
+
const module2 = await import("@arcgis/core/effects/FocusAreas.js");
|
|
301
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
302
|
+
}
|
|
303
|
+
async function newEffectsFocusAreas(properties) {
|
|
304
|
+
const ModConstructor = await importEffectsFocusAreas();
|
|
305
|
+
return new ModConstructor(properties);
|
|
306
|
+
}
|
|
307
|
+
async function importEffectsFocusArea() {
|
|
308
|
+
if (isAMD) {
|
|
309
|
+
return await window.$arcgis.import("esri/effects/FocusArea");
|
|
310
|
+
}
|
|
311
|
+
const module2 = await import("@arcgis/core/effects/FocusArea.js");
|
|
312
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
313
|
+
}
|
|
314
|
+
async function newEffectsFocusArea(properties) {
|
|
315
|
+
const ModConstructor = await importEffectsFocusArea();
|
|
316
|
+
return new ModConstructor(properties);
|
|
317
|
+
}
|
|
318
|
+
async function importEffectsFocusAreaOutline() {
|
|
319
|
+
if (isAMD) {
|
|
320
|
+
return await window.$arcgis.import("esri/effects/FocusAreaOutline");
|
|
321
|
+
}
|
|
322
|
+
const module2 = await import("@arcgis/core/effects/FocusAreaOutline.js");
|
|
323
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
324
|
+
}
|
|
325
|
+
async function newEffectsFocusAreaOutline(properties) {
|
|
326
|
+
const ModConstructor = await importEffectsFocusAreaOutline();
|
|
327
|
+
return new ModConstructor(properties);
|
|
328
|
+
}
|
|
296
329
|
async function importFormElementsAttachmentElement() {
|
|
297
330
|
if (isAMD) {
|
|
298
331
|
return await window.$arcgis.import("esri/form/elements/AttachmentElement");
|
|
@@ -1811,6 +1844,17 @@ async function newLayersSupportPixelBlock(properties) {
|
|
|
1811
1844
|
const ModConstructor = await importLayersSupportPixelBlock();
|
|
1812
1845
|
return new ModConstructor(properties);
|
|
1813
1846
|
}
|
|
1847
|
+
async function importLayersSupportPlaybackInfo() {
|
|
1848
|
+
if (isAMD) {
|
|
1849
|
+
return await window.$arcgis.import("esri/layers/support/PlaybackInfo");
|
|
1850
|
+
}
|
|
1851
|
+
const module2 = await import("@arcgis/core/layers/support/PlaybackInfo.js");
|
|
1852
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1853
|
+
}
|
|
1854
|
+
async function newLayersSupportPlaybackInfo(properties) {
|
|
1855
|
+
const ModConstructor = await importLayersSupportPlaybackInfo();
|
|
1856
|
+
return new ModConstructor(properties);
|
|
1857
|
+
}
|
|
1814
1858
|
async function importLayersSupportPublishingInfo() {
|
|
1815
1859
|
if (isAMD) {
|
|
1816
1860
|
return await window.$arcgis.import("esri/layers/support/PublishingInfo");
|
|
@@ -5419,6 +5463,28 @@ async function newSymbolsSimpleMarkerSymbol(properties) {
|
|
|
5419
5463
|
const ModConstructor = await importSymbolsSimpleMarkerSymbol();
|
|
5420
5464
|
return new ModConstructor(properties);
|
|
5421
5465
|
}
|
|
5466
|
+
async function importSymbolsSupportElevationInfo() {
|
|
5467
|
+
if (isAMD) {
|
|
5468
|
+
return await window.$arcgis.import("esri/symbols/support/ElevationInfo");
|
|
5469
|
+
}
|
|
5470
|
+
const module2 = await import("@arcgis/core/symbols/support/ElevationInfo.js");
|
|
5471
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5472
|
+
}
|
|
5473
|
+
async function newSymbolsSupportElevationInfo(properties) {
|
|
5474
|
+
const ModConstructor = await importSymbolsSupportElevationInfo();
|
|
5475
|
+
return new ModConstructor(properties);
|
|
5476
|
+
}
|
|
5477
|
+
async function importSymbolsSupportFeatureExpressionInfo() {
|
|
5478
|
+
if (isAMD) {
|
|
5479
|
+
return await window.$arcgis.import("esri/symbols/support/FeatureExpressionInfo");
|
|
5480
|
+
}
|
|
5481
|
+
const module2 = await import("@arcgis/core/symbols/support/FeatureExpressionInfo.js");
|
|
5482
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5483
|
+
}
|
|
5484
|
+
async function newSymbolsSupportFeatureExpressionInfo(properties) {
|
|
5485
|
+
const ModConstructor = await importSymbolsSupportFeatureExpressionInfo();
|
|
5486
|
+
return new ModConstructor(properties);
|
|
5487
|
+
}
|
|
5422
5488
|
async function importSymbolsSupportStyleOrigin() {
|
|
5423
5489
|
if (isAMD) {
|
|
5424
5490
|
return await window.$arcgis.import("esri/symbols/support/StyleOrigin");
|
|
@@ -10621,6 +10687,13 @@ async function importApplicationsComponentsReactiveUtils() {
|
|
|
10621
10687
|
const module2 = await import("@arcgis/core/applications/Components/reactiveUtils.js");
|
|
10622
10688
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10623
10689
|
}
|
|
10690
|
+
async function importApplicationsComponentsSanitizerUtils() {
|
|
10691
|
+
if (isAMD) {
|
|
10692
|
+
return await window.$arcgis.import("esri/applications/Components/sanitizerUtils");
|
|
10693
|
+
}
|
|
10694
|
+
const module2 = await import("@arcgis/core/applications/Components/sanitizerUtils.js");
|
|
10695
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10696
|
+
}
|
|
10624
10697
|
async function importApplicationsComponentsSelectionOperation() {
|
|
10625
10698
|
if (isAMD) {
|
|
10626
10699
|
return await window.$arcgis.import("esri/applications/Components/SelectionOperation");
|
|
@@ -10635,6 +10708,13 @@ async function importApplicationsComponentsSketchTooltipControls() {
|
|
|
10635
10708
|
const module2 = await import("@arcgis/core/applications/Components/SketchTooltipControls.js");
|
|
10636
10709
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10637
10710
|
}
|
|
10711
|
+
async function importApplicationsComponentsStringUtils() {
|
|
10712
|
+
if (isAMD) {
|
|
10713
|
+
return await window.$arcgis.import("esri/applications/Components/stringUtils");
|
|
10714
|
+
}
|
|
10715
|
+
const module2 = await import("@arcgis/core/applications/Components/stringUtils.js");
|
|
10716
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10717
|
+
}
|
|
10638
10718
|
async function importApplicationsComponentsStyleUtils() {
|
|
10639
10719
|
if (isAMD) {
|
|
10640
10720
|
return await window.$arcgis.import("esri/applications/Components/styleUtils");
|
|
@@ -10715,8 +10795,10 @@ exports.importApplicationsComponentsLayerOriginUtils = importApplicationsCompone
|
|
|
10715
10795
|
exports.importApplicationsComponentsLayersEffectsJsonUtils = importApplicationsComponentsLayersEffectsJsonUtils;
|
|
10716
10796
|
exports.importApplicationsComponentsPreviewSymbol2D = importApplicationsComponentsPreviewSymbol2D;
|
|
10717
10797
|
exports.importApplicationsComponentsReactiveUtils = importApplicationsComponentsReactiveUtils;
|
|
10798
|
+
exports.importApplicationsComponentsSanitizerUtils = importApplicationsComponentsSanitizerUtils;
|
|
10718
10799
|
exports.importApplicationsComponentsSelectionOperation = importApplicationsComponentsSelectionOperation;
|
|
10719
10800
|
exports.importApplicationsComponentsSketchTooltipControls = importApplicationsComponentsSketchTooltipControls;
|
|
10801
|
+
exports.importApplicationsComponentsStringUtils = importApplicationsComponentsStringUtils;
|
|
10720
10802
|
exports.importApplicationsComponentsStyleUtils = importApplicationsComponentsStyleUtils;
|
|
10721
10803
|
exports.importApplicationsComponentsSvgUtils = importApplicationsComponentsSvgUtils;
|
|
10722
10804
|
exports.importApplicationsComponentsViewUtils = importApplicationsComponentsViewUtils;
|
|
@@ -10748,6 +10830,9 @@ exports.importCoreWorkers = importCoreWorkers;
|
|
|
10748
10830
|
exports.importCoreWorkersConnection = importCoreWorkersConnection;
|
|
10749
10831
|
exports.importEditingSharedTemplatesSharedTemplate = importEditingSharedTemplatesSharedTemplate;
|
|
10750
10832
|
exports.importEditingSharedTemplatesSharedTemplateMetadata = importEditingSharedTemplatesSharedTemplateMetadata;
|
|
10833
|
+
exports.importEffectsFocusArea = importEffectsFocusArea;
|
|
10834
|
+
exports.importEffectsFocusAreaOutline = importEffectsFocusAreaOutline;
|
|
10835
|
+
exports.importEffectsFocusAreas = importEffectsFocusAreas;
|
|
10751
10836
|
exports.importFormElements = importFormElements;
|
|
10752
10837
|
exports.importFormElementsAttachmentElement = importFormElementsAttachmentElement;
|
|
10753
10838
|
exports.importFormElementsElement = importFormElementsElement;
|
|
@@ -10961,6 +11046,7 @@ exports.importLayersSupportParquetEncodingLocation = importLayersSupportParquetE
|
|
|
10961
11046
|
exports.importLayersSupportParquetEncodingWkb = importLayersSupportParquetEncodingWkb;
|
|
10962
11047
|
exports.importLayersSupportParquetUtils = importLayersSupportParquetUtils;
|
|
10963
11048
|
exports.importLayersSupportPixelBlock = importLayersSupportPixelBlock;
|
|
11049
|
+
exports.importLayersSupportPlaybackInfo = importLayersSupportPlaybackInfo;
|
|
10964
11050
|
exports.importLayersSupportPublishingInfo = importLayersSupportPublishingInfo;
|
|
10965
11051
|
exports.importLayersSupportRangeDomain = importLayersSupportRangeDomain;
|
|
10966
11052
|
exports.importLayersSupportRasterBandInfo = importLayersSupportRasterBandInfo;
|
|
@@ -11377,6 +11463,8 @@ exports.importSymbolsSimpleLineSymbol = importSymbolsSimpleLineSymbol;
|
|
|
11377
11463
|
exports.importSymbolsSimpleMarkerSymbol = importSymbolsSimpleMarkerSymbol;
|
|
11378
11464
|
exports.importSymbolsSupportCimConversionUtils = importSymbolsSupportCimConversionUtils;
|
|
11379
11465
|
exports.importSymbolsSupportCimSymbolUtils = importSymbolsSupportCimSymbolUtils;
|
|
11466
|
+
exports.importSymbolsSupportElevationInfo = importSymbolsSupportElevationInfo;
|
|
11467
|
+
exports.importSymbolsSupportFeatureExpressionInfo = importSymbolsSupportFeatureExpressionInfo;
|
|
11380
11468
|
exports.importSymbolsSupportJsonUtils = importSymbolsSupportJsonUtils;
|
|
11381
11469
|
exports.importSymbolsSupportStyleOrigin = importSymbolsSupportStyleOrigin;
|
|
11382
11470
|
exports.importSymbolsSupportSymbol3DVerticalOffset = importSymbolsSupportSymbol3DVerticalOffset;
|
|
@@ -11762,6 +11850,9 @@ exports.newCoreCollection = newCoreCollection;
|
|
|
11762
11850
|
exports.newCoreError = newCoreError;
|
|
11763
11851
|
exports.newCoreHandles = newCoreHandles;
|
|
11764
11852
|
exports.newCoreWorkersConnection = newCoreWorkersConnection;
|
|
11853
|
+
exports.newEffectsFocusArea = newEffectsFocusArea;
|
|
11854
|
+
exports.newEffectsFocusAreaOutline = newEffectsFocusAreaOutline;
|
|
11855
|
+
exports.newEffectsFocusAreas = newEffectsFocusAreas;
|
|
11765
11856
|
exports.newFormElementsAttachmentElement = newFormElementsAttachmentElement;
|
|
11766
11857
|
exports.newFormElementsElement = newFormElementsElement;
|
|
11767
11858
|
exports.newFormElementsFieldElement = newFormElementsFieldElement;
|
|
@@ -11899,6 +11990,7 @@ exports.newLayersSupportOrderByInfo = newLayersSupportOrderByInfo;
|
|
|
11899
11990
|
exports.newLayersSupportParquetEncodingLocation = newLayersSupportParquetEncodingLocation;
|
|
11900
11991
|
exports.newLayersSupportParquetEncodingWkb = newLayersSupportParquetEncodingWkb;
|
|
11901
11992
|
exports.newLayersSupportPixelBlock = newLayersSupportPixelBlock;
|
|
11993
|
+
exports.newLayersSupportPlaybackInfo = newLayersSupportPlaybackInfo;
|
|
11902
11994
|
exports.newLayersSupportPublishingInfo = newLayersSupportPublishingInfo;
|
|
11903
11995
|
exports.newLayersSupportRangeDomain = newLayersSupportRangeDomain;
|
|
11904
11996
|
exports.newLayersSupportRasterBandInfo = newLayersSupportRasterBandInfo;
|
|
@@ -12227,6 +12319,8 @@ exports.newSymbolsPolygonSymbol3D = newSymbolsPolygonSymbol3D;
|
|
|
12227
12319
|
exports.newSymbolsSimpleFillSymbol = newSymbolsSimpleFillSymbol;
|
|
12228
12320
|
exports.newSymbolsSimpleLineSymbol = newSymbolsSimpleLineSymbol;
|
|
12229
12321
|
exports.newSymbolsSimpleMarkerSymbol = newSymbolsSimpleMarkerSymbol;
|
|
12322
|
+
exports.newSymbolsSupportElevationInfo = newSymbolsSupportElevationInfo;
|
|
12323
|
+
exports.newSymbolsSupportFeatureExpressionInfo = newSymbolsSupportFeatureExpressionInfo;
|
|
12230
12324
|
exports.newSymbolsSupportStyleOrigin = newSymbolsSupportStyleOrigin;
|
|
12231
12325
|
exports.newSymbolsSupportSymbol3DVerticalOffset = newSymbolsSupportSymbol3DVerticalOffset;
|
|
12232
12326
|
exports.newSymbolsSymbol = newSymbolsSymbol;
|
package/dist/index.d.cts
CHANGED
|
@@ -61,6 +61,12 @@ export declare function importCoreHandles(): Promise<typeof __esri.Handles>;
|
|
|
61
61
|
export declare function newCoreHandles(): Promise<__esri.Handles>;
|
|
62
62
|
export declare function importCoreWorkersConnection(): Promise<typeof __esri.Connection>;
|
|
63
63
|
export declare function newCoreWorkersConnection(): Promise<__esri.Connection>;
|
|
64
|
+
export declare function importEffectsFocusAreas(): Promise<typeof __esri.FocusAreas>;
|
|
65
|
+
export declare function newEffectsFocusAreas(properties: __esri.FocusAreasProperties): Promise<__esri.FocusAreas>;
|
|
66
|
+
export declare function importEffectsFocusArea(): Promise<typeof __esri.FocusArea>;
|
|
67
|
+
export declare function newEffectsFocusArea(properties: __esri.FocusAreaProperties): Promise<__esri.FocusArea>;
|
|
68
|
+
export declare function importEffectsFocusAreaOutline(): Promise<typeof __esri.FocusAreaOutline>;
|
|
69
|
+
export declare function newEffectsFocusAreaOutline(properties: __esri.FocusAreaOutlineProperties): Promise<__esri.FocusAreaOutline>;
|
|
64
70
|
export declare function importFormElementsAttachmentElement(): Promise<typeof __esri.AttachmentElement>;
|
|
65
71
|
export declare function newFormElementsAttachmentElement(properties: __esri.AttachmentElementProperties): Promise<__esri.AttachmentElement>;
|
|
66
72
|
export declare function importFormElementsElement(): Promise<typeof __esri.Element>;
|
|
@@ -337,6 +343,8 @@ export declare function importLayersSupportParquetEncodingWkb(): Promise<typeof
|
|
|
337
343
|
export declare function newLayersSupportParquetEncodingWkb(properties: __esri.ParquetEncodingWkbProperties): Promise<__esri.ParquetEncodingWkb>;
|
|
338
344
|
export declare function importLayersSupportPixelBlock(): Promise<typeof __esri.PixelBlock>;
|
|
339
345
|
export declare function newLayersSupportPixelBlock(properties: __esri.PixelBlockProperties): Promise<__esri.PixelBlock>;
|
|
346
|
+
export declare function importLayersSupportPlaybackInfo(): Promise<typeof __esri.PlaybackInfo>;
|
|
347
|
+
export declare function newLayersSupportPlaybackInfo(properties: __esri.PlaybackInfoProperties): Promise<__esri.PlaybackInfo>;
|
|
340
348
|
export declare function importLayersSupportPublishingInfo(): Promise<typeof __esri.PublishingInfo>;
|
|
341
349
|
export declare function newLayersSupportPublishingInfo(properties: __esri.PublishingInfoProperties): Promise<__esri.PublishingInfo>;
|
|
342
350
|
export declare function importLayersSupportRangeDomain(): Promise<typeof __esri.RangeDomain>;
|
|
@@ -993,6 +1001,10 @@ export declare function importSymbolsSimpleLineSymbol(): Promise<typeof __esri.S
|
|
|
993
1001
|
export declare function newSymbolsSimpleLineSymbol(properties: __esri.SimpleLineSymbolProperties): Promise<__esri.SimpleLineSymbol>;
|
|
994
1002
|
export declare function importSymbolsSimpleMarkerSymbol(): Promise<typeof __esri.SimpleMarkerSymbol>;
|
|
995
1003
|
export declare function newSymbolsSimpleMarkerSymbol(properties: __esri.SimpleMarkerSymbolProperties): Promise<__esri.SimpleMarkerSymbol>;
|
|
1004
|
+
export declare function importSymbolsSupportElevationInfo(): Promise<typeof __esri.ElevationInfo>;
|
|
1005
|
+
export declare function newSymbolsSupportElevationInfo(properties: __esri.ElevationInfoProperties): Promise<__esri.ElevationInfo>;
|
|
1006
|
+
export declare function importSymbolsSupportFeatureExpressionInfo(): Promise<typeof __esri.FeatureExpressionInfo>;
|
|
1007
|
+
export declare function newSymbolsSupportFeatureExpressionInfo(properties: __esri.FeatureExpressionInfoProperties): Promise<__esri.FeatureExpressionInfo>;
|
|
996
1008
|
export declare function importSymbolsSupportStyleOrigin(): Promise<typeof __esri.StyleOrigin>;
|
|
997
1009
|
export declare function newSymbolsSupportStyleOrigin(properties: __esri.StyleOriginProperties): Promise<__esri.StyleOrigin>;
|
|
998
1010
|
export declare function importSymbolsSupportSymbol3DVerticalOffset(): Promise<typeof __esri.Symbol3DVerticalOffset>;
|
|
@@ -1884,8 +1896,10 @@ export declare function importApplicationsComponentsLayerOriginUtils(): Promise<
|
|
|
1884
1896
|
export declare function importApplicationsComponentsLayersEffectsJsonUtils(): Promise<typeof __esri.layersEffectsJsonUtils>;
|
|
1885
1897
|
export declare function importApplicationsComponentsPreviewSymbol2D(): Promise<typeof __esri.previewSymbol2D>;
|
|
1886
1898
|
export declare function importApplicationsComponentsReactiveUtils(): Promise<typeof __esri.ComponentsReactiveUtils>;
|
|
1899
|
+
export declare function importApplicationsComponentsSanitizerUtils(): Promise<typeof __esri.sanitizerUtils>;
|
|
1887
1900
|
export declare function importApplicationsComponentsSelectionOperation(): Promise<any>;
|
|
1888
1901
|
export declare function importApplicationsComponentsSketchTooltipControls(): Promise<any>;
|
|
1902
|
+
export declare function importApplicationsComponentsStringUtils(): Promise<typeof __esri.stringUtils>;
|
|
1889
1903
|
export declare function importApplicationsComponentsStyleUtils(): Promise<typeof __esri.styleUtils>;
|
|
1890
1904
|
export declare function importApplicationsComponentsSvgUtils(): Promise<typeof __esri.svgUtils>;
|
|
1891
1905
|
export declare function importApplicationsComponentsViewUtils(): Promise<typeof __esri.viewUtils>;
|
package/dist/index.d.ts
CHANGED
|
@@ -61,6 +61,12 @@ export declare function importCoreHandles(): Promise<typeof __esri.Handles>;
|
|
|
61
61
|
export declare function newCoreHandles(): Promise<__esri.Handles>;
|
|
62
62
|
export declare function importCoreWorkersConnection(): Promise<typeof __esri.Connection>;
|
|
63
63
|
export declare function newCoreWorkersConnection(): Promise<__esri.Connection>;
|
|
64
|
+
export declare function importEffectsFocusAreas(): Promise<typeof __esri.FocusAreas>;
|
|
65
|
+
export declare function newEffectsFocusAreas(properties: __esri.FocusAreasProperties): Promise<__esri.FocusAreas>;
|
|
66
|
+
export declare function importEffectsFocusArea(): Promise<typeof __esri.FocusArea>;
|
|
67
|
+
export declare function newEffectsFocusArea(properties: __esri.FocusAreaProperties): Promise<__esri.FocusArea>;
|
|
68
|
+
export declare function importEffectsFocusAreaOutline(): Promise<typeof __esri.FocusAreaOutline>;
|
|
69
|
+
export declare function newEffectsFocusAreaOutline(properties: __esri.FocusAreaOutlineProperties): Promise<__esri.FocusAreaOutline>;
|
|
64
70
|
export declare function importFormElementsAttachmentElement(): Promise<typeof __esri.AttachmentElement>;
|
|
65
71
|
export declare function newFormElementsAttachmentElement(properties: __esri.AttachmentElementProperties): Promise<__esri.AttachmentElement>;
|
|
66
72
|
export declare function importFormElementsElement(): Promise<typeof __esri.Element>;
|
|
@@ -337,6 +343,8 @@ export declare function importLayersSupportParquetEncodingWkb(): Promise<typeof
|
|
|
337
343
|
export declare function newLayersSupportParquetEncodingWkb(properties: __esri.ParquetEncodingWkbProperties): Promise<__esri.ParquetEncodingWkb>;
|
|
338
344
|
export declare function importLayersSupportPixelBlock(): Promise<typeof __esri.PixelBlock>;
|
|
339
345
|
export declare function newLayersSupportPixelBlock(properties: __esri.PixelBlockProperties): Promise<__esri.PixelBlock>;
|
|
346
|
+
export declare function importLayersSupportPlaybackInfo(): Promise<typeof __esri.PlaybackInfo>;
|
|
347
|
+
export declare function newLayersSupportPlaybackInfo(properties: __esri.PlaybackInfoProperties): Promise<__esri.PlaybackInfo>;
|
|
340
348
|
export declare function importLayersSupportPublishingInfo(): Promise<typeof __esri.PublishingInfo>;
|
|
341
349
|
export declare function newLayersSupportPublishingInfo(properties: __esri.PublishingInfoProperties): Promise<__esri.PublishingInfo>;
|
|
342
350
|
export declare function importLayersSupportRangeDomain(): Promise<typeof __esri.RangeDomain>;
|
|
@@ -993,6 +1001,10 @@ export declare function importSymbolsSimpleLineSymbol(): Promise<typeof __esri.S
|
|
|
993
1001
|
export declare function newSymbolsSimpleLineSymbol(properties: __esri.SimpleLineSymbolProperties): Promise<__esri.SimpleLineSymbol>;
|
|
994
1002
|
export declare function importSymbolsSimpleMarkerSymbol(): Promise<typeof __esri.SimpleMarkerSymbol>;
|
|
995
1003
|
export declare function newSymbolsSimpleMarkerSymbol(properties: __esri.SimpleMarkerSymbolProperties): Promise<__esri.SimpleMarkerSymbol>;
|
|
1004
|
+
export declare function importSymbolsSupportElevationInfo(): Promise<typeof __esri.ElevationInfo>;
|
|
1005
|
+
export declare function newSymbolsSupportElevationInfo(properties: __esri.ElevationInfoProperties): Promise<__esri.ElevationInfo>;
|
|
1006
|
+
export declare function importSymbolsSupportFeatureExpressionInfo(): Promise<typeof __esri.FeatureExpressionInfo>;
|
|
1007
|
+
export declare function newSymbolsSupportFeatureExpressionInfo(properties: __esri.FeatureExpressionInfoProperties): Promise<__esri.FeatureExpressionInfo>;
|
|
996
1008
|
export declare function importSymbolsSupportStyleOrigin(): Promise<typeof __esri.StyleOrigin>;
|
|
997
1009
|
export declare function newSymbolsSupportStyleOrigin(properties: __esri.StyleOriginProperties): Promise<__esri.StyleOrigin>;
|
|
998
1010
|
export declare function importSymbolsSupportSymbol3DVerticalOffset(): Promise<typeof __esri.Symbol3DVerticalOffset>;
|
|
@@ -1884,8 +1896,10 @@ export declare function importApplicationsComponentsLayerOriginUtils(): Promise<
|
|
|
1884
1896
|
export declare function importApplicationsComponentsLayersEffectsJsonUtils(): Promise<typeof __esri.layersEffectsJsonUtils>;
|
|
1885
1897
|
export declare function importApplicationsComponentsPreviewSymbol2D(): Promise<typeof __esri.previewSymbol2D>;
|
|
1886
1898
|
export declare function importApplicationsComponentsReactiveUtils(): Promise<typeof __esri.ComponentsReactiveUtils>;
|
|
1899
|
+
export declare function importApplicationsComponentsSanitizerUtils(): Promise<typeof __esri.sanitizerUtils>;
|
|
1887
1900
|
export declare function importApplicationsComponentsSelectionOperation(): Promise<any>;
|
|
1888
1901
|
export declare function importApplicationsComponentsSketchTooltipControls(): Promise<any>;
|
|
1902
|
+
export declare function importApplicationsComponentsStringUtils(): Promise<typeof __esri.stringUtils>;
|
|
1889
1903
|
export declare function importApplicationsComponentsStyleUtils(): Promise<typeof __esri.styleUtils>;
|
|
1890
1904
|
export declare function importApplicationsComponentsSvgUtils(): Promise<typeof __esri.svgUtils>;
|
|
1891
1905
|
export declare function importApplicationsComponentsViewUtils(): Promise<typeof __esri.viewUtils>;
|
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() {
|
|
@@ -269,6 +269,39 @@ async function newCoreWorkersConnection() {
|
|
|
269
269
|
const ModConstructor = await importCoreWorkersConnection();
|
|
270
270
|
return new ModConstructor();
|
|
271
271
|
}
|
|
272
|
+
async function importEffectsFocusAreas() {
|
|
273
|
+
if (isAMD) {
|
|
274
|
+
return await window.$arcgis.import("esri/effects/FocusAreas");
|
|
275
|
+
}
|
|
276
|
+
const module = await import("@arcgis/core/effects/FocusAreas.js");
|
|
277
|
+
return isDefaultModule(module) ? module.default : module;
|
|
278
|
+
}
|
|
279
|
+
async function newEffectsFocusAreas(properties) {
|
|
280
|
+
const ModConstructor = await importEffectsFocusAreas();
|
|
281
|
+
return new ModConstructor(properties);
|
|
282
|
+
}
|
|
283
|
+
async function importEffectsFocusArea() {
|
|
284
|
+
if (isAMD) {
|
|
285
|
+
return await window.$arcgis.import("esri/effects/FocusArea");
|
|
286
|
+
}
|
|
287
|
+
const module = await import("@arcgis/core/effects/FocusArea.js");
|
|
288
|
+
return isDefaultModule(module) ? module.default : module;
|
|
289
|
+
}
|
|
290
|
+
async function newEffectsFocusArea(properties) {
|
|
291
|
+
const ModConstructor = await importEffectsFocusArea();
|
|
292
|
+
return new ModConstructor(properties);
|
|
293
|
+
}
|
|
294
|
+
async function importEffectsFocusAreaOutline() {
|
|
295
|
+
if (isAMD) {
|
|
296
|
+
return await window.$arcgis.import("esri/effects/FocusAreaOutline");
|
|
297
|
+
}
|
|
298
|
+
const module = await import("@arcgis/core/effects/FocusAreaOutline.js");
|
|
299
|
+
return isDefaultModule(module) ? module.default : module;
|
|
300
|
+
}
|
|
301
|
+
async function newEffectsFocusAreaOutline(properties) {
|
|
302
|
+
const ModConstructor = await importEffectsFocusAreaOutline();
|
|
303
|
+
return new ModConstructor(properties);
|
|
304
|
+
}
|
|
272
305
|
async function importFormElementsAttachmentElement() {
|
|
273
306
|
if (isAMD) {
|
|
274
307
|
return await window.$arcgis.import("esri/form/elements/AttachmentElement");
|
|
@@ -1787,6 +1820,17 @@ async function newLayersSupportPixelBlock(properties) {
|
|
|
1787
1820
|
const ModConstructor = await importLayersSupportPixelBlock();
|
|
1788
1821
|
return new ModConstructor(properties);
|
|
1789
1822
|
}
|
|
1823
|
+
async function importLayersSupportPlaybackInfo() {
|
|
1824
|
+
if (isAMD) {
|
|
1825
|
+
return await window.$arcgis.import("esri/layers/support/PlaybackInfo");
|
|
1826
|
+
}
|
|
1827
|
+
const module = await import("@arcgis/core/layers/support/PlaybackInfo.js");
|
|
1828
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1829
|
+
}
|
|
1830
|
+
async function newLayersSupportPlaybackInfo(properties) {
|
|
1831
|
+
const ModConstructor = await importLayersSupportPlaybackInfo();
|
|
1832
|
+
return new ModConstructor(properties);
|
|
1833
|
+
}
|
|
1790
1834
|
async function importLayersSupportPublishingInfo() {
|
|
1791
1835
|
if (isAMD) {
|
|
1792
1836
|
return await window.$arcgis.import("esri/layers/support/PublishingInfo");
|
|
@@ -5395,6 +5439,28 @@ async function newSymbolsSimpleMarkerSymbol(properties) {
|
|
|
5395
5439
|
const ModConstructor = await importSymbolsSimpleMarkerSymbol();
|
|
5396
5440
|
return new ModConstructor(properties);
|
|
5397
5441
|
}
|
|
5442
|
+
async function importSymbolsSupportElevationInfo() {
|
|
5443
|
+
if (isAMD) {
|
|
5444
|
+
return await window.$arcgis.import("esri/symbols/support/ElevationInfo");
|
|
5445
|
+
}
|
|
5446
|
+
const module = await import("@arcgis/core/symbols/support/ElevationInfo.js");
|
|
5447
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5448
|
+
}
|
|
5449
|
+
async function newSymbolsSupportElevationInfo(properties) {
|
|
5450
|
+
const ModConstructor = await importSymbolsSupportElevationInfo();
|
|
5451
|
+
return new ModConstructor(properties);
|
|
5452
|
+
}
|
|
5453
|
+
async function importSymbolsSupportFeatureExpressionInfo() {
|
|
5454
|
+
if (isAMD) {
|
|
5455
|
+
return await window.$arcgis.import("esri/symbols/support/FeatureExpressionInfo");
|
|
5456
|
+
}
|
|
5457
|
+
const module = await import("@arcgis/core/symbols/support/FeatureExpressionInfo.js");
|
|
5458
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5459
|
+
}
|
|
5460
|
+
async function newSymbolsSupportFeatureExpressionInfo(properties) {
|
|
5461
|
+
const ModConstructor = await importSymbolsSupportFeatureExpressionInfo();
|
|
5462
|
+
return new ModConstructor(properties);
|
|
5463
|
+
}
|
|
5398
5464
|
async function importSymbolsSupportStyleOrigin() {
|
|
5399
5465
|
if (isAMD) {
|
|
5400
5466
|
return await window.$arcgis.import("esri/symbols/support/StyleOrigin");
|
|
@@ -10597,6 +10663,13 @@ async function importApplicationsComponentsReactiveUtils() {
|
|
|
10597
10663
|
const module = await import("@arcgis/core/applications/Components/reactiveUtils.js");
|
|
10598
10664
|
return isDefaultModule(module) ? module.default : module;
|
|
10599
10665
|
}
|
|
10666
|
+
async function importApplicationsComponentsSanitizerUtils() {
|
|
10667
|
+
if (isAMD) {
|
|
10668
|
+
return await window.$arcgis.import("esri/applications/Components/sanitizerUtils");
|
|
10669
|
+
}
|
|
10670
|
+
const module = await import("@arcgis/core/applications/Components/sanitizerUtils.js");
|
|
10671
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10672
|
+
}
|
|
10600
10673
|
async function importApplicationsComponentsSelectionOperation() {
|
|
10601
10674
|
if (isAMD) {
|
|
10602
10675
|
return await window.$arcgis.import("esri/applications/Components/SelectionOperation");
|
|
@@ -10611,6 +10684,13 @@ async function importApplicationsComponentsSketchTooltipControls() {
|
|
|
10611
10684
|
const module = await import("@arcgis/core/applications/Components/SketchTooltipControls.js");
|
|
10612
10685
|
return isDefaultModule(module) ? module.default : module;
|
|
10613
10686
|
}
|
|
10687
|
+
async function importApplicationsComponentsStringUtils() {
|
|
10688
|
+
if (isAMD) {
|
|
10689
|
+
return await window.$arcgis.import("esri/applications/Components/stringUtils");
|
|
10690
|
+
}
|
|
10691
|
+
const module = await import("@arcgis/core/applications/Components/stringUtils.js");
|
|
10692
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10693
|
+
}
|
|
10614
10694
|
async function importApplicationsComponentsStyleUtils() {
|
|
10615
10695
|
if (isAMD) {
|
|
10616
10696
|
return await window.$arcgis.import("esri/applications/Components/styleUtils");
|
|
@@ -10692,8 +10772,10 @@ export {
|
|
|
10692
10772
|
importApplicationsComponentsLayersEffectsJsonUtils,
|
|
10693
10773
|
importApplicationsComponentsPreviewSymbol2D,
|
|
10694
10774
|
importApplicationsComponentsReactiveUtils,
|
|
10775
|
+
importApplicationsComponentsSanitizerUtils,
|
|
10695
10776
|
importApplicationsComponentsSelectionOperation,
|
|
10696
10777
|
importApplicationsComponentsSketchTooltipControls,
|
|
10778
|
+
importApplicationsComponentsStringUtils,
|
|
10697
10779
|
importApplicationsComponentsStyleUtils,
|
|
10698
10780
|
importApplicationsComponentsSvgUtils,
|
|
10699
10781
|
importApplicationsComponentsViewUtils,
|
|
@@ -10725,6 +10807,9 @@ export {
|
|
|
10725
10807
|
importCoreWorkersConnection,
|
|
10726
10808
|
importEditingSharedTemplatesSharedTemplate,
|
|
10727
10809
|
importEditingSharedTemplatesSharedTemplateMetadata,
|
|
10810
|
+
importEffectsFocusArea,
|
|
10811
|
+
importEffectsFocusAreaOutline,
|
|
10812
|
+
importEffectsFocusAreas,
|
|
10728
10813
|
importFormElements,
|
|
10729
10814
|
importFormElementsAttachmentElement,
|
|
10730
10815
|
importFormElementsElement,
|
|
@@ -10938,6 +11023,7 @@ export {
|
|
|
10938
11023
|
importLayersSupportParquetEncodingWkb,
|
|
10939
11024
|
importLayersSupportParquetUtils,
|
|
10940
11025
|
importLayersSupportPixelBlock,
|
|
11026
|
+
importLayersSupportPlaybackInfo,
|
|
10941
11027
|
importLayersSupportPublishingInfo,
|
|
10942
11028
|
importLayersSupportRangeDomain,
|
|
10943
11029
|
importLayersSupportRasterBandInfo,
|
|
@@ -11354,6 +11440,8 @@ export {
|
|
|
11354
11440
|
importSymbolsSimpleMarkerSymbol,
|
|
11355
11441
|
importSymbolsSupportCimConversionUtils,
|
|
11356
11442
|
importSymbolsSupportCimSymbolUtils,
|
|
11443
|
+
importSymbolsSupportElevationInfo,
|
|
11444
|
+
importSymbolsSupportFeatureExpressionInfo,
|
|
11357
11445
|
importSymbolsSupportJsonUtils,
|
|
11358
11446
|
importSymbolsSupportStyleOrigin,
|
|
11359
11447
|
importSymbolsSupportSymbol3DVerticalOffset,
|
|
@@ -11739,6 +11827,9 @@ export {
|
|
|
11739
11827
|
newCoreError,
|
|
11740
11828
|
newCoreHandles,
|
|
11741
11829
|
newCoreWorkersConnection,
|
|
11830
|
+
newEffectsFocusArea,
|
|
11831
|
+
newEffectsFocusAreaOutline,
|
|
11832
|
+
newEffectsFocusAreas,
|
|
11742
11833
|
newFormElementsAttachmentElement,
|
|
11743
11834
|
newFormElementsElement,
|
|
11744
11835
|
newFormElementsFieldElement,
|
|
@@ -11876,6 +11967,7 @@ export {
|
|
|
11876
11967
|
newLayersSupportParquetEncodingLocation,
|
|
11877
11968
|
newLayersSupportParquetEncodingWkb,
|
|
11878
11969
|
newLayersSupportPixelBlock,
|
|
11970
|
+
newLayersSupportPlaybackInfo,
|
|
11879
11971
|
newLayersSupportPublishingInfo,
|
|
11880
11972
|
newLayersSupportRangeDomain,
|
|
11881
11973
|
newLayersSupportRasterBandInfo,
|
|
@@ -12204,6 +12296,8 @@ export {
|
|
|
12204
12296
|
newSymbolsSimpleFillSymbol,
|
|
12205
12297
|
newSymbolsSimpleLineSymbol,
|
|
12206
12298
|
newSymbolsSimpleMarkerSymbol,
|
|
12299
|
+
newSymbolsSupportElevationInfo,
|
|
12300
|
+
newSymbolsSupportFeatureExpressionInfo,
|
|
12207
12301
|
newSymbolsSupportStyleOrigin,
|
|
12208
12302
|
newSymbolsSupportSymbol3DVerticalOffset,
|
|
12209
12303
|
newSymbolsSymbol,
|