diff --git a/man/f7Page.Rd b/man/f7Page.Rd index 5b25f749..4b7991f6 100644 --- a/man/f7Page.Rd +++ b/man/f7Page.Rd @@ -8,10 +8,11 @@ f7Page( ..., title = NULL, options = list(theme = c("auto", "ios", "md"), dark = TRUE, skeletonsOnLoad = FALSE, - preloader = FALSE, filled = FALSE, color = "#007aff", touch = list(tapHold = TRUE, - tapHoldDelay = 750, iosTouchRipple = FALSE), iosTranslucentBars = FALSE, navbar = - list(iosCenterTitle = TRUE, hideOnPageScroll = TRUE), toolbar = list(hideOnPageScroll - = FALSE), pullToRefresh = FALSE), + preloader = FALSE, filled = FALSE, color = "#007aff", touch = + list(touchClicksDistanceThreshold = 5, tapHold = TRUE, tapHoldDelay = 750, + tapHoldPreventClicks = TRUE, iosTouchRipple = FALSE, mdTouchRipple = TRUE), + iosTranslucentBars = FALSE, navbar = list(iosCenterTitle = TRUE, hideOnPageScroll = + TRUE), toolbar = list(hideOnPageScroll = FALSE), pullToRefresh = FALSE), allowPWA = FALSE ) } @@ -42,11 +43,15 @@ FALSE by default. } Touch module options \url{https://framework7.io/docs/app#param-touch}: \itemize{ +\item \code{touchClicksDistanceThreshold}: Distance threshold (in px) to prevent short swipes. +So if tap/move distance is larger than this value then "click" will not be triggered. \item \code{tapHold}: It triggers (if enabled) after a sustained, complete touch event. By default it is enabled. See \link{f7TapHold} for usage. \item \code{tapHoldDelay}: Determines how long (in ms) the user must hold their tap before the taphold event is fired on the target element. Default to 750 ms. +\item \code{tapHoldPreventClicks}: When enabled (by default), then click event will not be fired after tap hold event. \item \code{iosTouchRipple}: Default to FALSE. Enables touch ripple effect for iOS theme. +\item \code{mdTouchRipple}: Default to TRUE. Enables touch ripple effect for MD theme. } Navbar options \url{https://framework7.io/docs/navbar#navbar-app-parameters}: \itemize{ diff --git a/man/smartselect.Rd b/man/smartselect.Rd index 301d1157..190e9d4a 100644 --- a/man/smartselect.Rd +++ b/man/smartselect.Rd @@ -29,30 +29,27 @@ updateF7SmartSelect( ) } \arguments{ -\item{inputId}{The id of the input object.} +\item{inputId}{Select input id.} \item{label}{Select input label.} -\item{choices}{The new choices.} +\item{choices}{Select input choices.} -\item{selected}{The new value for the input.} +\item{selected}{Default selected item.} \item{openIn}{Smart select type: either \code{c("sheet", "popup", "popover")}. Note that the search bar is only available when the type is popup.} \item{searchbar}{Whether to enable the search bar. TRUE by default.} -\item{multiple}{Whether to allow multiple values.} +\item{multiple}{Whether to allow multiple values. FALSE by default.} \item{maxlength}{Maximum items to select when multiple is TRUE.} \item{virtualList}{Enable Virtual List for smart select if your select has a lot of options. Default to FALSE.} -\item{...}{Parameters used to update the smart select, -use same arguments as in \code{\link{f7SmartSelect}}.} - -\item{maxLength}{Maximum items to select when multiple is TRUE.} +\item{...}{Other options. See \url{https://framework7.io/docs/smart-select#smart-select-parameters}.} \item{session}{The Shiny session object, usually the default value will suffice.} }