cecomponent 1.0.174 → 1.0.176

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.
@@ -11,6 +11,7 @@ interface CEBarChartProps {
11
11
  isRefreshing?: boolean;
12
12
  height?: number;
13
13
  barColor?: string;
14
+ barMargin?: any;
14
15
  }
15
16
  declare const CEBarChart: React.FC<CEBarChartProps>;
16
17
  export default CEBarChart;
@@ -10,6 +10,10 @@ interface PieChartProps {
10
10
  onPieClick: (data: PieChartItem, index: number) => void;
11
11
  refreshKey?: number;
12
12
  height?: number;
13
+ showLabel?: boolean;
14
+ outerRadius?: number;
15
+ paddingAngle?: number;
16
+ fontSize?: number;
13
17
  }
14
18
  declare const CEPieChart: React.FC<PieChartProps>;
15
19
  export default CEPieChart;
@@ -10,6 +10,7 @@ interface CEStackedBarLineChartProps {
10
10
  showLengend?: boolean;
11
11
  showTootip?: boolean;
12
12
  config?: any;
13
+ composedChartMargin?: any;
13
14
  }
14
15
  declare const CEStackedBarLineChart: React.FC<CEStackedBarLineChartProps>;
15
16
  export default CEStackedBarLineChart;
@@ -6,18 +6,19 @@ interface DateRange {
6
6
  }
7
7
  interface CEDateRangePickerProps {
8
8
  label?: string;
9
+ tooltip?: string;
10
+ required?: boolean;
9
11
  onChange?: (range: DateRange) => void;
10
12
  size?: Size;
11
13
  style?: React.CSSProperties;
12
14
  inputGroupStyle?: React.CSSProperties;
13
- /** optional id for testing or identification */
14
15
  id?: string;
15
- /** optional name for testing or form identification */
16
16
  name?: string;
17
17
  mode?: "range" | "single";
18
18
  defaultValue?: DateRange;
19
19
  disabled?: boolean;
20
20
  minDate?: string;
21
+ defaultFloat?: boolean;
21
22
  }
22
23
  declare const CEDateRangePicker: React.FC<CEDateRangePickerProps>;
23
24
  export default CEDateRangePicker;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cecomponent",
3
3
  "description": "A React component library for building modern UIs for Cleanearth",
4
- "version": "1.0.174",
4
+ "version": "1.0.176",
5
5
  "main": "dist/ce-component-lib.js",
6
6
  "module": "dist/ce-component-lib.mjs",
7
7
  "types": "dist/idex.d.ts",