impaktapps-ui-builder 1.0.200 → 1.0.202

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.
Files changed (86) hide show
  1. package/dist/impaktapps-ui-builder.es.js +1125 -525
  2. package/dist/impaktapps-ui-builder.es.js.map +1 -1
  3. package/dist/impaktapps-ui-builder.umd.js +13 -13
  4. package/dist/impaktapps-ui-builder.umd.js.map +1 -1
  5. package/dist/src/impaktapps-ui-builder/builder/build/buildAreaGraph.d.ts +2 -0
  6. package/dist/src/impaktapps-ui-builder/builder/build/buildCamera.d.ts +1 -0
  7. package/dist/src/impaktapps-ui-builder/builder/build/buildConfig.d.ts +1 -0
  8. package/dist/src/impaktapps-ui-builder/builder/build/buildGroupButton.d.ts +1 -0
  9. package/dist/src/impaktapps-ui-builder/builder/build/buildHierarchyChart.d.ts +1 -0
  10. package/dist/src/impaktapps-ui-builder/builder/build/buildMetricCard.d.ts +1 -0
  11. package/dist/src/impaktapps-ui-builder/builder/build/buildOTP_inputs.d.ts +1 -0
  12. package/dist/src/impaktapps-ui-builder/builder/build/buildPdfViewer.d.ts +1 -0
  13. package/dist/src/impaktapps-ui-builder/builder/build/buildPopover.d.ts +1 -0
  14. package/dist/src/impaktapps-ui-builder/builder/build/buildStackBarLineGraph.d.ts +2 -0
  15. package/dist/src/impaktapps-ui-builder/builder/build/uischema/box.d.ts +1 -0
  16. package/dist/src/impaktapps-ui-builder/builder/build/uischema/buttonGroup.d.ts +22 -0
  17. package/dist/src/impaktapps-ui-builder/builder/build/uischema/card.d.ts +173 -197
  18. package/dist/src/impaktapps-ui-builder/builder/build/uischema/graph.d.ts +25 -5
  19. package/dist/src/impaktapps-ui-builder/builder/build/uischema/hierarchyChart.d.ts +22 -0
  20. package/dist/src/impaktapps-ui-builder/builder/build/uischema/metricCard.d.ts +17 -0
  21. package/dist/src/impaktapps-ui-builder/builder/build/uischema/multiSelect.d.ts +1 -0
  22. package/dist/src/impaktapps-ui-builder/builder/build/uischema/pdfViewer.d.ts +19 -0
  23. package/dist/src/impaktapps-ui-builder/builder/build/uischema/selectInputField.d.ts +1 -0
  24. package/dist/src/impaktapps-ui-builder/builder/build/uischema/tableSection.d.ts +1 -1
  25. package/dist/src/impaktapps-ui-builder/builder/build/uischema/wrapperSection.d.ts +3 -1
  26. package/dist/src/impaktapps-ui-builder/builder/services/utils.d.ts +2 -1
  27. package/dist/src/impaktapps-ui-builder/runtime/services/service.d.ts +3 -0
  28. package/package.json +1 -1
  29. package/src/impaktapps-ui-builder/builder/build/buildAreaGraph.ts +22 -14
  30. package/src/impaktapps-ui-builder/builder/build/buildArray.ts +10 -6
  31. package/src/impaktapps-ui-builder/builder/build/buildCamera.ts +50 -0
  32. package/src/impaktapps-ui-builder/builder/build/buildCard.ts +10 -10
  33. package/src/impaktapps-ui-builder/builder/build/buildConfig.ts +19 -7
  34. package/src/impaktapps-ui-builder/builder/build/buildDate.ts +32 -16
  35. package/src/impaktapps-ui-builder/builder/build/buildDownloadFile.ts +6 -0
  36. package/src/impaktapps-ui-builder/builder/build/buildEmptyBox.ts +4 -0
  37. package/src/impaktapps-ui-builder/builder/build/buildFileInput.ts +42 -43
  38. package/src/impaktapps-ui-builder/builder/build/buildGroupButton.ts +24 -0
  39. package/src/impaktapps-ui-builder/builder/build/buildHierarchyChart.ts +35 -0
  40. package/src/impaktapps-ui-builder/builder/build/buildHorizontalBarGraph.ts +3 -3
  41. package/src/impaktapps-ui-builder/builder/build/buildImage.ts +6 -3
  42. package/src/impaktapps-ui-builder/builder/build/buildLineGraph.ts +3 -3
  43. package/src/impaktapps-ui-builder/builder/build/buildMetricCard.tsx +37 -0
  44. package/src/impaktapps-ui-builder/builder/build/buildMultiSelect.ts +9 -0
  45. package/src/impaktapps-ui-builder/builder/build/buildOTP_inputs.ts +44 -0
  46. package/src/impaktapps-ui-builder/builder/build/buildPdfViewer.ts +16 -0
  47. package/src/impaktapps-ui-builder/builder/build/buildPieGraph.ts +3 -3
  48. package/src/impaktapps-ui-builder/builder/build/buildPop.ts +1 -0
  49. package/src/impaktapps-ui-builder/builder/build/buildPopover.ts +40 -0
  50. package/src/impaktapps-ui-builder/builder/build/buildProgressBar.ts +31 -21
  51. package/src/impaktapps-ui-builder/builder/build/buildRadio.ts +6 -0
  52. package/src/impaktapps-ui-builder/builder/build/buildSelect.ts +9 -0
  53. package/src/impaktapps-ui-builder/builder/build/buildStackBarGraph.ts +3 -3
  54. package/src/impaktapps-ui-builder/builder/build/buildStackBarLineGraph.ts +72 -0
  55. package/src/impaktapps-ui-builder/builder/build/buildTabSection.ts +2 -0
  56. package/src/impaktapps-ui-builder/builder/build/buildTable.ts +4 -3
  57. package/src/impaktapps-ui-builder/builder/build/buildText.ts +9 -0
  58. package/src/impaktapps-ui-builder/builder/build/buildUiSchema.ts +41 -3
  59. package/src/impaktapps-ui-builder/builder/build/buildUplaodFile.ts +6 -0
  60. package/src/impaktapps-ui-builder/builder/build/buildWrapperSection.ts +7 -2
  61. package/src/impaktapps-ui-builder/builder/build/uischema/box.ts +2 -1
  62. package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +242 -25
  63. package/src/impaktapps-ui-builder/builder/build/uischema/buttonGroup.ts +17 -0
  64. package/src/impaktapps-ui-builder/builder/build/uischema/card.ts +142 -188
  65. package/src/impaktapps-ui-builder/builder/build/uischema/coreSection.ts +0 -1
  66. package/src/impaktapps-ui-builder/builder/build/uischema/graph.ts +22 -6
  67. package/src/impaktapps-ui-builder/builder/build/uischema/hierarchyChart.ts +13 -0
  68. package/src/impaktapps-ui-builder/builder/build/uischema/metricCard.ts +13 -0
  69. package/src/impaktapps-ui-builder/builder/build/uischema/multiSelect.ts +2 -0
  70. package/src/impaktapps-ui-builder/builder/build/uischema/pdfViewer.ts +18 -0
  71. package/src/impaktapps-ui-builder/builder/build/uischema/selectInputField.ts +2 -0
  72. package/src/impaktapps-ui-builder/builder/build/uischema/tableSection.ts +5 -6
  73. package/src/impaktapps-ui-builder/builder/build/uischema/wrapperSection.ts +3 -1
  74. package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +96 -2
  75. package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +17 -0
  76. package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/schema.ts +3 -4
  77. package/src/impaktapps-ui-builder/builder/services/component.ts +150 -107
  78. package/src/impaktapps-ui-builder/builder/services/event.ts +3 -0
  79. package/src/impaktapps-ui-builder/builder/services/pageMaster.ts +4 -1
  80. package/src/impaktapps-ui-builder/builder/services/utils.ts +15 -3
  81. package/src/impaktapps-ui-builder/runtime/services/downloadFile.ts +6 -7
  82. package/src/impaktapps-ui-builder/runtime/services/service.ts +34 -5
  83. package/dist/src/impaktapps-ui-builder/builder/build/buildDataCard.d.ts +0 -1
  84. package/dist/src/impaktapps-ui-builder/builder/build/uischema/dataCard.d.ts +0 -320
  85. package/src/impaktapps-ui-builder/builder/build/buildDataCard.tsx +0 -44
  86. package/src/impaktapps-ui-builder/builder/build/uischema/dataCard.ts +0 -207
