Skip to main content

Callback-identity-preserving component wrappers for Plotly Dash

Project description

PyPI Python License Dash Ruff uv

dash-wrap

Callback-identity-preserving component wrappers for Plotly Dash. Wrap any Dash component in an html.Div (or other container) with arbitrary sibling components — captions, headings, toolbars — while keeping the wrapper a drop-in replacement for the inner component everywhere Dash inspects it.

  • Output(chart, "figure") updates the inner graph
  • chart.figure = fig writes through to the inner
  • isinstance(chart, dcc.Graph) is still True

Think of it as AIO, but callback-transparent.

Installation

pip install dash-wrap

Usage

from dash import Dash, Input, Output, dcc, html
from dash_wrap import wrap

app = Dash(__name__)

graph = dcc.Graph(id="revenue", figure=make_fig())
chart = wrap(graph, children=[graph, html.Small("Source: ABS")])

app.layout = html.Div([
    html.Button("Refresh", id="btn"),
    chart,
])


@app.callback(Output(chart, "figure"), Input("btn", "n_clicks"))
def update(n):
    return make_fig(n)

Semantic <figure> + <figcaption>

chart = wrap(
    graph,
    container=html.Figure,
    children=[graph, html.Figcaption("Revenue by year, 2018–2024")],
)

Stable named wrapper (subclassing)

from dash_wrap import ComponentWrapper

class ChartCard(ComponentWrapper[dcc.Graph]):
    def __init__(self, graph: dcc.Graph, title: str) -> None:
        super().__init__(
            graph,
            proxy_props=["figure", "config"],
            children=[html.H3(title), graph],
            className="card",
        )

Public API

Name Purpose
wrap Primary factory — auto proxy_props from registry, returns typed as inner.
ComponentWrapper html.Div-based wrapper class; subclass for stable named wrappers.
is_wrapped Check whether an object is a dash-wrap wrapper specifically.
register_proxy_defaults Register default proxy props for custom component types.
make_wrapper_class Generate Generic[T]-parameterised wrapper classes for non-Div containers.

How it works

Three small pieces:

  1. _set_random_id override returns the innermost component's id and doesn't set one on the wrapper — callbacks resolve to the inner, the outer div has no HTML id, no DuplicateIdError.
  2. __class__ property spoofs the inner's class for isinstance while type() still sees the container — Dash serialises the outer as its real type.
  3. __getattr__ / __setattr__ proxy selected props (figure, value, etc.) through to the inner.

See the full docs for recipes, nested-wrapper semantics, and caveats.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dash_wrap-0.0.2.tar.gz (52.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dash_wrap-0.0.2-py3-none-any.whl (14.6 kB view details)

Uploaded Python 3

File details

Details for the file dash_wrap-0.0.2.tar.gz.

File metadata

  • Download URL: dash_wrap-0.0.2.tar.gz
  • Upload date:
  • Size: 52.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for dash_wrap-0.0.2.tar.gz
Algorithm Hash digest
SHA256 92ec39f3bbb3f615e87b4a43ee9f4f7a8e5297d51e5618488623fc113d3b99e2
MD5 71e5a43851c34a97cecd8dad1c40b870
BLAKE2b-256 7efed001981c194dfa1d1e9bbc0733f892673177424b2752039168ccfb22adc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dash_wrap-0.0.2.tar.gz:

Publisher: publish.yml on saemeon/dash-wrap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dash_wrap-0.0.2-py3-none-any.whl.

File metadata

  • Download URL: dash_wrap-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 14.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for dash_wrap-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 41d19b7b1bbdaf0a49861c83de005b55af696d9d10b1078d5e143e511c86104d
MD5 60d310f1bb1ce138a742a793f56036bc
BLAKE2b-256 4e14bb0bb214d9dcfdef3cef4b9c4206b05f168688f7c40b793fa5d63dcdca5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dash_wrap-0.0.2-py3-none-any.whl:

Publisher: publish.yml on saemeon/dash-wrap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page