Socket
Socket
Sign inDemoInstall

@ecl/twig-component-button

Package Overview
Dependencies
1
Maintainers
6
Versions
52
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @ecl/twig-component-button

ECL Button


Version published
Maintainers
6
Install size
37.2 kB
Created

Readme

Source

ECL Button component

npm package: @ecl/twig-component-button

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

Parameters

  • "label" (string) (default: '')
  • "variant" (string) (default: 'primary'): variant of button (can be 'primary', 'secondary', 'call', 'ghost')
  • "type" (string) (default: 'submit'): can be the same type as HTML button - 'submit', 'reset', 'button'
  • "disabled" (bool) (default: false): define if button should be disabled (HTML disabled attribute)
  • "hide_label" (bool) (default: false): hide button label, for screen reader only
  • "icon_position" (string, optional) (default: after): Define icon position, can be 'before' or 'after'
  • "icon" (associative array, optional) default: A predefined structure such as in the Icon component.
  • "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 for primary button:

{% include '@ecl/button/button.html.twig' with { 
  variant: 'primary', 
  label: 'Example button', 
  disabled: false, 
  icon: { 
    path: '/path-to-the-icon-file', 
    type: 'ui', 
    name: 'corner-arrow', 
    size: 'xs,' 
  }, 
  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

Last updated on 26 Oct 2023

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc