Sha256: bc459e8eabf68d825c5c0402367546bfa7d496cc6babb458588d72db305a0ed3
Contents?: true
Size: 750 Bytes
Versions: 31
Compression:
Stored size: 750 Bytes
Contents
module ForestAdminDatasourceToolkit module Components module Actions class FieldType BOOLEAN = 'Boolean'.freeze DATE = 'Date'.freeze TIME = 'Time'.freeze DATE_ONLY = 'Dateonly'.freeze COLLECTION = 'Collection'.freeze ENUM = 'Enum'.freeze ENUM_LIST = 'EnumList'.freeze FILE = 'File'.freeze FILE_LIST = 'FileList'.freeze JSON = 'Json'.freeze NUMBER = 'Number'.freeze NUMBER_LIST = 'NumberList'.freeze STRING = 'String'.freeze STRING_LIST = 'StringList'.freeze LAYOUT = 'Layout'.freeze def self.all constants.map { |constant| const_get(constant) } end end end end end
Version data entries
31 entries across 31 versions & 1 rubygems