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