impaktapps-ui-builder 1.0.63-alpha.2 → 1.0.63-alpha.4

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.
@@ -10976,6 +10976,9 @@ const buildTabSection = (config2, componentScope2) => {
10976
10976
  if (config2.sectionLabels) {
10977
10977
  tab.config.main.tabLabels = config2.sectionLabels.map((e) => e.label);
10978
10978
  }
10979
+ if (config2.style) {
10980
+ tab.config.style = JSON.parse(config2.style);
10981
+ }
10979
10982
  tab.config.main.id = config2.name;
10980
10983
  return tab;
10981
10984
  };
@@ -12284,6 +12287,9 @@ var horizontalLayout = {
12284
12287
  const buildHorizontalLayout = (config2, componentScope2) => {
12285
12288
  const horizontal = _.cloneDeep(horizontalLayout);
12286
12289
  horizontal.scope = componentScope2;
12290
+ if (config2.style) {
12291
+ horizontal.config.style = JSON.parse(config2.style);
12292
+ }
12287
12293
  if (config2.layout) {
12288
12294
  horizontal.config.layout = createLayoutFormat(config2.layout, config2.type);
12289
12295
  }