@engagebay/engagebay-form-module 1.0.2-beta.0 → 1.0.2-beta.1

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@engagebay/engagebay-form-module",
3
- "version": "1.0.2-beta.0",
3
+ "version": "1.0.2-beta.1",
4
4
  "description": "Provide base form components to reacho",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -150,7 +150,6 @@ const DynamicMultiSelect: React.FC<FormFieldComponentPropSchema> = (
150
150
  className={`relative form-listbox flex-1 overflow-hidden`}
151
151
  >
152
152
  <ListboxButton
153
- static
154
153
  className={
155
154
  props.fieldConfig.customClassNames?.fieldClassName
156
155
  ? "form-listbox-select " +
@@ -161,8 +161,7 @@ const RenderListOptions = forwardRef<HTMLUListElement, RenderListOptionsProps>(
161
161
  selected = option.value == formValue;
162
162
  }
163
163
  return (
164
- <Listbox.Option
165
- static
164
+ <ListboxOption
166
165
  key={option.value}
167
166
  disabled={option.isDisabled}
168
167
  onClick={() => setTimeout(resetToDefault, 300)}