Skip to content

Commit

Permalink
Update to py-shiny 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wch committed Sep 3, 2024
1 parent d2a8698 commit 1953435
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/py-shiny
Submodule py-shiny updated 57 files
+84 −15 .github/workflows/deploy-tests.yaml
+8 −2 CHANGELOG.md
+13 −6 Makefile
+1 −1 js/.nvmrc
+4 −3 js/chat/chat.scss
+86 −28 js/chat/chat.ts
+2 −0 pytest.ini
+13 −5 shiny/_main_create.py
+45 −0 shiny/api-examples/modal_remove/app-core.py
+40 −0 shiny/api-examples/modal_remove/app-express.py
+42 −17 shiny/playwright/controller/__init__.py
+323 −0 shiny/playwright/controller/_accordion.py
+440 −0 shiny/playwright/controller/_base.py
+477 −0 shiny/playwright/controller/_card.py
+152 −0 shiny/playwright/controller/_chat.py
+0 −7,016 shiny/playwright/controller/_controls.py
+240 −0 shiny/playwright/controller/_expect.py
+55 −0 shiny/playwright/controller/_file.py
+466 −0 shiny/playwright/controller/_input_buttons.py
+1,616 −0 shiny/playwright/controller/_input_controls.py
+957 −0 shiny/playwright/controller/_input_fields.py
+146 −0 shiny/playwright/controller/_layout.py
+697 −0 shiny/playwright/controller/_navs.py
+1,320 −0 shiny/playwright/controller/_output.py
+286 −0 shiny/playwright/controller/_overlay.py
+5 −0 shiny/templates/chat/production/anthropic/_template.json
+59 −0 shiny/templates/chat/production/anthropic/app.py
+26 −0 shiny/templates/chat/production/anthropic/app_utils.py
+4 −0 shiny/templates/chat/production/anthropic/requirements.txt
+5 −0 shiny/templates/chat/production/openai/_template.json
+56 −0 shiny/templates/chat/production/openai/app.py
+26 −0 shiny/templates/chat/production/openai/app_utils.py
+4 −0 shiny/templates/chat/production/openai/requirements.txt
+91 −68 shiny/ui/_chat.py
+3 −16 shiny/ui/_chat_tokenizer.py
+0 −6 shiny/ui/_chat_types.py
+1 −1 shiny/ui/_modal.py
+1 −1 shiny/www/py-shiny/chat/chat.css
+2 −2 shiny/www/py-shiny/chat/chat.css.map
+22 −22 shiny/www/py-shiny/chat/chat.js
+3 −3 shiny/www/py-shiny/chat/chat.js.map
+2 −2 tests/playwright/deploys/express-accordion/test_deploys_express_accordion.py
+2 −2 tests/playwright/deploys/express-dataframe/test_deploys_express_dataframe.py
+2 −2 tests/playwright/deploys/express-folium/test_deploys_express_folium.py
+2 −2 tests/playwright/deploys/express-page_default/test_deploys_express_page_default.py
+2 −2 tests/playwright/deploys/express-page_fillable/test_deploys_express_page_fillable.py
+2 −2 tests/playwright/deploys/express-page_fluid/test_deploys_express_page_fluid.py
+7 −2 tests/playwright/deploys/express-page_sidebar/test_deploys_express_page_sidebar.py
+2 −2 tests/playwright/deploys/plotly/test_plotly_app.py
+2 −2 tests/playwright/deploys/shiny-client-console-error/test_shiny_client_error.py
+8 −0 tests/playwright/shiny/components/chat/dynamic_ui/app.py
+15 −0 tests/playwright/shiny/components/chat/dynamic_ui/test_chat_dynamic_ui.py
+2 −2 tests/playwright/shiny/components/chat/stream/test_chat_stream.py
+1 −1 tests/playwright/shiny/components/value_box/kitchensink/test_valuebox_ks.py
+1 −1 tests/playwright/shiny/inputs/input_radio_checkbox_group/test_input_radio_checkbox_group_app.py
+82 −16 tests/playwright/utils/deploy_utils.py
+64 −48 tests/pytest/test_chat.py
6 changes: 3 additions & 3 deletions shinylive_lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
},
"shiny": {
"name": "shiny",
"version": "1.0.0",
"filename": "shiny-1.0.0-py3-none-any.whl",
"version": "1.1.0",
"filename": "shiny-1.1.0-py3-none-any.whl",
"sha256": null,
"url": null,
"depends": [
Expand Down Expand Up @@ -95,7 +95,7 @@
},
"plotnine": {
"name": "plotnine",
"version": "0.0.post20+g64295e1",
"version": "0.0.post1930+g64295e1",
"filename": "plotnine-0.0.0-py3-none-any.whl",
"sha256": null,
"url": null,
Expand Down

0 comments on commit 1953435

Please sign in to comment.