-
-
Notifications
You must be signed in to change notification settings - Fork 207
Closed
Description
Is it possible to add feature for column size to be in other units other than px?
Here's my current column setup:
config: {
size: 118,
name: 'Ticket code',
},
What I have in mind is to use ch units. Where in this case I would like to setup size as 12ch. It could be for example:
config: {
size: '12ch',
name: 'Ticket code',
},
where there would be problem with typescript types as it would be impossible to check if the string is valid. Or:
config: {
size: 12,
size-unit: 'ch', //default in px and it could have specific typecheck to supported units.
name: 'Ticket code',
},
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels