impaktapps-ui-builder 1.0.4 → 1.0.9-4.card.2
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 +704 -684
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +14 -14
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/buildArray.d.ts +1 -11
- package/dist/src/impaktapps-ui-builder/builder/build/buildConfig.d.ts +1 -1
- 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/uischema/apiSection.d.ts +1 -3
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/box.d.ts +9 -2
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/button.d.ts +6 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/card.d.ts +2 -0
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/coreSection.d.ts +82 -72
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/eventSection.d.ts +18 -50
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/horizontalLayout.d.ts +13 -0
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/refresh.d.ts +0 -3
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/table.d.ts +1 -0
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/tableSection.d.ts +14 -65
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/validationSections.d.ts +48 -38
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/valueTab.d.ts +0 -3
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/wrapperSection.d.ts +1 -0
- package/dist/src/impaktapps-ui-builder/runtime/services/service.d.ts +3 -0
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildAadharCard.ts +2 -2
- package/src/impaktapps-ui-builder/builder/build/buildArray.ts +31 -15
- package/src/impaktapps-ui-builder/builder/build/buildButton.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildCheckbox.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildConfig.ts +20 -16
- package/src/impaktapps-ui-builder/builder/build/buildDataGrid.ts +2 -2
- package/src/impaktapps-ui-builder/builder/build/buildDate.ts +6 -0
- package/src/impaktapps-ui-builder/builder/build/buildDownloadFile.ts +1 -0
- package/src/impaktapps-ui-builder/builder/build/buildFileInput.ts +4 -1
- package/src/impaktapps-ui-builder/builder/build/buildHorizontalBarGraph.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildHorizontalLayout.ts +15 -0
- package/src/impaktapps-ui-builder/builder/build/buildImage.ts +35 -0
- package/src/impaktapps-ui-builder/builder/build/buildLabel.ts +3 -0
- package/src/impaktapps-ui-builder/builder/build/buildLeaderboard.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildLineGraph.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildMultiSelect.ts +3 -0
- package/src/impaktapps-ui-builder/builder/build/buildPieGraph.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildPop.ts +2 -2
- package/src/impaktapps-ui-builder/builder/build/buildRadio.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildSelect.ts +3 -0
- package/src/impaktapps-ui-builder/builder/build/buildStackBarGraph.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildTabSection.ts +3 -0
- package/src/impaktapps-ui-builder/builder/build/buildText.ts +6 -0
- package/src/impaktapps-ui-builder/builder/build/buildTextArea.ts +2 -2
- package/src/impaktapps-ui-builder/builder/build/buildThoughtOfTheDay.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildTreeMap.ts +2 -1
- package/src/impaktapps-ui-builder/builder/build/buildUiSchema.ts +27 -14
- package/src/impaktapps-ui-builder/builder/build/buildWrapperSection.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/apiSection.ts +0 -6
- package/src/impaktapps-ui-builder/builder/build/uischema/array.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/box.ts +4 -2
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +146 -130
- package/src/impaktapps-ui-builder/builder/build/uischema/button.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/card.ts +5 -3
- package/src/impaktapps-ui-builder/builder/build/uischema/coreSection.ts +58 -119
- package/src/impaktapps-ui-builder/builder/build/uischema/dateInputField.ts +2 -2
- package/src/impaktapps-ui-builder/builder/build/uischema/emptyBox.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/eventSection.ts +30 -54
- package/src/impaktapps-ui-builder/builder/build/uischema/file.ts +3 -3
- package/src/impaktapps-ui-builder/builder/build/uischema/horizontalLayout.ts +11 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/multiSelect.ts +2 -2
- package/src/impaktapps-ui-builder/builder/build/uischema/refresh.ts +0 -3
- package/src/impaktapps-ui-builder/builder/build/uischema/selectInputField.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/table.ts +1 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/tableSection.ts +29 -54
- package/src/impaktapps-ui-builder/builder/build/uischema/textInputField.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/validationSections.ts +58 -113
- package/src/impaktapps-ui-builder/builder/build/uischema/valueTab.ts +0 -3
- package/src/impaktapps-ui-builder/builder/build/uischema/wrapperSection.ts +1 -0
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +51 -15
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/uiSchema.ts +60 -118
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/schema.ts +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +77 -106
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/schema.ts +9 -4
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +31 -55
- package/src/impaktapps-ui-builder/builder/services/component.ts +10 -4
- package/src/impaktapps-ui-builder/runtime/services/service.ts +22 -118
|
@@ -6,7 +6,7 @@ export default {
|
|
|
6
6
|
},
|
|
7
7
|
|
|
8
8
|
config: {
|
|
9
|
-
layout: { xs: 6, sm: 6, md: 4, lg:
|
|
9
|
+
layout: { xs: 6, sm: 6, md: 4, lg: 3 },
|
|
10
10
|
main: {
|
|
11
11
|
label: "",
|
|
12
12
|
type: "date",
|
|
@@ -21,7 +21,7 @@ export const DateTime = {
|
|
|
21
21
|
},
|
|
22
22
|
|
|
23
23
|
config: {
|
|
24
|
-
layout: { xs: 6, sm: 6, md: 4, lg:
|
|
24
|
+
layout: { xs: 6, sm: 6, md: 4, lg: 3 },
|
|
25
25
|
main: {
|
|
26
26
|
label: "DateTime",
|
|
27
27
|
type: "date",
|
|
@@ -74,95 +74,71 @@ export const EventSection = (theme)=>{
|
|
|
74
74
|
enableDrag: true,
|
|
75
75
|
|
|
76
76
|
},
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
{
|
|
81
|
-
accessorKey: "eventType",
|
|
82
|
-
header: "Event's Type",
|
|
83
|
-
type: "string",
|
|
84
|
-
size: 300,
|
|
85
|
-
},
|
|
86
|
-
{
|
|
87
|
-
accessorKey: "Handler",
|
|
88
|
-
header: "Handler",
|
|
89
|
-
type: "string",
|
|
90
|
-
size: 200,
|
|
91
|
-
},
|
|
92
|
-
{
|
|
93
|
-
accessorKey: "Edit_Approve_Records",
|
|
94
|
-
header: "Edit",
|
|
95
|
-
size: 150,
|
|
96
|
-
type: "action",
|
|
97
|
-
widget: {
|
|
77
|
+
action: [
|
|
78
|
+
{
|
|
98
79
|
type: "Control",
|
|
99
80
|
scope: "#/properties/Edit_Records",
|
|
100
81
|
options: {
|
|
101
|
-
widget: "
|
|
82
|
+
widget: "Button",
|
|
102
83
|
},
|
|
103
84
|
config: {
|
|
104
85
|
main: {
|
|
105
86
|
size: "small",
|
|
106
|
-
|
|
87
|
+
startIcon: "EditIcon",
|
|
107
88
|
tooltipMessage: "Edit This Record",
|
|
108
89
|
onClick: "eventEditHandler",
|
|
109
|
-
|
|
110
|
-
style: {
|
|
111
|
-
fill: theme.palette.primary.main,
|
|
112
|
-
"& :hover": {
|
|
113
|
-
fill: theme.palette.primary.dark,
|
|
114
|
-
},
|
|
90
|
+
name: "Edit"
|
|
115
91
|
},
|
|
116
92
|
},
|
|
117
93
|
},
|
|
118
|
-
|
|
119
|
-
{
|
|
120
|
-
accessorKey: "Reject_Records",
|
|
121
|
-
header: "Delete",
|
|
122
|
-
size: 150,
|
|
123
|
-
type: "action",
|
|
124
|
-
widget: {
|
|
94
|
+
{
|
|
125
95
|
type: "Control",
|
|
126
96
|
scope: "#/properties/RejectButton",
|
|
127
97
|
accessorKeyName: "Reject_Records",
|
|
128
98
|
options: {
|
|
129
|
-
widget: "
|
|
99
|
+
widget: "Button",
|
|
130
100
|
},
|
|
131
101
|
config: {
|
|
132
102
|
main: {
|
|
133
|
-
|
|
103
|
+
startIcon: "Bin",
|
|
134
104
|
tooltipMessage: "Reject This Record",
|
|
135
105
|
onClick: "deletePopUpEvent",
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
fill: theme.palette.primary.main,
|
|
139
|
-
"& :hover": {
|
|
140
|
-
fill: theme.palette.primary.dark,
|
|
141
|
-
},
|
|
106
|
+
name: "Delete",
|
|
107
|
+
size: "small"
|
|
142
108
|
},
|
|
143
109
|
},
|
|
144
110
|
},
|
|
145
|
-
|
|
146
|
-
{
|
|
147
|
-
header: "Copy",
|
|
148
|
-
field: "Copy_Event",
|
|
149
|
-
size: 150,
|
|
150
|
-
type: "action",
|
|
151
|
-
widget: {
|
|
111
|
+
{
|
|
152
112
|
type: "Control",
|
|
153
113
|
scope: "#/properties/Copy_Event",
|
|
154
114
|
options: {
|
|
155
|
-
widget: "
|
|
115
|
+
widget: "Button",
|
|
156
116
|
},
|
|
157
117
|
config: {
|
|
158
118
|
main: {
|
|
159
|
-
|
|
119
|
+
startIcon: "FileCopyIcon",
|
|
160
120
|
onClick: "copyPasteElement",
|
|
161
121
|
tooltipMessage: "Reject This Record",
|
|
162
|
-
styleDefault:
|
|
122
|
+
styleDefault: false,
|
|
123
|
+
name: "Copy"
|
|
163
124
|
},
|
|
164
125
|
},
|
|
165
126
|
},
|
|
127
|
+
]
|
|
128
|
+
},
|
|
129
|
+
elements: [
|
|
130
|
+
|
|
131
|
+
{
|
|
132
|
+
accessorKey: "eventType",
|
|
133
|
+
header: "Event's Type",
|
|
134
|
+
type: "string",
|
|
135
|
+
size: 300,
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
accessorKey: "Handler",
|
|
139
|
+
header: "Handler",
|
|
140
|
+
type: "string",
|
|
141
|
+
size: 200,
|
|
166
142
|
},
|
|
167
143
|
]
|
|
168
144
|
}]}
|
|
@@ -13,7 +13,7 @@ export const uploadFile = {
|
|
|
13
13
|
"style": {
|
|
14
14
|
"backgroundColor": "none"
|
|
15
15
|
},
|
|
16
|
-
layout: { xs: 6, sm: 6, md: 4, lg:
|
|
16
|
+
layout: { xs: 6, sm: 6, md: 4, lg: 3 }
|
|
17
17
|
},
|
|
18
18
|
"options": {
|
|
19
19
|
"widget": "UploadFile"
|
|
@@ -30,9 +30,9 @@ export const downloadFile = {
|
|
|
30
30
|
"style": {
|
|
31
31
|
"backgroundColor": "none"
|
|
32
32
|
},
|
|
33
|
-
layout: { xs:
|
|
33
|
+
layout: { xs: 6, sm: 6, md: 4, lg: 3 }
|
|
34
34
|
},
|
|
35
35
|
"options": {
|
|
36
36
|
"widget": "DownloadFile"
|
|
37
37
|
}
|
|
38
|
-
};
|
|
38
|
+
};
|
|
@@ -6,12 +6,12 @@ export default {
|
|
|
6
6
|
widget: "MultipleSelect",
|
|
7
7
|
},
|
|
8
8
|
config: {
|
|
9
|
-
layout: { xs: 6, sm: 6, md: 4, lg:
|
|
9
|
+
layout: { xs: 6, sm: 6, md: 4, lg: 3 },
|
|
10
10
|
main: {
|
|
11
11
|
label: "",
|
|
12
12
|
type: "text",
|
|
13
13
|
multiple: true,
|
|
14
|
-
variant: "
|
|
14
|
+
variant: "outlined",
|
|
15
15
|
options: [],
|
|
16
16
|
},
|
|
17
17
|
},
|
|
@@ -74,93 +74,68 @@ export const TableSection = (theme) => {
|
|
|
74
74
|
enableDrag: true,
|
|
75
75
|
|
|
76
76
|
},
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
{
|
|
80
|
-
accessorKey: "name",
|
|
81
|
-
header: "Name",
|
|
82
|
-
type: "string",
|
|
83
|
-
size: 300,
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
accessorKey: "type",
|
|
87
|
-
header: "Type",
|
|
88
|
-
type: "string",
|
|
89
|
-
size: 200,
|
|
90
|
-
},
|
|
91
|
-
{
|
|
92
|
-
header: "Edit Record",
|
|
93
|
-
field: "Reject_Records",
|
|
94
|
-
size: 150,
|
|
95
|
-
type: "action",
|
|
96
|
-
widget: {
|
|
77
|
+
action: [
|
|
78
|
+
{
|
|
97
79
|
type: "Control",
|
|
98
80
|
scope: "#/properties/RejectButton",
|
|
99
81
|
options: {
|
|
100
|
-
widget: "
|
|
82
|
+
widget: "Button",
|
|
101
83
|
},
|
|
102
84
|
config: {
|
|
103
85
|
main: {
|
|
104
|
-
|
|
86
|
+
startIcon: "EditIcon",
|
|
105
87
|
size: "small",
|
|
106
88
|
onClick: "editComponents",
|
|
107
89
|
tooltipMessage: "Reject This Record",
|
|
108
|
-
|
|
109
|
-
style: {
|
|
110
|
-
fill: theme.palette.primary.main,
|
|
111
|
-
"& :hover": {
|
|
112
|
-
fill: theme.palette.primary.dark,
|
|
113
|
-
},
|
|
90
|
+
name: "Edit"
|
|
114
91
|
},
|
|
115
92
|
},
|
|
116
93
|
},
|
|
117
|
-
|
|
118
|
-
{
|
|
119
|
-
header: "Delete",
|
|
120
|
-
field: "Reject_Records",
|
|
121
|
-
size: 150,
|
|
122
|
-
type: "action",
|
|
123
|
-
widget: {
|
|
94
|
+
{
|
|
124
95
|
type: "Control",
|
|
125
96
|
scope: "#/properties/RejectButton",
|
|
126
97
|
options: {
|
|
127
|
-
widget: "
|
|
98
|
+
widget: "Button",
|
|
128
99
|
},
|
|
129
100
|
config: {
|
|
130
101
|
main: {
|
|
131
|
-
|
|
102
|
+
startIcon: "Bin",
|
|
132
103
|
onClick: "deletePopUpComponent",
|
|
133
104
|
tooltipMessage: "Reject This Record",
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
fill: theme.palette.primary.main,
|
|
137
|
-
"& :hover": {
|
|
138
|
-
fill: theme.palette.primary.dark,
|
|
139
|
-
},
|
|
105
|
+
name: "Delete",
|
|
106
|
+
size: "small"
|
|
140
107
|
},
|
|
141
108
|
},
|
|
142
109
|
},
|
|
143
|
-
|
|
144
|
-
{
|
|
145
|
-
header: "Copy",
|
|
146
|
-
field: "Copy_Component",
|
|
147
|
-
size: 150,
|
|
148
|
-
type: "action",
|
|
149
|
-
widget: {
|
|
110
|
+
{
|
|
150
111
|
type: "Control",
|
|
151
112
|
scope: "#/properties/Copy_Component",
|
|
152
113
|
options: {
|
|
153
|
-
widget: "
|
|
114
|
+
widget: "Button",
|
|
154
115
|
},
|
|
155
116
|
config: {
|
|
156
117
|
main: {
|
|
157
|
-
|
|
118
|
+
startIcon: "FileCopyIcon",
|
|
158
119
|
onClick: "copyPasteElement",
|
|
159
|
-
styleDefault:
|
|
160
|
-
|
|
120
|
+
styleDefault: false,
|
|
121
|
+
name: "Copy"
|
|
161
122
|
},
|
|
162
123
|
},
|
|
163
124
|
},
|
|
125
|
+
]
|
|
126
|
+
},
|
|
127
|
+
elements: [
|
|
128
|
+
{
|
|
129
|
+
accessorKey: "name",
|
|
130
|
+
header: "Name",
|
|
131
|
+
type: "string",
|
|
132
|
+
size: 300,
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
accessorKey: "type",
|
|
136
|
+
header: "Type",
|
|
137
|
+
type: "string",
|
|
138
|
+
size: 200,
|
|
164
139
|
},
|
|
165
140
|
]
|
|
166
141
|
}]
|
|
@@ -7,122 +7,67 @@ export const ValidationSection = {
|
|
|
7
7
|
}
|
|
8
8
|
},
|
|
9
9
|
elements: [
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
{
|
|
20
|
-
type: "Control",
|
|
21
|
-
scope: "#/properties/validationType",
|
|
22
|
-
|
|
23
|
-
options: {
|
|
24
|
-
widget: "SelectInputField",
|
|
25
|
-
},
|
|
26
|
-
config: {
|
|
27
|
-
layout: { xs: 6, sm: 6, md: 4, lg: 4 },
|
|
28
|
-
main: {
|
|
29
|
-
label: "Validation Type",
|
|
30
|
-
},
|
|
31
|
-
},
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
type: "Control",
|
|
35
|
-
scope: "#/properties/validationValue",
|
|
36
|
-
|
|
37
|
-
options: {
|
|
38
|
-
widget: "InputField",
|
|
39
|
-
},
|
|
40
|
-
config: {
|
|
41
|
-
layout: { xs: 6, sm: 6, md: 4, lg: 4 },
|
|
42
|
-
main: {
|
|
43
|
-
label: "Validation Value",
|
|
44
|
-
},
|
|
45
|
-
},
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
type: "Control",
|
|
49
|
-
scope: "#/properties/emptyBox",
|
|
50
|
-
options: {
|
|
51
|
-
widget: "EmptyBox"
|
|
52
|
-
},
|
|
53
|
-
config: {
|
|
54
|
-
layout: {xs: 0, sm: 0, md: 4}
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
],
|
|
58
|
-
},
|
|
10
|
+
|
|
11
|
+
{
|
|
12
|
+
type: "Control",
|
|
13
|
+
scope: "#/properties/validation",
|
|
14
|
+
config: {
|
|
15
|
+
layout: 12,
|
|
16
|
+
main: {
|
|
17
|
+
label: "Validation",
|
|
18
|
+
childElementLabel: "Validation",
|
|
59
19
|
},
|
|
60
|
-
|
|
20
|
+
style: {
|
|
21
|
+
marginLeft: "-24px",
|
|
22
|
+
marginBottom: "24px !important",
|
|
23
|
+
labelStyle: {
|
|
24
|
+
marginLeft: "24px",
|
|
25
|
+
},
|
|
26
|
+
detailsStyle: {
|
|
27
|
+
marginLeft: "24px",
|
|
28
|
+
}
|
|
29
|
+
}
|
|
61
30
|
},
|
|
31
|
+
elements: [
|
|
32
|
+
{
|
|
33
|
+
type: "Control",
|
|
34
|
+
scope: "#/properties/validationType",
|
|
35
|
+
options: {
|
|
36
|
+
widget: "SelectInputField",
|
|
37
|
+
},
|
|
38
|
+
config: {
|
|
39
|
+
layout: { xs: 6, sm: 6, md: 4, lg: 4 },
|
|
40
|
+
main: {
|
|
41
|
+
label: "Validation Type",
|
|
42
|
+
},
|
|
43
|
+
},
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
type: "Control",
|
|
47
|
+
scope: "#/properties/validationValue",
|
|
62
48
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
// },
|
|
86
|
-
// elements: [
|
|
87
|
-
// {
|
|
88
|
-
// type: "Control",
|
|
89
|
-
// scope: "#/properties/validationType",
|
|
90
|
-
// options: {
|
|
91
|
-
// widget: "SelectInputField",
|
|
92
|
-
// },
|
|
93
|
-
// config: {
|
|
94
|
-
// layout: { xs: 6, sm: 6, md: 4, lg: 4 },
|
|
95
|
-
// main: {
|
|
96
|
-
// label: "Validation Type",
|
|
97
|
-
// },
|
|
98
|
-
// },
|
|
99
|
-
// },
|
|
100
|
-
// {
|
|
101
|
-
// type: "Control",
|
|
102
|
-
// scope: "#/properties/validationValue",
|
|
103
|
-
|
|
104
|
-
// options: {
|
|
105
|
-
// widget: "InputField",
|
|
106
|
-
// },
|
|
107
|
-
// config: {
|
|
108
|
-
// layout: { xs: 6, sm: 6, md: 4, lg: 4 },
|
|
109
|
-
// main: {
|
|
110
|
-
// label: "Validation Value",
|
|
111
|
-
// },
|
|
112
|
-
// },
|
|
113
|
-
// },
|
|
114
|
-
// {
|
|
115
|
-
// type: "Control",
|
|
116
|
-
// scope: "#/properties/emptyBox",
|
|
117
|
-
// options: {
|
|
118
|
-
// widget: "EmptyBox"
|
|
119
|
-
// },
|
|
120
|
-
// config: {
|
|
121
|
-
// layout: {xs: 0, sm: 0, md: 4, lg: 4}
|
|
122
|
-
// }
|
|
123
|
-
// }
|
|
124
|
-
// ],
|
|
125
|
-
// },
|
|
49
|
+
options: {
|
|
50
|
+
widget: "InputField",
|
|
51
|
+
},
|
|
52
|
+
config: {
|
|
53
|
+
layout: { xs: 6, sm: 6, md: 4, lg: 4 },
|
|
54
|
+
main: {
|
|
55
|
+
label: "Validation Value",
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
type: "Control",
|
|
61
|
+
scope: "#/properties/emptyBox",
|
|
62
|
+
options: {
|
|
63
|
+
widget: "EmptyBox"
|
|
64
|
+
},
|
|
65
|
+
config: {
|
|
66
|
+
layout: {xs: 0, sm: 0, md: 4, lg: 4}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
],
|
|
70
|
+
},
|
|
126
71
|
|
|
127
72
|
]
|
|
128
73
|
};
|
|
@@ -10,6 +10,7 @@ export const ComponentSchema: any = {
|
|
|
10
10
|
{ title: "Data Card", const: "card" },
|
|
11
11
|
{ title: "Check Box", const: "CheckBox" },
|
|
12
12
|
{ title: "Container", const: "WrapperSection" },
|
|
13
|
+
{ title: "Tab Container", const: "HorizontalLayout" },
|
|
13
14
|
{ title: "Data Grid", const: "DataGrid" },
|
|
14
15
|
{ title: "Date", const: "Date" },
|
|
15
16
|
{ title: "Time Stamp", const: "DateTime" },
|
|
@@ -17,6 +18,7 @@ export const ComponentSchema: any = {
|
|
|
17
18
|
{ title: "Empty Box", const: "EmptyBox" },
|
|
18
19
|
{ title: "File Handler", const: "FileInput" },
|
|
19
20
|
{ title: "Graph", const: "Graph" },
|
|
21
|
+
{ title: "Image", const: "Image" },
|
|
20
22
|
{ title: "Input Slider", const: "InputSlider" },
|
|
21
23
|
{ title: "Label", const: "Box" },
|
|
22
24
|
{ title: "Leaderboard", const: "LeaderBoard" },
|
|
@@ -55,9 +57,16 @@ export const ComponentSchema: any = {
|
|
|
55
57
|
oneOf: [
|
|
56
58
|
{ title: "Date Column", const: "date" },
|
|
57
59
|
{ title: "DateTime Column", const: "dateTime" },
|
|
58
|
-
{ title: "Amount Column", const: "amount" }
|
|
60
|
+
{ title: "Amount Column", const: "amount" }
|
|
59
61
|
]
|
|
60
62
|
},
|
|
63
|
+
variant: {
|
|
64
|
+
oneOf: [
|
|
65
|
+
{ title: "Outlined", const: "outlined" },
|
|
66
|
+
{ title: "Filled", const: "filled" },
|
|
67
|
+
{ title: "Standard", const: "standard" },
|
|
68
|
+
]
|
|
69
|
+
},
|
|
61
70
|
orientation: {
|
|
62
71
|
oneOf: [
|
|
63
72
|
{ title: "Horizontal", const: "horizontal" },
|
|
@@ -144,20 +153,20 @@ export const ComponentSchema: any = {
|
|
|
144
153
|
},
|
|
145
154
|
},
|
|
146
155
|
},
|
|
147
|
-
events: {
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
},
|
|
156
|
+
// events: {
|
|
157
|
+
// type: "array",
|
|
158
|
+
// items: {
|
|
159
|
+
// type: "object",
|
|
160
|
+
// properties: {
|
|
161
|
+
// eventType: {
|
|
162
|
+
// type: "string",
|
|
163
|
+
// },
|
|
164
|
+
// configType: {
|
|
165
|
+
// type: "string",
|
|
166
|
+
// },
|
|
167
|
+
// },
|
|
168
|
+
// },
|
|
169
|
+
// },
|
|
161
170
|
sectionLabels: {
|
|
162
171
|
type: "array",
|
|
163
172
|
items: {
|
|
@@ -329,7 +338,34 @@ export const ComponentSchema: any = {
|
|
|
329
338
|
{ title: "Error Icon", const: "ErrorIcon" },
|
|
330
339
|
{ title: "Refresh Icon", const: "RefreshIcon" },
|
|
331
340
|
{ title: "Download Icon", const: "DownloadIcon" },
|
|
341
|
+
{ title: "Download All Icon", const: "DownloadAllIcon" },
|
|
332
342
|
{ title: "Exception Icon", const: "ExceptionIcon" },
|
|
343
|
+
{ "title": "Alarm Icon", "const": "AlarmIcon" },
|
|
344
|
+
{ "title": "Click Icon", "const": "ClickIcon" },
|
|
345
|
+
{ "title": "Content Copy Icon", "const": "ContentCopyIcon" },
|
|
346
|
+
{ "title": "File Copy Icon", "const": "FileCopyIcon" },
|
|
347
|
+
{ "title": "Pause Icon", "const": "PauseIcon" },
|
|
348
|
+
{ "title": "Play Icon", "const": "PlayIcon" },
|
|
349
|
+
{ "title": "Close Icon", "const": "CloseIcon" },
|
|
350
|
+
{ "title": "Replay Icon", "const": "ReplayIcon" },
|
|
351
|
+
{ "title": "Delete Icon", "const": "DeleteIcon" },
|
|
352
|
+
{ "title": "Drafts Icon", "const": "DraftsIcon" },
|
|
353
|
+
{ "title": "Perm Phone Msg Icon", "const": "PermPhoneMsgIcon" },
|
|
354
|
+
{ "title": "Paste Icon", "const": "PasteIcon" },
|
|
355
|
+
{ "title": "Prev Icon", "const": "PrevIcon" },
|
|
356
|
+
{ "title": "Verified Icon", "const": "VerifiedIcon" },
|
|
357
|
+
{ "title": "Table Add Icon", "const": "TableAddIcon" },
|
|
358
|
+
{ "title": "Table Download Icon", "const": "TableDownloadIcon" },
|
|
359
|
+
{ "title": "Audit Trail Icon", "const": "AuditTrailIcon" },
|
|
360
|
+
{ "title": "View Component", "const": "View" },
|
|
361
|
+
{ "title": "Table Edit Icon", "const": "TableEditIcon" },
|
|
362
|
+
{ "title": "Maximize Icon", "const": "Maximize" },
|
|
363
|
+
{ "title": "Minimize Icon", "const": "Minimize" },
|
|
364
|
+
{ "title": "Subtract Icon", "const": "Subtract" },
|
|
365
|
+
{ "title": "Bin Icon", "const": "Bin" },
|
|
366
|
+
{ "title": "Export Icon", "const": "Export" },
|
|
367
|
+
{ "title": "Table Paste Icon", "const": "TablePaste" },
|
|
368
|
+
{ "title": "Clone Icon", "const": "CloneIcon" }
|
|
333
369
|
]
|
|
334
370
|
},
|
|
335
371
|
color: {
|