@bigbinary/neeto-fields-frontend 1.3.1 → 1.3.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.
package/README.md CHANGED
@@ -640,7 +640,7 @@ In order to customize the engine's default behavior, we have several ways.
640
640
  `NeetoFieldsEngine::Fields::Customizable` or
641
641
  `NeetoFieldsEngine::FieldValues::Customizable` depending on the context.
642
642
 
643
- > _Eg: If you want to do something before update action of `FieldsController`,
643
+ > _Eg: If you want to do something before the update action of `FieldsController`,
644
644
  > then define it in `before_update_process` method inside the
645
645
  > `NeetoFieldsEngine::Fields::Customizable` concern._
646
646
 
package/dist/index.cjs.js CHANGED
@@ -6096,7 +6096,8 @@ var useFormikFields = function useFormikFields(_ref) {
6096
6096
  value: value
6097
6097
  }, fieldData);
6098
6098
  } else if (kind === KINDS.multiOption) {
6099
- value = value.map(function (optionId) {
6099
+ var _value;
6100
+ value = (_value = value) === null || _value === void 0 ? void 0 : _value.map(function (optionId) {
6100
6101
  return pure.findBy({
6101
6102
  value: optionId
6102
6103
  }, fieldData);