@dereekb/dbx-form 9.22.1 → 9.22.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.
@@ -4902,13 +4902,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
4902
4902
  }] } });
4903
4903
 
4904
4904
  function dbxFormSearchFormFields(config) {
4905
- const { label = ' ', placeholder = 'Search' } = config || {};
4905
+ const { label = ' ', placeholder = 'Search', materialFormField } = config || {};
4906
4906
  return [
4907
4907
  textField({
4908
4908
  key: 'search',
4909
4909
  label,
4910
4910
  placeholder,
4911
- autocomplete: false
4911
+ autocomplete: false,
4912
+ materialFormField
4912
4913
  })
4913
4914
  ];
4914
4915
  }