@arcgis/charts-components-react 4.31.0-next.9 → 4.31.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.
package/LICENSE.md
CHANGED
package/README.md
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
|
-
#
|
|
1
|
+
# ArcGIS Maps SDK for JavaScript - Charts components - React wrapper (beta)
|
|
2
|
+
|
|
3
|
+
**No Esri Technical Support during beta.**
|
|
4
|
+
|
|
2
5
|
This Web Component package is part of the ArcGIS Maps SDK for JavaScript and is under active development. At this time, customer support is not provided. More news to come.
|
|
3
6
|
|
|
4
7
|
## License
|
|
5
|
-
|
|
8
|
+
|
|
9
|
+
COPYRIGHT © 2024 Esri
|
|
6
10
|
|
|
7
11
|
All rights reserved under the copyright laws of the United States and applicable international laws, treaties, and conventions.
|
|
8
12
|
|
|
9
13
|
This material is licensed for use under the Esri Master License Agreement (MLA), and is bound by the terms of that agreement. You may redistribute and use this code without modification, provided you adhere to the terms of the MLA and include this copyright notice.
|
|
10
14
|
|
|
11
|
-
See use restrictions at http://www.esri.com/legal/pdfs/mla_e204_e300/english
|
|
15
|
+
See use restrictions at <http://www.esri.com/legal/pdfs/mla_e204_e300/english>
|
|
12
16
|
|
|
13
17
|
For additional information, contact: Environmental Systems Research Institute, Inc. Attn: Contracts and Legal Services Department 380 New York Street Redlands, California, USA 92373 USA
|
|
14
18
|
|
package/dist/components.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export declare const ArcgisChartsBoxPlot: import("react").ForwardRefExoticCompon
|
|
|
8
8
|
export declare const ArcgisChartsGauge: import("react").ForwardRefExoticComponent<JSX.ArcgisChartsGauge & Omit<import("react").HTMLAttributes<HTMLArcgisChartsGaugeElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLArcgisChartsGaugeElement>>;
|
|
9
9
|
export declare const ArcgisChartsHistogram: import("react").ForwardRefExoticComponent<JSX.ArcgisChartsHistogram & Omit<import("react").HTMLAttributes<HTMLArcgisChartsHistogramElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLArcgisChartsHistogramElement>>;
|
|
10
10
|
export declare const ArcgisChartsLineChart: import("react").ForwardRefExoticComponent<JSX.ArcgisChartsLineChart & Omit<import("react").HTMLAttributes<HTMLArcgisChartsLineChartElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLArcgisChartsLineChartElement>>;
|
|
11
|
+
export declare const ArcgisChartsLineChartBeta: import("react").ForwardRefExoticComponent<JSX.ArcgisChartsLineChartBeta & Omit<import("react").HTMLAttributes<HTMLArcgisChartsLineChartBetaElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLArcgisChartsLineChartBetaElement>>;
|
|
11
12
|
export declare const ArcgisChartsPieChart: import("react").ForwardRefExoticComponent<JSX.ArcgisChartsPieChart & Omit<import("react").HTMLAttributes<HTMLArcgisChartsPieChartElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLArcgisChartsPieChartElement>>;
|
|
12
13
|
export declare const ArcgisChartsScatterPlot: import("react").ForwardRefExoticComponent<JSX.ArcgisChartsScatterPlot & Omit<import("react").HTMLAttributes<HTMLArcgisChartsScatterPlotElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLArcgisChartsScatterPlotElement>>;
|
|
13
14
|
export declare const ArcgisChartsScatterPlotBeta: import("react").ForwardRefExoticComponent<JSX.ArcgisChartsScatterPlotBeta & Omit<import("react").HTMLAttributes<HTMLArcgisChartsScatterPlotBetaElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLArcgisChartsScatterPlotBetaElement>>;
|
package/dist/components.js
CHANGED
|
@@ -10,6 +10,7 @@ export const ArcgisChartsBoxPlot = /*@__PURE__*/ createReactComponent('arcgis-ch
|
|
|
10
10
|
export const ArcgisChartsGauge = /*@__PURE__*/ createReactComponent('arcgis-charts-gauge');
|
|
11
11
|
export const ArcgisChartsHistogram = /*@__PURE__*/ createReactComponent('arcgis-charts-histogram');
|
|
12
12
|
export const ArcgisChartsLineChart = /*@__PURE__*/ createReactComponent('arcgis-charts-line-chart');
|
|
13
|
+
export const ArcgisChartsLineChartBeta = /*@__PURE__*/ createReactComponent('arcgis-charts-line-chart-beta');
|
|
13
14
|
export const ArcgisChartsPieChart = /*@__PURE__*/ createReactComponent('arcgis-charts-pie-chart');
|
|
14
15
|
export const ArcgisChartsScatterPlot = /*@__PURE__*/ createReactComponent('arcgis-charts-scatter-plot');
|
|
15
16
|
export const ArcgisChartsScatterPlotBeta = /*@__PURE__*/ createReactComponent('arcgis-charts-scatter-plot-beta');
|
|
@@ -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
|
|
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
|
-
}
|
|
16
|
-
}, eventName: string, newEventHandler?: (
|
|
15
|
+
};
|
|
16
|
+
}, eventName: string, newEventHandler?: (e: Event) => any) => void;
|
package/package.json
CHANGED
|
@@ -1,43 +1,45 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/charts-components-react",
|
|
3
|
-
"
|
|
4
|
-
"homepage": "https://developers.arcgis.com/javascript/latest/",
|
|
5
|
-
"version": "4.31.0-next.9",
|
|
6
|
-
"sideEffects": false,
|
|
7
|
-
"module": "dist/index.js",
|
|
8
|
-
"main": "dist/index.js",
|
|
9
|
-
"types": "dist/index.d.ts",
|
|
10
|
-
"files": [
|
|
11
|
-
"dist/"
|
|
12
|
-
],
|
|
13
|
-
"license": "SEE LICENSE.md",
|
|
3
|
+
"version": "4.31.0-next.91",
|
|
14
4
|
"publishConfig": {
|
|
15
5
|
"registry": "https://registry.npmjs.org/",
|
|
16
6
|
"access": "public"
|
|
17
7
|
},
|
|
8
|
+
"description": "A set of React components that wrap ArcGIS charts components",
|
|
9
|
+
"license": "SEE LICENSE.md",
|
|
10
|
+
"homepage": "https://developers.arcgis.com/javascript/latest/",
|
|
11
|
+
"main": "dist/index.js",
|
|
12
|
+
"module": "dist/index.js",
|
|
18
13
|
"scripts": {
|
|
14
|
+
"build": "yarn pre && yarn compile",
|
|
15
|
+
"build:production": "yarn build",
|
|
19
16
|
"clean": "rimraf dist node_modules .turbo",
|
|
20
17
|
"compile": "yarn tsc",
|
|
21
18
|
"pre": "rimraf dist",
|
|
22
|
-
"build": "yarn pre && yarn compile",
|
|
23
|
-
"build:production": "yarn build",
|
|
24
19
|
"tsc": "tsc"
|
|
25
20
|
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist/"
|
|
23
|
+
],
|
|
24
|
+
"peerDependencies": {
|
|
25
|
+
"@arcgis/core": ">=4.31.0-next <4.32",
|
|
26
|
+
"react": ">=18.0.0 <19.0.0",
|
|
27
|
+
"react-dom": ">=18.0.0 <19.0.0"
|
|
28
|
+
},
|
|
26
29
|
"dependencies": {
|
|
27
|
-
"@arcgis/charts-components": "4.31.0-next.
|
|
30
|
+
"@arcgis/charts-components": "4.31.0-next.91",
|
|
31
|
+
"@arcgis/charts-shared-utils": "4.31.0-next.91",
|
|
32
|
+
"@arcgis/charts-spec": "4.31.0-next.91"
|
|
28
33
|
},
|
|
29
34
|
"devDependencies": {
|
|
30
|
-
"@arcgis/components-plugins": "
|
|
31
|
-
"@arcgis/core": ">=4.
|
|
35
|
+
"@arcgis/components-plugins": ">=4.31.0-next <4.32",
|
|
36
|
+
"@arcgis/core": ">=4.31.0-next <4.32",
|
|
32
37
|
"@arcgis/typescript-config": "^4.29.2",
|
|
33
38
|
"@types/node": "^20.2.5",
|
|
34
39
|
"@types/react-dom": "^18.2.0",
|
|
35
|
-
"rimraf": "^
|
|
36
|
-
"typescript": "~5.
|
|
40
|
+
"rimraf": "^6.0.1",
|
|
41
|
+
"typescript": "~5.4.0"
|
|
37
42
|
},
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
"react": ">=18.0.0 <19.0.0",
|
|
41
|
-
"react-dom": ">=18.0.0 <19.0.0"
|
|
42
|
-
}
|
|
43
|
+
"types": "dist/index.d.ts",
|
|
44
|
+
"sideEffects": false
|
|
43
45
|
}
|