Dominik Lubański

Results 118 comments of Dominik Lubański

There is a difference between the following two examples about what you would have in `connect()` method (those are parts of render of some parent component). ```js // Predefined attribute...

You can utilize two properties, where one holds the dixie connection, and the second keeps data. It is rather hard to make it with only one, as you need to...

You would need to move `db.rows.get...` into the factory argument, like: `liveQueryFactory(db, query)`. Dexie docs show that query is defined separately from the `liveQuery`. I did not want to make...

You're right, you should pass a function to `liveQuery` :) > but i have a question about cleanup: why do we need to unsubscribe in two places? Clean up in...

the `[dynamicKeyName]` when set takes the Id, but then in getter, it returns a liveQuery result. The value pass to set is kind of lost. I thought that you don't...

@gotjoshua Thanks for your comment and interest in the feature! I always make research before starting building something in hybrids, but I did not find Unocss (thanks for that, I...

Rules from the layout system generate one single class with properties, so the following two examples are quite equal in terms of generated CSS: ```js html``.css`:host { display: flex; flex-flow:...

> not sure why additional classes should overwrite, wouldn't it be easy enough to allow extending the generated layout class with additional classes? This is what I meant. It just...

I'll need to understand your use case for adding classes to the host element to be able to help you. If you use `render` function, you create a Shadow DOM,...

> I'd still love some more feedback from the core dev(s) about best practices for tailwind style styling... Most CSS frameworks are built on one ground rule - the result...