cloud-web-corejs 1.0.54-dev.626 → 1.0.54-dev.627

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.
@@ -694,6 +694,8 @@ export const columnFormatMap = {
694
694
  text: "text",
695
695
  checkbox: "checkbox",
696
696
  radio: "radio",
697
+ dropdown: "dropdown",
698
+ textarea: "textarea",
697
699
  };
698
700
 
699
701
  export function getFieldWidgetById(widgetList, fieldId, staticWidgetsIncluded) {
@@ -876,7 +878,11 @@ export function buildDefaultFormJson() {
876
878
  export function cloneFormConfigWithoutEventHandler(e) {
877
879
  var t = deepClone(e);
878
880
  return (
879
- (t.onFormCreated = ""), (t.onFormBeforeMounted = ""), (t.onFormMounted = ""), (t.onFormDataChange = ""), t
881
+ (t.onFormCreated = ""),
882
+ (t.onFormBeforeMounted = ""),
883
+ (t.onFormMounted = ""),
884
+ (t.onFormDataChange = ""),
885
+ t
880
886
  );
881
887
  }
882
888