impaktapps-ui-builder 0.0.382-alpha.43 → 0.0.382-alpha.45

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.
@@ -4,31 +4,17 @@ declare const _default: {
4
4
  main: {
5
5
  rowSpacing: number;
6
6
  };
7
- style: {
8
- componentsBoxStyle: {
9
- position: string;
10
- color: string;
11
- height: {
12
- xs: string;
13
- md: string;
14
- };
15
- width: string;
16
- textAlign: string;
17
- background: string;
18
- borderRadius: string;
19
- };
20
- wrapperStyle: {
21
- position: string;
22
- color: string;
23
- height: {
24
- xs: string;
25
- md: string;
26
- };
27
- width: string;
28
- textAlign: string;
29
- background: string;
30
- borderRadius: string;
7
+ componentsBoxStyle: {
8
+ position: string;
9
+ color: string;
10
+ height: {
11
+ xs: string;
12
+ md: string;
31
13
  };
14
+ width: string;
15
+ textAlign: string;
16
+ background: string;
17
+ borderRadius: string;
32
18
  };
33
19
  layout: {
34
20
  xs: number;
@@ -6,62 +6,18 @@ export declare const BarGraph: {
6
6
  };
7
7
  config: {
8
8
  main: {
9
- header: string;
10
- bottomLabel: string;
11
- numTicks: number;
12
- leftLabel: string;
13
- axisLeft: boolean;
14
- axisBottom: boolean;
15
- hideTicks: boolean;
16
- hideLeftAxisLine: boolean;
17
- hideBottomAxisLine: boolean;
18
- bottomAxisWidth: string;
19
- legend: {
20
- labelColor: string;
21
- legendTitle: string;
22
- direction: string;
23
- align: string;
24
- };
9
+ legend: {};
25
10
  };
26
11
  style: {
27
- containerStyle: {
28
- width: string;
29
- height: string;
30
- };
12
+ containerStyle: {};
31
13
  headerStyle: {};
32
14
  tooltipStyle: {};
33
- labelStyle: {
34
- margin: {
35
- left: number;
36
- bottom: number;
37
- };
38
- leftLabelOffset: number;
39
- bottomLabelOffset: number;
40
- };
41
15
  barStyle: {
42
- color: {
43
- firstBarColor: string;
44
- secondBarColor: string;
45
- };
16
+ color: {};
46
17
  };
47
18
  legendStyle: {
48
- legend: {
49
- lineHeight: string;
50
- fontSize: string;
51
- fontFamily: string;
52
- padding: string;
53
- width: string;
54
- display: string;
55
- justifyContent: string;
56
- border: string;
57
- borderRadius: string;
58
- marginRight: string;
59
- };
60
- legendTitle: {
61
- fontSize: string;
62
- marginBottom: string;
63
- fontWeight: string;
64
- };
19
+ legend: {};
20
+ legendTitle: {};
65
21
  };
66
22
  };
67
23
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.382-alpha.43",
3
+ "version": "0.0.382-alpha.45",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -4,25 +4,15 @@ export default {
4
4
  main: {
5
5
  rowSpacing: 0.5,
6
6
  },
7
- style: {
8
- componentsBoxStyle: {
9
- position : "relative",
10
- color: "white",
11
- height: {xs:"120px",md:"160px"},
12
- width: "100%",
13
- textAlign: "left",
14
- background: "#3f51b5",
15
- borderRadius: "20px",
16
- },
17
- wrapperStyle: {
18
- position : "relative",
19
- color: "white",
20
- height: {xs:"120px",md:"160px"},
21
- width: "100%",
22
- textAlign: "left",
23
- background: "#3f51b5",
24
- borderRadius: "20px",
25
- },
7
+
8
+ componentsBoxStyle: {
9
+ position : "relative",
10
+ color: "white",
11
+ height: {xs:"120px",md:"160px"},
12
+ width: "100%",
13
+ textAlign: "left",
14
+ background: "#3f51b5",
15
+ borderRadius: "20px",
26
16
  },
27
17
  layout: { xs: 12, sm: 12,md: 6,lg: 6, },},
28
18
  elements: [
@@ -7,29 +7,29 @@ export const BarGraph = {
7
7
 
8
8
  config: {
9
9
  main: {
10
- header: "Bar Graph",
11
- bottomLabel: "Name of Employe",
12
- numTicks: 6,
13
- leftLabel: "Value in lakhs",
14
- axisLeft: true,
15
- axisBottom: true,
10
+ // header: "Bar Graph",
11
+ // bottomLabel: "Name of Employe",
12
+ // numTicks: 6,
13
+ // leftLabel: "Value in lakhs",
14
+ // axisLeft: true,
15
+ // axisBottom: true,
16
16
 
17
- hideTicks: false,
18
- hideLeftAxisLine: false,
19
- hideBottomAxisLine: false,
20
- bottomAxisWidth: "10px",
17
+ // hideTicks: false,
18
+ // hideLeftAxisLine: false,
19
+ // hideBottomAxisLine: false,
20
+ // bottomAxisWidth: "10px",
21
21
  legend: {
22
- labelColor: "green",
23
- legendTitle: "",
24
- direction: "row",
25
- align: "none",
22
+ // labelColor: "green",
23
+ // legendTitle: "",
24
+ // direction: "row",
25
+ // align: "none",
26
26
 
27
27
  },
28
28
  },
29
29
  style: {
30
30
  containerStyle: {
31
- width:"100%",
32
- height:"450",
31
+ // width:"100%",
32
+ // height:"450",
33
33
 
34
34
  },
35
35
  headerStyle: {
@@ -39,36 +39,36 @@ export const BarGraph = {
39
39
 
40
40
 
41
41
  },
42
- labelStyle: { margin:{left:80,bottom:20},
43
- leftLabelOffset: 50,
44
- bottomLabelOffset:10
45
- },
42
+ // labelStyle: { margin:{left:80,bottom:20},
43
+ // leftLabelOffset: 50,
44
+ // bottomLabelOffset:10
45
+ // },
46
46
  barStyle: {
47
47
  color:{
48
- firstBarColor:"#6c5efb",
49
- secondBarColor:"#3f51b5"
48
+ // firstBarColor:"#6c5efb",
49
+ // secondBarColor:"#3f51b5"
50
50
  // "#6c5efb"#3f51b5
51
51
  // secondColor:"#3e50b3"
52
52
  }
53
53
  },
54
54
  legendStyle: {
55
55
  legend: {
56
- lineHeight: "0.9em",
57
- fontSize: "8px",
58
- fontFamily: "arial",
59
- padding: "10px 10px",
60
- width:"30%",
61
- display:"flex",
62
- justifyContent:"center",
63
- border: "1px solid rgba(255, 255, 255, 0.3)",
64
- borderRadius: " 8px",
65
- marginRight: "auto",
56
+ // lineHeight: "0.9em",
57
+ // fontSize: "8px",
58
+ // fontFamily: "arial",
59
+ // padding: "10px 10px",
60
+ // width:"30%",
61
+ // display:"flex",
62
+ // justifyContent:"center",
63
+ // border: "1px solid rgba(255, 255, 255, 0.3)",
64
+ // borderRadius: " 8px",
65
+ // marginRight: "auto",
66
66
 
67
67
  },
68
68
  legendTitle: {
69
- fontSize: "10px",
70
- marginBottom: "10px",
71
- fontWeight: "100",
69
+ // fontSize: "10px",
70
+ // marginBottom: "10px",
71
+ // fontWeight: "100",
72
72
 
73
73
  },
74
74
  },