@arcgis/map-components-react 4.33.0-next.98 → 4.34.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/dist/components.d.ts +7 -5
- package/dist/components.js +5 -3
- package/package.json +7 -7
package/dist/components.d.ts
CHANGED
|
@@ -77,6 +77,7 @@ export declare const ArcgisDaylight: import("@lit/react").ReactWebComponent<HTML
|
|
|
77
77
|
class?: string;
|
|
78
78
|
}, {
|
|
79
79
|
onArcgisReady: EventName<HTMLArcgisDaylightElement["arcgisReady"]>;
|
|
80
|
+
onArcgisUserDateTimeChange: EventName<HTMLArcgisDaylightElement["arcgisUserDateTimeChange"]>;
|
|
80
81
|
}>;
|
|
81
82
|
export declare const ArcgisDirectionalPad: import("@lit/react").ReactWebComponent<HTMLArcgisDirectionalPadElement & {
|
|
82
83
|
class?: string;
|
|
@@ -90,6 +91,12 @@ export declare const ArcgisDirections: import("@lit/react").ReactWebComponent<HT
|
|
|
90
91
|
onArcgisPropertyChange: EventName<HTMLArcgisDirectionsElement["arcgisPropertyChange"]>;
|
|
91
92
|
onArcgisReady: EventName<HTMLArcgisDirectionsElement["arcgisReady"]>;
|
|
92
93
|
}>;
|
|
94
|
+
export declare const ArcgisDirectLineMeasurement3d: import("@lit/react").ReactWebComponent<HTMLArcgisDirectLineMeasurement3dElement & {
|
|
95
|
+
class?: string;
|
|
96
|
+
}, {
|
|
97
|
+
onArcgisPropertyChange: EventName<HTMLArcgisDirectLineMeasurement3dElement["arcgisPropertyChange"]>;
|
|
98
|
+
onArcgisReady: EventName<HTMLArcgisDirectLineMeasurement3dElement["arcgisReady"]>;
|
|
99
|
+
}>;
|
|
93
100
|
export declare const ArcgisDirectlineMeasurement3d: import("@lit/react").ReactWebComponent<HTMLArcgisDirectlineMeasurement3dElement & {
|
|
94
101
|
class?: string;
|
|
95
102
|
}, {
|
|
@@ -198,11 +205,6 @@ export declare const ArcgisLayerList: import("@lit/react").ReactWebComponent<HTM
|
|
|
198
205
|
onArcgisReady: EventName<HTMLArcgisLayerListElement["arcgisReady"]>;
|
|
199
206
|
onArcgisTriggerAction: EventName<HTMLArcgisLayerListElement["arcgisTriggerAction"]>;
|
|
200
207
|
}>;
|
|
201
|
-
export declare const ArcgisLayerListItem: import("@lit/react").ReactWebComponent<HTMLArcgisLayerListItemElement & {
|
|
202
|
-
class?: string;
|
|
203
|
-
}, {
|
|
204
|
-
onArcgisPropertyChange: EventName<HTMLArcgisLayerListItemElement["arcgisPropertyChange"]>;
|
|
205
|
-
}>;
|
|
206
208
|
export declare const ArcgisLegend: import("@lit/react").ReactWebComponent<HTMLArcgisLegendElement & {
|
|
207
209
|
class?: string;
|
|
208
210
|
}, {
|
package/dist/components.js
CHANGED
|
@@ -56,6 +56,7 @@ export const ArcgisCoordinateConversion = /*@__PURE__*/ createWrapper(getReactWr
|
|
|
56
56
|
}));
|
|
57
57
|
export const ArcgisDaylight = /*@__PURE__*/ createWrapper(getReactWrapperOptions("arcgis-daylight", {
|
|
58
58
|
onArcgisReady: "arcgisReady",
|
|
59
|
+
onArcgisUserDateTimeChange: "arcgisUserDateTimeChange",
|
|
59
60
|
}));
|
|
60
61
|
export const ArcgisDirectionalPad = /*@__PURE__*/ createWrapper(getReactWrapperOptions("arcgis-directional-pad", {
|
|
61
62
|
onArcgisPropertyChange: "arcgisPropertyChange",
|
|
@@ -65,6 +66,10 @@ export const ArcgisDirections = /*@__PURE__*/ createWrapper(getReactWrapperOptio
|
|
|
65
66
|
onArcgisPropertyChange: "arcgisPropertyChange",
|
|
66
67
|
onArcgisReady: "arcgisReady",
|
|
67
68
|
}));
|
|
69
|
+
export const ArcgisDirectLineMeasurement3d = /*@__PURE__*/ createWrapper(getReactWrapperOptions("arcgis-direct-line-measurement-3d", {
|
|
70
|
+
onArcgisPropertyChange: "arcgisPropertyChange",
|
|
71
|
+
onArcgisReady: "arcgisReady",
|
|
72
|
+
}));
|
|
68
73
|
export const ArcgisDirectlineMeasurement3d = /*@__PURE__*/ createWrapper(getReactWrapperOptions("arcgis-directline-measurement-3d", {
|
|
69
74
|
onArcgisPropertyChange: "arcgisPropertyChange",
|
|
70
75
|
onArcgisReady: "arcgisReady",
|
|
@@ -141,9 +146,6 @@ export const ArcgisLayerList = /*@__PURE__*/ createWrapper(getReactWrapperOption
|
|
|
141
146
|
onArcgisReady: "arcgisReady",
|
|
142
147
|
onArcgisTriggerAction: "arcgisTriggerAction",
|
|
143
148
|
}));
|
|
144
|
-
export const ArcgisLayerListItem = /*@__PURE__*/ createWrapper(getReactWrapperOptions("arcgis-layer-list-item", {
|
|
145
|
-
onArcgisPropertyChange: "arcgisPropertyChange",
|
|
146
|
-
}));
|
|
147
149
|
export const ArcgisLegend = /*@__PURE__*/ createWrapper(getReactWrapperOptions("arcgis-legend", {
|
|
148
150
|
onArcgisPropertyChange: "arcgisPropertyChange",
|
|
149
151
|
onArcgisReady: "arcgisReady",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/map-components-react",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.34.0-next.0",
|
|
4
4
|
"description": "A set of React components that wrap ArcGIS map components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ArcGIS",
|
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
],
|
|
30
30
|
"license": "SEE LICENSE.md",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@arcgis/map-components": "4.
|
|
33
|
-
"@esri/calcite-components": "^3.2.0
|
|
34
|
-
"@lit/react": "^1.0.
|
|
35
|
-
"tslib": "^2.
|
|
32
|
+
"@arcgis/map-components": "4.34.0-next.0",
|
|
33
|
+
"@esri/calcite-components": "^3.2.0",
|
|
34
|
+
"@lit/react": "^1.0.7",
|
|
35
|
+
"tslib": "^2.8.1"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"@arcgis/core": ">=4.33.0-next <4.34",
|
|
39
|
-
"react": ">=18.0.0 <
|
|
40
|
-
"react-dom": ">=18.0.0 <
|
|
39
|
+
"react": ">=18.0.0 <20.0.0",
|
|
40
|
+
"react-dom": ">=18.0.0 <20.0.0"
|
|
41
41
|
}
|
|
42
42
|
}
|