From 0f8775b7a417387e4af485c0ee46fd80c8f4f65e Mon Sep 17 00:00:00 2001 From: Tate Date: Wed, 18 Feb 2026 11:26:59 +1300 Subject: [PATCH] Add allowFullDataCascade to custom data panel options --- src/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.d.ts b/src/index.d.ts index 7dceab7..0e00b5f 100644 --- a/src/index.d.ts +++ b/src/index.d.ts @@ -17,6 +17,7 @@ export interface CreateCustomDataPanelOptions { data?: Record | unknown[]; config?: Cascade; position?: DOMRect; + allowFullDataCascade?: boolean; } type EventListenerParameters = Parameters;