Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ecl/twig-component-link

Package Overview
Dependencies
Maintainers
6
Versions
70
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ecl/twig-component-link

ECL Link

  • 4.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
596
decreased by-44.09%
Maintainers
6
Weekly downloads
 
Created
Source

npm package: @ecl/twig-component-link

npm install --save @ecl/twig-component-link

Parameters

  • "link" (associative array) (default: 'predefined structure below')
    • "type" (string) (default: '') - type of link. Available types are '', 'standalone', 'cta', 'primary', 'secondary'
    • "inverted" (boolean) (default: false) - Is the link inverted (displayed on dark background) or not
    • "no_visited" (boolean) (default: false) - Prevent color change for visited links
    • "label" (string) (default: '') - Content of link
    • "path" (string) (default: '') - Link url (href attribute)
    • "external" (boolean) (default: false) Activates the external link icon
    • "aria_label" (string) Aria label attribute value
    • "icon_position" (string) (default: 'after') - Position of link icon (can be 'before' or 'after') if icon is available
    • "icon_path" (string) (default: '') - Path to the icon sprite in case of external links
  • "icon" (optional) (associative array) OR (array) of associate arrays - Default structure of the icon component, but extra_classes is an internal key. The name has to be non empty for the icon to be printed.
  • "extra_classes" (optional) (string) (default: '') Extra classes (space separated)
  • "extra_attributes" (optional) (array) (default: []) Extra attributes
    • "name" (string) Attribute name, eg. 'data-test'
    • "value" (string) Attribute value, eg: 'data-test-1',

Example:

{% include '@ecl/link/link.html.twig' with { 
  link: { 
    type: 'standalone', 
    label: 'Standalone link', 
    path: 'http://google.com', 
    icon_position: 'after' 
    aria_label: 'An aria label' 
  }, 
  icon: { 
    path: '/path-to-the-icon-file', 
    name: 'external', 
    extra_classes: 'my-extra-class-1 my-extra-class-2' 
  }, 
  extra_classes: 'my-extra-class-1 my-extra-class-2', 
  extra_attributes: [ 
    { name: 'data-test', value: 'data-test-value' }, 
    { name: 'data-test-1', value: 'data-test-value-1' } 
  ] 
} %}

Keywords

FAQs

Package last updated on 02 Apr 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc