impaktapps-ui-builder 1.0.147-test.6 → 1.0.147-test.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.
@@ -11284,6 +11284,9 @@ const buildSelect = (config, componentScope) => {
11284
11284
  if (config.layout) {
11285
11285
  selectInputField.config.layout = createLayoutFormat(config.layout);
11286
11286
  }
11287
+ if (config.style) {
11288
+ selectInputField.config.style = JSON.parse(config.style);
11289
+ }
11287
11290
  selectInputField.scope = componentScope;
11288
11291
  return selectInputField;
11289
11292
  };