@@ -1,215 +1,169 @@
1
- export default function Card(theme){
2
- const uiSchema = {
1
+ export default function Card(theme) {
2
+ const uiSchema =
3
+ {
3
4
  type: "WrapperLayout",
4
5
  config: {
5
6
  main: {},
6
- wrapperStyle: {
7
- position: "relative",
8
- top: "50%",
9
- transform: "translateY(-50%)",
10
- marginBottom: 0
11
- },
12
- componentsBoxStyle: {
13
- boxShadow: "0px 2px 4px rgba(0, 0, 0, 0.1)",
14
- flexDirection: "row",
15
- flexWrap: "nowrap",
16
- width: "100% !important",
17
- background: "transparent",
18
- border: `1.5px solid ${theme.palette.primary.light}`,
19
- borderRadius: "8px",
20
- padding: "0px 4px",
21
- height: "100%",
22
- alignItems: "center",
23
- marginLeft: "0px",
24
- "&: hover": {
25
- background: `${theme.palette.primary.main}`,
26
- border: `1.5px solid black`,
27
- "& p": {
28
- color: "white",
7
+ style: {
8
+ wrapperStyle: {
9
+ position: "relative",
10
+ top: "50%",
11
+ transform: "translateY(-50%)",
12
+ marginBottom: 0,
13
+ borderRadius: "12px",
14
+ fontFamily:"poppins"
15
+ },
16
+ componentsBoxStyle: {
17
+ boxShadow: "0 0 6px 1px rgba(149, 147, 147, 0.25)",
18
+ flexDirection: "column",
19
+ overflow: "hidden",
20
+ flexWrap: "nowrap",
21
+ width: "100% !important",
22
+ background: "transparent",
23
+ // border: `1.5px solid ${theme.palette.primary.light}`,
24
+ borderRadius: "12px",
25
+ padding: "20px 20px 20px 14px",
26
+ height: "100%",
27
+ minHeight: "100px",
28
+ position: "relative",
29
+ marginLeft: "0px",
30
+ "&: hover": {
31
+ background: `${theme.palette.primary.main}`,
32
+ color: `${theme.palette.primary.contrastText}`,
33
+ // border: `1.5px solid black`,
34
+ // "& p": {
35
+ // color: "white",
36
+ // },
29
37
  },
30
38
  },
31
39
  },
32
- layout: { xs: 12, sm: 12, md: 6, lg: 6 },
40
+
41
+ layout: { xs: 12, sm: 12, md: 3, lg: 3 },
33
42
  },
34
43
  elements: [
35
- {
36
- type: "HorizontalLayout",
44
+ {
45
+ type: "Control",
46
+ scope: "#/properties/initilCardScope",
37
47
  config: {
38
- layout: 9,
39
- },
40
- elements: [
41
- {
42
- type: "WrapperLayout",
43
- config: {
44
- main: {
45
- columnSpacing: 0,
46
- gap: 0,
47
- },
48
- wrapperStyle: {
49
- background: "transparent",
50
- marginBottom: 0
51
- },
52
- componentsBoxStyle: {
53
- flexDirection: "column",
54
- flexWrap: "nowrap",
55
- width: "100%",
56
- height: "inherit",
57
- background: "transparent",
58
- borderRadius: "0px",
59
- paddingRight: 0
60
- },
61
- layout: 12,
48
+ main: {
49
+ url: "https://www.svgrepo.com/show/500606/loading.svg",
50
+ },
51
+ style: {
52
+ containerStyle: {
53
+ position: "absolute",
54
+ color:"inherit",
55
+ top: "4px",
56
+ right: "4px",
57
+ display: "flex",
58
+ justifyContent: "flex-end",
59
+ alignItems: "flex-start",
60
+ },
61
+ imageStyle: {
62
+ color:"inherit",
63
+ width: "32px",
64
+ height: "32px",
65
+ padding: "0px",
66
+ margin: "0px",
62
67
  },
63
- elements: [
64
- {
65
- type: "WrapperLayout",
66
- config: {
67
- main: {
68
- columnSpacing: 0,
69
- gap: 0,
70
- },
71
- wrapperStyle: {
72
- background: "transparent",
73
- marginBottom: 0
74
- },
75
- componentsBoxStyle: {
76
- flexDirection: "row",
77
- flexWrap: "nowrap",
78
- width: "100%",
79
- height: "0",
80
- background: "transparent",
81
- borderRadius: "0px",
82
- marginLeft: "-10px",
83
- marginTop: "-8px",
84
- justifyContent: "start",
85
- position: "relative",
86
-
87
- },
88
- layout: 12,
89
- },
90
- elements: [
91
- {
92
- type: "Control",
93
- scope: "#/properties/programType",
94
- config: {
95
- main: {
96
- heading: "",
97
- },
98
- style: {
99
- color: "black",
100
- display: "flex",
101
- fontSize: { xs: "24px", md: "28px" },
102
- fontWeight: "bold",
103
- background: "inherit",
104
- justifyContent: "flex-start",
105
- width: "auto",
106
- margin: "-8px",
107
- marginLeft: "-24px",
108
- height: 0
109
- },
110
- // layout: 1,
111
- },
112
- options: {
113
- widget: "Box",
114
- },
115
- },
116
- {
117
- type: "Control",
118
- scope: "#/properties/programType",
119
- config: {
120
- main: {
121
- heading: "5000.00",
122
- },
123
- style: {
124
- color: "black",
125
- display: "flex",
126
- fontSize: { xs: "24px", md: "25px" },
127
- fontWeight: "bold",
128
- background: "inherit",
129
- justifyContent: "flex-start",
130
- width: "auto",
131
- margin: "-8px",
132
- marginTop: "-6px",
133
- position: "absolute",
134
- left: "7px",
135
- whiteSpace: "nowrap",
136
- overflowX: "auto",
137
- overflowY: "hidden",
138
- scrollbarWidth: "none",
139
- msOverflowStyle: "none",
140
- maxWidth: "calc(100% + 20px)",
141
- "&::-webkit-scrollbar": {
142
- display: "none",
143
- }
144
- },
145
- // layout: 11,
146
- },
147
- options: {
148
- widget: "Box",
149
- },
150
- },
151
- ],
152
- },
153
- {
154
- type: "Control",
155
- scope: "#/properties/programType",
156
- config: {
157
- main: {
158
- heading: "Total Earnings",
159
- },
160
- style: {
161
- color: "black",
162
- fontSize: "16px",
163
- justifyContent: "center",
164
- whiteSpace: "nowrap",
165
- overflowX: "auto",
166
- overflowY: "hidden",
167
- scrollbarWidth: "none",
168
- msOverflowStyle: "none",
169
- background: "inherit",
170
- width: "calc(100% + 8px)",
171
- margin: "-8px",
172
- marginTop: { xs: "16px", md: "20px" },
173
- "&::-webkit-scrollbar": {
174
- display: "none",
175
- }
176
- },
177
- layout: 12,
178
- },
179
-
180
- options: {
181
- widget: "Box",
182
- },
183
- },
184
- ],
185
68
  },
186
- ],
69
+ },
70
+ options: {
71
+ widget: "Image",
72
+ },
187
73
  },
188
74
  {
189
75
  type: "Control",
190
- scope: "#/properties/programType",
76
+ scope: "#/properties/initilCardScope",
191
77
  config: {
192
78
  main: {
193
- url: "https://www.svgrepo.com/show/500606/loading.svg",
79
+ heading: "Total Earnings",
194
80
  },
195
81
  style: {
196
- containerStyle: {
197
- height: "100%",
82
+ color: "inherit",
83
+ fontSize: "16px",
84
+ fontWeight: 300,
85
+ fontFamily:"Poppins",
86
+ justifyContent: "flex-start",
87
+ background: "inherit",
88
+ position: "absolute",
89
+ top: "8px",
90
+ left: "12px",
198
91
  display: "flex",
199
- justifyContent: "end",
92
+ maxWidth: "200px",
93
+ whiteSpace: "nowrap",
94
+ overflowX: "auto",
95
+ scrollbarWidth: "none",
96
+ "&::-webkit-scrollbar": {
97
+ display: "none",
200
98
  },
201
- imageStyle: {
202
- width: "unset",
203
- fontSize: "none",
204
- padding: "4px",
205
- margin: "0px 0px 0px 8px",
206
- height: "64px",
99
+ },
100
+ },
101
+ options: {
102
+ widget: "Box",
103
+ },
104
+ },
105
+ {
106
+ type: "Control",
107
+ scope: "#/properties/initilCardScope",
108
+ config: {
109
+ main: {
110
+ heading: "5000.00",
111
+ },
112
+ style: {
113
+ color: "inherit",
114
+ display: "flex",
115
+ fontSize: { xs: "22px", md: "40px" },
116
+ fontWeight: 600,
117
+ background: "inherit",
118
+ justifyContent: "flex-start",
119
+ width: "100%",
120
+ margin: "0px",
121
+ marginBottom: "4px",
122
+ marginTop: "8px",
123
+ lineHeight: "1",
124
+ maxWidth: "300px",
125
+ whiteSpace: "nowrap",
126
+ overflowX: "auto",
127
+ overflowY: "hidden",
128
+ scrollbarWidth: "none",
129
+
130
+ "&::-webkit-scrollbar": {
131
+ display: "none",
207
132
  },
208
133
  },
209
- layout: 3,
210
134
  },
211
135
  options: {
212
- widget: "Image",
136
+ widget: "Box",
137
+ },
138
+ },
139
+ {
140
+ type: "Control",
141
+ scope: "#/properties/initilCardScope",
142
+ config: {
143
+ main: {
144
+ heading: "Increased from last month",
145
+ },
146
+ style: {
147
+ color: "inherit",
148
+ fontSize: "12px",
149
+ fontWeight: "400",
150
+ justifyContent: "flex-start",
151
+ background: "inherit",
152
+ margin: "0px",
153
+ paddingLeft: "2px",
154
+ marginBottom:"8px",
155
+ maxWidth: "200px",
156
+ whiteSpace: "nowrap",
157
+ overflowX: "auto",
158
+ scrollbarWidth: "none",
159
+
160
+ "&::-webkit-scrollbar": {
161
+ display: "none",
162
+ },
163
+ },
164
+ },
165
+ options: {
166
+ widget: "Box",
213
167
  },
214
168
  },
215
169
  ],
@@ -173,7 +173,6 @@ export const CoreSection = {
173
173
  layout: { xs: 6, sm: 6, md: 4, lg: 4 },
174
174
  main: {
175
175
  label: "Screen Size",
176
-
177
176
  },
178
177
  },
179
178
  },
@@ -11,7 +11,7 @@ export const BarGraph = {
11
11
  type: "BarGraph",
12
12
  legendLabels: null
13
13
  },
14
- style: { containerStyle: {},labelStyle:{margin:{}} ,barStyle:{} }
14
+ style: { containerStyle: {},labelStyle:{margin:{}}}
15
15
  },
16
16
  };
17
17
 
@@ -27,7 +27,7 @@ export const PieGraph = {
27
27
  type: "PieGraph",
28
28
  legendLabels: null
29
29
  },
30
- style:{ containerStyle: {},labelStyle:{margin:{}} ,pieStyle:{} }
30
+ style:{ containerStyle: {},labelStyle:{margin:{}}}
31
31
  },
32
32
  };
33
33
  export const LineGraph = {
@@ -42,7 +42,7 @@ export const LineGraph = {
42
42
  type: "LineGraph",
43
43
  legendLabels: null
44
44
  },
45
- style: { containerStyle: {},labelStyle:{margin:{}} ,lineStyle:{} },
45
+ style: { containerStyle: {},labelStyle:{margin:{}}},
46
46
  },
47
47
  };
48
48
 
@@ -58,7 +58,7 @@ export const HorizontalBarGraph = {
58
58
  type: "HorizontalBarGraph",
59
59
  legendLabels: null
60
60
  },
61
- style:{ containerStyle: {},labelStyle:{margin:{}} ,barStyle:{} }
61
+ style:{ containerStyle: {},labelStyle:{margin:{}} }
62
62
  },
63
63
  };
64
64
 
@@ -69,12 +69,28 @@ export const AreaBarGraph = {
69
69
  widget: "Graph",
70
70
  },
71
71
  config: {
72
- layout: {xs :12,sm:12,md:12,lg:6},
72
+ layout: {xs :12,sm:12,md:12,lg:12},
73
73
  main: {
74
74
  type: "AreaGraph",
75
75
  legendLabels: null
76
76
  },
77
- style:{ containerStyle: {},labelStyle:{margin:{}} ,barStyle:{} }
77
+ style:{ containerStyle: {},labelStyle:{margin:{}} }
78
+ },
79
+ };
80
+
81
+ export const StackBarLineG = {
82
+ type: "Control",
83
+ scope: "#/properties/graph",
84
+ options: {
85
+ widget: "Graph",
86
+ },
87
+ config: {
88
+ layout: {xs :12,sm:12,md:12,lg:12},
89
+ main: {
90
+ type: "StackBarLineGraph",
91
+ legendLabels: null
92
+ },
93
+ style:{ containerStyle: {},labelStyle:{margin:{}} }
78
94
  },
79
95
  };
80
96
 
@@ -0,0 +1,13 @@
1
+ export const HierarchyChart = {
2
+ type: "Control",
3
+ scope: "#/properties/HierarchyChart",
4
+ options: {
5
+ widget: "HierarchyChart",
6
+ },
7
+ config: {
8
+ layout: {xs :12,sm:12,md:12,lg:12},
9
+ main: {
10
+ },
11
+ style:{ containerStyle: {},labelStyle:{margin:{}} }
12
+ },
13
+ };
@@ -0,0 +1,13 @@
1
+ export default {
2
+ type: "Control",
3
+ scope: "#/properties/metricpath",
4
+
5
+ options: {
6
+ widget: "MetricCard",
7
+ },
8
+ config: {
9
+ layout: { xs: 12, sm: 12, md: 3, lg: 3 },
10
+ main: {
11
+ },
12
+ },
13
+ };
@@ -14,5 +14,7 @@ export default {
14
14
  variant: "outlined",
15
15
  options: [],
16
16
  },
17
+ style: {
18
+ }
17
19
  },
18
20
  };
