mirror of
https://github.com/samuelcolvin/FastUI.git
synced 2023-12-01 22:22:11 +03:00
uprev npm packages
This commit is contained in:
@@ -113,7 +113,7 @@ async def html_landing() -> HTMLResponse:
|
|||||||
|
|
||||||
Which renders like this:
|
Which renders like this:
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
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
8
package-lock.json
generated
@@ -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",
|
||||||
|
|||||||
@@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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",
|
||||||
|
|||||||
@@ -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",
|
||||||
|
|||||||
@@ -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'
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user