impaktapps-ui-builder 1.0.147-test.4 → 1.0.147-test.6

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.
@@ -11556,7 +11556,8 @@ function Card(theme) {
11556
11556
  position: "relative",
11557
11557
  top: "50%",
11558
11558
  transform: "translateY(-50%)",
11559
- marginBottom: 0
11559
+ marginBottom: 0,
11560
+ borderRadius: "0px"
11560
11561
  },
11561
11562
  componentsBoxStyle: {
11562
11563
  boxShadow: "0px 2px 4px rgba(0, 0, 0, 0.1)",
@@ -11887,6 +11888,9 @@ const buildMultiSelect = (config, componentScope) => {
11887
11888
  if (config.lazyLoading) {
11888
11889
  multipleSelect.config.main.lazyLoading = config.lazyLoading === "YES" ? true : false;
11889
11890
  }
11891
+ if (config.style) {
11892
+ multipleSelect.config.style = JSON.parse(config.style);
11893
+ }
11890
11894
  return multipleSelect;
11891
11895
  };
11892
11896
  const buildBasicUiSchema = (config) => {