@dereekb/dbx-form 13.11.12 → 13.11.14

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.
@@ -2106,7 +2106,12 @@ function calendarDateScheduleRangeFieldMapper(fieldDef) {
2106
2106
  const defaultProps = inject(DEFAULT_PROPS);
2107
2107
  const defaultValidationMessages = inject(DEFAULT_VALIDATION_MESSAGES);
2108
2108
  return computed(() => {
2109
- return buildValueFieldInputs(fieldDef, ctx, defaultProps?.(), defaultValidationMessages?.());
2109
+ const inputs = buildValueFieldInputs(fieldDef, ctx, defaultProps?.());
2110
+ const dvm = defaultValidationMessages?.();
2111
+ if (dvm !== undefined) {
2112
+ inputs['defaultValidationMessages'] = dvm;
2113
+ }
2114
+ return inputs;
2110
2115
  });
2111
2116
  }
2112
2117