impaktapps-ui-builder 1.0.67-alpha.5 → 1.0.67-alpha.6
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 +26 -0
- 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 +28 -0
|
@@ -282,6 +282,32 @@ const PageMasterUiSchema = (theme) => {
|
|
|
282
282
|
header: "Type",
|
|
283
283
|
size: 300,
|
|
284
284
|
type: "string"
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
header: "Edit",
|
|
288
|
+
field: "Reject_Records",
|
|
289
|
+
size: 150,
|
|
290
|
+
type: "action",
|
|
291
|
+
widget: {
|
|
292
|
+
type: "Control",
|
|
293
|
+
scope: "#/properties/RejectButton",
|
|
294
|
+
options: {
|
|
295
|
+
widget: "IconButton"
|
|
296
|
+
},
|
|
297
|
+
config: {
|
|
298
|
+
main: {
|
|
299
|
+
icon: "TableEditIcon",
|
|
300
|
+
onClick: "Edit_Components",
|
|
301
|
+
tooltipMessage: "Edit This Record"
|
|
302
|
+
},
|
|
303
|
+
style: {
|
|
304
|
+
fill: theme.palette.primary.main,
|
|
305
|
+
"& :hover": {
|
|
306
|
+
fill: theme.palette.primary.dark
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
}
|
|
285
311
|
}
|
|
286
312
|
]
|
|
287
313
|
},
|