impaktapps-ui-builder 1.0.621 → 1.0.622
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/impaktapps-ui-builder.es.js +2002 -897
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +15 -15
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/buildAreaGraph.d.ts +2 -0
- package/dist/src/impaktapps-ui-builder/builder/build/buildCamera.d.ts +1 -0
- package/dist/src/impaktapps-ui-builder/builder/build/buildConfig.d.ts +1 -0
- package/dist/src/impaktapps-ui-builder/builder/build/buildGroupButton.d.ts +1 -0
- package/dist/src/impaktapps-ui-builder/builder/build/buildHierarchyChart.d.ts +1 -0
- package/dist/src/impaktapps-ui-builder/builder/build/buildHorizontalLayout.d.ts +1 -0
- package/dist/src/impaktapps-ui-builder/builder/build/buildImage.d.ts +1 -0
- package/dist/src/impaktapps-ui-builder/builder/build/buildMetricCard.d.ts +1 -0
- package/dist/src/impaktapps-ui-builder/builder/build/buildOTP_inputs.d.ts +1 -0
- package/dist/src/impaktapps-ui-builder/builder/build/buildPdfViewer.d.ts +1 -0
- package/dist/src/impaktapps-ui-builder/builder/build/buildPopover.d.ts +1 -0
- package/dist/src/impaktapps-ui-builder/builder/build/buildStackBarLineGraph.d.ts +2 -0
- package/dist/src/impaktapps-ui-builder/builder/build/buildUiSchema.d.ts +2 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/box.d.ts +4 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.d.ts +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/buttonGroup.d.ts +22 -0
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/card.d.ts +173 -171
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/eventSection.d.ts +18 -50
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/graph.d.ts +50 -4
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/hierarchyChart.d.ts +22 -0
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/horizontalLayout.d.ts +13 -0
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/metricCard.d.ts +17 -0
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/multiSelect.d.ts +1 -0
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/pdfViewer.d.ts +19 -0
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/selectInputField.d.ts +1 -0
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/tableSection.d.ts +15 -66
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/wrapperSection.d.ts +3 -1
- package/dist/src/impaktapps-ui-builder/builder/services/utils.d.ts +2 -1
- package/dist/src/impaktapps-ui-builder/lib/index.d.ts +1 -0
- package/dist/src/impaktapps-ui-builder/runtime/services/downloadFile.d.ts +5 -2
- package/dist/src/impaktapps-ui-builder/runtime/services/service.d.ts +8 -4
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildAreaGraph.ts +66 -0
- package/src/impaktapps-ui-builder/builder/build/buildArray.ts +13 -0
- package/src/impaktapps-ui-builder/builder/build/buildCamera.ts +50 -0
- package/src/impaktapps-ui-builder/builder/build/buildCard.ts +10 -10
- package/src/impaktapps-ui-builder/builder/build/buildConfig.ts +23 -9
- package/src/impaktapps-ui-builder/builder/build/buildDate.ts +35 -13
- package/src/impaktapps-ui-builder/builder/build/buildDownloadFile.ts +7 -0
- package/src/impaktapps-ui-builder/builder/build/buildEmptyBox.ts +4 -0
- package/src/impaktapps-ui-builder/builder/build/buildFileInput.ts +42 -28
- package/src/impaktapps-ui-builder/builder/build/buildGroupButton.ts +24 -0
- package/src/impaktapps-ui-builder/builder/build/buildHierarchyChart.ts +35 -0
- package/src/impaktapps-ui-builder/builder/build/buildHorizontalBarGraph.ts +9 -3
- package/src/impaktapps-ui-builder/builder/build/buildHorizontalLayout.ts +15 -0
- package/src/impaktapps-ui-builder/builder/build/buildImage.ts +38 -0
- package/src/impaktapps-ui-builder/builder/build/buildLabel.ts +3 -0
- package/src/impaktapps-ui-builder/builder/build/buildLeaderboard.ts +3 -0
- package/src/impaktapps-ui-builder/builder/build/buildLineGraph.ts +9 -3
- package/src/impaktapps-ui-builder/builder/build/buildMetricCard.tsx +37 -0
- package/src/impaktapps-ui-builder/builder/build/buildMultiSelect.ts +9 -0
- package/src/impaktapps-ui-builder/builder/build/buildOTP_inputs.ts +44 -0
- package/src/impaktapps-ui-builder/builder/build/buildPdfViewer.ts +16 -0
- package/src/impaktapps-ui-builder/builder/build/buildPieGraph.ts +6 -3
- package/src/impaktapps-ui-builder/builder/build/buildPop.ts +1 -0
- package/src/impaktapps-ui-builder/builder/build/buildPopover.ts +40 -0
- package/src/impaktapps-ui-builder/builder/build/buildProgressBar.ts +31 -21
- package/src/impaktapps-ui-builder/builder/build/buildRadio.ts +10 -2
- package/src/impaktapps-ui-builder/builder/build/buildSelect.ts +9 -0
- package/src/impaktapps-ui-builder/builder/build/buildStackBarGraph.ts +9 -3
- package/src/impaktapps-ui-builder/builder/build/buildStackBarLineGraph.ts +72 -0
- package/src/impaktapps-ui-builder/builder/build/buildTabSection.ts +5 -0
- package/src/impaktapps-ui-builder/builder/build/buildTable.ts +21 -11
- package/src/impaktapps-ui-builder/builder/build/buildText.ts +9 -0
- package/src/impaktapps-ui-builder/builder/build/buildUiSchema.ts +144 -124
- package/src/impaktapps-ui-builder/builder/build/buildUplaodFile.ts +6 -0
- package/src/impaktapps-ui-builder/builder/build/buildWrapperSection.ts +7 -2
- package/src/impaktapps-ui-builder/builder/build/uischema/box.ts +4 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +315 -21
- package/src/impaktapps-ui-builder/builder/build/uischema/buttonGroup.ts +17 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/card.ts +142 -169
- package/src/impaktapps-ui-builder/builder/build/uischema/coreSection.ts +74 -19
- package/src/impaktapps-ui-builder/builder/build/uischema/eventSection.ts +30 -54
- package/src/impaktapps-ui-builder/builder/build/uischema/file.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/graph.ts +37 -4
- package/src/impaktapps-ui-builder/builder/build/uischema/hierarchyChart.ts +13 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/horizontalLayout.ts +11 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/metricCard.ts +13 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/multiSelect.ts +2 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/pdfViewer.ts +18 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/selectInputField.ts +2 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/tableSection.ts +34 -60
- package/src/impaktapps-ui-builder/builder/build/uischema/wrapperSection.ts +3 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +219 -75
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/uiSchema.ts +61 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +94 -106
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/schema.ts +4 -3
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +31 -55
- package/src/impaktapps-ui-builder/builder/services/component.ts +174 -86
- package/src/impaktapps-ui-builder/builder/services/event.ts +3 -0
- package/src/impaktapps-ui-builder/builder/services/pageMaster.ts +18 -15
- package/src/impaktapps-ui-builder/builder/services/utils.ts +15 -3
- package/src/impaktapps-ui-builder/lib/index.ts +10 -9
- package/src/impaktapps-ui-builder/runtime/services/downloadFile.ts +42 -22
- package/src/impaktapps-ui-builder/runtime/services/events.ts +9 -11
- package/src/impaktapps-ui-builder/runtime/services/service.ts +118 -158
|
@@ -7,9 +7,13 @@ export const ComponentSchema: any = {
|
|
|
7
7
|
{ title: "Masked Aadhar Card", const: "AadharcardText" },
|
|
8
8
|
{ title: "Array", const: "Array" },
|
|
9
9
|
{ title: "Button", const: "Button" },
|
|
10
|
+
{ title: "ButtonGroup", const: "ButtonGroup" },
|
|
10
11
|
{ title: "Data Card", const: "card" },
|
|
11
12
|
{ title: "Check Box", const: "CheckBox" },
|
|
13
|
+
{ title: "Camera", const: "Camera" },
|
|
14
|
+
{ title: "Column Group", const: "ColumnGroup" },
|
|
12
15
|
{ title: "Container", const: "WrapperSection" },
|
|
16
|
+
{ title: "Tab Container", const: "HorizontalLayout" },
|
|
13
17
|
{ title: "Data Grid", const: "DataGrid" },
|
|
14
18
|
{ title: "Date", const: "Date" },
|
|
15
19
|
{ title: "Time Stamp", const: "DateTime" },
|
|
@@ -17,12 +21,15 @@ export const ComponentSchema: any = {
|
|
|
17
21
|
{ title: "Empty Box", const: "EmptyBox" },
|
|
18
22
|
{ title: "File Handler", const: "FileInput" },
|
|
19
23
|
{ title: "Graph", const: "Graph" },
|
|
24
|
+
{ title: "Image", const: "Image" },
|
|
20
25
|
{ title: "Input Slider", const: "InputSlider" },
|
|
21
26
|
{ title: "Label", const: "Box" },
|
|
22
27
|
{ title: "Leaderboard", const: "LeaderBoard" },
|
|
23
28
|
{ title: "Multi-Select Dropdown", const: "MultipleSelect" },
|
|
29
|
+
{ title: "OTP_Input", const: "OTP_Input" },
|
|
24
30
|
{ title: "Pan Card Masked", const: "PanCardText" },
|
|
25
31
|
{ title: "Pop Up", const: "PopUp" },
|
|
32
|
+
{ title: "Pop Over", const: "PopOver" },
|
|
26
33
|
{ title: "Progress Bar", const: "ProgressBar" },
|
|
27
34
|
{ title: "Progress Bar Card", const: "ProgressBarCard" },
|
|
28
35
|
{ title: "Dropdown", const: "Select" },
|
|
@@ -32,6 +39,8 @@ export const ComponentSchema: any = {
|
|
|
32
39
|
{ title: "Radio", const: "Radio" },
|
|
33
40
|
{ title: "Rank", const: "Rank" },
|
|
34
41
|
{ title: "Rank Card", const: "RankCard" },
|
|
42
|
+
{ title: "Metric Card", const: "MetricCard" },
|
|
43
|
+
{ title: "Hierarchy Chart", const: "HierarchyChart" },
|
|
35
44
|
{ title: "Runner Boy", const: "RunnerBoyProgressBar" },
|
|
36
45
|
{ title: "Table", const: "Table" },
|
|
37
46
|
{ title: "Tabs", const: "TabSection" },
|
|
@@ -40,36 +49,115 @@ export const ComponentSchema: any = {
|
|
|
40
49
|
{ title: "Timer", const: "Timer" },
|
|
41
50
|
{ title: "Upload", const: "UploadFile" },
|
|
42
51
|
{ title: "Tree ", const: "TreeMap" },
|
|
43
|
-
{ title: "
|
|
44
|
-
{ title: "
|
|
45
|
-
]
|
|
52
|
+
{ title: "Thought of the day", const: "Thought" },
|
|
53
|
+
{ title: "PDF", const: "PdfViewer" }
|
|
54
|
+
],
|
|
46
55
|
},
|
|
47
56
|
elementType: {
|
|
48
57
|
oneOf: [
|
|
49
58
|
{ title: "Table Action Element", const: "action" },
|
|
50
59
|
{ title: "Table Header Element", const: "tableHeader" },
|
|
51
60
|
{ title: "Table Element", const: "element" },
|
|
52
|
-
]
|
|
61
|
+
],
|
|
53
62
|
},
|
|
54
63
|
columnFormat: {
|
|
55
64
|
oneOf: [
|
|
56
65
|
{ title: "Date Column", const: "date" },
|
|
57
66
|
{ title: "DateTime Column", const: "dateTime" },
|
|
58
67
|
{ title: "Amount Column", const: "amount" },
|
|
59
|
-
|
|
68
|
+
{ title: "Center Column", const: "action" },
|
|
69
|
+
],
|
|
70
|
+
},
|
|
71
|
+
dateFormat: {
|
|
72
|
+
oneOf: [
|
|
73
|
+
{
|
|
74
|
+
title: "YYYY-MM-DDTHH:mm:ss.SSSZ",
|
|
75
|
+
const: "YYYY-MM-DDTHH:mm:ss.SSSZ",
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
title: "YYYY-MM-DDTHH:mm:ssZ",
|
|
79
|
+
const: "YYYY-MM-DDTHH:mm:ssZ",
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
title: "YYYY-MM-DDTHH:mm:ss",
|
|
83
|
+
const: "YYYY-MM-DDTHH:mm:ss",
|
|
84
|
+
},
|
|
85
|
+
{ title: "YYYY-MM-DD", const: "YYYY-MM-DD" },
|
|
86
|
+
{ title: "DD-MM-YYYY", const: "DD-MM-YYYY" },
|
|
87
|
+
{ title: "MM/DD/YYYY", const: "MM/DD/YYYY" },
|
|
88
|
+
{
|
|
89
|
+
title: "YYYY-MM-DD HH:mm:ss",
|
|
90
|
+
const: "YYYY-MM-DD HH:mm:ss",
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
title: "YYYY-MM-DD HH:mm:ss.SSS",
|
|
94
|
+
const: "YYYY-MM-DD HH:mm:ss.SSS",
|
|
95
|
+
},
|
|
96
|
+
{ title: "Milliseconds", const: "x" },
|
|
97
|
+
{ title: "Seconds", const: "X" },
|
|
98
|
+
],
|
|
60
99
|
},
|
|
61
100
|
variant: {
|
|
62
101
|
oneOf: [
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
102
|
+
{ title: "Outlined", const: "outlined" },
|
|
103
|
+
{ title: "Filled", const: "filled" },
|
|
104
|
+
{ title: "Standard", const: "standard" },
|
|
105
|
+
],
|
|
106
|
+
},
|
|
107
|
+
linkType:{
|
|
108
|
+
oneOf:[
|
|
109
|
+
{ title: "Step", const: "step" },
|
|
110
|
+
{ title: "Diagonal", const: "diagonal" },
|
|
111
|
+
{ title: "Line", const: "line" },
|
|
112
|
+
]
|
|
113
|
+
},
|
|
114
|
+
positionVertical:{
|
|
115
|
+
oneOf: [
|
|
116
|
+
{ title: "Top", const: "top" },
|
|
117
|
+
{ title: "Center", const: "center" },
|
|
118
|
+
{ title: "Bottom", const: "bottom" }
|
|
119
|
+
],
|
|
120
|
+
},
|
|
121
|
+
positionHorizontal: {
|
|
122
|
+
oneOf: [
|
|
123
|
+
{ title: "Left", const: "left" },
|
|
124
|
+
{ title: "Center", const: "center" },
|
|
125
|
+
{ title: "Right", const: "right" }
|
|
126
|
+
],
|
|
127
|
+
},
|
|
128
|
+
contentVertical: {
|
|
129
|
+
oneOf: [
|
|
130
|
+
{ title: "Top", const: "top" },
|
|
131
|
+
{ title: "Center", const: "center" },
|
|
132
|
+
{ title: "Bottom", const: "bottom" }
|
|
133
|
+
],
|
|
134
|
+
},
|
|
135
|
+
contentHorizontal: {
|
|
136
|
+
oneOf: [
|
|
137
|
+
{ title: "Left", const: "left" },
|
|
138
|
+
{ title: "Center", const: "center" },
|
|
139
|
+
{ title: "Right", const: "right" }
|
|
140
|
+
],
|
|
141
|
+
},
|
|
142
|
+
toolTipPosition: {
|
|
143
|
+
oneOf: [
|
|
144
|
+
{ title: "Top", const: "top" },
|
|
145
|
+
{ title: "Left", const: "left" },
|
|
146
|
+
{ title: "Right", const: "right" },
|
|
147
|
+
{ title: "Bottom", const: "bottom" }
|
|
148
|
+
],
|
|
149
|
+
},
|
|
150
|
+
growthRate: {
|
|
151
|
+
oneOf: [
|
|
152
|
+
{ title: "Positive", const: "positive" },
|
|
153
|
+
{ title: "Negative", const: "negative" }
|
|
154
|
+
],
|
|
67
155
|
},
|
|
68
156
|
orientation: {
|
|
69
157
|
oneOf: [
|
|
70
158
|
{ title: "Horizontal", const: "horizontal" },
|
|
71
159
|
{ title: "Vertical", const: "vertical" },
|
|
72
|
-
]
|
|
160
|
+
],
|
|
73
161
|
},
|
|
74
162
|
method: {
|
|
75
163
|
type: "string",
|
|
@@ -78,7 +166,41 @@ export const ComponentSchema: any = {
|
|
|
78
166
|
{ title: "Post", const: "post" },
|
|
79
167
|
{ title: "Delete", const: "delete" },
|
|
80
168
|
{ title: "Put", const: "put" },
|
|
81
|
-
]
|
|
169
|
+
],
|
|
170
|
+
},
|
|
171
|
+
maxPageSize: {
|
|
172
|
+
type: "number",
|
|
173
|
+
oneOf: [
|
|
174
|
+
{ title: "10", const: 10 },
|
|
175
|
+
{ title: "20", const: 20 },
|
|
176
|
+
{ title: "30", const: 30 },
|
|
177
|
+
{ title: "50", const: 50 },
|
|
178
|
+
{ title: "100", const: 100 },
|
|
179
|
+
{ title: "500", const: 500 },
|
|
180
|
+
],
|
|
181
|
+
},
|
|
182
|
+
initialDensity: {
|
|
183
|
+
type: "string",
|
|
184
|
+
oneOf: [
|
|
185
|
+
{ title: "Compact", const: "compact" },
|
|
186
|
+
{ title: "Comfortable", const: "comfortable" },
|
|
187
|
+
{ title: "Spacious", const: "spacious" },
|
|
188
|
+
],
|
|
189
|
+
},
|
|
190
|
+
xAxisFormatType: {
|
|
191
|
+
type: "string",
|
|
192
|
+
oneOf: [
|
|
193
|
+
{ title: "Date and Month", const: "Date and Month" },
|
|
194
|
+
{ title: "Month and Year", const: "Month and Year" }
|
|
195
|
+
],
|
|
196
|
+
},
|
|
197
|
+
xAxisType: {
|
|
198
|
+
type: "string",
|
|
199
|
+
oneOf: [
|
|
200
|
+
{ title: "Date", const: "date" },
|
|
201
|
+
{ title: "String", const: "string" },
|
|
202
|
+
{ title: "Number", const: "number" }
|
|
203
|
+
],
|
|
82
204
|
},
|
|
83
205
|
layout: {
|
|
84
206
|
type: "array",
|
|
@@ -94,9 +216,7 @@ export const ComponentSchema: any = {
|
|
|
94
216
|
{ title: "Large", const: "lg" },
|
|
95
217
|
],
|
|
96
218
|
},
|
|
97
|
-
value: {
|
|
98
|
-
|
|
99
|
-
},
|
|
219
|
+
value: {},
|
|
100
220
|
},
|
|
101
221
|
},
|
|
102
222
|
},
|
|
@@ -114,9 +234,7 @@ export const ComponentSchema: any = {
|
|
|
114
234
|
{ title: "Large", const: "lg" },
|
|
115
235
|
],
|
|
116
236
|
},
|
|
117
|
-
value: {
|
|
118
|
-
|
|
119
|
-
},
|
|
237
|
+
value: {},
|
|
120
238
|
},
|
|
121
239
|
},
|
|
122
240
|
},
|
|
@@ -173,7 +291,6 @@ export const ComponentSchema: any = {
|
|
|
173
291
|
label: {
|
|
174
292
|
type: "string",
|
|
175
293
|
},
|
|
176
|
-
|
|
177
294
|
},
|
|
178
295
|
},
|
|
179
296
|
},
|
|
@@ -185,7 +302,6 @@ export const ComponentSchema: any = {
|
|
|
185
302
|
KeyName: {
|
|
186
303
|
type: "string",
|
|
187
304
|
},
|
|
188
|
-
|
|
189
305
|
},
|
|
190
306
|
},
|
|
191
307
|
},
|
|
@@ -198,8 +314,8 @@ export const ComponentSchema: any = {
|
|
|
198
314
|
type: "string",
|
|
199
315
|
},
|
|
200
316
|
value: {
|
|
201
|
-
type: "string"
|
|
202
|
-
}
|
|
317
|
+
type: "string",
|
|
318
|
+
},
|
|
203
319
|
},
|
|
204
320
|
},
|
|
205
321
|
},
|
|
@@ -216,19 +332,19 @@ export const ComponentSchema: any = {
|
|
|
216
332
|
},
|
|
217
333
|
filteringOptions: {
|
|
218
334
|
oneOf: [
|
|
219
|
-
{ const:
|
|
220
|
-
{ const:
|
|
221
|
-
{ const:
|
|
222
|
-
{ const:
|
|
223
|
-
{ const:
|
|
224
|
-
{ const:
|
|
225
|
-
{ const:
|
|
226
|
-
{ const:
|
|
227
|
-
{ const:
|
|
228
|
-
{ const:
|
|
229
|
-
{ const:
|
|
230
|
-
{ const:
|
|
231
|
-
]
|
|
335
|
+
{ const: "fuzzy", title: "Fuzzy" },
|
|
336
|
+
{ const: "contains", title: "Contain" },
|
|
337
|
+
{ const: "startsWith", title: "Starts with" },
|
|
338
|
+
{ const: "endsWith", title: "Ends with" },
|
|
339
|
+
{ const: "equals", title: "Equals" },
|
|
340
|
+
{ const: "notEquals", title: "Not Equals" },
|
|
341
|
+
{ const: "between", title: "Between" },
|
|
342
|
+
{ const: "betweenInclusive", title: "Between inclusive" },
|
|
343
|
+
{ const: "greaterThan", title: "Greater than" },
|
|
344
|
+
{ const: "greaterThanOrEqualTo", title: "Greater than or equal to" },
|
|
345
|
+
{ const: "lessThan", title: "Less than" },
|
|
346
|
+
{ const: "lessThanOrEqualTo", title: "Less than or equal to" },
|
|
347
|
+
],
|
|
232
348
|
},
|
|
233
349
|
|
|
234
350
|
legendLabels: {
|
|
@@ -236,10 +352,12 @@ export const ComponentSchema: any = {
|
|
|
236
352
|
items: {
|
|
237
353
|
type: "object",
|
|
238
354
|
properties: {
|
|
355
|
+
key: {
|
|
356
|
+
type: "string",
|
|
357
|
+
},
|
|
239
358
|
label: {
|
|
240
359
|
type: "string",
|
|
241
360
|
},
|
|
242
|
-
|
|
243
361
|
},
|
|
244
362
|
},
|
|
245
363
|
},
|
|
@@ -248,10 +366,23 @@ export const ComponentSchema: any = {
|
|
|
248
366
|
items: {
|
|
249
367
|
type: "object",
|
|
250
368
|
properties: {
|
|
369
|
+
key: {
|
|
370
|
+
type: "string",
|
|
371
|
+
},
|
|
251
372
|
label: {
|
|
252
373
|
type: "string",
|
|
253
374
|
},
|
|
254
|
-
|
|
375
|
+
},
|
|
376
|
+
},
|
|
377
|
+
},
|
|
378
|
+
tabIcons: {
|
|
379
|
+
type: "array",
|
|
380
|
+
items: {
|
|
381
|
+
type: "object",
|
|
382
|
+
properties: {
|
|
383
|
+
url: {
|
|
384
|
+
type: "string",
|
|
385
|
+
},
|
|
255
386
|
},
|
|
256
387
|
},
|
|
257
388
|
},
|
|
@@ -263,7 +394,6 @@ export const ComponentSchema: any = {
|
|
|
263
394
|
formatElement: {
|
|
264
395
|
type: "string",
|
|
265
396
|
},
|
|
266
|
-
|
|
267
397
|
},
|
|
268
398
|
},
|
|
269
399
|
},
|
|
@@ -274,7 +404,6 @@ export const ComponentSchema: any = {
|
|
|
274
404
|
properties: {
|
|
275
405
|
componentName: {
|
|
276
406
|
type: "string",
|
|
277
|
-
|
|
278
407
|
},
|
|
279
408
|
validationType: {
|
|
280
409
|
type: "string",
|
|
@@ -283,7 +412,8 @@ export const ComponentSchema: any = {
|
|
|
283
412
|
{ const: "minLength", title: "Minimum Length" },
|
|
284
413
|
{ const: "maxLength", title: "Maximum Length" },
|
|
285
414
|
{ const: "pattern", title: "Pattern" },
|
|
286
|
-
|
|
415
|
+
{ const: "readOnly", title: "Read Only" },
|
|
416
|
+
],
|
|
287
417
|
},
|
|
288
418
|
validationValue: {
|
|
289
419
|
type: "string",
|
|
@@ -297,14 +427,14 @@ export const ComponentSchema: any = {
|
|
|
297
427
|
{ title: "Button", const: "Button" },
|
|
298
428
|
{ title: "IconButton", const: "IconButton" },
|
|
299
429
|
{ title: "HybridButton", const: "ButtonWithIconAndText" },
|
|
300
|
-
]
|
|
430
|
+
],
|
|
301
431
|
},
|
|
302
432
|
defaultStyle: {
|
|
303
433
|
type: "string",
|
|
304
434
|
oneOf: [
|
|
305
435
|
{ title: "Apply Default Style", const: "true" },
|
|
306
436
|
{ title: "No Style", const: "false" },
|
|
307
|
-
]
|
|
437
|
+
],
|
|
308
438
|
},
|
|
309
439
|
graphType: {
|
|
310
440
|
type: "string",
|
|
@@ -314,8 +444,13 @@ export const ComponentSchema: any = {
|
|
|
314
444
|
{ title: "Line Graph", const: "LineGraph" },
|
|
315
445
|
{ title: "Pie Graph", const: "PieGraph" },
|
|
316
446
|
{ title: "Horizontal Bar Graph", const: "HorizontalBarGraph" },
|
|
317
|
-
{
|
|
318
|
-
|
|
447
|
+
{
|
|
448
|
+
title: "Stack Horizontal Bar Graph",
|
|
449
|
+
const: "HorizontalStackBarGraph",
|
|
450
|
+
},
|
|
451
|
+
{ title: "Area Graph", const: "AreaGraph" },
|
|
452
|
+
{ title: "StackBar And Line Graph", const: "StackBarLineGraph" },
|
|
453
|
+
],
|
|
319
454
|
},
|
|
320
455
|
iconName: {
|
|
321
456
|
type: "string",
|
|
@@ -336,34 +471,44 @@ export const ComponentSchema: any = {
|
|
|
336
471
|
{ title: "Error Icon", const: "ErrorIcon" },
|
|
337
472
|
{ title: "Refresh Icon", const: "RefreshIcon" },
|
|
338
473
|
{ title: "Download Icon", const: "DownloadIcon" },
|
|
474
|
+
{ title: "Download All Icon", const: "DownloadAllIcon" },
|
|
339
475
|
{ title: "Exception Icon", const: "ExceptionIcon" },
|
|
340
|
-
{
|
|
341
|
-
{
|
|
342
|
-
{
|
|
343
|
-
{
|
|
344
|
-
{
|
|
345
|
-
{
|
|
346
|
-
{
|
|
347
|
-
{
|
|
348
|
-
{
|
|
349
|
-
{
|
|
350
|
-
{
|
|
351
|
-
{
|
|
352
|
-
{
|
|
353
|
-
{
|
|
354
|
-
{
|
|
355
|
-
{
|
|
356
|
-
{
|
|
357
|
-
{
|
|
358
|
-
{
|
|
359
|
-
{
|
|
360
|
-
{
|
|
361
|
-
{
|
|
362
|
-
{
|
|
363
|
-
{
|
|
364
|
-
{
|
|
365
|
-
{
|
|
366
|
-
|
|
476
|
+
{ title: "Alarm Icon", const: "AlarmIcon" },
|
|
477
|
+
{ title: "Click Icon", const: "ClickIcon" },
|
|
478
|
+
{ title: "Content Copy Icon", const: "ContentCopyIcon" },
|
|
479
|
+
{ title: "File Copy Icon", const: "FileCopyIcon" },
|
|
480
|
+
{ title: "Pause Icon", const: "PauseIcon" },
|
|
481
|
+
{ title: "Play Icon", const: "PlayIcon" },
|
|
482
|
+
{ title: "Close Icon", const: "CloseIcon" },
|
|
483
|
+
{ title: "Replay Icon", const: "ReplayIcon" },
|
|
484
|
+
{ title: "Delete Icon", const: "DeleteIcon" },
|
|
485
|
+
{ title: "Drafts Icon", const: "DraftsIcon" },
|
|
486
|
+
{ title: "Perm Phone Msg Icon", const: "PermPhoneMsgIcon" },
|
|
487
|
+
{ title: "Paste Icon", const: "PasteIcon" },
|
|
488
|
+
{ title: "Calendar", const: "Calendar" },
|
|
489
|
+
{ title: "Prev Icon", const: "PrevIcon" },
|
|
490
|
+
{ title: "Verified Icon", const: "VerifiedIcon" },
|
|
491
|
+
{ title: "Table Add Icon", const: "TableAddIcon" },
|
|
492
|
+
{ title: "Table Download Icon", const: "TableDownloadIcon" },
|
|
493
|
+
{ title: "Audit Trail Icon", const: "AuditTrailIcon" },
|
|
494
|
+
{ title: "View Component", const: "View" },
|
|
495
|
+
{ title: "Table Edit Icon", const: "TableEditIcon" },
|
|
496
|
+
{ title: "Maximize Icon", const: "Maximize" },
|
|
497
|
+
{ title: "Minimize Icon", const: "Minimize" },
|
|
498
|
+
{ title: "Subtract Icon", const: "Subtract" },
|
|
499
|
+
{ title: "Bin Icon", const: "Bin" },
|
|
500
|
+
{ title: "Export Icon", const: "Export" },
|
|
501
|
+
{ title: "Table Paste Icon", const: "TablePaste" },
|
|
502
|
+
{ title: "Clone Icon", const: "CloneIcon" },
|
|
503
|
+
{ title: "Detail Icon", const: "DetailIcon" },
|
|
504
|
+
{ title: "Report View Icon", const: "ReportViewIcon" },
|
|
505
|
+
{ title: "Payout", const: "Payout" },
|
|
506
|
+
{ title: "Info Outlined", const: "InfoOutlinedIcon" },
|
|
507
|
+
{ title: "Territory Add", const: "TerritoryAdd" },
|
|
508
|
+
{ title: "Territory Edit", const: "TerritoryEdit" },
|
|
509
|
+
{ title: "Territory Delete", const: "TerritoryDelete" },
|
|
510
|
+
{ title: "Git Compare", const: "GitCompare" },
|
|
511
|
+
],
|
|
367
512
|
},
|
|
368
513
|
color: {
|
|
369
514
|
type: "string",
|
|
@@ -373,19 +518,18 @@ export const ComponentSchema: any = {
|
|
|
373
518
|
{ title: "Error", const: "error" },
|
|
374
519
|
{ title: "Success", const: "success" },
|
|
375
520
|
{ title: "Info", const: "info" },
|
|
376
|
-
]
|
|
521
|
+
],
|
|
377
522
|
},
|
|
378
523
|
pageName: {
|
|
379
|
-
path: []
|
|
524
|
+
path: [],
|
|
380
525
|
},
|
|
381
526
|
name: {
|
|
382
527
|
type: "string",
|
|
383
528
|
},
|
|
384
|
-
label: { type:
|
|
529
|
+
label: { type: "string" },
|
|
385
530
|
RemoveItemButton: {
|
|
386
531
|
disabled: true,
|
|
387
532
|
},
|
|
388
533
|
},
|
|
389
|
-
|
|
390
|
-
required: ["name",]
|
|
534
|
+
required: ["name"],
|
|
391
535
|
};
|
|
@@ -92,7 +92,67 @@ export const componentBasicUiSchema: any = (theme) => {
|
|
|
92
92
|
},
|
|
93
93
|
{
|
|
94
94
|
type: "Control",
|
|
95
|
-
scope: "#/properties/
|
|
95
|
+
scope: "#/properties/proc5",
|
|
96
|
+
config: {
|
|
97
|
+
layout: { xs: 6, sm: 6, md: 0, lg: 3 },
|
|
98
|
+
},
|
|
99
|
+
options: {
|
|
100
|
+
widget: "EmptyBox",
|
|
101
|
+
},
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
type: "Control",
|
|
105
|
+
scope: "#/properties/proc6",
|
|
106
|
+
config: {
|
|
107
|
+
layout: { xs: 6, sm: 6, md: 0, lg: 3 },
|
|
108
|
+
},
|
|
109
|
+
options: {
|
|
110
|
+
widget: "EmptyBox",
|
|
111
|
+
},
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
type: "Control",
|
|
115
|
+
scope: "#/properties/proc7",
|
|
116
|
+
config: {
|
|
117
|
+
layout: { xs: 6, sm: 6, md: 0, lg: 3 },
|
|
118
|
+
},
|
|
119
|
+
options: {
|
|
120
|
+
widget: "EmptyBox",
|
|
121
|
+
},
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
type: "Control",
|
|
125
|
+
scope: "#/properties/proc8",
|
|
126
|
+
config: {
|
|
127
|
+
layout: { xs: 6, sm: 6, md: 0, lg: 3 },
|
|
128
|
+
},
|
|
129
|
+
options: {
|
|
130
|
+
widget: "EmptyBox",
|
|
131
|
+
},
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
type: "Control",
|
|
135
|
+
scope: "#/properties/proc9",
|
|
136
|
+
config: {
|
|
137
|
+
layout: { xs: 6, sm: 6, md: 0, lg: 3 },
|
|
138
|
+
},
|
|
139
|
+
options: {
|
|
140
|
+
widget: "EmptyBox",
|
|
141
|
+
},
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
type: "Control",
|
|
145
|
+
scope: "#/properties/proc10",
|
|
146
|
+
config: {
|
|
147
|
+
layout: { xs: 6, sm: 6, md: 0, lg: 3 },
|
|
148
|
+
},
|
|
149
|
+
options: {
|
|
150
|
+
widget: "EmptyBox",
|
|
151
|
+
},
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
type: "Control",
|
|
155
|
+
scope: "#/properties/proc11",
|
|
96
156
|
config: {
|
|
97
157
|
layout: { xs: 6, sm: 6, md: 0, lg: 3 },
|
|
98
158
|
},
|