impaktapps-ui-builder 0.0.101-alpha.6 → 0.0.101-alpha.8
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 +3 -2
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/uiSchema.ts +1 -0
- package/src/impaktapps-ui-builder/builder/services/component.ts +2 -2
|
@@ -6607,6 +6607,7 @@ const componentBasicUiSchema = (theme) => {
|
|
|
6607
6607
|
type: "WrapperLayout",
|
|
6608
6608
|
config: {
|
|
6609
6609
|
main: {
|
|
6610
|
+
label: "",
|
|
6610
6611
|
gap: "8px"
|
|
6611
6612
|
}
|
|
6612
6613
|
},
|
|
@@ -8292,8 +8293,8 @@ function refreshPage(type, store2) {
|
|
|
8292
8293
|
Validation: ValidationSection
|
|
8293
8294
|
};
|
|
8294
8295
|
const elements = (_a = sectionLabels[type]) == null ? void 0 : _a.map((e) => sectionUiSchema[e]);
|
|
8295
|
-
UiSchema.elements[
|
|
8296
|
-
UiSchema.elements[
|
|
8296
|
+
UiSchema.elements[0].config.main.tabLabels = sectionLabels[type] || ["Core", "Style", "Event", "Validation"];
|
|
8297
|
+
UiSchema.elements[0].elements = elements || [CoreSection, StyleSection, EventSection(store2.theme.myTheme), ValidationSection];
|
|
8297
8298
|
}
|
|
8298
8299
|
if (sessionStorage.getItem("copiedConfig")) {
|
|
8299
8300
|
this.ElementPathSetter(UiSchema);
|