@arcgis/map-components-react 4.31.0-next.2 → 4.31.0-next.4

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.
@@ -6,5 +6,5 @@ interface StencilReactInternalProps<ElementType> extends React.HTMLAttributes<El
6
6
  forwardedRef: React.RefObject<ElementType>;
7
7
  ref?: React.Ref<any>;
8
8
  }
9
- export declare const createReactComponent: <PropType, ElementType extends HTMLStencilElement, ContextStateType = {}, ExpandedPropsTypes = {}>(tagName: string, ReactComponentContext?: React.Context<ContextStateType> | undefined, manipulatePropsFunction?: ((originalProps: StencilReactInternalProps<ElementType>, propsToPass: any) => ExpandedPropsTypes) | undefined, defineCustomElement?: () => void) => React.ForwardRefExoticComponent<React.PropsWithoutRef<import("./utils").StencilReactExternalProps<PropType, ElementType>> & React.RefAttributes<ElementType>>;
9
+ export declare const createReactComponent: <PropType, ElementType extends HTMLStencilElement, ContextStateType = {}, ExpandedPropsTypes = {}>(tagName: string, ReactComponentContext?: React.Context<ContextStateType>, manipulatePropsFunction?: (originalProps: StencilReactInternalProps<ElementType>, propsToPass: any) => ExpandedPropsTypes, defineCustomElement?: () => void) => React.ForwardRefExoticComponent<React.PropsWithoutRef<import("./utils").StencilReactExternalProps<PropType, ElementType>> & React.RefAttributes<ElementType>>;
10
10
  export {};
@@ -12,5 +12,5 @@ export declare const isCoveredByReact: (eventNameSuffix: string) => boolean;
12
12
  export declare const syncEvent: (node: Element & {
13
13
  __events?: {
14
14
  [key: string]: ((e: Event) => any) | undefined;
15
- } | undefined;
16
- }, eventName: string, newEventHandler?: ((e: Event) => any) | undefined) => void;
15
+ };
16
+ }, eventName: string, newEventHandler?: (e: Event) => any) => void;
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@arcgis/map-components-react",
3
+ "version": "4.31.0-next.4",
3
4
  "description": "A set of React components that wrap ArcGIS map components",
4
5
  "homepage": "https://developers.arcgis.com/javascript/latest/",
5
- "version": "4.31.0-next.2",
6
6
  "sideEffects": false,
7
- "module": "dist/index.js",
8
7
  "main": "dist/index.js",
8
+ "module": "dist/index.js",
9
9
  "types": "dist/index.d.ts",
10
10
  "files": [
11
11
  "dist/"
@@ -23,18 +23,18 @@
23
23
  "tsc": "tsc"
24
24
  },
25
25
  "dependencies": {
26
- "@arcgis/map-components": "4.31.0-next.2"
26
+ "@arcgis/map-components": "4.31.0-next.4"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/node": "^20.2.5",
30
30
  "@types/react-dom": "^18.2.0",
31
31
  "rimraf": "^5.0.0",
32
- "typescript": "~5.3.0"
32
+ "typescript": "~5.4.0"
33
33
  },
34
34
  "peerDependencies": {
35
- "@arcgis/core": ">=4.30.0-next <4.31",
35
+ "@arcgis/core": ">=4.31.0-next <4.32",
36
36
  "react": ">=18.0.0 <19.0.0",
37
37
  "react-dom": ">=18.0.0 <19.0.0"
38
38
  },
39
- "gitHead": "61eee9bc3c28efbda9ecca86026becdf521ee81d"
39
+ "gitHead": "2319692a16fa865e845f79a8e22834cef6cbe5c7"
40
40
  }