Stephen Davies

Results 39 comments of Stephen Davies

Improve look of language menu.

Whoops. I messed up the post-prettier tag merge. Fixing it now.

Hopefully fixed. Sorry about that. I was just testing some instructions I'm going to post to the discussions forum and missed a step.

Sorry for the slow reply. I like the `import * as React from "react"` solution if that will work in future React versions.

Using a plugin to handle RTL styling sounds like a better approach than manually adding RTL styles across many UI components. I think https://www.npmjs.com/package/stylis-plugin-rtl looks promising, but I don't have...

Hi @MoRadwan74 and @abdallahossam1998. Thanks for the contribution. We will merge this PR to add RTL support, however our team can't commit to in-house RTL support for future features (we'd...

Hi @MoRadwan74. I've merged latest main into your branch and pushed it to [`cl-arabic-rtl`](https://github.com/TerriaJS/terriajs/tree/cl-arabic-rtl). It's deployed to http://ci.terria.io/cl-arabic-rtl/ for testing. I also read up RTL on the web. These articles...

Investigate why the following gives no errors: ``` { "name": "A", "type": "my-type", ..., "featureInfoTemplate": { "template": "a feature {{feat_name}}.\n{{desc}}", "partial": { "desc": "This is a {{feat_type}}" } } }...

To support "warnings" & errors everywhere in the Traits system we could use a type system like: ```ts class PartialError extends TerriaError { partialResult: T; } // inside a Traits...