cecomponent 1.0.144 → 1.0.146

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.
@@ -10,6 +10,7 @@ interface CEBarChartProps {
10
10
  onRefresh?: () => void;
11
11
  isRefreshing?: boolean;
12
12
  height?: number;
13
+ barColor?: string;
13
14
  }
14
15
  declare const CEBarChart: React.FC<CEBarChartProps>;
15
16
  export default CEBarChart;
@@ -0,0 +1,14 @@
1
+ export declare const LINE_OF_BUSINESS_COLORS: Record<string, string>;
2
+ interface CEStackedBarLineChartProps {
3
+ chartData: any;
4
+ chartColumns: any;
5
+ onBarClick?: (data: any) => void;
6
+ refreshKey?: number;
7
+ zoomLevel?: number;
8
+ height?: number;
9
+ showLengend?: boolean;
10
+ showTootip?: boolean;
11
+ config?: any;
12
+ }
13
+ declare const CEStackedBarLineChart: React.FC<CEStackedBarLineChartProps>;
14
+ export default CEStackedBarLineChart;
package/dist/index.d.ts CHANGED
@@ -62,3 +62,4 @@ export { default as CEAutoCompleteSelect } from './components/Common/CEAutoCompl
62
62
  export { default as CEBarChart } from './components/Common/CECharts/CEBarCharts';
63
63
  export { default as CEPieChart } from './components/Common/CECharts/CEPieCharts';
64
64
  export { default as CEStackedBarChart } from './components/Common/CECharts/CEStackedBarChart';
65
+ export { default as CEStackedLineChart } from './components/Common/CECharts/CEStackedLineChart';
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.144",
4
+ "version": "1.0.146",
5
5
  "main": "dist/ce-component-lib.js",
6
6
  "module": "dist/ce-component-lib.mjs",
7
7
  "types": "dist/idex.d.ts",
@@ -23,17 +23,14 @@
23
23
  "dependencies": {
24
24
  "@emotion/react": "^11.14.0",
25
25
  "@emotion/styled": "^11.14.0",
26
+ "@mui/icons-material": "^7.3.5",
27
+ "@mui/material": "^7.3.5",
26
28
  "axios": "^1.7.9",
27
29
  "lottie-react": "^2.4.1",
28
- "lucide-react": "^0.476.0",
29
- "material-react-table": "^3.1.0",
30
30
  "path": "^0.12.7",
31
- "react-bootstrap-icons": "^1.11.5",
32
31
  "react-icons": "^5.5.0",
33
- "react-ripples": "^2.2.1",
34
32
  "react-router-dom": "^7.3.0",
35
33
  "recharts": "^3.3.0",
36
- "styled-components": "^6.1.14",
37
34
  "url": "^0.11.4",
38
35
  "xlsx": "^0.18.5"
39
36
  },