Jay Kariesch

Results 11 comments of Jay Kariesch

I'll see if I can whip up a repo once I'm on my home machine. Thanks!

@alexandernst I believe `/deep/` works with `node-sass`, but the official `sass` package is now `dart-sass`, and I think that causes `/deep/` to choke. @gaoxiaoliangz If you update @vue/component-compiler-utils to v2.6.0,...

Seconding @matt3224 here. Is there a timeline on this feature?

I couldn't find this in the types or docs, but `onStoryStart` is passed the current index. Here's a naive example with this in mind: ```typescript const StoryReel = ({stories}) =>...

@mohitk05 Awesome. I also updated my example because I just realized `onStoryStart` is a better approach. I'll try to find time to raise a PR with this update. It might...

@mohitk05 There is a slight gotcha. I'm not sure if it's a bug or not, but `onStoryStart` only seems to fire when I coerce a change by passing a new...

Hi @mohitk05 I'm trying to raise a PR to fix the `onStoryStart` issue but I don't have access rights to the repo. I'll also raise one for types + docs...

Dude, I can't wait for this to release! I've been doing a weekly checkin since the last (now closed) PR. 🤣

Using `DisplayName` type will allow you to proceed. ```ts declare type DisplayName = { name: string; color: typeof ForegroundColor; }; declare type ForegroundColor = | 'black' | 'red' | 'green'...