impaktapps-ui-builder 1.0.67-alpha.5 → 1.0.67-alpha.7
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
package/package.json
CHANGED
|
@@ -239,6 +239,34 @@ export const PageMasterUiSchema: any = (theme) => {
|
|
|
239
239
|
size: 300,
|
|
240
240
|
type: "string"
|
|
241
241
|
},
|
|
242
|
+
|
|
243
|
+
{
|
|
244
|
+
header: "Edit",
|
|
245
|
+
field: "Reject_Records",
|
|
246
|
+
size: 150,
|
|
247
|
+
type: "action",
|
|
248
|
+
widget: {
|
|
249
|
+
type: "Control",
|
|
250
|
+
scope: "#/properties/RejectButton",
|
|
251
|
+
options: {
|
|
252
|
+
widget: "IconButton",
|
|
253
|
+
},
|
|
254
|
+
config: {
|
|
255
|
+
main: {
|
|
256
|
+
icon: "TableEditIcon",
|
|
257
|
+
onClick: "Edit_Components",
|
|
258
|
+
tooltipMessage: "Edit This Record",
|
|
259
|
+
},
|
|
260
|
+
style: {
|
|
261
|
+
fill: theme.palette.primary.main,
|
|
262
|
+
"& :hover": {
|
|
263
|
+
fill: theme.palette.primary.dark,
|
|
264
|
+
},
|
|
265
|
+
},
|
|
266
|
+
},
|
|
267
|
+
},
|
|
268
|
+
},
|
|
269
|
+
|
|
242
270
|
]
|
|
243
271
|
},
|
|
244
272
|
{
|