-
Notifications
You must be signed in to change notification settings - Fork 13
/
const.go
22 lines (20 loc) · 992 Bytes
/
const.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package crud
const (
InputTypeNumber = "InputTypeNumber"
MultiSelectTypeArrayNumber = "MultiSelectTypeArrayNumber"
RangeSliderTypeArrayNumber = "RangeSliderTypeArrayNumber"
InputTypeString = "InputTypeString"
ArrayStringType = "ArrayStringType" //not sure what element should be, we can rename it whenever we need it
SelectTypeStringString = "SelectTypeStringString"
SelectTypeIntString = "SelectTypeIntString"
DateTimePickerTypeDateTime = "DateTimePickerTypeDateTime"
DatePickerTypeDate = "DatePickerTypeDate"
RangeDateTimePickerTypeArrayDateTime = "RangeDateTimePickerTypeArrayDateTime"
RangeDatePickerTypeArrayDate = "RangeDatePickerTypeArrayDate"
CheckboxTypeBoolean = "CheckboxTypeBoolean"
)
const (
FieldTypeBool = "Bool"
FieldTypeCoordinates = "Coordinates"
FieldTypeDateTime = "DateTime"
)