@arcgis/charts-components-react 4.30.0-next.8 → 4.30.0
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/dist/components.d.ts +2 -1
- package/dist/components.js +1 -0
- package/package.json +6 -6
- package/CHANGELOG.md +0 -428
package/dist/components.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
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
|
+
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>>;
|
|
5
6
|
export declare const ArcgisChartsBarLineChart: import("react").ForwardRefExoticComponent<JSX.ArcgisChartsBarLineChart & Omit<import("react").HTMLAttributes<HTMLArcgisChartsBarLineChartElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLArcgisChartsBarLineChartElement>>;
|
|
6
7
|
export declare const ArcgisChartsBoxPlot: import("react").ForwardRefExoticComponent<JSX.ArcgisChartsBoxPlot & Omit<import("react").HTMLAttributes<HTMLArcgisChartsBoxPlotElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLArcgisChartsBoxPlotElement>>;
|
|
7
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>>;
|
package/dist/components.js
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
import { createReactComponent } from './react-component-lib';
|
|
5
5
|
export const ArcgisChartsActionBar = /*@__PURE__*/ createReactComponent('arcgis-charts-action-bar');
|
|
6
6
|
export const ArcgisChartsBarChart = /*@__PURE__*/ createReactComponent('arcgis-charts-bar-chart');
|
|
7
|
+
export const ArcgisChartsBarChartBeta = /*@__PURE__*/ createReactComponent('arcgis-charts-bar-chart-beta');
|
|
7
8
|
export const ArcgisChartsBarLineChart = /*@__PURE__*/ createReactComponent('arcgis-charts-bar-line-chart');
|
|
8
9
|
export const ArcgisChartsBoxPlot = /*@__PURE__*/ createReactComponent('arcgis-charts-box-plot');
|
|
9
10
|
export const ArcgisChartsGauge = /*@__PURE__*/ createReactComponent('arcgis-charts-gauge');
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@arcgis/charts-components-react",
|
|
3
3
|
"description": "A set of React components that wrap ArcGIS charts components",
|
|
4
4
|
"homepage": "https://developers.arcgis.com/javascript/latest/",
|
|
5
|
-
"version": "4.30.0
|
|
5
|
+
"version": "4.30.0",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"module": "dist/index.js",
|
|
8
8
|
"main": "dist/index.js",
|
|
@@ -18,17 +18,17 @@
|
|
|
18
18
|
"scripts": {
|
|
19
19
|
"clean": "rimraf dist node_modules .turbo",
|
|
20
20
|
"compile": "yarn tsc",
|
|
21
|
-
"pre": "rimraf dist
|
|
21
|
+
"pre": "rimraf dist",
|
|
22
22
|
"build": "yarn pre && yarn compile",
|
|
23
23
|
"build:production": "yarn build",
|
|
24
24
|
"tsc": "tsc"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@arcgis/charts-components": "4.30.0
|
|
27
|
+
"@arcgis/charts-components": "4.30.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@arcgis/components-plugins": "
|
|
31
|
-
"@arcgis/core": "
|
|
30
|
+
"@arcgis/components-plugins": "~4.30.0",
|
|
31
|
+
"@arcgis/core": "~4.30.0",
|
|
32
32
|
"@arcgis/typescript-config": "^4.29.2",
|
|
33
33
|
"@types/node": "^20.2.5",
|
|
34
34
|
"@types/react-dom": "^18.2.0",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"typescript": "~5.3.0"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
|
-
"@arcgis/core": "~4.
|
|
39
|
+
"@arcgis/core": "~4.30.0",
|
|
40
40
|
"react": ">=18.0.0 <19.0.0",
|
|
41
41
|
"react-dom": ">=18.0.0 <19.0.0"
|
|
42
42
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,428 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
# 4.30.0-next.8 (2024-04-08)
|
|
7
|
-
|
|
8
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
# 4.30.0-next.7 (2024-04-05)
|
|
15
|
-
|
|
16
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
# 4.30.0-next.6 (2024-04-04)
|
|
23
|
-
|
|
24
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
# 4.30.0-next.5 (2024-04-03)
|
|
31
|
-
|
|
32
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
# 4.30.0-next.4 (2024-04-01)
|
|
39
|
-
|
|
40
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
# 4.30.0-next.3 (2024-03-29)
|
|
47
|
-
|
|
48
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
# 4.30.0-next.2 (2024-03-25)
|
|
55
|
-
|
|
56
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
# 4.30.0-next.1 (2024-03-18)
|
|
63
|
-
|
|
64
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
# 4.30.0-next.0 (2024-03-11)
|
|
71
|
-
|
|
72
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
## [4.29.6](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.5...v4.29.6) (2024-03-06)
|
|
79
|
-
|
|
80
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
## [4.29.5](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.4...v4.29.5) (2024-03-04)
|
|
87
|
-
|
|
88
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
## [4.29.4](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.3...v4.29.4) (2024-02-29)
|
|
95
|
-
|
|
96
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
## [4.29.3](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.2...v4.29.3) (2024-02-29)
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
### Bug Fixes
|
|
106
|
-
|
|
107
|
-
* react component wrapper package build fix ([808e54b](https://devtopia.esri.com/WebGIS/arcgis-charts/commits/808e54b71006e5773f868cfd45f199af3628be94))
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
## [4.29.2](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.1...v4.29.2) (2024-02-26)
|
|
114
|
-
|
|
115
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
## [4.29.1](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.30.0...v4.29.1) (2024-02-26)
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
### Reverts
|
|
125
|
-
|
|
126
|
-
* Revert "'chore(release): updated the package versions'" ([e5b4c04](https://devtopia.esri.com/WebGIS/arcgis-charts/commits/e5b4c048d8427bae4e68f532d1b50fc058330b56))
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
# [4.29.0](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.0-beta.41...v4.29.0) (2024-02-23)
|
|
133
|
-
|
|
134
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
# [4.29.0-beta.41](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.0-beta.40...v4.29.0-beta.41) (2024-02-22)
|
|
141
|
-
|
|
142
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
# [4.29.0-beta.40](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.0-beta.39...v4.29.0-beta.40) (2024-02-22)
|
|
149
|
-
|
|
150
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
# [4.29.0-beta.39](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.0-beta.38...v4.29.0-beta.39) (2024-02-22)
|
|
157
|
-
|
|
158
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
# [4.29.0-beta.38](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.0-beta.37...v4.29.0-beta.38) (2024-02-21)
|
|
165
|
-
|
|
166
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
# [4.29.0-beta.37](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.0-beta.36...v4.29.0-beta.37) (2024-02-21)
|
|
173
|
-
|
|
174
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
# [4.29.0-beta.36](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.0-beta.35...v4.29.0-beta.36) (2024-02-20)
|
|
181
|
-
|
|
182
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
# [4.29.0-beta.35](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.0-beta.34...v4.29.0-beta.35) (2024-02-20)
|
|
189
|
-
|
|
190
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
# [4.29.0-beta.34](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.0-beta.33...v4.29.0-beta.34) (2024-02-20)
|
|
197
|
-
|
|
198
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
# [4.29.0-beta.33](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.0-beta.32...v4.29.0-beta.33) (2024-02-19)
|
|
205
|
-
|
|
206
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
# 4.29.0-beta.32 (2024-02-16)
|
|
213
|
-
|
|
214
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
# 4.29.0-beta.31 (2024-02-16)
|
|
221
|
-
|
|
222
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
# 4.29.0-beta.30 (2024-02-16)
|
|
229
|
-
|
|
230
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
# [4.29.0-beta.29](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.0-beta.28...v4.29.0-beta.29) (2024-02-15)
|
|
237
|
-
|
|
238
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
# 4.29.0-beta.28 (2024-02-15)
|
|
245
|
-
|
|
246
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
# 4.29.0-beta.27 (2024-02-15)
|
|
253
|
-
|
|
254
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
# 4.29.0-beta.26 (2024-02-15)
|
|
261
|
-
|
|
262
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
# [4.29.0-beta.25](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.0-beta.24...v4.29.0-beta.25) (2024-02-14)
|
|
269
|
-
|
|
270
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
# 4.29.0-beta.24 (2024-02-14)
|
|
277
|
-
|
|
278
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
# 4.29.0-beta.23 (2024-02-14)
|
|
285
|
-
|
|
286
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
# 4.29.0-beta.22 (2024-02-14)
|
|
293
|
-
|
|
294
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
# 4.29.0-beta.21 (2024-02-14)
|
|
301
|
-
|
|
302
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
# 4.29.0-beta.20 (2024-02-14)
|
|
309
|
-
|
|
310
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
# [4.29.0-beta.19](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.0-beta.18...v4.29.0-beta.19) (2024-02-13)
|
|
317
|
-
|
|
318
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
# [4.29.0-beta.18](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.0-beta.17...v4.29.0-beta.18) (2024-02-12)
|
|
325
|
-
|
|
326
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
# [4.29.0-beta.17](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.0-beta.16...v4.29.0-beta.17) (2024-02-09)
|
|
333
|
-
|
|
334
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
# [4.29.0-beta.16](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.0-beta.15...v4.29.0-beta.16) (2024-02-08)
|
|
341
|
-
|
|
342
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
# [4.29.0-beta.15](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.0-beta.14...v4.29.0-beta.15) (2024-02-07)
|
|
349
|
-
|
|
350
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
# [4.29.0-beta.14](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.0-beta.13...v4.29.0-beta.14) (2024-02-06)
|
|
357
|
-
|
|
358
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
# [4.29.0-beta.13](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.0-beta.12...v4.29.0-beta.13) (2024-02-05)
|
|
365
|
-
|
|
366
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
# 4.29.0-beta.12 (2024-02-02)
|
|
373
|
-
|
|
374
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
# [4.29.0-beta.11](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.0-beta.10...v4.29.0-beta.11) (2024-02-02)
|
|
381
|
-
|
|
382
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
# [4.29.0-beta.10](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.0-beta.9...v4.29.0-beta.10) (2024-01-31)
|
|
389
|
-
|
|
390
|
-
**Note:** Version bump only for package @arcgis/charts-components-react
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
# [4.29.0-beta.9](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.0-beta.8...v4.29.0-beta.9) (2024-01-31)
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
### Bug Fixes
|
|
400
|
-
|
|
401
|
-
* remove obsolete values in react wrapper package.json ([d752de1](https://devtopia.esri.com/WebGIS/arcgis-charts/commits/d752de160c2ab5bce5ca0f92c052817d7cd9c17f))
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
# [4.29.0-beta.8](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.0-beta.7...v4.29.0-beta.8) (2024-01-30)
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
### Bug Fixes
|
|
411
|
-
|
|
412
|
-
* correct publish URLs for wrappers ([3cee052](https://devtopia.esri.com/WebGIS/arcgis-charts/commits/3cee0524c438695a09b06bdccf4966610155d33c))
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
# [4.29.0-beta.7](https://devtopia.esri.com/WebGIS/arcgis-charts/compare/v4.29.0-beta.6...v4.29.0-beta.7) (2024-01-30)
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
### Bug Fixes
|
|
422
|
-
|
|
423
|
-
* updated the auto generated files ([9c43cae](https://devtopia.esri.com/WebGIS/arcgis-charts/commits/9c43cae1f9849c37b4b142934f4ef3acdb898f3c))
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
### Features
|
|
427
|
-
|
|
428
|
-
* add wrappers as workspaces to include them in release ([ea1fcd3](https://devtopia.esri.com/WebGIS/arcgis-charts/commits/ea1fcd39c47130192f9a35c6582611eee42a5467))
|