impaktapps-ui-builder 0.0.401 → 0.0.403

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.
@@ -8646,6 +8646,7 @@ var service = (funcParams) => {
8646
8646
  return {
8647
8647
  setPage: async function() {
8648
8648
  funcParams.store.setFormdata({});
8649
+ await asyncOperation();
8649
8650
  executeEventsParameters = {
8650
8651
  config: {},
8651
8652
  componentName: "",
@@ -8657,16 +8658,6 @@ var service = (funcParams) => {
8657
8658
  serviceHolder: this,
8658
8659
  eventGroups
8659
8660
  };
8660
- funcParams.store.setSchema(
8661
- (pre) => {
8662
- return {
8663
- ...funcParams.schema,
8664
- properties: { ...funcParams.schema.properties, ...pre.properties }
8665
- };
8666
- }
8667
- );
8668
- funcParams.uiSchema.elements.push(notifyUiSchema);
8669
- funcParams.store.setUiSchema(funcParams.uiSchema);
8670
8661
  await executeRefreshHandler({
8671
8662
  config: {},
8672
8663
  componentName: "",
@@ -8677,6 +8668,17 @@ var service = (funcParams) => {
8677
8668
  serviceHolder: this,
8678
8669
  eventGroups
8679
8670
  });
8671
+ await asyncOperation();
8672
+ funcParams.store.setSchema(
8673
+ (pre) => {
8674
+ return {
8675
+ ...funcParams.schema,
8676
+ properties: { ...funcParams.schema.properties, ...pre.properties }
8677
+ };
8678
+ }
8679
+ );
8680
+ funcParams.uiSchema.elements.push(notifyUiSchema);
8681
+ funcParams.store.setUiSchema(funcParams.uiSchema);
8680
8682
  },
8681
8683
  onClick: async function() {
8682
8684
  await this.callHandler("onClick");