@hybridcore/ui 1.6.14 → 1.6.16
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/charts/_common/tooltip.js +44 -35
- package/dist/components/charts/chart-wrapper/index.js +44 -43
- package/dist/components/charts/donut-chart/logic.js +53 -40
- package/dist/components/charts/xy-chart/logic.js +135 -134
- package/dist/components/instance-form/components/composite-matrix/components/json-editor/index.js +8737 -8722
- package/dist/main.d.ts +9 -1
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
|
@@ -233,6 +233,7 @@ export declare interface ChartDimension {
|
|
|
233
233
|
export declare type ChartNameType =
|
|
234
234
|
| "HeatLegend"
|
|
235
235
|
| "XYChart"
|
|
236
|
+
| "XYChartHorizontal"
|
|
236
237
|
| "MultipleValueAxes"
|
|
237
238
|
| "PieChart"
|
|
238
239
|
| "DonutChart"
|
|
@@ -2370,7 +2371,14 @@ export declare type XYChartComponentOverride<Theme = unknown> = {
|
|
|
2370
2371
|
styleOverrides?: ComponentsOverrides_2<Theme>["HCXYChart"];
|
|
2371
2372
|
};
|
|
2372
2373
|
|
|
2373
|
-
export declare type XYChartProps = ChartProps
|
|
2374
|
+
export declare type XYChartProps = ChartProps & {
|
|
2375
|
+
/**
|
|
2376
|
+
* Axis orientation. `"vertical"` (default) draws category on the X axis with
|
|
2377
|
+
* value columns rising on Y. `"horizontal"` flips them — category on Y, value
|
|
2378
|
+
* bars extending along X — producing a horizontal bar chart.
|
|
2379
|
+
*/
|
|
2380
|
+
orientation?: "vertical" | "horizontal";
|
|
2381
|
+
};
|
|
2374
2382
|
|
|
2375
2383
|
export { }
|
|
2376
2384
|
|