@arcgis/core-adapter 4.33.0-next.98 → 4.33.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/dist/index.cjs +495 -45
- package/dist/index.d.cts +82 -13
- package/dist/index.d.ts +82 -13
- package/dist/index.js +495 -45
- package/package.json +3 -3
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() {
|
|
@@ -227,6 +227,17 @@ async function newAnalysisViewshedAnalysis(properties) {
|
|
|
227
227
|
const ModConstructor = await importAnalysisViewshedAnalysis();
|
|
228
228
|
return new ModConstructor(properties);
|
|
229
229
|
}
|
|
230
|
+
async function importAnalysisSupportAnalysisOriginWebScene() {
|
|
231
|
+
if (isAMD) {
|
|
232
|
+
return await window.$arcgis.import("esri/analysis/support/AnalysisOriginWebScene");
|
|
233
|
+
}
|
|
234
|
+
const module2 = await import("@arcgis/core/analysis/support/AnalysisOriginWebScene.js");
|
|
235
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
236
|
+
}
|
|
237
|
+
async function newAnalysisSupportAnalysisOriginWebScene(properties) {
|
|
238
|
+
const ModConstructor = await importAnalysisSupportAnalysisOriginWebScene();
|
|
239
|
+
return new ModConstructor(properties);
|
|
240
|
+
}
|
|
230
241
|
async function importCoreAccessor() {
|
|
231
242
|
if (isAMD) {
|
|
232
243
|
return await window.$arcgis.import("esri/core/Accessor");
|
|
@@ -282,6 +293,39 @@ async function newCoreWorkersConnection() {
|
|
|
282
293
|
const ModConstructor = await importCoreWorkersConnection();
|
|
283
294
|
return new ModConstructor();
|
|
284
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
|
+
}
|
|
285
329
|
async function importFormElementsAttachmentElement() {
|
|
286
330
|
if (isAMD) {
|
|
287
331
|
return await window.$arcgis.import("esri/form/elements/AttachmentElement");
|
|
@@ -1800,6 +1844,17 @@ async function newLayersSupportPixelBlock(properties) {
|
|
|
1800
1844
|
const ModConstructor = await importLayersSupportPixelBlock();
|
|
1801
1845
|
return new ModConstructor(properties);
|
|
1802
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
|
+
}
|
|
1803
1858
|
async function importLayersSupportPublishingInfo() {
|
|
1804
1859
|
if (isAMD) {
|
|
1805
1860
|
return await window.$arcgis.import("esri/layers/support/PublishingInfo");
|
|
@@ -3340,6 +3395,39 @@ async function newRestKnowledgeGraphFieldIndex(properties) {
|
|
|
3340
3395
|
const ModConstructor = await importRestKnowledgeGraphFieldIndex();
|
|
3341
3396
|
return new ModConstructor(properties);
|
|
3342
3397
|
}
|
|
3398
|
+
async function importRestKnowledgeGraphGraphAddNamedTypesResult() {
|
|
3399
|
+
if (isAMD) {
|
|
3400
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddNamedTypesResult");
|
|
3401
|
+
}
|
|
3402
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphAddNamedTypesResult.js");
|
|
3403
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3404
|
+
}
|
|
3405
|
+
async function newRestKnowledgeGraphGraphAddNamedTypesResult(properties) {
|
|
3406
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddNamedTypesResult();
|
|
3407
|
+
return new ModConstructor(properties);
|
|
3408
|
+
}
|
|
3409
|
+
async function importRestKnowledgeGraphGraphAddFieldIndexResult() {
|
|
3410
|
+
if (isAMD) {
|
|
3411
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddFieldIndexResult");
|
|
3412
|
+
}
|
|
3413
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphAddFieldIndexResult.js");
|
|
3414
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3415
|
+
}
|
|
3416
|
+
async function newRestKnowledgeGraphGraphAddFieldIndexResult(properties) {
|
|
3417
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddFieldIndexResult();
|
|
3418
|
+
return new ModConstructor(properties);
|
|
3419
|
+
}
|
|
3420
|
+
async function importRestKnowledgeGraphGraphAddPropertyResult() {
|
|
3421
|
+
if (isAMD) {
|
|
3422
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddPropertyResult");
|
|
3423
|
+
}
|
|
3424
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphAddPropertyResult.js");
|
|
3425
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3426
|
+
}
|
|
3427
|
+
async function newRestKnowledgeGraphGraphAddPropertyResult(properties) {
|
|
3428
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddPropertyResult();
|
|
3429
|
+
return new ModConstructor(properties);
|
|
3430
|
+
}
|
|
3343
3431
|
async function importRestKnowledgeGraphGraphApplyEdits() {
|
|
3344
3432
|
if (isAMD) {
|
|
3345
3433
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphApplyEdits");
|
|
@@ -3362,6 +3450,39 @@ async function newRestKnowledgeGraphGraphApplyEditsResult(properties) {
|
|
|
3362
3450
|
const ModConstructor = await importRestKnowledgeGraphGraphApplyEditsResult();
|
|
3363
3451
|
return new ModConstructor(properties);
|
|
3364
3452
|
}
|
|
3453
|
+
async function importRestKnowledgeGraphGraphDeleteFieldIndexResult() {
|
|
3454
|
+
if (isAMD) {
|
|
3455
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteFieldIndexResult");
|
|
3456
|
+
}
|
|
3457
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphDeleteFieldIndexResult.js");
|
|
3458
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3459
|
+
}
|
|
3460
|
+
async function newRestKnowledgeGraphGraphDeleteFieldIndexResult(properties) {
|
|
3461
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeleteFieldIndexResult();
|
|
3462
|
+
return new ModConstructor(properties);
|
|
3463
|
+
}
|
|
3464
|
+
async function importRestKnowledgeGraphGraphDeleteNamedTypeResult() {
|
|
3465
|
+
if (isAMD) {
|
|
3466
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteNamedTypeResult");
|
|
3467
|
+
}
|
|
3468
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphDeleteNamedTypeResult.js");
|
|
3469
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3470
|
+
}
|
|
3471
|
+
async function newRestKnowledgeGraphGraphDeleteNamedTypeResult(properties) {
|
|
3472
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeleteNamedTypeResult();
|
|
3473
|
+
return new ModConstructor(properties);
|
|
3474
|
+
}
|
|
3475
|
+
async function importRestKnowledgeGraphGraphDeletePropertyResult() {
|
|
3476
|
+
if (isAMD) {
|
|
3477
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeletePropertyResult");
|
|
3478
|
+
}
|
|
3479
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphDeletePropertyResult.js");
|
|
3480
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3481
|
+
}
|
|
3482
|
+
async function newRestKnowledgeGraphGraphDeletePropertyResult(properties) {
|
|
3483
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeletePropertyResult();
|
|
3484
|
+
return new ModConstructor(properties);
|
|
3485
|
+
}
|
|
3365
3486
|
async function importRestKnowledgeGraphGraphNamedObject() {
|
|
3366
3487
|
if (isAMD) {
|
|
3367
3488
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphNamedObject");
|
|
@@ -3483,6 +3604,39 @@ async function newRestKnowledgeGraphGraphSearchStreaming(properties) {
|
|
|
3483
3604
|
const ModConstructor = await importRestKnowledgeGraphGraphSearchStreaming();
|
|
3484
3605
|
return new ModConstructor(properties);
|
|
3485
3606
|
}
|
|
3607
|
+
async function importRestKnowledgeGraphGraphUpdateNamedTypesResult() {
|
|
3608
|
+
if (isAMD) {
|
|
3609
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdateNamedTypesResult");
|
|
3610
|
+
}
|
|
3611
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdateNamedTypesResult.js");
|
|
3612
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3613
|
+
}
|
|
3614
|
+
async function newRestKnowledgeGraphGraphUpdateNamedTypesResult(properties) {
|
|
3615
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdateNamedTypesResult();
|
|
3616
|
+
return new ModConstructor(properties);
|
|
3617
|
+
}
|
|
3618
|
+
async function importRestKnowledgeGraphGraphUpdatePropertyResult() {
|
|
3619
|
+
if (isAMD) {
|
|
3620
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdatePropertyResult");
|
|
3621
|
+
}
|
|
3622
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdatePropertyResult.js");
|
|
3623
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3624
|
+
}
|
|
3625
|
+
async function newRestKnowledgeGraphGraphUpdatePropertyResult(properties) {
|
|
3626
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdatePropertyResult();
|
|
3627
|
+
return new ModConstructor(properties);
|
|
3628
|
+
}
|
|
3629
|
+
async function importRestKnowledgeGraphGraphUpdateSearchIndexResult() {
|
|
3630
|
+
if (isAMD) {
|
|
3631
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdateSearchIndexResult");
|
|
3632
|
+
}
|
|
3633
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdateSearchIndexResult.js");
|
|
3634
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3635
|
+
}
|
|
3636
|
+
async function newRestKnowledgeGraphGraphUpdateSearchIndexResult(properties) {
|
|
3637
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdateSearchIndexResult();
|
|
3638
|
+
return new ModConstructor(properties);
|
|
3639
|
+
}
|
|
3486
3640
|
async function importRestKnowledgeGraphInputQuantizationParameters() {
|
|
3487
3641
|
if (isAMD) {
|
|
3488
3642
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/InputQuantizationParameters");
|
|
@@ -5672,6 +5826,17 @@ async function newViews3dAnalysisAreaMeasurementAnalysisView3D(properties) {
|
|
|
5672
5826
|
const ModConstructor = await importViews3dAnalysisAreaMeasurementAnalysisView3D();
|
|
5673
5827
|
return new ModConstructor(properties);
|
|
5674
5828
|
}
|
|
5829
|
+
async function importViews3dAnalysisDimensionAnalysisView3D() {
|
|
5830
|
+
if (isAMD) {
|
|
5831
|
+
return await window.$arcgis.import("esri/views/3d/analysis/DimensionAnalysisView3D");
|
|
5832
|
+
}
|
|
5833
|
+
const module2 = await import("@arcgis/core/views/3d/analysis/DimensionAnalysisView3D.js");
|
|
5834
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5835
|
+
}
|
|
5836
|
+
async function newViews3dAnalysisDimensionAnalysisView3D(properties) {
|
|
5837
|
+
const ModConstructor = await importViews3dAnalysisDimensionAnalysisView3D();
|
|
5838
|
+
return new ModConstructor(properties);
|
|
5839
|
+
}
|
|
5675
5840
|
async function importViews3dAnalysisDirectLineMeasurementAnalysisView3D() {
|
|
5676
5841
|
if (isAMD) {
|
|
5677
5842
|
return await window.$arcgis.import("esri/views/3d/analysis/DirectLineMeasurementAnalysisView3D");
|
|
@@ -5815,17 +5980,6 @@ async function newViews3dWebglRenderNode(properties) {
|
|
|
5815
5980
|
const ModConstructor = await importViews3dWebglRenderNode();
|
|
5816
5981
|
return new ModConstructor(properties);
|
|
5817
5982
|
}
|
|
5818
|
-
async function importViewsAnalysisDimensionAnalysisView() {
|
|
5819
|
-
if (isAMD) {
|
|
5820
|
-
return await window.$arcgis.import("esri/views/analysis/DimensionAnalysisView");
|
|
5821
|
-
}
|
|
5822
|
-
const module2 = await import("@arcgis/core/views/analysis/DimensionAnalysisView.js");
|
|
5823
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
5824
|
-
}
|
|
5825
|
-
async function newViewsAnalysisDimensionAnalysisView(properties) {
|
|
5826
|
-
const ModConstructor = await importViewsAnalysisDimensionAnalysisView();
|
|
5827
|
-
return new ModConstructor(properties);
|
|
5828
|
-
}
|
|
5829
5983
|
async function importViewsBasemapView() {
|
|
5830
5984
|
if (isAMD) {
|
|
5831
5985
|
return await window.$arcgis.import("esri/views/BasemapView");
|
|
@@ -6574,6 +6728,61 @@ async function newWebdocIpsPositioningService(properties) {
|
|
|
6574
6728
|
const ModConstructor = await importWebdocIpsPositioningService();
|
|
6575
6729
|
return new ModConstructor(properties);
|
|
6576
6730
|
}
|
|
6731
|
+
async function importWebdocIpsConfiguration() {
|
|
6732
|
+
if (isAMD) {
|
|
6733
|
+
return await window.$arcgis.import("esri/webdoc/ips/Configuration");
|
|
6734
|
+
}
|
|
6735
|
+
const module2 = await import("@arcgis/core/webdoc/ips/Configuration.js");
|
|
6736
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6737
|
+
}
|
|
6738
|
+
async function newWebdocIpsConfiguration(properties) {
|
|
6739
|
+
const ModConstructor = await importWebdocIpsConfiguration();
|
|
6740
|
+
return new ModConstructor(properties);
|
|
6741
|
+
}
|
|
6742
|
+
async function importWebdocIpsAppleIPSProperties() {
|
|
6743
|
+
if (isAMD) {
|
|
6744
|
+
return await window.$arcgis.import("esri/webdoc/ips/AppleIPSProperties");
|
|
6745
|
+
}
|
|
6746
|
+
const module2 = await import("@arcgis/core/webdoc/ips/AppleIPSProperties.js");
|
|
6747
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6748
|
+
}
|
|
6749
|
+
async function newWebdocIpsAppleIPSProperties(properties) {
|
|
6750
|
+
const ModConstructor = await importWebdocIpsAppleIPSProperties();
|
|
6751
|
+
return new ModConstructor(properties);
|
|
6752
|
+
}
|
|
6753
|
+
async function importWebdocIpsGNSSProperties() {
|
|
6754
|
+
if (isAMD) {
|
|
6755
|
+
return await window.$arcgis.import("esri/webdoc/ips/GNSSProperties");
|
|
6756
|
+
}
|
|
6757
|
+
const module2 = await import("@arcgis/core/webdoc/ips/GNSSProperties.js");
|
|
6758
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6759
|
+
}
|
|
6760
|
+
async function newWebdocIpsGNSSProperties(properties) {
|
|
6761
|
+
const ModConstructor = await importWebdocIpsGNSSProperties();
|
|
6762
|
+
return new ModConstructor(properties);
|
|
6763
|
+
}
|
|
6764
|
+
async function importWebdocIpsPathSnappingProperties() {
|
|
6765
|
+
if (isAMD) {
|
|
6766
|
+
return await window.$arcgis.import("esri/webdoc/ips/PathSnappingProperties");
|
|
6767
|
+
}
|
|
6768
|
+
const module2 = await import("@arcgis/core/webdoc/ips/PathSnappingProperties.js");
|
|
6769
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6770
|
+
}
|
|
6771
|
+
async function newWebdocIpsPathSnappingProperties(properties) {
|
|
6772
|
+
const ModConstructor = await importWebdocIpsPathSnappingProperties();
|
|
6773
|
+
return new ModConstructor(properties);
|
|
6774
|
+
}
|
|
6775
|
+
async function importWebdocIpsSmoothingProperties() {
|
|
6776
|
+
if (isAMD) {
|
|
6777
|
+
return await window.$arcgis.import("esri/webdoc/ips/SmoothingProperties");
|
|
6778
|
+
}
|
|
6779
|
+
const module2 = await import("@arcgis/core/webdoc/ips/SmoothingProperties.js");
|
|
6780
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6781
|
+
}
|
|
6782
|
+
async function newWebdocIpsSmoothingProperties(properties) {
|
|
6783
|
+
const ModConstructor = await importWebdocIpsSmoothingProperties();
|
|
6784
|
+
return new ModConstructor(properties);
|
|
6785
|
+
}
|
|
6577
6786
|
async function importWebdocWidgetsTimeSlider() {
|
|
6578
6787
|
if (isAMD) {
|
|
6579
6788
|
return await window.$arcgis.import("esri/webdoc/widgets/TimeSlider");
|
|
@@ -6783,6 +6992,61 @@ async function newWebsceneVirtualLighting(properties) {
|
|
|
6783
6992
|
const ModConstructor = await importWebsceneVirtualLighting();
|
|
6784
6993
|
return new ModConstructor(properties);
|
|
6785
6994
|
}
|
|
6995
|
+
async function importWebsceneSupportFeatureReferenceGlobalId() {
|
|
6996
|
+
if (isAMD) {
|
|
6997
|
+
return await window.$arcgis.import("esri/webscene/support/FeatureReferenceGlobalId");
|
|
6998
|
+
}
|
|
6999
|
+
const module2 = await import("@arcgis/core/webscene/support/FeatureReferenceGlobalId.js");
|
|
7000
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7001
|
+
}
|
|
7002
|
+
async function newWebsceneSupportFeatureReferenceGlobalId(properties) {
|
|
7003
|
+
const ModConstructor = await importWebsceneSupportFeatureReferenceGlobalId();
|
|
7004
|
+
return new ModConstructor(properties);
|
|
7005
|
+
}
|
|
7006
|
+
async function importWebsceneSupportFeatureReferenceId() {
|
|
7007
|
+
if (isAMD) {
|
|
7008
|
+
return await window.$arcgis.import("esri/webscene/support/FeatureReferenceId");
|
|
7009
|
+
}
|
|
7010
|
+
const module2 = await import("@arcgis/core/webscene/support/FeatureReferenceId.js");
|
|
7011
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7012
|
+
}
|
|
7013
|
+
async function newWebsceneSupportFeatureReferenceId(properties) {
|
|
7014
|
+
const ModConstructor = await importWebsceneSupportFeatureReferenceId();
|
|
7015
|
+
return new ModConstructor(properties);
|
|
7016
|
+
}
|
|
7017
|
+
async function importWebsceneSupportFeatureReferenceObjectId() {
|
|
7018
|
+
if (isAMD) {
|
|
7019
|
+
return await window.$arcgis.import("esri/webscene/support/FeatureReferenceObjectId");
|
|
7020
|
+
}
|
|
7021
|
+
const module2 = await import("@arcgis/core/webscene/support/FeatureReferenceObjectId.js");
|
|
7022
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7023
|
+
}
|
|
7024
|
+
async function newWebsceneSupportFeatureReferenceObjectId(properties) {
|
|
7025
|
+
const ModConstructor = await importWebsceneSupportFeatureReferenceObjectId();
|
|
7026
|
+
return new ModConstructor(properties);
|
|
7027
|
+
}
|
|
7028
|
+
async function importWebsceneSupportFeatureReference() {
|
|
7029
|
+
if (isAMD) {
|
|
7030
|
+
return await window.$arcgis.import("esri/webscene/support/FeatureReference");
|
|
7031
|
+
}
|
|
7032
|
+
const module2 = await import("@arcgis/core/webscene/support/FeatureReference.js");
|
|
7033
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7034
|
+
}
|
|
7035
|
+
async function newWebsceneSupportFeatureReference(properties) {
|
|
7036
|
+
const ModConstructor = await importWebsceneSupportFeatureReference();
|
|
7037
|
+
return new ModConstructor(properties);
|
|
7038
|
+
}
|
|
7039
|
+
async function importWebsceneSupportLayerReference() {
|
|
7040
|
+
if (isAMD) {
|
|
7041
|
+
return await window.$arcgis.import("esri/webscene/support/LayerReference");
|
|
7042
|
+
}
|
|
7043
|
+
const module2 = await import("@arcgis/core/webscene/support/LayerReference.js");
|
|
7044
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7045
|
+
}
|
|
7046
|
+
async function newWebsceneSupportLayerReference(properties) {
|
|
7047
|
+
const ModConstructor = await importWebsceneSupportLayerReference();
|
|
7048
|
+
return new ModConstructor(properties);
|
|
7049
|
+
}
|
|
6786
7050
|
async function importWebsceneSupportSlideElements() {
|
|
6787
7051
|
if (isAMD) {
|
|
6788
7052
|
return await window.$arcgis.import("esri/webscene/support/SlideElements");
|
|
@@ -6794,6 +7058,17 @@ async function newWebsceneSupportSlideElements(properties) {
|
|
|
6794
7058
|
const ModConstructor = await importWebsceneSupportSlideElements();
|
|
6795
7059
|
return new ModConstructor(properties);
|
|
6796
7060
|
}
|
|
7061
|
+
async function importWebsceneSupportSlidePopupInfo() {
|
|
7062
|
+
if (isAMD) {
|
|
7063
|
+
return await window.$arcgis.import("esri/webscene/support/SlidePopupInfo");
|
|
7064
|
+
}
|
|
7065
|
+
const module2 = await import("@arcgis/core/webscene/support/SlidePopupInfo.js");
|
|
7066
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7067
|
+
}
|
|
7068
|
+
async function newWebsceneSupportSlidePopupInfo(properties) {
|
|
7069
|
+
const ModConstructor = await importWebsceneSupportSlidePopupInfo();
|
|
7070
|
+
return new ModConstructor(properties);
|
|
7071
|
+
}
|
|
6797
7072
|
async function importWidgetsAreaMeasurement2D() {
|
|
6798
7073
|
if (isAMD) {
|
|
6799
7074
|
return await window.$arcgis.import("esri/widgets/AreaMeasurement2D");
|
|
@@ -6992,6 +7267,50 @@ async function newWidgetsBatchAttributeForm(properties) {
|
|
|
6992
7267
|
const ModConstructor = await importWidgetsBatchAttributeForm();
|
|
6993
7268
|
return new ModConstructor(properties);
|
|
6994
7269
|
}
|
|
7270
|
+
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
7271
|
+
if (isAMD) {
|
|
7272
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
7273
|
+
}
|
|
7274
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/BatchAttributeFormViewModel.js");
|
|
7275
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7276
|
+
}
|
|
7277
|
+
async function newWidgetsBatchAttributeFormBatchAttributeFormViewModel(properties) {
|
|
7278
|
+
const ModConstructor = await importWidgetsBatchAttributeFormBatchAttributeFormViewModel();
|
|
7279
|
+
return new ModConstructor(properties);
|
|
7280
|
+
}
|
|
7281
|
+
async function importWidgetsBatchAttributeFormInputsBatchFormInputs() {
|
|
7282
|
+
if (isAMD) {
|
|
7283
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/BatchFormInputs");
|
|
7284
|
+
}
|
|
7285
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/BatchFormInputs.js");
|
|
7286
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7287
|
+
}
|
|
7288
|
+
async function newWidgetsBatchAttributeFormInputsBatchFormInputs(properties) {
|
|
7289
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsBatchFormInputs();
|
|
7290
|
+
return new ModConstructor(properties);
|
|
7291
|
+
}
|
|
7292
|
+
async function importWidgetsBatchAttributeFormInputsFieldInput() {
|
|
7293
|
+
if (isAMD) {
|
|
7294
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/FieldInput");
|
|
7295
|
+
}
|
|
7296
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/FieldInput.js");
|
|
7297
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7298
|
+
}
|
|
7299
|
+
async function newWidgetsBatchAttributeFormInputsFieldInput(properties) {
|
|
7300
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsFieldInput();
|
|
7301
|
+
return new ModConstructor(properties);
|
|
7302
|
+
}
|
|
7303
|
+
async function importWidgetsBatchAttributeFormInputsGroupInput() {
|
|
7304
|
+
if (isAMD) {
|
|
7305
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/GroupInput");
|
|
7306
|
+
}
|
|
7307
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/GroupInput.js");
|
|
7308
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7309
|
+
}
|
|
7310
|
+
async function newWidgetsBatchAttributeFormInputsGroupInput(properties) {
|
|
7311
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsGroupInput();
|
|
7312
|
+
return new ModConstructor(properties);
|
|
7313
|
+
}
|
|
6995
7314
|
async function importWidgetsBookmarks() {
|
|
6996
7315
|
if (isAMD) {
|
|
6997
7316
|
return await window.$arcgis.import("esri/widgets/Bookmarks");
|
|
@@ -7311,6 +7630,17 @@ async function newWidgetsEditorEdits(properties) {
|
|
|
7311
7630
|
const ModConstructor = await importWidgetsEditorEdits();
|
|
7312
7631
|
return new ModConstructor(properties);
|
|
7313
7632
|
}
|
|
7633
|
+
async function importWidgetsEditorUpdateFeaturesWorkflowData() {
|
|
7634
|
+
if (isAMD) {
|
|
7635
|
+
return await window.$arcgis.import("esri/widgets/Editor/UpdateFeaturesWorkflowData");
|
|
7636
|
+
}
|
|
7637
|
+
const module2 = await import("@arcgis/core/widgets/Editor/UpdateFeaturesWorkflowData.js");
|
|
7638
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7639
|
+
}
|
|
7640
|
+
async function newWidgetsEditorUpdateFeaturesWorkflowData(properties) {
|
|
7641
|
+
const ModConstructor = await importWidgetsEditorUpdateFeaturesWorkflowData();
|
|
7642
|
+
return new ModConstructor(properties);
|
|
7643
|
+
}
|
|
7314
7644
|
async function importWidgetsEditorUpdateWorkflow() {
|
|
7315
7645
|
if (isAMD) {
|
|
7316
7646
|
return await window.$arcgis.import("esri/widgets/Editor/UpdateWorkflow");
|
|
@@ -7696,6 +8026,28 @@ async function newWidgetsFeatureTableGridSupportButtonMenuViewModel(properties)
|
|
|
7696
8026
|
const ModConstructor = await importWidgetsFeatureTableGridSupportButtonMenuViewModel();
|
|
7697
8027
|
return new ModConstructor(properties);
|
|
7698
8028
|
}
|
|
8029
|
+
async function importWidgetsFeatureTableSupportAttachmentsColumnTemplate() {
|
|
8030
|
+
if (isAMD) {
|
|
8031
|
+
return await window.$arcgis.import("esri/widgets/FeatureTable/support/AttachmentsColumnTemplate");
|
|
8032
|
+
}
|
|
8033
|
+
const module2 = await import("@arcgis/core/widgets/FeatureTable/support/AttachmentsColumnTemplate.js");
|
|
8034
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
8035
|
+
}
|
|
8036
|
+
async function newWidgetsFeatureTableSupportAttachmentsColumnTemplate(properties) {
|
|
8037
|
+
const ModConstructor = await importWidgetsFeatureTableSupportAttachmentsColumnTemplate();
|
|
8038
|
+
return new ModConstructor(properties);
|
|
8039
|
+
}
|
|
8040
|
+
async function importWidgetsFeatureTableSupportAttachmentsViewOptions() {
|
|
8041
|
+
if (isAMD) {
|
|
8042
|
+
return await window.$arcgis.import("esri/widgets/FeatureTable/support/AttachmentsViewOptions");
|
|
8043
|
+
}
|
|
8044
|
+
const module2 = await import("@arcgis/core/widgets/FeatureTable/support/AttachmentsViewOptions.js");
|
|
8045
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
8046
|
+
}
|
|
8047
|
+
async function newWidgetsFeatureTableSupportAttachmentsViewOptions(properties) {
|
|
8048
|
+
const ModConstructor = await importWidgetsFeatureTableSupportAttachmentsViewOptions();
|
|
8049
|
+
return new ModConstructor(properties);
|
|
8050
|
+
}
|
|
7699
8051
|
async function importWidgetsFeatureTableSupportColumnTemplate() {
|
|
7700
8052
|
if (isAMD) {
|
|
7701
8053
|
return await window.$arcgis.import("esri/widgets/FeatureTable/support/ColumnTemplate");
|
|
@@ -7729,15 +8081,15 @@ async function newWidgetsFeatureTableSupportFieldColumnTemplate(properties) {
|
|
|
7729
8081
|
const ModConstructor = await importWidgetsFeatureTableSupportFieldColumnTemplate();
|
|
7730
8082
|
return new ModConstructor(properties);
|
|
7731
8083
|
}
|
|
7732
|
-
async function
|
|
8084
|
+
async function importWidgetsFeatureTableSupportGroupColumnTemplate() {
|
|
7733
8085
|
if (isAMD) {
|
|
7734
|
-
return await window.$arcgis.import("esri/widgets/FeatureTable/support/
|
|
8086
|
+
return await window.$arcgis.import("esri/widgets/FeatureTable/support/GroupColumnTemplate");
|
|
7735
8087
|
}
|
|
7736
|
-
const module2 = await import("@arcgis/core/widgets/FeatureTable/support/
|
|
8088
|
+
const module2 = await import("@arcgis/core/widgets/FeatureTable/support/GroupColumnTemplate.js");
|
|
7737
8089
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
7738
8090
|
}
|
|
7739
|
-
async function
|
|
7740
|
-
const ModConstructor = await
|
|
8091
|
+
async function newWidgetsFeatureTableSupportGroupColumnTemplate(properties) {
|
|
8092
|
+
const ModConstructor = await importWidgetsFeatureTableSupportGroupColumnTemplate();
|
|
7741
8093
|
return new ModConstructor(properties);
|
|
7742
8094
|
}
|
|
7743
8095
|
async function importWidgetsFeatureTableSupportRelationshipColumnTemplate() {
|
|
@@ -7751,17 +8103,6 @@ async function newWidgetsFeatureTableSupportRelationshipColumnTemplate(propertie
|
|
|
7751
8103
|
const ModConstructor = await importWidgetsFeatureTableSupportRelationshipColumnTemplate();
|
|
7752
8104
|
return new ModConstructor(properties);
|
|
7753
8105
|
}
|
|
7754
|
-
async function importWidgetsFeatureTableSupportGroupColumnTemplate() {
|
|
7755
|
-
if (isAMD) {
|
|
7756
|
-
return await window.$arcgis.import("esri/widgets/FeatureTable/support/GroupColumnTemplate");
|
|
7757
|
-
}
|
|
7758
|
-
const module2 = await import("@arcgis/core/widgets/FeatureTable/support/GroupColumnTemplate.js");
|
|
7759
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
7760
|
-
}
|
|
7761
|
-
async function newWidgetsFeatureTableSupportGroupColumnTemplate(properties) {
|
|
7762
|
-
const ModConstructor = await importWidgetsFeatureTableSupportGroupColumnTemplate();
|
|
7763
|
-
return new ModConstructor(properties);
|
|
7764
|
-
}
|
|
7765
8106
|
async function importWidgetsFeatureTableSupportTableTemplate() {
|
|
7766
8107
|
if (isAMD) {
|
|
7767
8108
|
return await window.$arcgis.import("esri/widgets/FeatureTable/support/TableTemplate");
|
|
@@ -8345,6 +8686,39 @@ async function newWidgetsShadowCastShadowCastViewModel(properties) {
|
|
|
8345
8686
|
const ModConstructor = await importWidgetsShadowCastShadowCastViewModel();
|
|
8346
8687
|
return new ModConstructor(properties);
|
|
8347
8688
|
}
|
|
8689
|
+
async function importWidgetsShadowCastDiscreteOptions() {
|
|
8690
|
+
if (isAMD) {
|
|
8691
|
+
return await window.$arcgis.import("esri/widgets/ShadowCast/DiscreteOptions");
|
|
8692
|
+
}
|
|
8693
|
+
const module2 = await import("@arcgis/core/widgets/ShadowCast/DiscreteOptions.js");
|
|
8694
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
8695
|
+
}
|
|
8696
|
+
async function newWidgetsShadowCastDiscreteOptions(properties) {
|
|
8697
|
+
const ModConstructor = await importWidgetsShadowCastDiscreteOptions();
|
|
8698
|
+
return new ModConstructor(properties);
|
|
8699
|
+
}
|
|
8700
|
+
async function importWidgetsShadowCastDurationOptions() {
|
|
8701
|
+
if (isAMD) {
|
|
8702
|
+
return await window.$arcgis.import("esri/widgets/ShadowCast/DurationOptions");
|
|
8703
|
+
}
|
|
8704
|
+
const module2 = await import("@arcgis/core/widgets/ShadowCast/DurationOptions.js");
|
|
8705
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
8706
|
+
}
|
|
8707
|
+
async function newWidgetsShadowCastDurationOptions(properties) {
|
|
8708
|
+
const ModConstructor = await importWidgetsShadowCastDurationOptions();
|
|
8709
|
+
return new ModConstructor(properties);
|
|
8710
|
+
}
|
|
8711
|
+
async function importWidgetsShadowCastThresholdOptions() {
|
|
8712
|
+
if (isAMD) {
|
|
8713
|
+
return await window.$arcgis.import("esri/widgets/ShadowCast/ThresholdOptions");
|
|
8714
|
+
}
|
|
8715
|
+
const module2 = await import("@arcgis/core/widgets/ShadowCast/ThresholdOptions.js");
|
|
8716
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
8717
|
+
}
|
|
8718
|
+
async function newWidgetsShadowCastThresholdOptions(properties) {
|
|
8719
|
+
const ModConstructor = await importWidgetsShadowCastThresholdOptions();
|
|
8720
|
+
return new ModConstructor(properties);
|
|
8721
|
+
}
|
|
8348
8722
|
async function importWidgetsSketch() {
|
|
8349
8723
|
if (isAMD) {
|
|
8350
8724
|
return await window.$arcgis.import("esri/widgets/Sketch");
|
|
@@ -9565,13 +9939,6 @@ async function importLayersCatalogCatalogUtils() {
|
|
|
9565
9939
|
const module2 = await import("@arcgis/core/layers/catalog/catalogUtils.js");
|
|
9566
9940
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
9567
9941
|
}
|
|
9568
|
-
async function importLayersKnowledgeGraphSupportUtils() {
|
|
9569
|
-
if (isAMD) {
|
|
9570
|
-
return await window.$arcgis.import("esri/layers/knowledgeGraph/supportUtils");
|
|
9571
|
-
}
|
|
9572
|
-
const module2 = await import("@arcgis/core/layers/knowledgeGraph/supportUtils.js");
|
|
9573
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
9574
|
-
}
|
|
9575
9942
|
async function importLayersOgcWfsUtils() {
|
|
9576
9943
|
if (isAMD) {
|
|
9577
9944
|
return await window.$arcgis.import("esri/layers/ogc/wfsUtils");
|
|
@@ -10062,6 +10429,13 @@ async function importSmartMappingRenderersSupportRendererUtils() {
|
|
|
10062
10429
|
const module2 = await import("@arcgis/core/smartMapping/renderers/support/rendererUtils.js");
|
|
10063
10430
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10064
10431
|
}
|
|
10432
|
+
async function importSmartMappingRenderersSupportSpikeUtils() {
|
|
10433
|
+
if (isAMD) {
|
|
10434
|
+
return await window.$arcgis.import("esri/smartMapping/renderers/support/spikeUtils");
|
|
10435
|
+
}
|
|
10436
|
+
const module2 = await import("@arcgis/core/smartMapping/renderers/support/spikeUtils.js");
|
|
10437
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10438
|
+
}
|
|
10065
10439
|
async function importSmartMappingStatisticsClassBreaks() {
|
|
10066
10440
|
if (isAMD) {
|
|
10067
10441
|
return await window.$arcgis.import("esri/smartMapping/statistics/classBreaks");
|
|
@@ -10321,13 +10695,6 @@ async function importViewsSupportColorUtils() {
|
|
|
10321
10695
|
const module2 = await import("@arcgis/core/views/support/colorUtils.js");
|
|
10322
10696
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10323
10697
|
}
|
|
10324
|
-
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
10325
|
-
if (isAMD) {
|
|
10326
|
-
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
10327
|
-
}
|
|
10328
|
-
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/BatchAttributeFormViewModel.js");
|
|
10329
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
10330
|
-
}
|
|
10331
10698
|
async function importWidgetsSmartMappingSupportUtils() {
|
|
10332
10699
|
if (isAMD) {
|
|
10333
10700
|
return await window.$arcgis.import("esri/widgets/smartMapping/support/utils");
|
|
@@ -10342,6 +10709,13 @@ async function importWidgetsSupportWidget() {
|
|
|
10342
10709
|
const module2 = await import("@arcgis/core/widgets/support/widget.js");
|
|
10343
10710
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10344
10711
|
}
|
|
10712
|
+
async function importApplicationsComponentsAnalysisUtils() {
|
|
10713
|
+
if (isAMD) {
|
|
10714
|
+
return await window.$arcgis.import("esri/applications/Components/analysisUtils");
|
|
10715
|
+
}
|
|
10716
|
+
const module2 = await import("@arcgis/core/applications/Components/analysisUtils.js");
|
|
10717
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10718
|
+
}
|
|
10345
10719
|
async function importApplicationsComponentsBasemapUtils() {
|
|
10346
10720
|
if (isAMD) {
|
|
10347
10721
|
return await window.$arcgis.import("esri/applications/Components/basemapUtils");
|
|
@@ -10433,6 +10807,13 @@ async function importApplicationsComponentsSvgUtils() {
|
|
|
10433
10807
|
const module2 = await import("@arcgis/core/applications/Components/svgUtils.js");
|
|
10434
10808
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10435
10809
|
}
|
|
10810
|
+
async function importApplicationsComponentsViewUtils() {
|
|
10811
|
+
if (isAMD) {
|
|
10812
|
+
return await window.$arcgis.import("esri/applications/Components/viewUtils");
|
|
10813
|
+
}
|
|
10814
|
+
const module2 = await import("@arcgis/core/applications/Components/viewUtils.js");
|
|
10815
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10816
|
+
}
|
|
10436
10817
|
async function importApplicationsComponentsWebStyleSymbolUtils() {
|
|
10437
10818
|
if (isAMD) {
|
|
10438
10819
|
return await window.$arcgis.import("esri/applications/Components/webStyleSymbolUtils");
|
|
@@ -10479,8 +10860,10 @@ exports.importAnalysisLineOfSightAnalysisObserver = importAnalysisLineOfSightAna
|
|
|
10479
10860
|
exports.importAnalysisLineOfSightAnalysisTarget = importAnalysisLineOfSightAnalysisTarget;
|
|
10480
10861
|
exports.importAnalysisSliceAnalysis = importAnalysisSliceAnalysis;
|
|
10481
10862
|
exports.importAnalysisSlicePlane = importAnalysisSlicePlane;
|
|
10863
|
+
exports.importAnalysisSupportAnalysisOriginWebScene = importAnalysisSupportAnalysisOriginWebScene;
|
|
10482
10864
|
exports.importAnalysisViewshed = importAnalysisViewshed;
|
|
10483
10865
|
exports.importAnalysisViewshedAnalysis = importAnalysisViewshedAnalysis;
|
|
10866
|
+
exports.importApplicationsComponentsAnalysisUtils = importApplicationsComponentsAnalysisUtils;
|
|
10484
10867
|
exports.importApplicationsComponentsBasemapUtils = importApplicationsComponentsBasemapUtils;
|
|
10485
10868
|
exports.importApplicationsComponentsDrawUtils = importApplicationsComponentsDrawUtils;
|
|
10486
10869
|
exports.importApplicationsComponentsFontUtils = importApplicationsComponentsFontUtils;
|
|
@@ -10494,6 +10877,7 @@ exports.importApplicationsComponentsSelectionOperation = importApplicationsCompo
|
|
|
10494
10877
|
exports.importApplicationsComponentsSketchTooltipControls = importApplicationsComponentsSketchTooltipControls;
|
|
10495
10878
|
exports.importApplicationsComponentsStyleUtils = importApplicationsComponentsStyleUtils;
|
|
10496
10879
|
exports.importApplicationsComponentsSvgUtils = importApplicationsComponentsSvgUtils;
|
|
10880
|
+
exports.importApplicationsComponentsViewUtils = importApplicationsComponentsViewUtils;
|
|
10497
10881
|
exports.importApplicationsComponentsWebStyleSymbolUtils = importApplicationsComponentsWebStyleSymbolUtils;
|
|
10498
10882
|
exports.importApplicationsExperienceBuilderSketchUtils = importApplicationsExperienceBuilderSketchUtils;
|
|
10499
10883
|
exports.importApplicationsMapViewerTemplateUtils = importApplicationsMapViewerTemplateUtils;
|
|
@@ -10522,6 +10906,9 @@ exports.importCoreWorkers = importCoreWorkers;
|
|
|
10522
10906
|
exports.importCoreWorkersConnection = importCoreWorkersConnection;
|
|
10523
10907
|
exports.importEditingSharedTemplatesSharedTemplate = importEditingSharedTemplatesSharedTemplate;
|
|
10524
10908
|
exports.importEditingSharedTemplatesSharedTemplateMetadata = importEditingSharedTemplatesSharedTemplateMetadata;
|
|
10909
|
+
exports.importEffectsFocusArea = importEffectsFocusArea;
|
|
10910
|
+
exports.importEffectsFocusAreaOutline = importEffectsFocusAreaOutline;
|
|
10911
|
+
exports.importEffectsFocusAreas = importEffectsFocusAreas;
|
|
10525
10912
|
exports.importFormElements = importFormElements;
|
|
10526
10913
|
exports.importFormElementsAttachmentElement = importFormElementsAttachmentElement;
|
|
10527
10914
|
exports.importFormElementsElement = importFormElementsElement;
|
|
@@ -10669,7 +11056,6 @@ exports.importLayersIntegratedMeshLayer = importLayersIntegratedMeshLayer;
|
|
|
10669
11056
|
exports.importLayersKMLLayer = importLayersKMLLayer;
|
|
10670
11057
|
exports.importLayersKnowledgeGraphKnowledgeGraphSublayer = importLayersKnowledgeGraphKnowledgeGraphSublayer;
|
|
10671
11058
|
exports.importLayersKnowledgeGraphLayer = importLayersKnowledgeGraphLayer;
|
|
10672
|
-
exports.importLayersKnowledgeGraphSupportUtils = importLayersKnowledgeGraphSupportUtils;
|
|
10673
11059
|
exports.importLayersLayer = importLayersLayer;
|
|
10674
11060
|
exports.importLayersLineOfSightLayer = importLayersLineOfSightLayer;
|
|
10675
11061
|
exports.importLayersLinkChartLayer = importLayersLinkChartLayer;
|
|
@@ -10736,6 +11122,7 @@ exports.importLayersSupportParquetEncodingLocation = importLayersSupportParquetE
|
|
|
10736
11122
|
exports.importLayersSupportParquetEncodingWkb = importLayersSupportParquetEncodingWkb;
|
|
10737
11123
|
exports.importLayersSupportParquetUtils = importLayersSupportParquetUtils;
|
|
10738
11124
|
exports.importLayersSupportPixelBlock = importLayersSupportPixelBlock;
|
|
11125
|
+
exports.importLayersSupportPlaybackInfo = importLayersSupportPlaybackInfo;
|
|
10739
11126
|
exports.importLayersSupportPublishingInfo = importLayersSupportPublishingInfo;
|
|
10740
11127
|
exports.importLayersSupportRangeDomain = importLayersSupportRangeDomain;
|
|
10741
11128
|
exports.importLayersSupportRasterBandInfo = importLayersSupportRasterBandInfo;
|
|
@@ -10896,8 +11283,14 @@ exports.importRestKnowledgeGraphDataModel = importRestKnowledgeGraphDataModel;
|
|
|
10896
11283
|
exports.importRestKnowledgeGraphEntity = importRestKnowledgeGraphEntity;
|
|
10897
11284
|
exports.importRestKnowledgeGraphEntityType = importRestKnowledgeGraphEntityType;
|
|
10898
11285
|
exports.importRestKnowledgeGraphFieldIndex = importRestKnowledgeGraphFieldIndex;
|
|
11286
|
+
exports.importRestKnowledgeGraphGraphAddFieldIndexResult = importRestKnowledgeGraphGraphAddFieldIndexResult;
|
|
11287
|
+
exports.importRestKnowledgeGraphGraphAddNamedTypesResult = importRestKnowledgeGraphGraphAddNamedTypesResult;
|
|
11288
|
+
exports.importRestKnowledgeGraphGraphAddPropertyResult = importRestKnowledgeGraphGraphAddPropertyResult;
|
|
10899
11289
|
exports.importRestKnowledgeGraphGraphApplyEdits = importRestKnowledgeGraphGraphApplyEdits;
|
|
10900
11290
|
exports.importRestKnowledgeGraphGraphApplyEditsResult = importRestKnowledgeGraphGraphApplyEditsResult;
|
|
11291
|
+
exports.importRestKnowledgeGraphGraphDeleteFieldIndexResult = importRestKnowledgeGraphGraphDeleteFieldIndexResult;
|
|
11292
|
+
exports.importRestKnowledgeGraphGraphDeleteNamedTypeResult = importRestKnowledgeGraphGraphDeleteNamedTypeResult;
|
|
11293
|
+
exports.importRestKnowledgeGraphGraphDeletePropertyResult = importRestKnowledgeGraphGraphDeletePropertyResult;
|
|
10901
11294
|
exports.importRestKnowledgeGraphGraphNamedObject = importRestKnowledgeGraphGraphNamedObject;
|
|
10902
11295
|
exports.importRestKnowledgeGraphGraphObject = importRestKnowledgeGraphGraphObject;
|
|
10903
11296
|
exports.importRestKnowledgeGraphGraphObjectType = importRestKnowledgeGraphGraphObjectType;
|
|
@@ -10909,6 +11302,9 @@ exports.importRestKnowledgeGraphGraphQueryStreaming = importRestKnowledgeGraphGr
|
|
|
10909
11302
|
exports.importRestKnowledgeGraphGraphQueryStreamingResult = importRestKnowledgeGraphGraphQueryStreamingResult;
|
|
10910
11303
|
exports.importRestKnowledgeGraphGraphSearch = importRestKnowledgeGraphGraphSearch;
|
|
10911
11304
|
exports.importRestKnowledgeGraphGraphSearchStreaming = importRestKnowledgeGraphGraphSearchStreaming;
|
|
11305
|
+
exports.importRestKnowledgeGraphGraphUpdateNamedTypesResult = importRestKnowledgeGraphGraphUpdateNamedTypesResult;
|
|
11306
|
+
exports.importRestKnowledgeGraphGraphUpdatePropertyResult = importRestKnowledgeGraphGraphUpdatePropertyResult;
|
|
11307
|
+
exports.importRestKnowledgeGraphGraphUpdateSearchIndexResult = importRestKnowledgeGraphGraphUpdateSearchIndexResult;
|
|
10912
11308
|
exports.importRestKnowledgeGraphInputQuantizationParameters = importRestKnowledgeGraphInputQuantizationParameters;
|
|
10913
11309
|
exports.importRestKnowledgeGraphKnowledgeGraph = importRestKnowledgeGraphKnowledgeGraph;
|
|
10914
11310
|
exports.importRestKnowledgeGraphOutputQuantizationParameters = importRestKnowledgeGraphOutputQuantizationParameters;
|
|
@@ -11087,6 +11483,7 @@ exports.importSmartMappingRenderersPredominance = importSmartMappingRenderersPre
|
|
|
11087
11483
|
exports.importSmartMappingRenderersRelationship = importSmartMappingRenderersRelationship;
|
|
11088
11484
|
exports.importSmartMappingRenderersSize = importSmartMappingRenderersSize;
|
|
11089
11485
|
exports.importSmartMappingRenderersSupportRendererUtils = importSmartMappingRenderersSupportRendererUtils;
|
|
11486
|
+
exports.importSmartMappingRenderersSupportSpikeUtils = importSmartMappingRenderersSupportSpikeUtils;
|
|
11090
11487
|
exports.importSmartMappingRenderersType = importSmartMappingRenderersType;
|
|
11091
11488
|
exports.importSmartMappingRenderersUnivariateColorSize = importSmartMappingRenderersUnivariateColorSize;
|
|
11092
11489
|
exports.importSmartMappingStatisticsClassBreaks = importSmartMappingStatisticsClassBreaks;
|
|
@@ -11180,6 +11577,7 @@ exports.importViews2dLayersBaseLayerView2D = importViews2dLayersBaseLayerView2D;
|
|
|
11180
11577
|
exports.importViews2dLayersBaseLayerViewGL2D = importViews2dLayersBaseLayerViewGL2D;
|
|
11181
11578
|
exports.importViews2dViewState = importViews2dViewState;
|
|
11182
11579
|
exports.importViews3dAnalysisAreaMeasurementAnalysisView3D = importViews3dAnalysisAreaMeasurementAnalysisView3D;
|
|
11580
|
+
exports.importViews3dAnalysisDimensionAnalysisView3D = importViews3dAnalysisDimensionAnalysisView3D;
|
|
11183
11581
|
exports.importViews3dAnalysisDirectLineMeasurementAnalysisView3D = importViews3dAnalysisDirectLineMeasurementAnalysisView3D;
|
|
11184
11582
|
exports.importViews3dAnalysisLineOfSightAnalysisResult = importViews3dAnalysisLineOfSightAnalysisResult;
|
|
11185
11583
|
exports.importViews3dAnalysisLineOfSightAnalysisView3D = importViews3dAnalysisLineOfSightAnalysisView3D;
|
|
@@ -11198,7 +11596,6 @@ exports.importViews3dWebgl = importViews3dWebgl;
|
|
|
11198
11596
|
exports.importViews3dWebglManagedFBO = importViews3dWebglManagedFBO;
|
|
11199
11597
|
exports.importViews3dWebglRenderCamera = importViews3dWebglRenderCamera;
|
|
11200
11598
|
exports.importViews3dWebglRenderNode = importViews3dWebglRenderNode;
|
|
11201
|
-
exports.importViewsAnalysisDimensionAnalysisView = importViewsAnalysisDimensionAnalysisView;
|
|
11202
11599
|
exports.importViewsAnalysisLengthDimensionResult = importViewsAnalysisLengthDimensionResult;
|
|
11203
11600
|
exports.importViewsBasemapView = importViewsBasemapView;
|
|
11204
11601
|
exports.importViewsDrawDraw = importViewsDrawDraw;
|
|
@@ -11272,7 +11669,12 @@ exports.importWebdocGeotriggersInfoFenceGeotrigger = importWebdocGeotriggersInfo
|
|
|
11272
11669
|
exports.importWebdocGeotriggersInfoGeotrigger = importWebdocGeotriggersInfoGeotrigger;
|
|
11273
11670
|
exports.importWebdocGeotriggersInfoGeotriggerNotificationOptions = importWebdocGeotriggersInfoGeotriggerNotificationOptions;
|
|
11274
11671
|
exports.importWebdocIPSInfo = importWebdocIPSInfo;
|
|
11672
|
+
exports.importWebdocIpsAppleIPSProperties = importWebdocIpsAppleIPSProperties;
|
|
11673
|
+
exports.importWebdocIpsConfiguration = importWebdocIpsConfiguration;
|
|
11674
|
+
exports.importWebdocIpsGNSSProperties = importWebdocIpsGNSSProperties;
|
|
11675
|
+
exports.importWebdocIpsPathSnappingProperties = importWebdocIpsPathSnappingProperties;
|
|
11275
11676
|
exports.importWebdocIpsPositioningService = importWebdocIpsPositioningService;
|
|
11677
|
+
exports.importWebdocIpsSmoothingProperties = importWebdocIpsSmoothingProperties;
|
|
11276
11678
|
exports.importWebdocWidgetsTimeSlider = importWebdocWidgetsTimeSlider;
|
|
11277
11679
|
exports.importWebmapApplicationProperties = importWebmapApplicationProperties;
|
|
11278
11680
|
exports.importWebmapBackgroundColorBackground = importWebmapBackgroundColorBackground;
|
|
@@ -11287,7 +11689,13 @@ exports.importWebscenePresentation = importWebscenePresentation;
|
|
|
11287
11689
|
exports.importWebsceneSlide = importWebsceneSlide;
|
|
11288
11690
|
exports.importWebsceneSlideLegendInfo = importWebsceneSlideLegendInfo;
|
|
11289
11691
|
exports.importWebsceneSunLighting = importWebsceneSunLighting;
|
|
11692
|
+
exports.importWebsceneSupportFeatureReference = importWebsceneSupportFeatureReference;
|
|
11693
|
+
exports.importWebsceneSupportFeatureReferenceGlobalId = importWebsceneSupportFeatureReferenceGlobalId;
|
|
11694
|
+
exports.importWebsceneSupportFeatureReferenceId = importWebsceneSupportFeatureReferenceId;
|
|
11695
|
+
exports.importWebsceneSupportFeatureReferenceObjectId = importWebsceneSupportFeatureReferenceObjectId;
|
|
11696
|
+
exports.importWebsceneSupportLayerReference = importWebsceneSupportLayerReference;
|
|
11290
11697
|
exports.importWebsceneSupportSlideElements = importWebsceneSupportSlideElements;
|
|
11698
|
+
exports.importWebsceneSupportSlidePopupInfo = importWebsceneSupportSlidePopupInfo;
|
|
11291
11699
|
exports.importWebsceneVirtualLighting = importWebsceneVirtualLighting;
|
|
11292
11700
|
exports.importWidgetsAreaMeasurement2D = importWidgetsAreaMeasurement2D;
|
|
11293
11701
|
exports.importWidgetsAreaMeasurement2DAreaMeasurement2DViewModel = importWidgetsAreaMeasurement2DAreaMeasurement2DViewModel;
|
|
@@ -11308,6 +11716,9 @@ exports.importWidgetsBasemapToggle = importWidgetsBasemapToggle;
|
|
|
11308
11716
|
exports.importWidgetsBasemapToggleBasemapToggleViewModel = importWidgetsBasemapToggleBasemapToggleViewModel;
|
|
11309
11717
|
exports.importWidgetsBatchAttributeForm = importWidgetsBatchAttributeForm;
|
|
11310
11718
|
exports.importWidgetsBatchAttributeFormBatchAttributeFormViewModel = importWidgetsBatchAttributeFormBatchAttributeFormViewModel;
|
|
11719
|
+
exports.importWidgetsBatchAttributeFormInputsBatchFormInputs = importWidgetsBatchAttributeFormInputsBatchFormInputs;
|
|
11720
|
+
exports.importWidgetsBatchAttributeFormInputsFieldInput = importWidgetsBatchAttributeFormInputsFieldInput;
|
|
11721
|
+
exports.importWidgetsBatchAttributeFormInputsGroupInput = importWidgetsBatchAttributeFormInputsGroupInput;
|
|
11311
11722
|
exports.importWidgetsBookmarks = importWidgetsBookmarks;
|
|
11312
11723
|
exports.importWidgetsBookmarksBookmarksViewModel = importWidgetsBookmarksBookmarksViewModel;
|
|
11313
11724
|
exports.importWidgetsBuildingExplorer = importWidgetsBuildingExplorer;
|
|
@@ -11338,6 +11749,7 @@ exports.importWidgetsEditorCreateFeaturesWorkflowData = importWidgetsEditorCreat
|
|
|
11338
11749
|
exports.importWidgetsEditorEditorViewModel = importWidgetsEditorEditorViewModel;
|
|
11339
11750
|
exports.importWidgetsEditorEdits = importWidgetsEditorEdits;
|
|
11340
11751
|
exports.importWidgetsEditorSupportEditorItem = importWidgetsEditorSupportEditorItem;
|
|
11752
|
+
exports.importWidgetsEditorUpdateFeaturesWorkflowData = importWidgetsEditorUpdateFeaturesWorkflowData;
|
|
11341
11753
|
exports.importWidgetsEditorUpdateWorkflow = importWidgetsEditorUpdateWorkflow;
|
|
11342
11754
|
exports.importWidgetsEditorUpdateWorkflowData = importWidgetsEditorUpdateWorkflowData;
|
|
11343
11755
|
exports.importWidgetsEditorWorkflow = importWidgetsEditorWorkflow;
|
|
@@ -11371,6 +11783,7 @@ exports.importWidgetsFeatureTableGridSupportButtonMenuItem = importWidgetsFeatur
|
|
|
11371
11783
|
exports.importWidgetsFeatureTableGridSupportButtonMenuViewModel = importWidgetsFeatureTableGridSupportButtonMenuViewModel;
|
|
11372
11784
|
exports.importWidgetsFeatureTableRelationshipColumn = importWidgetsFeatureTableRelationshipColumn;
|
|
11373
11785
|
exports.importWidgetsFeatureTableSupportAttachmentsColumnTemplate = importWidgetsFeatureTableSupportAttachmentsColumnTemplate;
|
|
11786
|
+
exports.importWidgetsFeatureTableSupportAttachmentsViewOptions = importWidgetsFeatureTableSupportAttachmentsViewOptions;
|
|
11374
11787
|
exports.importWidgetsFeatureTableSupportColumnTemplate = importWidgetsFeatureTableSupportColumnTemplate;
|
|
11375
11788
|
exports.importWidgetsFeatureTableSupportColumnTemplateBase = importWidgetsFeatureTableSupportColumnTemplateBase;
|
|
11376
11789
|
exports.importWidgetsFeatureTableSupportFieldColumnTemplate = importWidgetsFeatureTableSupportFieldColumnTemplate;
|
|
@@ -11430,7 +11843,10 @@ exports.importWidgetsSearchSearchResultRenderer = importWidgetsSearchSearchResul
|
|
|
11430
11843
|
exports.importWidgetsSearchSearchSource = importWidgetsSearchSearchSource;
|
|
11431
11844
|
exports.importWidgetsSearchSearchViewModel = importWidgetsSearchSearchViewModel;
|
|
11432
11845
|
exports.importWidgetsShadowCast = importWidgetsShadowCast;
|
|
11846
|
+
exports.importWidgetsShadowCastDiscreteOptions = importWidgetsShadowCastDiscreteOptions;
|
|
11847
|
+
exports.importWidgetsShadowCastDurationOptions = importWidgetsShadowCastDurationOptions;
|
|
11433
11848
|
exports.importWidgetsShadowCastShadowCastViewModel = importWidgetsShadowCastShadowCastViewModel;
|
|
11849
|
+
exports.importWidgetsShadowCastThresholdOptions = importWidgetsShadowCastThresholdOptions;
|
|
11434
11850
|
exports.importWidgetsSketch = importWidgetsSketch;
|
|
11435
11851
|
exports.importWidgetsSketchSketchViewModel = importWidgetsSketchSketchViewModel;
|
|
11436
11852
|
exports.importWidgetsSlice = importWidgetsSlice;
|
|
@@ -11505,6 +11921,7 @@ exports.newAnalysisLineOfSightAnalysisObserver = newAnalysisLineOfSightAnalysisO
|
|
|
11505
11921
|
exports.newAnalysisLineOfSightAnalysisTarget = newAnalysisLineOfSightAnalysisTarget;
|
|
11506
11922
|
exports.newAnalysisSliceAnalysis = newAnalysisSliceAnalysis;
|
|
11507
11923
|
exports.newAnalysisSlicePlane = newAnalysisSlicePlane;
|
|
11924
|
+
exports.newAnalysisSupportAnalysisOriginWebScene = newAnalysisSupportAnalysisOriginWebScene;
|
|
11508
11925
|
exports.newAnalysisViewshed = newAnalysisViewshed;
|
|
11509
11926
|
exports.newAnalysisViewshedAnalysis = newAnalysisViewshedAnalysis;
|
|
11510
11927
|
exports.newAttributeBinsGraphic = newAttributeBinsGraphic;
|
|
@@ -11517,6 +11934,9 @@ exports.newCoreCollection = newCoreCollection;
|
|
|
11517
11934
|
exports.newCoreError = newCoreError;
|
|
11518
11935
|
exports.newCoreHandles = newCoreHandles;
|
|
11519
11936
|
exports.newCoreWorkersConnection = newCoreWorkersConnection;
|
|
11937
|
+
exports.newEffectsFocusArea = newEffectsFocusArea;
|
|
11938
|
+
exports.newEffectsFocusAreaOutline = newEffectsFocusAreaOutline;
|
|
11939
|
+
exports.newEffectsFocusAreas = newEffectsFocusAreas;
|
|
11520
11940
|
exports.newFormElementsAttachmentElement = newFormElementsAttachmentElement;
|
|
11521
11941
|
exports.newFormElementsElement = newFormElementsElement;
|
|
11522
11942
|
exports.newFormElementsFieldElement = newFormElementsFieldElement;
|
|
@@ -11654,6 +12074,7 @@ exports.newLayersSupportOrderByInfo = newLayersSupportOrderByInfo;
|
|
|
11654
12074
|
exports.newLayersSupportParquetEncodingLocation = newLayersSupportParquetEncodingLocation;
|
|
11655
12075
|
exports.newLayersSupportParquetEncodingWkb = newLayersSupportParquetEncodingWkb;
|
|
11656
12076
|
exports.newLayersSupportPixelBlock = newLayersSupportPixelBlock;
|
|
12077
|
+
exports.newLayersSupportPlaybackInfo = newLayersSupportPlaybackInfo;
|
|
11657
12078
|
exports.newLayersSupportPublishingInfo = newLayersSupportPublishingInfo;
|
|
11658
12079
|
exports.newLayersSupportRangeDomain = newLayersSupportRangeDomain;
|
|
11659
12080
|
exports.newLayersSupportRasterBandInfo = newLayersSupportRasterBandInfo;
|
|
@@ -11794,8 +12215,14 @@ exports.newRestKnowledgeGraphDataModel = newRestKnowledgeGraphDataModel;
|
|
|
11794
12215
|
exports.newRestKnowledgeGraphEntity = newRestKnowledgeGraphEntity;
|
|
11795
12216
|
exports.newRestKnowledgeGraphEntityType = newRestKnowledgeGraphEntityType;
|
|
11796
12217
|
exports.newRestKnowledgeGraphFieldIndex = newRestKnowledgeGraphFieldIndex;
|
|
12218
|
+
exports.newRestKnowledgeGraphGraphAddFieldIndexResult = newRestKnowledgeGraphGraphAddFieldIndexResult;
|
|
12219
|
+
exports.newRestKnowledgeGraphGraphAddNamedTypesResult = newRestKnowledgeGraphGraphAddNamedTypesResult;
|
|
12220
|
+
exports.newRestKnowledgeGraphGraphAddPropertyResult = newRestKnowledgeGraphGraphAddPropertyResult;
|
|
11797
12221
|
exports.newRestKnowledgeGraphGraphApplyEdits = newRestKnowledgeGraphGraphApplyEdits;
|
|
11798
12222
|
exports.newRestKnowledgeGraphGraphApplyEditsResult = newRestKnowledgeGraphGraphApplyEditsResult;
|
|
12223
|
+
exports.newRestKnowledgeGraphGraphDeleteFieldIndexResult = newRestKnowledgeGraphGraphDeleteFieldIndexResult;
|
|
12224
|
+
exports.newRestKnowledgeGraphGraphDeleteNamedTypeResult = newRestKnowledgeGraphGraphDeleteNamedTypeResult;
|
|
12225
|
+
exports.newRestKnowledgeGraphGraphDeletePropertyResult = newRestKnowledgeGraphGraphDeletePropertyResult;
|
|
11799
12226
|
exports.newRestKnowledgeGraphGraphNamedObject = newRestKnowledgeGraphGraphNamedObject;
|
|
11800
12227
|
exports.newRestKnowledgeGraphGraphObject = newRestKnowledgeGraphGraphObject;
|
|
11801
12228
|
exports.newRestKnowledgeGraphGraphObjectType = newRestKnowledgeGraphGraphObjectType;
|
|
@@ -11807,6 +12234,9 @@ exports.newRestKnowledgeGraphGraphQueryStreaming = newRestKnowledgeGraphGraphQue
|
|
|
11807
12234
|
exports.newRestKnowledgeGraphGraphQueryStreamingResult = newRestKnowledgeGraphGraphQueryStreamingResult;
|
|
11808
12235
|
exports.newRestKnowledgeGraphGraphSearch = newRestKnowledgeGraphGraphSearch;
|
|
11809
12236
|
exports.newRestKnowledgeGraphGraphSearchStreaming = newRestKnowledgeGraphGraphSearchStreaming;
|
|
12237
|
+
exports.newRestKnowledgeGraphGraphUpdateNamedTypesResult = newRestKnowledgeGraphGraphUpdateNamedTypesResult;
|
|
12238
|
+
exports.newRestKnowledgeGraphGraphUpdatePropertyResult = newRestKnowledgeGraphGraphUpdatePropertyResult;
|
|
12239
|
+
exports.newRestKnowledgeGraphGraphUpdateSearchIndexResult = newRestKnowledgeGraphGraphUpdateSearchIndexResult;
|
|
11810
12240
|
exports.newRestKnowledgeGraphInputQuantizationParameters = newRestKnowledgeGraphInputQuantizationParameters;
|
|
11811
12241
|
exports.newRestKnowledgeGraphKnowledgeGraph = newRestKnowledgeGraphKnowledgeGraph;
|
|
11812
12242
|
exports.newRestKnowledgeGraphOutputQuantizationParameters = newRestKnowledgeGraphOutputQuantizationParameters;
|
|
@@ -12006,6 +12436,7 @@ exports.newViews2dLayersBaseLayerView2D = newViews2dLayersBaseLayerView2D;
|
|
|
12006
12436
|
exports.newViews2dLayersBaseLayerViewGL2D = newViews2dLayersBaseLayerViewGL2D;
|
|
12007
12437
|
exports.newViews2dViewState = newViews2dViewState;
|
|
12008
12438
|
exports.newViews3dAnalysisAreaMeasurementAnalysisView3D = newViews3dAnalysisAreaMeasurementAnalysisView3D;
|
|
12439
|
+
exports.newViews3dAnalysisDimensionAnalysisView3D = newViews3dAnalysisDimensionAnalysisView3D;
|
|
12009
12440
|
exports.newViews3dAnalysisDirectLineMeasurementAnalysisView3D = newViews3dAnalysisDirectLineMeasurementAnalysisView3D;
|
|
12010
12441
|
exports.newViews3dAnalysisLineOfSightAnalysisResult = newViews3dAnalysisLineOfSightAnalysisResult;
|
|
12011
12442
|
exports.newViews3dAnalysisLineOfSightAnalysisView3D = newViews3dAnalysisLineOfSightAnalysisView3D;
|
|
@@ -12019,7 +12450,6 @@ exports.newViews3dEnvironmentSunLighting = newViews3dEnvironmentSunLighting;
|
|
|
12019
12450
|
exports.newViews3dEnvironmentSunnyWeather = newViews3dEnvironmentSunnyWeather;
|
|
12020
12451
|
exports.newViews3dEnvironmentVirtualLighting = newViews3dEnvironmentVirtualLighting;
|
|
12021
12452
|
exports.newViews3dWebglRenderNode = newViews3dWebglRenderNode;
|
|
12022
|
-
exports.newViewsAnalysisDimensionAnalysisView = newViewsAnalysisDimensionAnalysisView;
|
|
12023
12453
|
exports.newViewsBasemapView = newViewsBasemapView;
|
|
12024
12454
|
exports.newViewsDrawDraw = newViewsDrawDraw;
|
|
12025
12455
|
exports.newViewsDrawDrawAction = newViewsDrawDrawAction;
|
|
@@ -12091,7 +12521,12 @@ exports.newWebdocGeotriggersInfoFenceGeotrigger = newWebdocGeotriggersInfoFenceG
|
|
|
12091
12521
|
exports.newWebdocGeotriggersInfoGeotrigger = newWebdocGeotriggersInfoGeotrigger;
|
|
12092
12522
|
exports.newWebdocGeotriggersInfoGeotriggerNotificationOptions = newWebdocGeotriggersInfoGeotriggerNotificationOptions;
|
|
12093
12523
|
exports.newWebdocIPSInfo = newWebdocIPSInfo;
|
|
12524
|
+
exports.newWebdocIpsAppleIPSProperties = newWebdocIpsAppleIPSProperties;
|
|
12525
|
+
exports.newWebdocIpsConfiguration = newWebdocIpsConfiguration;
|
|
12526
|
+
exports.newWebdocIpsGNSSProperties = newWebdocIpsGNSSProperties;
|
|
12527
|
+
exports.newWebdocIpsPathSnappingProperties = newWebdocIpsPathSnappingProperties;
|
|
12094
12528
|
exports.newWebdocIpsPositioningService = newWebdocIpsPositioningService;
|
|
12529
|
+
exports.newWebdocIpsSmoothingProperties = newWebdocIpsSmoothingProperties;
|
|
12095
12530
|
exports.newWebdocWidgetsTimeSlider = newWebdocWidgetsTimeSlider;
|
|
12096
12531
|
exports.newWebmapApplicationProperties = newWebmapApplicationProperties;
|
|
12097
12532
|
exports.newWebmapBackgroundColorBackground = newWebmapBackgroundColorBackground;
|
|
@@ -12106,7 +12541,13 @@ exports.newWebscenePresentation = newWebscenePresentation;
|
|
|
12106
12541
|
exports.newWebsceneSlide = newWebsceneSlide;
|
|
12107
12542
|
exports.newWebsceneSlideLegendInfo = newWebsceneSlideLegendInfo;
|
|
12108
12543
|
exports.newWebsceneSunLighting = newWebsceneSunLighting;
|
|
12544
|
+
exports.newWebsceneSupportFeatureReference = newWebsceneSupportFeatureReference;
|
|
12545
|
+
exports.newWebsceneSupportFeatureReferenceGlobalId = newWebsceneSupportFeatureReferenceGlobalId;
|
|
12546
|
+
exports.newWebsceneSupportFeatureReferenceId = newWebsceneSupportFeatureReferenceId;
|
|
12547
|
+
exports.newWebsceneSupportFeatureReferenceObjectId = newWebsceneSupportFeatureReferenceObjectId;
|
|
12548
|
+
exports.newWebsceneSupportLayerReference = newWebsceneSupportLayerReference;
|
|
12109
12549
|
exports.newWebsceneSupportSlideElements = newWebsceneSupportSlideElements;
|
|
12550
|
+
exports.newWebsceneSupportSlidePopupInfo = newWebsceneSupportSlidePopupInfo;
|
|
12110
12551
|
exports.newWebsceneVirtualLighting = newWebsceneVirtualLighting;
|
|
12111
12552
|
exports.newWidgetsAreaMeasurement2D = newWidgetsAreaMeasurement2D;
|
|
12112
12553
|
exports.newWidgetsAreaMeasurement2DAreaMeasurement2DViewModel = newWidgetsAreaMeasurement2DAreaMeasurement2DViewModel;
|
|
@@ -12126,6 +12567,10 @@ exports.newWidgetsBasemapLayerListBasemapLayerListViewModel = newWidgetsBasemapL
|
|
|
12126
12567
|
exports.newWidgetsBasemapToggle = newWidgetsBasemapToggle;
|
|
12127
12568
|
exports.newWidgetsBasemapToggleBasemapToggleViewModel = newWidgetsBasemapToggleBasemapToggleViewModel;
|
|
12128
12569
|
exports.newWidgetsBatchAttributeForm = newWidgetsBatchAttributeForm;
|
|
12570
|
+
exports.newWidgetsBatchAttributeFormBatchAttributeFormViewModel = newWidgetsBatchAttributeFormBatchAttributeFormViewModel;
|
|
12571
|
+
exports.newWidgetsBatchAttributeFormInputsBatchFormInputs = newWidgetsBatchAttributeFormInputsBatchFormInputs;
|
|
12572
|
+
exports.newWidgetsBatchAttributeFormInputsFieldInput = newWidgetsBatchAttributeFormInputsFieldInput;
|
|
12573
|
+
exports.newWidgetsBatchAttributeFormInputsGroupInput = newWidgetsBatchAttributeFormInputsGroupInput;
|
|
12129
12574
|
exports.newWidgetsBookmarks = newWidgetsBookmarks;
|
|
12130
12575
|
exports.newWidgetsBookmarksBookmarksViewModel = newWidgetsBookmarksBookmarksViewModel;
|
|
12131
12576
|
exports.newWidgetsBuildingExplorer = newWidgetsBuildingExplorer;
|
|
@@ -12156,6 +12601,7 @@ exports.newWidgetsEditorCreateFeaturesWorkflowData = newWidgetsEditorCreateFeatu
|
|
|
12156
12601
|
exports.newWidgetsEditorEditorViewModel = newWidgetsEditorEditorViewModel;
|
|
12157
12602
|
exports.newWidgetsEditorEdits = newWidgetsEditorEdits;
|
|
12158
12603
|
exports.newWidgetsEditorSupportEditorItem = newWidgetsEditorSupportEditorItem;
|
|
12604
|
+
exports.newWidgetsEditorUpdateFeaturesWorkflowData = newWidgetsEditorUpdateFeaturesWorkflowData;
|
|
12159
12605
|
exports.newWidgetsEditorUpdateWorkflow = newWidgetsEditorUpdateWorkflow;
|
|
12160
12606
|
exports.newWidgetsEditorUpdateWorkflowData = newWidgetsEditorUpdateWorkflowData;
|
|
12161
12607
|
exports.newWidgetsEditorWorkflow = newWidgetsEditorWorkflow;
|
|
@@ -12189,6 +12635,7 @@ exports.newWidgetsFeatureTableGridSupportButtonMenuItem = newWidgetsFeatureTable
|
|
|
12189
12635
|
exports.newWidgetsFeatureTableGridSupportButtonMenuViewModel = newWidgetsFeatureTableGridSupportButtonMenuViewModel;
|
|
12190
12636
|
exports.newWidgetsFeatureTableRelationshipColumn = newWidgetsFeatureTableRelationshipColumn;
|
|
12191
12637
|
exports.newWidgetsFeatureTableSupportAttachmentsColumnTemplate = newWidgetsFeatureTableSupportAttachmentsColumnTemplate;
|
|
12638
|
+
exports.newWidgetsFeatureTableSupportAttachmentsViewOptions = newWidgetsFeatureTableSupportAttachmentsViewOptions;
|
|
12192
12639
|
exports.newWidgetsFeatureTableSupportColumnTemplate = newWidgetsFeatureTableSupportColumnTemplate;
|
|
12193
12640
|
exports.newWidgetsFeatureTableSupportColumnTemplateBase = newWidgetsFeatureTableSupportColumnTemplateBase;
|
|
12194
12641
|
exports.newWidgetsFeatureTableSupportFieldColumnTemplate = newWidgetsFeatureTableSupportFieldColumnTemplate;
|
|
@@ -12248,7 +12695,10 @@ exports.newWidgetsSearchSearchResultRenderer = newWidgetsSearchSearchResultRende
|
|
|
12248
12695
|
exports.newWidgetsSearchSearchSource = newWidgetsSearchSearchSource;
|
|
12249
12696
|
exports.newWidgetsSearchSearchViewModel = newWidgetsSearchSearchViewModel;
|
|
12250
12697
|
exports.newWidgetsShadowCast = newWidgetsShadowCast;
|
|
12698
|
+
exports.newWidgetsShadowCastDiscreteOptions = newWidgetsShadowCastDiscreteOptions;
|
|
12699
|
+
exports.newWidgetsShadowCastDurationOptions = newWidgetsShadowCastDurationOptions;
|
|
12251
12700
|
exports.newWidgetsShadowCastShadowCastViewModel = newWidgetsShadowCastShadowCastViewModel;
|
|
12701
|
+
exports.newWidgetsShadowCastThresholdOptions = newWidgetsShadowCastThresholdOptions;
|
|
12252
12702
|
exports.newWidgetsSketch = newWidgetsSketch;
|
|
12253
12703
|
exports.newWidgetsSketchSketchViewModel = newWidgetsSketchSketchViewModel;
|
|
12254
12704
|
exports.newWidgetsSlice = newWidgetsSlice;
|