Robert Baruck

Results 5 comments of Robert Baruck

> First try of migrating that to TS... need to more love and tests.... But looks promising > > https://codesandbox.io/s/peaceful-snowflake-b0k4p2?file=/src/index.ts I think I'd rather build an endpoint for that and...

> Might be more complex then initially assumed: [#3391 (comment)](https://github.com/neos/neos-ui/issues/3391#issuecomment-1441543538) > > but I honestly can’t see a usecase and find date default values odd in general. Why would you...

I found a solution so it may help you too. After the onTouchTap event another onClick event is fired after a delay (~300ms), whether the onTouchTap is handled or not....

This is a nice one 🙂 Using the built in `Partial` was my first intuition too and I used it in the first iteration. **The Problem:** Setting the type of...

Another way to type Components is to let the implementation dictate the type of it's `defaultProps`: ```ts type PropsWithoutDefaults = { size: 'small' | 'medium' | 'large', optionalProp?: number, };...