impaktapps-ui-builder 1.0.234 → 1.0.235

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.
@@ -12161,7 +12161,9 @@ const buildDate = (config2, componentScope2) => {
12161
12161
  const buildDateTime = (config2, componentScope2) => {
12162
12162
  const dateTimeInputField = _.cloneDeep(DateTime);
12163
12163
  dateTimeInputField.config.main.label = config2.label;
12164
- dateTimeInputField.config.main.errorMessage = `${config2.name} is empty or invalid`;
12164
+ if (dateTimeInputField.config.main.errorMessage) {
12165
+ dateTimeInputField.config.main.errorMessage = `${config2.name} is empty or invalid`;
12166
+ }
12165
12167
  dateTimeInputField.scope = componentScope2;
12166
12168
  if (config2.layout) {
12167
12169
  dateTimeInputField.config.layout = createLayoutFormat(config2.layout);