Skip to content

Commit d452d18

Browse files
committed
Fix cdn link and upgrade version
1 parent 58b0720 commit d452d18

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

dash_data_table/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44
from dash_data_table import components
55
from dash_data_table.components import *
66

7-
__version__ = "0.0.5"
7+
__version__ = "0.0.6"
88
_current_path = os.path.dirname(os.path.abspath(__file__))
99
METADATA_PATH = os.path.join(_current_path, "components", "metadata.json")
1010

1111
_js_dist = [
1212
{
1313
"relative_package_path": "components/dash_data_table.min.js",
14-
"external_url": f"https://unpkg.com/dash-data-table@{__version__}/dash_data_table/dash_data_table.min.js",
14+
"external_url": f"https://unpkg.com/dash-data-table@{__version__}/dash_data_table/components/dash_data_table.min.js",
1515
"namespace": "dash_data_table",
1616
},
1717
{
1818
"relative_package_path": "components/dash_data_table.min.js.map",
19-
"external_url": f"https://unpkg.com/dash-data-table@{__version__}/dash_data_table/dash_data_table.min.js.map",
19+
"external_url": f"https://unpkg.com/dash-data-table@{__version__}/dash_data_table/components/dash_data_table.min.js.map",
2020
"namespace": "dash_data_table",
2121
"dynamic": True,
2222
},

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-data-table",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"description": "Project Description",
55
"main": "build/index.js",
66
"scripts": {

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "dash_data_table"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
description = ""
55
authors = ["Jakob Jul Elben <elbenjakobjul@gmail.com>"]
66
include = ["README.md", "package.json", "dash_data_table/components/*"]

0 commit comments

Comments
 (0)