You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: DESCRIPTION
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
1
Package: bpmnVisualizationR
2
2
Type: Package
3
-
Title: Visualize Process Execution Data on BPMN Diagrams
3
+
Title: Visualize Process Execution Data on 'BPMN' Diagrams
4
4
Version: 0.3.1.9000
5
5
Authors@R: c(person("Celine", "Souchet", role = c("aut", "cre"), email = "process.analytics.dev+CRAN@gmail.com"),
6
6
person("Thomas", "Bouffard", role = "aut"))
7
-
Description: To visualize the execution data of the processes on BPMN (Business Process Model and Notation) diagrams, using overlays, style customization and interactions, with the bpmn-visualizationTypeScript library.
7
+
Description: To visualize the execution data of the processes on 'BPMN' (Business Process Model and Notation) diagrams, using overlays, style customization and interactions, with the 'bpmn-visualization' 'TypeScript' library.
Copy file name to clipboardExpand all lines: R/bpmnVisualizationR.R
+14-14Lines changed: 14 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -12,23 +12,23 @@
12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
-
#' @title Display BPMN diagram in an HTML Widget
15
+
#' @title Display 'BPMN' diagram in an 'HTML' Widget
16
16
#'
17
17
#' @name display
18
-
#' @description Display BPMN diagram based on BPMN definition in XML format
18
+
#' @description Display 'BPMN' diagram based on 'BPMN' definition in 'XML' format
19
19
#'
20
-
#' @param bpmnXML A file name or xml document or string in BPMNXML format
20
+
#' @param bpmnXML A file name or 'XML' document or string in 'BPMN' 'XML' format
21
21
#' @param overlays An element or a list of elements to be added to the diagram's existing elements.
22
22
#' Use overlay function to create an overlay object with content and relative position.
23
23
#' @param width Fixed width for widget (in css units). The default is \code{NULL}, which results in intelligent automatic sizing based on the widget's container.
24
24
#' @param height Fixed height for widget (in css units). The default is \code{NULL}, which results in intelligent automatic sizing based on the widget's container.
25
-
#' @param elementId The id of the HTML element to enclose the widget.
25
+
#' @param elementId The id of the 'HTML' element to enclose the widget.
26
26
#' Use an explicit element ID for the widget (rather than an automatically
27
-
#' generated one). Useful if you have other JavaScript that needs to explicitly
27
+
#' generated one). Useful if you have other 'JavaScript' that needs to explicitly
28
28
#' discover and interact with a specific widget instance.
29
29
#'
30
-
#' @returns A \code{bpmnVisualizationR} Widget that will intelligently print itself into HTML in a variety of contexts
31
-
#' including the R console, within R Markdown documents, and within Shiny output bindings.
30
+
#' @returns A \code{bpmnVisualizationR} Widget that will intelligently print itself into 'HTML' in a variety of contexts
31
+
#' including the 'R' console, within 'R Markdown' documents, and within 'Shiny' output bindings.
32
32
#'
33
33
#' @examples
34
34
#' # Load the BPMN file
@@ -73,18 +73,18 @@ display <- function(
73
73
)
74
74
}
75
75
76
-
#' @title Shiny output binding for the \code{bpmnVisualizationR} HTML widget
76
+
#' @title Shiny output binding for the \code{bpmnVisualizationR} 'HTML' widget
77
77
#'
78
78
#' @name bpmnVisualizationR-shiny-output
79
79
#' @description
80
-
#' Helper to create output function for using the \code{bpmnVisualizationR} HTML widget within Shiny applications and interactive Rmd documents.
80
+
#' Helper to create output function for using the \code{bpmnVisualizationR} 'HTML' widget within 'Shiny' applications and interactive 'Rmd' documents.
81
81
#'
82
82
#' @param outputId output variable to read from
83
83
#' @param width,height Must be a valid CSS unit (like \code{'100\%'},
84
84
#' \code{'400px'}, \code{'auto'}) or a number, which will be coerced to a
85
85
#' string and have \code{'px'} appended.
86
86
#'
87
-
#' @returns An output function that enables the use of the \code{bpmnVisualizationR} widget within Shiny applications.
87
+
#' @returns An output function that enables the use of the \code{bpmnVisualizationR} widget within 'Shiny' applications.
0 commit comments