From 6b7c5297a5cb38a6cdd7a85670296359128ce9df Mon Sep 17 00:00:00 2001 From: Luke De Feo Date: Thu, 27 Apr 2023 07:28:41 -0700 Subject: [PATCH] Added Hidden attributes to node Summary: Type is any as it can be litterally anything, using json is a bit of pain as we have to do a lot of type checks to access anything Reviewed By: lblasa Differential Revision: D45079133 fbshipit-source-id: bcce93a1fce48d2779a648576f12df6392a0938e --- desktop/plugins/public/ui-debugger/types.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/desktop/plugins/public/ui-debugger/types.tsx b/desktop/plugins/public/ui-debugger/types.tsx index e0c742e70..019ae9e3e 100644 --- a/desktop/plugins/public/ui-debugger/types.tsx +++ b/desktop/plugins/public/ui-debugger/types.tsx @@ -102,6 +102,7 @@ export type UINode = { name: string; attributes: Record; inlineAttributes: Record; + hiddenAttributes?: any; children: Id[]; bounds: Bounds; tags: Tag[];