impaktapps-ui-builder 1.0.66 → 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 +35 -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/Component/schema.ts +1 -0
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +30 -51
|
@@ -218,78 +218,41 @@ const PageMasterUiSchema = (theme) => {
|
|
|
218
218
|
disableAction: true,
|
|
219
219
|
disableSelection: true,
|
|
220
220
|
enableDrag: true
|
|
221
|
-
}
|
|
222
|
-
},
|
|
223
|
-
elements: [
|
|
224
|
-
{
|
|
225
|
-
accessorKey: "name",
|
|
226
|
-
header: "Name",
|
|
227
|
-
size: 300,
|
|
228
|
-
type: "string"
|
|
229
221
|
},
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
header: "Type",
|
|
233
|
-
size: 300,
|
|
234
|
-
type: "string"
|
|
235
|
-
},
|
|
236
|
-
{
|
|
237
|
-
header: "Edit",
|
|
238
|
-
field: "Reject_Records",
|
|
239
|
-
size: 150,
|
|
240
|
-
type: "action",
|
|
241
|
-
widget: {
|
|
222
|
+
action: [
|
|
223
|
+
{
|
|
242
224
|
type: "Control",
|
|
243
225
|
scope: "#/properties/RejectButton",
|
|
244
226
|
options: {
|
|
245
|
-
widget: "
|
|
227
|
+
widget: "Button"
|
|
246
228
|
},
|
|
247
229
|
config: {
|
|
248
230
|
main: {
|
|
249
|
-
|
|
231
|
+
size: "small",
|
|
232
|
+
startIcon: "EditIcon",
|
|
250
233
|
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
|
-
}
|
|
234
|
+
tooltipMessage: "Edit This Record",
|
|
235
|
+
name: "Edit"
|
|
258
236
|
}
|
|
259
237
|
}
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
{
|
|
263
|
-
header: "Delete",
|
|
264
|
-
field: "Reject_Records",
|
|
265
|
-
size: 150,
|
|
266
|
-
type: "action",
|
|
267
|
-
widget: {
|
|
238
|
+
},
|
|
239
|
+
{
|
|
268
240
|
type: "Control",
|
|
269
241
|
scope: "#/properties/RejectButton",
|
|
270
242
|
options: {
|
|
271
|
-
widget: "
|
|
243
|
+
widget: "Button"
|
|
272
244
|
},
|
|
273
245
|
config: {
|
|
274
246
|
main: {
|
|
275
|
-
|
|
247
|
+
size: "small",
|
|
248
|
+
startIcon: "Bin",
|
|
276
249
|
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
|
-
}
|
|
250
|
+
tooltipMessage: "Reject This Record",
|
|
251
|
+
name: "Delete"
|
|
284
252
|
}
|
|
285
253
|
}
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
{
|
|
289
|
-
header: "Copy",
|
|
290
|
-
field: "Copy_Component",
|
|
291
|
-
flex: 1,
|
|
292
|
-
widget: {
|
|
254
|
+
},
|
|
255
|
+
{
|
|
293
256
|
type: "Control",
|
|
294
257
|
scope: "#/properties/Copy_Component",
|
|
295
258
|
options: {
|
|
@@ -297,12 +260,28 @@ const PageMasterUiSchema = (theme) => {
|
|
|
297
260
|
},
|
|
298
261
|
config: {
|
|
299
262
|
main: {
|
|
300
|
-
|
|
263
|
+
size: "small",
|
|
264
|
+
startIcon: "FileCopyIcon",
|
|
301
265
|
onClick: "copyPasteElement",
|
|
302
|
-
styleDefault:
|
|
266
|
+
styleDefault: false,
|
|
267
|
+
name: "Copy"
|
|
303
268
|
}
|
|
304
269
|
}
|
|
305
270
|
}
|
|
271
|
+
]
|
|
272
|
+
},
|
|
273
|
+
elements: [
|
|
274
|
+
{
|
|
275
|
+
accessorKey: "name",
|
|
276
|
+
header: "Name",
|
|
277
|
+
size: 300,
|
|
278
|
+
type: "string"
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
accessorKey: "type",
|
|
282
|
+
header: "Type",
|
|
283
|
+
size: 300,
|
|
284
|
+
type: "string"
|
|
306
285
|
}
|
|
307
286
|
]
|
|
308
287
|
},
|
|
@@ -6572,6 +6551,7 @@ const ComponentSchema = {
|
|
|
6572
6551
|
{ title: "Error Icon", const: "ErrorIcon" },
|
|
6573
6552
|
{ title: "Refresh Icon", const: "RefreshIcon" },
|
|
6574
6553
|
{ title: "Download Icon", const: "DownloadIcon" },
|
|
6554
|
+
{ title: "Download All Icon", const: "DownloadAllIcon" },
|
|
6575
6555
|
{ title: "Exception Icon", const: "ExceptionIcon" },
|
|
6576
6556
|
{ "title": "Alarm Icon", "const": "AlarmIcon" },
|
|
6577
6557
|
{ "title": "Click Icon", "const": "ClickIcon" },
|