@arcgis/core-adapter 4.34.0-next.81 → 4.34.0-next.83

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 CHANGED
@@ -11132,6 +11132,13 @@ async function importApplicationsComponentsFontUtils() {
11132
11132
  const module2 = await import("@arcgis/core/applications/Components/fontUtils.js");
11133
11133
  return isDefaultModule(module2) ? module2.default : module2;
11134
11134
  }
11135
+ async function importApplicationsComponentsFormatUtils() {
11136
+ if (isAMD) {
11137
+ return await window.$arcgis.import("esri/applications/Components/formatUtils");
11138
+ }
11139
+ const module2 = await import("@arcgis/core/applications/Components/formatUtils.js");
11140
+ return isDefaultModule(module2) ? module2.default : module2;
11141
+ }
11135
11142
  async function importApplicationsComponentsGetDefaultUnits() {
11136
11143
  if (isAMD) {
11137
11144
  return await window.$arcgis.import("esri/applications/Components/getDefaultUnits");
@@ -11297,6 +11304,7 @@ exports.importApplicationsComponentsBasemapUtils = importApplicationsComponentsB
11297
11304
  exports.importApplicationsComponentsDrawUtils = importApplicationsComponentsDrawUtils;
11298
11305
  exports.importApplicationsComponentsFeatureUtils = importApplicationsComponentsFeatureUtils;
11299
11306
  exports.importApplicationsComponentsFontUtils = importApplicationsComponentsFontUtils;
11307
+ exports.importApplicationsComponentsFormatUtils = importApplicationsComponentsFormatUtils;
11300
11308
  exports.importApplicationsComponentsGetDefaultUnits = importApplicationsComponentsGetDefaultUnits;
11301
11309
  exports.importApplicationsComponentsGfxUtils = importApplicationsComponentsGfxUtils;
11302
11310
  exports.importApplicationsComponentsImageryUtils = importApplicationsComponentsImageryUtils;
package/dist/index.d.cts CHANGED
@@ -1978,6 +1978,7 @@ export declare function importApplicationsComponentsBasemapUtils(): Promise<type
1978
1978
  export declare function importApplicationsComponentsDrawUtils(): Promise<typeof __esri.drawUtils>;
1979
1979
  export declare function importApplicationsComponentsFeatureUtils(): Promise<typeof __esri.featureUtils>;
1980
1980
  export declare function importApplicationsComponentsFontUtils(): Promise<typeof __esri.fontUtils>;
1981
+ export declare function importApplicationsComponentsFormatUtils(): Promise<typeof __esri.formatUtils>;
1981
1982
  export declare function importApplicationsComponentsGetDefaultUnits(): Promise<typeof __esri.getDefaultUnits>;
1982
1983
  export declare function importApplicationsComponentsGfxUtils(): Promise<typeof __esri.gfxUtils>;
1983
1984
  export declare function importApplicationsComponentsImageryUtils(): Promise<typeof __esri.imageryUtils>;
package/dist/index.d.ts CHANGED
@@ -1978,6 +1978,7 @@ export declare function importApplicationsComponentsBasemapUtils(): Promise<type
1978
1978
  export declare function importApplicationsComponentsDrawUtils(): Promise<typeof __esri.drawUtils>;
1979
1979
  export declare function importApplicationsComponentsFeatureUtils(): Promise<typeof __esri.featureUtils>;
1980
1980
  export declare function importApplicationsComponentsFontUtils(): Promise<typeof __esri.fontUtils>;
1981
+ export declare function importApplicationsComponentsFormatUtils(): Promise<typeof __esri.formatUtils>;
1981
1982
  export declare function importApplicationsComponentsGetDefaultUnits(): Promise<typeof __esri.getDefaultUnits>;
1982
1983
  export declare function importApplicationsComponentsGfxUtils(): Promise<typeof __esri.gfxUtils>;
1983
1984
  export declare function importApplicationsComponentsImageryUtils(): Promise<typeof __esri.imageryUtils>;
package/dist/index.js CHANGED
@@ -11108,6 +11108,13 @@ async function importApplicationsComponentsFontUtils() {
11108
11108
  const module = await import("@arcgis/core/applications/Components/fontUtils.js");
11109
11109
  return isDefaultModule(module) ? module.default : module;
11110
11110
  }
11111
+ async function importApplicationsComponentsFormatUtils() {
11112
+ if (isAMD) {
11113
+ return await window.$arcgis.import("esri/applications/Components/formatUtils");
11114
+ }
11115
+ const module = await import("@arcgis/core/applications/Components/formatUtils.js");
11116
+ return isDefaultModule(module) ? module.default : module;
11117
+ }
11111
11118
  async function importApplicationsComponentsGetDefaultUnits() {
11112
11119
  if (isAMD) {
11113
11120
  return await window.$arcgis.import("esri/applications/Components/getDefaultUnits");
@@ -11274,6 +11281,7 @@ export {
11274
11281
  importApplicationsComponentsDrawUtils,
11275
11282
  importApplicationsComponentsFeatureUtils,
11276
11283
  importApplicationsComponentsFontUtils,
11284
+ importApplicationsComponentsFormatUtils,
11277
11285
  importApplicationsComponentsGetDefaultUnits,
11278
11286
  importApplicationsComponentsGfxUtils,
11279
11287
  importApplicationsComponentsImageryUtils,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcgis/core-adapter",
3
- "version": "4.34.0-next.81",
3
+ "version": "4.34.0-next.83",
4
4
  "description": "ArcGIS Core Adapter",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",