FastUI icon indicating copy to clipboard operation
FastUI copied to clipboard

Build better UIs faster.

Results 174 FastUI issues
Sort by recently updated
recently updated
newest added

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...

bug

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:...

enhancement

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...

enhancement

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...

bug

To catch errors e.g. when invalid components are returned from the backed. https://www.npmjs.com/package/react-error-boundary

good first issue

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 =...

good first issue
New Component

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".

enhancement
good first issue
New Component

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 *...

enhancement