impaktapps-ui-builder 0.0.382-alpha.317 → 0.0.382-alpha.319
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 +7 -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/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +5 -5
- package/src/impaktapps-ui-builder/runtime/services/service.ts +2 -2
|
@@ -483,10 +483,6 @@ const PageMasterUiSchema = {
|
|
|
483
483
|
options: {
|
|
484
484
|
widget: "PopUp"
|
|
485
485
|
},
|
|
486
|
-
style: {
|
|
487
|
-
width: "32%",
|
|
488
|
-
margin: "auto"
|
|
489
|
-
},
|
|
490
486
|
config: {
|
|
491
487
|
layout: {
|
|
492
488
|
xs: 12,
|
|
@@ -496,6 +492,10 @@ const PageMasterUiSchema = {
|
|
|
496
492
|
},
|
|
497
493
|
main: {
|
|
498
494
|
title: "Delete Content"
|
|
495
|
+
},
|
|
496
|
+
style: {
|
|
497
|
+
width: "32%",
|
|
498
|
+
margin: "auto"
|
|
499
499
|
}
|
|
500
500
|
},
|
|
501
501
|
elements: [
|
|
@@ -556,7 +556,7 @@ const PageMasterUiSchema = {
|
|
|
556
556
|
layout: 3,
|
|
557
557
|
main: {
|
|
558
558
|
name: "No",
|
|
559
|
-
|
|
559
|
+
endIcon: "CloseIcon",
|
|
560
560
|
variant: "contained",
|
|
561
561
|
color: "info",
|
|
562
562
|
type: "text",
|
|
@@ -9147,7 +9147,7 @@ var service = (funcParams) => {
|
|
|
9147
9147
|
};
|
|
9148
9148
|
return {
|
|
9149
9149
|
setPage: async function() {
|
|
9150
|
-
funcParams.store.setFormdata({});
|
|
9150
|
+
await funcParams.store.setFormdata({});
|
|
9151
9151
|
executeEventsParameters = {
|
|
9152
9152
|
config: {},
|
|
9153
9153
|
componentName: "",
|
|
@@ -9162,7 +9162,7 @@ var service = (funcParams) => {
|
|
|
9162
9162
|
(pre) => {
|
|
9163
9163
|
return {
|
|
9164
9164
|
...funcParams.schema,
|
|
9165
|
-
properties: { ...funcParams.schema.properties
|
|
9165
|
+
properties: { ...funcParams.schema.properties }
|
|
9166
9166
|
};
|
|
9167
9167
|
}
|
|
9168
9168
|
);
|