@arcgis/map-components-react 4.33.0-next.5 → 4.33.0-next.7
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 -0
- package/dist/components.js +5 -0
- package/package.json +2 -2
package/dist/components.d.ts
CHANGED
|
@@ -228,6 +228,13 @@ export declare const ArcgisLinkChart: import("@lit/react").ReactWebComponent<HTM
|
|
|
228
228
|
onArcgisViewPointerUp: EventName<HTMLArcgisLinkChartElement["arcgisViewPointerUp"]>;
|
|
229
229
|
onArcgisViewReadyChange: EventName<HTMLArcgisLinkChartElement["arcgisViewReadyChange"]>;
|
|
230
230
|
}>;
|
|
231
|
+
export declare const ArcgisLinkChartLayoutSwitcher: import("@lit/react").ReactWebComponent<HTMLArcgisLinkChartLayoutSwitcherElement & {
|
|
232
|
+
class?: string;
|
|
233
|
+
}, {
|
|
234
|
+
onArcgisPropertyChange: EventName<HTMLArcgisLinkChartLayoutSwitcherElement["arcgisPropertyChange"]>;
|
|
235
|
+
onArcgisReady: EventName<HTMLArcgisLinkChartLayoutSwitcherElement["arcgisReady"]>;
|
|
236
|
+
onArcgisSwitchLayout: EventName<HTMLArcgisLinkChartLayoutSwitcherElement["arcgisSwitchLayout"]>;
|
|
237
|
+
}>;
|
|
231
238
|
export declare const ArcgisLocate: import("@lit/react").ReactWebComponent<HTMLArcgisLocateElement & {
|
|
232
239
|
class?: string;
|
|
233
240
|
}, {
|
package/dist/components.js
CHANGED
|
@@ -165,6 +165,11 @@ export const ArcgisLinkChart = /*@__PURE__*/ createWrapper(getReactWrapperOption
|
|
|
165
165
|
onArcgisViewPointerUp: "arcgisViewPointerUp",
|
|
166
166
|
onArcgisViewReadyChange: "arcgisViewReadyChange",
|
|
167
167
|
}));
|
|
168
|
+
export const ArcgisLinkChartLayoutSwitcher = /*@__PURE__*/ createWrapper(getReactWrapperOptions("arcgis-link-chart-layout-switcher", {
|
|
169
|
+
onArcgisPropertyChange: "arcgisPropertyChange",
|
|
170
|
+
onArcgisReady: "arcgisReady",
|
|
171
|
+
onArcgisSwitchLayout: "arcgisSwitchLayout",
|
|
172
|
+
}));
|
|
168
173
|
export const ArcgisLocate = /*@__PURE__*/ createWrapper(getReactWrapperOptions("arcgis-locate", {
|
|
169
174
|
onArcgisError: "arcgisError",
|
|
170
175
|
onArcgisPropertyChange: "arcgisPropertyChange",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/map-components-react",
|
|
3
|
-
"version": "4.33.0-next.
|
|
3
|
+
"version": "4.33.0-next.7",
|
|
4
4
|
"description": "A set of React components that wrap ArcGIS map components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ArcGIS",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
],
|
|
30
30
|
"license": "SEE LICENSE.md",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@arcgis/map-components": "4.33.0-next.
|
|
32
|
+
"@arcgis/map-components": "4.33.0-next.7",
|
|
33
33
|
"@esri/calcite-components": "~3.0.0-next",
|
|
34
34
|
"@lit/react": "^1.0.5",
|
|
35
35
|
"tslib": "^2.7.0"
|