Roland Warmerdam
Roland Warmerdam
The incremental APIs are now available as part of TypeScript 3.6: https://devblogs.microsoft.com/typescript/announcing-typescript-3-6/#apis-to-support-build-and-incremental
I don't think the test is fixed yet 😅
First step of Usage is: > Go to the server's URL, enter the password you configured and then click Add to Slack button to authorise the bot with your Slack...
I'm getting errors parsing CSS with nested `@media` rules as well. `@media` rules can be nested in CSS3, but it wasn't valid in CSS2.1. http://stackoverflow.com/a/11747166/247989
Yeah, I was planning to use the context API to support async server-side rendering. The current server-side rendering support should work fine with `ReactDOMServer.renderToString()` though since it's synchronous. https://github.com/segmentio/ui-box#server-side-rendering
Evergreen also supports synchronous server-side rendering if that helps you. https://github.com/segmentio/evergreen#how-does-server-side-rendering-ssr-work
Oh, I'm thinking of something completely different then. I was just going to add a provider to scope the [cache](https://github.com/segmentio/ui-box/blob/master/src/cache.js#L1) and [stylesheet](https://github.com/segmentio/ui-box/blob/master/src/styles.js#L3). 😅
I'm open to suggestions for ways to support more complex styling, but I haven't been able to think of a good API yet. Related to #26
I have no idea how react-native works so I have no idea how to make ui-box compatible 😅 I'm assuming react-native doesn't support all of these CSS properties though? https://github.com/segmentio/ui-box#css-properties
I guess it would be possible to create a subset of ui-box that has the CSS injection code removed and supports less CSS properties. But if all the react-native primitives...