In the latest version, the remote URL for the dash package isn't found:

This URL is specified in the external_url key here:
|
'external_url': ( |
|
'https://unpkg.com/dash-table@{}/dash_table/bundle.js' |
|
).format(__version__), |
Indeed, looking at the package that got uploaded, the dash_table folder is no longer there:

So, either dash_table/bundle.js needs to get put back or the external_url needs to get update to the new directory: https://unpkg.com/dash-table@3.1.4/lib/bundle.js
Now, it would be good if it was the former, so that we're standard across our libraries and across our dash-component-boilerplate project. That way, changes that we make to the boilerplate, like adding dev and prod versions of the bundle (done here: plotly/dash-component-boilerplate#8), can get easily incorporated into this project (related issue is #228)
cc @Marc-Andre-Rivet and @valentijnnieman
In the latest version, the remote URL for the dash package isn't found:

This URL is specified in the
external_urlkey here:dash-table/dash_table/__init__.py
Lines 35 to 37 in 10b8029
Indeed, looking at the package that got uploaded, the

dash_tablefolder is no longer there:So, either
dash_table/bundle.jsneeds to get put back or theexternal_urlneeds to get update to the new directory:https://unpkg.com/dash-table@3.1.4/lib/bundle.jsNow, it would be good if it was the former, so that we're standard across our libraries and across our dash-component-boilerplate project. That way, changes that we make to the boilerplate, like adding dev and prod versions of the bundle (done here: plotly/dash-component-boilerplate#8), can get easily incorporated into this project (related issue is #228)
cc @Marc-Andre-Rivet and @valentijnnieman