impaktapps-ui-builder 0.0.382-alpha.44 → 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.
@@ -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.44",
3
+ "version": "0.0.382-alpha.45",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -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
  },