Robert Baruck
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, };...
One issue I found is that the LOCAL version does not provide the img assets for content like `clipart`. They are expected at for instance `/neos/mxgraph/img/lib/clip_art/finance/Credit_Card_128x128.png` With `drawioEmbedUrl: https://embed.diagrams.net` it...
FYI: I'm working on it over here and will commit to this PR when I'm done: https://github.com/JamesAlias/MxGraph/tree/neos9 I could spam my WIP commits here, but I thought I keep this...
@markusguenther I created a PR with all the fixes and adjustments: https://github.com/markusguenther/MxGraph/pull/1 I am not sure about using inline styles for alignment, but it works. There are 2 TODOs that...