Add grid display type for modules and formatters

That’s it. I want the end user to be able to pass an undefined number of arrays of values but giving them the option of using the UI and the SC bindings, thus why I though of the enum display type.

fruits = [“banana”, “apple”]

Say user SC function is going to produce these arrays during the execution

arr1 = [“pear”, “lemon”]
arr2 = “pineapple”
arr3 = “”
arr4 = [“banana”]

arrN = [“strawberry”, “grape”]

At the end they want to concatenate everything so I am creating a formatter for this

fruits.concat(arr1, arr2, arr3, arr4,…,arrN)

So I though lets give them the enum display type so they can bind the value to those arr1…arrN and they can call the keys whatever they want because I just need the values of each pair they add.