Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Tooltip v1.0.16 (virtual-select dependency). Closes #673. #674

Merged
merged 2 commits into from Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions R/virtual-select.R
Expand Up @@ -3,9 +3,10 @@
html_dependency_virtualselect <- function() {
htmlDependency(
name = "virtual-select",
version = "1.0.24",
version = "1.0.41",
src = c(file = system.file("packer", package = "shinyWidgets")),
script = "virtual-select.js"
script = "virtual-select.js",
all_files = FALSE
)
}

Expand Down
2 changes: 1 addition & 1 deletion inst/packer/virtual-select.js

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions inst/packer/virtual-select.js.LICENSE.txt
@@ -1,3 +1,9 @@
/*!
* Tooltip v1.0.16
* https://sa-si-dev.github.io/tooltip
* Licensed under MIT (https://github.com/sa-si-dev/tooltip/blob/master/LICENSE)
*/

/*!
* Virtual Select v1.0.41
* https://sa-si-dev.github.io/virtual-select
Expand Down
2 changes: 2 additions & 0 deletions srcjs/inputs/virtual-select.js
Expand Up @@ -3,6 +3,8 @@ import "shiny";
import { updateLabel } from "../modules/utils";
import "virtual-select-plugin/dist/virtual-select.min.css";
import "virtual-select-plugin/dist/virtual-select.min.js";
import "tooltip-plugin/dist/tooltip.min.css";
import "tooltip-plugin/dist/tooltip.min.js";

function transpose(data) {
var res = [];
Expand Down