impaktapps-ui-builder 0.0.412-mtreemap.8 → 0.0.412-mtreemap.9

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.
@@ -42,6 +42,24 @@ export declare const CoreSection: {
42
42
  };
43
43
  };
44
44
  layout?: undefined;
45
+ } | {
46
+ type: string;
47
+ scope: string;
48
+ config: {
49
+ layout: {
50
+ xs: number;
51
+ sm: number;
52
+ md: number;
53
+ lg: number;
54
+ };
55
+ main?: undefined;
56
+ };
57
+ options: {
58
+ widget: string;
59
+ elementLabelProp?: undefined;
60
+ detail?: undefined;
61
+ };
62
+ layout?: undefined;
45
63
  } | {
46
64
  type: string;
47
65
  scope: string;
@@ -93,18 +111,18 @@ export declare const CoreSection: {
93
111
  } | {
94
112
  type: string;
95
113
  scope: string;
96
- options: {
97
- widget: string;
98
- };
99
114
  config: {
100
115
  layout: {
101
116
  xs: number;
102
117
  sm: number;
103
- md?: undefined;
104
- lg?: undefined;
118
+ md: number;
119
+ lg: number;
105
120
  };
106
121
  main?: undefined;
107
122
  };
123
+ options: {
124
+ widget: string;
125
+ };
108
126
  })[];
109
127
  };
110
128
  widget?: undefined;
@@ -8,6 +8,30 @@ export declare const EventSection: {
8
8
  };
9
9
  config: {
10
10
  main: {
11
+ headerIcons: {
12
+ elements: {
13
+ widget: {
14
+ type: string;
15
+ scope: string;
16
+ options: {
17
+ widget: string;
18
+ };
19
+ config: {
20
+ main: {
21
+ color: string;
22
+ onClick: string;
23
+ size: string;
24
+ icon: string;
25
+ iconLabel: string;
26
+ styleDefault: boolean;
27
+ };
28
+ style: {
29
+ mt: string;
30
+ };
31
+ };
32
+ };
33
+ }[];
34
+ };
11
35
  disableAction: boolean;
12
36
  disableSelection: boolean;
13
37
  enableDrag: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.412-mtreemap.8",
3
+ "version": "0.0.412-mtreemap.9",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -44,6 +44,30 @@ export const CoreSection = {
44
44
  },
45
45
  },
46
46
  },
47
+ {
48
+ type: "Control",
49
+ scope: "#/properties/columnFormat",
50
+ options: {
51
+ widget: "SelectInputField",
52
+ },
53
+ config: {
54
+ layout: { xs: 11, sm: 4, md: 4, lg: 4 },
55
+ main: {
56
+ label: "Column Format",
57
+
58
+ },
59
+ },
60
+ },
61
+ {
62
+ type: "Control",
63
+ scope: "#/properties/proc",
64
+ config: {
65
+ layout: { xs: 0, sm: 4, md: 4, lg: 4 },
66
+ },
67
+ options: {
68
+ widget: "EmptyBox",
69
+ },
70
+ },
47
71
  {
48
72
  type: "Control",
49
73
  scope: "#/properties/layout",
@@ -87,15 +111,15 @@ export const CoreSection = {
87
111
  },
88
112
  },
89
113
  {
90
- type: 'Control',
91
- scope: '#/properties/emptyBox',
114
+ type: "Control",
115
+ scope: "#/properties/proc",
116
+ config: {
117
+ layout: { xs: 0, sm: 4, md: 4, lg: 4 },
118
+ },
92
119
  options: {
93
- widget: "EmptyBox"
120
+ widget: "EmptyBox",
94
121
  },
95
- config: {
96
- layout: {xs: 0, sm: 4}
97
- }
98
- }
122
+ },
99
123
  ],
100
124
  },
101
125
  },
@@ -118,12 +142,7 @@ export const OptionArray: any = {
118
142
  widget: "SelectInputField",
119
143
  },
