impaktapps-ui-builder 0.0.101-alpha.267 → 0.0.101-alpha.268
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.
- package/dist/impaktapps-ui-builder.es.js +268 -206
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +13 -13
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/buildPhoneInput.d.ts +1 -0
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/coreSection.d.ts +83 -71
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/phoneInput.d.ts +20 -0
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/table.d.ts +0 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/validationSections.d.ts +50 -37
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildPhoneInput.ts +26 -0
- package/src/impaktapps-ui-builder/builder/build/buildUiSchema.ts +13 -28
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +49 -95
- package/src/impaktapps-ui-builder/builder/build/uischema/coreSection.ts +118 -118
- package/src/impaktapps-ui-builder/builder/build/uischema/phoneInput.ts +16 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/table.ts +0 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/validationSections.ts +60 -114
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +2 -9
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/uiSchema.ts +63 -118
- package/src/impaktapps-ui-builder/builder/services/component.ts +7 -10
- package/src/impaktapps-ui-builder/runtime/services/service.ts +1 -2
|
@@ -143,19 +143,16 @@ export function refreshPage(type: string, store: any) {
|
|
|
143
143
|
},
|
|
144
144
|
},
|
|
145
145
|
UiSchema.elements[0].elements[0].elements[9] =
|
|
146
|
-
|
|
146
|
+
{
|
|
147
147
|
type: "Control",
|
|
148
|
-
scope: "#/properties/
|
|
149
|
-
options: {
|
|
150
|
-
widget: "SelectInputField",
|
|
151
|
-
},
|
|
148
|
+
scope: "#/properties/proc",
|
|
152
149
|
config: {
|
|
153
|
-
layout: { xs:
|
|
154
|
-
main: {
|
|
155
|
-
label: "Element Type",
|
|
156
|
-
},
|
|
150
|
+
layout: { xs: 0, sm: 0, md: 4, lg: 0 },
|
|
157
151
|
},
|
|
158
|
-
|
|
152
|
+
options: {
|
|
153
|
+
widget: "EmptyBox",
|
|
154
|
+
},
|
|
155
|
+
};
|
|
159
156
|
}
|
|
160
157
|
|
|
161
158
|
if (sessionStorage.getItem("copiedConfig") ) {
|
|
@@ -78,7 +78,6 @@ export default (funcParams: funcParamsProps) => {
|
|
|
78
78
|
setPage: async function () {
|
|
79
79
|
funcParams.store.setAdditionalErrors([]);
|
|
80
80
|
funcParams.store.setFormdata({});
|
|
81
|
-
funcParams.store.setSchema({ type: "object", properties: {} });
|
|
82
81
|
funcParams.store.newData = {};
|
|
83
82
|
const pageBasicDetailString = sessionStorage.getItem("pagemasterMetaData")
|
|
84
83
|
if (pageBasicDetailString) {
|
|
@@ -286,7 +285,7 @@ export default (funcParams: funcParamsProps) => {
|
|
|
286
285
|
{ key: "searchValue", value: param.serachValue },
|
|
287
286
|
{ key: "currentValue", value: param.currentValue }
|
|
288
287
|
]
|
|
289
|
-
const response = await this.callExecuteEvents(param, apiBody
|
|
288
|
+
const response = await this.callExecuteEvents(param, apiBody);
|
|
290
289
|
return response?.data;
|
|
291
290
|
}
|
|
292
291
|
},
|