forked from thedevdojo/pines
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding more content for the pines UI library
- Loading branch information
Showing
9 changed files
with
74 additions
and
30 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"data" : { | ||
"previewFullScreenMenu (for demo)" : "This is a preview of the full screen menu whether it's visible or not and is really only used for the purposes of this demo.", | ||
"previewFullScreenMenu" : "This will toggle the fullscreen menu to be open or closed." | ||
}, | ||
"additional" : { | ||
"description" : "<p>You will most likely only want the content inside of the <code><template x-teleport="body"></code> section. The other content outside of this element are for demo purposes.</p>" | ||
} | ||
} |
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,8 @@ | ||
{ | ||
"data" : { | ||
"fullscreenModal" : "A boolean value that will toggle the fullscreen modal to be open or closed." | ||
}, | ||
"additional" : { | ||
"description" : "<p>The first <code><button></code> element can be any button or element you choose as long as it has the <code>@click="fullscreenModal=true"</code> attribute it will work the same and show the full screen modal when it is clicked.</p>" | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"data" : { | ||
"hoverCardHovered" : "A boolean value that will show or hide the card.", | ||
"hoverCardDelay" : "When the user hovers, how long (in milliseconds) should the hover card be shown", | ||
"hoverCardLeaveDelay" : "When the users mouse leaves, how long (in milliseconds) should the hover card be hidden", | ||
"hoverCardTimout" : "The timeout for the hover event, leave this set to null.", | ||
"hoverCardLeaveTimeout" : "The timeout for the mouse leave event, leave this set to null.", | ||
"hoverCardEnter()" : "The method that handles the hover event.", | ||
"hoverCardLeave()" : "The method that handles the mouse leave event." | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"data" : { | ||
"imageGalleryOpened" : "A boolean value to determine if the image gallery is opened or closed.", | ||
"imageGalleryActiveUrl" : "The src URL of the image that is currently active.", | ||
"imageGalleryImageIndex" : "When the image gallery is initialized we'll add an data-index incrementor (1, 2, 3, ... etc.) to all the images in the gallery.", | ||
"imageGalleryOpen(event)" : "The method that can be called to open the image gallery.", | ||
"imageGalleryClose()" : "The method that can be called to close the image gallery.", | ||
"imageGalleryNext()" : "The method that will be called to load the next image in the gallery.", | ||
"imageGalleryPrev()" : "The method that will be called to load the previous image in the gallery." | ||
|
||
}, | ||
"alert_notification" : { | ||
"title" : "Add or remove images", | ||
"description" : "Simply add or remove your own <strong><code><li><img src='...' /></li></code></strong> elements to the image gallery, and it will automatically be reflected in the gallery." | ||
} | ||
} |
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