@arcgis/charts-components-react 4.31.0-next.7 → 4.31.0-next.71
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
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
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
3
|
|
|
4
4
|
## License
|
|
5
|
-
COPYRIGHT ©
|
|
5
|
+
COPYRIGHT © 2024 Esri
|
|
6
6
|
|
|
7
7
|
All rights reserved under the copyright laws of the United States and applicable international laws, treaties, and conventions.
|
|
8
8
|
|
package/dist/components.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type { JSX } from
|
|
2
|
+
import type { JSX } from '@arcgis/charts-components';
|
|
3
3
|
export declare const ArcgisChartsActionBar: import("react").ForwardRefExoticComponent<JSX.ArcgisChartsActionBar & Omit<import("react").HTMLAttributes<HTMLArcgisChartsActionBarElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLArcgisChartsActionBarElement>>;
|
|
4
4
|
export declare const ArcgisChartsBarChart: import("react").ForwardRefExoticComponent<JSX.ArcgisChartsBarChart & Omit<import("react").HTMLAttributes<HTMLArcgisChartsBarChartElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLArcgisChartsBarChartElement>>;
|
|
5
5
|
export declare const ArcgisChartsBarChartBeta: import("react").ForwardRefExoticComponent<JSX.ArcgisChartsBarChartBeta & Omit<import("react").HTMLAttributes<HTMLArcgisChartsBarChartBetaElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLArcgisChartsBarChartBetaElement>>;
|
|
@@ -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,43 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/charts-components-react",
|
|
3
|
-
"
|
|
4
|
-
"homepage": "https://developers.arcgis.com/javascript/latest/",
|
|
5
|
-
"version": "4.31.0-next.7",
|
|
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.71",
|
|
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": {
|
|
19
|
-
"clean": "rimraf dist node_modules .turbo",
|
|
20
|
-
"compile": "yarn tsc",
|
|
21
|
-
"pre": "rimraf dist && yarn awc patch-jsx-imports",
|
|
22
14
|
"build": "yarn pre && yarn compile",
|
|
23
15
|
"build:production": "yarn build",
|
|
16
|
+
"clean": "rimraf dist node_modules .turbo",
|
|
17
|
+
"compile": "yarn tsc",
|
|
18
|
+
"pre": "rimraf dist",
|
|
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.71"
|
|
28
31
|
},
|
|
29
32
|
"devDependencies": {
|
|
30
|
-
"@arcgis/components-plugins": "
|
|
31
|
-
"@arcgis/core": ">=4.
|
|
33
|
+
"@arcgis/components-plugins": ">=4.31.0-next <4.32",
|
|
34
|
+
"@arcgis/core": ">=4.31.0-next <4.32",
|
|
32
35
|
"@arcgis/typescript-config": "^4.29.2",
|
|
33
36
|
"@types/node": "^20.2.5",
|
|
34
37
|
"@types/react-dom": "^18.2.0",
|
|
35
|
-
"rimraf": "^
|
|
36
|
-
"typescript": "~5.
|
|
38
|
+
"rimraf": "^6.0.1",
|
|
39
|
+
"typescript": "~5.4.0"
|
|
37
40
|
},
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
"react": ">=18.0.0 <19.0.0",
|
|
41
|
-
"react-dom": ">=18.0.0 <19.0.0"
|
|
42
|
-
}
|
|
41
|
+
"types": "dist/index.d.ts",
|
|
42
|
+
"sideEffects": false
|
|
43
43
|
}
|