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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.382-alpha.317",
3
+ "version": "0.0.382-alpha.319",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -462,10 +462,6 @@ export const PageMasterUiSchema: any = {
462
462
  options: {
463
463
  widget: "PopUp",
464
464
  },
465
- style:{
466
- width: "32%",
467
- margin: "auto"
468
- },
469
465
  config: {
470
466
  layout: {
471
467
  xs: 12,
@@ -476,6 +472,10 @@ export const PageMasterUiSchema: any = {
476
472
  main: {
477
473
  title: "Delete Content"
478
474
  },
475
+ style:{
476
+ width: "32%",
477
+ margin: "auto"
478
+ },
479
479
  },
480
480
  elements:
481
481
  [
@@ -536,7 +536,7 @@ export const PageMasterUiSchema: any = {
536
536
  layout: 3,
537
537
  main: {
538
538
  name: "No",
539
- startIcon: "CloseIcon",
539
+ endIcon: "CloseIcon",
540
540
  variant: "contained",
541
541
  color: "info",
542
542
  type: "text",
@@ -66,7 +66,7 @@ export default (funcParams: funcParamsProps) => {
66
66
  };
67
67
  return {
68
68
  setPage: async function () {
69
- funcParams.store.setFormdata({});
69
+ await funcParams.store.setFormdata({});
70
70
  executeEventsParameters = {
71
71
  config: {}, componentName: "",
72
72
  store: funcParams.store, dynamicData: funcParams.dynamicData, userValue: funcParams.userValue, service: funcParams.service,
@@ -76,7 +76,7 @@ export default (funcParams: funcParamsProps) => {
76
76
  (pre: any) => {
77
77
  return {
78
78
  ...funcParams.schema, properties:
79
- { ...funcParams.schema.properties, ...pre.properties, }
79
+ { ...funcParams.schema.properties }
80
80
  }
81
81
  }
82
82
  )