Skip to main content

Link

Create clickable links for web navigation or file downloads.

Properties

PropertyTypeDescription
Name (name)stringUnique identifier for the link component
Label (label)stringText displayed on the link
Link (href)stringWeb address to navigate to or file address to download when clicked
File Name (downloadName)stringName of the file to download
Hide Component (isHidden)booleanWhether to hide the link on the deployed page
Width (display)DisplayHow the link component occupies width

Name (name)

Sets the unique identifier for the link component. Please refer to the component naming rules

Label (label)

Sets the text displayed on the link component. (Supports Template Text)

Sets the target URL for the link.
Supports:

Web URLs for navigation

  • File URLs for download behavior
  • Can be set through workflow results, direct input.

File Name (downloadName)

Sets the filename for downloaded files.
Only applies when href points to a downloadable resource.
Can be set through workflow results, direct input.

Hide Component (isHidden)

Controls visibility of the component.
When set to true:

  • Hidden in deployed view
  • Visible with reduced opacity in edit mode

Width (display)

Sets how the component occupies width.
Selecting "Block" enables full-width usage.
Selecting "Auto" adjusts width to fit the label content.

States

PropertyTypeDescription
labelstringText displayed on the link
hrefstringWeb address to navigate to or file address to download when clicked
downloadNamestringName of the file to download

Type Definitions

type Display = 'inline-block' | 'block';