Kasper Mikiewicz

Results 62 issues of Kasper Mikiewicz

`For example: .uniqe('name') will take only first unique record (by 'name' field)` `Hmm, maybe this should be part of collections feature?` ```js let sockets = data.sockets.list().then(sockets => sockets.unique('name').sortBy('name') ) data.sockets.list().then(sockets...

FEATURE
CORE

Any plans to add support for keyframes like in [framer motion](https://www.framer.com/docs/animation/##keyframes)? ```vue ``` I can implement this

OG image builder built directly into Dub would be cool. For inspiration: https://brandbird.app/studio https://ogimage.org

User should be able to connect to database using SSL certificate

feature
database

User should be able to create MySQL connection

feature
database

User should be able to select a SQLite database file

feature
database

User should be able to remove row: - using context menu - by pressing `Del` while row is selected

feature
database

User should be able to insert new data

feature
database

### Clear and concise description of the problem I want to track caret position inside text input/textarea ### Suggested solution const input = ref() const caretPosition = useCaretPosition(input) ### Alternative...

enhancement
direction: approved
vue: upstream

I need to get possible enum values for given column. This PR extends `inspector.columnInfo('table')` with - `udt_name` - user defined type. For enums this will return enum name, for other...