impaktapps-ui-builder 0.0.382-alpha.207 → 0.0.382-alpha.208
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 +6 -7
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +2 -2
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/builder/services/pageMaster.d.ts +0 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +6 -7
- package/src/impaktapps-ui-builder/builder/services/pageMaster.ts +0 -4
package/package.json
CHANGED
|
@@ -257,9 +257,9 @@ export const PageMasterUiSchema: any = {
|
|
|
257
257
|
widget: "Box",
|
|
258
258
|
},
|
|
259
259
|
config: {
|
|
260
|
-
layout:
|
|
260
|
+
layout: 12,
|
|
261
261
|
main: {
|
|
262
|
-
heading: "Are you sure",
|
|
262
|
+
heading: "Are you sure you want to delete the record ?",
|
|
263
263
|
},
|
|
264
264
|
},
|
|
265
265
|
},
|
|
@@ -270,14 +270,14 @@ export const PageMasterUiSchema: any = {
|
|
|
270
270
|
widget: "Button",
|
|
271
271
|
},
|
|
272
272
|
config: {
|
|
273
|
-
|
|
273
|
+
layout: 3.5,
|
|
274
274
|
main: {
|
|
275
275
|
name: "No",
|
|
276
276
|
startIcon: "ApproveIcon",
|
|
277
277
|
variant: "contained",
|
|
278
278
|
color: "info",
|
|
279
279
|
type: "text",
|
|
280
|
-
onClick: "
|
|
280
|
+
onClick: "deletePopUpComponent",
|
|
281
281
|
size: "small",
|
|
282
282
|
},
|
|
283
283
|
style: {
|
|
@@ -294,15 +294,14 @@ export const PageMasterUiSchema: any = {
|
|
|
294
294
|
widget: "Button",
|
|
295
295
|
},
|
|
296
296
|
config: {
|
|
297
|
-
|
|
297
|
+
layout: 3.5,
|
|
298
298
|
main: {
|
|
299
299
|
name: "Yes",
|
|
300
300
|
startIcon: "ApproveIcon",
|
|
301
301
|
variant: "contained",
|
|
302
302
|
color: "info",
|
|
303
303
|
type: "text",
|
|
304
|
-
onClick: "
|
|
305
|
-
// Delete_Components
|
|
304
|
+
onClick: "Delete_Components",
|
|
306
305
|
size: "small",
|
|
307
306
|
},
|
|
308
307
|
|