gradio/js
Hannah 5244c5873c
Allow new lines in HighlightedText with /n and preserve whitespace (#5046)
* allow new lines in highlighted text with /n

* add changeset

* preserve white spaces in text

* add changeset

* add changeset

* add highlighted text stories

* add changeset

* fix broken story

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
2023-07-31 16:54:29 +02:00
..
_cdn-test
_spaces-test Update dependency prettier-plugin-svelte to v3 (#4973) 2023-07-29 00:00:15 +03:00
_website Correct gradio version on website (#5037) 2023-07-28 21:55:17 +02:00
accordion unified release process (#4986) 2023-07-21 19:13:21 +01:00
app Allow new lines in HighlightedText with /n and preserve whitespace (#5046) 2023-07-31 16:54:29 +02:00
atoms chore: update versions (#4999) 2023-07-26 17:10:24 -04:00
audio Update dependency extendable-media-recorder to v8 (#5023) 2023-07-29 00:00:03 +03:00
button chore: update versions (#4999) 2023-07-26 17:10:24 -04:00
chart chore: update versions (#4999) 2023-07-26 17:10:24 -04:00
chatbot chore: update versions (#4999) 2023-07-26 17:10:24 -04:00
code chore: update versions (#4999) 2023-07-26 17:10:24 -04:00
file chore: update versions (#4999) 2023-07-26 17:10:24 -04:00
form gr.Dropdown() now supports values with arbitrary characters and doesn't clear value when re-focused (#5039) 2023-07-31 08:31:39 -04:00
gallery chore: update versions (#4999) 2023-07-26 17:10:24 -04:00
highlighted-text Allow new lines in HighlightedText with /n and preserve whitespace (#5046) 2023-07-31 16:54:29 +02:00
html unified release process (#4986) 2023-07-21 19:13:21 +01:00
icons unified release process (#4986) 2023-07-21 19:13:21 +01:00
image chore: update versions (#4999) 2023-07-26 17:10:24 -04:00
json chore: update versions (#4999) 2023-07-26 17:10:24 -04:00
label chore: update versions (#4999) 2023-07-26 17:10:24 -04:00
lite chore: update versions (#4781) 2023-07-18 07:17:59 +01:00
markdown unified release process (#4986) 2023-07-21 19:13:21 +01:00
model3D chore: update versions (#4999) 2023-07-26 17:10:24 -04:00
plot chore: update versions (#4999) 2023-07-26 17:10:24 -04:00
storybook
table chore: update versions (#4999) 2023-07-26 17:10:24 -04:00
tabs chore: update versions (#4999) 2023-07-26 17:10:24 -04:00
theme chore: update versions (#4999) 2023-07-26 17:10:24 -04:00
tooltip unified release process (#4986) 2023-07-21 19:13:21 +01:00
tootils
upload chore: update versions (#4999) 2023-07-26 17:10:24 -04:00
upload-button chore: update versions (#4999) 2023-07-26 17:10:24 -04:00
utils chore: update versions (#4999) 2023-07-26 17:10:24 -04:00
video chore: update versions (#4999) 2023-07-26 17:10:24 -04:00
wasm
.npmrc
jsx.d.ts
README.md

gradio-ui

This folder contains all of the Gradio UI and component source code.

setup

This folder is managed as 'monorepo' a multi-package repository which make dependency management very simple. In order to do this we use pnpm as our package manager.

Make sure pnpm is installed by following the installation instructions for your system.

You will also need node which you probably already have

running the application

Install all dependencies:

pnpm i

This will install the dependencies for all packages and link any local packages

local development

To develop locally, open two terminal tabs from the root of the repository.

Run the python test server, from the root directory:

cd demo/kitchen_sink
python run.py

This will start a development server on port 7860 that the web app is expecting.

Run the web app:

pnpm dev

building for production

Run the build:

pnpm build

This will create the necessary files in js/app/public and also in gradio/templates/frontend.

quality checks

The repos currently has two quality checks that can be run locally and are run in CI.

formatting

Formatting is handled by prettier to ensure consistent formatting and prevent style-focused conversations. Formatting failures will fails CI and should be reoslve before merging.

To check formatting:

pnpm format:check

If you have formatting failures then you can run the following command to fix them:

pnpm format:write

type checking

We use TypeScript to provide static types to javascript code. These checks are also run in CI.

to typecheck the code:

pnpm ts:check

ci checks

Currently the following checks are run in CI:

static checks

  • Format check (pnpm format:check)
  • Build css (pnpm css)
  • Build client (pnpm build)
  • Type check (pnpm ts:check)
  • Unit tests (pnpm test:run)

functional test

pip install -r demo/outbreak_forecast/requirements.txt
pnpm exec playwright install chromium
pnpm exec playwright install-deps chromium
pnpm test:browser:full