From f62e1a3e88f4833aa584a8ce888fc2b57edb408e Mon Sep 17 00:00:00 2001 From: Pedro Paulo Vezza Campos Date: Sun, 25 Jan 2026 11:28:48 -0800 Subject: [PATCH] demo: add search panel demo folder with original content --- search-panel-demo/content.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 search-panel-demo/content.ts diff --git a/search-panel-demo/content.ts b/search-panel-demo/content.ts new file mode 100644 index 0000000..adc5b7f --- /dev/null +++ b/search-panel-demo/content.ts @@ -0,0 +1,14 @@ +// Search Panel Split Focus Demo +// This file demonstrates the (Left)/(Right) indicator feature + +function originalFunction() { + // This is the ORIGINAL implementation + return "ORIGINAL value from the LEFT side"; +} + +function helperFunction() { + // This helper is shared between both sides + return 42; +} + +const ORIGINAL_CONSTANT = "This only appears on the LEFT";