@arcgis/map-components-react 4.33.0-next.90 → 4.33.0-next.91

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.
@@ -344,17 +344,20 @@ export declare const ArcgisScene: import("@lit/react").ReactWebComponent<HTMLArc
344
344
  export declare const ArcgisSearch: import("@lit/react").ReactWebComponent<HTMLArcgisSearchElement & {
345
345
  class?: string;
346
346
  }, {
347
- onArcgisBlur: EventName<HTMLArcgisSearchElement["arcgisBlur"]>;
348
- onArcgisClear: EventName<HTMLArcgisSearchElement["arcgisClear"]>;
349
- onArcgisComplete: EventName<HTMLArcgisSearchElement["arcgisComplete"]>;
350
- onArcgisFocus: EventName<HTMLArcgisSearchElement["arcgisFocus"]>;
351
347
  onArcgisPropertyChange: EventName<HTMLArcgisSearchElement["arcgisPropertyChange"]>;
352
348
  onArcgisReady: EventName<HTMLArcgisSearchElement["arcgisReady"]>;
349
+ onArcgisSearchClear: EventName<HTMLArcgisSearchElement["arcgisSearchClear"]>;
350
+ onArcgisSearchComplete: EventName<HTMLArcgisSearchElement["arcgisSearchComplete"]>;
351
+ onArcgisSearchStart: EventName<HTMLArcgisSearchElement["arcgisSearchStart"]>;
353
352
  onArcgisSelectResult: EventName<HTMLArcgisSearchElement["arcgisSelectResult"]>;
354
- onArcgisStart: EventName<HTMLArcgisSearchElement["arcgisStart"]>;
355
353
  onArcgisSuggestComplete: EventName<HTMLArcgisSearchElement["arcgisSuggestComplete"]>;
356
354
  onArcgisSuggestStart: EventName<HTMLArcgisSearchElement["arcgisSuggestStart"]>;
357
355
  }>;
356
+ export declare const ArcgisSearchResultRenderer: import("@lit/react").ReactWebComponent<HTMLArcgisSearchResultRendererElement & {
357
+ class?: string;
358
+ }, {
359
+ onArcgisReady: EventName<HTMLArcgisSearchResultRendererElement["arcgisReady"]>;
360
+ }>;
358
361
  export declare const ArcgisShadowCast: import("@lit/react").ReactWebComponent<HTMLArcgisShadowCastElement & {
359
362
  class?: string;
360
363
  }, {
@@ -255,17 +255,18 @@ export const ArcgisScene = /*@__PURE__*/ createWrapper(getReactWrapperOptions("a
255
255
  onArcgisViewReadyChange: "arcgisViewReadyChange",
256
256
  }));
257
257
  export const ArcgisSearch = /*@__PURE__*/ createWrapper(getReactWrapperOptions("arcgis-search", {
258
- onArcgisBlur: "arcgisBlur",
259
- onArcgisClear: "arcgisClear",
260
- onArcgisComplete: "arcgisComplete",
261
- onArcgisFocus: "arcgisFocus",
262
258
  onArcgisPropertyChange: "arcgisPropertyChange",
263
259
  onArcgisReady: "arcgisReady",
260
+ onArcgisSearchClear: "arcgisSearchClear",
261
+ onArcgisSearchComplete: "arcgisSearchComplete",
262
+ onArcgisSearchStart: "arcgisSearchStart",
264
263
  onArcgisSelectResult: "arcgisSelectResult",
265
- onArcgisStart: "arcgisStart",
266
264
  onArcgisSuggestComplete: "arcgisSuggestComplete",
267
265
  onArcgisSuggestStart: "arcgisSuggestStart",
268
266
  }));
267
+ export const ArcgisSearchResultRenderer = /*@__PURE__*/ createWrapper(getReactWrapperOptions("arcgis-search-result-renderer", {
268
+ onArcgisReady: "arcgisReady",
269
+ }));
269
270
  export const ArcgisShadowCast = /*@__PURE__*/ createWrapper(getReactWrapperOptions("arcgis-shadow-cast", {
270
271
  onArcgisPropertyChange: "arcgisPropertyChange",
271
272
  onArcgisReady: "arcgisReady",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcgis/map-components-react",
3
- "version": "4.33.0-next.90",
3
+ "version": "4.33.0-next.91",
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/map-components": "4.33.0-next.90",
33
- "@esri/calcite-components": "^3.2.0-next.13",
32
+ "@arcgis/map-components": "4.33.0-next.91",
33
+ "@esri/calcite-components": "^3.2.0-next.15",
34
34
  "@lit/react": "^1.0.5",
35
35
  "tslib": "^2.7.0"
36
36
  },