mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 12:16:53 +00:00
Added clear icon for nullable single select columns re #261 Signed-off-by: Pranav C Balan <pranavxc@gmail.com>
34 lines
610 B
JavaScript
34 lines
610 B
JavaScript
export default {
|
|
'ID': {},
|
|
'ForeignKey': {},
|
|
'SingleLineText': {w: '150px'},
|
|
'LongText': {w: '400px'},
|
|
'Attachment': {},
|
|
'Checkbox': {},
|
|
'MultiSelect': {w: '200px'},
|
|
'SingleSelect': {w: '200px'},
|
|
'Collaborator': {},
|
|
'Date': {},
|
|
'Year': {},
|
|
'Time': {},
|
|
'PhoneNumber': {},
|
|
'Email': {},
|
|
'URL': {},
|
|
'Number': {},
|
|
'Decimal': {},
|
|
'Currency': {},
|
|
'Percent': {},
|
|
'Duration': {},
|
|
'Rating': {},
|
|
'Formula': {},
|
|
'Rollup': {},
|
|
'Count': {},
|
|
'Lookup': {},
|
|
'DateTime': {},
|
|
'CreateTime': {},
|
|
'LastModifiedTime': {},
|
|
'AutoNumber': {},
|
|
'Barcode': {},
|
|
'Button': {},
|
|
}
|