@arcgis/core-adapter 5.0.0-next.3 → 5.0.0-next.5
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 +13 -0
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +13 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -6266,6 +6266,17 @@ async function newViews3dWebglRenderNode(properties) {
|
|
|
6266
6266
|
const ModConstructor = await importViews3dWebglRenderNode();
|
|
6267
6267
|
return new ModConstructor(properties);
|
|
6268
6268
|
}
|
|
6269
|
+
async function importViewsAnalysisElevationProfileElevationProfileError() {
|
|
6270
|
+
if (isAMD) {
|
|
6271
|
+
return await window.$arcgis.import("esri/views/analysis/ElevationProfile/ElevationProfileError");
|
|
6272
|
+
}
|
|
6273
|
+
const module2 = await import("@arcgis/core/views/analysis/ElevationProfile/ElevationProfileError.js");
|
|
6274
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6275
|
+
}
|
|
6276
|
+
async function newViewsAnalysisElevationProfileElevationProfileError(name, message, details) {
|
|
6277
|
+
const ModConstructor = await importViewsAnalysisElevationProfileElevationProfileError();
|
|
6278
|
+
return new ModConstructor(name, message, details);
|
|
6279
|
+
}
|
|
6269
6280
|
async function importViewsAnalysisElevationProfileElevationProfileResult() {
|
|
6270
6281
|
if (isAMD) {
|
|
6271
6282
|
return await window.$arcgis.import("esri/views/analysis/ElevationProfile/ElevationProfileResult");
|
|
@@ -11875,6 +11886,7 @@ exports.importViews3dWebgl = importViews3dWebgl;
|
|
|
11875
11886
|
exports.importViews3dWebglManagedFBO = importViews3dWebglManagedFBO;
|
|
11876
11887
|
exports.importViews3dWebglRenderCamera = importViews3dWebglRenderCamera;
|
|
11877
11888
|
exports.importViews3dWebglRenderNode = importViews3dWebglRenderNode;
|
|
11889
|
+
exports.importViewsAnalysisElevationProfileElevationProfileError = importViewsAnalysisElevationProfileElevationProfileError;
|
|
11878
11890
|
exports.importViewsAnalysisElevationProfileElevationProfileResult = importViewsAnalysisElevationProfileElevationProfileResult;
|
|
11879
11891
|
exports.importViewsAnalysisLengthDimensionResult = importViewsAnalysisLengthDimensionResult;
|
|
11880
11892
|
exports.importViewsBasemapView = importViewsBasemapView;
|
|
@@ -12746,6 +12758,7 @@ exports.newViews3dEnvironmentSunLighting = newViews3dEnvironmentSunLighting;
|
|
|
12746
12758
|
exports.newViews3dEnvironmentSunnyWeather = newViews3dEnvironmentSunnyWeather;
|
|
12747
12759
|
exports.newViews3dEnvironmentVirtualLighting = newViews3dEnvironmentVirtualLighting;
|
|
12748
12760
|
exports.newViews3dWebglRenderNode = newViews3dWebglRenderNode;
|
|
12761
|
+
exports.newViewsAnalysisElevationProfileElevationProfileError = newViewsAnalysisElevationProfileElevationProfileError;
|
|
12749
12762
|
exports.newViewsAnalysisElevationProfileElevationProfileResult = newViewsAnalysisElevationProfileElevationProfileResult;
|
|
12750
12763
|
exports.newViewsBasemapView = newViewsBasemapView;
|
|
12751
12764
|
exports.newViewsDrawDraw = newViewsDrawDraw;
|
package/dist/index.d.cts
CHANGED
|
@@ -1147,6 +1147,8 @@ export declare function importViews3dEnvironmentVirtualLighting(): Promise<typeo
|
|
|
1147
1147
|
export declare function newViews3dEnvironmentVirtualLighting(properties: __esri.VirtualLightingProperties): Promise<__esri.VirtualLighting>;
|
|
1148
1148
|
export declare function importViews3dWebglRenderNode(): Promise<typeof __esri.RenderNode>;
|
|
1149
1149
|
export declare function newViews3dWebglRenderNode(properties: __esri.RenderNodeProperties): Promise<__esri.RenderNode>;
|
|
1150
|
+
export declare function importViewsAnalysisElevationProfileElevationProfileError(): Promise<typeof __esri.ElevationProfileError>;
|
|
1151
|
+
export declare function newViewsAnalysisElevationProfileElevationProfileError(name: __esri.ElevationProfileErrorName, message: string, details: any): Promise<__esri.ElevationProfileError>;
|
|
1150
1152
|
export declare function importViewsAnalysisElevationProfileElevationProfileResult(): Promise<typeof __esri.ElevationProfileResult>;
|
|
1151
1153
|
export declare function newViewsAnalysisElevationProfileElevationProfileResult(properties: __esri.ElevationProfileResultProperties): Promise<__esri.ElevationProfileResult>;
|
|
1152
1154
|
export declare function importViewsDrawDraw(): Promise<typeof __esri.Draw>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1147,6 +1147,8 @@ export declare function importViews3dEnvironmentVirtualLighting(): Promise<typeo
|
|
|
1147
1147
|
export declare function newViews3dEnvironmentVirtualLighting(properties: __esri.VirtualLightingProperties): Promise<__esri.VirtualLighting>;
|
|
1148
1148
|
export declare function importViews3dWebglRenderNode(): Promise<typeof __esri.RenderNode>;
|
|
1149
1149
|
export declare function newViews3dWebglRenderNode(properties: __esri.RenderNodeProperties): Promise<__esri.RenderNode>;
|
|
1150
|
+
export declare function importViewsAnalysisElevationProfileElevationProfileError(): Promise<typeof __esri.ElevationProfileError>;
|
|
1151
|
+
export declare function newViewsAnalysisElevationProfileElevationProfileError(name: __esri.ElevationProfileErrorName, message: string, details: any): Promise<__esri.ElevationProfileError>;
|
|
1150
1152
|
export declare function importViewsAnalysisElevationProfileElevationProfileResult(): Promise<typeof __esri.ElevationProfileResult>;
|
|
1151
1153
|
export declare function newViewsAnalysisElevationProfileElevationProfileResult(properties: __esri.ElevationProfileResultProperties): Promise<__esri.ElevationProfileResult>;
|
|
1152
1154
|
export declare function importViewsDrawDraw(): Promise<typeof __esri.Draw>;
|
package/dist/index.js
CHANGED
|
@@ -6242,6 +6242,17 @@ async function newViews3dWebglRenderNode(properties) {
|
|
|
6242
6242
|
const ModConstructor = await importViews3dWebglRenderNode();
|
|
6243
6243
|
return new ModConstructor(properties);
|
|
6244
6244
|
}
|
|
6245
|
+
async function importViewsAnalysisElevationProfileElevationProfileError() {
|
|
6246
|
+
if (isAMD) {
|
|
6247
|
+
return await window.$arcgis.import("esri/views/analysis/ElevationProfile/ElevationProfileError");
|
|
6248
|
+
}
|
|
6249
|
+
const module = await import("@arcgis/core/views/analysis/ElevationProfile/ElevationProfileError.js");
|
|
6250
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6251
|
+
}
|
|
6252
|
+
async function newViewsAnalysisElevationProfileElevationProfileError(name, message, details) {
|
|
6253
|
+
const ModConstructor = await importViewsAnalysisElevationProfileElevationProfileError();
|
|
6254
|
+
return new ModConstructor(name, message, details);
|
|
6255
|
+
}
|
|
6245
6256
|
async function importViewsAnalysisElevationProfileElevationProfileResult() {
|
|
6246
6257
|
if (isAMD) {
|
|
6247
6258
|
return await window.$arcgis.import("esri/views/analysis/ElevationProfile/ElevationProfileResult");
|
|
@@ -11852,6 +11863,7 @@ export {
|
|
|
11852
11863
|
importViews3dWebglManagedFBO,
|
|
11853
11864
|
importViews3dWebglRenderCamera,
|
|
11854
11865
|
importViews3dWebglRenderNode,
|
|
11866
|
+
importViewsAnalysisElevationProfileElevationProfileError,
|
|
11855
11867
|
importViewsAnalysisElevationProfileElevationProfileResult,
|
|
11856
11868
|
importViewsAnalysisLengthDimensionResult,
|
|
11857
11869
|
importViewsBasemapView,
|
|
@@ -12723,6 +12735,7 @@ export {
|
|
|
12723
12735
|
newViews3dEnvironmentSunnyWeather,
|
|
12724
12736
|
newViews3dEnvironmentVirtualLighting,
|
|
12725
12737
|
newViews3dWebglRenderNode,
|
|
12738
|
+
newViewsAnalysisElevationProfileElevationProfileError,
|
|
12726
12739
|
newViewsAnalysisElevationProfileElevationProfileResult,
|
|
12727
12740
|
newViewsBasemapView,
|
|
12728
12741
|
newViewsDrawDraw,
|