-
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.
- Loading branch information
sebastien
authored and
sebastien
committed
Oct 21, 2023
1 parent
0bb8b3d
commit c0578c2
Showing
7 changed files
with
109 additions
and
50 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: rclipboard | ||
Title: Shiny/R Wrapper for 'clipboard.js' | ||
Version: 0.1.6 | ||
Version: 0.2.0 | ||
Author: Sebastien Bihorel | ||
Maintainer: Sebastien Bihorel <[email protected]> | ||
Description: Leverages the functionality of 'clipboard.js', a JavaScript library | ||
|
@@ -14,4 +14,4 @@ Encoding: UTF-8 | |
LazyData: true | ||
URL: https://github.com/sbihorel/rclipboard/ | ||
BugReports: https://github.com/sbihorel/rclipboard/issues/ | ||
Imports: shiny | ||
Imports: shiny, bslib |
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,2 +1,3 @@ | ||
export('rclipboardSetup', 'rclipButton', 'rclipLink') | ||
importFrom('shiny', 'actionButton', 'actionLink', 'singleton', 'tagList', 'tags') | ||
importFrom('shiny', 'actionButton', 'actionLink', 'singleton', 'tagList', 'tags', 'validate', 'need') | ||
importFrom('bslib', 'tooltip') |
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,4 +1,13 @@ | ||
Version 0.1.4 | ||
Version 0.2.0 | ||
* Support for bslib::tooltip | ||
* Upgrade to clipboard.js v2.0.11 | ||
|
||
Version 0.1.6 | ||
* Bug fix | ||
|
||
Version 0.1.5 | ||
* Bug fix | ||
|
||
Version 0.1.4 | ||
* Add rclipLink | ||
* Upgrade to clipboard.js v2.0.8 |
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 |
---|---|---|
|
@@ -7,5 +7,4 @@ rclipboardSetup <- function() | |
) | ||
) | ||
) | ||
} | ||
|
||
} |
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
It might be nice to set new parameters like tooltip to NULL and to move them after the
...
parameters - we just updated a project from 0.1.* to 0.2.0 and were surprised by the clipboard rendering suddenly failing(but overall thanks for the update - we want to use the tooltip stuff too!)