This repository has been archived by the owner on Jun 14, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d101e10
commit 72834f8
Showing
8 changed files
with
1,112 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
!demo/index.js |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
'use strict'; | ||
|
||
/** | ||
* Enum for callout arrow direction. It is intended to use as string as `uif-arrow` attribute value on `uif-callout` directive. | ||
* | ||
* @readonly | ||
* @enum {string} | ||
* @usage | ||
* | ||
* This is used to generate the string that you pass into the <uif-callout /> directive. Specifically, the string is passed | ||
* to the `uif-arrow` attribute. To evaluate the enum value as a string: | ||
* | ||
* let arrow: string = CalloutArrow[CalloutArrow.left]; | ||
*/ | ||
export enum CalloutArrow { | ||
left, | ||
right, | ||
top, | ||
bottom | ||
} |
Oops, something went wrong.