impaktapps-ui-builder 1.0.67-alpha.1 → 1.0.67-alpha.3
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 +46 -55
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +45 -54
package/package.json
CHANGED
|
@@ -174,66 +174,57 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
174
174
|
disableAction: true,
|
|
175
175
|
disableSelection: true,
|
|
176
176
|
enableDrag: true,
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
config: {
|
|
185
|
-
main: {
|
|
186
|
-
startIcon: "EditIcon",
|
|
187
|
-
onClick: "Edit_Components",
|
|
188
|
-
tooltipMessage: "Edit This Record",
|
|
189
|
-
name: "Edit"
|
|
190
|
-
},
|
|
191
|
-
style: {
|
|
192
|
-
fill: theme.palette.primary.main,
|
|
193
|
-
"& :hover": {
|
|
194
|
-
fill: theme.palette.primary.dark,
|
|
195
|
-
},
|
|
196
|
-
},
|
|
197
|
-
},
|
|
177
|
+
},
|
|
178
|
+
action: [
|
|
179
|
+
{
|
|
180
|
+
type: "Control",
|
|
181
|
+
scope: "#/properties/RejectButton",
|
|
182
|
+
options: {
|
|
183
|
+
widget: "Button",
|
|
198
184
|
},
|
|
199
|
-
{
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
main: {
|
|
207
|
-
startIcon: "Bin",
|
|
208
|
-
onClick: "deletePopUpComponent",
|
|
209
|
-
tooltipMessage: "Reject This Record",
|
|
210
|
-
name: "Delete"
|
|
211
|
-
},
|
|
212
|
-
style: {
|
|
213
|
-
fill: theme.palette.primary.main,
|
|
214
|
-
"& :hover": {
|
|
215
|
-
fill: theme.palette.primary.dark,
|
|
216
|
-
},
|
|
217
|
-
},
|
|
185
|
+
config: {
|
|
186
|
+
main: {
|
|
187
|
+
size: "small",
|
|
188
|
+
startIcon: "EditIcon",
|
|
189
|
+
onClick: "Edit_Components",
|
|
190
|
+
tooltipMessage: "Edit This Record",
|
|
191
|
+
name: "Edit"
|
|
218
192
|
},
|
|
219
193
|
},
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
type: "Control",
|
|
197
|
+
scope: "#/properties/RejectButton",
|
|
198
|
+
options: {
|
|
199
|
+
widget: "Button",
|
|
200
|
+
},
|
|
201
|
+
config: {
|
|
202
|
+
main: {
|
|
203
|
+
size: "small",
|
|
204
|
+
startIcon: "Bin",
|
|
205
|
+
onClick: "deletePopUpComponent",
|
|
206
|
+
tooltipMessage: "Reject This Record",
|
|
207
|
+
name: "Delete"
|
|
225
208
|
},
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
209
|
+
},
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
type: "Control",
|
|
213
|
+
scope: "#/properties/Copy_Component",
|
|
214
|
+
options: {
|
|
215
|
+
widget: "Button",
|
|
216
|
+
},
|
|
217
|
+
config: {
|
|
218
|
+
main: {
|
|
219
|
+
size: "small",
|
|
220
|
+
startIcon: "FileCopyIcon",
|
|
221
|
+
onClick: "copyPasteElement",
|
|
222
|
+
styleDefault: false,
|
|
223
|
+
name: "Copy"
|
|
233
224
|
},
|
|
234
225
|
},
|
|
235
|
-
|
|
236
|
-
|
|
226
|
+
},
|
|
227
|
+
]
|
|
237
228
|
},
|
|
238
229
|
elements: [
|
|
239
230
|
{
|