@trycourier/react-designer 0.0.0-canary-20251104171315 → 0.0.0-canary-20251105135516

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,5 +2,12 @@ import type { ElementalNode } from "../../types/elemental.types";
2
2
  /**
3
3
  * Extracts all variable names used in the content in the format {{variableName}}
4
4
  * Supports nested dot notation like {{user.profile.name}}
5
+ *
6
+ * Extracts variables from:
7
+ * - Text content (content properties)
8
+ * - Element attributes (href, src, alt_text, etc.)
9
+ * - Channel raw properties (subject, title, text)
10
+ * - Conditional logic (if, loop properties)
11
+ * - Localized content and attributes
5
12
  */
6
13
  export declare const extractVariablesFromContent: (elements?: ElementalNode[]) => string[];