@arcgis/core-adapter 5.0.0-next.12 → 5.0.0-next.14

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
@@ -1840,9 +1840,9 @@ async function importLayersSupportFieldsIndex() {
1840
1840
  const module2 = await import("@arcgis/core/layers/support/FieldsIndex.js");
1841
1841
  return isDefaultModule(module2) ? module2.default : module2;
1842
1842
  }
1843
- async function newLayersSupportFieldsIndex(properties) {
1843
+ async function newLayersSupportFieldsIndex(fields) {
1844
1844
  const ModConstructor = await importLayersSupportFieldsIndex();
1845
- return new ModConstructor(properties);
1845
+ return new ModConstructor(fields);
1846
1846
  }
1847
1847
  async function importLayersSupportGeometryFieldsInfo() {
1848
1848
  if (isAMD) {
package/dist/index.d.cts CHANGED
@@ -342,7 +342,7 @@ export declare function newLayersSupportField(properties: __esri.FieldProperties
342
342
  export declare function importLayersSupportFieldConfiguration(): Promise<typeof __esri.FieldConfiguration>;
343
343
  export declare function newLayersSupportFieldConfiguration(properties: __esri.FieldConfigurationProperties): Promise<__esri.FieldConfiguration>;
344
344
  export declare function importLayersSupportFieldsIndex(): Promise<typeof __esri.FieldsIndex>;
345
- export declare function newLayersSupportFieldsIndex(properties: any): Promise<__esri.FieldsIndex>;
345
+ export declare function newLayersSupportFieldsIndex(fields: any): Promise<__esri.FieldsIndex>;
346
346
  export declare function importLayersSupportGeometryFieldsInfo(): Promise<typeof __esri.GeometryFieldsInfo>;
347
347
  export declare function newLayersSupportGeometryFieldsInfo(properties: __esri.GeometryFieldsInfoProperties): Promise<__esri.GeometryFieldsInfo>;
348
348
  export declare function importLayersSupportImageElement(): Promise<typeof __esri.ImageElement>;
package/dist/index.d.ts CHANGED
@@ -342,7 +342,7 @@ export declare function newLayersSupportField(properties: __esri.FieldProperties
342
342
  export declare function importLayersSupportFieldConfiguration(): Promise<typeof __esri.FieldConfiguration>;
343
343
  export declare function newLayersSupportFieldConfiguration(properties: __esri.FieldConfigurationProperties): Promise<__esri.FieldConfiguration>;
344
344
  export declare function importLayersSupportFieldsIndex(): Promise<typeof __esri.FieldsIndex>;
345
- export declare function newLayersSupportFieldsIndex(properties: any): Promise<__esri.FieldsIndex>;
345
+ export declare function newLayersSupportFieldsIndex(fields: any): Promise<__esri.FieldsIndex>;
346
346
  export declare function importLayersSupportGeometryFieldsInfo(): Promise<typeof __esri.GeometryFieldsInfo>;
347
347
  export declare function newLayersSupportGeometryFieldsInfo(properties: __esri.GeometryFieldsInfoProperties): Promise<__esri.GeometryFieldsInfo>;
348
348
  export declare function importLayersSupportImageElement(): Promise<typeof __esri.ImageElement>;
package/dist/index.js CHANGED
@@ -1816,9 +1816,9 @@ async function importLayersSupportFieldsIndex() {
1816
1816
  const module = await import("@arcgis/core/layers/support/FieldsIndex.js");
1817
1817
  return isDefaultModule(module) ? module.default : module;
1818
1818
  }
1819
- async function newLayersSupportFieldsIndex(properties) {
1819
+ async function newLayersSupportFieldsIndex(fields) {
1820
1820
  const ModConstructor = await importLayersSupportFieldsIndex();
1821
- return new ModConstructor(properties);
1821
+ return new ModConstructor(fields);
1822
1822
  }
1823
1823
  async function importLayersSupportGeometryFieldsInfo() {
1824
1824
  if (isAMD) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcgis/core-adapter",
3
- "version": "5.0.0-next.12",
3
+ "version": "5.0.0-next.14",
4
4
  "description": "ArcGIS Core Adapter",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",