open-vault/ui/app/templates/components/tool-tip.hbs
Matthew Irish 572fb826be
UI aws engine tweaks (#5294)
* allow passing a path for options so that it can be extracted from the model

* add cred type selector for the aws generate form

* style hint text on generate creds form

* add tests for aws-credential adapter

* allow for the case where we might have zero ttl

* show error for TTL picker if a non-number is entered for the duration part of the TTL

* fix positioning of tooltips

* fix ttl rendering with invalid input for initialValue
2018-09-28 16:45:30 -05:00

25 lines
732 B
Handlebars

{{#basic-dropdown-hover renderInPlace=renderInPlace
verticalPosition=verticalPosition
horizontalPosition=horizontalPosition
matchTriggerWidth=matchTriggerWidth
triggerComponent=triggerComponent
contentComponent=contentComponent
calculatePosition=calculatePosition
onOpen=onOpen
onClose=onClose
onFocus=onFocus
calculateInPlacePosition=calculateInPlacePosition as |dd|}}
{{yield (assign
dd
(hash
trigger=(component dd.trigger
onMouseDown=(action "prevent")
onMouseEnter=(action "open")
onMouseLeave=(action "close"))
content=(component dd.content
onMouseEnter=(action "open")
onMouseLeave=(action "close")
)
)
)}}
{{/basic-dropdown-hover}}