Jeffrey Li
Jeffrey Li
sveld 0.8.0 does typescript preprocessing using svelte-preprocess with default options so it shouldn't error now in most cases. I still encountered an error when a component imports a .ts file....
Hi there, sorry if I misunderstand what you are asking. Are you asking to push the content only if it doesn't already exist? Would `@once` do what you are looking...
This seems like an interesting idea. I could see use cases for this. How about if it were a generic dropdown of filter options? Choosing a new option will re-render...
Hi, I think this is an Alpine issue. Downgrading to Alpine 2.8.2 works. It might have something to do with the fact that `this.editor` is a Proxy object - though...
It appears to be definitely a proxy issue. I sort of got something working here by storing the editor object in a closure. https://codesandbox.io/s/tiptap-v2-alpinejs-v3-forked-6qxfs?file=/index.js I don't know why reactivity is...
@KevinBatdorf Thanks for the suggestion! I never knew about `Alpine.raw()` @robertdrakedennis Here's an example with the mentioned solution. https://codesandbox.io/s/tiptap-v2-alpinejs-v3-forked-2bbw8?file=/index.js However, `Alpine.raw()` doesn't appear to be bindable for reactivity. I also...
Hi, just curious if anyone has tried making custom accessor and mutator on the model (`getTimezoneAttribute()` and `setTimezoneAttribute()`. If that works, then we would not need a trait?