Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.flowx.ai/llms.txt

Use this file to discover all available pages before exploring further.

Available starting with FlowX.AI 5.8.0The Tooltip surfaces a small overlay of contextual help when the user hovers or focuses an icon. Use it for inline explanations that don’t justify a separate field or label.

Overview

A Tooltip is a thin contextual hint anchored to an icon. Use it to explain a non-obvious field label, surface a regulatory disclaimer next to a control, or expand on an acronym without taking screen space. The icon is configurable from the theme, the trigger is hover or focus, and the overlay positions itself automatically to stay on screen. The Tooltip is allowed inside any container component (Card, Container, Collection) as well as inside chat layouts and process screens.

Properties

PropertyTypeDescription
ContentString / expressionTooltip text. Bind to a process data key for dynamic content, or set a static literal.
VisibilityExpressionJavaScript expression that hides the Tooltip when truthy.
Theme overridesObjectOverride icon, colours, font, padding, border, max-width, max-rows, or shadow for this instance only.

Process data binding

To drive Tooltip content from process data, bind Content to a process data key:
${application.help.fieldExplanation}
For static content, set Content to a string literal — for example, "Your IBAN is shown as it appears on your bank statement.". See Dynamic and computed values for the full expression syntax.

Theme configuration

Defaults from the platform theme:
TokenDefaultDescription
paddingTop, paddingRight, paddingBottom, paddingLeft8px eachInner padding around the tooltip content.
fonttypography@Caption#regularBody typography.
colorcolor@neutrals#500Text colour.
backgroundColorcolor@shades#100Tooltip background.
borderColorcolor@neutrals#200Outline colour.
borderWidth1pxOutline thickness.
borderRadius8pxCorner radius.
maxWidth360pxMaximum overlay width before text wraps.
maxRows5Maximum text rows before truncation.
iconColorcolor@neutrals#500Trigger icon colour.
shadowshadow@sDrop shadow on the overlay.
tooltipIcon (icon)sys_TooltipInfo_16Trigger icon. Replace via the theme to use a different glyph.
To override globally, edit Theme → Components → Tooltip in the Designer.

UI Designer overview

Compose screens in the UI Designer.

Conditional styling

Apply dynamic styles to UI components.
Last modified on May 11, 2026