Files
dash-api/lib/python3.11/site-packages/dash/dash_table/__init__.py

98 lines
2.6 KiB
Python
Raw Normal View History

2025-09-07 22:09:54 +02:00
# type: ignore
import os as _os
import sys as _sys
import json
import dash as _dash
if not hasattr(_dash, "__plotly_dash") and not hasattr(_dash, "development"):
print(
"Dash was not successfully imported. "
"Make sure you don't have a file "
'named \n"dash.py" in your current directory.',
file=_sys.stderr,
)
_sys.exit(1)
from ._imports_ import * # noqa: E402, F401, F403
from ._imports_ import __all__ as _components
from . import Format # noqa: F401, E402
from . import FormatTemplate # noqa: F401, E402
__all__ = _components + ["Format", "FormatTemplate"]
_basepath = _os.path.dirname(__file__)
_filepath = _os.path.abspath(_os.path.join(_basepath, "package-info.json"))
with open(_filepath) as f:
package = json.load(f)
package_name = package["name"].replace(" ", "_").replace("-", "_")
__version__ = package["version"]
_current_path = _os.path.dirname(_os.path.abspath(__file__))
_this_module = _sys.modules[__name__]
async_resources = ["export", "table", "highlight"]
_js_dist = []
_js_dist.extend(
[
{
"relative_package_path": "dash_table/async-{}.js".format(async_resource),
"external_url": (
"https://unpkg.com/dash-table@{}" "/dash_table/async-{}.js"
).format(__version__, async_resource),
"namespace": "dash",
"async": True,
}
for async_resource in async_resources
]
)
_js_dist.extend(
[
{
"relative_package_path": "dash_table/async-{}.js.map".format(
async_resource
),
"external_url": (
"https://unpkg.com/dash-table@{}" "/dash_table/async-{}.js.map"
).format(__version__, async_resource),
"namespace": "dash",
"dynamic": True,
}
for async_resource in async_resources
]
)
_js_dist.extend(
[
{
"relative_package_path": "dash_table/bundle.js",
"external_url": (
"https://unpkg.com/dash-table@{}/dash_table/bundle.js"
).format(__version__),
"namespace": "dash",
},
{
"relative_package_path": "dash_table/bundle.js.map",
"external_url": (
"https://unpkg.com/dash-table@{}/dash_table/bundle.js.map"
).format(__version__),
"namespace": "dash",
"dynamic": True,
},
]
)
_css_dist = []
for _component in __all__:
setattr(locals()[_component], "_js_dist", _js_dist)
setattr(locals()[_component], "_css_dist", _css_dist)