@arcgis/map-components-react 4.30.0-next.9 → 4.31.0-next.0

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/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Licensing
2
2
 
3
- COPYRIGHT © 2023 Esri
3
+ COPYRIGHT © 2024 Esri
4
4
 
5
5
  All rights reserved under the copyright laws of the United States and applicable international laws, treaties, and conventions.
6
6
 
package/README.md CHANGED
@@ -1,6 +1,4 @@
1
- # ArcGIS Maps SDK for JavaScript - React wrapper for Map Components (beta)
2
-
3
- **No Esri Technical Support during beta.**
1
+ # ArcGIS Maps SDK for JavaScript - React wrapper for Map Components
4
2
 
5
3
  This package offers a series of mapping components that can be used to build applications with the ArcGIS Maps SDK for JavaScript.
6
4
 
@@ -10,7 +8,7 @@ Refer to the [ArcGIS Maps SDK for JavaScript components documentation](https://d
10
8
 
11
9
  ## License
12
10
 
13
- COPYRIGHT © 2023 Esri
11
+ COPYRIGHT © 2024 Esri
14
12
 
15
13
  All rights reserved under the copyright laws of the United States and applicable international laws, treaties, and conventions.
16
14
 
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import type { JSX } from "@arcgis/map-components/dist/types/components";
2
+ import type { JSX } from '@arcgis/map-components';
3
3
  export declare const ArcgisAreaMeasurement2d: import("react").ForwardRefExoticComponent<JSX.ArcgisAreaMeasurement2d & Omit<import("react").HTMLAttributes<HTMLArcgisAreaMeasurement2dElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLArcgisAreaMeasurement2dElement>>;
4
4
  export declare const ArcgisAreaMeasurement3d: import("react").ForwardRefExoticComponent<JSX.ArcgisAreaMeasurement3d & Omit<import("react").HTMLAttributes<HTMLArcgisAreaMeasurement3dElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLArcgisAreaMeasurement3dElement>>;
5
5
  export declare const ArcgisAttachments: import("react").ForwardRefExoticComponent<JSX.ArcgisAttachments & Omit<import("react").HTMLAttributes<HTMLArcgisAttachmentsElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLArcgisAttachmentsElement>>;
@@ -35,6 +35,7 @@ export declare const ArcgisLocate: import("react").ForwardRefExoticComponent<JSX
35
35
  export declare const ArcgisMap: import("react").ForwardRefExoticComponent<JSX.ArcgisMap & Omit<import("react").HTMLAttributes<HTMLArcgisMapElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLArcgisMapElement>>;
36
36
  export declare const ArcgisMeasurement: import("react").ForwardRefExoticComponent<JSX.ArcgisMeasurement & Omit<import("react").HTMLAttributes<HTMLArcgisMeasurementElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLArcgisMeasurementElement>>;
37
37
  export declare const ArcgisNavigationToggle: import("react").ForwardRefExoticComponent<JSX.ArcgisNavigationToggle & Omit<import("react").HTMLAttributes<HTMLArcgisNavigationToggleElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLArcgisNavigationToggleElement>>;
38
+ export declare const ArcgisOrientedImageryViewer: import("react").ForwardRefExoticComponent<JSX.ArcgisOrientedImageryViewer & Omit<import("react").HTMLAttributes<HTMLArcgisOrientedImageryViewerElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLArcgisOrientedImageryViewerElement>>;
38
39
  export declare const ArcgisPlacement: import("react").ForwardRefExoticComponent<JSX.ArcgisPlacement & Omit<import("react").HTMLAttributes<HTMLArcgisPlacementElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLArcgisPlacementElement>>;
39
40
  export declare const ArcgisPrint: import("react").ForwardRefExoticComponent<JSX.ArcgisPrint & Omit<import("react").HTMLAttributes<HTMLArcgisPrintElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLArcgisPrintElement>>;
40
41
  export declare const ArcgisScaleBar: import("react").ForwardRefExoticComponent<JSX.ArcgisScaleBar & Omit<import("react").HTMLAttributes<HTMLArcgisScaleBarElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLArcgisScaleBarElement>>;
@@ -37,6 +37,7 @@ export const ArcgisLocate = /*@__PURE__*/ createReactComponent('arcgis-locate');
37
37
  export const ArcgisMap = /*@__PURE__*/ createReactComponent('arcgis-map');
38
38
  export const ArcgisMeasurement = /*@__PURE__*/ createReactComponent('arcgis-measurement');
39
39
  export const ArcgisNavigationToggle = /*@__PURE__*/ createReactComponent('arcgis-navigation-toggle');
40
+ export const ArcgisOrientedImageryViewer = /*@__PURE__*/ createReactComponent('arcgis-oriented-imagery-viewer');
40
41
  export const ArcgisPlacement = /*@__PURE__*/ createReactComponent('arcgis-placement');
41
42
  export const ArcgisPrint = /*@__PURE__*/ createReactComponent('arcgis-print');
42
43
  export const ArcgisScaleBar = /*@__PURE__*/ createReactComponent('arcgis-scale-bar');
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@arcgis/map-components-react",
3
3
  "description": "A set of React components that wrap ArcGIS map components",
4
4
  "homepage": "https://developers.arcgis.com/javascript/latest/",
5
- "version": "4.30.0-next.9",
5
+ "version": "4.31.0-next.0",
6
6
  "sideEffects": false,
7
7
  "module": "dist/index.js",
8
8
  "main": "dist/index.js",
@@ -19,14 +19,13 @@
19
19
  "build": "yarn pre && yarn compile",
20
20
  "clean": "rimraf dist node_modules .turbo",
21
21
  "compile": "yarn tsc",
22
- "pre": "rimraf dist && yarn awc patch-jsx-imports",
22
+ "pre": "rimraf dist",
23
23
  "tsc": "tsc"
24
24
  },
25
25
  "dependencies": {
26
- "@arcgis/map-components": "4.30.0-next.9"
26
+ "@arcgis/map-components": "4.31.0-next.0"
27
27
  },
28
28
  "devDependencies": {
29
- "@arcgis/components-plugins": "4.30.0-next.9",
30
29
  "@types/node": "^20.2.5",
31
30
  "@types/react-dom": "^18.2.0",
32
31
  "rimraf": "^5.0.0",
@@ -37,5 +36,5 @@
37
36
  "react": ">=18.0.0 <19.0.0",
38
37
  "react-dom": ">=18.0.0 <19.0.0"
39
38
  },
40
- "gitHead": "0cdf61b36fd914045cbecbe6b1faf5224ef6639f"
39
+ "gitHead": "e1e009c091fe13c435e452a1796eb563e0a59cb9"
41
40
  }