impaktapps-ui-builder 1.0.67-alpha.1 → 1.0.67-alpha.2
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 +4 -4
- 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
|
@@ -217,67 +217,58 @@ const PageMasterUiSchema = (theme) => {
|
|
|
217
217
|
},
|
|
218
218
|
disableAction: true,
|
|
219
219
|
disableSelection: true,
|
|
220
|
-
enableDrag: true
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
fill: theme.palette.primary.main,
|
|
237
|
-
"& :hover": {
|
|
238
|
-
fill: theme.palette.primary.dark
|
|
239
|
-
}
|
|
240
|
-
}
|
|
220
|
+
enableDrag: true
|
|
221
|
+
},
|
|
222
|
+
action: [
|
|
223
|
+
{
|
|
224
|
+
type: "Control",
|
|
225
|
+
scope: "#/properties/RejectButton",
|
|
226
|
+
options: {
|
|
227
|
+
widget: "Button"
|
|
228
|
+
},
|
|
229
|
+
config: {
|
|
230
|
+
main: {
|
|
231
|
+
size: "small",
|
|
232
|
+
startIcon: "EditIcon",
|
|
233
|
+
onClick: "Edit_Components",
|
|
234
|
+
tooltipMessage: "Edit This Record",
|
|
235
|
+
name: "Edit"
|
|
241
236
|
}
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
type: "Control",
|
|
241
|
+
scope: "#/properties/RejectButton",
|
|
242
|
+
options: {
|
|
243
|
+
widget: "Button"
|
|
242
244
|
},
|
|
243
|
-
{
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
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
|
-
}
|
|
245
|
+
config: {
|
|
246
|
+
main: {
|
|
247
|
+
size: "small",
|
|
248
|
+
startIcon: "Bin",
|
|
249
|
+
onClick: "deletePopUpComponent",
|
|
250
|
+
tooltipMessage: "Reject This Record",
|
|
251
|
+
name: "Delete"
|
|
262
252
|
}
|
|
253
|
+
}
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
type: "Control",
|
|
257
|
+
scope: "#/properties/Copy_Component",
|
|
258
|
+
options: {
|
|
259
|
+
widget: "IconButton"
|
|
263
260
|
},
|
|
264
|
-
{
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
main: {
|
|
272
|
-
startIcon: "FileCopyIcon",
|
|
273
|
-
onClick: "copyPasteElement",
|
|
274
|
-
styleDefault: true,
|
|
275
|
-
name: "Copy"
|
|
276
|
-
}
|
|
261
|
+
config: {
|
|
262
|
+
main: {
|
|
263
|
+
size: "small",
|
|
264
|
+
startIcon: "FileCopyIcon",
|
|
265
|
+
onClick: "copyPasteElement",
|
|
266
|
+
styleDefault: false,
|
|
267
|
+
name: "Copy"
|
|
277
268
|
}
|
|
278
269
|
}
|
|
279
|
-
|
|
280
|
-
|
|
270
|
+
}
|
|
271
|
+
]
|
|
281
272
|
},
|
|
282
273
|
elements: [
|
|
283
274
|
{
|