Samuel Colvin
Samuel Colvin
The swifties of HTMX on twitter are asking "why not HTMX?". While I'm not as enamoured by HTMX as some, there is a good argument to build a frontend that...
I know, I know, but still - it is nice to have. Shouldn't be too hard to implement - the default implementations just need to change `color` and `background-color`, and...
Currently we don't apply many common constraints from pydantic/json schema to forms: * max length / min length * gt, lt, ge, le * multiple of Shouldn't be too hard...
Currently `bytes` becomes `'format': 'binary'` in JSON Schema, which in turn means it get's rendered as a file input. I'm not sure what the best solution is, maybe we just...
To catch errors e.g. when invalid components are returned from the backed. https://www.npmjs.com/package/react-error-boundary
Defined as something like ```py class FormattedText(pydantic.BaseModel, extra='forbid'): text: str text_format: typing.Literal['bold', 'italic', 'underline', 'strikethrough'] | None = pydantic.Field(None, serialization_alias='textFormat') # TODO, use pydantic-extra-types Color? text_color: str | None =...
Or at least some UI independent definition of "show something to the user after something has happened, even if they've navigated away from that page".
The idea is to let developers customise the style of their app without needing to resort to npm/node. We would need to: * add libsass as a local dependency *...