impaktapps-ui-builder 1.0.66 → 1.0.67-alpha.1
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 +61 -72
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +2 -2
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +1 -0
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +59 -71
|
@@ -217,7 +217,66 @@ const PageMasterUiSchema = (theme) => {
|
|
|
217
217
|
},
|
|
218
218
|
disableAction: true,
|
|
219
219
|
disableSelection: true,
|
|
220
|
-
enableDrag: true
|
|
220
|
+
enableDrag: true,
|
|
221
|
+
action: [
|
|
222
|
+
{
|
|
223
|
+
type: "Control",
|
|
224
|
+
scope: "#/properties/RejectButton",
|
|
225
|
+
options: {
|
|
226
|
+
widget: "Button"
|
|
227
|
+
},
|
|
228
|
+
config: {
|
|
229
|
+
main: {
|
|
230
|
+
startIcon: "EditIcon",
|
|
231
|
+
onClick: "Edit_Components",
|
|
232
|
+
tooltipMessage: "Edit This Record",
|
|
233
|
+
name: "Edit"
|
|
234
|
+
},
|
|
235
|
+
style: {
|
|
236
|
+
fill: theme.palette.primary.main,
|
|
237
|
+
"& :hover": {
|
|
238
|
+
fill: theme.palette.primary.dark
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
type: "Control",
|
|
245
|
+
scope: "#/properties/RejectButton",
|
|
246
|
+
options: {
|
|
247
|
+
widget: "Button"
|
|
248
|
+
},
|
|
249
|
+
config: {
|
|
250
|
+
main: {
|
|
251
|
+
startIcon: "Bin",
|
|
252
|
+
onClick: "deletePopUpComponent",
|
|
253
|
+
tooltipMessage: "Reject This Record",
|
|
254
|
+
name: "Delete"
|
|
255
|
+
},
|
|
256
|
+
style: {
|
|
257
|
+
fill: theme.palette.primary.main,
|
|
258
|
+
"& :hover": {
|
|
259
|
+
fill: theme.palette.primary.dark
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
type: "Control",
|
|
266
|
+
scope: "#/properties/Copy_Component",
|
|
267
|
+
options: {
|
|
268
|
+
widget: "IconButton"
|
|
269
|
+
},
|
|
270
|
+
config: {
|
|
271
|
+
main: {
|
|
272
|
+
startIcon: "FileCopyIcon",
|
|
273
|
+
onClick: "copyPasteElement",
|
|
274
|
+
styleDefault: true,
|
|
275
|
+
name: "Copy"
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
]
|
|
221
280
|
}
|
|
222
281
|
},
|
|
223
282
|
elements: [
|
|
@@ -232,77 +291,6 @@ const PageMasterUiSchema = (theme) => {
|
|
|
232
291
|
header: "Type",
|
|
233
292
|
size: 300,
|
|
234
293
|
type: "string"
|
|
235
|
-
},
|
|
236
|
-
{
|
|
237
|
-
header: "Edit",
|
|
238
|
-
field: "Reject_Records",
|
|
239
|
-
size: 150,
|
|
240
|
-
type: "action",
|
|
241
|
-
widget: {
|
|
242
|
-
type: "Control",
|
|
243
|
-
scope: "#/properties/RejectButton",
|
|
244
|
-
options: {
|
|
245
|
-
widget: "IconButton"
|
|
246
|
-
},
|
|
247
|
-
config: {
|
|
248
|
-
main: {
|
|
249
|
-
icon: "TableEditIcon",
|
|
250
|
-
onClick: "Edit_Components",
|
|
251
|
-
tooltipMessage: "Edit This Record"
|
|
252
|
-
},
|
|
253
|
-
style: {
|
|
254
|
-
fill: theme.palette.primary.main,
|
|
255
|
-
"& :hover": {
|
|
256
|
-
fill: theme.palette.primary.dark
|
|
257
|
-
}
|
|
258
|
-
}
|
|
259
|
-
}
|
|
260
|
-
}
|
|
261
|
-
},
|
|
262
|
-
{
|
|
263
|
-
header: "Delete",
|
|
264
|
-
field: "Reject_Records",
|
|
265
|
-
size: 150,
|
|
266
|
-
type: "action",
|
|
267
|
-
widget: {
|
|
268
|
-
type: "Control",
|
|
269
|
-
scope: "#/properties/RejectButton",
|
|
270
|
-
options: {
|
|
271
|
-
widget: "IconButton"
|
|
272
|
-
},
|
|
273
|
-
config: {
|
|
274
|
-
main: {
|
|
275
|
-
icon: "Bin",
|
|
276
|
-
onClick: "deletePopUpComponent",
|
|
277
|
-
tooltipMessage: "Reject This Record"
|
|
278
|
-
},
|
|
279
|
-
style: {
|
|
280
|
-
fill: theme.palette.primary.main,
|
|
281
|
-
"& :hover": {
|
|
282
|
-
fill: theme.palette.primary.dark
|
|
283
|
-
}
|
|
284
|
-
}
|
|
285
|
-
}
|
|
286
|
-
}
|
|
287
|
-
},
|
|
288
|
-
{
|
|
289
|
-
header: "Copy",
|
|
290
|
-
field: "Copy_Component",
|
|
291
|
-
flex: 1,
|
|
292
|
-
widget: {
|
|
293
|
-
type: "Control",
|
|
294
|
-
scope: "#/properties/Copy_Component",
|
|
295
|
-
options: {
|
|
296
|
-
widget: "IconButton"
|
|
297
|
-
},
|
|
298
|
-
config: {
|
|
299
|
-
main: {
|
|
300
|
-
icon: "FileCopyIcon",
|
|
301
|
-
onClick: "copyPasteElement",
|
|
302
|
-
styleDefault: true
|
|
303
|
-
}
|
|
304
|
-
}
|
|
305
|
-
}
|
|
306
294
|
}
|
|
307
295
|
]
|
|
308
296
|
},
|
|
@@ -6572,6 +6560,7 @@ const ComponentSchema = {
|
|
|
6572
6560
|
{ title: "Error Icon", const: "ErrorIcon" },
|
|
6573
6561
|
{ title: "Refresh Icon", const: "RefreshIcon" },
|
|
6574
6562
|
{ title: "Download Icon", const: "DownloadIcon" },
|
|
6563
|
+
{ title: "Download All Icon", const: "DownloadAllIcon" },
|
|
6575
6564
|
{ title: "Exception Icon", const: "ExceptionIcon" },
|
|
6576
6565
|
{ "title": "Alarm Icon", "const": "AlarmIcon" },
|
|
6577
6566
|
{ "title": "Click Icon", "const": "ClickIcon" },
|