@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.
@@ -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;
@@ -1953,3 +1953,4 @@ export declare const icons: {
1953
1953
  'zoom-out': string;
1954
1954
  'database-export': string;
1955
1955
  };
1956
+ export declare const iconIds: string[];
@@ -1,2 +1,4 @@
1
1
  export { default as Icon, iconSizes } from './Icon';
2
2
  export type { IconProps, IconId } from './Icon';
3
+ export { iconIds } from './icons';
4
+ export { default as StackedIcons, StackedIconsProps } from './StackedIcons';
@@ -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';