@vizzly/dashboard 0.15.0-dev-e5dc13ee284e1ad11cf74da28f72ac8c1d4f2dd7 → 0.15.0-dev-2e66368eafbf32ff149bef026779b1852b7b757f
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/charts/src/FunnelChart/FunnelChart.d.ts +1 -0
- package/dist/charts/src/XYChart/types.d.ts +1 -0
- package/dist/charts/src/v2/components/AreaChart/AreaChart.d.ts +1 -0
- package/dist/charts/src/v2/components/BarChart/BarChart.d.ts +1 -0
- package/dist/charts/src/v2/components/ComboChart/ComboChart.d.ts +1 -0
- package/dist/charts/src/v2/components/DataLabel/DataLabel.d.ts +11 -0
- package/dist/charts/src/v2/components/DataLabel/index.d.ts +1 -0
- package/dist/charts/src/v2/components/LineChart/LineChart.d.ts +3 -1
- package/dist/charts/src/v2/components/WaterfallChart/waterfall.utils.d.ts +2 -0
- package/dist/charts/src/v2/index.d.ts +1 -0
- package/dist/charts/src/v2/utils/components/BarGroup.d.ts +2 -1
- package/dist/dashboard.cjs.development.js +439 -70
- package/dist/dashboard.cjs.production.min.js +1 -1
- package/dist/dashboard.esm.js +439 -70
- package/dist/shared-logic/src/Component/types.d.ts +6 -0
- package/dist/shared-logic/src/DataLabel/index.d.ts +11 -0
- package/dist/shared-logic/src/WaterfallChart/types.d.ts +1 -0
- package/dist/shared-ui/src/components/PieChart/PieChartView.d.ts +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { DataLabel } from './DataLabel';
|
|
@@ -13,6 +13,7 @@ export declare type LineChartProps = {
|
|
|
13
13
|
lineCurve: 'natural' | 'straight' | 'step' | 'stepBefore' | 'stepAfter' | 'dotted';
|
|
14
14
|
showRoundedTotal: boolean;
|
|
15
15
|
showLegend: boolean;
|
|
16
|
+
showLabels: boolean;
|
|
16
17
|
removeStroke: boolean;
|
|
17
18
|
axis: {
|
|
18
19
|
showXAxisLabels: boolean;
|
|
@@ -21,7 +22,7 @@ export declare type LineChartProps = {
|
|
|
21
22
|
};
|
|
22
23
|
};
|
|
23
24
|
export declare const LineChart: ({ chart, options, theme, width, height }: LineChartProps) => JSX.Element;
|
|
24
|
-
export declare function Lines({ yKeys, visibleYKeys, data, xScaleKey, xScaleDataType, xScale, yScale, lines, curve, conditionalFormattingRules, }: {
|
|
25
|
+
export declare function Lines({ yKeys, visibleYKeys, data, xScaleKey, xScaleDataType, xScale, yScale, lines, curve, conditionalFormattingRules, showLabels, }: {
|
|
25
26
|
yKeys: string[];
|
|
26
27
|
lines: ShapeDefinition<LineStyles>[];
|
|
27
28
|
conditionalFormattingRules: ConditionalFormattingRule[];
|
|
@@ -32,4 +33,5 @@ export declare function Lines({ yKeys, visibleYKeys, data, xScaleKey, xScaleData
|
|
|
32
33
|
xScaleDataType: DataType;
|
|
33
34
|
xScale: ScalePoint<string> | ScaleTime<number, number, never> | ScaleLinear<number, number, never>;
|
|
34
35
|
yScale: ScaleLinear<number, number, never>;
|
|
36
|
+
showLabels: boolean;
|
|
35
37
|
}): JSX.Element;
|
|
@@ -3,3 +3,4 @@ export { BarChart as BarChartV2 } from './components/BarChart';
|
|
|
3
3
|
export { AreaChart as AreaChartV2 } from './components/AreaChart';
|
|
4
4
|
export { BubbleChart as BubbleChartV2 } from './components/BubbleChart';
|
|
5
5
|
export { RadarChart } from './components/RadarChart';
|
|
6
|
+
export { DataLabel } from './components/DataLabel';
|
|
@@ -20,5 +20,6 @@ export declare type BarGroupProps = {
|
|
|
20
20
|
yLabelPosition?: number;
|
|
21
21
|
showDetailedSubGroupingLabels: boolean;
|
|
22
22
|
labelStyle?: React.CSSProperties;
|
|
23
|
+
showLabels?: boolean;
|
|
23
24
|
};
|
|
24
|
-
export declare function BarGroup({ data, keys, height, xKey, xScaleDataType, xScale, innerXScale, yScale, onClick, conditionalFormattingRules, bars, enableHover, yAxisLabels, yLabelPosition, showDetailedSubGroupingLabels, labelStyle, }: BarGroupProps): JSX.Element;
|
|
25
|
+
export declare function BarGroup({ data, keys, height, xKey, xScaleDataType, xScale, innerXScale, yScale, onClick, conditionalFormattingRules, bars, enableHover, yAxisLabels, yLabelPosition, showDetailedSubGroupingLabels, labelStyle, showLabels, }: BarGroupProps): JSX.Element;
|