impaktapps-ui-builder 0.0.386 → 0.0.387

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.
@@ -22,13 +22,6 @@ const PageMasterSchema = {
22
22
  }
23
23
  }
24
24
  },
25
- template: {
26
- oneOf: [
27
- { const: "Template-1", title: "template1" },
28
- { const: "Template-2", title: "template2" },
29
- { const: "Template-3", title: "template3" }
30
- ]
31
- },
32
25
  sectionLabels: {
33
26
  type: "array",
34
27
  items: {
@@ -41,7 +34,7 @@ const PageMasterSchema = {
41
34
  }
42
35
  }
43
36
  },
44
- required: ["label", "template"]
37
+ required: ["label", "name"]
45
38
  };
46
39
  const PageMasterUiSchema = {
47
40
  type: "HorizontalLayout",
@@ -121,19 +114,14 @@ const PageMasterUiSchema = {
121
114
  },
122
115
  {
123
116
  type: "Control",
124
- scope: "#/properties/template",
117
+ scope: "#/properties/label",
125
118
  options: {
126
- widget: "SelectInputField"
119
+ widget: "InputField"
127
120
  },
128
121
  config: {
129
122
  layout: { xs: 11, sm: 11, md: 5.5, lg: 5.5 },
130
123
  main: {
131
- label: "Template",
132
- options: [
133
- { const: "template1", title: "template1" },
134
- { const: "template2", title: "template2" },
135
- { const: "template3", title: "template3" }
136
- ],
124
+ label: "label",
137
125
  color: "secondary",
138
126
  required: true
139
127
  }