Skip to content

Commit

Permalink
updating npm packages
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcolvin committed Nov 30, 2023
1 parent 0cd4845 commit b858742
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
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.6",
"version": "0.0.7",
"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.6"
"@pydantic/fastui": "0.0.7"
}
}
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.6",
"version": "0.0.7",
"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.6",
"version": "0.0.7",
"description": "Build better UIs faster.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ dependencies = ["pydantic>=2.5.2"]
dynamic = ["version"]

[project.optional-dependencies]
fastapi = ["fastapi>=0.104"]
fastapi = [
"fastapi>=0.104",
"python-multipart>=0.0.6",
]

[project.urls]
Homepage = "https://github.com/samuelcolvin/FastUI"
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.6'
_PREBUILT_VERSION = '0.0.7'
_PREBUILT_CDN_URL = f'https://cdn.jsdelivr.net/npm/@pydantic/fastui-prebuilt@{_PREBUILT_VERSION}/dist/assets'


Expand Down
2 changes: 2 additions & 0 deletions python/requirements/pyproject.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ pydantic==2.5.2
# fastui (pyproject.toml)
pydantic-core==2.14.5
# via pydantic
python-multipart==0.0.6
# via fastui (pyproject.toml)
sniffio==1.3.0
# via anyio
starlette==0.27.0
Expand Down

0 comments on commit b858742

Please sign in to comment.