@arcgis/core-adapter 4.33.0-next.120 → 4.33.0-next.122
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 +65 -0
- package/dist/index.d.cts +10 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +65 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -6585,6 +6585,61 @@ async function newWebdocIpsPositioningService(properties) {
|
|
|
6585
6585
|
const ModConstructor = await importWebdocIpsPositioningService();
|
|
6586
6586
|
return new ModConstructor(properties);
|
|
6587
6587
|
}
|
|
6588
|
+
async function importWebdocIpsConfiguration() {
|
|
6589
|
+
if (isAMD) {
|
|
6590
|
+
return await window.$arcgis.import("esri/webdoc/ips/Configuration");
|
|
6591
|
+
}
|
|
6592
|
+
const module2 = await import("@arcgis/core/webdoc/ips/Configuration.js");
|
|
6593
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6594
|
+
}
|
|
6595
|
+
async function newWebdocIpsConfiguration(properties) {
|
|
6596
|
+
const ModConstructor = await importWebdocIpsConfiguration();
|
|
6597
|
+
return new ModConstructor(properties);
|
|
6598
|
+
}
|
|
6599
|
+
async function importWebdocIpsAppleIPSProperties() {
|
|
6600
|
+
if (isAMD) {
|
|
6601
|
+
return await window.$arcgis.import("esri/webdoc/ips/AppleIPSProperties");
|
|
6602
|
+
}
|
|
6603
|
+
const module2 = await import("@arcgis/core/webdoc/ips/AppleIPSProperties.js");
|
|
6604
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6605
|
+
}
|
|
6606
|
+
async function newWebdocIpsAppleIPSProperties(properties) {
|
|
6607
|
+
const ModConstructor = await importWebdocIpsAppleIPSProperties();
|
|
6608
|
+
return new ModConstructor(properties);
|
|
6609
|
+
}
|
|
6610
|
+
async function importWebdocIpsGNSSProperties() {
|
|
6611
|
+
if (isAMD) {
|
|
6612
|
+
return await window.$arcgis.import("esri/webdoc/ips/GNSSProperties");
|
|
6613
|
+
}
|
|
6614
|
+
const module2 = await import("@arcgis/core/webdoc/ips/GNSSProperties.js");
|
|
6615
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6616
|
+
}
|
|
6617
|
+
async function newWebdocIpsGNSSProperties(properties) {
|
|
6618
|
+
const ModConstructor = await importWebdocIpsGNSSProperties();
|
|
6619
|
+
return new ModConstructor(properties);
|
|
6620
|
+
}
|
|
6621
|
+
async function importWebdocIpsPathSnappingProperties() {
|
|
6622
|
+
if (isAMD) {
|
|
6623
|
+
return await window.$arcgis.import("esri/webdoc/ips/PathSnappingProperties");
|
|
6624
|
+
}
|
|
6625
|
+
const module2 = await import("@arcgis/core/webdoc/ips/PathSnappingProperties.js");
|
|
6626
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6627
|
+
}
|
|
6628
|
+
async function newWebdocIpsPathSnappingProperties(properties) {
|
|
6629
|
+
const ModConstructor = await importWebdocIpsPathSnappingProperties();
|
|
6630
|
+
return new ModConstructor(properties);
|
|
6631
|
+
}
|
|
6632
|
+
async function importWebdocIpsSmoothingProperties() {
|
|
6633
|
+
if (isAMD) {
|
|
6634
|
+
return await window.$arcgis.import("esri/webdoc/ips/SmoothingProperties");
|
|
6635
|
+
}
|
|
6636
|
+
const module2 = await import("@arcgis/core/webdoc/ips/SmoothingProperties.js");
|
|
6637
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
6638
|
+
}
|
|
6639
|
+
async function newWebdocIpsSmoothingProperties(properties) {
|
|
6640
|
+
const ModConstructor = await importWebdocIpsSmoothingProperties();
|
|
6641
|
+
return new ModConstructor(properties);
|
|
6642
|
+
}
|
|
6588
6643
|
async function importWebdocWidgetsTimeSlider() {
|
|
6589
6644
|
if (isAMD) {
|
|
6590
6645
|
return await window.$arcgis.import("esri/webdoc/widgets/TimeSlider");
|
|
@@ -11386,7 +11441,12 @@ exports.importWebdocGeotriggersInfoFenceGeotrigger = importWebdocGeotriggersInfo
|
|
|
11386
11441
|
exports.importWebdocGeotriggersInfoGeotrigger = importWebdocGeotriggersInfoGeotrigger;
|
|
11387
11442
|
exports.importWebdocGeotriggersInfoGeotriggerNotificationOptions = importWebdocGeotriggersInfoGeotriggerNotificationOptions;
|
|
11388
11443
|
exports.importWebdocIPSInfo = importWebdocIPSInfo;
|
|
11444
|
+
exports.importWebdocIpsAppleIPSProperties = importWebdocIpsAppleIPSProperties;
|
|
11445
|
+
exports.importWebdocIpsConfiguration = importWebdocIpsConfiguration;
|
|
11446
|
+
exports.importWebdocIpsGNSSProperties = importWebdocIpsGNSSProperties;
|
|
11447
|
+
exports.importWebdocIpsPathSnappingProperties = importWebdocIpsPathSnappingProperties;
|
|
11389
11448
|
exports.importWebdocIpsPositioningService = importWebdocIpsPositioningService;
|
|
11449
|
+
exports.importWebdocIpsSmoothingProperties = importWebdocIpsSmoothingProperties;
|
|
11390
11450
|
exports.importWebdocWidgetsTimeSlider = importWebdocWidgetsTimeSlider;
|
|
11391
11451
|
exports.importWebmapApplicationProperties = importWebmapApplicationProperties;
|
|
11392
11452
|
exports.importWebmapBackgroundColorBackground = importWebmapBackgroundColorBackground;
|
|
@@ -12216,7 +12276,12 @@ exports.newWebdocGeotriggersInfoFenceGeotrigger = newWebdocGeotriggersInfoFenceG
|
|
|
12216
12276
|
exports.newWebdocGeotriggersInfoGeotrigger = newWebdocGeotriggersInfoGeotrigger;
|
|
12217
12277
|
exports.newWebdocGeotriggersInfoGeotriggerNotificationOptions = newWebdocGeotriggersInfoGeotriggerNotificationOptions;
|
|
12218
12278
|
exports.newWebdocIPSInfo = newWebdocIPSInfo;
|
|
12279
|
+
exports.newWebdocIpsAppleIPSProperties = newWebdocIpsAppleIPSProperties;
|
|
12280
|
+
exports.newWebdocIpsConfiguration = newWebdocIpsConfiguration;
|
|
12281
|
+
exports.newWebdocIpsGNSSProperties = newWebdocIpsGNSSProperties;
|
|
12282
|
+
exports.newWebdocIpsPathSnappingProperties = newWebdocIpsPathSnappingProperties;
|
|
12219
12283
|
exports.newWebdocIpsPositioningService = newWebdocIpsPositioningService;
|
|
12284
|
+
exports.newWebdocIpsSmoothingProperties = newWebdocIpsSmoothingProperties;
|
|
12220
12285
|
exports.newWebdocWidgetsTimeSlider = newWebdocWidgetsTimeSlider;
|
|
12221
12286
|
exports.newWebmapApplicationProperties = newWebmapApplicationProperties;
|
|
12222
12287
|
exports.newWebmapBackgroundColorBackground = newWebmapBackgroundColorBackground;
|
package/dist/index.d.cts
CHANGED
|
@@ -1205,6 +1205,16 @@ export declare function importWebdocIPSInfo(): Promise<typeof __esri.IPSInfo>;
|
|
|
1205
1205
|
export declare function newWebdocIPSInfo(properties: __esri.IPSInfoProperties): Promise<__esri.IPSInfo>;
|
|
1206
1206
|
export declare function importWebdocIpsPositioningService(): Promise<typeof __esri.PositioningService>;
|
|
1207
1207
|
export declare function newWebdocIpsPositioningService(properties: __esri.PositioningServiceProperties): Promise<__esri.PositioningService>;
|
|
1208
|
+
export declare function importWebdocIpsConfiguration(): Promise<typeof __esri.Configuration>;
|
|
1209
|
+
export declare function newWebdocIpsConfiguration(properties: __esri.ConfigurationProperties): Promise<__esri.Configuration>;
|
|
1210
|
+
export declare function importWebdocIpsAppleIPSProperties(): Promise<typeof __esri.AppleIPSProperties>;
|
|
1211
|
+
export declare function newWebdocIpsAppleIPSProperties(properties: __esri.AppleIPSPropertiesProperties): Promise<__esri.AppleIPSProperties>;
|
|
1212
|
+
export declare function importWebdocIpsGNSSProperties(): Promise<typeof __esri.GNSSProperties>;
|
|
1213
|
+
export declare function newWebdocIpsGNSSProperties(properties: __esri.GNSSPropertiesProperties): Promise<__esri.GNSSProperties>;
|
|
1214
|
+
export declare function importWebdocIpsPathSnappingProperties(): Promise<typeof __esri.PathSnappingProperties>;
|
|
1215
|
+
export declare function newWebdocIpsPathSnappingProperties(properties: __esri.PathSnappingPropertiesProperties): Promise<__esri.PathSnappingProperties>;
|
|
1216
|
+
export declare function importWebdocIpsSmoothingProperties(): Promise<typeof __esri.SmoothingProperties>;
|
|
1217
|
+
export declare function newWebdocIpsSmoothingProperties(properties: __esri.SmoothingPropertiesProperties): Promise<__esri.SmoothingProperties>;
|
|
1208
1218
|
export declare function importWebdocWidgetsTimeSlider(): Promise<typeof __esri.TimeSlider>;
|
|
1209
1219
|
export declare function newWebdocWidgetsTimeSlider(properties: __esri.TimeSliderProperties): Promise<__esri.TimeSlider>;
|
|
1210
1220
|
export declare function importWebDocument2D(): Promise<typeof __esri.WebDocument2D>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1205,6 +1205,16 @@ export declare function importWebdocIPSInfo(): Promise<typeof __esri.IPSInfo>;
|
|
|
1205
1205
|
export declare function newWebdocIPSInfo(properties: __esri.IPSInfoProperties): Promise<__esri.IPSInfo>;
|
|
1206
1206
|
export declare function importWebdocIpsPositioningService(): Promise<typeof __esri.PositioningService>;
|
|
1207
1207
|
export declare function newWebdocIpsPositioningService(properties: __esri.PositioningServiceProperties): Promise<__esri.PositioningService>;
|
|
1208
|
+
export declare function importWebdocIpsConfiguration(): Promise<typeof __esri.Configuration>;
|
|
1209
|
+
export declare function newWebdocIpsConfiguration(properties: __esri.ConfigurationProperties): Promise<__esri.Configuration>;
|
|
1210
|
+
export declare function importWebdocIpsAppleIPSProperties(): Promise<typeof __esri.AppleIPSProperties>;
|
|
1211
|
+
export declare function newWebdocIpsAppleIPSProperties(properties: __esri.AppleIPSPropertiesProperties): Promise<__esri.AppleIPSProperties>;
|
|
1212
|
+
export declare function importWebdocIpsGNSSProperties(): Promise<typeof __esri.GNSSProperties>;
|
|
1213
|
+
export declare function newWebdocIpsGNSSProperties(properties: __esri.GNSSPropertiesProperties): Promise<__esri.GNSSProperties>;
|
|
1214
|
+
export declare function importWebdocIpsPathSnappingProperties(): Promise<typeof __esri.PathSnappingProperties>;
|
|
1215
|
+
export declare function newWebdocIpsPathSnappingProperties(properties: __esri.PathSnappingPropertiesProperties): Promise<__esri.PathSnappingProperties>;
|
|
1216
|
+
export declare function importWebdocIpsSmoothingProperties(): Promise<typeof __esri.SmoothingProperties>;
|
|
1217
|
+
export declare function newWebdocIpsSmoothingProperties(properties: __esri.SmoothingPropertiesProperties): Promise<__esri.SmoothingProperties>;
|
|
1208
1218
|
export declare function importWebdocWidgetsTimeSlider(): Promise<typeof __esri.TimeSlider>;
|
|
1209
1219
|
export declare function newWebdocWidgetsTimeSlider(properties: __esri.TimeSliderProperties): Promise<__esri.TimeSlider>;
|
|
1210
1220
|
export declare function importWebDocument2D(): Promise<typeof __esri.WebDocument2D>;
|
package/dist/index.js
CHANGED
|
@@ -6561,6 +6561,61 @@ async function newWebdocIpsPositioningService(properties) {
|
|
|
6561
6561
|
const ModConstructor = await importWebdocIpsPositioningService();
|
|
6562
6562
|
return new ModConstructor(properties);
|
|
6563
6563
|
}
|
|
6564
|
+
async function importWebdocIpsConfiguration() {
|
|
6565
|
+
if (isAMD) {
|
|
6566
|
+
return await window.$arcgis.import("esri/webdoc/ips/Configuration");
|
|
6567
|
+
}
|
|
6568
|
+
const module = await import("@arcgis/core/webdoc/ips/Configuration.js");
|
|
6569
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6570
|
+
}
|
|
6571
|
+
async function newWebdocIpsConfiguration(properties) {
|
|
6572
|
+
const ModConstructor = await importWebdocIpsConfiguration();
|
|
6573
|
+
return new ModConstructor(properties);
|
|
6574
|
+
}
|
|
6575
|
+
async function importWebdocIpsAppleIPSProperties() {
|
|
6576
|
+
if (isAMD) {
|
|
6577
|
+
return await window.$arcgis.import("esri/webdoc/ips/AppleIPSProperties");
|
|
6578
|
+
}
|
|
6579
|
+
const module = await import("@arcgis/core/webdoc/ips/AppleIPSProperties.js");
|
|
6580
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6581
|
+
}
|
|
6582
|
+
async function newWebdocIpsAppleIPSProperties(properties) {
|
|
6583
|
+
const ModConstructor = await importWebdocIpsAppleIPSProperties();
|
|
6584
|
+
return new ModConstructor(properties);
|
|
6585
|
+
}
|
|
6586
|
+
async function importWebdocIpsGNSSProperties() {
|
|
6587
|
+
if (isAMD) {
|
|
6588
|
+
return await window.$arcgis.import("esri/webdoc/ips/GNSSProperties");
|
|
6589
|
+
}
|
|
6590
|
+
const module = await import("@arcgis/core/webdoc/ips/GNSSProperties.js");
|
|
6591
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6592
|
+
}
|
|
6593
|
+
async function newWebdocIpsGNSSProperties(properties) {
|
|
6594
|
+
const ModConstructor = await importWebdocIpsGNSSProperties();
|
|
6595
|
+
return new ModConstructor(properties);
|
|
6596
|
+
}
|
|
6597
|
+
async function importWebdocIpsPathSnappingProperties() {
|
|
6598
|
+
if (isAMD) {
|
|
6599
|
+
return await window.$arcgis.import("esri/webdoc/ips/PathSnappingProperties");
|
|
6600
|
+
}
|
|
6601
|
+
const module = await import("@arcgis/core/webdoc/ips/PathSnappingProperties.js");
|
|
6602
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6603
|
+
}
|
|
6604
|
+
async function newWebdocIpsPathSnappingProperties(properties) {
|
|
6605
|
+
const ModConstructor = await importWebdocIpsPathSnappingProperties();
|
|
6606
|
+
return new ModConstructor(properties);
|
|
6607
|
+
}
|
|
6608
|
+
async function importWebdocIpsSmoothingProperties() {
|
|
6609
|
+
if (isAMD) {
|
|
6610
|
+
return await window.$arcgis.import("esri/webdoc/ips/SmoothingProperties");
|
|
6611
|
+
}
|
|
6612
|
+
const module = await import("@arcgis/core/webdoc/ips/SmoothingProperties.js");
|
|
6613
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6614
|
+
}
|
|
6615
|
+
async function newWebdocIpsSmoothingProperties(properties) {
|
|
6616
|
+
const ModConstructor = await importWebdocIpsSmoothingProperties();
|
|
6617
|
+
return new ModConstructor(properties);
|
|
6618
|
+
}
|
|
6564
6619
|
async function importWebdocWidgetsTimeSlider() {
|
|
6565
6620
|
if (isAMD) {
|
|
6566
6621
|
return await window.$arcgis.import("esri/webdoc/widgets/TimeSlider");
|
|
@@ -11363,7 +11418,12 @@ export {
|
|
|
11363
11418
|
importWebdocGeotriggersInfoGeotrigger,
|
|
11364
11419
|
importWebdocGeotriggersInfoGeotriggerNotificationOptions,
|
|
11365
11420
|
importWebdocIPSInfo,
|
|
11421
|
+
importWebdocIpsAppleIPSProperties,
|
|
11422
|
+
importWebdocIpsConfiguration,
|
|
11423
|
+
importWebdocIpsGNSSProperties,
|
|
11424
|
+
importWebdocIpsPathSnappingProperties,
|
|
11366
11425
|
importWebdocIpsPositioningService,
|
|
11426
|
+
importWebdocIpsSmoothingProperties,
|
|
11367
11427
|
importWebdocWidgetsTimeSlider,
|
|
11368
11428
|
importWebmapApplicationProperties,
|
|
11369
11429
|
importWebmapBackgroundColorBackground,
|
|
@@ -12193,7 +12253,12 @@ export {
|
|
|
12193
12253
|
newWebdocGeotriggersInfoGeotrigger,
|
|
12194
12254
|
newWebdocGeotriggersInfoGeotriggerNotificationOptions,
|
|
12195
12255
|
newWebdocIPSInfo,
|
|
12256
|
+
newWebdocIpsAppleIPSProperties,
|
|
12257
|
+
newWebdocIpsConfiguration,
|
|
12258
|
+
newWebdocIpsGNSSProperties,
|
|
12259
|
+
newWebdocIpsPathSnappingProperties,
|
|
12196
12260
|
newWebdocIpsPositioningService,
|
|
12261
|
+
newWebdocIpsSmoothingProperties,
|
|
12197
12262
|
newWebdocWidgetsTimeSlider,
|
|
12198
12263
|
newWebmapApplicationProperties,
|
|
12199
12264
|
newWebmapBackgroundColorBackground,
|