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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "1.0.67-alpha.5",
3
+ "version": "1.0.67-alpha.7",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -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
  {