@arcgis/map-components-react 4.33.0-next.64 → 4.33.0-next.66
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 +12 -0
- package/dist/components.js +8 -0
- package/package.json +2 -2
package/dist/components.d.ts
CHANGED
|
@@ -405,6 +405,12 @@ export declare const ArcgisTimeSlider: import("@lit/react").ReactWebComponent<HT
|
|
|
405
405
|
onArcgisReady: EventName<HTMLArcgisTimeSliderElement["arcgisReady"]>;
|
|
406
406
|
onArcgisTriggerAction: EventName<HTMLArcgisTimeSliderElement["arcgisTriggerAction"]>;
|
|
407
407
|
}>;
|
|
408
|
+
export declare const ArcgisTimeZoneLabel: import("@lit/react").ReactWebComponent<HTMLArcgisTimeZoneLabelElement & {
|
|
409
|
+
class?: string;
|
|
410
|
+
}, {
|
|
411
|
+
onArcgisPropertyChange: EventName<HTMLArcgisTimeZoneLabelElement["arcgisPropertyChange"]>;
|
|
412
|
+
onArcgisReady: EventName<HTMLArcgisTimeZoneLabelElement["arcgisReady"]>;
|
|
413
|
+
}>;
|
|
408
414
|
export declare const ArcgisTrack: import("@lit/react").ReactWebComponent<HTMLArcgisTrackElement & {
|
|
409
415
|
class?: string;
|
|
410
416
|
}, {
|
|
@@ -452,11 +458,17 @@ export declare const ArcgisVersionManagement: import("@lit/react").ReactWebCompo
|
|
|
452
458
|
onArcgisReady: EventName<HTMLArcgisVersionManagementElement["arcgisReady"]>;
|
|
453
459
|
onArcgisVersioningStateChanged: EventName<HTMLArcgisVersionManagementElement["arcgisVersioningStateChanged"]>;
|
|
454
460
|
}>;
|
|
461
|
+
export declare const ArcgisVideo: import("@lit/react").ReactWebComponent<HTMLArcgisVideoElement & {
|
|
462
|
+
class?: string;
|
|
463
|
+
}, {
|
|
464
|
+
onArcgisViewReadyChange: EventName<HTMLArcgisVideoElement["arcgisViewReadyChange"]>;
|
|
465
|
+
}>;
|
|
455
466
|
export declare const ArcgisVideoPlayer: import("@lit/react").ReactWebComponent<HTMLArcgisVideoPlayerElement & {
|
|
456
467
|
class?: string;
|
|
457
468
|
}, {
|
|
458
469
|
onArcgisPropertyChange: EventName<HTMLArcgisVideoPlayerElement["arcgisPropertyChange"]>;
|
|
459
470
|
onArcgisReady: EventName<HTMLArcgisVideoPlayerElement["arcgisReady"]>;
|
|
471
|
+
onArcgisVideoReady: EventName<HTMLArcgisVideoPlayerElement["arcgisVideoReady"]>;
|
|
460
472
|
}>;
|
|
461
473
|
export declare const ArcgisWeather: import("@lit/react").ReactWebComponent<HTMLArcgisWeatherElement & {
|
|
462
474
|
class?: string;
|
package/dist/components.js
CHANGED
|
@@ -304,6 +304,10 @@ export const ArcgisTimeSlider = /*@__PURE__*/ createWrapper(getReactWrapperOptio
|
|
|
304
304
|
onArcgisReady: "arcgisReady",
|
|
305
305
|
onArcgisTriggerAction: "arcgisTriggerAction",
|
|
306
306
|
}));
|
|
307
|
+
export const ArcgisTimeZoneLabel = /*@__PURE__*/ createWrapper(getReactWrapperOptions("arcgis-time-zone-label", {
|
|
308
|
+
onArcgisPropertyChange: "arcgisPropertyChange",
|
|
309
|
+
onArcgisReady: "arcgisReady",
|
|
310
|
+
}));
|
|
307
311
|
export const ArcgisTrack = /*@__PURE__*/ createWrapper(getReactWrapperOptions("arcgis-track", {
|
|
308
312
|
onArcgisComplete: "arcgisComplete",
|
|
309
313
|
onArcgisError: "arcgisError",
|
|
@@ -339,9 +343,13 @@ export const ArcgisVersionManagement = /*@__PURE__*/ createWrapper(getReactWrapp
|
|
|
339
343
|
onArcgisReady: "arcgisReady",
|
|
340
344
|
onArcgisVersioningStateChanged: "arcgisVersioningStateChanged",
|
|
341
345
|
}));
|
|
346
|
+
export const ArcgisVideo = /*@__PURE__*/ createWrapper(getReactWrapperOptions("arcgis-video", {
|
|
347
|
+
onArcgisViewReadyChange: "arcgisViewReadyChange",
|
|
348
|
+
}));
|
|
342
349
|
export const ArcgisVideoPlayer = /*@__PURE__*/ createWrapper(getReactWrapperOptions("arcgis-video-player", {
|
|
343
350
|
onArcgisPropertyChange: "arcgisPropertyChange",
|
|
344
351
|
onArcgisReady: "arcgisReady",
|
|
352
|
+
onArcgisVideoReady: "arcgisVideoReady",
|
|
345
353
|
}));
|
|
346
354
|
export const ArcgisWeather = /*@__PURE__*/ createWrapper(getReactWrapperOptions("arcgis-weather", {
|
|
347
355
|
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.66",
|
|
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.66",
|
|
33
33
|
"@esri/calcite-components": "^3.0.3",
|
|
34
34
|
"@lit/react": "^1.0.5",
|
|
35
35
|
"tslib": "^2.7.0"
|