@netgrif/components-core 6.0.2-rc.5 → 6.0.2

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.
@@ -14939,6 +14939,12 @@
14939
14939
  return { value: immediate.value.defaultValue, icon: undefined, type: immediate.type };
14940
14940
  case 'multichoice':
14941
14941
  return { value: immediate.value.map(function (it) { return it.defaultValue; }).join(', '), icon: undefined, type: immediate.type };
14942
+ case 'enumeration_map':
14943
+ return { value: immediate.options[immediate.value].defaultValue, icon: undefined, type: immediate.type };
14944
+ case 'multichoice_map':
14945
+ return { value: immediate.value.map(function (it) {
14946
+ return immediate.options[it].defaultValue;
14947
+ }).join(', '), icon: undefined, type: immediate.type };
14942
14948
  case 'file':
14943
14949
  return { value: (_a = immediate.value) === null || _a === void 0 ? void 0 : _a.name, icon: 'insert_drive_file', type: immediate.type };
14944
14950
  case 'fileList':