@@ -0,0 +1,18 @@
1
+ export default {
2
+ type: "Control",
3
+ scope: "#/properties/pdfviewer",
4
+ options: {
5
+ widget: "PdfViewer",
6
+ },
7
+ config: {
8
+ layout: {
9
+ xs: 12,
10
+ sm: 12,
11
+ md: 12,
12
+ lg: 12,
13
+ },
14
+ main: {
15
+ title: "PDF"
16
+ },
17
+ },
18
+ }
@@ -12,5 +12,7 @@ export default {
12
12
  type: "text",
13
13
  freeSole:false
14
14
  },
15
+ style: {
16
+ },
15
17
  },
16
18
  };
@@ -1,10 +1,10 @@
1
- export const TableSection = (theme) => {
1
+ export const TableSection = (theme,scopeName="elements") => {
2
2
  const uiSchema = {
3
3
  type: "HorizontalLayout",
4
4
  elements: [
5
5
  {
6
6
  type: "Control",
7
- scope: "#/properties/elements",
7
+ scope: `#/properties/${scopeName}`,
8
8
  options: {
9
9
  widget: "Table",
10
10
  },
@@ -15,8 +15,7 @@ export const TableSection = (theme) => {
15
15
  {
16
16
  widget: {
17
17
  type: "Control",
18
- scope: "#/properties/New_Record",
19
-
18
+ scope: `#/properties/${scopeName}_New_Record`,
20
19
  options: {
21
20
  widget: "IconButton",
22
21
  },
@@ -43,7 +42,7 @@ export const TableSection = (theme) => {
43
42
  {
44
43
  widget: {
45
44
  type: "Control",
46
- scope: "#/properties/Paste_Component",
45
+ scope: scopeName === "elements" ? `#/properties/Paste_Component` : `#/properties/Paste_TabsComponent`,
47
46
  options: {
48
47
  widget: "IconButton",
49
48
  },
@@ -109,7 +108,7 @@ export const TableSection = (theme) => {
109
108
  },
110
109
  {
111
110
  type: "Control",
112
- scope: "#/properties/Copy_Component",
111
+ scope: scopeName === "elements" ? `#/properties/Copy_Component` : `#/properties/Copy_TabsComponent`,
113
112
  options: {
114
113
  widget: "Button",
115
114
  },
@@ -3,9 +3,11 @@ export default {
3
3
  config: {
4
4
  layout: 12,
5
5
  main: {
6
- rowSpacing: 3,
7
6
  divider: true,
8
7
  label: "Default Label",
8
+ rowSpacing: 2,
9
+ columnSpacing:2,
10
+ spacing:2,
9
11
  },
10
12
  defaultStyle: true,
11
13
  },