@arcgis/core-adapter 4.34.0-next.45 → 4.34.0-next.47
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 +8 -0
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +8 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -10803,6 +10803,13 @@ async function importApplicationsComponentsDrawUtils() {
|
|
|
10803
10803
|
const module2 = await import("@arcgis/core/applications/Components/drawUtils.js");
|
|
10804
10804
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10805
10805
|
}
|
|
10806
|
+
async function importApplicationsComponentsFeatureUtils() {
|
|
10807
|
+
if (isAMD) {
|
|
10808
|
+
return await window.$arcgis.import("esri/applications/Components/featureUtils");
|
|
10809
|
+
}
|
|
10810
|
+
const module2 = await import("@arcgis/core/applications/Components/featureUtils.js");
|
|
10811
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10812
|
+
}
|
|
10806
10813
|
async function importApplicationsComponentsFontUtils() {
|
|
10807
10814
|
if (isAMD) {
|
|
10808
10815
|
return await window.$arcgis.import("esri/applications/Components/fontUtils");
|
|
@@ -10963,6 +10970,7 @@ exports.importApplicationsComponentsAnalysisUtils = importApplicationsComponents
|
|
|
10963
10970
|
exports.importApplicationsComponentsArcadeFeatureUtils = importApplicationsComponentsArcadeFeatureUtils;
|
|
10964
10971
|
exports.importApplicationsComponentsBasemapUtils = importApplicationsComponentsBasemapUtils;
|
|
10965
10972
|
exports.importApplicationsComponentsDrawUtils = importApplicationsComponentsDrawUtils;
|
|
10973
|
+
exports.importApplicationsComponentsFeatureUtils = importApplicationsComponentsFeatureUtils;
|
|
10966
10974
|
exports.importApplicationsComponentsFontUtils = importApplicationsComponentsFontUtils;
|
|
10967
10975
|
exports.importApplicationsComponentsGetDefaultUnits = importApplicationsComponentsGetDefaultUnits;
|
|
10968
10976
|
exports.importApplicationsComponentsGfxUtils = importApplicationsComponentsGfxUtils;
|
package/dist/index.d.cts
CHANGED
|
@@ -1919,6 +1919,7 @@ export declare function importApplicationsComponentsAnalysisUtils(): Promise<typ
|
|
|
1919
1919
|
export declare function importApplicationsComponentsArcadeFeatureUtils(): Promise<typeof __esri.arcadeFeatureUtils>;
|
|
1920
1920
|
export declare function importApplicationsComponentsBasemapUtils(): Promise<typeof __esri.basemapUtils>;
|
|
1921
1921
|
export declare function importApplicationsComponentsDrawUtils(): Promise<typeof __esri.drawUtils>;
|
|
1922
|
+
export declare function importApplicationsComponentsFeatureUtils(): Promise<typeof __esri.featureUtils>;
|
|
1922
1923
|
export declare function importApplicationsComponentsFontUtils(): Promise<typeof __esri.fontUtils>;
|
|
1923
1924
|
export declare function importApplicationsComponentsGetDefaultUnits(): Promise<typeof __esri.getDefaultUnits>;
|
|
1924
1925
|
export declare function importApplicationsComponentsGfxUtils(): Promise<typeof __esri.gfxUtils>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1919,6 +1919,7 @@ export declare function importApplicationsComponentsAnalysisUtils(): Promise<typ
|
|
|
1919
1919
|
export declare function importApplicationsComponentsArcadeFeatureUtils(): Promise<typeof __esri.arcadeFeatureUtils>;
|
|
1920
1920
|
export declare function importApplicationsComponentsBasemapUtils(): Promise<typeof __esri.basemapUtils>;
|
|
1921
1921
|
export declare function importApplicationsComponentsDrawUtils(): Promise<typeof __esri.drawUtils>;
|
|
1922
|
+
export declare function importApplicationsComponentsFeatureUtils(): Promise<typeof __esri.featureUtils>;
|
|
1922
1923
|
export declare function importApplicationsComponentsFontUtils(): Promise<typeof __esri.fontUtils>;
|
|
1923
1924
|
export declare function importApplicationsComponentsGetDefaultUnits(): Promise<typeof __esri.getDefaultUnits>;
|
|
1924
1925
|
export declare function importApplicationsComponentsGfxUtils(): Promise<typeof __esri.gfxUtils>;
|
package/dist/index.js
CHANGED
|
@@ -10779,6 +10779,13 @@ async function importApplicationsComponentsDrawUtils() {
|
|
|
10779
10779
|
const module = await import("@arcgis/core/applications/Components/drawUtils.js");
|
|
10780
10780
|
return isDefaultModule(module) ? module.default : module;
|
|
10781
10781
|
}
|
|
10782
|
+
async function importApplicationsComponentsFeatureUtils() {
|
|
10783
|
+
if (isAMD) {
|
|
10784
|
+
return await window.$arcgis.import("esri/applications/Components/featureUtils");
|
|
10785
|
+
}
|
|
10786
|
+
const module = await import("@arcgis/core/applications/Components/featureUtils.js");
|
|
10787
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10788
|
+
}
|
|
10782
10789
|
async function importApplicationsComponentsFontUtils() {
|
|
10783
10790
|
if (isAMD) {
|
|
10784
10791
|
return await window.$arcgis.import("esri/applications/Components/fontUtils");
|
|
@@ -10940,6 +10947,7 @@ export {
|
|
|
10940
10947
|
importApplicationsComponentsArcadeFeatureUtils,
|
|
10941
10948
|
importApplicationsComponentsBasemapUtils,
|
|
10942
10949
|
importApplicationsComponentsDrawUtils,
|
|
10950
|
+
importApplicationsComponentsFeatureUtils,
|
|
10943
10951
|
importApplicationsComponentsFontUtils,
|
|
10944
10952
|
importApplicationsComponentsGetDefaultUnits,
|
|
10945
10953
|
importApplicationsComponentsGfxUtils,
|