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

View File

@@ -1,6 +1,6 @@
{ {
"name": "@pydantic/fastui-bootstrap", "name": "@pydantic/fastui-bootstrap",
"version": "0.0.9", "version": "0.0.10",
"description": "Boostrap renderer for FastUI", "description": "Boostrap renderer for FastUI",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
@@ -29,6 +29,6 @@
"sass": "^1.69.5" "sass": "^1.69.5"
}, },
"peerDependencies": { "peerDependencies": {
"@pydantic/fastui": "0.0.9" "@pydantic/fastui": "0.0.10"
} }
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "@pydantic/fastui-prebuilt", "name": "@pydantic/fastui-prebuilt",
"version": "0.0.9", "version": "0.0.10",
"description": "Pre-built files for FastUI", "description": "Pre-built files for FastUI",
"main": "dist/index.html", "main": "dist/index.html",
"type": "module", "type": "module",

View File

@@ -1,6 +1,6 @@
{ {
"name": "@pydantic/fastui", "name": "@pydantic/fastui",
"version": "0.0.9", "version": "0.0.10",
"description": "Build better UIs faster.", "description": "Build better UIs faster.",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",

View File

@@ -14,7 +14,7 @@ class FastUI(pydantic.RootModel):
root: list[AnyComponent] 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' _PREBUILT_CDN_URL = f'https://cdn.jsdelivr.net/npm/@pydantic/fastui-prebuilt@{_PREBUILT_VERSION}/dist/assets'