@yamada-ui/charts 1.5.10-dev-20241205150741 → 1.5.10-dev-20241209071600
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/use-area-chart.d.mts +4 -0
- package/dist/use-area-chart.d.ts +4 -0
- package/dist/use-bar-chart.d.mts +4 -0
- package/dist/use-bar-chart.d.ts +4 -0
- package/dist/use-line-chart.d.mts +4 -0
- package/dist/use-line-chart.d.ts +4 -0
- package/dist/use-pie-chart.d.mts +4 -0
- package/dist/use-pie-chart.d.ts +4 -0
- package/dist/use-radar-chart.d.mts +4 -0
- package/dist/use-radar-chart.d.ts +4 -0
- package/dist/use-radial-chart.d.mts +4 -0
- package/dist/use-radial-chart.d.ts +4 -0
- package/package.json +4 -4
@@ -170,6 +170,8 @@ declare const useAreaChart: ({ type, connectNulls, curveType, data, fillOpacity,
|
|
170
170
|
handleTouchMove: (e: react.TouchEvent<Element>) => void;
|
171
171
|
handleTouchStart: (e: react.TouchEvent<Element>) => void;
|
172
172
|
handleTouchEnd: (e: react.TouchEvent<Element>) => void;
|
173
|
+
handleDoubleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
174
|
+
handleContextMenu: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
173
175
|
triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
174
176
|
applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
175
177
|
filterFormatItem(item: any, displayName: any, childIndex: any): any;
|
@@ -330,6 +332,8 @@ declare const useAreaChart: ({ type, connectNulls, curveType, data, fillOpacity,
|
|
330
332
|
handleTouchMove: (e: react.TouchEvent<Element>) => void;
|
331
333
|
handleTouchStart: (e: react.TouchEvent<Element>) => void;
|
332
334
|
handleTouchEnd: (e: react.TouchEvent<Element>) => void;
|
335
|
+
handleDoubleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
336
|
+
handleContextMenu: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
333
337
|
triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
334
338
|
applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
335
339
|
filterFormatItem(item: any, displayName: any, childIndex: any): any;
|
package/dist/use-area-chart.d.ts
CHANGED
@@ -170,6 +170,8 @@ declare const useAreaChart: ({ type, connectNulls, curveType, data, fillOpacity,
|
|
170
170
|
handleTouchMove: (e: react.TouchEvent<Element>) => void;
|
171
171
|
handleTouchStart: (e: react.TouchEvent<Element>) => void;
|
172
172
|
handleTouchEnd: (e: react.TouchEvent<Element>) => void;
|
173
|
+
handleDoubleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
174
|
+
handleContextMenu: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
173
175
|
triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
174
176
|
applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
175
177
|
filterFormatItem(item: any, displayName: any, childIndex: any): any;
|
@@ -330,6 +332,8 @@ declare const useAreaChart: ({ type, connectNulls, curveType, data, fillOpacity,
|
|
330
332
|
handleTouchMove: (e: react.TouchEvent<Element>) => void;
|
331
333
|
handleTouchStart: (e: react.TouchEvent<Element>) => void;
|
332
334
|
handleTouchEnd: (e: react.TouchEvent<Element>) => void;
|
335
|
+
handleDoubleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
336
|
+
handleContextMenu: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
333
337
|
triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
334
338
|
applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
335
339
|
filterFormatItem(item: any, displayName: any, childIndex: any): any;
|
package/dist/use-bar-chart.d.mts
CHANGED
@@ -130,6 +130,8 @@ declare const useBarChart: ({ type, cell, data, fillOpacity, layoutType, series,
|
|
130
130
|
handleTouchMove: (e: react.TouchEvent<Element>) => void;
|
131
131
|
handleTouchStart: (e: react.TouchEvent<Element>) => void;
|
132
132
|
handleTouchEnd: (e: react.TouchEvent<Element>) => void;
|
133
|
+
handleDoubleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
134
|
+
handleContextMenu: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
133
135
|
triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
134
136
|
applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
135
137
|
filterFormatItem(item: any, displayName: any, childIndex: any): any;
|
@@ -290,6 +292,8 @@ declare const useBarChart: ({ type, cell, data, fillOpacity, layoutType, series,
|
|
290
292
|
handleTouchMove: (e: react.TouchEvent<Element>) => void;
|
291
293
|
handleTouchStart: (e: react.TouchEvent<Element>) => void;
|
292
294
|
handleTouchEnd: (e: react.TouchEvent<Element>) => void;
|
295
|
+
handleDoubleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
296
|
+
handleContextMenu: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
293
297
|
triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
294
298
|
applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
295
299
|
filterFormatItem(item: any, displayName: any, childIndex: any): any;
|
package/dist/use-bar-chart.d.ts
CHANGED
@@ -130,6 +130,8 @@ declare const useBarChart: ({ type, cell, data, fillOpacity, layoutType, series,
|
|
130
130
|
handleTouchMove: (e: react.TouchEvent<Element>) => void;
|
131
131
|
handleTouchStart: (e: react.TouchEvent<Element>) => void;
|
132
132
|
handleTouchEnd: (e: react.TouchEvent<Element>) => void;
|
133
|
+
handleDoubleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
134
|
+
handleContextMenu: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
133
135
|
triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
134
136
|
applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
135
137
|
filterFormatItem(item: any, displayName: any, childIndex: any): any;
|
@@ -290,6 +292,8 @@ declare const useBarChart: ({ type, cell, data, fillOpacity, layoutType, series,
|
|
290
292
|
handleTouchMove: (e: react.TouchEvent<Element>) => void;
|
291
293
|
handleTouchStart: (e: react.TouchEvent<Element>) => void;
|
292
294
|
handleTouchEnd: (e: react.TouchEvent<Element>) => void;
|
295
|
+
handleDoubleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
296
|
+
handleContextMenu: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
293
297
|
triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
294
298
|
applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
295
299
|
filterFormatItem(item: any, displayName: any, childIndex: any): any;
|
@@ -147,6 +147,8 @@ declare const useLineChart: ({ connectNulls, curveType, data, fillOpacity, layou
|
|
147
147
|
handleTouchMove: (e: react.TouchEvent<Element>) => void;
|
148
148
|
handleTouchStart: (e: react.TouchEvent<Element>) => void;
|
149
149
|
handleTouchEnd: (e: react.TouchEvent<Element>) => void;
|
150
|
+
handleDoubleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
151
|
+
handleContextMenu: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
150
152
|
triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
151
153
|
applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
152
154
|
filterFormatItem(item: any, displayName: any, childIndex: any): any;
|
@@ -307,6 +309,8 @@ declare const useLineChart: ({ connectNulls, curveType, data, fillOpacity, layou
|
|
307
309
|
handleTouchMove: (e: react.TouchEvent<Element>) => void;
|
308
310
|
handleTouchStart: (e: react.TouchEvent<Element>) => void;
|
309
311
|
handleTouchEnd: (e: react.TouchEvent<Element>) => void;
|
312
|
+
handleDoubleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
313
|
+
handleContextMenu: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
310
314
|
triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
311
315
|
applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
312
316
|
filterFormatItem(item: any, displayName: any, childIndex: any): any;
|
package/dist/use-line-chart.d.ts
CHANGED
@@ -147,6 +147,8 @@ declare const useLineChart: ({ connectNulls, curveType, data, fillOpacity, layou
|
|
147
147
|
handleTouchMove: (e: react.TouchEvent<Element>) => void;
|
148
148
|
handleTouchStart: (e: react.TouchEvent<Element>) => void;
|
149
149
|
handleTouchEnd: (e: react.TouchEvent<Element>) => void;
|
150
|
+
handleDoubleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
151
|
+
handleContextMenu: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
150
152
|
triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
151
153
|
applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
152
154
|
filterFormatItem(item: any, displayName: any, childIndex: any): any;
|
@@ -307,6 +309,8 @@ declare const useLineChart: ({ connectNulls, curveType, data, fillOpacity, layou
|
|
307
309
|
handleTouchMove: (e: react.TouchEvent<Element>) => void;
|
308
310
|
handleTouchStart: (e: react.TouchEvent<Element>) => void;
|
309
311
|
handleTouchEnd: (e: react.TouchEvent<Element>) => void;
|
312
|
+
handleDoubleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
313
|
+
handleContextMenu: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
310
314
|
triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
311
315
|
applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
312
316
|
filterFormatItem(item: any, displayName: any, childIndex: any): any;
|
package/dist/use-pie-chart.d.mts
CHANGED
@@ -163,6 +163,8 @@ declare const usePieChart: ({ data, endAngle, fillOpacity, innerRadius, isPercen
|
|
163
163
|
handleTouchMove: (e: react.TouchEvent<Element>) => void;
|
164
164
|
handleTouchStart: (e: react.TouchEvent<Element>) => void;
|
165
165
|
handleTouchEnd: (e: react.TouchEvent<Element>) => void;
|
166
|
+
handleDoubleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
167
|
+
handleContextMenu: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
166
168
|
triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
167
169
|
applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
168
170
|
filterFormatItem(item: any, displayName: any, childIndex: any): any;
|
@@ -323,6 +325,8 @@ declare const usePieChart: ({ data, endAngle, fillOpacity, innerRadius, isPercen
|
|
323
325
|
handleTouchMove: (e: react.TouchEvent<Element>) => void;
|
324
326
|
handleTouchStart: (e: react.TouchEvent<Element>) => void;
|
325
327
|
handleTouchEnd: (e: react.TouchEvent<Element>) => void;
|
328
|
+
handleDoubleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
329
|
+
handleContextMenu: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
326
330
|
triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
327
331
|
applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
328
332
|
filterFormatItem(item: any, displayName: any, childIndex: any): any;
|
package/dist/use-pie-chart.d.ts
CHANGED
@@ -163,6 +163,8 @@ declare const usePieChart: ({ data, endAngle, fillOpacity, innerRadius, isPercen
|
|
163
163
|
handleTouchMove: (e: react.TouchEvent<Element>) => void;
|
164
164
|
handleTouchStart: (e: react.TouchEvent<Element>) => void;
|
165
165
|
handleTouchEnd: (e: react.TouchEvent<Element>) => void;
|
166
|
+
handleDoubleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
167
|
+
handleContextMenu: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
166
168
|
triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
167
169
|
applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
168
170
|
filterFormatItem(item: any, displayName: any, childIndex: any): any;
|
@@ -323,6 +325,8 @@ declare const usePieChart: ({ data, endAngle, fillOpacity, innerRadius, isPercen
|
|
323
325
|
handleTouchMove: (e: react.TouchEvent<Element>) => void;
|
324
326
|
handleTouchStart: (e: react.TouchEvent<Element>) => void;
|
325
327
|
handleTouchEnd: (e: react.TouchEvent<Element>) => void;
|
328
|
+
handleDoubleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
329
|
+
handleContextMenu: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
326
330
|
triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
327
331
|
applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
328
332
|
filterFormatItem(item: any, displayName: any, childIndex: any): any;
|
@@ -142,6 +142,8 @@ declare const useRadarChart: ({ data, dataKey, fillOpacity, polarAngleAxisTickFo
|
|
142
142
|
handleTouchMove: (e: react.TouchEvent<Element>) => void;
|
143
143
|
handleTouchStart: (e: react.TouchEvent<Element>) => void;
|
144
144
|
handleTouchEnd: (e: react.TouchEvent<Element>) => void;
|
145
|
+
handleDoubleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
146
|
+
handleContextMenu: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
145
147
|
triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
146
148
|
applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
147
149
|
filterFormatItem(item: any, displayName: any, childIndex: any): any;
|
@@ -302,6 +304,8 @@ declare const useRadarChart: ({ data, dataKey, fillOpacity, polarAngleAxisTickFo
|
|
302
304
|
handleTouchMove: (e: react.TouchEvent<Element>) => void;
|
303
305
|
handleTouchStart: (e: react.TouchEvent<Element>) => void;
|
304
306
|
handleTouchEnd: (e: react.TouchEvent<Element>) => void;
|
307
|
+
handleDoubleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
308
|
+
handleContextMenu: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
305
309
|
triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
306
310
|
applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
307
311
|
filterFormatItem(item: any, displayName: any, childIndex: any): any;
|
@@ -142,6 +142,8 @@ declare const useRadarChart: ({ data, dataKey, fillOpacity, polarAngleAxisTickFo
|
|
142
142
|
handleTouchMove: (e: react.TouchEvent<Element>) => void;
|
143
143
|
handleTouchStart: (e: react.TouchEvent<Element>) => void;
|
144
144
|
handleTouchEnd: (e: react.TouchEvent<Element>) => void;
|
145
|
+
handleDoubleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
146
|
+
handleContextMenu: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
145
147
|
triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
146
148
|
applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
147
149
|
filterFormatItem(item: any, displayName: any, childIndex: any): any;
|
@@ -302,6 +304,8 @@ declare const useRadarChart: ({ data, dataKey, fillOpacity, polarAngleAxisTickFo
|
|
302
304
|
handleTouchMove: (e: react.TouchEvent<Element>) => void;
|
303
305
|
handleTouchStart: (e: react.TouchEvent<Element>) => void;
|
304
306
|
handleTouchEnd: (e: react.TouchEvent<Element>) => void;
|
307
|
+
handleDoubleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
308
|
+
handleContextMenu: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
305
309
|
triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
306
310
|
applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
307
311
|
filterFormatItem(item: any, displayName: any, childIndex: any): any;
|
@@ -125,6 +125,8 @@ declare const useRadialChart: ({ data: dataProp, dataKey, endAngle, fillOpacity,
|
|
125
125
|
handleTouchMove: (e: react.TouchEvent<Element>) => void;
|
126
126
|
handleTouchStart: (e: react.TouchEvent<Element>) => void;
|
127
127
|
handleTouchEnd: (e: react.TouchEvent<Element>) => void;
|
128
|
+
handleDoubleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
129
|
+
handleContextMenu: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
128
130
|
triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
129
131
|
applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
130
132
|
filterFormatItem(item: any, displayName: any, childIndex: any): any;
|
@@ -285,6 +287,8 @@ declare const useRadialChart: ({ data: dataProp, dataKey, endAngle, fillOpacity,
|
|
285
287
|
handleTouchMove: (e: react.TouchEvent<Element>) => void;
|
286
288
|
handleTouchStart: (e: react.TouchEvent<Element>) => void;
|
287
289
|
handleTouchEnd: (e: react.TouchEvent<Element>) => void;
|
290
|
+
handleDoubleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
291
|
+
handleContextMenu: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
288
292
|
triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
289
293
|
applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
290
294
|
filterFormatItem(item: any, displayName: any, childIndex: any): any;
|
@@ -125,6 +125,8 @@ declare const useRadialChart: ({ data: dataProp, dataKey, endAngle, fillOpacity,
|
|
125
125
|
handleTouchMove: (e: react.TouchEvent<Element>) => void;
|
126
126
|
handleTouchStart: (e: react.TouchEvent<Element>) => void;
|
127
127
|
handleTouchEnd: (e: react.TouchEvent<Element>) => void;
|
128
|
+
handleDoubleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
129
|
+
handleContextMenu: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
128
130
|
triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
129
131
|
applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
130
132
|
filterFormatItem(item: any, displayName: any, childIndex: any): any;
|
@@ -285,6 +287,8 @@ declare const useRadialChart: ({ data: dataProp, dataKey, endAngle, fillOpacity,
|
|
285
287
|
handleTouchMove: (e: react.TouchEvent<Element>) => void;
|
286
288
|
handleTouchStart: (e: react.TouchEvent<Element>) => void;
|
287
289
|
handleTouchEnd: (e: react.TouchEvent<Element>) => void;
|
290
|
+
handleDoubleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
291
|
+
handleContextMenu: (e: react.MouseEvent<Element, MouseEvent>) => void;
|
288
292
|
triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
289
293
|
applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
|
290
294
|
filterFormatItem(item: any, displayName: any, childIndex: any): any;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@yamada-ui/charts",
|
3
|
-
"version": "1.5.10-dev-
|
3
|
+
"version": "1.5.10-dev-20241209071600",
|
4
4
|
"description": "Yamada UI charts component",
|
5
5
|
"keywords": [
|
6
6
|
"yamada",
|
@@ -36,9 +36,9 @@
|
|
36
36
|
"url": "https://github.com/hirotomoyamada/yamada-ui/issues"
|
37
37
|
},
|
38
38
|
"dependencies": {
|
39
|
-
"recharts": "^2.
|
40
|
-
"@yamada-ui/core": "1.16.1-dev-
|
41
|
-
"@yamada-ui/utils": "1.6.1-dev-
|
39
|
+
"recharts": "^2.14.1",
|
40
|
+
"@yamada-ui/core": "1.16.1-dev-20241209071600",
|
41
|
+
"@yamada-ui/utils": "1.6.1-dev-20241209071600"
|
42
42
|
},
|
43
43
|
"devDependencies": {
|
44
44
|
"clean-package": "2.2.0",
|