@arcgis/core-adapter 4.33.0-next.129 → 4.33.0-next.132
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
|
@@ -7443,6 +7443,17 @@ async function newWidgetsEditorEdits(properties) {
|
|
|
7443
7443
|
const ModConstructor = await importWidgetsEditorEdits();
|
|
7444
7444
|
return new ModConstructor(properties);
|
|
7445
7445
|
}
|
|
7446
|
+
async function importWidgetsEditorUpdateFeaturesWorkflowData() {
|
|
7447
|
+
if (isAMD) {
|
|
7448
|
+
return await window.$arcgis.import("esri/widgets/Editor/UpdateFeaturesWorkflowData");
|
|
7449
|
+
}
|
|
7450
|
+
const module2 = await import("@arcgis/core/widgets/Editor/UpdateFeaturesWorkflowData.js");
|
|
7451
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7452
|
+
}
|
|
7453
|
+
async function newWidgetsEditorUpdateFeaturesWorkflowData(properties) {
|
|
7454
|
+
const ModConstructor = await importWidgetsEditorUpdateFeaturesWorkflowData();
|
|
7455
|
+
return new ModConstructor(properties);
|
|
7456
|
+
}
|
|
7446
7457
|
async function importWidgetsEditorUpdateWorkflow() {
|
|
7447
7458
|
if (isAMD) {
|
|
7448
7459
|
return await window.$arcgis.import("esri/widgets/Editor/UpdateWorkflow");
|
|
@@ -11534,6 +11545,7 @@ exports.importWidgetsEditorCreateFeaturesWorkflowData = importWidgetsEditorCreat
|
|
|
11534
11545
|
exports.importWidgetsEditorEditorViewModel = importWidgetsEditorEditorViewModel;
|
|
11535
11546
|
exports.importWidgetsEditorEdits = importWidgetsEditorEdits;
|
|
11536
11547
|
exports.importWidgetsEditorSupportEditorItem = importWidgetsEditorSupportEditorItem;
|
|
11548
|
+
exports.importWidgetsEditorUpdateFeaturesWorkflowData = importWidgetsEditorUpdateFeaturesWorkflowData;
|
|
11537
11549
|
exports.importWidgetsEditorUpdateWorkflow = importWidgetsEditorUpdateWorkflow;
|
|
11538
11550
|
exports.importWidgetsEditorUpdateWorkflowData = importWidgetsEditorUpdateWorkflowData;
|
|
11539
11551
|
exports.importWidgetsEditorWorkflow = importWidgetsEditorWorkflow;
|
|
@@ -12368,6 +12380,7 @@ exports.newWidgetsEditorCreateFeaturesWorkflowData = newWidgetsEditorCreateFeatu
|
|
|
12368
12380
|
exports.newWidgetsEditorEditorViewModel = newWidgetsEditorEditorViewModel;
|
|
12369
12381
|
exports.newWidgetsEditorEdits = newWidgetsEditorEdits;
|
|
12370
12382
|
exports.newWidgetsEditorSupportEditorItem = newWidgetsEditorSupportEditorItem;
|
|
12383
|
+
exports.newWidgetsEditorUpdateFeaturesWorkflowData = newWidgetsEditorUpdateFeaturesWorkflowData;
|
|
12371
12384
|
exports.newWidgetsEditorUpdateWorkflow = newWidgetsEditorUpdateWorkflow;
|
|
12372
12385
|
exports.newWidgetsEditorUpdateWorkflowData = newWidgetsEditorUpdateWorkflowData;
|
|
12373
12386
|
exports.newWidgetsEditorWorkflow = newWidgetsEditorWorkflow;
|
package/dist/index.d.cts
CHANGED
|
@@ -1361,6 +1361,8 @@ export declare function importWidgetsEditorEditorViewModel(): Promise<typeof __e
|
|
|
1361
1361
|
export declare function newWidgetsEditorEditorViewModel(properties: __esri.EditorViewModelProperties): Promise<__esri.EditorViewModel>;
|
|
1362
1362
|
export declare function importWidgetsEditorEdits(): Promise<typeof __esri.Edits>;
|
|
1363
1363
|
export declare function newWidgetsEditorEdits(properties: __esri.EditsProperties): Promise<__esri.Edits>;
|
|
1364
|
+
export declare function importWidgetsEditorUpdateFeaturesWorkflowData(): Promise<typeof __esri.UpdateFeaturesWorkflowData>;
|
|
1365
|
+
export declare function newWidgetsEditorUpdateFeaturesWorkflowData(properties: any): Promise<__esri.UpdateFeaturesWorkflowData>;
|
|
1364
1366
|
export declare function importWidgetsEditorUpdateWorkflow(): Promise<typeof __esri.UpdateWorkflow>;
|
|
1365
1367
|
export declare function newWidgetsEditorUpdateWorkflow(properties: __esri.UpdateWorkflowProperties): Promise<__esri.UpdateWorkflow>;
|
|
1366
1368
|
export declare function importWidgetsEditorUpdateWorkflowData(): Promise<typeof __esri.UpdateWorkflowData>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1361,6 +1361,8 @@ export declare function importWidgetsEditorEditorViewModel(): Promise<typeof __e
|
|
|
1361
1361
|
export declare function newWidgetsEditorEditorViewModel(properties: __esri.EditorViewModelProperties): Promise<__esri.EditorViewModel>;
|
|
1362
1362
|
export declare function importWidgetsEditorEdits(): Promise<typeof __esri.Edits>;
|
|
1363
1363
|
export declare function newWidgetsEditorEdits(properties: __esri.EditsProperties): Promise<__esri.Edits>;
|
|
1364
|
+
export declare function importWidgetsEditorUpdateFeaturesWorkflowData(): Promise<typeof __esri.UpdateFeaturesWorkflowData>;
|
|
1365
|
+
export declare function newWidgetsEditorUpdateFeaturesWorkflowData(properties: any): Promise<__esri.UpdateFeaturesWorkflowData>;
|
|
1364
1366
|
export declare function importWidgetsEditorUpdateWorkflow(): Promise<typeof __esri.UpdateWorkflow>;
|
|
1365
1367
|
export declare function newWidgetsEditorUpdateWorkflow(properties: __esri.UpdateWorkflowProperties): Promise<__esri.UpdateWorkflow>;
|
|
1366
1368
|
export declare function importWidgetsEditorUpdateWorkflowData(): Promise<typeof __esri.UpdateWorkflowData>;
|
package/dist/index.js
CHANGED
|
@@ -7419,6 +7419,17 @@ async function newWidgetsEditorEdits(properties) {
|
|
|
7419
7419
|
const ModConstructor = await importWidgetsEditorEdits();
|
|
7420
7420
|
return new ModConstructor(properties);
|
|
7421
7421
|
}
|
|
7422
|
+
async function importWidgetsEditorUpdateFeaturesWorkflowData() {
|
|
7423
|
+
if (isAMD) {
|
|
7424
|
+
return await window.$arcgis.import("esri/widgets/Editor/UpdateFeaturesWorkflowData");
|
|
7425
|
+
}
|
|
7426
|
+
const module = await import("@arcgis/core/widgets/Editor/UpdateFeaturesWorkflowData.js");
|
|
7427
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7428
|
+
}
|
|
7429
|
+
async function newWidgetsEditorUpdateFeaturesWorkflowData(properties) {
|
|
7430
|
+
const ModConstructor = await importWidgetsEditorUpdateFeaturesWorkflowData();
|
|
7431
|
+
return new ModConstructor(properties);
|
|
7432
|
+
}
|
|
7422
7433
|
async function importWidgetsEditorUpdateWorkflow() {
|
|
7423
7434
|
if (isAMD) {
|
|
7424
7435
|
return await window.$arcgis.import("esri/widgets/Editor/UpdateWorkflow");
|
|
@@ -11511,6 +11522,7 @@ export {
|
|
|
11511
11522
|
importWidgetsEditorEditorViewModel,
|
|
11512
11523
|
importWidgetsEditorEdits,
|
|
11513
11524
|
importWidgetsEditorSupportEditorItem,
|
|
11525
|
+
importWidgetsEditorUpdateFeaturesWorkflowData,
|
|
11514
11526
|
importWidgetsEditorUpdateWorkflow,
|
|
11515
11527
|
importWidgetsEditorUpdateWorkflowData,
|
|
11516
11528
|
importWidgetsEditorWorkflow,
|
|
@@ -12345,6 +12357,7 @@ export {
|
|
|
12345
12357
|
newWidgetsEditorEditorViewModel,
|
|
12346
12358
|
newWidgetsEditorEdits,
|
|
12347
12359
|
newWidgetsEditorSupportEditorItem,
|
|
12360
|
+
newWidgetsEditorUpdateFeaturesWorkflowData,
|
|
12348
12361
|
newWidgetsEditorUpdateWorkflow,
|
|
12349
12362
|
newWidgetsEditorUpdateWorkflowData,
|
|
12350
12363
|
newWidgetsEditorWorkflow,
|