uprev npm packages

This commit is contained in:
Samuel Colvin
2023-12-01 17:06:12 +00:00
parent dbdc9aef9c
commit c1ad519032
6 changed files with 10 additions and 10 deletions

View File

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

8
package-lock.json generated
View File

@@ -6602,7 +6602,7 @@
},
"packages/fastui": {
"name": "@pydantic/fastui",
"version": "0.0.9",
"version": "0.0.10",
"license": "MIT",
"dependencies": {
"react": "^18.2.0",
@@ -6618,7 +6618,7 @@
},
"packages/fastui-bootstrap": {
"name": "@pydantic/fastui-bootstrap",
"version": "0.0.9",
"version": "0.0.10",
"license": "MIT",
"dependencies": {
"bootstrap": "^5.3.2",
@@ -6628,12 +6628,12 @@
"sass": "^1.69.5"
},
"peerDependencies": {
"@pydantic/fastui": "0.0.9"
"@pydantic/fastui": "0.0.10"
}
},
"packages/fastui-prebuilt": {
"name": "@pydantic/fastui-prebuilt",
"version": "0.0.9",
"version": "0.0.10",
"license": "MIT",
"devDependencies": {
"@vitejs/plugin-react-swc": "^3.3.2",

View File

@@ -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",
@@ -29,6 +29,6 @@
"sass": "^1.69.5"
},
"peerDependencies": {
"@pydantic/fastui": "0.0.9"
"@pydantic/fastui": "0.0.10"
}
}

View File

@@ -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",

View File

@@ -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",

View File

@@ -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'