impaktapps-ui-builder 1.0.63-alpha.1 → 1.0.63-alpha.3

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.
@@ -8466,6 +8466,7 @@ const sectionLabels = {
8466
8466
  Table: ["Core", "Components", "Properties", "Events", "Style", "Validation"],
8467
8467
  LeaderBoard: ["Core", "Components", "Properties", "Events", "Style", "Validation"],
8468
8468
  WrapperSection: ["Core", "Components", "Properties", "Style", "Validation"],
8469
+ HorizontalLayout: ["Core", "Components", "Properties", "Style", "Validation"],
8469
8470
  TabSection: ["Core", "Components", "Properties", "Style", "Validation"],
8470
8471
  SpeedoMeter: ["Core", "Properties", "Events", "Style", "Validation"],
8471
8472
  card: ["Core", "Properties", "Events", "Style", "Validation"],
@@ -10975,6 +10976,9 @@ const buildTabSection = (config2, componentScope2) => {
10975
10976
  if (config2.sectionLabels) {
10976
10977
  tab.config.main.tabLabels = config2.sectionLabels.map((e) => e.label);
10977
10978
  }
10979
+ if (config2.style) {
10980
+ tab.config.style = JSON.parse(config2.style);
10981
+ }
10978
10982
  tab.config.main.id = config2.name;
10979
10983
  return tab;
10980
10984
  };
@@ -12283,6 +12287,9 @@ var horizontalLayout = {
12283
12287
  const buildHorizontalLayout = (config2, componentScope2) => {
12284
12288
  const horizontal = _.cloneDeep(horizontalLayout);
12285
12289
  horizontal.scope = componentScope2;
12290
+ if (config2.style) {
12291
+ horizontal.config.style = JSON.parse(config2.style);
12292
+ }
12286
12293
  if (config2.layout) {
12287
12294
  horizontal.config.layout = createLayoutFormat(config2.layout, config2.type);
12288
12295
  }