impaktapps-ui-builder 0.0.101-alpha.101 → 0.0.101-alpha.103

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.
@@ -96,11 +96,25 @@ const PageMasterUiSchema = (theme) => {
96
96
  }
97
97
  }
98
98
  },
99
+ {
100
+ type: "Control",
101
+ scope: "#/properties/active",
102
+ options: {
103
+ widget: "RadioInputField"
104
+ },
105
+ config: {
106
+ layout: { xs: 12, sm: 6, md: 4, lg: 3 },
107
+ main: {
108
+ label: "Program ID Required",
109
+ options: [{ label: "Yes", const: "YES" }, { label: "No", const: "NO" }]
110
+ }
111
+ }
112
+ },
99
113
  {
100
114
  type: "Control",
101
115
  scope: "#/properties/EmptyBox",
102
116
  config: {
103
- layout: { xs: 0, sm: 0, md: 4, lg: 6 }
117
+ layout: { xs: 0, sm: 6, md: 0, lg: 3 }
104
118
  },
105
119
  options: {
106
120
  widget: "EmptyBox"
@@ -8689,7 +8703,7 @@ var Component = (store2, dynamicData2, submitHandler, service2) => {
8689
8703
  this.ElementPathSetter(uiSchema, copiedFormData);
8690
8704
  sessionStorage.setItem("copiedConfig", JSON.stringify(copiedFormData));
8691
8705
  store2.setNotify({
8692
- SuccessMessage: `${elementType} Copied successfully`,
8706
+ SuccessMessage: `${elementType} Copied Successfully`,
8693
8707
  Success: true
8694
8708
  });
8695
8709
  store2.setSchema(schema2);
@@ -10285,6 +10299,7 @@ var service = (funcParams) => {
10285
10299
  }));
10286
10300
  }
10287
10301
  const config2 = pageData == null ? void 0 : pageData.config;
10302
+ console.log("Config", config2);
10288
10303
  const uiSchema = pageData == null ? void 0 : pageData.uiSchema;
10289
10304
  const event2 = new CustomEvent("pageNameChanged", {
10290
10305
  detail: { pageName: config2.label }