@arcgis/coding-components-react 4.31.0-next.0 → 4.31.0-next.3

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.
@@ -2,3 +2,4 @@
2
2
  import type { JSX } from '@arcgis/coding-components';
3
3
  export declare const ArcgisArcadeEditor: import("react").ForwardRefExoticComponent<JSX.ArcgisArcadeEditor & Omit<import("react").HTMLAttributes<HTMLArcgisArcadeEditorElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLArcgisArcadeEditorElement>>;
4
4
  export declare const ArcgisCodeEditor: import("react").ForwardRefExoticComponent<JSX.ArcgisCodeEditor & Omit<import("react").HTMLAttributes<HTMLArcgisCodeEditorElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLArcgisCodeEditorElement>>;
5
+ export declare const ArcgisSqlExpressionEditor: import("react").ForwardRefExoticComponent<JSX.ArcgisSqlExpressionEditor & Omit<import("react").HTMLAttributes<HTMLArcgisSqlExpressionEditorElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLArcgisSqlExpressionEditorElement>>;
@@ -4,3 +4,4 @@
4
4
  import { createReactComponent } from './react-component-lib';
5
5
  export const ArcgisArcadeEditor = /*@__PURE__*/ createReactComponent('arcgis-arcade-editor');
6
6
  export const ArcgisCodeEditor = /*@__PURE__*/ createReactComponent('arcgis-code-editor');
7
+ export const ArcgisSqlExpressionEditor = /*@__PURE__*/ createReactComponent('arcgis-sql-expression-editor');
@@ -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/coding-components-react",
3
+ "version": "4.31.0-next.3",
3
4
  "description": "A set of React components that wrap ArcGIS coding components",
4
5
  "homepage": "https://developers.arcgis.com/javascript/latest/",
5
- "version": "4.31.0-next.0",
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,19 +23,19 @@
23
23
  "tsc": "tsc"
24
24
  },
25
25
  "dependencies": {
26
- "@arcgis/coding-components": "4.31.0-next.0"
26
+ "@arcgis/coding-components": "4.31.0-next.3"
27
27
  },
28
28
  "devDependencies": {
29
- "@arcgis/core": ">=4.30.0-next <4.31",
29
+ "@arcgis/core": ">=4.31.0-next <4.32",
30
30
  "@types/node": "^20.2.5",
31
31
  "@types/react-dom": "^18.2.0",
32
32
  "rimraf": "^5.0.0",
33
- "typescript": "~5.3.0"
33
+ "typescript": "~5.4.0"
34
34
  },
35
35
  "peerDependencies": {
36
- "@arcgis/core": ">=4.30.0-next <4.31",
36
+ "@arcgis/core": ">=4.31.0-next <4.32",
37
37
  "react": ">=18.0.0 <19.0.0",
38
38
  "react-dom": ">=18.0.0 <19.0.0"
39
39
  },
40
- "gitHead": "e1e009c091fe13c435e452a1796eb563e0a59cb9"
40
+ "gitHead": "63a9aef32ef641ed5524f9218c8497be9e7095e2"
41
41
  }