@arcgis/core-adapter 4.33.0-next.98 → 4.34.0-next.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 +292 -37
- package/dist/index.d.cts +47 -8
- package/dist/index.d.ts +47 -8
- package/dist/index.js +292 -37
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -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");
|
|
@@ -3340,6 +3351,17 @@ async function newRestKnowledgeGraphFieldIndex(properties) {
|
|
|
3340
3351
|
const ModConstructor = await importRestKnowledgeGraphFieldIndex();
|
|
3341
3352
|
return new ModConstructor(properties);
|
|
3342
3353
|
}
|
|
3354
|
+
async function importRestKnowledgeGraphGraphAddNamedTypesResult() {
|
|
3355
|
+
if (isAMD) {
|
|
3356
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddNamedTypesResult");
|
|
3357
|
+
}
|
|
3358
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphAddNamedTypesResult.js");
|
|
3359
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3360
|
+
}
|
|
3361
|
+
async function newRestKnowledgeGraphGraphAddNamedTypesResult(properties) {
|
|
3362
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddNamedTypesResult();
|
|
3363
|
+
return new ModConstructor(properties);
|
|
3364
|
+
}
|
|
3343
3365
|
async function importRestKnowledgeGraphGraphApplyEdits() {
|
|
3344
3366
|
if (isAMD) {
|
|
3345
3367
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphApplyEdits");
|
|
@@ -3362,6 +3384,17 @@ async function newRestKnowledgeGraphGraphApplyEditsResult(properties) {
|
|
|
3362
3384
|
const ModConstructor = await importRestKnowledgeGraphGraphApplyEditsResult();
|
|
3363
3385
|
return new ModConstructor(properties);
|
|
3364
3386
|
}
|
|
3387
|
+
async function importRestKnowledgeGraphGraphDeleteNamedTypeResult() {
|
|
3388
|
+
if (isAMD) {
|
|
3389
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteNamedTypeResult");
|
|
3390
|
+
}
|
|
3391
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphDeleteNamedTypeResult.js");
|
|
3392
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3393
|
+
}
|
|
3394
|
+
async function newRestKnowledgeGraphGraphDeleteNamedTypeResult(properties) {
|
|
3395
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeleteNamedTypeResult();
|
|
3396
|
+
return new ModConstructor(properties);
|
|
3397
|
+
}
|
|
3365
3398
|
async function importRestKnowledgeGraphGraphNamedObject() {
|
|
3366
3399
|
if (isAMD) {
|
|
3367
3400
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphNamedObject");
|
|
@@ -5672,6 +5705,17 @@ async function newViews3dAnalysisAreaMeasurementAnalysisView3D(properties) {
|
|
|
5672
5705
|
const ModConstructor = await importViews3dAnalysisAreaMeasurementAnalysisView3D();
|
|
5673
5706
|
return new ModConstructor(properties);
|
|
5674
5707
|
}
|
|
5708
|
+
async function importViews3dAnalysisDimensionAnalysisView3D() {
|
|
5709
|
+
if (isAMD) {
|
|
5710
|
+
return await window.$arcgis.import("esri/views/3d/analysis/DimensionAnalysisView3D");
|
|
5711
|
+
}
|
|
5712
|
+
const module2 = await import("@arcgis/core/views/3d/analysis/DimensionAnalysisView3D.js");
|
|
5713
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5714
|
+
}
|
|
5715
|
+
async function newViews3dAnalysisDimensionAnalysisView3D(properties) {
|
|
5716
|
+
const ModConstructor = await importViews3dAnalysisDimensionAnalysisView3D();
|
|
5717
|
+
return new ModConstructor(properties);
|
|
5718
|
+
}
|
|
5675
5719
|
async function importViews3dAnalysisDirectLineMeasurementAnalysisView3D() {
|
|
5676
5720
|
if (isAMD) {
|
|
5677
5721
|
return await window.$arcgis.import("esri/views/3d/analysis/DirectLineMeasurementAnalysisView3D");
|
|
@@ -5815,17 +5859,6 @@ async function newViews3dWebglRenderNode(properties) {
|
|
|
5815
5859
|
const ModConstructor = await importViews3dWebglRenderNode();
|
|
5816
5860
|
return new ModConstructor(properties);
|
|
5817
5861
|
}
|
|
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
5862
|
async function importViewsBasemapView() {
|
|
5830
5863
|
if (isAMD) {
|
|
5831
5864
|
return await window.$arcgis.import("esri/views/BasemapView");
|
|
@@ -6574,6 +6607,61 @@ async function newWebdocIpsPositioningService(properties) {
|
|
|
6574
6607
|
const ModConstructor = await importWebdocIpsPositioningService();
|
|
6575
6608
|
return new ModConstructor(properties);
|
|
6576
6609
|
}
|
|
6610
|
+
async function importWebdocIpsConfiguration() {
|
|
6611
|
+
if (isAMD) {
|
|
6612
|
+
return await window.$arcgis.import("esri/webdoc/ips/Configuration");
|
|
6613
|
+
}
|
|
6614
|
+
const module2 = await import("@arcgis/core/webdoc/ips/Configuration.js");
|
|
6615
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6616
|
+
}
|
|
6617
|
+
async function newWebdocIpsConfiguration(properties) {
|
|
6618
|
+
const ModConstructor = await importWebdocIpsConfiguration();
|
|
6619
|
+
return new ModConstructor(properties);
|
|
6620
|
+
}
|
|
6621
|
+
async function importWebdocIpsAppleIPSProperties() {
|
|
6622
|
+
if (isAMD) {
|
|
6623
|
+
return await window.$arcgis.import("esri/webdoc/ips/AppleIPSProperties");
|
|
6624
|
+
}
|
|
6625
|
+
const module2 = await import("@arcgis/core/webdoc/ips/AppleIPSProperties.js");
|
|
6626
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6627
|
+
}
|
|
6628
|
+
async function newWebdocIpsAppleIPSProperties(properties) {
|
|
6629
|
+
const ModConstructor = await importWebdocIpsAppleIPSProperties();
|
|
6630
|
+
return new ModConstructor(properties);
|
|
6631
|
+
}
|
|
6632
|
+
async function importWebdocIpsGNSSProperties() {
|
|
6633
|
+
if (isAMD) {
|
|
6634
|
+
return await window.$arcgis.import("esri/webdoc/ips/GNSSProperties");
|
|
6635
|
+
}
|
|
6636
|
+
const module2 = await import("@arcgis/core/webdoc/ips/GNSSProperties.js");
|
|
6637
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6638
|
+
}
|
|
6639
|
+
async function newWebdocIpsGNSSProperties(properties) {
|
|
6640
|
+
const ModConstructor = await importWebdocIpsGNSSProperties();
|
|
6641
|
+
return new ModConstructor(properties);
|
|
6642
|
+
}
|
|
6643
|
+
async function importWebdocIpsPathSnappingProperties() {
|
|
6644
|
+
if (isAMD) {
|
|
6645
|
+
return await window.$arcgis.import("esri/webdoc/ips/PathSnappingProperties");
|
|
6646
|
+
}
|
|
6647
|
+
const module2 = await import("@arcgis/core/webdoc/ips/PathSnappingProperties.js");
|
|
6648
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6649
|
+
}
|
|
6650
|
+
async function newWebdocIpsPathSnappingProperties(properties) {
|
|
6651
|
+
const ModConstructor = await importWebdocIpsPathSnappingProperties();
|
|
6652
|
+
return new ModConstructor(properties);
|
|
6653
|
+
}
|
|
6654
|
+
async function importWebdocIpsSmoothingProperties() {
|
|
6655
|
+
if (isAMD) {
|
|
6656
|
+
return await window.$arcgis.import("esri/webdoc/ips/SmoothingProperties");
|
|
6657
|
+
}
|
|
6658
|
+
const module2 = await import("@arcgis/core/webdoc/ips/SmoothingProperties.js");
|
|
6659
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6660
|
+
}
|
|
6661
|
+
async function newWebdocIpsSmoothingProperties(properties) {
|
|
6662
|
+
const ModConstructor = await importWebdocIpsSmoothingProperties();
|
|
6663
|
+
return new ModConstructor(properties);
|
|
6664
|
+
}
|
|
6577
6665
|
async function importWebdocWidgetsTimeSlider() {
|
|
6578
6666
|
if (isAMD) {
|
|
6579
6667
|
return await window.$arcgis.import("esri/webdoc/widgets/TimeSlider");
|
|
@@ -6783,6 +6871,61 @@ async function newWebsceneVirtualLighting(properties) {
|
|
|
6783
6871
|
const ModConstructor = await importWebsceneVirtualLighting();
|
|
6784
6872
|
return new ModConstructor(properties);
|
|
6785
6873
|
}
|
|
6874
|
+
async function importWebsceneSupportFeatureReferenceGlobalId() {
|
|
6875
|
+
if (isAMD) {
|
|
6876
|
+
return await window.$arcgis.import("esri/webscene/support/FeatureReferenceGlobalId");
|
|
6877
|
+
}
|
|
6878
|
+
const module2 = await import("@arcgis/core/webscene/support/FeatureReferenceGlobalId.js");
|
|
6879
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6880
|
+
}
|
|
6881
|
+
async function newWebsceneSupportFeatureReferenceGlobalId(properties) {
|
|
6882
|
+
const ModConstructor = await importWebsceneSupportFeatureReferenceGlobalId();
|
|
6883
|
+
return new ModConstructor(properties);
|
|
6884
|
+
}
|
|
6885
|
+
async function importWebsceneSupportFeatureReferenceId() {
|
|
6886
|
+
if (isAMD) {
|
|
6887
|
+
return await window.$arcgis.import("esri/webscene/support/FeatureReferenceId");
|
|
6888
|
+
}
|
|
6889
|
+
const module2 = await import("@arcgis/core/webscene/support/FeatureReferenceId.js");
|
|
6890
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6891
|
+
}
|
|
6892
|
+
async function newWebsceneSupportFeatureReferenceId(properties) {
|
|
6893
|
+
const ModConstructor = await importWebsceneSupportFeatureReferenceId();
|
|
6894
|
+
return new ModConstructor(properties);
|
|
6895
|
+
}
|
|
6896
|
+
async function importWebsceneSupportFeatureReferenceObjectId() {
|
|
6897
|
+
if (isAMD) {
|
|
6898
|
+
return await window.$arcgis.import("esri/webscene/support/FeatureReferenceObjectId");
|
|
6899
|
+
}
|
|
6900
|
+
const module2 = await import("@arcgis/core/webscene/support/FeatureReferenceObjectId.js");
|
|
6901
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6902
|
+
}
|
|
6903
|
+
async function newWebsceneSupportFeatureReferenceObjectId(properties) {
|
|
6904
|
+
const ModConstructor = await importWebsceneSupportFeatureReferenceObjectId();
|
|
6905
|
+
return new ModConstructor(properties);
|
|
6906
|
+
}
|
|
6907
|
+
async function importWebsceneSupportFeatureReference() {
|
|
6908
|
+
if (isAMD) {
|
|
6909
|
+
return await window.$arcgis.import("esri/webscene/support/FeatureReference");
|
|
6910
|
+
}
|
|
6911
|
+
const module2 = await import("@arcgis/core/webscene/support/FeatureReference.js");
|
|
6912
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6913
|
+
}
|
|
6914
|
+
async function newWebsceneSupportFeatureReference(properties) {
|
|
6915
|
+
const ModConstructor = await importWebsceneSupportFeatureReference();
|
|
6916
|
+
return new ModConstructor(properties);
|
|
6917
|
+
}
|
|
6918
|
+
async function importWebsceneSupportLayerReference() {
|
|
6919
|
+
if (isAMD) {
|
|
6920
|
+
return await window.$arcgis.import("esri/webscene/support/LayerReference");
|
|
6921
|
+
}
|
|
6922
|
+
const module2 = await import("@arcgis/core/webscene/support/LayerReference.js");
|
|
6923
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6924
|
+
}
|
|
6925
|
+
async function newWebsceneSupportLayerReference(properties) {
|
|
6926
|
+
const ModConstructor = await importWebsceneSupportLayerReference();
|
|
6927
|
+
return new ModConstructor(properties);
|
|
6928
|
+
}
|
|
6786
6929
|
async function importWebsceneSupportSlideElements() {
|
|
6787
6930
|
if (isAMD) {
|
|
6788
6931
|
return await window.$arcgis.import("esri/webscene/support/SlideElements");
|
|
@@ -6794,6 +6937,17 @@ async function newWebsceneSupportSlideElements(properties) {
|
|
|
6794
6937
|
const ModConstructor = await importWebsceneSupportSlideElements();
|
|
6795
6938
|
return new ModConstructor(properties);
|
|
6796
6939
|
}
|
|
6940
|
+
async function importWebsceneSupportSlidePopupInfo() {
|
|
6941
|
+
if (isAMD) {
|
|
6942
|
+
return await window.$arcgis.import("esri/webscene/support/SlidePopupInfo");
|
|
6943
|
+
}
|
|
6944
|
+
const module2 = await import("@arcgis/core/webscene/support/SlidePopupInfo.js");
|
|
6945
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6946
|
+
}
|
|
6947
|
+
async function newWebsceneSupportSlidePopupInfo(properties) {
|
|
6948
|
+
const ModConstructor = await importWebsceneSupportSlidePopupInfo();
|
|
6949
|
+
return new ModConstructor(properties);
|
|
6950
|
+
}
|
|
6797
6951
|
async function importWidgetsAreaMeasurement2D() {
|
|
6798
6952
|
if (isAMD) {
|
|
6799
6953
|
return await window.$arcgis.import("esri/widgets/AreaMeasurement2D");
|
|
@@ -7311,6 +7465,17 @@ async function newWidgetsEditorEdits(properties) {
|
|
|
7311
7465
|
const ModConstructor = await importWidgetsEditorEdits();
|
|
7312
7466
|
return new ModConstructor(properties);
|
|
7313
7467
|
}
|
|
7468
|
+
async function importWidgetsEditorUpdateFeaturesWorkflowData() {
|
|
7469
|
+
if (isAMD) {
|
|
7470
|
+
return await window.$arcgis.import("esri/widgets/Editor/UpdateFeaturesWorkflowData");
|
|
7471
|
+
}
|
|
7472
|
+
const module2 = await import("@arcgis/core/widgets/Editor/UpdateFeaturesWorkflowData.js");
|
|
7473
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7474
|
+
}
|
|
7475
|
+
async function newWidgetsEditorUpdateFeaturesWorkflowData(properties) {
|
|
7476
|
+
const ModConstructor = await importWidgetsEditorUpdateFeaturesWorkflowData();
|
|
7477
|
+
return new ModConstructor(properties);
|
|
7478
|
+
}
|
|
7314
7479
|
async function importWidgetsEditorUpdateWorkflow() {
|
|
7315
7480
|
if (isAMD) {
|
|
7316
7481
|
return await window.$arcgis.import("esri/widgets/Editor/UpdateWorkflow");
|
|
@@ -7696,6 +7861,28 @@ async function newWidgetsFeatureTableGridSupportButtonMenuViewModel(properties)
|
|
|
7696
7861
|
const ModConstructor = await importWidgetsFeatureTableGridSupportButtonMenuViewModel();
|
|
7697
7862
|
return new ModConstructor(properties);
|
|
7698
7863
|
}
|
|
7864
|
+
async function importWidgetsFeatureTableSupportAttachmentsColumnTemplate() {
|
|
7865
|
+
if (isAMD) {
|
|
7866
|
+
return await window.$arcgis.import("esri/widgets/FeatureTable/support/AttachmentsColumnTemplate");
|
|
7867
|
+
}
|
|
7868
|
+
const module2 = await import("@arcgis/core/widgets/FeatureTable/support/AttachmentsColumnTemplate.js");
|
|
7869
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7870
|
+
}
|
|
7871
|
+
async function newWidgetsFeatureTableSupportAttachmentsColumnTemplate(properties) {
|
|
7872
|
+
const ModConstructor = await importWidgetsFeatureTableSupportAttachmentsColumnTemplate();
|
|
7873
|
+
return new ModConstructor(properties);
|
|
7874
|
+
}
|
|
7875
|
+
async function importWidgetsFeatureTableSupportAttachmentsViewOptions() {
|
|
7876
|
+
if (isAMD) {
|
|
7877
|
+
return await window.$arcgis.import("esri/widgets/FeatureTable/support/AttachmentsViewOptions");
|
|
7878
|
+
}
|
|
7879
|
+
const module2 = await import("@arcgis/core/widgets/FeatureTable/support/AttachmentsViewOptions.js");
|
|
7880
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7881
|
+
}
|
|
7882
|
+
async function newWidgetsFeatureTableSupportAttachmentsViewOptions(properties) {
|
|
7883
|
+
const ModConstructor = await importWidgetsFeatureTableSupportAttachmentsViewOptions();
|
|
7884
|
+
return new ModConstructor(properties);
|
|
7885
|
+
}
|
|
7699
7886
|
async function importWidgetsFeatureTableSupportColumnTemplate() {
|
|
7700
7887
|
if (isAMD) {
|
|
7701
7888
|
return await window.$arcgis.import("esri/widgets/FeatureTable/support/ColumnTemplate");
|
|
@@ -7729,15 +7916,15 @@ async function newWidgetsFeatureTableSupportFieldColumnTemplate(properties) {
|
|
|
7729
7916
|
const ModConstructor = await importWidgetsFeatureTableSupportFieldColumnTemplate();
|
|
7730
7917
|
return new ModConstructor(properties);
|
|
7731
7918
|
}
|
|
7732
|
-
async function
|
|
7919
|
+
async function importWidgetsFeatureTableSupportGroupColumnTemplate() {
|
|
7733
7920
|
if (isAMD) {
|
|
7734
|
-
return await window.$arcgis.import("esri/widgets/FeatureTable/support/
|
|
7921
|
+
return await window.$arcgis.import("esri/widgets/FeatureTable/support/GroupColumnTemplate");
|
|
7735
7922
|
}
|
|
7736
|
-
const module2 = await import("@arcgis/core/widgets/FeatureTable/support/
|
|
7923
|
+
const module2 = await import("@arcgis/core/widgets/FeatureTable/support/GroupColumnTemplate.js");
|
|
7737
7924
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
7738
7925
|
}
|
|
7739
|
-
async function
|
|
7740
|
-
const ModConstructor = await
|
|
7926
|
+
async function newWidgetsFeatureTableSupportGroupColumnTemplate(properties) {
|
|
7927
|
+
const ModConstructor = await importWidgetsFeatureTableSupportGroupColumnTemplate();
|
|
7741
7928
|
return new ModConstructor(properties);
|
|
7742
7929
|
}
|
|
7743
7930
|
async function importWidgetsFeatureTableSupportRelationshipColumnTemplate() {
|
|
@@ -7751,17 +7938,6 @@ async function newWidgetsFeatureTableSupportRelationshipColumnTemplate(propertie
|
|
|
7751
7938
|
const ModConstructor = await importWidgetsFeatureTableSupportRelationshipColumnTemplate();
|
|
7752
7939
|
return new ModConstructor(properties);
|
|
7753
7940
|
}
|
|
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
7941
|
async function importWidgetsFeatureTableSupportTableTemplate() {
|
|
7766
7942
|
if (isAMD) {
|
|
7767
7943
|
return await window.$arcgis.import("esri/widgets/FeatureTable/support/TableTemplate");
|
|
@@ -8345,6 +8521,39 @@ async function newWidgetsShadowCastShadowCastViewModel(properties) {
|
|
|
8345
8521
|
const ModConstructor = await importWidgetsShadowCastShadowCastViewModel();
|
|
8346
8522
|
return new ModConstructor(properties);
|
|
8347
8523
|
}
|
|
8524
|
+
async function importWidgetsShadowCastDiscreteOptions() {
|
|
8525
|
+
if (isAMD) {
|
|
8526
|
+
return await window.$arcgis.import("esri/widgets/ShadowCast/DiscreteOptions");
|
|
8527
|
+
}
|
|
8528
|
+
const module2 = await import("@arcgis/core/widgets/ShadowCast/DiscreteOptions.js");
|
|
8529
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
8530
|
+
}
|
|
8531
|
+
async function newWidgetsShadowCastDiscreteOptions(properties) {
|
|
8532
|
+
const ModConstructor = await importWidgetsShadowCastDiscreteOptions();
|
|
8533
|
+
return new ModConstructor(properties);
|
|
8534
|
+
}
|
|
8535
|
+
async function importWidgetsShadowCastDurationOptions() {
|
|
8536
|
+
if (isAMD) {
|
|
8537
|
+
return await window.$arcgis.import("esri/widgets/ShadowCast/DurationOptions");
|
|
8538
|
+
}
|
|
8539
|
+
const module2 = await import("@arcgis/core/widgets/ShadowCast/DurationOptions.js");
|
|
8540
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
8541
|
+
}
|
|
8542
|
+
async function newWidgetsShadowCastDurationOptions(properties) {
|
|
8543
|
+
const ModConstructor = await importWidgetsShadowCastDurationOptions();
|
|
8544
|
+
return new ModConstructor(properties);
|
|
8545
|
+
}
|
|
8546
|
+
async function importWidgetsShadowCastThresholdOptions() {
|
|
8547
|
+
if (isAMD) {
|
|
8548
|
+
return await window.$arcgis.import("esri/widgets/ShadowCast/ThresholdOptions");
|
|
8549
|
+
}
|
|
8550
|
+
const module2 = await import("@arcgis/core/widgets/ShadowCast/ThresholdOptions.js");
|
|
8551
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
8552
|
+
}
|
|
8553
|
+
async function newWidgetsShadowCastThresholdOptions(properties) {
|
|
8554
|
+
const ModConstructor = await importWidgetsShadowCastThresholdOptions();
|
|
8555
|
+
return new ModConstructor(properties);
|
|
8556
|
+
}
|
|
8348
8557
|
async function importWidgetsSketch() {
|
|
8349
8558
|
if (isAMD) {
|
|
8350
8559
|
return await window.$arcgis.import("esri/widgets/Sketch");
|
|
@@ -9565,13 +9774,6 @@ async function importLayersCatalogCatalogUtils() {
|
|
|
9565
9774
|
const module2 = await import("@arcgis/core/layers/catalog/catalogUtils.js");
|
|
9566
9775
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
9567
9776
|
}
|
|
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
9777
|
async function importLayersOgcWfsUtils() {
|
|
9576
9778
|
if (isAMD) {
|
|
9577
9779
|
return await window.$arcgis.import("esri/layers/ogc/wfsUtils");
|
|
@@ -10342,6 +10544,13 @@ async function importWidgetsSupportWidget() {
|
|
|
10342
10544
|
const module2 = await import("@arcgis/core/widgets/support/widget.js");
|
|
10343
10545
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10344
10546
|
}
|
|
10547
|
+
async function importApplicationsComponentsAnalysisUtils() {
|
|
10548
|
+
if (isAMD) {
|
|
10549
|
+
return await window.$arcgis.import("esri/applications/Components/analysisUtils");
|
|
10550
|
+
}
|
|
10551
|
+
const module2 = await import("@arcgis/core/applications/Components/analysisUtils.js");
|
|
10552
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10553
|
+
}
|
|
10345
10554
|
async function importApplicationsComponentsBasemapUtils() {
|
|
10346
10555
|
if (isAMD) {
|
|
10347
10556
|
return await window.$arcgis.import("esri/applications/Components/basemapUtils");
|
|
@@ -10433,6 +10642,13 @@ async function importApplicationsComponentsSvgUtils() {
|
|
|
10433
10642
|
const module2 = await import("@arcgis/core/applications/Components/svgUtils.js");
|
|
10434
10643
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10435
10644
|
}
|
|
10645
|
+
async function importApplicationsComponentsViewUtils() {
|
|
10646
|
+
if (isAMD) {
|
|
10647
|
+
return await window.$arcgis.import("esri/applications/Components/viewUtils");
|
|
10648
|
+
}
|
|
10649
|
+
const module2 = await import("@arcgis/core/applications/Components/viewUtils.js");
|
|
10650
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10651
|
+
}
|
|
10436
10652
|
async function importApplicationsComponentsWebStyleSymbolUtils() {
|
|
10437
10653
|
if (isAMD) {
|
|
10438
10654
|
return await window.$arcgis.import("esri/applications/Components/webStyleSymbolUtils");
|
|
@@ -10479,8 +10695,10 @@ exports.importAnalysisLineOfSightAnalysisObserver = importAnalysisLineOfSightAna
|
|
|
10479
10695
|
exports.importAnalysisLineOfSightAnalysisTarget = importAnalysisLineOfSightAnalysisTarget;
|
|
10480
10696
|
exports.importAnalysisSliceAnalysis = importAnalysisSliceAnalysis;
|
|
10481
10697
|
exports.importAnalysisSlicePlane = importAnalysisSlicePlane;
|
|
10698
|
+
exports.importAnalysisSupportAnalysisOriginWebScene = importAnalysisSupportAnalysisOriginWebScene;
|
|
10482
10699
|
exports.importAnalysisViewshed = importAnalysisViewshed;
|
|
10483
10700
|
exports.importAnalysisViewshedAnalysis = importAnalysisViewshedAnalysis;
|
|
10701
|
+
exports.importApplicationsComponentsAnalysisUtils = importApplicationsComponentsAnalysisUtils;
|
|
10484
10702
|
exports.importApplicationsComponentsBasemapUtils = importApplicationsComponentsBasemapUtils;
|
|
10485
10703
|
exports.importApplicationsComponentsDrawUtils = importApplicationsComponentsDrawUtils;
|
|
10486
10704
|
exports.importApplicationsComponentsFontUtils = importApplicationsComponentsFontUtils;
|
|
@@ -10494,6 +10712,7 @@ exports.importApplicationsComponentsSelectionOperation = importApplicationsCompo
|
|
|
10494
10712
|
exports.importApplicationsComponentsSketchTooltipControls = importApplicationsComponentsSketchTooltipControls;
|
|
10495
10713
|
exports.importApplicationsComponentsStyleUtils = importApplicationsComponentsStyleUtils;
|
|
10496
10714
|
exports.importApplicationsComponentsSvgUtils = importApplicationsComponentsSvgUtils;
|
|
10715
|
+
exports.importApplicationsComponentsViewUtils = importApplicationsComponentsViewUtils;
|
|
10497
10716
|
exports.importApplicationsComponentsWebStyleSymbolUtils = importApplicationsComponentsWebStyleSymbolUtils;
|
|
10498
10717
|
exports.importApplicationsExperienceBuilderSketchUtils = importApplicationsExperienceBuilderSketchUtils;
|
|
10499
10718
|
exports.importApplicationsMapViewerTemplateUtils = importApplicationsMapViewerTemplateUtils;
|
|
@@ -10669,7 +10888,6 @@ exports.importLayersIntegratedMeshLayer = importLayersIntegratedMeshLayer;
|
|
|
10669
10888
|
exports.importLayersKMLLayer = importLayersKMLLayer;
|
|
10670
10889
|
exports.importLayersKnowledgeGraphKnowledgeGraphSublayer = importLayersKnowledgeGraphKnowledgeGraphSublayer;
|
|
10671
10890
|
exports.importLayersKnowledgeGraphLayer = importLayersKnowledgeGraphLayer;
|
|
10672
|
-
exports.importLayersKnowledgeGraphSupportUtils = importLayersKnowledgeGraphSupportUtils;
|
|
10673
10891
|
exports.importLayersLayer = importLayersLayer;
|
|
10674
10892
|
exports.importLayersLineOfSightLayer = importLayersLineOfSightLayer;
|
|
10675
10893
|
exports.importLayersLinkChartLayer = importLayersLinkChartLayer;
|
|
@@ -10896,8 +11114,10 @@ exports.importRestKnowledgeGraphDataModel = importRestKnowledgeGraphDataModel;
|
|
|
10896
11114
|
exports.importRestKnowledgeGraphEntity = importRestKnowledgeGraphEntity;
|
|
10897
11115
|
exports.importRestKnowledgeGraphEntityType = importRestKnowledgeGraphEntityType;
|
|
10898
11116
|
exports.importRestKnowledgeGraphFieldIndex = importRestKnowledgeGraphFieldIndex;
|
|
11117
|
+
exports.importRestKnowledgeGraphGraphAddNamedTypesResult = importRestKnowledgeGraphGraphAddNamedTypesResult;
|
|
10899
11118
|
exports.importRestKnowledgeGraphGraphApplyEdits = importRestKnowledgeGraphGraphApplyEdits;
|
|
10900
11119
|
exports.importRestKnowledgeGraphGraphApplyEditsResult = importRestKnowledgeGraphGraphApplyEditsResult;
|
|
11120
|
+
exports.importRestKnowledgeGraphGraphDeleteNamedTypeResult = importRestKnowledgeGraphGraphDeleteNamedTypeResult;
|
|
10901
11121
|
exports.importRestKnowledgeGraphGraphNamedObject = importRestKnowledgeGraphGraphNamedObject;
|
|
10902
11122
|
exports.importRestKnowledgeGraphGraphObject = importRestKnowledgeGraphGraphObject;
|
|
10903
11123
|
exports.importRestKnowledgeGraphGraphObjectType = importRestKnowledgeGraphGraphObjectType;
|
|
@@ -11180,6 +11400,7 @@ exports.importViews2dLayersBaseLayerView2D = importViews2dLayersBaseLayerView2D;
|
|
|
11180
11400
|
exports.importViews2dLayersBaseLayerViewGL2D = importViews2dLayersBaseLayerViewGL2D;
|
|
11181
11401
|
exports.importViews2dViewState = importViews2dViewState;
|
|
11182
11402
|
exports.importViews3dAnalysisAreaMeasurementAnalysisView3D = importViews3dAnalysisAreaMeasurementAnalysisView3D;
|
|
11403
|
+
exports.importViews3dAnalysisDimensionAnalysisView3D = importViews3dAnalysisDimensionAnalysisView3D;
|
|
11183
11404
|
exports.importViews3dAnalysisDirectLineMeasurementAnalysisView3D = importViews3dAnalysisDirectLineMeasurementAnalysisView3D;
|
|
11184
11405
|
exports.importViews3dAnalysisLineOfSightAnalysisResult = importViews3dAnalysisLineOfSightAnalysisResult;
|
|
11185
11406
|
exports.importViews3dAnalysisLineOfSightAnalysisView3D = importViews3dAnalysisLineOfSightAnalysisView3D;
|
|
@@ -11198,7 +11419,6 @@ exports.importViews3dWebgl = importViews3dWebgl;
|
|
|
11198
11419
|
exports.importViews3dWebglManagedFBO = importViews3dWebglManagedFBO;
|
|
11199
11420
|
exports.importViews3dWebglRenderCamera = importViews3dWebglRenderCamera;
|
|
11200
11421
|
exports.importViews3dWebglRenderNode = importViews3dWebglRenderNode;
|
|
11201
|
-
exports.importViewsAnalysisDimensionAnalysisView = importViewsAnalysisDimensionAnalysisView;
|
|
11202
11422
|
exports.importViewsAnalysisLengthDimensionResult = importViewsAnalysisLengthDimensionResult;
|
|
11203
11423
|
exports.importViewsBasemapView = importViewsBasemapView;
|
|
11204
11424
|
exports.importViewsDrawDraw = importViewsDrawDraw;
|
|
@@ -11272,7 +11492,12 @@ exports.importWebdocGeotriggersInfoFenceGeotrigger = importWebdocGeotriggersInfo
|
|
|
11272
11492
|
exports.importWebdocGeotriggersInfoGeotrigger = importWebdocGeotriggersInfoGeotrigger;
|
|
11273
11493
|
exports.importWebdocGeotriggersInfoGeotriggerNotificationOptions = importWebdocGeotriggersInfoGeotriggerNotificationOptions;
|
|
11274
11494
|
exports.importWebdocIPSInfo = importWebdocIPSInfo;
|
|
11495
|
+
exports.importWebdocIpsAppleIPSProperties = importWebdocIpsAppleIPSProperties;
|
|
11496
|
+
exports.importWebdocIpsConfiguration = importWebdocIpsConfiguration;
|
|
11497
|
+
exports.importWebdocIpsGNSSProperties = importWebdocIpsGNSSProperties;
|
|
11498
|
+
exports.importWebdocIpsPathSnappingProperties = importWebdocIpsPathSnappingProperties;
|
|
11275
11499
|
exports.importWebdocIpsPositioningService = importWebdocIpsPositioningService;
|
|
11500
|
+
exports.importWebdocIpsSmoothingProperties = importWebdocIpsSmoothingProperties;
|
|
11276
11501
|
exports.importWebdocWidgetsTimeSlider = importWebdocWidgetsTimeSlider;
|
|
11277
11502
|
exports.importWebmapApplicationProperties = importWebmapApplicationProperties;
|
|
11278
11503
|
exports.importWebmapBackgroundColorBackground = importWebmapBackgroundColorBackground;
|
|
@@ -11287,7 +11512,13 @@ exports.importWebscenePresentation = importWebscenePresentation;
|
|
|
11287
11512
|
exports.importWebsceneSlide = importWebsceneSlide;
|
|
11288
11513
|
exports.importWebsceneSlideLegendInfo = importWebsceneSlideLegendInfo;
|
|
11289
11514
|
exports.importWebsceneSunLighting = importWebsceneSunLighting;
|
|
11515
|
+
exports.importWebsceneSupportFeatureReference = importWebsceneSupportFeatureReference;
|
|
11516
|
+
exports.importWebsceneSupportFeatureReferenceGlobalId = importWebsceneSupportFeatureReferenceGlobalId;
|
|
11517
|
+
exports.importWebsceneSupportFeatureReferenceId = importWebsceneSupportFeatureReferenceId;
|
|
11518
|
+
exports.importWebsceneSupportFeatureReferenceObjectId = importWebsceneSupportFeatureReferenceObjectId;
|
|
11519
|
+
exports.importWebsceneSupportLayerReference = importWebsceneSupportLayerReference;
|
|
11290
11520
|
exports.importWebsceneSupportSlideElements = importWebsceneSupportSlideElements;
|
|
11521
|
+
exports.importWebsceneSupportSlidePopupInfo = importWebsceneSupportSlidePopupInfo;
|
|
11291
11522
|
exports.importWebsceneVirtualLighting = importWebsceneVirtualLighting;
|
|
11292
11523
|
exports.importWidgetsAreaMeasurement2D = importWidgetsAreaMeasurement2D;
|
|
11293
11524
|
exports.importWidgetsAreaMeasurement2DAreaMeasurement2DViewModel = importWidgetsAreaMeasurement2DAreaMeasurement2DViewModel;
|
|
@@ -11338,6 +11569,7 @@ exports.importWidgetsEditorCreateFeaturesWorkflowData = importWidgetsEditorCreat
|
|
|
11338
11569
|
exports.importWidgetsEditorEditorViewModel = importWidgetsEditorEditorViewModel;
|
|
11339
11570
|
exports.importWidgetsEditorEdits = importWidgetsEditorEdits;
|
|
11340
11571
|
exports.importWidgetsEditorSupportEditorItem = importWidgetsEditorSupportEditorItem;
|
|
11572
|
+
exports.importWidgetsEditorUpdateFeaturesWorkflowData = importWidgetsEditorUpdateFeaturesWorkflowData;
|
|
11341
11573
|
exports.importWidgetsEditorUpdateWorkflow = importWidgetsEditorUpdateWorkflow;
|
|
11342
11574
|
exports.importWidgetsEditorUpdateWorkflowData = importWidgetsEditorUpdateWorkflowData;
|
|
11343
11575
|
exports.importWidgetsEditorWorkflow = importWidgetsEditorWorkflow;
|
|
@@ -11371,6 +11603,7 @@ exports.importWidgetsFeatureTableGridSupportButtonMenuItem = importWidgetsFeatur
|
|
|
11371
11603
|
exports.importWidgetsFeatureTableGridSupportButtonMenuViewModel = importWidgetsFeatureTableGridSupportButtonMenuViewModel;
|
|
11372
11604
|
exports.importWidgetsFeatureTableRelationshipColumn = importWidgetsFeatureTableRelationshipColumn;
|
|
11373
11605
|
exports.importWidgetsFeatureTableSupportAttachmentsColumnTemplate = importWidgetsFeatureTableSupportAttachmentsColumnTemplate;
|
|
11606
|
+
exports.importWidgetsFeatureTableSupportAttachmentsViewOptions = importWidgetsFeatureTableSupportAttachmentsViewOptions;
|
|
11374
11607
|
exports.importWidgetsFeatureTableSupportColumnTemplate = importWidgetsFeatureTableSupportColumnTemplate;
|
|
11375
11608
|
exports.importWidgetsFeatureTableSupportColumnTemplateBase = importWidgetsFeatureTableSupportColumnTemplateBase;
|
|
11376
11609
|
exports.importWidgetsFeatureTableSupportFieldColumnTemplate = importWidgetsFeatureTableSupportFieldColumnTemplate;
|
|
@@ -11430,7 +11663,10 @@ exports.importWidgetsSearchSearchResultRenderer = importWidgetsSearchSearchResul
|
|
|
11430
11663
|
exports.importWidgetsSearchSearchSource = importWidgetsSearchSearchSource;
|
|
11431
11664
|
exports.importWidgetsSearchSearchViewModel = importWidgetsSearchSearchViewModel;
|
|
11432
11665
|
exports.importWidgetsShadowCast = importWidgetsShadowCast;
|
|
11666
|
+
exports.importWidgetsShadowCastDiscreteOptions = importWidgetsShadowCastDiscreteOptions;
|
|
11667
|
+
exports.importWidgetsShadowCastDurationOptions = importWidgetsShadowCastDurationOptions;
|
|
11433
11668
|
exports.importWidgetsShadowCastShadowCastViewModel = importWidgetsShadowCastShadowCastViewModel;
|
|
11669
|
+
exports.importWidgetsShadowCastThresholdOptions = importWidgetsShadowCastThresholdOptions;
|
|
11434
11670
|
exports.importWidgetsSketch = importWidgetsSketch;
|
|
11435
11671
|
exports.importWidgetsSketchSketchViewModel = importWidgetsSketchSketchViewModel;
|
|
11436
11672
|
exports.importWidgetsSlice = importWidgetsSlice;
|
|
@@ -11505,6 +11741,7 @@ exports.newAnalysisLineOfSightAnalysisObserver = newAnalysisLineOfSightAnalysisO
|
|
|
11505
11741
|
exports.newAnalysisLineOfSightAnalysisTarget = newAnalysisLineOfSightAnalysisTarget;
|
|
11506
11742
|
exports.newAnalysisSliceAnalysis = newAnalysisSliceAnalysis;
|
|
11507
11743
|
exports.newAnalysisSlicePlane = newAnalysisSlicePlane;
|
|
11744
|
+
exports.newAnalysisSupportAnalysisOriginWebScene = newAnalysisSupportAnalysisOriginWebScene;
|
|
11508
11745
|
exports.newAnalysisViewshed = newAnalysisViewshed;
|
|
11509
11746
|
exports.newAnalysisViewshedAnalysis = newAnalysisViewshedAnalysis;
|
|
11510
11747
|
exports.newAttributeBinsGraphic = newAttributeBinsGraphic;
|
|
@@ -11794,8 +12031,10 @@ exports.newRestKnowledgeGraphDataModel = newRestKnowledgeGraphDataModel;
|
|
|
11794
12031
|
exports.newRestKnowledgeGraphEntity = newRestKnowledgeGraphEntity;
|
|
11795
12032
|
exports.newRestKnowledgeGraphEntityType = newRestKnowledgeGraphEntityType;
|
|
11796
12033
|
exports.newRestKnowledgeGraphFieldIndex = newRestKnowledgeGraphFieldIndex;
|
|
12034
|
+
exports.newRestKnowledgeGraphGraphAddNamedTypesResult = newRestKnowledgeGraphGraphAddNamedTypesResult;
|
|
11797
12035
|
exports.newRestKnowledgeGraphGraphApplyEdits = newRestKnowledgeGraphGraphApplyEdits;
|
|
11798
12036
|
exports.newRestKnowledgeGraphGraphApplyEditsResult = newRestKnowledgeGraphGraphApplyEditsResult;
|
|
12037
|
+
exports.newRestKnowledgeGraphGraphDeleteNamedTypeResult = newRestKnowledgeGraphGraphDeleteNamedTypeResult;
|
|
11799
12038
|
exports.newRestKnowledgeGraphGraphNamedObject = newRestKnowledgeGraphGraphNamedObject;
|
|
11800
12039
|
exports.newRestKnowledgeGraphGraphObject = newRestKnowledgeGraphGraphObject;
|
|
11801
12040
|
exports.newRestKnowledgeGraphGraphObjectType = newRestKnowledgeGraphGraphObjectType;
|
|
@@ -12006,6 +12245,7 @@ exports.newViews2dLayersBaseLayerView2D = newViews2dLayersBaseLayerView2D;
|
|
|
12006
12245
|
exports.newViews2dLayersBaseLayerViewGL2D = newViews2dLayersBaseLayerViewGL2D;
|
|
12007
12246
|
exports.newViews2dViewState = newViews2dViewState;
|
|
12008
12247
|
exports.newViews3dAnalysisAreaMeasurementAnalysisView3D = newViews3dAnalysisAreaMeasurementAnalysisView3D;
|
|
12248
|
+
exports.newViews3dAnalysisDimensionAnalysisView3D = newViews3dAnalysisDimensionAnalysisView3D;
|
|
12009
12249
|
exports.newViews3dAnalysisDirectLineMeasurementAnalysisView3D = newViews3dAnalysisDirectLineMeasurementAnalysisView3D;
|
|
12010
12250
|
exports.newViews3dAnalysisLineOfSightAnalysisResult = newViews3dAnalysisLineOfSightAnalysisResult;
|
|
12011
12251
|
exports.newViews3dAnalysisLineOfSightAnalysisView3D = newViews3dAnalysisLineOfSightAnalysisView3D;
|
|
@@ -12019,7 +12259,6 @@ exports.newViews3dEnvironmentSunLighting = newViews3dEnvironmentSunLighting;
|
|
|
12019
12259
|
exports.newViews3dEnvironmentSunnyWeather = newViews3dEnvironmentSunnyWeather;
|
|
12020
12260
|
exports.newViews3dEnvironmentVirtualLighting = newViews3dEnvironmentVirtualLighting;
|
|
12021
12261
|
exports.newViews3dWebglRenderNode = newViews3dWebglRenderNode;
|
|
12022
|
-
exports.newViewsAnalysisDimensionAnalysisView = newViewsAnalysisDimensionAnalysisView;
|
|
12023
12262
|
exports.newViewsBasemapView = newViewsBasemapView;
|
|
12024
12263
|
exports.newViewsDrawDraw = newViewsDrawDraw;
|
|
12025
12264
|
exports.newViewsDrawDrawAction = newViewsDrawDrawAction;
|
|
@@ -12091,7 +12330,12 @@ exports.newWebdocGeotriggersInfoFenceGeotrigger = newWebdocGeotriggersInfoFenceG
|
|
|
12091
12330
|
exports.newWebdocGeotriggersInfoGeotrigger = newWebdocGeotriggersInfoGeotrigger;
|
|
12092
12331
|
exports.newWebdocGeotriggersInfoGeotriggerNotificationOptions = newWebdocGeotriggersInfoGeotriggerNotificationOptions;
|
|
12093
12332
|
exports.newWebdocIPSInfo = newWebdocIPSInfo;
|
|
12333
|
+
exports.newWebdocIpsAppleIPSProperties = newWebdocIpsAppleIPSProperties;
|
|
12334
|
+
exports.newWebdocIpsConfiguration = newWebdocIpsConfiguration;
|
|
12335
|
+
exports.newWebdocIpsGNSSProperties = newWebdocIpsGNSSProperties;
|
|
12336
|
+
exports.newWebdocIpsPathSnappingProperties = newWebdocIpsPathSnappingProperties;
|
|
12094
12337
|
exports.newWebdocIpsPositioningService = newWebdocIpsPositioningService;
|
|
12338
|
+
exports.newWebdocIpsSmoothingProperties = newWebdocIpsSmoothingProperties;
|
|
12095
12339
|
exports.newWebdocWidgetsTimeSlider = newWebdocWidgetsTimeSlider;
|
|
12096
12340
|
exports.newWebmapApplicationProperties = newWebmapApplicationProperties;
|
|
12097
12341
|
exports.newWebmapBackgroundColorBackground = newWebmapBackgroundColorBackground;
|
|
@@ -12106,7 +12350,13 @@ exports.newWebscenePresentation = newWebscenePresentation;
|
|
|
12106
12350
|
exports.newWebsceneSlide = newWebsceneSlide;
|
|
12107
12351
|
exports.newWebsceneSlideLegendInfo = newWebsceneSlideLegendInfo;
|
|
12108
12352
|
exports.newWebsceneSunLighting = newWebsceneSunLighting;
|
|
12353
|
+
exports.newWebsceneSupportFeatureReference = newWebsceneSupportFeatureReference;
|
|
12354
|
+
exports.newWebsceneSupportFeatureReferenceGlobalId = newWebsceneSupportFeatureReferenceGlobalId;
|
|
12355
|
+
exports.newWebsceneSupportFeatureReferenceId = newWebsceneSupportFeatureReferenceId;
|
|
12356
|
+
exports.newWebsceneSupportFeatureReferenceObjectId = newWebsceneSupportFeatureReferenceObjectId;
|
|
12357
|
+
exports.newWebsceneSupportLayerReference = newWebsceneSupportLayerReference;
|
|
12109
12358
|
exports.newWebsceneSupportSlideElements = newWebsceneSupportSlideElements;
|
|
12359
|
+
exports.newWebsceneSupportSlidePopupInfo = newWebsceneSupportSlidePopupInfo;
|
|
12110
12360
|
exports.newWebsceneVirtualLighting = newWebsceneVirtualLighting;
|
|
12111
12361
|
exports.newWidgetsAreaMeasurement2D = newWidgetsAreaMeasurement2D;
|
|
12112
12362
|
exports.newWidgetsAreaMeasurement2DAreaMeasurement2DViewModel = newWidgetsAreaMeasurement2DAreaMeasurement2DViewModel;
|
|
@@ -12156,6 +12406,7 @@ exports.newWidgetsEditorCreateFeaturesWorkflowData = newWidgetsEditorCreateFeatu
|
|
|
12156
12406
|
exports.newWidgetsEditorEditorViewModel = newWidgetsEditorEditorViewModel;
|
|
12157
12407
|
exports.newWidgetsEditorEdits = newWidgetsEditorEdits;
|
|
12158
12408
|
exports.newWidgetsEditorSupportEditorItem = newWidgetsEditorSupportEditorItem;
|
|
12409
|
+
exports.newWidgetsEditorUpdateFeaturesWorkflowData = newWidgetsEditorUpdateFeaturesWorkflowData;
|
|
12159
12410
|
exports.newWidgetsEditorUpdateWorkflow = newWidgetsEditorUpdateWorkflow;
|
|
12160
12411
|
exports.newWidgetsEditorUpdateWorkflowData = newWidgetsEditorUpdateWorkflowData;
|
|
12161
12412
|
exports.newWidgetsEditorWorkflow = newWidgetsEditorWorkflow;
|
|
@@ -12189,6 +12440,7 @@ exports.newWidgetsFeatureTableGridSupportButtonMenuItem = newWidgetsFeatureTable
|
|
|
12189
12440
|
exports.newWidgetsFeatureTableGridSupportButtonMenuViewModel = newWidgetsFeatureTableGridSupportButtonMenuViewModel;
|
|
12190
12441
|
exports.newWidgetsFeatureTableRelationshipColumn = newWidgetsFeatureTableRelationshipColumn;
|
|
12191
12442
|
exports.newWidgetsFeatureTableSupportAttachmentsColumnTemplate = newWidgetsFeatureTableSupportAttachmentsColumnTemplate;
|
|
12443
|
+
exports.newWidgetsFeatureTableSupportAttachmentsViewOptions = newWidgetsFeatureTableSupportAttachmentsViewOptions;
|
|
12192
12444
|
exports.newWidgetsFeatureTableSupportColumnTemplate = newWidgetsFeatureTableSupportColumnTemplate;
|
|
12193
12445
|
exports.newWidgetsFeatureTableSupportColumnTemplateBase = newWidgetsFeatureTableSupportColumnTemplateBase;
|
|
12194
12446
|
exports.newWidgetsFeatureTableSupportFieldColumnTemplate = newWidgetsFeatureTableSupportFieldColumnTemplate;
|
|
@@ -12248,7 +12500,10 @@ exports.newWidgetsSearchSearchResultRenderer = newWidgetsSearchSearchResultRende
|
|
|
12248
12500
|
exports.newWidgetsSearchSearchSource = newWidgetsSearchSearchSource;
|
|
12249
12501
|
exports.newWidgetsSearchSearchViewModel = newWidgetsSearchSearchViewModel;
|
|
12250
12502
|
exports.newWidgetsShadowCast = newWidgetsShadowCast;
|
|
12503
|
+
exports.newWidgetsShadowCastDiscreteOptions = newWidgetsShadowCastDiscreteOptions;
|
|
12504
|
+
exports.newWidgetsShadowCastDurationOptions = newWidgetsShadowCastDurationOptions;
|
|
12251
12505
|
exports.newWidgetsShadowCastShadowCastViewModel = newWidgetsShadowCastShadowCastViewModel;
|
|
12506
|
+
exports.newWidgetsShadowCastThresholdOptions = newWidgetsShadowCastThresholdOptions;
|
|
12252
12507
|
exports.newWidgetsSketch = newWidgetsSketch;
|
|
12253
12508
|
exports.newWidgetsSketchSketchViewModel = newWidgetsSketchSketchViewModel;
|
|
12254
12509
|
exports.newWidgetsSlice = newWidgetsSlice;
|