@arcgis/core-adapter 5.0.0-next.39 → 5.0.0-next.41
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 +73 -0
- package/dist/index.d.cts +11 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +73 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -5232,6 +5232,61 @@ async function newRestSupportLinearUnit(properties) {
|
|
|
5232
5232
|
const ModConstructor = await importRestSupportLinearUnit();
|
|
5233
5233
|
return new ModConstructor(properties);
|
|
5234
5234
|
}
|
|
5235
|
+
async function importRestSupportLocateSetting() {
|
|
5236
|
+
if (isAMD) {
|
|
5237
|
+
return await window.$arcgis.import("esri/rest/support/LocateSetting");
|
|
5238
|
+
}
|
|
5239
|
+
const module2 = await import("@arcgis/core/rest/support/LocateSetting.js");
|
|
5240
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5241
|
+
}
|
|
5242
|
+
async function newRestSupportLocateSetting(properties) {
|
|
5243
|
+
const ModConstructor = await importRestSupportLocateSetting();
|
|
5244
|
+
return new ModConstructor(properties);
|
|
5245
|
+
}
|
|
5246
|
+
async function importRestSupportLocateSettingBase() {
|
|
5247
|
+
if (isAMD) {
|
|
5248
|
+
return await window.$arcgis.import("esri/rest/support/LocateSettingBase");
|
|
5249
|
+
}
|
|
5250
|
+
const module2 = await import("@arcgis/core/rest/support/LocateSettingBase.js");
|
|
5251
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5252
|
+
}
|
|
5253
|
+
async function newRestSupportLocateSettingBase(properties) {
|
|
5254
|
+
const ModConstructor = await importRestSupportLocateSettingBase();
|
|
5255
|
+
return new ModConstructor(properties);
|
|
5256
|
+
}
|
|
5257
|
+
async function importRestSupportLocateSettingSource() {
|
|
5258
|
+
if (isAMD) {
|
|
5259
|
+
return await window.$arcgis.import("esri/rest/support/LocateSettingSource");
|
|
5260
|
+
}
|
|
5261
|
+
const module2 = await import("@arcgis/core/rest/support/LocateSettingSource.js");
|
|
5262
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5263
|
+
}
|
|
5264
|
+
async function newRestSupportLocateSettingSource(properties) {
|
|
5265
|
+
const ModConstructor = await importRestSupportLocateSettingSource();
|
|
5266
|
+
return new ModConstructor(properties);
|
|
5267
|
+
}
|
|
5268
|
+
async function importRestSupportLocateSettings() {
|
|
5269
|
+
if (isAMD) {
|
|
5270
|
+
return await window.$arcgis.import("esri/rest/support/LocateSettings");
|
|
5271
|
+
}
|
|
5272
|
+
const module2 = await import("@arcgis/core/rest/support/LocateSettings.js");
|
|
5273
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5274
|
+
}
|
|
5275
|
+
async function newRestSupportLocateSettings(properties) {
|
|
5276
|
+
const ModConstructor = await importRestSupportLocateSettings();
|
|
5277
|
+
return new ModConstructor(properties);
|
|
5278
|
+
}
|
|
5279
|
+
async function importRestSupportLocateSettingsOverrides() {
|
|
5280
|
+
if (isAMD) {
|
|
5281
|
+
return await window.$arcgis.import("esri/rest/support/LocateSettingsOverrides");
|
|
5282
|
+
}
|
|
5283
|
+
const module2 = await import("@arcgis/core/rest/support/LocateSettingsOverrides.js");
|
|
5284
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5285
|
+
}
|
|
5286
|
+
async function newRestSupportLocateSettingsOverrides(properties) {
|
|
5287
|
+
const ModConstructor = await importRestSupportLocateSettingsOverrides();
|
|
5288
|
+
return new ModConstructor(properties);
|
|
5289
|
+
}
|
|
5235
5290
|
async function importRestSupportMapToImageParameters() {
|
|
5236
5291
|
if (isAMD) {
|
|
5237
5292
|
return await window.$arcgis.import("esri/rest/support/MapToImageParameters");
|
|
@@ -11194,6 +11249,13 @@ async function importViews3dWebgl() {
|
|
|
11194
11249
|
const module2 = await import("@arcgis/core/views/3d/webgl.js");
|
|
11195
11250
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
11196
11251
|
}
|
|
11252
|
+
async function importViewsSupportAttributionItem() {
|
|
11253
|
+
if (isAMD) {
|
|
11254
|
+
return await window.$arcgis.import("esri/views/support/AttributionItem");
|
|
11255
|
+
}
|
|
11256
|
+
const module2 = await import("@arcgis/core/views/support/AttributionItem.js");
|
|
11257
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
11258
|
+
}
|
|
11197
11259
|
async function importViewsSupportColorUtils() {
|
|
11198
11260
|
if (isAMD) {
|
|
11199
11261
|
return await window.$arcgis.import("esri/views/support/colorUtils");
|
|
@@ -12026,6 +12088,11 @@ exports.importRestSupportLastMileDeliveryParameters = importRestSupportLastMileD
|
|
|
12026
12088
|
exports.importRestSupportLegendLayer = importRestSupportLegendLayer;
|
|
12027
12089
|
exports.importRestSupportLengthsParameters = importRestSupportLengthsParameters;
|
|
12028
12090
|
exports.importRestSupportLinearUnit = importRestSupportLinearUnit;
|
|
12091
|
+
exports.importRestSupportLocateSetting = importRestSupportLocateSetting;
|
|
12092
|
+
exports.importRestSupportLocateSettingBase = importRestSupportLocateSettingBase;
|
|
12093
|
+
exports.importRestSupportLocateSettingSource = importRestSupportLocateSettingSource;
|
|
12094
|
+
exports.importRestSupportLocateSettings = importRestSupportLocateSettings;
|
|
12095
|
+
exports.importRestSupportLocateSettingsOverrides = importRestSupportLocateSettingsOverrides;
|
|
12029
12096
|
exports.importRestSupportMapToImageParameters = importRestSupportMapToImageParameters;
|
|
12030
12097
|
exports.importRestSupportMeasureAreaFromImageResult = importRestSupportMeasureAreaFromImageResult;
|
|
12031
12098
|
exports.importRestSupportMeasureFromImageParameters = importRestSupportMeasureFromImageParameters;
|
|
@@ -12250,6 +12317,7 @@ exports.importViewsNavigationGamepadGamepadSettings = importViewsNavigationGamep
|
|
|
12250
12317
|
exports.importViewsNavigationNavigation = importViewsNavigationNavigation;
|
|
12251
12318
|
exports.importViewsNavigationNavigationActionMap = importViewsNavigationNavigationActionMap;
|
|
12252
12319
|
exports.importViewsSceneView = importViewsSceneView;
|
|
12320
|
+
exports.importViewsSupportAttributionItem = importViewsSupportAttributionItem;
|
|
12253
12321
|
exports.importViewsSupportColorUtils = importViewsSupportColorUtils;
|
|
12254
12322
|
exports.importViewsSupportHighlightOptions = importViewsSupportHighlightOptions;
|
|
12255
12323
|
exports.importViewsTheme = importViewsTheme;
|
|
@@ -12994,6 +13062,11 @@ exports.newRestSupportLastMileDeliveryParameters = newRestSupportLastMileDeliver
|
|
|
12994
13062
|
exports.newRestSupportLegendLayer = newRestSupportLegendLayer;
|
|
12995
13063
|
exports.newRestSupportLengthsParameters = newRestSupportLengthsParameters;
|
|
12996
13064
|
exports.newRestSupportLinearUnit = newRestSupportLinearUnit;
|
|
13065
|
+
exports.newRestSupportLocateSetting = newRestSupportLocateSetting;
|
|
13066
|
+
exports.newRestSupportLocateSettingBase = newRestSupportLocateSettingBase;
|
|
13067
|
+
exports.newRestSupportLocateSettingSource = newRestSupportLocateSettingSource;
|
|
13068
|
+
exports.newRestSupportLocateSettings = newRestSupportLocateSettings;
|
|
13069
|
+
exports.newRestSupportLocateSettingsOverrides = newRestSupportLocateSettingsOverrides;
|
|
12997
13070
|
exports.newRestSupportMapToImageParameters = newRestSupportMapToImageParameters;
|
|
12998
13071
|
exports.newRestSupportMeasureAreaFromImageResult = newRestSupportMeasureAreaFromImageResult;
|
|
12999
13072
|
exports.newRestSupportMeasureFromImageParameters = newRestSupportMeasureFromImageParameters;
|
package/dist/index.d.cts
CHANGED
|
@@ -959,6 +959,16 @@ export declare function importRestSupportLengthsParameters(): Promise<typeof __e
|
|
|
959
959
|
export declare function newRestSupportLengthsParameters(properties: __esri.LengthsParametersProperties): Promise<__esri.LengthsParameters>;
|
|
960
960
|
export declare function importRestSupportLinearUnit(): Promise<typeof __esri.LinearUnit>;
|
|
961
961
|
export declare function newRestSupportLinearUnit(properties: __esri.LinearUnitProperties): Promise<__esri.LinearUnit>;
|
|
962
|
+
export declare function importRestSupportLocateSetting(): Promise<typeof __esri.LocateSetting>;
|
|
963
|
+
export declare function newRestSupportLocateSetting(properties: __esri.LocateSettingProperties): Promise<__esri.LocateSetting>;
|
|
964
|
+
export declare function importRestSupportLocateSettingBase(): Promise<typeof __esri.LocateSettingBase>;
|
|
965
|
+
export declare function newRestSupportLocateSettingBase(properties: __esri.LocateSettingBaseProperties): Promise<__esri.LocateSettingBase>;
|
|
966
|
+
export declare function importRestSupportLocateSettingSource(): Promise<typeof __esri.LocateSettingSource>;
|
|
967
|
+
export declare function newRestSupportLocateSettingSource(properties: __esri.LocateSettingSourceProperties): Promise<__esri.LocateSettingSource>;
|
|
968
|
+
export declare function importRestSupportLocateSettings(): Promise<typeof __esri.LocateSettings>;
|
|
969
|
+
export declare function newRestSupportLocateSettings(properties: __esri.LocateSettingsProperties): Promise<__esri.LocateSettings>;
|
|
970
|
+
export declare function importRestSupportLocateSettingsOverrides(): Promise<typeof __esri.LocateSettingsOverrides>;
|
|
971
|
+
export declare function newRestSupportLocateSettingsOverrides(properties: __esri.LocateSettingsOverridesProperties): Promise<__esri.LocateSettingsOverrides>;
|
|
962
972
|
export declare function importRestSupportMapToImageParameters(): Promise<typeof __esri.MapToImageParameters>;
|
|
963
973
|
export declare function newRestSupportMapToImageParameters(properties: __esri.MapToImageParametersProperties): Promise<__esri.MapToImageParameters>;
|
|
964
974
|
export declare function importRestSupportMeasureAreaFromImageResult(): Promise<typeof __esri.MeasureAreaFromImageResult>;
|
|
@@ -1995,6 +2005,7 @@ export declare function importTablesElements(): Promise<typeof __esri.tablesElem
|
|
|
1995
2005
|
export declare function importVersionManagementUtils(): Promise<typeof __esri.versionManagementUtils>;
|
|
1996
2006
|
export declare function importVersionManagementVersionAdaptersUtils(): Promise<typeof __esri.versionAdaptersUtils>;
|
|
1997
2007
|
export declare function importViews3dWebgl(): Promise<typeof __esri.webgl>;
|
|
2008
|
+
export declare function importViewsSupportAttributionItem(): Promise<typeof __esri.AttributionItem>;
|
|
1998
2009
|
export declare function importViewsSupportColorUtils(): Promise<typeof __esri.colorUtils>;
|
|
1999
2010
|
export declare function importWidgetsSmartMappingSupportUtils(): Promise<typeof __esri.smartMappingSupportUtils>;
|
|
2000
2011
|
export declare function importWidgetsSupportWidget(): Promise<typeof __esri.widget>;
|
package/dist/index.d.ts
CHANGED
|
@@ -959,6 +959,16 @@ export declare function importRestSupportLengthsParameters(): Promise<typeof __e
|
|
|
959
959
|
export declare function newRestSupportLengthsParameters(properties: __esri.LengthsParametersProperties): Promise<__esri.LengthsParameters>;
|
|
960
960
|
export declare function importRestSupportLinearUnit(): Promise<typeof __esri.LinearUnit>;
|
|
961
961
|
export declare function newRestSupportLinearUnit(properties: __esri.LinearUnitProperties): Promise<__esri.LinearUnit>;
|
|
962
|
+
export declare function importRestSupportLocateSetting(): Promise<typeof __esri.LocateSetting>;
|
|
963
|
+
export declare function newRestSupportLocateSetting(properties: __esri.LocateSettingProperties): Promise<__esri.LocateSetting>;
|
|
964
|
+
export declare function importRestSupportLocateSettingBase(): Promise<typeof __esri.LocateSettingBase>;
|
|
965
|
+
export declare function newRestSupportLocateSettingBase(properties: __esri.LocateSettingBaseProperties): Promise<__esri.LocateSettingBase>;
|
|
966
|
+
export declare function importRestSupportLocateSettingSource(): Promise<typeof __esri.LocateSettingSource>;
|
|
967
|
+
export declare function newRestSupportLocateSettingSource(properties: __esri.LocateSettingSourceProperties): Promise<__esri.LocateSettingSource>;
|
|
968
|
+
export declare function importRestSupportLocateSettings(): Promise<typeof __esri.LocateSettings>;
|
|
969
|
+
export declare function newRestSupportLocateSettings(properties: __esri.LocateSettingsProperties): Promise<__esri.LocateSettings>;
|
|
970
|
+
export declare function importRestSupportLocateSettingsOverrides(): Promise<typeof __esri.LocateSettingsOverrides>;
|
|
971
|
+
export declare function newRestSupportLocateSettingsOverrides(properties: __esri.LocateSettingsOverridesProperties): Promise<__esri.LocateSettingsOverrides>;
|
|
962
972
|
export declare function importRestSupportMapToImageParameters(): Promise<typeof __esri.MapToImageParameters>;
|
|
963
973
|
export declare function newRestSupportMapToImageParameters(properties: __esri.MapToImageParametersProperties): Promise<__esri.MapToImageParameters>;
|
|
964
974
|
export declare function importRestSupportMeasureAreaFromImageResult(): Promise<typeof __esri.MeasureAreaFromImageResult>;
|
|
@@ -1995,6 +2005,7 @@ export declare function importTablesElements(): Promise<typeof __esri.tablesElem
|
|
|
1995
2005
|
export declare function importVersionManagementUtils(): Promise<typeof __esri.versionManagementUtils>;
|
|
1996
2006
|
export declare function importVersionManagementVersionAdaptersUtils(): Promise<typeof __esri.versionAdaptersUtils>;
|
|
1997
2007
|
export declare function importViews3dWebgl(): Promise<typeof __esri.webgl>;
|
|
2008
|
+
export declare function importViewsSupportAttributionItem(): Promise<typeof __esri.AttributionItem>;
|
|
1998
2009
|
export declare function importViewsSupportColorUtils(): Promise<typeof __esri.colorUtils>;
|
|
1999
2010
|
export declare function importWidgetsSmartMappingSupportUtils(): Promise<typeof __esri.smartMappingSupportUtils>;
|
|
2000
2011
|
export declare function importWidgetsSupportWidget(): Promise<typeof __esri.widget>;
|
package/dist/index.js
CHANGED
|
@@ -5208,6 +5208,61 @@ async function newRestSupportLinearUnit(properties) {
|
|
|
5208
5208
|
const ModConstructor = await importRestSupportLinearUnit();
|
|
5209
5209
|
return new ModConstructor(properties);
|
|
5210
5210
|
}
|
|
5211
|
+
async function importRestSupportLocateSetting() {
|
|
5212
|
+
if (isAMD) {
|
|
5213
|
+
return await window.$arcgis.import("esri/rest/support/LocateSetting");
|
|
5214
|
+
}
|
|
5215
|
+
const module = await import("@arcgis/core/rest/support/LocateSetting.js");
|
|
5216
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5217
|
+
}
|
|
5218
|
+
async function newRestSupportLocateSetting(properties) {
|
|
5219
|
+
const ModConstructor = await importRestSupportLocateSetting();
|
|
5220
|
+
return new ModConstructor(properties);
|
|
5221
|
+
}
|
|
5222
|
+
async function importRestSupportLocateSettingBase() {
|
|
5223
|
+
if (isAMD) {
|
|
5224
|
+
return await window.$arcgis.import("esri/rest/support/LocateSettingBase");
|
|
5225
|
+
}
|
|
5226
|
+
const module = await import("@arcgis/core/rest/support/LocateSettingBase.js");
|
|
5227
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5228
|
+
}
|
|
5229
|
+
async function newRestSupportLocateSettingBase(properties) {
|
|
5230
|
+
const ModConstructor = await importRestSupportLocateSettingBase();
|
|
5231
|
+
return new ModConstructor(properties);
|
|
5232
|
+
}
|
|
5233
|
+
async function importRestSupportLocateSettingSource() {
|
|
5234
|
+
if (isAMD) {
|
|
5235
|
+
return await window.$arcgis.import("esri/rest/support/LocateSettingSource");
|
|
5236
|
+
}
|
|
5237
|
+
const module = await import("@arcgis/core/rest/support/LocateSettingSource.js");
|
|
5238
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5239
|
+
}
|
|
5240
|
+
async function newRestSupportLocateSettingSource(properties) {
|
|
5241
|
+
const ModConstructor = await importRestSupportLocateSettingSource();
|
|
5242
|
+
return new ModConstructor(properties);
|
|
5243
|
+
}
|
|
5244
|
+
async function importRestSupportLocateSettings() {
|
|
5245
|
+
if (isAMD) {
|
|
5246
|
+
return await window.$arcgis.import("esri/rest/support/LocateSettings");
|
|
5247
|
+
}
|
|
5248
|
+
const module = await import("@arcgis/core/rest/support/LocateSettings.js");
|
|
5249
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5250
|
+
}
|
|
5251
|
+
async function newRestSupportLocateSettings(properties) {
|
|
5252
|
+
const ModConstructor = await importRestSupportLocateSettings();
|
|
5253
|
+
return new ModConstructor(properties);
|
|
5254
|
+
}
|
|
5255
|
+
async function importRestSupportLocateSettingsOverrides() {
|
|
5256
|
+
if (isAMD) {
|
|
5257
|
+
return await window.$arcgis.import("esri/rest/support/LocateSettingsOverrides");
|
|
5258
|
+
}
|
|
5259
|
+
const module = await import("@arcgis/core/rest/support/LocateSettingsOverrides.js");
|
|
5260
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5261
|
+
}
|
|
5262
|
+
async function newRestSupportLocateSettingsOverrides(properties) {
|
|
5263
|
+
const ModConstructor = await importRestSupportLocateSettingsOverrides();
|
|
5264
|
+
return new ModConstructor(properties);
|
|
5265
|
+
}
|
|
5211
5266
|
async function importRestSupportMapToImageParameters() {
|
|
5212
5267
|
if (isAMD) {
|
|
5213
5268
|
return await window.$arcgis.import("esri/rest/support/MapToImageParameters");
|
|
@@ -11170,6 +11225,13 @@ async function importViews3dWebgl() {
|
|
|
11170
11225
|
const module = await import("@arcgis/core/views/3d/webgl.js");
|
|
11171
11226
|
return isDefaultModule(module) ? module.default : module;
|
|
11172
11227
|
}
|
|
11228
|
+
async function importViewsSupportAttributionItem() {
|
|
11229
|
+
if (isAMD) {
|
|
11230
|
+
return await window.$arcgis.import("esri/views/support/AttributionItem");
|
|
11231
|
+
}
|
|
11232
|
+
const module = await import("@arcgis/core/views/support/AttributionItem.js");
|
|
11233
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11234
|
+
}
|
|
11173
11235
|
async function importViewsSupportColorUtils() {
|
|
11174
11236
|
if (isAMD) {
|
|
11175
11237
|
return await window.$arcgis.import("esri/views/support/colorUtils");
|
|
@@ -12003,6 +12065,11 @@ export {
|
|
|
12003
12065
|
importRestSupportLegendLayer,
|
|
12004
12066
|
importRestSupportLengthsParameters,
|
|
12005
12067
|
importRestSupportLinearUnit,
|
|
12068
|
+
importRestSupportLocateSetting,
|
|
12069
|
+
importRestSupportLocateSettingBase,
|
|
12070
|
+
importRestSupportLocateSettingSource,
|
|
12071
|
+
importRestSupportLocateSettings,
|
|
12072
|
+
importRestSupportLocateSettingsOverrides,
|
|
12006
12073
|
importRestSupportMapToImageParameters,
|
|
12007
12074
|
importRestSupportMeasureAreaFromImageResult,
|
|
12008
12075
|
importRestSupportMeasureFromImageParameters,
|
|
@@ -12227,6 +12294,7 @@ export {
|
|
|
12227
12294
|
importViewsNavigationNavigation,
|
|
12228
12295
|
importViewsNavigationNavigationActionMap,
|
|
12229
12296
|
importViewsSceneView,
|
|
12297
|
+
importViewsSupportAttributionItem,
|
|
12230
12298
|
importViewsSupportColorUtils,
|
|
12231
12299
|
importViewsSupportHighlightOptions,
|
|
12232
12300
|
importViewsTheme,
|
|
@@ -12971,6 +13039,11 @@ export {
|
|
|
12971
13039
|
newRestSupportLegendLayer,
|
|
12972
13040
|
newRestSupportLengthsParameters,
|
|
12973
13041
|
newRestSupportLinearUnit,
|
|
13042
|
+
newRestSupportLocateSetting,
|
|
13043
|
+
newRestSupportLocateSettingBase,
|
|
13044
|
+
newRestSupportLocateSettingSource,
|
|
13045
|
+
newRestSupportLocateSettings,
|
|
13046
|
+
newRestSupportLocateSettingsOverrides,
|
|
12974
13047
|
newRestSupportMapToImageParameters,
|
|
12975
13048
|
newRestSupportMeasureAreaFromImageResult,
|
|
12976
13049
|
newRestSupportMeasureFromImageParameters,
|