├── .circleci └── config.yml ├── .editorconfig ├── .flake8 ├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── pr-issue-check.yml │ ├── testing.yml │ └── update-html.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .lintstagedrc.js ├── .nvmrc ├── .pylintrc ├── @plotly ├── dash-component-plugins │ ├── LICENSE │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── History.js │ │ ├── dynamicImport.js │ │ └── index.js │ └── webpack.config.js ├── dash-generator-test-component-nested │ ├── MANIFEST.in │ ├── README.md │ ├── babel.config.js │ ├── base │ │ └── __init__.py │ ├── package-lock.json │ ├── package.json │ ├── setup.py │ ├── src │ │ ├── components │ │ │ └── MyNestedComponent.js │ │ └── index.js │ └── webpack.config.js ├── dash-generator-test-component-standard │ ├── MANIFEST.in │ ├── README.md │ ├── babel.config.js │ ├── base │ │ ├── __init__.py │ │ ├── godfather.ttf │ │ └── style.css │ ├── package-lock.json │ ├── package.json │ ├── setup.py │ ├── src │ │ ├── components │ │ │ └── MyStandardComponent.js │ │ └── index.js │ └── webpack.config.js ├── dash-generator-test-component-typescript │ ├── README.md │ ├── _dash_prop_typing.py │ ├── babel.config.js │ ├── base │ │ ├── __init__.py │ │ └── py.typed │ ├── generator.test.ts │ ├── jest.config.js │ ├── package-lock.json │ ├── package.json │ ├── setup.py │ ├── src │ │ ├── components │ │ │ ├── EmptyComponent.tsx │ │ │ ├── FCComponent.tsx │ │ │ ├── MemoTypeScriptComponent.tsx │ │ │ ├── MixedComponent.tsx │ │ │ ├── RequiredChildrenComponent.tsx │ │ │ ├── StandardComponent.react.js │ │ │ ├── TypeScriptClassComponent.tsx │ │ │ ├── TypeScriptComponent.tsx │ │ │ └── WrappedHTML.tsx │ │ ├── index.ts │ │ └── props.ts │ ├── tsconfig.json │ └── webpack.config.js ├── dash-jupyterlab │ ├── .prettierrc │ ├── lib │ │ ├── index.d.ts │ │ └── index.js │ ├── package.json │ ├── src │ │ └── index.ts │ ├── style │ │ └── index.css │ ├── tsconfig.json │ └── yarn.lock ├── dash-test-components │ ├── MANIFEST.in │ ├── README.md │ ├── babel.config.js │ ├── base │ │ └── __init__.py │ ├── package-lock.json │ ├── package.json │ ├── setup.py │ ├── src │ │ ├── components │ │ │ ├── AddPropsComponent.js │ │ │ ├── ArrayOfExactOrShapeWithNodePropAssignNone.js │ │ │ ├── AsyncComponent.js │ │ │ ├── CollapseComponent.js │ │ │ ├── ComponentAsProp.js │ │ │ ├── DelayedEventComponent.js │ │ │ ├── DrawCounter.js │ │ │ ├── ExternalComponent.js │ │ │ ├── FragmentComponent.js │ │ │ ├── MyPersistedComponent.js │ │ │ ├── MyPersistedComponentNested.js │ │ │ ├── ReceivePropsComponent.js │ │ │ ├── RenderType.js │ │ │ ├── ShapeOrExactKeepOrderComponent.js │ │ │ ├── StyledComponent.js │ │ │ └── WidthComponent.js │ │ ├── fragments │ │ │ ├── AsyncComponent.js │ │ │ └── AsyncComponentLoader.js │ │ └── index.js │ └── webpack.config.js ├── eslint-config-dash │ ├── .gitignore │ ├── README.md │ ├── index.js │ ├── package-lock.json │ ├── package.json │ └── typescript.js ├── prettier-config-dash │ ├── .gitignore │ ├── README.md │ ├── index.js │ ├── package-lock.json │ └── package.json └── webpack-dash-dynamic-import │ ├── LICENSE │ ├── package.json │ └── src │ └── index.js ├── CHANGELOG.md ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MAKE_A_NEW_BACK_END.md ├── MANIFEST.in ├── README.md ├── components ├── dash-core-components │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc │ ├── .flake8 │ ├── .gitignore │ ├── .lib.babelrc │ ├── .prettierrc │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── MANIFEST.in │ ├── README.md │ ├── __init__.py │ ├── babel.config.js │ ├── dash-info.yaml │ ├── dash_core_components_base │ │ ├── __init__.py │ │ └── express.py │ ├── dash_prop_typing.py │ ├── images │ │ └── upload-component.gif │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── packages │ │ └── README.md │ ├── pytest.ini │ ├── renovate.json │ ├── setup.py │ ├── src │ │ ├── components │ │ │ ├── Checklist.react.js │ │ │ ├── Clipboard.react.js │ │ │ ├── ConfirmDialog.react.js │ │ │ ├── ConfirmDialogProvider.react.js │ │ │ ├── DatePickerRange.react.js │ │ │ ├── DatePickerSingle.react.js │ │ │ ├── Download.react.js │ │ │ ├── Dropdown.react.js │ │ │ ├── Geolocation.react.js │ │ │ ├── Graph.react.js │ │ │ ├── Input.react.js │ │ │ ├── Interval.react.js │ │ │ ├── Link.react.js │ │ │ ├── Loading.react.js │ │ │ ├── Location.react.js │ │ │ ├── Markdown.react.js │ │ │ ├── RadioItems.react.js │ │ │ ├── RangeSlider.react.js │ │ │ ├── Slider.react.js │ │ │ ├── Store.react.js │ │ │ ├── Tab.react.js │ │ │ ├── Tabs.react.js │ │ │ ├── Textarea.react.js │ │ │ ├── Tooltip.react.js │ │ │ ├── Upload.react.js │ │ │ └── css │ │ │ │ ├── Dropdown.css │ │ │ │ ├── input.css │ │ │ │ ├── react-dates@20.1.0-fix.css │ │ │ │ ├── react-select@1.0.0-rc.3.min.css │ │ │ │ ├── react-virtualized@9.9.0.css │ │ │ │ └── sliders.css │ │ ├── fragments │ │ │ ├── DatePickerRange.react.js │ │ │ ├── DatePickerSingle.react.js │ │ │ ├── Dropdown.react.js │ │ │ ├── Graph.privateprops.js │ │ │ ├── Graph.react.js │ │ │ ├── Loading │ │ │ │ └── spinners │ │ │ │ │ ├── CircleSpinner.jsx │ │ │ │ │ ├── CubeSpinner.jsx │ │ │ │ │ ├── DebugTitle.jsx │ │ │ │ │ ├── DefaultSpinner.jsx │ │ │ │ │ ├── DotSpinner.jsx │ │ │ │ │ └── GraphSpinner.jsx │ │ │ ├── Markdown.react.js │ │ │ ├── Math.react.js │ │ │ ├── RangeSlider.react.js │ │ │ ├── Slider.react.js │ │ │ └── Upload.react.js │ │ ├── index.js │ │ ├── third-party │ │ │ └── highlight.js │ │ └── utils │ │ │ ├── DatePickerPersistence.js │ │ │ ├── LazyLoader │ │ │ ├── datePickerRange.js │ │ │ ├── datePickerSingle.js │ │ │ ├── dropdown.js │ │ │ ├── graph.js │ │ │ ├── hljs.js │ │ │ ├── markdown.js │ │ │ ├── mathjax.js │ │ │ ├── plotly.js │ │ │ ├── rangeSlider.js │ │ │ ├── slider.js │ │ │ └── upload.js │ │ │ ├── LoadingElement.js │ │ │ ├── MarkdownHighlighter.js │ │ │ ├── ResizeDetector.js │ │ │ ├── computeSliderMarkers.js │ │ │ ├── computeSliderStyle.js │ │ │ ├── convertToMoment.js │ │ │ ├── formatSliderTooltip.js │ │ │ ├── mathjax.js │ │ │ └── optionTypes.js │ ├── tests │ │ ├── assets │ │ │ ├── image.png │ │ │ ├── input.css │ │ │ └── tab.css │ │ ├── conftest.py │ │ ├── dash_core_components_page.py │ │ └── integration │ │ │ ├── calendar │ │ │ ├── test_calendar_props.py │ │ │ ├── test_date_picker_persistence.py │ │ │ ├── test_date_picker_range.py │ │ │ └── test_date_picker_single.py │ │ │ ├── clipboard │ │ │ └── test_clipboard.py │ │ │ ├── confirmdialog │ │ │ └── test_confirm.py │ │ │ ├── download │ │ │ ├── download-assets │ │ │ │ └── chuck.jpg │ │ │ ├── test_download.py │ │ │ ├── test_download_dataframe.py │ │ │ └── test_download_file.py │ │ │ ├── dropdown │ │ │ ├── test_clearable_false.py │ │ │ ├── test_dropdown_radioitems_checklist_shorthands.py │ │ │ ├── test_dynamic_options.py │ │ │ ├── test_remove_option.py │ │ │ ├── test_search_value.py │ │ │ ├── test_styles.py │ │ │ └── test_visibility.py │ │ │ ├── geolocation │ │ │ └── test_geolocation.py │ │ │ ├── graph │ │ │ ├── test_graph_basics.py │ │ │ ├── test_graph_purge.py │ │ │ ├── test_graph_responsive.py │ │ │ └── test_graph_varia.py │ │ │ ├── input │ │ │ ├── conftest.py │ │ │ ├── test_debounce.py │ │ │ ├── test_input_and_state.py │ │ │ ├── test_input_basics.py │ │ │ └── test_number_input.py │ │ │ ├── interval │ │ │ └── test_interval.py │ │ │ ├── link │ │ │ ├── test_absolute_path.py │ │ │ ├── test_link_children.py │ │ │ ├── test_link_event.py │ │ │ └── test_title_prop.py │ │ │ ├── loading │ │ │ └── test_loading_component.py │ │ │ ├── location │ │ │ └── test_location_callback.py │ │ │ ├── markdown │ │ │ └── test_markdown.py │ │ │ ├── misc │ │ │ ├── conftest.py │ │ │ ├── test_bcdp_auto_id.py │ │ │ ├── test_dcc_components_as_props.py │ │ │ ├── test_inline.py │ │ │ ├── test_markdown_highlight.py │ │ │ ├── test_persistence.py │ │ │ └── test_platter.py │ │ │ ├── sliders │ │ │ ├── assets │ │ │ │ └── transform.js │ │ │ ├── test_sliders.py │ │ │ └── test_sliders_shorthands.py │ │ │ ├── store │ │ │ ├── conftest.py │ │ │ ├── test_component_props.py │ │ │ ├── test_data_lifecycle.py │ │ │ └── test_store_data.py │ │ │ ├── tab │ │ │ ├── test_tabs.py │ │ │ └── test_tabs_with_graphs.py │ │ │ ├── test_title_props.py │ │ │ ├── tooltip │ │ │ └── test_tooltip.py │ │ │ └── upload │ │ │ ├── test_children_accept_any_component.py │ │ │ ├── test_upload_different_file_types.py │ │ │ └── upload-assets │ │ │ ├── upft001.csv │ │ │ ├── upft001.png │ │ │ ├── upft001.svg │ │ │ ├── upft001.xls │ │ │ └── upft001.xlsx │ ├── vignettes │ │ ├── dash-core-components.Rmd │ │ ├── dash-core-components.html │ │ └── dash-core-components.html.asis │ └── webpack.config.js ├── dash-html-components │ ├── .builderrc │ ├── .eslintignore │ ├── .eslintrc │ ├── .gitignore │ ├── .pylintrc │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── LICENSE.md │ ├── MANIFEST.in │ ├── README.md │ ├── babel.config.js │ ├── dash-info.yaml │ ├── dash_html_components_base │ │ └── __init__.py │ ├── package-lock.json │ ├── package.json │ ├── scripts │ │ ├── .eslintrc.json │ │ ├── data │ │ │ ├── attributes.json │ │ │ └── elements.txt │ │ ├── extract-all.sh │ │ ├── extract-attributes.js │ │ ├── extract-elements.js │ │ ├── generate-all.sh │ │ ├── generate-components.js │ │ └── generate-index.js │ ├── setup.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_dash_html_components.py │ │ ├── test_div_tabIndex.py │ │ ├── test_integration.py │ │ └── utils.py │ ├── vignettes │ │ ├── dash-html-components.Rmd │ │ ├── dash-html-components.html │ │ └── dash-html-components.html.asis │ └── webpack.config.js └── dash-table │ ├── .config │ └── webpack │ │ ├── base.js │ │ └── base.preprocessing.js │ ├── .eslintrc.js │ ├── .flake8 │ ├── .gitignore │ ├── .npmignore │ ├── .prettierrc │ ├── .pylintrc │ ├── .storybook │ ├── babel.config.js │ └── main.js │ ├── .test_durations │ ├── @Types │ └── modules.d.ts │ ├── CHANGELOG.md │ ├── CODE_OF_CONDUCT.md │ ├── LICENSE │ ├── MANIFEST.in │ ├── README.md │ ├── __init__.py │ ├── app.json │ ├── babel.config.js │ ├── cspell.json │ ├── dash-info.yaml │ ├── dash_table_base │ ├── Format.py │ ├── FormatTemplate.py │ └── __init__.py │ ├── demo │ ├── App.tsx │ ├── AppMode.ts │ ├── data.ts │ ├── index.html │ ├── index.js │ └── style.less │ ├── generator │ └── cssPropertiesGenerator.js │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── pytest.ini │ ├── renovate.json │ ├── setup.py │ ├── src │ ├── core │ │ ├── Clipboard.ts │ │ ├── Logger │ │ │ ├── DebugLevel.ts │ │ │ ├── LogLevel.ts │ │ │ └── index.ts │ │ ├── Stylesheet.ts │ │ ├── browser │ │ │ ├── DOM.ts │ │ │ ├── isChrome.ts │ │ │ └── scrollbarWidth.ts │ │ ├── cache │ │ │ ├── index.ts │ │ │ ├── memoizer.ts │ │ │ └── value.ts │ │ ├── comparer.ts │ │ ├── components │ │ │ └── IsolatedInput │ │ │ │ └── index.tsx │ │ ├── debounce.ts │ │ ├── environment │ │ │ └── index.ts │ │ ├── generic.ts │ │ ├── math │ │ │ ├── arrayZipMap.ts │ │ │ ├── matrixZipMap.ts │ │ │ └── random.ts │ │ ├── memoizer.ts │ │ ├── objPropsToCamel.ts │ │ ├── sorting │ │ │ ├── index.ts │ │ │ ├── multi.ts │ │ │ └── single.ts │ │ ├── storage │ │ │ └── Cookie.ts │ │ ├── syntax-tree │ │ │ ├── index.ts │ │ │ ├── lexer.ts │ │ │ ├── lexicon.ts │ │ │ └── syntaxer.ts │ │ └── type │ │ │ └── index.ts │ ├── dash-table │ │ ├── LazyLoader.ts │ │ ├── components │ │ │ ├── Cell │ │ │ │ ├── index.tsx │ │ │ │ └── props.ts │ │ │ ├── CellDropdown │ │ │ │ └── index.tsx │ │ │ ├── CellFactory.tsx │ │ │ ├── CellInput │ │ │ │ └── index.tsx │ │ │ ├── CellLabel │ │ │ │ └── index.tsx │ │ │ ├── CellMarkdown │ │ │ │ └── index.tsx │ │ │ ├── ControlledTable │ │ │ │ ├── fragments │ │ │ │ │ └── TableTooltip.tsx │ │ │ │ └── index.tsx │ │ │ ├── EdgeFactory.tsx │ │ │ ├── Export │ │ │ │ ├── index.tsx │ │ │ │ └── utils.tsx │ │ │ ├── Filter │ │ │ │ ├── Advanced.tsx │ │ │ │ ├── Column.tsx │ │ │ │ └── FilterOptions.tsx │ │ │ ├── FilterFactory.tsx │ │ │ ├── HeaderFactory.tsx │ │ │ ├── PageNavigation │ │ │ │ ├── index.tsx │ │ │ │ └── props.ts │ │ │ ├── Table │ │ │ │ ├── Dropdown.css │ │ │ │ ├── Table.less │ │ │ │ ├── controlledPropsHelper.ts │ │ │ │ ├── derivedPropsHelper.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── props.ts │ │ │ │ ├── shouldComponentUpdate.ts │ │ │ │ └── style.ts │ │ │ ├── Tooltip │ │ │ │ └── index.tsx │ │ │ ├── dropdownHelper.ts │ │ │ └── tooltipHelper.ts │ │ ├── conditional │ │ │ └── index.ts │ │ ├── dash │ │ │ ├── DataTable.js │ │ │ ├── Sanitizer.ts │ │ │ ├── fragments │ │ │ │ └── DataTable.js │ │ │ └── validate.ts │ │ ├── derived │ │ │ ├── cell │ │ │ │ ├── cellProps.ts │ │ │ │ ├── contents.tsx │ │ │ │ ├── dropdowns.ts │ │ │ │ ├── eventHandlerProps.ts │ │ │ │ ├── isActive.ts │ │ │ │ ├── isSelected.ts │ │ │ │ ├── operations.tsx │ │ │ │ ├── resolveFlag.ts │ │ │ │ ├── wrapperStyles.ts │ │ │ │ └── wrappers.tsx │ │ │ ├── data │ │ │ │ ├── viewport.ts │ │ │ │ ├── virtual.ts │ │ │ │ └── virtualized.ts │ │ │ ├── edges │ │ │ │ ├── data.ts │ │ │ │ ├── filter.ts │ │ │ │ ├── header.ts │ │ │ │ ├── index.ts │ │ │ │ ├── operationOfData.ts │ │ │ │ ├── operationOfFilters.ts │ │ │ │ ├── operationOfHeaders.ts │ │ │ │ └── type.ts │ │ │ ├── filter │ │ │ │ ├── map.ts │ │ │ │ └── wrapperStyles.ts │ │ │ ├── header │ │ │ │ ├── columnFlag.ts │ │ │ │ ├── content.tsx │ │ │ │ ├── fixedHeaders.ts │ │ │ │ ├── headerRows.ts │ │ │ │ ├── indices.ts │ │ │ │ ├── labels.ts │ │ │ │ ├── labelsAndIndices.ts │ │ │ │ ├── operations.tsx │ │ │ │ ├── wrapperStyles.ts │ │ │ │ └── wrappers.tsx │ │ │ ├── paginator.ts │ │ │ ├── selects │ │ │ │ ├── columns.ts │ │ │ │ └── rows.ts │ │ │ ├── style │ │ │ │ ├── IStyle.ts │ │ │ │ ├── cssProperties.ts │ │ │ │ ├── index.ts │ │ │ │ ├── props.ts │ │ │ │ └── py2jsCssProperties.ts │ │ │ └── table │ │ │ │ ├── data_loading.ts │ │ │ │ ├── fragmentStyles.ts │ │ │ │ ├── fragments.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── tooltip.ts │ │ ├── handlers │ │ │ └── cellEvents.ts │ │ ├── index.ts │ │ ├── style │ │ │ └── reset.less │ │ ├── syntax-tree │ │ │ ├── MultiColumnsSyntaxTree.ts │ │ │ ├── QuerySyntaxTree.ts │ │ │ ├── SingleColumnSyntaxTree.ts │ │ │ ├── index.ts │ │ │ ├── lexeme │ │ │ │ ├── block.ts │ │ │ │ ├── expression.ts │ │ │ │ ├── logical.ts │ │ │ │ ├── relational.ts │ │ │ │ └── unary.ts │ │ │ └── lexicon │ │ │ │ ├── column.ts │ │ │ │ ├── columnMulti.ts │ │ │ │ ├── index.ts │ │ │ │ └── query.ts │ │ ├── tooltips │ │ │ └── props.ts │ │ ├── type │ │ │ ├── any.ts │ │ │ ├── date.ts │ │ │ ├── formatter.ts │ │ │ ├── null.ts │ │ │ ├── number.ts │ │ │ ├── reconcile.ts │ │ │ └── text.ts │ │ └── utils │ │ │ ├── Markdown.ts │ │ │ ├── TableClipboardHelper.ts │ │ │ ├── actions.js │ │ │ ├── applyClipboardToData.ts │ │ │ ├── generate.ts │ │ │ ├── navigation.ts │ │ │ └── unicode.ts │ └── third-party │ │ └── highlight.js │ ├── tests │ ├── __init__.py │ ├── assets │ │ ├── 16zpallagi-25cols-100klines.csv │ │ └── gapminder.csv │ ├── js-unit │ │ ├── clipboard_test.ts │ │ ├── dash_table_queries_test.ts │ │ ├── dateCoercion_test.ts │ │ ├── dateValidation_test.ts │ │ ├── derivedFragmentStyles_test.ts │ │ ├── derivedSelectedRows_test.ts │ │ ├── derivedViewport_test.ts │ │ ├── edges_test.ts │ │ ├── editColumnNames.ts │ │ ├── exportUtils_tests.ts │ │ ├── formatting_test.ts │ │ ├── isEditable_test.ts │ │ ├── lexeme_test.ts │ │ ├── loadingState.ts │ │ ├── multi_columns_syntactic_tree.ts │ │ ├── numberCoercion_test.ts │ │ ├── numberValidation_test.ts │ │ ├── query_syntactic_tree_test.ts │ │ ├── reconcile_test.ts │ │ ├── single_column_syntactic_tree_test.ts │ │ ├── sorting_test.ts │ │ ├── table_clipboard_helper_test.ts │ │ ├── table_update_test.ts │ │ ├── textCoercion_test.ts │ │ └── textValidation_test.ts │ ├── selenium │ │ ├── assets │ │ │ ├── logo.png │ │ │ └── solar.csv │ │ ├── conftest.py │ │ ├── test_basic_copy_paste.py │ │ ├── test_basic_operations.py │ │ ├── test_bootstrap.py │ │ ├── test_column.py │ │ ├── test_derived_props.py │ │ ├── test_dropdown.py │ │ ├── test_edit.py │ │ ├── test_editable.py │ │ ├── test_empty.py │ │ ├── test_export.py │ │ ├── test_filter.py │ │ ├── test_filter2.py │ │ ├── test_formatting.py │ │ ├── test_header.py │ │ ├── test_markdown.py │ │ ├── test_markdown_assets │ │ │ ├── logo.png │ │ │ └── scripts.js │ │ ├── test_markdown_copy_paste.py │ │ ├── test_markdown_html.py │ │ ├── test_markdown_link.py │ │ ├── test_multiple_tables.py │ │ ├── test_navigation.py │ │ ├── test_navigation_keyboard.py │ │ ├── test_navigation_keyboard_readonly.py │ │ ├── test_navigation_mouse.py │ │ ├── test_pagination.py │ │ ├── test_readonly_cell.py │ │ ├── test_scrolling.py │ │ ├── test_scrolling2.py │ │ ├── test_sizing.py │ │ ├── test_sizing_a.py │ │ ├── test_sizing_b.py │ │ ├── test_sizing_c.py │ │ ├── test_sizing_d.py │ │ ├── test_sizing_e.py │ │ ├── test_sizing_x.py │ │ ├── test_sizing_y.py │ │ ├── test_sizing_z.py │ │ ├── test_sort.py │ │ ├── test_tooltip.py │ │ ├── test_typed.py │ │ └── utils.py │ ├── unit │ │ └── format_test.py │ └── visual │ │ └── percy-storybook │ │ ├── @Types │ │ └── modules.d.ts │ │ ├── Border.defaults.percy.tsx │ │ ├── Border.style.percy.tsx │ │ ├── Css.percy.tsx │ │ ├── DashTable.percy.tsx │ │ ├── Dropdown.percy.tsx │ │ ├── Filters.percy.tsx │ │ ├── Header.actions.percy.tsx │ │ ├── Header.percy.tsx │ │ ├── Hideable.percy.tsx │ │ ├── MarkdownCells.percy.tsx │ │ ├── Multiline.percy.tsx │ │ ├── Sizing.percy.tsx │ │ ├── Style.percy.tsx │ │ ├── TriadValidation.percy.tsx │ │ ├── Types.percy.tsx │ │ ├── Virtualization.percy.tsx │ │ ├── Width.all.percy.tsx │ │ ├── Width.empty.percy.tsx │ │ ├── fixtures.ts │ │ └── tsconfig.json │ ├── tsconfig.base.json │ ├── tsconfig.json │ ├── tsconfig.lint.json │ ├── webpack.config.js │ ├── webpack.dev.config.js │ ├── webpack.serve.config.js │ └── webpack.test.config.js ├── dash ├── __init__.py ├── _callback.py ├── _callback_context.py ├── _configs.py ├── _dash_renderer.py ├── _get_app.py ├── _get_paths.py ├── _grouping.py ├── _hooks.py ├── _jupyter.py ├── _no_update.py ├── _obsolete.py ├── _pages.py ├── _patch.py ├── _plotly_cli.py ├── _utils.py ├── _validate.py ├── _watch.py ├── background_callback │ ├── __init__.py │ ├── _proxy_set_props.py │ └── managers │ │ ├── __init__.py │ │ ├── celery_manager.py │ │ └── diskcache_manager.py ├── dash-renderer │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .npmignore │ ├── @Types │ │ └── modules.d.ts │ ├── MANIFEST.in │ ├── babel.config.js │ ├── config │ │ └── eslint │ │ │ └── eslintrc-node.json │ ├── index.html │ ├── init.template │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── renderer-test.sh │ ├── setup.py │ ├── src │ │ ├── APIController.react.js │ │ ├── AccessDenied.react.js │ │ ├── AppContainer.react.js │ │ ├── AppProvider.react.tsx │ │ ├── DashRenderer.js │ │ ├── StoreObserver.ts │ │ ├── actions │ │ │ ├── api.js │ │ │ ├── callbacks.ts │ │ │ ├── constants.js │ │ │ ├── dependencies.js │ │ │ ├── dependencies_ts.ts │ │ │ ├── index.js │ │ │ ├── isAppReady.js │ │ │ ├── isLoading.ts │ │ │ ├── loading.ts │ │ │ ├── patch.ts │ │ │ ├── paths.js │ │ │ ├── patternMatching.ts │ │ │ ├── requestDependencies.ts │ │ │ └── utils.js │ │ ├── checkPropTypes.js │ │ ├── components │ │ │ ├── core │ │ │ │ ├── Loading.react.js │ │ │ │ ├── Reloader.react.js │ │ │ │ ├── Toolbar.css │ │ │ │ └── Toolbar.react.js │ │ │ └── error │ │ │ │ ├── CallbackGraph │ │ │ │ ├── CallbackGraphContainer.css │ │ │ │ ├── CallbackGraphContainer.react.js │ │ │ │ ├── CallbackGraphContainerStylesheet.js │ │ │ │ └── CallbackGraphEffects.js │ │ │ │ ├── ComponentErrorBoundary.react.js │ │ │ │ ├── FrontEnd │ │ │ │ ├── FrontEndError.css │ │ │ │ ├── FrontEndError.react.js │ │ │ │ └── FrontEndErrorContainer.react.js │ │ │ │ ├── GlobalErrorContainer.react.js │ │ │ │ ├── GlobalErrorContainerPassthrough.react.js │ │ │ │ ├── Percy.css │ │ │ │ ├── icons │ │ │ │ ├── BellIcon.svg │ │ │ │ ├── CheckIcon.svg │ │ │ │ ├── ClockIcon.svg │ │ │ │ ├── CloudSlashIcon.svg │ │ │ │ ├── CollapseIcon.svg │ │ │ │ ├── DebugIcon.svg │ │ │ │ ├── ErrorIcon.svg │ │ │ │ ├── Expand.svg │ │ │ │ ├── GraphIcon.svg │ │ │ │ ├── LeftArrow.svg │ │ │ │ ├── OffIcon.svg │ │ │ │ ├── ReloadIcon.svg │ │ │ │ └── RightArrow.svg │ │ │ │ ├── menu │ │ │ │ ├── DebugMenu.css │ │ │ │ ├── DebugMenu.react.js │ │ │ │ ├── DevtoolContext.js │ │ │ │ ├── PlotlyCloud.css │ │ │ │ ├── PlotlyCloud.js │ │ │ │ ├── VersionInfo.css │ │ │ │ └── VersionInfo.react.js │ │ │ │ └── werkzeugcss.js │ │ ├── config.ts │ │ ├── constants │ │ │ └── constants.js │ │ ├── dashApi.ts │ │ ├── exceptions.js │ │ ├── index.js │ │ ├── isSimpleComponent.js │ │ ├── observers │ │ │ ├── documentTitle.ts │ │ │ ├── executedCallbacks.ts │ │ │ ├── executingCallbacks.ts │ │ │ ├── isLoading.ts │ │ │ ├── prioritizedCallbacks.ts │ │ │ ├── requestedCallbacks.ts │ │ │ └── storedCallbacks.ts │ │ ├── persistence.js │ │ ├── reducers │ │ │ ├── api.js │ │ │ ├── appLifecycle.js │ │ │ ├── callbackJobs.ts │ │ │ ├── callbacks.ts │ │ │ ├── changed.js │ │ │ ├── config.js │ │ │ ├── constants.js │ │ │ ├── dependencyGraph.js │ │ │ ├── error.js │ │ │ ├── history.js │ │ │ ├── hooks.js │ │ │ ├── isLoading.ts │ │ │ ├── layout.js │ │ │ ├── loading.ts │ │ │ ├── paths.js │ │ │ ├── profile.js │ │ │ └── reducer.js │ │ ├── registry.js │ │ ├── store.ts │ │ ├── styles │ │ │ └── styles.js │ │ ├── types │ │ │ ├── callbacks.ts │ │ │ └── component.ts │ │ ├── utils │ │ │ ├── callbacks.ts │ │ │ ├── clientsideFunctions.ts │ │ │ ├── libraries.ts │ │ │ ├── stores.ts │ │ │ └── wait.ts │ │ └── wrapper │ │ │ ├── CheckedComponent.tsx │ │ │ ├── DashContext.tsx │ │ │ ├── DashWrapper.tsx │ │ │ ├── ExternalWrapper.tsx │ │ │ ├── selectors.ts │ │ │ └── wrapping.ts │ ├── tests │ │ ├── isAppReady.test.js │ │ └── persistence.test.js │ ├── tsconfig.json │ ├── tslint.json │ ├── webpack.base.config.js │ ├── webpack.config.js │ └── webpack.test.config.js ├── dash.py ├── dash_table │ └── .gitkeep ├── dcc │ └── .gitkeep ├── dependencies.py ├── development │ ├── __init__.py │ ├── _all_keywords.py │ ├── _collect_nodes.py │ ├── _generate_prop_types.py │ ├── _jl_components_generation.py │ ├── _py_components_generation.py │ ├── _py_prop_typing.py │ ├── _r_components_generation.py │ ├── base_component.py │ ├── build_process.py │ ├── component_generator.py │ └── update_components.py ├── exceptions.py ├── extract-meta.js ├── favicon.ico ├── fingerprint.py ├── html │ └── .gitkeep ├── labextension │ └── package.json ├── nbextension │ ├── README.md │ ├── __init__.py │ ├── dash.json │ ├── description.yaml │ └── main.js ├── py.typed ├── renovate.json ├── resources.py ├── testing │ ├── __init__.py │ ├── application_runners.py │ ├── browser.py │ ├── composite.py │ ├── consts.py │ ├── dash_page.py │ ├── errors.py │ ├── newhooks.py │ ├── plugin.py │ └── wait.py ├── types.py └── version.py ├── lerna.json ├── package.json ├── pytest.ini ├── requirements ├── ag-grid.txt ├── async.txt ├── celery.txt ├── ci.txt ├── cloud.txt ├── compress.txt ├── dev.txt ├── diskcache.txt ├── install.txt └── testing.txt ├── rerun_failed_tests.py ├── setup.py └── tests ├── __init__.py ├── assets ├── __init__.py ├── grouping_app.py ├── simple_app.py └── todo_app.py ├── async_tests ├── __init__.py ├── app1_async.py ├── app_arbitrary_async.py ├── conftest.py ├── test_async_background_callbacks.py ├── test_async_callbacks.py └── utils.py ├── background_callback ├── __init__.py ├── app1.py ├── app2.py ├── app3.py ├── app4.py ├── app5.py ├── app6.py ├── app7.py ├── app_arbitrary.py ├── app_bg_on_error.py ├── app_callback_ctx.py ├── app_ctx_cookies.py ├── app_diff_outputs.py ├── app_error.py ├── app_page_cancel.py ├── app_pattern_matching.py ├── app_progress_delete.py ├── app_short_interval.py ├── app_side_update.py ├── app_unordered.py ├── conftest.py ├── test_basic_long_callback001.py ├── test_basic_long_callback002.py ├── test_basic_long_callback003.py ├── test_basic_long_callback004.py ├── test_basic_long_callback005.py ├── test_basic_long_callback006.py ├── test_basic_long_callback007.py ├── test_basic_long_callback008.py ├── test_basic_long_callback009.py ├── test_basic_long_callback010.py ├── test_basic_long_callback011.py ├── test_basic_long_callback012.py ├── test_basic_long_callback013.py ├── test_basic_long_callback014.py ├── test_basic_long_callback015.py ├── test_basic_long_callback016.py ├── test_basic_long_callback017.py ├── test_basic_long_callback018.py ├── test_ctx_cookies.py └── utils.py ├── compliance └── test_typing.py ├── conftest.py ├── integration ├── __init__.py ├── callbacks │ ├── __init__.py │ ├── state_path.json │ ├── test_api_callback.py │ ├── test_arbitrary_callbacks.py │ ├── test_basic_callback.py │ ├── test_callback_context.py │ ├── test_callback_error.py │ ├── test_callback_optional.py │ ├── test_dynamic_callback.py │ ├── test_global_dash_callback.py │ ├── test_layout_paths_with_callbacks.py │ ├── test_malformed_request.py │ ├── test_missing_inputs.py │ ├── test_missing_outputs.py │ ├── test_multiple_callbacks.py │ ├── test_prevent_initial.py │ ├── test_prevent_update.py │ ├── test_validation.py │ └── test_wildcards.py ├── clientside │ ├── assets │ │ ├── clientside.js │ │ ├── clientside.mjs │ │ ├── clientsideModule.mjs │ │ └── ramda-0.25.0.min.js │ ├── test_clientside.py │ ├── test_clientside_functions.py │ ├── test_clientside_multiple_output_return_single_no_update.py │ ├── test_clientside_outputs_list.py │ └── test_clientside_restarts.py ├── dash │ ├── dash_import_test.py │ └── org.py ├── dash_assets │ ├── assets │ │ ├── load_first.js │ │ ├── load_ignored.js │ │ ├── nested_css │ │ │ └── nested.css │ │ ├── nested_js │ │ │ ├── load_after.js │ │ │ ├── load_after1.js │ │ │ ├── load_after10.js │ │ │ ├── load_after11.js │ │ │ ├── load_after2.js │ │ │ ├── load_after3.js │ │ │ ├── load_after4.js │ │ │ └── load_last.js │ │ └── reset.css │ ├── test_assets_path_ignore.py │ ├── test_assets_path_ignore_assets │ │ ├── normal_files │ │ │ ├── normal.css │ │ │ └── normal.js │ │ └── should_be_ignored │ │ │ ├── ignored.css │ │ │ └── ignored.js │ └── test_dash_assets.py ├── devtools │ ├── __init__.py │ ├── hr_assets │ │ ├── hot_reload.css │ │ └── hot_reload.js │ ├── test_callback_timing.py │ ├── test_callback_validation.py │ ├── test_devtools_error_handling.py │ ├── test_devtools_ui.py │ ├── test_hot_reload.py │ └── test_props_check.py ├── multi_page │ ├── assets │ │ ├── app.jpeg │ │ ├── birds.jpeg │ │ ├── home.jpeg │ │ └── logo.jpeg │ ├── pages │ │ ├── .no_import.py │ │ ├── .no_import │ │ │ └── no_import.py │ │ ├── __init__.py │ │ ├── _no_import.py │ │ ├── defaults.py │ │ ├── metas.py │ │ ├── not_found_404.py │ │ ├── page1.py │ │ ├── page2.py │ │ ├── path_variables.py │ │ ├── query_string.py │ │ └── redirect.py │ ├── pages_error │ │ ├── __init__.py │ │ └── no_layout_page.py │ ├── test_pages_layout.py │ ├── test_pages_order.py │ └── test_pages_relative_path.py ├── renderer │ ├── initial_state_dash_app_content.html │ ├── test_add_receive_props.py │ ├── test_array_of_exact_or_shape_with_node_prop_assign_none.py │ ├── test_children_reorder.py │ ├── test_component_as_prop.py │ ├── test_dependencies.py │ ├── test_descendant_listening.py │ ├── test_due_diligence.py │ ├── test_external_component.py │ ├── test_iframe.py │ ├── test_loading_states.py │ ├── test_multi_output.py │ ├── test_persistence.py │ ├── test_race_conditions.py │ ├── test_redraw.py │ ├── test_render_type.py │ ├── test_request_hooks.py │ └── test_state_and_input.py ├── security │ ├── test_injection.py │ └── test_xss.py ├── test_clientside_patch.py ├── test_csp.py ├── test_duo.py ├── test_generation.py ├── test_hooks.py ├── test_integration.py ├── test_legacy_components.py ├── test_pages_redirect_home.py ├── test_patch.py ├── test_scripts.py └── utils.py ├── unit ├── development │ ├── TestReactComponent.react.js │ ├── TestReactComponentRequired.react.js │ ├── __init__.py │ ├── conftest.py │ ├── flow_metadata_test.json │ ├── metadata_required_test.json │ ├── metadata_test.json │ ├── metadata_test.py │ ├── test_base_component.py │ ├── test_collect_nodes.py │ ├── test_flow_metadata_conversions.py │ ├── test_generate_class.py │ ├── test_metadata_conversions.py │ └── test_r_component_gen.py ├── library │ ├── fixtures.py │ ├── test_async_resources.py │ ├── test_background_callback_validation.py │ ├── test_grouped_callbacks.py │ ├── test_grouping.py │ ├── test_utils.py │ └── test_validate.py ├── pages │ ├── __init__.py │ ├── custom_pages │ │ ├── __init__.py │ │ └── page.py │ ├── sub_dir │ │ ├── __init__.py │ │ └── custom_pages │ │ │ ├── __init__.py │ │ │ └── page.py │ ├── test_pages.py │ └── test_pages_config.py ├── test_app_runners.py ├── test_browser.py ├── test_configs.py ├── test_fingerprint.py ├── test_health_endpoint_unit.py ├── test_patch.py ├── test_resources.py └── test_testing.py └── utils.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/pr-issue-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/.github/workflows/pr-issue-check.yml -------------------------------------------------------------------------------- /.github/workflows/testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/.github/workflows/testing.yml -------------------------------------------------------------------------------- /.github/workflows/update-html.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/.github/workflows/update-html.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.lintstagedrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/.lintstagedrc.js -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/iron 2 | -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/.pylintrc -------------------------------------------------------------------------------- /@plotly/dash-component-plugins/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-component-plugins/LICENSE -------------------------------------------------------------------------------- /@plotly/dash-component-plugins/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-component-plugins/babel.config.js -------------------------------------------------------------------------------- /@plotly/dash-component-plugins/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-component-plugins/package-lock.json -------------------------------------------------------------------------------- /@plotly/dash-component-plugins/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-component-plugins/package.json -------------------------------------------------------------------------------- /@plotly/dash-component-plugins/src/History.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-component-plugins/src/History.js -------------------------------------------------------------------------------- /@plotly/dash-component-plugins/src/dynamicImport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-component-plugins/src/dynamicImport.js -------------------------------------------------------------------------------- /@plotly/dash-component-plugins/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-component-plugins/src/index.js -------------------------------------------------------------------------------- /@plotly/dash-component-plugins/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-component-plugins/webpack.config.js -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-nested/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-generator-test-component-nested/MANIFEST.in -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-nested/README.md: -------------------------------------------------------------------------------- 1 | Empty -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-nested/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-generator-test-component-nested/babel.config.js -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-nested/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-generator-test-component-nested/base/__init__.py -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-nested/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-generator-test-component-nested/package-lock.json -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-nested/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-generator-test-component-nested/package.json -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-nested/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-generator-test-component-nested/setup.py -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-nested/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-generator-test-component-nested/src/index.js -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-nested/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-generator-test-component-nested/webpack.config.js -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-standard/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-generator-test-component-standard/MANIFEST.in -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-standard/README.md: -------------------------------------------------------------------------------- 1 | Empty -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-standard/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-generator-test-component-standard/babel.config.js -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-standard/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-generator-test-component-standard/base/__init__.py -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-standard/base/godfather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-generator-test-component-standard/base/godfather.ttf -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-standard/base/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-generator-test-component-standard/base/style.css -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-standard/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-generator-test-component-standard/package-lock.json -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-standard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-generator-test-component-standard/package.json -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-standard/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-generator-test-component-standard/setup.py -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-standard/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-generator-test-component-standard/src/index.js -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-standard/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-generator-test-component-standard/webpack.config.js -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-typescript/README.md: -------------------------------------------------------------------------------- 1 | # Dash generator test component typescript 2 | -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-typescript/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-generator-test-component-typescript/babel.config.js -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-typescript/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-generator-test-component-typescript/base/__init__.py -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-typescript/base/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-typescript/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-generator-test-component-typescript/jest.config.js -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-generator-test-component-typescript/package.json -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-typescript/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-generator-test-component-typescript/setup.py -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-typescript/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-generator-test-component-typescript/src/index.ts -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-typescript/src/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-generator-test-component-typescript/src/props.ts -------------------------------------------------------------------------------- /@plotly/dash-generator-test-component-typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-generator-test-component-typescript/tsconfig.json -------------------------------------------------------------------------------- /@plotly/dash-jupyterlab/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } -------------------------------------------------------------------------------- /@plotly/dash-jupyterlab/lib/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-jupyterlab/lib/index.d.ts -------------------------------------------------------------------------------- /@plotly/dash-jupyterlab/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-jupyterlab/lib/index.js -------------------------------------------------------------------------------- /@plotly/dash-jupyterlab/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-jupyterlab/package.json -------------------------------------------------------------------------------- /@plotly/dash-jupyterlab/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-jupyterlab/src/index.ts -------------------------------------------------------------------------------- /@plotly/dash-jupyterlab/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-jupyterlab/style/index.css -------------------------------------------------------------------------------- /@plotly/dash-jupyterlab/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-jupyterlab/tsconfig.json -------------------------------------------------------------------------------- /@plotly/dash-jupyterlab/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-jupyterlab/yarn.lock -------------------------------------------------------------------------------- /@plotly/dash-test-components/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-test-components/MANIFEST.in -------------------------------------------------------------------------------- /@plotly/dash-test-components/README.md: -------------------------------------------------------------------------------- 1 | Empty -------------------------------------------------------------------------------- /@plotly/dash-test-components/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-test-components/babel.config.js -------------------------------------------------------------------------------- /@plotly/dash-test-components/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-test-components/base/__init__.py -------------------------------------------------------------------------------- /@plotly/dash-test-components/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-test-components/package-lock.json -------------------------------------------------------------------------------- /@plotly/dash-test-components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-test-components/package.json -------------------------------------------------------------------------------- /@plotly/dash-test-components/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-test-components/setup.py -------------------------------------------------------------------------------- /@plotly/dash-test-components/src/components/AddPropsComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-test-components/src/components/AddPropsComponent.js -------------------------------------------------------------------------------- /@plotly/dash-test-components/src/components/AsyncComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-test-components/src/components/AsyncComponent.js -------------------------------------------------------------------------------- /@plotly/dash-test-components/src/components/CollapseComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-test-components/src/components/CollapseComponent.js -------------------------------------------------------------------------------- /@plotly/dash-test-components/src/components/ComponentAsProp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-test-components/src/components/ComponentAsProp.js -------------------------------------------------------------------------------- /@plotly/dash-test-components/src/components/DrawCounter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-test-components/src/components/DrawCounter.js -------------------------------------------------------------------------------- /@plotly/dash-test-components/src/components/ExternalComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-test-components/src/components/ExternalComponent.js -------------------------------------------------------------------------------- /@plotly/dash-test-components/src/components/FragmentComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-test-components/src/components/FragmentComponent.js -------------------------------------------------------------------------------- /@plotly/dash-test-components/src/components/RenderType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-test-components/src/components/RenderType.js -------------------------------------------------------------------------------- /@plotly/dash-test-components/src/components/StyledComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-test-components/src/components/StyledComponent.js -------------------------------------------------------------------------------- /@plotly/dash-test-components/src/components/WidthComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-test-components/src/components/WidthComponent.js -------------------------------------------------------------------------------- /@plotly/dash-test-components/src/fragments/AsyncComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-test-components/src/fragments/AsyncComponent.js -------------------------------------------------------------------------------- /@plotly/dash-test-components/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-test-components/src/index.js -------------------------------------------------------------------------------- /@plotly/dash-test-components/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/dash-test-components/webpack.config.js -------------------------------------------------------------------------------- /@plotly/eslint-config-dash/.gitignore: -------------------------------------------------------------------------------- 1 | *.tgz -------------------------------------------------------------------------------- /@plotly/eslint-config-dash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/eslint-config-dash/README.md -------------------------------------------------------------------------------- /@plotly/eslint-config-dash/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/eslint-config-dash/index.js -------------------------------------------------------------------------------- /@plotly/eslint-config-dash/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/eslint-config-dash/package-lock.json -------------------------------------------------------------------------------- /@plotly/eslint-config-dash/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/eslint-config-dash/package.json -------------------------------------------------------------------------------- /@plotly/eslint-config-dash/typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/eslint-config-dash/typescript.js -------------------------------------------------------------------------------- /@plotly/prettier-config-dash/.gitignore: -------------------------------------------------------------------------------- 1 | *.tgz -------------------------------------------------------------------------------- /@plotly/prettier-config-dash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/prettier-config-dash/README.md -------------------------------------------------------------------------------- /@plotly/prettier-config-dash/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/prettier-config-dash/index.js -------------------------------------------------------------------------------- /@plotly/prettier-config-dash/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/prettier-config-dash/package-lock.json -------------------------------------------------------------------------------- /@plotly/prettier-config-dash/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/prettier-config-dash/package.json -------------------------------------------------------------------------------- /@plotly/webpack-dash-dynamic-import/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/webpack-dash-dynamic-import/LICENSE -------------------------------------------------------------------------------- /@plotly/webpack-dash-dynamic-import/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/webpack-dash-dynamic-import/package.json -------------------------------------------------------------------------------- /@plotly/webpack-dash-dynamic-import/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/@plotly/webpack-dash-dynamic-import/src/index.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/LICENSE -------------------------------------------------------------------------------- /MAKE_A_NEW_BACK_END.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/MAKE_A_NEW_BACK_END.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/README.md -------------------------------------------------------------------------------- /components/dash-core-components/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/.editorconfig -------------------------------------------------------------------------------- /components/dash-core-components/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/.eslintignore -------------------------------------------------------------------------------- /components/dash-core-components/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/.eslintrc -------------------------------------------------------------------------------- /components/dash-core-components/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/.flake8 -------------------------------------------------------------------------------- /components/dash-core-components/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/.gitignore -------------------------------------------------------------------------------- /components/dash-core-components/.lib.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/.lib.babelrc -------------------------------------------------------------------------------- /components/dash-core-components/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/.prettierrc -------------------------------------------------------------------------------- /components/dash-core-components/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/CHANGELOG.md -------------------------------------------------------------------------------- /components/dash-core-components/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/CONTRIBUTING.md -------------------------------------------------------------------------------- /components/dash-core-components/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/LICENSE -------------------------------------------------------------------------------- /components/dash-core-components/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/MANIFEST.in -------------------------------------------------------------------------------- /components/dash-core-components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/README.md -------------------------------------------------------------------------------- /components/dash-core-components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/dash-core-components/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/babel.config.js -------------------------------------------------------------------------------- /components/dash-core-components/dash-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/dash-info.yaml -------------------------------------------------------------------------------- /components/dash-core-components/dash_prop_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/dash_prop_typing.py -------------------------------------------------------------------------------- /components/dash-core-components/images/upload-component.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/images/upload-component.gif -------------------------------------------------------------------------------- /components/dash-core-components/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/index.html -------------------------------------------------------------------------------- /components/dash-core-components/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/package-lock.json -------------------------------------------------------------------------------- /components/dash-core-components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/package.json -------------------------------------------------------------------------------- /components/dash-core-components/packages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/packages/README.md -------------------------------------------------------------------------------- /components/dash-core-components/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/pytest.ini -------------------------------------------------------------------------------- /components/dash-core-components/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/renovate.json -------------------------------------------------------------------------------- /components/dash-core-components/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/setup.py -------------------------------------------------------------------------------- /components/dash-core-components/src/components/Checklist.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/components/Checklist.react.js -------------------------------------------------------------------------------- /components/dash-core-components/src/components/Clipboard.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/components/Clipboard.react.js -------------------------------------------------------------------------------- /components/dash-core-components/src/components/Download.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/components/Download.react.js -------------------------------------------------------------------------------- /components/dash-core-components/src/components/Dropdown.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/components/Dropdown.react.js -------------------------------------------------------------------------------- /components/dash-core-components/src/components/Graph.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/components/Graph.react.js -------------------------------------------------------------------------------- /components/dash-core-components/src/components/Input.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/components/Input.react.js -------------------------------------------------------------------------------- /components/dash-core-components/src/components/Interval.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/components/Interval.react.js -------------------------------------------------------------------------------- /components/dash-core-components/src/components/Link.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/components/Link.react.js -------------------------------------------------------------------------------- /components/dash-core-components/src/components/Loading.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/components/Loading.react.js -------------------------------------------------------------------------------- /components/dash-core-components/src/components/Location.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/components/Location.react.js -------------------------------------------------------------------------------- /components/dash-core-components/src/components/Markdown.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/components/Markdown.react.js -------------------------------------------------------------------------------- /components/dash-core-components/src/components/Slider.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/components/Slider.react.js -------------------------------------------------------------------------------- /components/dash-core-components/src/components/Store.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/components/Store.react.js -------------------------------------------------------------------------------- /components/dash-core-components/src/components/Tab.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/components/Tab.react.js -------------------------------------------------------------------------------- /components/dash-core-components/src/components/Tabs.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/components/Tabs.react.js -------------------------------------------------------------------------------- /components/dash-core-components/src/components/Textarea.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/components/Textarea.react.js -------------------------------------------------------------------------------- /components/dash-core-components/src/components/Tooltip.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/components/Tooltip.react.js -------------------------------------------------------------------------------- /components/dash-core-components/src/components/Upload.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/components/Upload.react.js -------------------------------------------------------------------------------- /components/dash-core-components/src/components/css/Dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/components/css/Dropdown.css -------------------------------------------------------------------------------- /components/dash-core-components/src/components/css/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/components/css/input.css -------------------------------------------------------------------------------- /components/dash-core-components/src/components/css/sliders.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/components/css/sliders.css -------------------------------------------------------------------------------- /components/dash-core-components/src/fragments/Dropdown.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/fragments/Dropdown.react.js -------------------------------------------------------------------------------- /components/dash-core-components/src/fragments/Graph.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/fragments/Graph.react.js -------------------------------------------------------------------------------- /components/dash-core-components/src/fragments/Markdown.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/fragments/Markdown.react.js -------------------------------------------------------------------------------- /components/dash-core-components/src/fragments/Math.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/fragments/Math.react.js -------------------------------------------------------------------------------- /components/dash-core-components/src/fragments/Slider.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/fragments/Slider.react.js -------------------------------------------------------------------------------- /components/dash-core-components/src/fragments/Upload.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/fragments/Upload.react.js -------------------------------------------------------------------------------- /components/dash-core-components/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/index.js -------------------------------------------------------------------------------- /components/dash-core-components/src/third-party/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/third-party/highlight.js -------------------------------------------------------------------------------- /components/dash-core-components/src/utils/LazyLoader/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/utils/LazyLoader/dropdown.js -------------------------------------------------------------------------------- /components/dash-core-components/src/utils/LazyLoader/graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/utils/LazyLoader/graph.js -------------------------------------------------------------------------------- /components/dash-core-components/src/utils/LazyLoader/hljs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/utils/LazyLoader/hljs.js -------------------------------------------------------------------------------- /components/dash-core-components/src/utils/LazyLoader/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/utils/LazyLoader/markdown.js -------------------------------------------------------------------------------- /components/dash-core-components/src/utils/LazyLoader/mathjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/utils/LazyLoader/mathjax.js -------------------------------------------------------------------------------- /components/dash-core-components/src/utils/LazyLoader/plotly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/utils/LazyLoader/plotly.js -------------------------------------------------------------------------------- /components/dash-core-components/src/utils/LazyLoader/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/utils/LazyLoader/slider.js -------------------------------------------------------------------------------- /components/dash-core-components/src/utils/LazyLoader/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/utils/LazyLoader/upload.js -------------------------------------------------------------------------------- /components/dash-core-components/src/utils/LoadingElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/utils/LoadingElement.js -------------------------------------------------------------------------------- /components/dash-core-components/src/utils/MarkdownHighlighter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/utils/MarkdownHighlighter.js -------------------------------------------------------------------------------- /components/dash-core-components/src/utils/ResizeDetector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/utils/ResizeDetector.js -------------------------------------------------------------------------------- /components/dash-core-components/src/utils/computeSliderMarkers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/utils/computeSliderMarkers.js -------------------------------------------------------------------------------- /components/dash-core-components/src/utils/computeSliderStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/utils/computeSliderStyle.js -------------------------------------------------------------------------------- /components/dash-core-components/src/utils/convertToMoment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/utils/convertToMoment.js -------------------------------------------------------------------------------- /components/dash-core-components/src/utils/formatSliderTooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/utils/formatSliderTooltip.js -------------------------------------------------------------------------------- /components/dash-core-components/src/utils/mathjax.js: -------------------------------------------------------------------------------- 1 | import 'mathjax/es5/tex-svg'; 2 | 3 | window.MathJax.config.startup.typeset = false; 4 | -------------------------------------------------------------------------------- /components/dash-core-components/src/utils/optionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/src/utils/optionTypes.js -------------------------------------------------------------------------------- /components/dash-core-components/tests/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/tests/assets/image.png -------------------------------------------------------------------------------- /components/dash-core-components/tests/assets/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/tests/assets/input.css -------------------------------------------------------------------------------- /components/dash-core-components/tests/assets/tab.css: -------------------------------------------------------------------------------- 1 | .test-custom-tab { 2 | font-weight: bold; 3 | } 4 | -------------------------------------------------------------------------------- /components/dash-core-components/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/tests/conftest.py -------------------------------------------------------------------------------- /components/dash-core-components/tests/integration/upload/upload-assets/upft001.csv: -------------------------------------------------------------------------------- 1 | city,country 2 | montréal,canada 3 | 京都市,japan 4 | burlington,usa 5 | -------------------------------------------------------------------------------- /components/dash-core-components/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-core-components/webpack.config.js -------------------------------------------------------------------------------- /components/dash-html-components/.builderrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/.builderrc -------------------------------------------------------------------------------- /components/dash-html-components/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/.eslintignore -------------------------------------------------------------------------------- /components/dash-html-components/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/.eslintrc -------------------------------------------------------------------------------- /components/dash-html-components/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/.gitignore -------------------------------------------------------------------------------- /components/dash-html-components/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/.pylintrc -------------------------------------------------------------------------------- /components/dash-html-components/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/CHANGELOG.md -------------------------------------------------------------------------------- /components/dash-html-components/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/CONTRIBUTING.md -------------------------------------------------------------------------------- /components/dash-html-components/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2022 2 | COPYRIGHT HOLDER: Plotly, Inc. 3 | -------------------------------------------------------------------------------- /components/dash-html-components/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/LICENSE.md -------------------------------------------------------------------------------- /components/dash-html-components/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/MANIFEST.in -------------------------------------------------------------------------------- /components/dash-html-components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/README.md -------------------------------------------------------------------------------- /components/dash-html-components/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/babel.config.js -------------------------------------------------------------------------------- /components/dash-html-components/dash-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/dash-info.yaml -------------------------------------------------------------------------------- /components/dash-html-components/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/package-lock.json -------------------------------------------------------------------------------- /components/dash-html-components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/package.json -------------------------------------------------------------------------------- /components/dash-html-components/scripts/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/scripts/.eslintrc.json -------------------------------------------------------------------------------- /components/dash-html-components/scripts/data/attributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/scripts/data/attributes.json -------------------------------------------------------------------------------- /components/dash-html-components/scripts/data/elements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/scripts/data/elements.txt -------------------------------------------------------------------------------- /components/dash-html-components/scripts/extract-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/scripts/extract-all.sh -------------------------------------------------------------------------------- /components/dash-html-components/scripts/extract-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/scripts/extract-attributes.js -------------------------------------------------------------------------------- /components/dash-html-components/scripts/extract-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/scripts/extract-elements.js -------------------------------------------------------------------------------- /components/dash-html-components/scripts/generate-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/scripts/generate-all.sh -------------------------------------------------------------------------------- /components/dash-html-components/scripts/generate-components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/scripts/generate-components.js -------------------------------------------------------------------------------- /components/dash-html-components/scripts/generate-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/scripts/generate-index.js -------------------------------------------------------------------------------- /components/dash-html-components/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/setup.py -------------------------------------------------------------------------------- /components/dash-html-components/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/dash-html-components/tests/test_div_tabIndex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/tests/test_div_tabIndex.py -------------------------------------------------------------------------------- /components/dash-html-components/tests/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/tests/test_integration.py -------------------------------------------------------------------------------- /components/dash-html-components/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/tests/utils.py -------------------------------------------------------------------------------- /components/dash-html-components/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-html-components/webpack.config.js -------------------------------------------------------------------------------- /components/dash-table/.config/webpack/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/.config/webpack/base.js -------------------------------------------------------------------------------- /components/dash-table/.config/webpack/base.preprocessing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/.config/webpack/base.preprocessing.js -------------------------------------------------------------------------------- /components/dash-table/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/.eslintrc.js -------------------------------------------------------------------------------- /components/dash-table/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/.flake8 -------------------------------------------------------------------------------- /components/dash-table/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/.gitignore -------------------------------------------------------------------------------- /components/dash-table/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/dash-table/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/.prettierrc -------------------------------------------------------------------------------- /components/dash-table/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/.pylintrc -------------------------------------------------------------------------------- /components/dash-table/.storybook/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/.storybook/babel.config.js -------------------------------------------------------------------------------- /components/dash-table/.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/.storybook/main.js -------------------------------------------------------------------------------- /components/dash-table/.test_durations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/.test_durations -------------------------------------------------------------------------------- /components/dash-table/@Types/modules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/@Types/modules.d.ts -------------------------------------------------------------------------------- /components/dash-table/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/CHANGELOG.md -------------------------------------------------------------------------------- /components/dash-table/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /components/dash-table/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/LICENSE -------------------------------------------------------------------------------- /components/dash-table/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/MANIFEST.in -------------------------------------------------------------------------------- /components/dash-table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/README.md -------------------------------------------------------------------------------- /components/dash-table/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/dash-table/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/app.json -------------------------------------------------------------------------------- /components/dash-table/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/babel.config.js -------------------------------------------------------------------------------- /components/dash-table/cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/cspell.json -------------------------------------------------------------------------------- /components/dash-table/dash-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/dash-info.yaml -------------------------------------------------------------------------------- /components/dash-table/dash_table_base/Format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/dash_table_base/Format.py -------------------------------------------------------------------------------- /components/dash-table/dash_table_base/FormatTemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/dash_table_base/FormatTemplate.py -------------------------------------------------------------------------------- /components/dash-table/dash_table_base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/dash_table_base/__init__.py -------------------------------------------------------------------------------- /components/dash-table/demo/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/demo/App.tsx -------------------------------------------------------------------------------- /components/dash-table/demo/AppMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/demo/AppMode.ts -------------------------------------------------------------------------------- /components/dash-table/demo/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/demo/data.ts -------------------------------------------------------------------------------- /components/dash-table/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/demo/index.html -------------------------------------------------------------------------------- /components/dash-table/demo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/demo/index.js -------------------------------------------------------------------------------- /components/dash-table/demo/style.less: -------------------------------------------------------------------------------- 1 | html { 2 | font-size: 13px; 3 | } 4 | -------------------------------------------------------------------------------- /components/dash-table/generator/cssPropertiesGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/generator/cssPropertiesGenerator.js -------------------------------------------------------------------------------- /components/dash-table/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/karma.conf.js -------------------------------------------------------------------------------- /components/dash-table/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/package-lock.json -------------------------------------------------------------------------------- /components/dash-table/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/package.json -------------------------------------------------------------------------------- /components/dash-table/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/pytest.ini -------------------------------------------------------------------------------- /components/dash-table/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/renovate.json -------------------------------------------------------------------------------- /components/dash-table/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/setup.py -------------------------------------------------------------------------------- /components/dash-table/src/core/Clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/Clipboard.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/Logger/DebugLevel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/Logger/DebugLevel.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/Logger/LogLevel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/Logger/LogLevel.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/Logger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/Logger/index.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/Stylesheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/Stylesheet.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/browser/DOM.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/browser/DOM.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/browser/isChrome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/browser/isChrome.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/browser/scrollbarWidth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/browser/scrollbarWidth.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/cache/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/cache/index.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/cache/memoizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/cache/memoizer.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/cache/value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/cache/value.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/comparer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/comparer.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/components/IsolatedInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/components/IsolatedInput/index.tsx -------------------------------------------------------------------------------- /components/dash-table/src/core/debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/debounce.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/environment/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/environment/index.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/generic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/generic.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/math/arrayZipMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/math/arrayZipMap.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/math/matrixZipMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/math/matrixZipMap.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/math/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/math/random.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/memoizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/memoizer.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/objPropsToCamel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/objPropsToCamel.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/sorting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/sorting/index.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/sorting/multi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/sorting/multi.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/sorting/single.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/sorting/single.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/storage/Cookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/storage/Cookie.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/syntax-tree/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/syntax-tree/index.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/syntax-tree/lexer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/syntax-tree/lexer.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/syntax-tree/lexicon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/syntax-tree/lexicon.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/syntax-tree/syntaxer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/syntax-tree/syntaxer.ts -------------------------------------------------------------------------------- /components/dash-table/src/core/type/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/core/type/index.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/LazyLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/LazyLoader.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/components/Cell/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/components/Cell/index.tsx -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/components/Cell/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/components/Cell/props.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/components/CellFactory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/components/CellFactory.tsx -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/components/EdgeFactory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/components/EdgeFactory.tsx -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/components/Export/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/components/Export/index.tsx -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/components/Export/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/components/Export/utils.tsx -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/components/Filter/Column.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/components/Filter/Column.tsx -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/components/FilterFactory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/components/FilterFactory.tsx -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/components/HeaderFactory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/components/HeaderFactory.tsx -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/components/Table/Table.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/components/Table/Table.less -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/components/Table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/components/Table/index.tsx -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/components/Table/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/components/Table/props.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/components/Table/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/components/Table/style.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/components/Tooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/components/Tooltip/index.tsx -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/components/dropdownHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/components/dropdownHelper.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/components/tooltipHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/components/tooltipHelper.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/conditional/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/conditional/index.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/dash/DataTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/dash/DataTable.js -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/dash/Sanitizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/dash/Sanitizer.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/dash/fragments/DataTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/dash/fragments/DataTable.js -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/dash/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/dash/validate.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/cell/cellProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/cell/cellProps.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/cell/contents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/cell/contents.tsx -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/cell/dropdowns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/cell/dropdowns.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/cell/isActive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/cell/isActive.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/cell/isSelected.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/cell/isSelected.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/cell/operations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/cell/operations.tsx -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/cell/resolveFlag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/cell/resolveFlag.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/cell/wrappers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/cell/wrappers.tsx -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/data/viewport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/data/viewport.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/data/virtual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/data/virtual.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/data/virtualized.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/data/virtualized.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/edges/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/edges/data.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/edges/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/edges/filter.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/edges/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/edges/header.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/edges/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/edges/index.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/edges/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/edges/type.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/filter/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/filter/map.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/header/columnFlag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/header/columnFlag.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/header/content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/header/content.tsx -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/header/headerRows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/header/headerRows.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/header/indices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/header/indices.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/header/labels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/header/labels.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/header/wrappers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/header/wrappers.tsx -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/paginator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/paginator.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/selects/columns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/selects/columns.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/selects/rows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/selects/rows.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/style/IStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/style/IStyle.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/style/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/style/index.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/style/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/style/props.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/table/fragments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/table/fragments.tsx -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/table/index.tsx -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/derived/table/tooltip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/derived/table/tooltip.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/handlers/cellEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/handlers/cellEvents.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/index.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/style/reset.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/style/reset.less -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/syntax-tree/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/syntax-tree/index.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/tooltips/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/tooltips/props.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/type/any.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/type/any.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/type/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/type/date.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/type/formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/type/formatter.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/type/null.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/type/null.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/type/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/type/number.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/type/reconcile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/type/reconcile.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/type/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/type/text.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/utils/Markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/utils/Markdown.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/utils/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/utils/actions.js -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/utils/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/utils/generate.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/utils/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/utils/navigation.ts -------------------------------------------------------------------------------- /components/dash-table/src/dash-table/utils/unicode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/dash-table/utils/unicode.ts -------------------------------------------------------------------------------- /components/dash-table/src/third-party/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/src/third-party/highlight.js -------------------------------------------------------------------------------- /components/dash-table/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/dash-table/tests/assets/gapminder.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/assets/gapminder.csv -------------------------------------------------------------------------------- /components/dash-table/tests/js-unit/clipboard_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/js-unit/clipboard_test.ts -------------------------------------------------------------------------------- /components/dash-table/tests/js-unit/dash_table_queries_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/js-unit/dash_table_queries_test.ts -------------------------------------------------------------------------------- /components/dash-table/tests/js-unit/dateCoercion_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/js-unit/dateCoercion_test.ts -------------------------------------------------------------------------------- /components/dash-table/tests/js-unit/dateValidation_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/js-unit/dateValidation_test.ts -------------------------------------------------------------------------------- /components/dash-table/tests/js-unit/derivedSelectedRows_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/js-unit/derivedSelectedRows_test.ts -------------------------------------------------------------------------------- /components/dash-table/tests/js-unit/derivedViewport_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/js-unit/derivedViewport_test.ts -------------------------------------------------------------------------------- /components/dash-table/tests/js-unit/edges_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/js-unit/edges_test.ts -------------------------------------------------------------------------------- /components/dash-table/tests/js-unit/editColumnNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/js-unit/editColumnNames.ts -------------------------------------------------------------------------------- /components/dash-table/tests/js-unit/exportUtils_tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/js-unit/exportUtils_tests.ts -------------------------------------------------------------------------------- /components/dash-table/tests/js-unit/formatting_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/js-unit/formatting_test.ts -------------------------------------------------------------------------------- /components/dash-table/tests/js-unit/isEditable_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/js-unit/isEditable_test.ts -------------------------------------------------------------------------------- /components/dash-table/tests/js-unit/lexeme_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/js-unit/lexeme_test.ts -------------------------------------------------------------------------------- /components/dash-table/tests/js-unit/loadingState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/js-unit/loadingState.ts -------------------------------------------------------------------------------- /components/dash-table/tests/js-unit/numberCoercion_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/js-unit/numberCoercion_test.ts -------------------------------------------------------------------------------- /components/dash-table/tests/js-unit/numberValidation_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/js-unit/numberValidation_test.ts -------------------------------------------------------------------------------- /components/dash-table/tests/js-unit/reconcile_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/js-unit/reconcile_test.ts -------------------------------------------------------------------------------- /components/dash-table/tests/js-unit/sorting_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/js-unit/sorting_test.ts -------------------------------------------------------------------------------- /components/dash-table/tests/js-unit/table_update_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/js-unit/table_update_test.ts -------------------------------------------------------------------------------- /components/dash-table/tests/js-unit/textCoercion_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/js-unit/textCoercion_test.ts -------------------------------------------------------------------------------- /components/dash-table/tests/js-unit/textValidation_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/js-unit/textValidation_test.ts -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/assets/logo.png -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/assets/solar.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/assets/solar.csv -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/conftest.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_basic_copy_paste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_basic_copy_paste.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_basic_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_basic_operations.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_bootstrap.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_column.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_derived_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_derived_props.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_dropdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_dropdown.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_edit.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_editable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_editable.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_empty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_empty.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_export.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_filter.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_filter2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_filter2.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_formatting.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_header.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_markdown.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_markdown_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_markdown_html.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_markdown_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_markdown_link.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_multiple_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_multiple_tables.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_navigation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_navigation.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_navigation_mouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_navigation_mouse.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_pagination.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_readonly_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_readonly_cell.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_scrolling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_scrolling.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_scrolling2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_scrolling2.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_sizing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_sizing.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_sizing_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_sizing_a.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_sizing_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_sizing_b.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_sizing_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_sizing_c.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_sizing_d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_sizing_d.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_sizing_e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_sizing_e.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_sizing_x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_sizing_x.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_sizing_y.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_sizing_y.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_sizing_z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_sizing_z.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_sort.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_tooltip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_tooltip.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/test_typed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/test_typed.py -------------------------------------------------------------------------------- /components/dash-table/tests/selenium/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/selenium/utils.py -------------------------------------------------------------------------------- /components/dash-table/tests/unit/format_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/unit/format_test.py -------------------------------------------------------------------------------- /components/dash-table/tests/visual/percy-storybook/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tests/visual/percy-storybook/fixtures.ts -------------------------------------------------------------------------------- /components/dash-table/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tsconfig.base.json -------------------------------------------------------------------------------- /components/dash-table/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tsconfig.json -------------------------------------------------------------------------------- /components/dash-table/tsconfig.lint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/tsconfig.lint.json -------------------------------------------------------------------------------- /components/dash-table/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/webpack.config.js -------------------------------------------------------------------------------- /components/dash-table/webpack.dev.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/webpack.dev.config.js -------------------------------------------------------------------------------- /components/dash-table/webpack.serve.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/webpack.serve.config.js -------------------------------------------------------------------------------- /components/dash-table/webpack.test.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/components/dash-table/webpack.test.config.js -------------------------------------------------------------------------------- /dash/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/__init__.py -------------------------------------------------------------------------------- /dash/_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/_callback.py -------------------------------------------------------------------------------- /dash/_callback_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/_callback_context.py -------------------------------------------------------------------------------- /dash/_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/_configs.py -------------------------------------------------------------------------------- /dash/_dash_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/_dash_renderer.py -------------------------------------------------------------------------------- /dash/_get_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/_get_app.py -------------------------------------------------------------------------------- /dash/_get_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/_get_paths.py -------------------------------------------------------------------------------- /dash/_grouping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/_grouping.py -------------------------------------------------------------------------------- /dash/_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/_hooks.py -------------------------------------------------------------------------------- /dash/_jupyter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/_jupyter.py -------------------------------------------------------------------------------- /dash/_no_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/_no_update.py -------------------------------------------------------------------------------- /dash/_obsolete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/_obsolete.py -------------------------------------------------------------------------------- /dash/_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/_pages.py -------------------------------------------------------------------------------- /dash/_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/_patch.py -------------------------------------------------------------------------------- /dash/_plotly_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/_plotly_cli.py -------------------------------------------------------------------------------- /dash/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/_utils.py -------------------------------------------------------------------------------- /dash/_validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/_validate.py -------------------------------------------------------------------------------- /dash/_watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/_watch.py -------------------------------------------------------------------------------- /dash/background_callback/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/background_callback/__init__.py -------------------------------------------------------------------------------- /dash/background_callback/_proxy_set_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/background_callback/_proxy_set_props.py -------------------------------------------------------------------------------- /dash/background_callback/managers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/background_callback/managers/__init__.py -------------------------------------------------------------------------------- /dash/background_callback/managers/celery_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/background_callback/managers/celery_manager.py -------------------------------------------------------------------------------- /dash/background_callback/managers/diskcache_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/background_callback/managers/diskcache_manager.py -------------------------------------------------------------------------------- /dash/dash-renderer/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/.eslintignore -------------------------------------------------------------------------------- /dash/dash-renderer/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/.eslintrc.js -------------------------------------------------------------------------------- /dash/dash-renderer/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/.npmignore -------------------------------------------------------------------------------- /dash/dash-renderer/@Types/modules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/@Types/modules.d.ts -------------------------------------------------------------------------------- /dash/dash-renderer/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/MANIFEST.in -------------------------------------------------------------------------------- /dash/dash-renderer/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/babel.config.js -------------------------------------------------------------------------------- /dash/dash-renderer/config/eslint/eslintrc-node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/config/eslint/eslintrc-node.json -------------------------------------------------------------------------------- /dash/dash-renderer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/index.html -------------------------------------------------------------------------------- /dash/dash-renderer/init.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/init.template -------------------------------------------------------------------------------- /dash/dash-renderer/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/karma.conf.js -------------------------------------------------------------------------------- /dash/dash-renderer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/package-lock.json -------------------------------------------------------------------------------- /dash/dash-renderer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/package.json -------------------------------------------------------------------------------- /dash/dash-renderer/renderer-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/renderer-test.sh -------------------------------------------------------------------------------- /dash/dash-renderer/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/setup.py -------------------------------------------------------------------------------- /dash/dash-renderer/src/APIController.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/APIController.react.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/AccessDenied.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/AccessDenied.react.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/AppContainer.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/AppContainer.react.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/AppProvider.react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/AppProvider.react.tsx -------------------------------------------------------------------------------- /dash/dash-renderer/src/DashRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/DashRenderer.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/StoreObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/StoreObserver.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/actions/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/actions/api.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/actions/callbacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/actions/callbacks.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/actions/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/actions/constants.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/actions/dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/actions/dependencies.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/actions/dependencies_ts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/actions/dependencies_ts.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/actions/index.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/actions/isAppReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/actions/isAppReady.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/actions/isLoading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/actions/isLoading.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/actions/loading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/actions/loading.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/actions/patch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/actions/patch.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/actions/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/actions/paths.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/actions/patternMatching.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/actions/patternMatching.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/actions/requestDependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/actions/requestDependencies.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/actions/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/actions/utils.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/checkPropTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/checkPropTypes.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/components/core/Loading.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/components/core/Loading.react.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/components/core/Reloader.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/components/core/Reloader.react.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/components/core/Toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/components/core/Toolbar.css -------------------------------------------------------------------------------- /dash/dash-renderer/src/components/core/Toolbar.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/components/core/Toolbar.react.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/components/error/Percy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/components/error/Percy.css -------------------------------------------------------------------------------- /dash/dash-renderer/src/components/error/icons/BellIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/components/error/icons/BellIcon.svg -------------------------------------------------------------------------------- /dash/dash-renderer/src/components/error/icons/CheckIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/components/error/icons/CheckIcon.svg -------------------------------------------------------------------------------- /dash/dash-renderer/src/components/error/icons/ClockIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/components/error/icons/ClockIcon.svg -------------------------------------------------------------------------------- /dash/dash-renderer/src/components/error/icons/CollapseIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/components/error/icons/CollapseIcon.svg -------------------------------------------------------------------------------- /dash/dash-renderer/src/components/error/icons/DebugIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/components/error/icons/DebugIcon.svg -------------------------------------------------------------------------------- /dash/dash-renderer/src/components/error/icons/ErrorIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/components/error/icons/ErrorIcon.svg -------------------------------------------------------------------------------- /dash/dash-renderer/src/components/error/icons/Expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/components/error/icons/Expand.svg -------------------------------------------------------------------------------- /dash/dash-renderer/src/components/error/icons/GraphIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/components/error/icons/GraphIcon.svg -------------------------------------------------------------------------------- /dash/dash-renderer/src/components/error/icons/LeftArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/components/error/icons/LeftArrow.svg -------------------------------------------------------------------------------- /dash/dash-renderer/src/components/error/icons/OffIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/components/error/icons/OffIcon.svg -------------------------------------------------------------------------------- /dash/dash-renderer/src/components/error/icons/ReloadIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/components/error/icons/ReloadIcon.svg -------------------------------------------------------------------------------- /dash/dash-renderer/src/components/error/icons/RightArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/components/error/icons/RightArrow.svg -------------------------------------------------------------------------------- /dash/dash-renderer/src/components/error/menu/DebugMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/components/error/menu/DebugMenu.css -------------------------------------------------------------------------------- /dash/dash-renderer/src/components/error/menu/DebugMenu.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/components/error/menu/DebugMenu.react.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/components/error/menu/DevtoolContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/components/error/menu/DevtoolContext.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/components/error/menu/PlotlyCloud.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/components/error/menu/PlotlyCloud.css -------------------------------------------------------------------------------- /dash/dash-renderer/src/components/error/menu/PlotlyCloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/components/error/menu/PlotlyCloud.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/components/error/menu/VersionInfo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/components/error/menu/VersionInfo.css -------------------------------------------------------------------------------- /dash/dash-renderer/src/components/error/werkzeugcss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/components/error/werkzeugcss.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/config.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/constants/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/constants/constants.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/dashApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/dashApi.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/exceptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/exceptions.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/index.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/isSimpleComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/isSimpleComponent.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/observers/documentTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/observers/documentTitle.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/observers/executedCallbacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/observers/executedCallbacks.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/observers/executingCallbacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/observers/executingCallbacks.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/observers/isLoading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/observers/isLoading.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/observers/prioritizedCallbacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/observers/prioritizedCallbacks.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/observers/requestedCallbacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/observers/requestedCallbacks.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/observers/storedCallbacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/observers/storedCallbacks.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/persistence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/persistence.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/reducers/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/reducers/api.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/reducers/appLifecycle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/reducers/appLifecycle.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/reducers/callbackJobs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/reducers/callbackJobs.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/reducers/callbacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/reducers/callbacks.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/reducers/changed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/reducers/changed.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/reducers/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/reducers/config.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/reducers/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/reducers/constants.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/reducers/dependencyGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/reducers/dependencyGraph.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/reducers/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/reducers/error.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/reducers/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/reducers/history.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/reducers/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/reducers/hooks.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/reducers/isLoading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/reducers/isLoading.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/reducers/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/reducers/layout.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/reducers/loading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/reducers/loading.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/reducers/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/reducers/paths.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/reducers/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/reducers/profile.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/reducers/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/reducers/reducer.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/registry.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/store.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/styles/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/styles/styles.js -------------------------------------------------------------------------------- /dash/dash-renderer/src/types/callbacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/types/callbacks.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/types/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/types/component.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/utils/callbacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/utils/callbacks.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/utils/clientsideFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/utils/clientsideFunctions.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/utils/libraries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/utils/libraries.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/utils/stores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/utils/stores.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/utils/wait.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/utils/wait.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/wrapper/CheckedComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/wrapper/CheckedComponent.tsx -------------------------------------------------------------------------------- /dash/dash-renderer/src/wrapper/DashContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/wrapper/DashContext.tsx -------------------------------------------------------------------------------- /dash/dash-renderer/src/wrapper/DashWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/wrapper/DashWrapper.tsx -------------------------------------------------------------------------------- /dash/dash-renderer/src/wrapper/ExternalWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/wrapper/ExternalWrapper.tsx -------------------------------------------------------------------------------- /dash/dash-renderer/src/wrapper/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/wrapper/selectors.ts -------------------------------------------------------------------------------- /dash/dash-renderer/src/wrapper/wrapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/src/wrapper/wrapping.ts -------------------------------------------------------------------------------- /dash/dash-renderer/tests/isAppReady.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/tests/isAppReady.test.js -------------------------------------------------------------------------------- /dash/dash-renderer/tests/persistence.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/tests/persistence.test.js -------------------------------------------------------------------------------- /dash/dash-renderer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/tsconfig.json -------------------------------------------------------------------------------- /dash/dash-renderer/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/tslint.json -------------------------------------------------------------------------------- /dash/dash-renderer/webpack.base.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/webpack.base.config.js -------------------------------------------------------------------------------- /dash/dash-renderer/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/webpack.config.js -------------------------------------------------------------------------------- /dash/dash-renderer/webpack.test.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash-renderer/webpack.test.config.js -------------------------------------------------------------------------------- /dash/dash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dash.py -------------------------------------------------------------------------------- /dash/dash_table/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dash/dcc/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dash/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/dependencies.py -------------------------------------------------------------------------------- /dash/development/__init__.py: -------------------------------------------------------------------------------- 1 | from . import base_component # noqa:F401 2 | -------------------------------------------------------------------------------- /dash/development/_all_keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/development/_all_keywords.py -------------------------------------------------------------------------------- /dash/development/_collect_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/development/_collect_nodes.py -------------------------------------------------------------------------------- /dash/development/_generate_prop_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/development/_generate_prop_types.py -------------------------------------------------------------------------------- /dash/development/_jl_components_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/development/_jl_components_generation.py -------------------------------------------------------------------------------- /dash/development/_py_components_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/development/_py_components_generation.py -------------------------------------------------------------------------------- /dash/development/_py_prop_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/development/_py_prop_typing.py -------------------------------------------------------------------------------- /dash/development/_r_components_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/development/_r_components_generation.py -------------------------------------------------------------------------------- /dash/development/base_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/development/base_component.py -------------------------------------------------------------------------------- /dash/development/build_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/development/build_process.py -------------------------------------------------------------------------------- /dash/development/component_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/development/component_generator.py -------------------------------------------------------------------------------- /dash/development/update_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/development/update_components.py -------------------------------------------------------------------------------- /dash/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/exceptions.py -------------------------------------------------------------------------------- /dash/extract-meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/extract-meta.js -------------------------------------------------------------------------------- /dash/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/favicon.ico -------------------------------------------------------------------------------- /dash/fingerprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/fingerprint.py -------------------------------------------------------------------------------- /dash/html/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dash/labextension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/labextension/package.json -------------------------------------------------------------------------------- /dash/nbextension/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dash/nbextension/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dash/nbextension/dash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/nbextension/dash.json -------------------------------------------------------------------------------- /dash/nbextension/description.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/nbextension/description.yaml -------------------------------------------------------------------------------- /dash/nbextension/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/nbextension/main.js -------------------------------------------------------------------------------- /dash/py.typed: -------------------------------------------------------------------------------- 1 | partial 2 | -------------------------------------------------------------------------------- /dash/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/renovate.json -------------------------------------------------------------------------------- /dash/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/resources.py -------------------------------------------------------------------------------- /dash/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/testing/__init__.py -------------------------------------------------------------------------------- /dash/testing/application_runners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/testing/application_runners.py -------------------------------------------------------------------------------- /dash/testing/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/testing/browser.py -------------------------------------------------------------------------------- /dash/testing/composite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/testing/composite.py -------------------------------------------------------------------------------- /dash/testing/consts.py: -------------------------------------------------------------------------------- 1 | SELENIUM_GRID_DEFAULT = "http://localhost:4444/wd/hub" 2 | -------------------------------------------------------------------------------- /dash/testing/dash_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/testing/dash_page.py -------------------------------------------------------------------------------- /dash/testing/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/testing/errors.py -------------------------------------------------------------------------------- /dash/testing/newhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/testing/newhooks.py -------------------------------------------------------------------------------- /dash/testing/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/testing/plugin.py -------------------------------------------------------------------------------- /dash/testing/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/testing/wait.py -------------------------------------------------------------------------------- /dash/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/dash/types.py -------------------------------------------------------------------------------- /dash/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "3.3.0" 2 | -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/package.json -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements/ag-grid.txt: -------------------------------------------------------------------------------- 1 | dash-ag-grid 2 | -------------------------------------------------------------------------------- /requirements/async.txt: -------------------------------------------------------------------------------- 1 | flask[async] 2 | -------------------------------------------------------------------------------- /requirements/celery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/requirements/celery.txt -------------------------------------------------------------------------------- /requirements/ci.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/requirements/ci.txt -------------------------------------------------------------------------------- /requirements/cloud.txt: -------------------------------------------------------------------------------- 1 | plotly-cloud 2 | -------------------------------------------------------------------------------- /requirements/compress.txt: -------------------------------------------------------------------------------- 1 | flask-compress 2 | -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/requirements/dev.txt -------------------------------------------------------------------------------- /requirements/diskcache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/requirements/diskcache.txt -------------------------------------------------------------------------------- /requirements/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/requirements/install.txt -------------------------------------------------------------------------------- /requirements/testing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/requirements/testing.txt -------------------------------------------------------------------------------- /rerun_failed_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/rerun_failed_tests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/assets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/assets/grouping_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/assets/grouping_app.py -------------------------------------------------------------------------------- /tests/assets/simple_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/assets/simple_app.py -------------------------------------------------------------------------------- /tests/assets/todo_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/assets/todo_app.py -------------------------------------------------------------------------------- /tests/async_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/async_tests/app1_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/async_tests/app1_async.py -------------------------------------------------------------------------------- /tests/async_tests/app_arbitrary_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/async_tests/app_arbitrary_async.py -------------------------------------------------------------------------------- /tests/async_tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/async_tests/conftest.py -------------------------------------------------------------------------------- /tests/async_tests/test_async_background_callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/async_tests/test_async_background_callbacks.py -------------------------------------------------------------------------------- /tests/async_tests/test_async_callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/async_tests/test_async_callbacks.py -------------------------------------------------------------------------------- /tests/async_tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/async_tests/utils.py -------------------------------------------------------------------------------- /tests/background_callback/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/background_callback/app1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/app1.py -------------------------------------------------------------------------------- /tests/background_callback/app2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/app2.py -------------------------------------------------------------------------------- /tests/background_callback/app3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/app3.py -------------------------------------------------------------------------------- /tests/background_callback/app4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/app4.py -------------------------------------------------------------------------------- /tests/background_callback/app5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/app5.py -------------------------------------------------------------------------------- /tests/background_callback/app6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/app6.py -------------------------------------------------------------------------------- /tests/background_callback/app7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/app7.py -------------------------------------------------------------------------------- /tests/background_callback/app_arbitrary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/app_arbitrary.py -------------------------------------------------------------------------------- /tests/background_callback/app_bg_on_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/app_bg_on_error.py -------------------------------------------------------------------------------- /tests/background_callback/app_callback_ctx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/app_callback_ctx.py -------------------------------------------------------------------------------- /tests/background_callback/app_ctx_cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/app_ctx_cookies.py -------------------------------------------------------------------------------- /tests/background_callback/app_diff_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/app_diff_outputs.py -------------------------------------------------------------------------------- /tests/background_callback/app_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/app_error.py -------------------------------------------------------------------------------- /tests/background_callback/app_page_cancel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/app_page_cancel.py -------------------------------------------------------------------------------- /tests/background_callback/app_pattern_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/app_pattern_matching.py -------------------------------------------------------------------------------- /tests/background_callback/app_progress_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/app_progress_delete.py -------------------------------------------------------------------------------- /tests/background_callback/app_short_interval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/app_short_interval.py -------------------------------------------------------------------------------- /tests/background_callback/app_side_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/app_side_update.py -------------------------------------------------------------------------------- /tests/background_callback/app_unordered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/app_unordered.py -------------------------------------------------------------------------------- /tests/background_callback/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/conftest.py -------------------------------------------------------------------------------- /tests/background_callback/test_basic_long_callback001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/test_basic_long_callback001.py -------------------------------------------------------------------------------- /tests/background_callback/test_basic_long_callback002.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/test_basic_long_callback002.py -------------------------------------------------------------------------------- /tests/background_callback/test_basic_long_callback003.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/test_basic_long_callback003.py -------------------------------------------------------------------------------- /tests/background_callback/test_basic_long_callback004.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/test_basic_long_callback004.py -------------------------------------------------------------------------------- /tests/background_callback/test_basic_long_callback005.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/test_basic_long_callback005.py -------------------------------------------------------------------------------- /tests/background_callback/test_basic_long_callback006.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/test_basic_long_callback006.py -------------------------------------------------------------------------------- /tests/background_callback/test_basic_long_callback007.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/test_basic_long_callback007.py -------------------------------------------------------------------------------- /tests/background_callback/test_basic_long_callback008.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/test_basic_long_callback008.py -------------------------------------------------------------------------------- /tests/background_callback/test_basic_long_callback009.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/test_basic_long_callback009.py -------------------------------------------------------------------------------- /tests/background_callback/test_basic_long_callback010.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/test_basic_long_callback010.py -------------------------------------------------------------------------------- /tests/background_callback/test_basic_long_callback011.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/test_basic_long_callback011.py -------------------------------------------------------------------------------- /tests/background_callback/test_basic_long_callback012.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/test_basic_long_callback012.py -------------------------------------------------------------------------------- /tests/background_callback/test_basic_long_callback013.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/test_basic_long_callback013.py -------------------------------------------------------------------------------- /tests/background_callback/test_basic_long_callback014.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/test_basic_long_callback014.py -------------------------------------------------------------------------------- /tests/background_callback/test_basic_long_callback015.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/test_basic_long_callback015.py -------------------------------------------------------------------------------- /tests/background_callback/test_basic_long_callback016.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/test_basic_long_callback016.py -------------------------------------------------------------------------------- /tests/background_callback/test_basic_long_callback017.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/test_basic_long_callback017.py -------------------------------------------------------------------------------- /tests/background_callback/test_basic_long_callback018.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/test_basic_long_callback018.py -------------------------------------------------------------------------------- /tests/background_callback/test_ctx_cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/test_ctx_cookies.py -------------------------------------------------------------------------------- /tests/background_callback/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/background_callback/utils.py -------------------------------------------------------------------------------- /tests/compliance/test_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/compliance/test_typing.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/callbacks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/callbacks/state_path.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/callbacks/state_path.json -------------------------------------------------------------------------------- /tests/integration/callbacks/test_api_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/callbacks/test_api_callback.py -------------------------------------------------------------------------------- /tests/integration/callbacks/test_arbitrary_callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/callbacks/test_arbitrary_callbacks.py -------------------------------------------------------------------------------- /tests/integration/callbacks/test_basic_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/callbacks/test_basic_callback.py -------------------------------------------------------------------------------- /tests/integration/callbacks/test_callback_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/callbacks/test_callback_context.py -------------------------------------------------------------------------------- /tests/integration/callbacks/test_callback_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/callbacks/test_callback_error.py -------------------------------------------------------------------------------- /tests/integration/callbacks/test_callback_optional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/callbacks/test_callback_optional.py -------------------------------------------------------------------------------- /tests/integration/callbacks/test_dynamic_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/callbacks/test_dynamic_callback.py -------------------------------------------------------------------------------- /tests/integration/callbacks/test_global_dash_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/callbacks/test_global_dash_callback.py -------------------------------------------------------------------------------- /tests/integration/callbacks/test_layout_paths_with_callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/callbacks/test_layout_paths_with_callbacks.py -------------------------------------------------------------------------------- /tests/integration/callbacks/test_malformed_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/callbacks/test_malformed_request.py -------------------------------------------------------------------------------- /tests/integration/callbacks/test_missing_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/callbacks/test_missing_inputs.py -------------------------------------------------------------------------------- /tests/integration/callbacks/test_missing_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/callbacks/test_missing_outputs.py -------------------------------------------------------------------------------- /tests/integration/callbacks/test_multiple_callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/callbacks/test_multiple_callbacks.py -------------------------------------------------------------------------------- /tests/integration/callbacks/test_prevent_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/callbacks/test_prevent_initial.py -------------------------------------------------------------------------------- /tests/integration/callbacks/test_prevent_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/callbacks/test_prevent_update.py -------------------------------------------------------------------------------- /tests/integration/callbacks/test_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/callbacks/test_validation.py -------------------------------------------------------------------------------- /tests/integration/callbacks/test_wildcards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/callbacks/test_wildcards.py -------------------------------------------------------------------------------- /tests/integration/clientside/assets/clientside.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/clientside/assets/clientside.js -------------------------------------------------------------------------------- /tests/integration/clientside/assets/clientside.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/clientside/assets/clientside.mjs -------------------------------------------------------------------------------- /tests/integration/clientside/assets/clientsideModule.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/clientside/assets/clientsideModule.mjs -------------------------------------------------------------------------------- /tests/integration/clientside/assets/ramda-0.25.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/clientside/assets/ramda-0.25.0.min.js -------------------------------------------------------------------------------- /tests/integration/clientside/test_clientside.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/clientside/test_clientside.py -------------------------------------------------------------------------------- /tests/integration/clientside/test_clientside_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/clientside/test_clientside_functions.py -------------------------------------------------------------------------------- /tests/integration/clientside/test_clientside_outputs_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/clientside/test_clientside_outputs_list.py -------------------------------------------------------------------------------- /tests/integration/clientside/test_clientside_restarts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/clientside/test_clientside_restarts.py -------------------------------------------------------------------------------- /tests/integration/dash/dash_import_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/dash/dash_import_test.py -------------------------------------------------------------------------------- /tests/integration/dash/org.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/dash/org.py -------------------------------------------------------------------------------- /tests/integration/dash_assets/assets/load_first.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/dash_assets/assets/load_first.js -------------------------------------------------------------------------------- /tests/integration/dash_assets/assets/load_ignored.js: -------------------------------------------------------------------------------- 1 | window.tested = 'IGNORED'; // Break the chain. -------------------------------------------------------------------------------- /tests/integration/dash_assets/assets/nested_css/nested.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/dash_assets/assets/nested_css/nested.css -------------------------------------------------------------------------------- /tests/integration/dash_assets/assets/nested_js/load_after.js: -------------------------------------------------------------------------------- 1 | window.tested.push('load_after'); -------------------------------------------------------------------------------- /tests/integration/dash_assets/assets/nested_js/load_after1.js: -------------------------------------------------------------------------------- 1 | window.tested.push('load_after1'); 2 | -------------------------------------------------------------------------------- /tests/integration/dash_assets/assets/nested_js/load_after10.js: -------------------------------------------------------------------------------- 1 | window.tested.push('load_after10'); -------------------------------------------------------------------------------- /tests/integration/dash_assets/assets/nested_js/load_after11.js: -------------------------------------------------------------------------------- 1 | window.tested.push('load_after11'); -------------------------------------------------------------------------------- /tests/integration/dash_assets/assets/nested_js/load_after2.js: -------------------------------------------------------------------------------- 1 | window.tested.push('load_after2'); -------------------------------------------------------------------------------- /tests/integration/dash_assets/assets/nested_js/load_after3.js: -------------------------------------------------------------------------------- 1 | window.tested.push('load_after3'); -------------------------------------------------------------------------------- /tests/integration/dash_assets/assets/nested_js/load_after4.js: -------------------------------------------------------------------------------- 1 | window.tested.push('load_after4'); -------------------------------------------------------------------------------- /tests/integration/dash_assets/assets/nested_js/load_last.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/dash_assets/assets/nested_js/load_last.js -------------------------------------------------------------------------------- /tests/integration/dash_assets/assets/reset.css: -------------------------------------------------------------------------------- 1 | body {margin: 0;} 2 | button {height: 18px} 3 | -------------------------------------------------------------------------------- /tests/integration/dash_assets/test_assets_path_ignore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/dash_assets/test_assets_path_ignore.py -------------------------------------------------------------------------------- /tests/integration/dash_assets/test_dash_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/dash_assets/test_dash_assets.py -------------------------------------------------------------------------------- /tests/integration/devtools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/devtools/hr_assets/hot_reload.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/devtools/hr_assets/hot_reload.css -------------------------------------------------------------------------------- /tests/integration/devtools/hr_assets/hot_reload.js: -------------------------------------------------------------------------------- 1 | window.cheese = "roquefort"; 2 | -------------------------------------------------------------------------------- /tests/integration/devtools/test_callback_timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/devtools/test_callback_timing.py -------------------------------------------------------------------------------- /tests/integration/devtools/test_callback_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/devtools/test_callback_validation.py -------------------------------------------------------------------------------- /tests/integration/devtools/test_devtools_error_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/devtools/test_devtools_error_handling.py -------------------------------------------------------------------------------- /tests/integration/devtools/test_devtools_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/devtools/test_devtools_ui.py -------------------------------------------------------------------------------- /tests/integration/devtools/test_hot_reload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/devtools/test_hot_reload.py -------------------------------------------------------------------------------- /tests/integration/devtools/test_props_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/devtools/test_props_check.py -------------------------------------------------------------------------------- /tests/integration/multi_page/assets/app.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/multi_page/assets/app.jpeg -------------------------------------------------------------------------------- /tests/integration/multi_page/assets/birds.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/multi_page/assets/birds.jpeg -------------------------------------------------------------------------------- /tests/integration/multi_page/assets/home.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/multi_page/assets/home.jpeg -------------------------------------------------------------------------------- /tests/integration/multi_page/assets/logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/multi_page/assets/logo.jpeg -------------------------------------------------------------------------------- /tests/integration/multi_page/pages/.no_import.py: -------------------------------------------------------------------------------- 1 | raise Exception("files starting with . should not be imported") 2 | -------------------------------------------------------------------------------- /tests/integration/multi_page/pages/.no_import/no_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/multi_page/pages/.no_import/no_import.py -------------------------------------------------------------------------------- /tests/integration/multi_page/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/multi_page/pages/_no_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/multi_page/pages/_no_import.py -------------------------------------------------------------------------------- /tests/integration/multi_page/pages/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/multi_page/pages/defaults.py -------------------------------------------------------------------------------- /tests/integration/multi_page/pages/metas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/multi_page/pages/metas.py -------------------------------------------------------------------------------- /tests/integration/multi_page/pages/not_found_404.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/multi_page/pages/not_found_404.py -------------------------------------------------------------------------------- /tests/integration/multi_page/pages/page1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/multi_page/pages/page1.py -------------------------------------------------------------------------------- /tests/integration/multi_page/pages/page2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/multi_page/pages/page2.py -------------------------------------------------------------------------------- /tests/integration/multi_page/pages/path_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/multi_page/pages/path_variables.py -------------------------------------------------------------------------------- /tests/integration/multi_page/pages/query_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/multi_page/pages/query_string.py -------------------------------------------------------------------------------- /tests/integration/multi_page/pages/redirect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/multi_page/pages/redirect.py -------------------------------------------------------------------------------- /tests/integration/multi_page/pages_error/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/multi_page/pages_error/no_layout_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/multi_page/pages_error/no_layout_page.py -------------------------------------------------------------------------------- /tests/integration/multi_page/test_pages_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/multi_page/test_pages_layout.py -------------------------------------------------------------------------------- /tests/integration/multi_page/test_pages_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/multi_page/test_pages_order.py -------------------------------------------------------------------------------- /tests/integration/multi_page/test_pages_relative_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/multi_page/test_pages_relative_path.py -------------------------------------------------------------------------------- /tests/integration/renderer/initial_state_dash_app_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/renderer/initial_state_dash_app_content.html -------------------------------------------------------------------------------- /tests/integration/renderer/test_add_receive_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/renderer/test_add_receive_props.py -------------------------------------------------------------------------------- /tests/integration/renderer/test_children_reorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/renderer/test_children_reorder.py -------------------------------------------------------------------------------- /tests/integration/renderer/test_component_as_prop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/renderer/test_component_as_prop.py -------------------------------------------------------------------------------- /tests/integration/renderer/test_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/renderer/test_dependencies.py -------------------------------------------------------------------------------- /tests/integration/renderer/test_descendant_listening.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/renderer/test_descendant_listening.py -------------------------------------------------------------------------------- /tests/integration/renderer/test_due_diligence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/renderer/test_due_diligence.py -------------------------------------------------------------------------------- /tests/integration/renderer/test_external_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/renderer/test_external_component.py -------------------------------------------------------------------------------- /tests/integration/renderer/test_iframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/renderer/test_iframe.py -------------------------------------------------------------------------------- /tests/integration/renderer/test_loading_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/renderer/test_loading_states.py -------------------------------------------------------------------------------- /tests/integration/renderer/test_multi_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/renderer/test_multi_output.py -------------------------------------------------------------------------------- /tests/integration/renderer/test_persistence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/renderer/test_persistence.py -------------------------------------------------------------------------------- /tests/integration/renderer/test_race_conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/renderer/test_race_conditions.py -------------------------------------------------------------------------------- /tests/integration/renderer/test_redraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/renderer/test_redraw.py -------------------------------------------------------------------------------- /tests/integration/renderer/test_render_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/renderer/test_render_type.py -------------------------------------------------------------------------------- /tests/integration/renderer/test_request_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/renderer/test_request_hooks.py -------------------------------------------------------------------------------- /tests/integration/renderer/test_state_and_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/renderer/test_state_and_input.py -------------------------------------------------------------------------------- /tests/integration/security/test_injection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/security/test_injection.py -------------------------------------------------------------------------------- /tests/integration/security/test_xss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/security/test_xss.py -------------------------------------------------------------------------------- /tests/integration/test_clientside_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/test_clientside_patch.py -------------------------------------------------------------------------------- /tests/integration/test_csp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/test_csp.py -------------------------------------------------------------------------------- /tests/integration/test_duo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/test_duo.py -------------------------------------------------------------------------------- /tests/integration/test_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/test_generation.py -------------------------------------------------------------------------------- /tests/integration/test_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/test_hooks.py -------------------------------------------------------------------------------- /tests/integration/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/test_integration.py -------------------------------------------------------------------------------- /tests/integration/test_legacy_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/test_legacy_components.py -------------------------------------------------------------------------------- /tests/integration/test_pages_redirect_home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/test_pages_redirect_home.py -------------------------------------------------------------------------------- /tests/integration/test_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/test_patch.py -------------------------------------------------------------------------------- /tests/integration/test_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/test_scripts.py -------------------------------------------------------------------------------- /tests/integration/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/integration/utils.py -------------------------------------------------------------------------------- /tests/unit/development/TestReactComponent.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/development/TestReactComponent.react.js -------------------------------------------------------------------------------- /tests/unit/development/TestReactComponentRequired.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/development/TestReactComponentRequired.react.js -------------------------------------------------------------------------------- /tests/unit/development/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/development/__init__.py -------------------------------------------------------------------------------- /tests/unit/development/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/development/conftest.py -------------------------------------------------------------------------------- /tests/unit/development/flow_metadata_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/development/flow_metadata_test.json -------------------------------------------------------------------------------- /tests/unit/development/metadata_required_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/development/metadata_required_test.json -------------------------------------------------------------------------------- /tests/unit/development/metadata_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/development/metadata_test.json -------------------------------------------------------------------------------- /tests/unit/development/metadata_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/development/metadata_test.py -------------------------------------------------------------------------------- /tests/unit/development/test_base_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/development/test_base_component.py -------------------------------------------------------------------------------- /tests/unit/development/test_collect_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/development/test_collect_nodes.py -------------------------------------------------------------------------------- /tests/unit/development/test_flow_metadata_conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/development/test_flow_metadata_conversions.py -------------------------------------------------------------------------------- /tests/unit/development/test_generate_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/development/test_generate_class.py -------------------------------------------------------------------------------- /tests/unit/development/test_metadata_conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/development/test_metadata_conversions.py -------------------------------------------------------------------------------- /tests/unit/development/test_r_component_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/development/test_r_component_gen.py -------------------------------------------------------------------------------- /tests/unit/library/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/library/fixtures.py -------------------------------------------------------------------------------- /tests/unit/library/test_async_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/library/test_async_resources.py -------------------------------------------------------------------------------- /tests/unit/library/test_background_callback_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/library/test_background_callback_validation.py -------------------------------------------------------------------------------- /tests/unit/library/test_grouped_callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/library/test_grouped_callbacks.py -------------------------------------------------------------------------------- /tests/unit/library/test_grouping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/library/test_grouping.py -------------------------------------------------------------------------------- /tests/unit/library/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/library/test_utils.py -------------------------------------------------------------------------------- /tests/unit/library/test_validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/library/test_validate.py -------------------------------------------------------------------------------- /tests/unit/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/pages/custom_pages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/pages/custom_pages/__init__.py -------------------------------------------------------------------------------- /tests/unit/pages/custom_pages/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/pages/custom_pages/page.py -------------------------------------------------------------------------------- /tests/unit/pages/sub_dir/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/pages/sub_dir/custom_pages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/pages/sub_dir/custom_pages/__init__.py -------------------------------------------------------------------------------- /tests/unit/pages/sub_dir/custom_pages/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/pages/sub_dir/custom_pages/page.py -------------------------------------------------------------------------------- /tests/unit/pages/test_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/pages/test_pages.py -------------------------------------------------------------------------------- /tests/unit/pages/test_pages_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/pages/test_pages_config.py -------------------------------------------------------------------------------- /tests/unit/test_app_runners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/test_app_runners.py -------------------------------------------------------------------------------- /tests/unit/test_browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/test_browser.py -------------------------------------------------------------------------------- /tests/unit/test_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/test_configs.py -------------------------------------------------------------------------------- /tests/unit/test_fingerprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/test_fingerprint.py -------------------------------------------------------------------------------- /tests/unit/test_health_endpoint_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/test_health_endpoint_unit.py -------------------------------------------------------------------------------- /tests/unit/test_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/test_patch.py -------------------------------------------------------------------------------- /tests/unit/test_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/test_resources.py -------------------------------------------------------------------------------- /tests/unit/test_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/unit/test_testing.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash/HEAD/tests/utils.py --------------------------------------------------------------------------------