impaktapps-ui-builder 1.0.57-alpha.3 → 1.0.57-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.
@@ -7760,7 +7760,7 @@ const buildPropertiesSection = function(type) {
7760
7760
  uiSchema.elements = [
7761
7761
  getInputField("placeholder", "Placeholder"),
7762
7762
  getRadioInputField("multiline", "Multiline", ["YES", "NO"]),
7763
- getSelectField("defaultStyle", "Default Style"),
7763
+ getSelectField("variant", "Variant"),
7764
7764
  emptyBox$1("TextEmpty1", { xs: 6, sm: 6, md: 0, lg: 3 }),
7765
7765
  getArrayControl("InputFormatingAndMasking", "formatElement", "Format Element"),
7766
7766
  getInputField("keyName", "Event Key Name")
@@ -7914,14 +7914,14 @@ const buildPropertiesSection = function(type) {
7914
7914
  uiSchema.elements = [
7915
7915
  getRadioInputField("lazyLoading", "Lazy Loading", ["YES", "NO"]),
7916
7916
  getRadioInputField("freeSolo", "FreeSolo", ["YES", "NO"]),
7917
- getSelectField("defaultStyle", "Default Style"),
7917
+ getSelectField("variant", "Variant"),
7918
7918
  emptyBox$1("SelectEmpty")
7919
7919
  ];
7920
7920
  break;
7921
7921
  case "MultipleSelect":
7922
7922
  uiSchema.elements = [
7923
7923
  getRadioInputField("lazyLoading", "Lazy Loading", ["YES", "NO"]),
7924
- getSelectField("defaultStyle", "Default Style"),
7924
+ getSelectField("variant", "Variant"),
7925
7925
  emptyBox$1("MultipleSelectEmpty1", { xs: 0, sm: 6, md: 4, lg: 4 }),
7926
7926
  emptyBox$1("MultipleSelectEmpty2")
7927
7927
  ];
@@ -11110,6 +11110,9 @@ const buildTextField = (config2, componentScope2) => {
11110
11110
  if (config2.placeholder) {
11111
11111
  inputField.config.main.placeholder = config2.placeholder;
11112
11112
  }
11113
+ if (config2.variant) {
11114
+ inputField.config.main.variant = config2.variant;
11115
+ }
11113
11116
  if (config2.layout) {
11114
11117
  inputField.config.layout = createLayoutFormat(config2.layout);
11115
11118
  }
@@ -11144,6 +11147,9 @@ const buildSelect = (config2, componentScope2) => {
11144
11147
  if (config2.lazyLoading) {
11145
11148
  selectInputField.config.main.lazyLoading = config2.lazyLoading === "YES" ? true : false;
11146
11149
  }
11150
+ if (config2.variant) {
11151
+ selectInputField.config.main.variant = config2.variant;
11152
+ }
11147
11153
  if (config2.layout) {
11148
11154
  selectInputField.config.layout = createLayoutFormat(config2.layout);
11149
11155
  }
@@ -11767,6 +11773,9 @@ const buildMultiSelect = (config2, componentScope2) => {
11767
11773
  if (config2.value) {
11768
11774
  multipleSelect.config.main.options = config2.value;
11769
11775
  }
11776
+ if (config2.variant) {
11777
+ multipleSelect.config.main.variant = config2.variant;
11778
+ }
11770
11779
  if (config2.lazyLoading) {
11771
11780
  multipleSelect.config.main.lazyLoading = config2.lazyLoading === "YES" ? true : false;
11772
11781
  }