Skip to content

Commit

Permalink
Update py-shiny and py-htmltools
Browse files Browse the repository at this point in the history
  • Loading branch information
wch committed Jul 18, 2024
1 parent 3cde0b6 commit 507f7dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/py-htmltools
2 changes: 1 addition & 1 deletion packages/py-shiny
Submodule py-shiny updated 94 files
+16 −0 .github/py-shiny/setup/action.yaml
+6 −1 .github/workflows/build-docs.yaml
+44 −15 CHANGELOG.md
+3 −0 docs/Makefile
+5 −13 docs/_quartodoc-core.yml
+5 −2 docs/_quartodoc-testing.yml
+3 −3 docs/_renderer.py
+25 −27 examples/cpuinfo/app.py
+4 −2 js/chat/chat.ts
+2 −3 js/data-frame/cell.tsx
+32 −11 js/data-frame/index.tsx
+1 −1 setup.cfg
+1 −1 shiny/__init__.py
+3 −4 shiny/api-examples/card_body/app-core.py
+0 −0 shiny/api-examples/chat/app-express.py
+84 −0 shiny/api-examples/data_frame_grid_table/app-core.py
+74 −0 shiny/api-examples/data_frame_grid_table/app-express.py
+115 −0 shiny/api-examples/data_frame_styles/app-core.py
+109 −0 shiny/api-examples/data_frame_styles/app-express.py
+25 −0 shiny/api-examples/input_action_button/app-disabled-core.py
+20 −0 shiny/api-examples/input_action_button/app-disabled-express.py
+2 −4 shiny/api-examples/page_fixed/app-core.py
+17 −14 shiny/api-examples/render_express/app-core.py
+11 −0 shiny/api-examples/render_express/app-express.py
+3 −5 shiny/api-examples/todo_list/app-core.py
+2 −2 shiny/experimental/api-examples/card_image/app.py
+0 −18 shiny/experimental/api-examples/card_title/app.py
+5 −170 shiny/experimental/ui/__init__.py
+4 −137 shiny/experimental/ui/_card.py
+76 −1,466 shiny/experimental/ui/_deprecated.py
+21 −0 shiny/express/_module.py
+2 −5 shiny/express/ui/__init__.py
+86 −0 shiny/express/ui/_cm_components.py
+2 −2 shiny/playwright/controller/__init__.py
+168 −135 shiny/playwright/controller/_controls.py
+4 −2 shiny/playwright/expect/__init__.py
+144 −42 shiny/playwright/expect/_expect.py
+5 −4 shiny/playwright/expect/_expect_to_change.py
+95 −0 shiny/playwright/expect/_internal.py
+51 −4 shiny/pytest/_fixture.py
+1 −1 shiny/render/__init__.py
+60 −92 shiny/render/_data_frame.py
+1 −47 shiny/render/_data_frame_utils/__init__.py
+92 −28 shiny/render/_data_frame_utils/_datagridtable.py
+6 −1 shiny/render/_data_frame_utils/_styles.py
+1 −1 shiny/render/_data_frame_utils/_tbl_data.py
+1 −1 shiny/render/_data_frame_utils/_types.py
+6 −0 shiny/render/_express.py
+10 −0 shiny/run/_run.py
+2 −12 shiny/ui/__init__.py
+0 −5 shiny/ui/_bootstrap.py
+4 −4 shiny/ui/_card.py
+17 −3 shiny/ui/_chat.py
+8 −0 shiny/ui/_input_action_button.py
+50 −3 shiny/ui/_input_update.py
+10 −79 shiny/ui/_navs.py
+30 −20 shiny/ui/_page.py
+51 −239 shiny/ui/_sidebar.py
+1 −1 shiny/ui/dataframe/_data_frame.py
+6 −5 shiny/ui/fill/_fill.py
+2 −2 shiny/www/py-shiny/chat/chat.js
+2 −2 shiny/www/py-shiny/chat/chat.js.map
+4 −4 shiny/www/py-shiny/data-frame/data-frame.js
+3 −3 shiny/www/py-shiny/data-frame/data-frame.js.map
+1 −1 shiny/www/shared/bootstrap/_version.json
+1 −1 shiny/www/shared/bootstrap/bootstrap.min.css
+1 −1 shiny/www/shared/bslib/_version.json
+1 −1 shiny/www/shared/bslib/components/components.css
+18 −7 shiny/www/shared/sass/bslib/builtin/bs5/shiny/_rules.scss
+0 −18 shiny/www/shared/sass/bslib/components/scss/page_fillable.scss
+32 −4 shiny/www/shared/sass/bslib/components/scss/page_sidebar.scss
+68 −11 shiny/www/shared/sass/bslib/components/scss/sidebar.scss
+1 −1 shiny/www/shared/sass/preset/bootstrap/bootstrap.min.css
+1 −1 shiny/www/shared/sass/preset/shiny/bootstrap.min.css
+10 −9 tests/playwright/shiny/bugs/0666-sidebar/app.py
+11 −7 tests/playwright/shiny/bugs/0666-sidebar/test_sidebar_colors.py
+0 −0 tests/playwright/shiny/components/data_frame/df_methods/app.py
+1 −3 tests/playwright/shiny/components/data_frame/df_methods/test_df_methods.py
+0 −3 tests/playwright/shiny/components/data_frame/example/test_data_frame.py
+0 −0 tests/playwright/shiny/components/data_frame/html_columns/app.py
+27 −0 tests/playwright/shiny/components/data_frame/html_columns/test_edit_cell_content.py
+0 −0 tests/playwright/shiny/components/data_frame/html_columns/test_html_columns.py
+0 −3 tests/playwright/shiny/components/data_frame/styles/app.py
+1 −7 tests/playwright/shiny/components/data_frame/styles/test_df_styles.py
+0 −1 tests/playwright/shiny/components/data_frame/styles_class/app.py
+1 −3 tests/playwright/shiny/components/data_frame/styles_class/test_df_styles_class.py
+0 −0 tests/playwright/shiny/components/data_frame/tabbing/app.py
+0 −0 tests/playwright/shiny/components/data_frame/tabbing/test_tabbing.py
+4 −1 ...right/shiny/components/data_frame/validate_row_selection_edit_mode/test_validate_row_selection_edit_mode.py
+6 −8 tests/playwright/shiny/components/navset_hidden/app.py
+2 −9 tests/playwright/shiny/shiny-express/render_express/test_render_express.py
+21 −5 tests/pytest/test_chat.py
+1 −1 tests/pytest/test_render_data_frame.py
+1 −47 tests/pytest/test_sidebar.py

0 comments on commit 507f7dc

Please sign in to comment.