@arcgis/map-components-react 5.0.0-next.4 → 5.0.0-next.6
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 +6 -0
- package/dist/index.js +33 -27
- package/package.json +3 -3
package/dist/components.d.ts
CHANGED
|
@@ -229,6 +229,7 @@ export declare const ArcgisLineOfSight: import('@lit/react').ReactWebComponent<H
|
|
|
229
229
|
export declare const ArcgisLinkChart: import('@lit/react').ReactWebComponent<HTMLArcgisLinkChartElement & {
|
|
230
230
|
class?: string;
|
|
231
231
|
}, {
|
|
232
|
+
onArcgisLoadError: EventName<HTMLArcgisLinkChartElement["arcgisLoadError"]>;
|
|
232
233
|
onArcgisViewAnalysisViewCreate: EventName<HTMLArcgisLinkChartElement["arcgisViewAnalysisViewCreate"]>;
|
|
233
234
|
onArcgisViewAnalysisViewCreateError: EventName<HTMLArcgisLinkChartElement["arcgisViewAnalysisViewCreateError"]>;
|
|
234
235
|
onArcgisViewAnalysisViewDestroy: EventName<HTMLArcgisLinkChartElement["arcgisViewAnalysisViewDestroy"]>;
|
|
@@ -251,6 +252,7 @@ export declare const ArcgisLinkChart: import('@lit/react').ReactWebComponent<HTM
|
|
|
251
252
|
onArcgisViewPointerMove: EventName<HTMLArcgisLinkChartElement["arcgisViewPointerMove"]>;
|
|
252
253
|
onArcgisViewPointerUp: EventName<HTMLArcgisLinkChartElement["arcgisViewPointerUp"]>;
|
|
253
254
|
onArcgisViewReadyChange: EventName<HTMLArcgisLinkChartElement["arcgisViewReadyChange"]>;
|
|
255
|
+
onArcgisViewReadyError: EventName<HTMLArcgisLinkChartElement["arcgisViewReadyError"]>;
|
|
254
256
|
}>;
|
|
255
257
|
export declare const ArcgisLinkChartLayoutSwitcher: import('@lit/react').ReactWebComponent<HTMLArcgisLinkChartLayoutSwitcherElement & {
|
|
256
258
|
class?: string;
|
|
@@ -270,6 +272,7 @@ export declare const ArcgisLocate: import('@lit/react').ReactWebComponent<HTMLAr
|
|
|
270
272
|
export declare const ArcgisMap: import('@lit/react').ReactWebComponent<HTMLArcgisMapElement & {
|
|
271
273
|
class?: string;
|
|
272
274
|
}, {
|
|
275
|
+
onArcgisLoadError: EventName<HTMLArcgisMapElement["arcgisLoadError"]>;
|
|
273
276
|
onArcgisViewAnalysisViewCreate: EventName<HTMLArcgisMapElement["arcgisViewAnalysisViewCreate"]>;
|
|
274
277
|
onArcgisViewAnalysisViewCreateError: EventName<HTMLArcgisMapElement["arcgisViewAnalysisViewCreateError"]>;
|
|
275
278
|
onArcgisViewAnalysisViewDestroy: EventName<HTMLArcgisMapElement["arcgisViewAnalysisViewDestroy"]>;
|
|
@@ -292,6 +295,7 @@ export declare const ArcgisMap: import('@lit/react').ReactWebComponent<HTMLArcgi
|
|
|
292
295
|
onArcgisViewPointerMove: EventName<HTMLArcgisMapElement["arcgisViewPointerMove"]>;
|
|
293
296
|
onArcgisViewPointerUp: EventName<HTMLArcgisMapElement["arcgisViewPointerUp"]>;
|
|
294
297
|
onArcgisViewReadyChange: EventName<HTMLArcgisMapElement["arcgisViewReadyChange"]>;
|
|
298
|
+
onArcgisViewReadyError: EventName<HTMLArcgisMapElement["arcgisViewReadyError"]>;
|
|
295
299
|
}>;
|
|
296
300
|
export declare const ArcgisMeasurement: import('@lit/react').ReactWebComponent<HTMLArcgisMeasurementElement & {
|
|
297
301
|
class?: string;
|
|
@@ -346,6 +350,7 @@ export declare const ArcgisScaleRangeSlider: import('@lit/react').ReactWebCompon
|
|
|
346
350
|
export declare const ArcgisScene: import('@lit/react').ReactWebComponent<HTMLArcgisSceneElement & {
|
|
347
351
|
class?: string;
|
|
348
352
|
}, {
|
|
353
|
+
onArcgisLoadError: EventName<HTMLArcgisSceneElement["arcgisLoadError"]>;
|
|
349
354
|
onArcgisViewAnalysisViewCreate: EventName<HTMLArcgisSceneElement["arcgisViewAnalysisViewCreate"]>;
|
|
350
355
|
onArcgisViewAnalysisViewCreateError: EventName<HTMLArcgisSceneElement["arcgisViewAnalysisViewCreateError"]>;
|
|
351
356
|
onArcgisViewAnalysisViewDestroy: EventName<HTMLArcgisSceneElement["arcgisViewAnalysisViewDestroy"]>;
|
|
@@ -368,6 +373,7 @@ export declare const ArcgisScene: import('@lit/react').ReactWebComponent<HTMLArc
|
|
|
368
373
|
onArcgisViewPointerMove: EventName<HTMLArcgisSceneElement["arcgisViewPointerMove"]>;
|
|
369
374
|
onArcgisViewPointerUp: EventName<HTMLArcgisSceneElement["arcgisViewPointerUp"]>;
|
|
370
375
|
onArcgisViewReadyChange: EventName<HTMLArcgisSceneElement["arcgisViewReadyChange"]>;
|
|
376
|
+
onArcgisViewReadyError: EventName<HTMLArcgisSceneElement["arcgisViewReadyError"]>;
|
|
371
377
|
}>;
|
|
372
378
|
export declare const ArcgisSearch: import('@lit/react').ReactWebComponent<HTMLArcgisSearchElement & {
|
|
373
379
|
class?: string;
|
package/dist/index.js
CHANGED
|
@@ -33,7 +33,7 @@ const e = /* @__PURE__ */ s(i, a), n = /* @__PURE__ */ e(
|
|
|
33
33
|
onArcgisReady: "arcgisReady"
|
|
34
34
|
}
|
|
35
35
|
)
|
|
36
|
-
),
|
|
36
|
+
), d = /* @__PURE__ */ e(
|
|
37
37
|
r(
|
|
38
38
|
"arcgis-basemap-layer-list",
|
|
39
39
|
{
|
|
@@ -43,7 +43,7 @@ const e = /* @__PURE__ */ s(i, a), n = /* @__PURE__ */ e(
|
|
|
43
43
|
onArcgisTriggerAction: "arcgisTriggerAction"
|
|
44
44
|
}
|
|
45
45
|
)
|
|
46
|
-
),
|
|
46
|
+
), l = /* @__PURE__ */ e(
|
|
47
47
|
r(
|
|
48
48
|
"arcgis-basemap-toggle",
|
|
49
49
|
{
|
|
@@ -51,7 +51,7 @@ const e = /* @__PURE__ */ s(i, a), n = /* @__PURE__ */ e(
|
|
|
51
51
|
onArcgisReady: "arcgisReady"
|
|
52
52
|
}
|
|
53
53
|
)
|
|
54
|
-
),
|
|
54
|
+
), C = /* @__PURE__ */ e(
|
|
55
55
|
r(
|
|
56
56
|
"arcgis-bookmarks",
|
|
57
57
|
{
|
|
@@ -96,7 +96,7 @@ const e = /* @__PURE__ */ s(i, a), n = /* @__PURE__ */ e(
|
|
|
96
96
|
onArcgisReady: "arcgisReady"
|
|
97
97
|
}
|
|
98
98
|
)
|
|
99
|
-
),
|
|
99
|
+
), R = /* @__PURE__ */ e(
|
|
100
100
|
r(
|
|
101
101
|
"arcgis-daylight",
|
|
102
102
|
{
|
|
@@ -104,7 +104,7 @@ const e = /* @__PURE__ */ s(i, a), n = /* @__PURE__ */ e(
|
|
|
104
104
|
onArcgisUserDateTimeChange: "arcgisUserDateTimeChange"
|
|
105
105
|
}
|
|
106
106
|
)
|
|
107
|
-
),
|
|
107
|
+
), P = /* @__PURE__ */ e(
|
|
108
108
|
r(
|
|
109
109
|
"arcgis-directional-pad",
|
|
110
110
|
{
|
|
@@ -170,7 +170,7 @@ const e = /* @__PURE__ */ s(i, a), n = /* @__PURE__ */ e(
|
|
|
170
170
|
onArcgisReady: "arcgisReady"
|
|
171
171
|
}
|
|
172
172
|
)
|
|
173
|
-
),
|
|
173
|
+
), E = /* @__PURE__ */ e(
|
|
174
174
|
r(
|
|
175
175
|
"arcgis-expand",
|
|
176
176
|
{
|
|
@@ -178,7 +178,7 @@ const e = /* @__PURE__ */ s(i, a), n = /* @__PURE__ */ e(
|
|
|
178
178
|
onArcgisReady: "arcgisReady"
|
|
179
179
|
}
|
|
180
180
|
)
|
|
181
|
-
),
|
|
181
|
+
), T = /* @__PURE__ */ e(
|
|
182
182
|
r(
|
|
183
183
|
"arcgis-feature",
|
|
184
184
|
{
|
|
@@ -299,6 +299,7 @@ const e = /* @__PURE__ */ s(i, a), n = /* @__PURE__ */ e(
|
|
|
299
299
|
r(
|
|
300
300
|
"arcgis-link-chart",
|
|
301
301
|
{
|
|
302
|
+
onArcgisLoadError: "arcgisLoadError",
|
|
302
303
|
onArcgisViewAnalysisViewCreate: "arcgisViewAnalysisViewCreate",
|
|
303
304
|
onArcgisViewAnalysisViewCreateError: "arcgisViewAnalysisViewCreateError",
|
|
304
305
|
onArcgisViewAnalysisViewDestroy: "arcgisViewAnalysisViewDestroy",
|
|
@@ -320,7 +321,8 @@ const e = /* @__PURE__ */ s(i, a), n = /* @__PURE__ */ e(
|
|
|
320
321
|
onArcgisViewPointerLeave: "arcgisViewPointerLeave",
|
|
321
322
|
onArcgisViewPointerMove: "arcgisViewPointerMove",
|
|
322
323
|
onArcgisViewPointerUp: "arcgisViewPointerUp",
|
|
323
|
-
onArcgisViewReadyChange: "arcgisViewReadyChange"
|
|
324
|
+
onArcgisViewReadyChange: "arcgisViewReadyChange",
|
|
325
|
+
onArcgisViewReadyError: "arcgisViewReadyError"
|
|
324
326
|
}
|
|
325
327
|
)
|
|
326
328
|
), O = /* @__PURE__ */ e(
|
|
@@ -346,6 +348,7 @@ const e = /* @__PURE__ */ s(i, a), n = /* @__PURE__ */ e(
|
|
|
346
348
|
r(
|
|
347
349
|
"arcgis-map",
|
|
348
350
|
{
|
|
351
|
+
onArcgisLoadError: "arcgisLoadError",
|
|
349
352
|
onArcgisViewAnalysisViewCreate: "arcgisViewAnalysisViewCreate",
|
|
350
353
|
onArcgisViewAnalysisViewCreateError: "arcgisViewAnalysisViewCreateError",
|
|
351
354
|
onArcgisViewAnalysisViewDestroy: "arcgisViewAnalysisViewDestroy",
|
|
@@ -367,7 +370,8 @@ const e = /* @__PURE__ */ s(i, a), n = /* @__PURE__ */ e(
|
|
|
367
370
|
onArcgisViewPointerLeave: "arcgisViewPointerLeave",
|
|
368
371
|
onArcgisViewPointerMove: "arcgisViewPointerMove",
|
|
369
372
|
onArcgisViewPointerUp: "arcgisViewPointerUp",
|
|
370
|
-
onArcgisViewReadyChange: "arcgisViewReadyChange"
|
|
373
|
+
onArcgisViewReadyChange: "arcgisViewReadyChange",
|
|
374
|
+
onArcgisViewReadyError: "arcgisViewReadyError"
|
|
371
375
|
}
|
|
372
376
|
)
|
|
373
377
|
), j = /* @__PURE__ */ e(
|
|
@@ -440,6 +444,7 @@ const e = /* @__PURE__ */ s(i, a), n = /* @__PURE__ */ e(
|
|
|
440
444
|
r(
|
|
441
445
|
"arcgis-scene",
|
|
442
446
|
{
|
|
447
|
+
onArcgisLoadError: "arcgisLoadError",
|
|
443
448
|
onArcgisViewAnalysisViewCreate: "arcgisViewAnalysisViewCreate",
|
|
444
449
|
onArcgisViewAnalysisViewCreateError: "arcgisViewAnalysisViewCreateError",
|
|
445
450
|
onArcgisViewAnalysisViewDestroy: "arcgisViewAnalysisViewDestroy",
|
|
@@ -461,7 +466,8 @@ const e = /* @__PURE__ */ s(i, a), n = /* @__PURE__ */ e(
|
|
|
461
466
|
onArcgisViewPointerLeave: "arcgisViewPointerLeave",
|
|
462
467
|
onArcgisViewPointerMove: "arcgisViewPointerMove",
|
|
463
468
|
onArcgisViewPointerUp: "arcgisViewPointerUp",
|
|
464
|
-
onArcgisViewReadyChange: "arcgisViewReadyChange"
|
|
469
|
+
onArcgisViewReadyChange: "arcgisViewReadyChange",
|
|
470
|
+
onArcgisViewReadyError: "arcgisViewReadyError"
|
|
465
471
|
}
|
|
466
472
|
)
|
|
467
473
|
), er = /* @__PURE__ */ e(
|
|
@@ -568,7 +574,7 @@ const e = /* @__PURE__ */ s(i, a), n = /* @__PURE__ */ e(
|
|
|
568
574
|
onArcgisReady: "arcgisReady"
|
|
569
575
|
}
|
|
570
576
|
)
|
|
571
|
-
),
|
|
577
|
+
), dr = /* @__PURE__ */ e(
|
|
572
578
|
r(
|
|
573
579
|
"arcgis-utility-network-trace",
|
|
574
580
|
{
|
|
@@ -581,7 +587,7 @@ const e = /* @__PURE__ */ s(i, a), n = /* @__PURE__ */ e(
|
|
|
581
587
|
onArcgisRemoveResultArea: "arcgisRemoveResultArea"
|
|
582
588
|
}
|
|
583
589
|
)
|
|
584
|
-
),
|
|
590
|
+
), lr = /* @__PURE__ */ e(
|
|
585
591
|
r(
|
|
586
592
|
"arcgis-utility-network-trace-analysis",
|
|
587
593
|
{
|
|
@@ -589,7 +595,7 @@ const e = /* @__PURE__ */ s(i, a), n = /* @__PURE__ */ e(
|
|
|
589
595
|
onArcgisReady: "arcgisReady"
|
|
590
596
|
}
|
|
591
597
|
)
|
|
592
|
-
),
|
|
598
|
+
), Cr = /* @__PURE__ */ e(
|
|
593
599
|
r(
|
|
594
600
|
"arcgis-utility-network-result-feature-list",
|
|
595
601
|
{
|
|
@@ -632,7 +638,7 @@ const e = /* @__PURE__ */ s(i, a), n = /* @__PURE__ */ e(
|
|
|
632
638
|
onArcgisReady: "arcgisReady"
|
|
633
639
|
}
|
|
634
640
|
)
|
|
635
|
-
),
|
|
641
|
+
), Rr = /* @__PURE__ */ e(
|
|
636
642
|
r(
|
|
637
643
|
"arcgis-version-management",
|
|
638
644
|
{
|
|
@@ -640,7 +646,7 @@ const e = /* @__PURE__ */ s(i, a), n = /* @__PURE__ */ e(
|
|
|
640
646
|
onArcgisVersioningStateChanged: "arcgisVersioningStateChanged"
|
|
641
647
|
}
|
|
642
648
|
)
|
|
643
|
-
),
|
|
649
|
+
), Pr = /* @__PURE__ */ e(
|
|
644
650
|
r(
|
|
645
651
|
"arcgis-video",
|
|
646
652
|
{
|
|
@@ -678,24 +684,24 @@ export {
|
|
|
678
684
|
t as ArcgisAreaMeasurement3d,
|
|
679
685
|
A as ArcgisAttachments,
|
|
680
686
|
y as ArcgisBasemapGallery,
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
687
|
+
d as ArcgisBasemapLayerList,
|
|
688
|
+
l as ArcgisBasemapToggle,
|
|
689
|
+
C as ArcgisBookmarks,
|
|
684
690
|
w as ArcgisBuildingExplorer,
|
|
685
691
|
p as ArcgisCatalogLayerList,
|
|
686
692
|
h as ArcgisCompass,
|
|
687
693
|
V as ArcgisCoordinateConversion,
|
|
688
|
-
|
|
694
|
+
R as ArcgisDaylight,
|
|
689
695
|
u as ArcgisDirectLineMeasurement3d,
|
|
690
|
-
|
|
696
|
+
P as ArcgisDirectionalPad,
|
|
691
697
|
m as ArcgisDirections,
|
|
692
698
|
k as ArcgisDirectlineMeasurement3d,
|
|
693
699
|
S as ArcgisDistanceMeasurement2d,
|
|
694
700
|
v as ArcgisEditor,
|
|
695
701
|
D as ArcgisElevationProfile,
|
|
696
702
|
L as ArcgisElevationProfileNext,
|
|
697
|
-
|
|
698
|
-
|
|
703
|
+
E as ArcgisExpand,
|
|
704
|
+
T as ArcgisFeature,
|
|
699
705
|
U as ArcgisFeatureForm,
|
|
700
706
|
b as ArcgisFeatureTable,
|
|
701
707
|
M as ArcgisFeatureTemplates,
|
|
@@ -732,15 +738,15 @@ export {
|
|
|
732
738
|
tr as ArcgisTimeZoneLabel,
|
|
733
739
|
Ar as ArcgisTrack,
|
|
734
740
|
yr as ArcgisUtilityNetworkAssociations,
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
741
|
+
Cr as ArcgisUtilityNetworkResultFeatureList,
|
|
742
|
+
dr as ArcgisUtilityNetworkTrace,
|
|
743
|
+
lr as ArcgisUtilityNetworkTraceAnalysis,
|
|
738
744
|
wr as ArcgisUtilityNetworkTraceInputs,
|
|
739
745
|
pr as ArcgisUtilityNetworkTraceResults,
|
|
740
746
|
hr as ArcgisUtilityNetworkValidateTopology,
|
|
741
747
|
Vr as ArcgisValuePicker,
|
|
742
|
-
|
|
743
|
-
|
|
748
|
+
Rr as ArcgisVersionManagement,
|
|
749
|
+
Pr as ArcgisVideo,
|
|
744
750
|
mr as ArcgisVideoPlayer,
|
|
745
751
|
ur as ArcgisWeather,
|
|
746
752
|
kr as ArcgisZoom
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/map-components-react",
|
|
3
|
-
"version": "5.0.0-next.
|
|
3
|
+
"version": "5.0.0-next.6",
|
|
4
4
|
"description": "A set of React components that wrap ArcGIS map components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ArcGIS",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
],
|
|
30
30
|
"license": "SEE LICENSE.md",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@arcgis/lumina": "5.0.0-next.
|
|
33
|
-
"@arcgis/map-components": "5.0.0-next.
|
|
32
|
+
"@arcgis/lumina": "5.0.0-next.6",
|
|
33
|
+
"@arcgis/map-components": "5.0.0-next.6",
|
|
34
34
|
"@esri/calcite-components": "^3.3.0",
|
|
35
35
|
"@lit/react": "^1.0.7",
|
|
36
36
|
"lit": "^3.3.0",
|