@ecl/popover
v5.0.0-RC1
Published
ECL Popover
Readme
ECL Popover component
npm package: @ecl/popover
npm install --save @ecl/popoverParameters:
- "id" (string) (default: random)
- toggle (associative array) (default: {}): Popover toggle element, following ECL Link or ECL button structure
- close (object of type "button") (default: {}): close button (optional)
- "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'
Blocks:
- "content"
Example:
{% include '@ecl/popover/popover.html.twig' with {
id: 'popover-example',
toggle: {
link: {
label: 'Popover',
path: exampleLink,
type: 'standalone',
aria_label: 'Popover toggle',
icon_position: 'before',
},
icon: {
name: 'share',
size: 'fluid',
},
},
close: {
label: "Close",
icon: {
name: "close",
size: "m"
},
hide_label: true
},
links: [
{
link: {
label: 'item 1',
path: exampleLink,
aria_label: 'Link to item 1',
},
icon: {
name: 'global',
size: 'fluid',
},
},
{
link: {
label: 'item 2',
path: exampleLink,
aria_label: 'Link to item 2',
},
icon: {
name: 'global',
size: 'fluid',
},
},
{
link: {
label: 'item 3',
path: exampleLink,
aria_label: 'Link to item 3',
},
icon: {
name: 'global',
size: 'fluid',
},
},
],
} %}