cecomponent 1.0.145 → 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.
- package/dist/ce-component-lib.css +1 -1
- package/dist/ce-component-lib.js +72 -71
- package/dist/ce-component-lib.mjs +6947 -5263
- package/dist/components/Common/CECharts/CEBarCharts.d.ts +1 -0
- package/dist/components/Common/CECharts/CEStackedLineChart.d.ts +14 -0
- package/dist/index.d.ts +1 -0
- package/package.json +3 -6
|
@@ -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.
|
|
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
|
},
|