├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .env ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── refactor_maintainence.md └── workflows │ ├── deploy-book.yml │ ├── pypi-publish.yml │ └── test-and-lint.yml ├── .gitignore ├── .vscode ├── dev.env ├── launch.json └── settings.json ├── .zed ├── debug.json └── settings.json ├── CONTRIBUTING.md ├── README.md ├── docs ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.qmd ├── EditableGrid.csv ├── EditableGridTransposed.csv ├── TestArrayTransposed.xlsx ├── _quarto.yml ├── autodisplay.qmd ├── autoui.qmd ├── autovuetify.qmd ├── buttonbar_extended.ipynb ├── crop_logo.py ├── custom-renderers.ipynb ├── demo.ipynb ├── digital-schedules-issue.py ├── digital-schedules-phantom-changes-issue.py ├── editgrid.qmd ├── edittsv-widgets.qmd ├── generate-model-file.py ├── images │ ├── autoui-linegraph.png │ ├── demo.png │ ├── favicon.3dm │ ├── favicon.png │ ├── logo.3dm │ ├── logo.png │ └── logo.svg ├── import-export-io-test.py ├── index.qmd ├── int-enum-issue.py ├── issue-17.ipynb ├── issue-178.ipynb ├── issue-330.ipynb ├── issue-332.ipynb ├── issue-334.ipynb ├── issue-336.ipynb ├── reference │ └── pydantic-jsonschema-mapping.ipynb ├── row-validation.ipynb ├── test.complexaui.json ├── test.json ├── test.simpleaui.json └── validation.ipynb ├── environment.yml ├── images ├── autoui-linegraph.png ├── demo.png └── logo.png ├── licenses └── BSD-3-Clause.txt ├── maplocal_example.py ├── pixi.lock ├── pyproject.toml ├── src └── ipyautoui │ ├── __init__.py │ ├── _dev_maplocal_params.py │ ├── _utils.py │ ├── _utils_debounce.py │ ├── autoanyof.py │ ├── autobox.py │ ├── autodisplay.py │ ├── autodisplay_renderers.py │ ├── autoform.py │ ├── automapschema.py │ ├── automapschema.yaml │ ├── autoobject.py │ ├── autoui.py │ ├── autovjsf.py │ ├── basemodel.py │ ├── constants.py │ ├── custom │ ├── __init__.py │ ├── autogrid.py │ ├── boolean_toggle.py │ ├── buttonbars.py │ ├── combobox_mapped.py │ ├── datagrid.py │ ├── date_string.py │ ├── decision_branch.py │ ├── editgrid.py │ ├── editgridfile.py │ ├── edittsv.py │ ├── edittsv_with_diff_and_key_mapping.py │ ├── executetasks.py │ ├── filechooser.py │ ├── filedownload.py │ ├── filesindir.py │ ├── fileupload.py │ ├── iterable.py │ ├── jsonable_dict.py │ ├── loadproject.py │ ├── maplist.py │ ├── markdown_widget.py │ ├── modelrun.py │ ├── multi_toggle_buttons.py │ ├── multiselect_search.py │ ├── outputlogging.py │ ├── selectandclick.py │ ├── selectdir.py │ ├── showhide.py │ ├── showopenurl.py │ ├── svgspinner.py │ ├── timeelapsed.py │ ├── title_description.py │ ├── urlimagelink.py │ └── widgetcaller_error.py │ ├── data │ └── 12-dots-scale-rotate.svg │ ├── demo.py │ ├── demo_schemas │ ├── __init__.py │ ├── array_examples.py │ ├── array_object_dataframe.py │ ├── complex_serialization.py │ ├── core_ipywidgets.py │ ├── editable_datagrid.py │ ├── editable_datagrid_transposed.py │ ├── editable_datagrid_with_nullable.py │ ├── multiindex_editable_grid.py │ ├── nested.py │ ├── nested_editable_datagrid.py │ ├── null_and_required.py │ ├── nullable_core_ipywidgets.py │ ├── override_ipywidgets.py │ ├── pydantic_validation.py │ ├── pydantic_validation_error.py │ ├── pydantic_validation_list.py │ ├── recursive_array.py │ ├── recursive_object.py │ ├── root_array.py │ ├── root_array_enum.py │ ├── root_enum.py │ ├── root_simple.py │ └── ruleset.py │ ├── env.py │ ├── mydocstring_display.py │ ├── nullable.py │ ├── vjsf.vue │ └── watch_validate.py └── tests ├── __init__.py ├── constants.py ├── custom ├── test_buttonbars.py ├── test_edittsv.py ├── test_edittsv_with_diff_and_key_mapping.py ├── test_executetasks.py ├── test_filechooser.py └── test_fileupload.py ├── filetypes ├── data │ ├── .ipynb_checkpoints │ │ └── flare-checkpoint.json │ └── flare.json ├── eg_YAML.YAML ├── eg_csv.csv ├── eg_dir │ ├── eg_jpg_1.jpg │ └── eg_png_1.png ├── eg_docx.docx ├── eg_gbxml.xml ├── eg_jpg.jpg ├── eg_json.json ├── eg_md.md ├── eg_pdf.pdf ├── eg_plotly.plotly ├── eg_plotly.plotly.json ├── eg_png.png ├── eg_py.py ├── eg_short_csv.csv ├── eg_txt.txt ├── eg_vega_tree-layout.vg.json ├── eg_vega_waterfall.vg.json ├── eg_video.mp4 ├── eg_xlsx.xlsx └── eg_xlsxtemplated.xt.xlsx ├── instance_spec.json ├── test_autoform.py ├── test_autogrid.py ├── test_automapschema.py ├── test_autoobject.py ├── test_autoui.py ├── test_autovjsf.py ├── test_custom.py ├── test_data └── edit-grid-file-data.json ├── test_datamodel_codegen.py ├── test_demo.py ├── test_demo_schemas.py ├── test_docs.py ├── test_editgrid.py ├── test_env.py ├── test_maplocal_openfile.py └── test_utils.py /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/.env -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/refactor_maintainence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/.github/ISSUE_TEMPLATE/refactor_maintainence.md -------------------------------------------------------------------------------- /.github/workflows/deploy-book.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/.github/workflows/deploy-book.yml -------------------------------------------------------------------------------- /.github/workflows/pypi-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/.github/workflows/pypi-publish.yml -------------------------------------------------------------------------------- /.github/workflows/test-and-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/.github/workflows/test-and-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/dev.env: -------------------------------------------------------------------------------- 1 | PYTHONPATH=/mnt/c/engDev/git_mf/ipyautoui/src -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.zed/debug.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.zed/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/.zed/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.qmd: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Contributing" 3 | --- 4 | 5 | {{< include ../CONTRIBUTING.md >}} 6 | -------------------------------------------------------------------------------- /docs/EditableGrid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/EditableGrid.csv -------------------------------------------------------------------------------- /docs/EditableGridTransposed.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/EditableGridTransposed.csv -------------------------------------------------------------------------------- /docs/TestArrayTransposed.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/TestArrayTransposed.xlsx -------------------------------------------------------------------------------- /docs/_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/_quarto.yml -------------------------------------------------------------------------------- /docs/autodisplay.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/autodisplay.qmd -------------------------------------------------------------------------------- /docs/autoui.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/autoui.qmd -------------------------------------------------------------------------------- /docs/autovuetify.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/autovuetify.qmd -------------------------------------------------------------------------------- /docs/buttonbar_extended.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/buttonbar_extended.ipynb -------------------------------------------------------------------------------- /docs/crop_logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/crop_logo.py -------------------------------------------------------------------------------- /docs/custom-renderers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/custom-renderers.ipynb -------------------------------------------------------------------------------- /docs/demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/demo.ipynb -------------------------------------------------------------------------------- /docs/digital-schedules-issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/digital-schedules-issue.py -------------------------------------------------------------------------------- /docs/digital-schedules-phantom-changes-issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/digital-schedules-phantom-changes-issue.py -------------------------------------------------------------------------------- /docs/editgrid.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/editgrid.qmd -------------------------------------------------------------------------------- /docs/edittsv-widgets.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/edittsv-widgets.qmd -------------------------------------------------------------------------------- /docs/generate-model-file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/generate-model-file.py -------------------------------------------------------------------------------- /docs/images/autoui-linegraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/images/autoui-linegraph.png -------------------------------------------------------------------------------- /docs/images/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/images/demo.png -------------------------------------------------------------------------------- /docs/images/favicon.3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/images/favicon.3dm -------------------------------------------------------------------------------- /docs/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/images/favicon.png -------------------------------------------------------------------------------- /docs/images/logo.3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/images/logo.3dm -------------------------------------------------------------------------------- /docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/images/logo.png -------------------------------------------------------------------------------- /docs/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/images/logo.svg -------------------------------------------------------------------------------- /docs/import-export-io-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/import-export-io-test.py -------------------------------------------------------------------------------- /docs/index.qmd: -------------------------------------------------------------------------------- 1 | 2 | {{< include ../README.md >}} -------------------------------------------------------------------------------- /docs/int-enum-issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/int-enum-issue.py -------------------------------------------------------------------------------- /docs/issue-17.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/issue-17.ipynb -------------------------------------------------------------------------------- /docs/issue-178.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/issue-178.ipynb -------------------------------------------------------------------------------- /docs/issue-330.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/issue-330.ipynb -------------------------------------------------------------------------------- /docs/issue-332.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/issue-332.ipynb -------------------------------------------------------------------------------- /docs/issue-334.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/issue-334.ipynb -------------------------------------------------------------------------------- /docs/issue-336.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/issue-336.ipynb -------------------------------------------------------------------------------- /docs/reference/pydantic-jsonschema-mapping.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/reference/pydantic-jsonschema-mapping.ipynb -------------------------------------------------------------------------------- /docs/row-validation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/row-validation.ipynb -------------------------------------------------------------------------------- /docs/test.complexaui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/test.complexaui.json -------------------------------------------------------------------------------- /docs/test.json: -------------------------------------------------------------------------------- 1 | { 2 | "text": "Test" 3 | } -------------------------------------------------------------------------------- /docs/test.simpleaui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/test.simpleaui.json -------------------------------------------------------------------------------- /docs/validation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/docs/validation.ipynb -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/environment.yml -------------------------------------------------------------------------------- /images/autoui-linegraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/images/autoui-linegraph.png -------------------------------------------------------------------------------- /images/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/images/demo.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/images/logo.png -------------------------------------------------------------------------------- /licenses/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/licenses/BSD-3-Clause.txt -------------------------------------------------------------------------------- /maplocal_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/maplocal_example.py -------------------------------------------------------------------------------- /pixi.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/pixi.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/ipyautoui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/__init__.py -------------------------------------------------------------------------------- /src/ipyautoui/_dev_maplocal_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/_dev_maplocal_params.py -------------------------------------------------------------------------------- /src/ipyautoui/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/_utils.py -------------------------------------------------------------------------------- /src/ipyautoui/_utils_debounce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/_utils_debounce.py -------------------------------------------------------------------------------- /src/ipyautoui/autoanyof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/autoanyof.py -------------------------------------------------------------------------------- /src/ipyautoui/autobox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/autobox.py -------------------------------------------------------------------------------- /src/ipyautoui/autodisplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/autodisplay.py -------------------------------------------------------------------------------- /src/ipyautoui/autodisplay_renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/autodisplay_renderers.py -------------------------------------------------------------------------------- /src/ipyautoui/autoform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/autoform.py -------------------------------------------------------------------------------- /src/ipyautoui/automapschema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/automapschema.py -------------------------------------------------------------------------------- /src/ipyautoui/automapschema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/automapschema.yaml -------------------------------------------------------------------------------- /src/ipyautoui/autoobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/autoobject.py -------------------------------------------------------------------------------- /src/ipyautoui/autoui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/autoui.py -------------------------------------------------------------------------------- /src/ipyautoui/autovjsf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/autovjsf.py -------------------------------------------------------------------------------- /src/ipyautoui/basemodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/basemodel.py -------------------------------------------------------------------------------- /src/ipyautoui/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/constants.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/__init__.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/autogrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/autogrid.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/boolean_toggle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/boolean_toggle.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/buttonbars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/buttonbars.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/combobox_mapped.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/combobox_mapped.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/datagrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/datagrid.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/date_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/date_string.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/decision_branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/decision_branch.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/editgrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/editgrid.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/editgridfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/editgridfile.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/edittsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/edittsv.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/edittsv_with_diff_and_key_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/edittsv_with_diff_and_key_mapping.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/executetasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/executetasks.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/filechooser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/filechooser.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/filedownload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/filedownload.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/filesindir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/filesindir.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/fileupload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/fileupload.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/iterable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/iterable.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/jsonable_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/jsonable_dict.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/loadproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/loadproject.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/maplist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/maplist.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/markdown_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/markdown_widget.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/modelrun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/modelrun.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/multi_toggle_buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/multi_toggle_buttons.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/multiselect_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/multiselect_search.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/outputlogging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/outputlogging.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/selectandclick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/selectandclick.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/selectdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/selectdir.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/showhide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/showhide.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/showopenurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/showopenurl.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/svgspinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/svgspinner.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/timeelapsed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/timeelapsed.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/title_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/title_description.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/urlimagelink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/urlimagelink.py -------------------------------------------------------------------------------- /src/ipyautoui/custom/widgetcaller_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/custom/widgetcaller_error.py -------------------------------------------------------------------------------- /src/ipyautoui/data/12-dots-scale-rotate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/data/12-dots-scale-rotate.svg -------------------------------------------------------------------------------- /src/ipyautoui/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/demo.py -------------------------------------------------------------------------------- /src/ipyautoui/demo_schemas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/demo_schemas/__init__.py -------------------------------------------------------------------------------- /src/ipyautoui/demo_schemas/array_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/demo_schemas/array_examples.py -------------------------------------------------------------------------------- /src/ipyautoui/demo_schemas/array_object_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/demo_schemas/array_object_dataframe.py -------------------------------------------------------------------------------- /src/ipyautoui/demo_schemas/complex_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/demo_schemas/complex_serialization.py -------------------------------------------------------------------------------- /src/ipyautoui/demo_schemas/core_ipywidgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/demo_schemas/core_ipywidgets.py -------------------------------------------------------------------------------- /src/ipyautoui/demo_schemas/editable_datagrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/demo_schemas/editable_datagrid.py -------------------------------------------------------------------------------- /src/ipyautoui/demo_schemas/editable_datagrid_transposed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/demo_schemas/editable_datagrid_transposed.py -------------------------------------------------------------------------------- /src/ipyautoui/demo_schemas/editable_datagrid_with_nullable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/demo_schemas/editable_datagrid_with_nullable.py -------------------------------------------------------------------------------- /src/ipyautoui/demo_schemas/multiindex_editable_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/demo_schemas/multiindex_editable_grid.py -------------------------------------------------------------------------------- /src/ipyautoui/demo_schemas/nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/demo_schemas/nested.py -------------------------------------------------------------------------------- /src/ipyautoui/demo_schemas/nested_editable_datagrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/demo_schemas/nested_editable_datagrid.py -------------------------------------------------------------------------------- /src/ipyautoui/demo_schemas/null_and_required.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/demo_schemas/null_and_required.py -------------------------------------------------------------------------------- /src/ipyautoui/demo_schemas/nullable_core_ipywidgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/demo_schemas/nullable_core_ipywidgets.py -------------------------------------------------------------------------------- /src/ipyautoui/demo_schemas/override_ipywidgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/demo_schemas/override_ipywidgets.py -------------------------------------------------------------------------------- /src/ipyautoui/demo_schemas/pydantic_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/demo_schemas/pydantic_validation.py -------------------------------------------------------------------------------- /src/ipyautoui/demo_schemas/pydantic_validation_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/demo_schemas/pydantic_validation_error.py -------------------------------------------------------------------------------- /src/ipyautoui/demo_schemas/pydantic_validation_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/demo_schemas/pydantic_validation_list.py -------------------------------------------------------------------------------- /src/ipyautoui/demo_schemas/recursive_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/demo_schemas/recursive_array.py -------------------------------------------------------------------------------- /src/ipyautoui/demo_schemas/recursive_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/demo_schemas/recursive_object.py -------------------------------------------------------------------------------- /src/ipyautoui/demo_schemas/root_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/demo_schemas/root_array.py -------------------------------------------------------------------------------- /src/ipyautoui/demo_schemas/root_array_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/demo_schemas/root_array_enum.py -------------------------------------------------------------------------------- /src/ipyautoui/demo_schemas/root_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/demo_schemas/root_enum.py -------------------------------------------------------------------------------- /src/ipyautoui/demo_schemas/root_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/demo_schemas/root_simple.py -------------------------------------------------------------------------------- /src/ipyautoui/demo_schemas/ruleset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/demo_schemas/ruleset.py -------------------------------------------------------------------------------- /src/ipyautoui/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/env.py -------------------------------------------------------------------------------- /src/ipyautoui/mydocstring_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/mydocstring_display.py -------------------------------------------------------------------------------- /src/ipyautoui/nullable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/nullable.py -------------------------------------------------------------------------------- /src/ipyautoui/vjsf.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/vjsf.vue -------------------------------------------------------------------------------- /src/ipyautoui/watch_validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/src/ipyautoui/watch_validate.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/constants.py -------------------------------------------------------------------------------- /tests/custom/test_buttonbars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/custom/test_buttonbars.py -------------------------------------------------------------------------------- /tests/custom/test_edittsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/custom/test_edittsv.py -------------------------------------------------------------------------------- /tests/custom/test_edittsv_with_diff_and_key_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/custom/test_edittsv_with_diff_and_key_mapping.py -------------------------------------------------------------------------------- /tests/custom/test_executetasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/custom/test_executetasks.py -------------------------------------------------------------------------------- /tests/custom/test_filechooser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/custom/test_filechooser.py -------------------------------------------------------------------------------- /tests/custom/test_fileupload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/custom/test_fileupload.py -------------------------------------------------------------------------------- /tests/filetypes/data/.ipynb_checkpoints/flare-checkpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/filetypes/data/.ipynb_checkpoints/flare-checkpoint.json -------------------------------------------------------------------------------- /tests/filetypes/data/flare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/filetypes/data/flare.json -------------------------------------------------------------------------------- /tests/filetypes/eg_YAML.YAML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/filetypes/eg_YAML.YAML -------------------------------------------------------------------------------- /tests/filetypes/eg_csv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/filetypes/eg_csv.csv -------------------------------------------------------------------------------- /tests/filetypes/eg_dir/eg_jpg_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/filetypes/eg_dir/eg_jpg_1.jpg -------------------------------------------------------------------------------- /tests/filetypes/eg_dir/eg_png_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/filetypes/eg_dir/eg_png_1.png -------------------------------------------------------------------------------- /tests/filetypes/eg_docx.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/filetypes/eg_docx.docx -------------------------------------------------------------------------------- /tests/filetypes/eg_gbxml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/filetypes/eg_gbxml.xml -------------------------------------------------------------------------------- /tests/filetypes/eg_jpg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/filetypes/eg_jpg.jpg -------------------------------------------------------------------------------- /tests/filetypes/eg_json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/filetypes/eg_json.json -------------------------------------------------------------------------------- /tests/filetypes/eg_md.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/filetypes/eg_md.md -------------------------------------------------------------------------------- /tests/filetypes/eg_pdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/filetypes/eg_pdf.pdf -------------------------------------------------------------------------------- /tests/filetypes/eg_plotly.plotly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/filetypes/eg_plotly.plotly -------------------------------------------------------------------------------- /tests/filetypes/eg_plotly.plotly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/filetypes/eg_plotly.plotly.json -------------------------------------------------------------------------------- /tests/filetypes/eg_png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/filetypes/eg_png.png -------------------------------------------------------------------------------- /tests/filetypes/eg_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/filetypes/eg_py.py -------------------------------------------------------------------------------- /tests/filetypes/eg_short_csv.csv: -------------------------------------------------------------------------------- 1 | ,a,b 2 | 0,0,1 3 | 1,1,2 4 | 2,2,3 5 | -------------------------------------------------------------------------------- /tests/filetypes/eg_txt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/filetypes/eg_txt.txt -------------------------------------------------------------------------------- /tests/filetypes/eg_vega_tree-layout.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/filetypes/eg_vega_tree-layout.vg.json -------------------------------------------------------------------------------- /tests/filetypes/eg_vega_waterfall.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/filetypes/eg_vega_waterfall.vg.json -------------------------------------------------------------------------------- /tests/filetypes/eg_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/filetypes/eg_video.mp4 -------------------------------------------------------------------------------- /tests/filetypes/eg_xlsx.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/filetypes/eg_xlsx.xlsx -------------------------------------------------------------------------------- /tests/filetypes/eg_xlsxtemplated.xt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/filetypes/eg_xlsxtemplated.xt.xlsx -------------------------------------------------------------------------------- /tests/instance_spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/instance_spec.json -------------------------------------------------------------------------------- /tests/test_autoform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/test_autoform.py -------------------------------------------------------------------------------- /tests/test_autogrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/test_autogrid.py -------------------------------------------------------------------------------- /tests/test_automapschema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/test_automapschema.py -------------------------------------------------------------------------------- /tests/test_autoobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/test_autoobject.py -------------------------------------------------------------------------------- /tests/test_autoui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/test_autoui.py -------------------------------------------------------------------------------- /tests/test_autovjsf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/test_autovjsf.py -------------------------------------------------------------------------------- /tests/test_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/test_custom.py -------------------------------------------------------------------------------- /tests/test_data/edit-grid-file-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/test_data/edit-grid-file-data.json -------------------------------------------------------------------------------- /tests/test_datamodel_codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/test_datamodel_codegen.py -------------------------------------------------------------------------------- /tests/test_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/test_demo.py -------------------------------------------------------------------------------- /tests/test_demo_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/test_demo_schemas.py -------------------------------------------------------------------------------- /tests/test_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/test_docs.py -------------------------------------------------------------------------------- /tests/test_editgrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/test_editgrid.py -------------------------------------------------------------------------------- /tests/test_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/test_env.py -------------------------------------------------------------------------------- /tests/test_maplocal_openfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/test_maplocal_openfile.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxfordham/ipyautoui/HEAD/tests/test_utils.py --------------------------------------------------------------------------------