impaktapps-ui-builder 0.0.101-alpha.215 → 0.0.101-alpha.217

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.
@@ -7060,7 +7060,7 @@ const componentBasicUiSchema = (theme) => {
7060
7060
  },
7061
7061
  {
7062
7062
  type: "Control",
7063
- scope: "#/properties/bread",
7063
+ scope: "#/properties/pageName",
7064
7064
  options: {
7065
7065
  widget: "Breadcrumb"
7066
7066
  },
@@ -8770,7 +8770,9 @@ var Component = (store2, dynamicData2, submitHandler, service2) => {
8770
8770
  onNavigatePopupYes: function() {
8771
8771
  try {
8772
8772
  store2.navigate(sessionStorage.getItem("pendingNavigatePath"));
8773
+ store2.updateDialog(`pageNamepopup`);
8773
8774
  } catch (e) {
8775
+ store2.updateDialog(`pageNamepopup`);
8774
8776
  store2.setNotify({
8775
8777
  FailMessage: "Couldn't navigate page",
8776
8778
  Fail: true
@@ -8778,7 +8780,7 @@ var Component = (store2, dynamicData2, submitHandler, service2) => {
8778
8780
  }
8779
8781
  },
8780
8782
  onNavigatePopupNo: function() {
8781
- store2.updateDialog(`breadpopup`);
8783
+ store2.updateDialog(`pageNamepopup`);
8782
8784
  }
8783
8785
  };
8784
8786
  };
@@ -9398,7 +9400,10 @@ const EventUiSchema = (theme) => {
9398
9400
  },
9399
9401
  config: {
9400
9402
  layout: 12,
9401
- main: {},
9403
+ main: {
9404
+ onNavigatePopupNo: "onNavigatePopupNo",
9405
+ onNavigatePopupYes: "onNavigatePopupYes"
9406
+ },
9402
9407
  style: {
9403
9408
  paddingLeft: theme.spacing(3),
9404
9409
  color: theme.palette.grey[600],
@@ -9906,6 +9911,21 @@ var event = (store2, dynamicData2, submitHandler, service2, functionsName) => {
9906
9911
  Component(store2, dynamicData2, submitHandler, service2).RemoveItemButton(
9907
9912
  store2
9908
9913
  );
9914
+ },
9915
+ onNavigatePopupYes: function() {
9916
+ try {
9917
+ store2.navigate(sessionStorage.getItem("pendingNavigatePath"));
9918
+ store2.updateDialog(`pageNamepopup`);
9919
+ } catch (e) {
9920
+ store2.updateDialog(`pageNamepopup`);
9921
+ store2.setNotify({
9922
+ FailMessage: "Couldn't navigate page",
9923
+ Fail: true
9924
+ });
9925
+ }
9926
+ },
9927
+ onNavigatePopupNo: function() {
9928
+ store2.updateDialog(`pageNamepopup`);
9909
9929
  }
9910
9930
  };
9911
9931
  };