Skip to content

Commit

Permalink
uprev npm packages
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcolvin committed Dec 1, 2023
1 parent dbdc9ae commit c1ad519
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ async def html_landing() -> HTMLResponse:

Which renders like this:

![screenshot](./screenshot.png)
![screenshot](https://raw.githubusercontent.com/samuelcolvin/FastUI/main/screenshot.png)

Of course, that's a very simple application, the [full demo](https://fastui-demo.onrender.com) is more complete.

Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/fastui-bootstrap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pydantic/fastui-bootstrap",
"version": "0.0.9",
"version": "0.0.10",
"description": "Boostrap renderer for FastUI",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -29,6 +29,6 @@
"sass": "^1.69.5"
},
"peerDependencies": {
"@pydantic/fastui": "0.0.9"
"@pydantic/fastui": "0.0.10"
}
}
2 changes: 1 addition & 1 deletion packages/fastui-prebuilt/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pydantic/fastui-prebuilt",
"version": "0.0.9",
"version": "0.0.10",
"description": "Pre-built files for FastUI",
"main": "dist/index.html",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion packages/fastui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pydantic/fastui",
"version": "0.0.9",
"version": "0.0.10",
"description": "Build better UIs faster.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion python/fastui/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class FastUI(pydantic.RootModel):
root: list[AnyComponent]


_PREBUILT_VERSION = '0.0.9'
_PREBUILT_VERSION = '0.0.10'
_PREBUILT_CDN_URL = f'https://cdn.jsdelivr.net/npm/@pydantic/fastui-prebuilt@{_PREBUILT_VERSION}/dist/assets'


Expand Down

0 comments on commit c1ad519

Please sign in to comment.