impaktapps-ui-builder 0.0.101-alpha.102 → 0.0.101-alpha.104

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/programIdRequired",
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"
@@ -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 }