FastUI
FastUI copied to clipboard
Build better UIs faster.
it's not just bound choice field but ill put it as an example ex 1: trigger server event when choice field selected, for my case i want to use the...
Hi Is there a way to create dynamic form components, for now the form field only accept FormField = FormFieldInput | FormFieldCheckbox | FormFieldFile | FormFieldSelect | FormFieldSelectSearch cannot use...
When expanding any components /docs hang the server and make it unresponsive, a restart for the server and a page kill is needed. there's no logs on the console, it...
Make custom `head` tag with `meta`, `title`, `script`, and `link` tags. For example, it looks like the one below. ```Python class Head(pydanctic.BaseModel, extra='forbid') elements: list[AnyHeadElement] def render_head_element(head: Head) -> str:...
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 *...