-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #55 from fleetbase/dev-v0.2.16
v0.2.16
- Loading branch information
Showing
113 changed files
with
1,722 additions
and
490 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,19 @@ | ||
<Attach::Popover @classNames="ember-attacher-tooltip" @ariaRole="tooltip" @renderInPlace={{@renderInPlace}} @placement={{this.placement}} @arrow={{@arrow}} @offset={{@offset}} @shiftOptions={{@shiftOptions}} @animation={{@animation}} @hideOn={{@hideOn}} @showOn={{@showOn}} @interactive={{@interactive}} @isShown={{@isShown}} @lazyRender={{@lazyRender}} @showDelay={{@showDelay}} @showDuration={{@showDuration}} @transitionDuration={{@transitionDuration}} ...attributes>{{yield}}</Attach::Popover> | ||
<Attach::Popover | ||
@classNames="ember-attacher-tooltip" | ||
@ariaRole="tooltip" | ||
@renderInPlace={{@renderInPlace}} | ||
@placement={{this.placement}} | ||
@arrow={{@arrow}} | ||
@offset={{@offset}} | ||
@shiftOptions={{@shiftOptions}} | ||
@animation={{@animation}} | ||
@hideOn={{@hideOn}} | ||
@showOn={{@showOn}} | ||
@interactive={{@interactive}} | ||
@isShown={{@isShown}} | ||
@lazyRender={{@lazyRender}} | ||
@showDelay={{@showDelay}} | ||
@showDuration={{@showDuration}} | ||
@transitionDuration={{@transitionDuration}} | ||
...attributes | ||
>{{yield}}</Attach::Popover> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,24 @@ | ||
<BasicDropdown @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=this.prevent | ||
onMouseEnter=this.open | ||
onMouseLeave=this.close) | ||
Content=(component dd.Content | ||
onMouseEnter=this.open | ||
onMouseLeave=this.close | ||
) | ||
) | ||
)}} | ||
<BasicDropdown | ||
@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=this.prevent onMouseEnter=this.open onMouseLeave=this.close) | ||
Content=(component dd.Content onMouseEnter=this.open onMouseLeave=this.close) | ||
) | ||
) | ||
}} | ||
</BasicDropdown> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.