120
144
  config: {
121
- layout: {
122
- xs: 11,
123
- sm: 11,
124
- md: 5.5,
125
- lg: 5.5,
126
- },
145
+ layout: { xs: 11, sm: 4, md: 4, lg: 4 },
127
146
  main: {
128
147
  label: "Label",
129
148
  },
@@ -137,12 +156,7 @@ export const OptionArray: any = {
137
156
  widget: "InputField",
138
157
  },
139
158
  config: {
140
- layout: {
141
- xs: 11,
142
- sm: 11,
143
- md: 5.5,
144
- lg: 5.5,
145
- },
159
+ layout: { xs: 11, sm: 4, md: 4, lg: 4 },
146
160
  main: {
147
161
  label: "Value",
148
162
  helperText: 'Number should be in range of 0 to 12',
@@ -171,5 +185,3 @@ export const OptionArraySchema = {
171
185
  },
172
186
  },
173
187
  };
174
-
175
-
@@ -61,6 +61,33 @@ export const EventSection = {
61
61
  },
62
62
  config: {
63
63
  main: {
64
+ headerIcons: {
65
+ elements: [
66
+ {
67
+ widget: {
68
+ type: "Control",
69
+ scope: "#/properties/New_Record",
70
+
71
+ options: {
72
+ widget: "IconButton",
73
+ },
74
+ config: {
75
+ main: {
76
+ color: "info",
77
+ onClick: "eventAddHandler",
78
+ size: "small",
79
+ icon: "AddIcon",
80
+ iconLabel: "Add New",
81
+ styleDefault: true,
82
+ },
83
+ style: {
84
+ mt: "6px",
85
+ },
86
+ },
87
+ }
88
+ },
89
+ ]
90
+ },
64
91
  disableAction: true,
65
92
  disableSelection: true,
66
93
  enableDrag: true,
@@ -6,7 +6,7 @@ export const ValueTab = {
6
6
  {
7
7
  type: "Control",
8
8
  scope: "#/properties/value",
9
- layout: 11.5,
9
+ layout: 12,
10
10
  options: {
11
11
  detail: {
12
12
  type: "HorizontalLayout",
@@ -158,7 +158,7 @@ export const componentBasicUiSchema: any = (theme)=>{
158
158
  type: "Control",
159
159
  scope: "#/properties/proc",
160
160
  config: {
161
- llayout: { xs: 0, sm: 4, md: 4, lg: 4 },
161
+ layout: { xs: 0, sm: 4, md: 4, lg: 4 },
162
162
  },
163
163
  options: {
164
164
  widget: "EmptyBox",
@@ -168,7 +168,7 @@ export const componentBasicUiSchema: any = (theme)=>{
168
168
  type: "Control",
169
169
  scope: "#/properties/proc",
170
170
  config: {
171
- llayout: { xs: 0, sm: 4, md: 4, lg: 4 },
171
+ layout: { xs: 0, sm: 4, md: 4, lg: 4 },
172
172
  },
173
173
  options: {
174
174
  widget: "EmptyBox",
@@ -219,7 +219,7 @@ export const componentBasicUiSchema: any = (theme)=>{
219
219
  type: "Control",
220
220
  scope: "#/properties/proc",
221
221
  config: {
222
- llayout: { xs: 0, sm: 4, md: 4, lg: 4 },
222
+ layout: { xs: 0, sm: 4, md: 4, lg: 4 },
223
223
  },
224
224
  options: {
225
225
  widget: "EmptyBox",
@@ -415,45 +415,3 @@ export const componentBasicUiSchema: any = (theme)=>{
415
415
  };
416
416
  return uiSchema
417
417
  }
418
-
419
-
420
-
421
-
422
-
423
-
424
-
425
-
426
-
427
-
428
-
429
-
430
-
431
-
432
-
433
-
434
-
435
- // {
436
- // type: "Control",
437
- // scope: "#/properties/homeBtn",
438
-
439
- // options: {
440
- // widget: "Button",
441
- // },
442
- // config: {
443
- // layout: {xs:2,sm:2,md:1},
444
- // main: {
445
- // name: "🏠",
446
- // },
447
- // style: {
448
- // marginRight:'auto',
449
- // marginLeft:"auto",
450
- // width:"20px",
451
-
452
- // // background:"inherit",
453
- // // boxShadow:"none",
454
- // float:"left",
455
- // borderRadius:"50%"
456
-
457
- // },
458
- // },
459
- // },