@connectif/ui-components 2.0.1 → 2.0.3
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/chart/LineChart.d.ts +5 -1
- package/dist/components/icon/icons.d.ts +1 -0
- package/dist/components/icon/index.d.ts +2 -0
- package/dist/components/input/index.d.ts +1 -1
- package/dist/index.js +892 -879
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/utils/ChartUtils.d.ts +1 -1
- package/package.json +3 -3
|
@@ -106,10 +106,14 @@ export type LineChartProps = CategorizedChartProps & {
|
|
|
106
106
|
* Option to set the position of the Y axis when there is only one.
|
|
107
107
|
*/
|
|
108
108
|
yAxisPosition?: 'left' | 'right';
|
|
109
|
+
/**
|
|
110
|
+
* Margin to add between labels and x axis. It will be in px
|
|
111
|
+
*/
|
|
112
|
+
xAxisMargin?: number;
|
|
109
113
|
};
|
|
110
114
|
/**
|
|
111
115
|
* A line chart component to display numeric data grouped by categories and series.
|
|
112
116
|
* Commonly, categories use to be sorted dates.
|
|
113
117
|
*/
|
|
114
|
-
declare const LineChart: ({ style, isLoading, series, categories, yAxisLabelFormatter, ySecondaryAxisLabelFormatter, onClick, disableSeriesNames, disableAxes, disableSplitLine, fullGrid, axisFontSize, axisFontColor, yAxisPosition }: LineChartProps) => import("react/jsx-runtime").JSX.Element;
|
|
118
|
+
declare const LineChart: ({ style, isLoading, series, categories, yAxisLabelFormatter, ySecondaryAxisLabelFormatter, onClick, disableSeriesNames, disableAxes, disableSplitLine, fullGrid, axisFontSize, axisFontColor, yAxisPosition, xAxisMargin }: LineChartProps) => import("react/jsx-runtime").JSX.Element;
|
|
115
119
|
export default LineChart;
|
|
@@ -46,7 +46,7 @@ export type { PhoneFieldProps } from './PhoneField';
|
|
|
46
46
|
export type { NumberFieldProps } from './NumberField';
|
|
47
47
|
export type { DatePickerProps } from './DatePicker';
|
|
48
48
|
export type { InputLabelProps } from './InputLabel';
|
|
49
|
-
export type { SelectPopoverProps } from './SelectPopover';
|
|
49
|
+
export type { SelectPopoverProps, SelectableItem } from './SelectPopover';
|
|
50
50
|
export type { CheckboxProps } from './Checkbox';
|
|
51
51
|
export type { RadioProps } from './Radio';
|
|
52
52
|
export type { PageSelectorProps } from './PageSelector';
|