impaktapps-ui-builder 0.0.403 → 0.0.404

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.
@@ -5909,7 +5909,13 @@ const ComponentSchema = {
5909
5909
  { title: "Text", const: "Text" },
5910
5910
  { title: "Text Area", const: "TextArea" },
5911
5911
  { title: "Timer", const: "Timer" },
5912
- { title: "Upload File", const: "UploadFile" }
5912
+ { title: "Upload File", const: "UploadFile" },
5913
+ { title: "Text Area", const: "TextArea" },
5914
+ { title: "Timer", const: "Timer" },
5915
+ { title: "Upload File", const: "UploadFile" },
5916
+ { title: "Date Column", const: "date" },
5917
+ { title: "DateTime Column", const: "dateTime" },
5918
+ { title: "Amount Column", const: "amount" }
5913
5919
  ]
5914
5920
  },
5915
5921
  orientation: {
@@ -10943,10 +10949,12 @@ const buildUiSchema = (config) => {
10943
10949
  accessorKey: e.name,
10944
10950
  header: e.label || e.name,
10945
10951
  size: sizeMap[e.name] || 180,
10952
+ type: e.type,
10946
10953
  widget: buildUiSchema(e)
10947
10954
  };
10948
10955
  }
10949
10956
  return {
10957
+ type: e.type,
10950
10958
  accessorKey: e.name,
10951
10959
  header: e.label || e.name,
10952
10960
  size: sizeMap[e.name] || 180