Tomas Englundh
Tomas Englundh
I don't know React native, but I know a little React JS. I think you should not have quotes around `red` and use `css` instead of style (no array). Try...
Great @bruno-garcia Thanks for confirming my suspicion. I'd like to contribute a PR but I don't have the time at the moment. It's not urgent for us since there is...
We have an addition to this. We have editable and read-only items (`editable: false`) in the timeline. When double clicking on an item, we open a form for editing or...
By the way, a work-around that works in our case it to enable editing on all items and then check if we should be able to edit in `onMove` and...
What is the progress on this? Will the fix be merged?
I guess the same would apply for records with default constructor, like this: ```cs public record SomeType { public string? Optional { get; init; } public required string Required {...
@daveMueller that's great, I'll wait for the NuGet update.
I encountered the same problem today, when updating to React 18 (probably was there before, just hadn't notice). I have a component library with peer dependencies and an example app...
We also have this problem. I've made a [simple React app with maplibre](https://codesandbox.io/p/github/tengl/maplibre-remove-layer/main?workspaceId=9ff0059d-30f3-48b7-8673-d4122e313e37&file=%2Fsrc%2FMaplibre.jsx&selection=%5B%7B%22endColumn%22%3A7%2C%22endLineNumber%22%3A34%2C%22startColumn%22%3A7%2C%22startLineNumber%22%3A34%7D%5D&workspace=%257B%2522activeFileId%2522%253A%2522cleh5gog2000mg6hvb7d8e0og%2522%252C%2522openFiles%2522%253A%255B%2522%252Fsrc%252FMaplibre.jsx%2522%252C%2522%252FREADME.md%2522%252C%2522%252Fsrc%252FMaplibreLayer.jsx%2522%255D%252C%2522sidebarPanel%2522%253A%2522EXPLORER%2522%252C%2522gitSidebarPanel%2522%253A%2522COMMIT%2522%252C%2522spaces%2522%253A%257B%2522cleh5gpjm000x2v6i6yx11k8k%2522%253A%257B%2522key%2522%253A%2522cleh5gpjm000x2v6i6yx11k8k%2522%252C%2522name%2522%253A%2522Default%2522%252C%2522devtools%2522%253A%255B%257B%2522type%2522%253A%2522PREVIEW%2522%252C%2522taskId%2522%253A%2522start%2522%252C%2522port%2522%253A3000%252C%2522key%2522%253A%2522cleh8l95e012s2v6j2vebbyhf%2522%252C%2522isMinimized%2522%253Afalse%257D%252C%257B%2522type%2522%253A%2522TASK_LOG%2522%252C%2522taskId%2522%253A%2522start%2522%252C%2522key%2522%253A%2522cleh8l6s700yx2v6j1wryjp77%2522%252C%2522isMinimized%2522%253Afalse%257D%255D%257D%257D%252C%2522currentSpace%2522%253A%2522cleh5gpjm000x2v6i6yx11k8k%2522%252C%2522spacesOrder%2522%253A%255B%2522cleh5gpjm000x2v6i6yx11k8k%2522%255D%252C%2522hideCodeEditor%2522%253Afalse%257D) to demonstrate the issue, and two possible work arounds. If someone has a better solution I'd be...