@arcgis/map-components-react 4.30.0-next.6 → 4.30.0-next.60
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/components.d.ts +2 -1
- package/dist/components.js +1 -0
- package/package.json +4 -5
package/dist/components.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type { JSX } from
|
|
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>>;
|
package/dist/components.js
CHANGED
|
@@ -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.
|
|
5
|
+
"version": "4.30.0-next.60",
|
|
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
|
|
22
|
+
"pre": "rimraf dist",
|
|
23
23
|
"tsc": "tsc"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@arcgis/map-components": "4.30.0-next.
|
|
26
|
+
"@arcgis/map-components": "4.30.0-next.60"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@arcgis/components-plugins": "4.30.0-next.6",
|
|
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": "
|
|
39
|
+
"gitHead": "282e6fda699077409b843bc17be1decf432135e6"
|
|
41
40
|
}
|