-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.yaml
47 lines (44 loc) · 1.37 KB
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Changing the document structure.
# usually there are at least (App, Connections and Screens available (in this order))
# the sequence of the chapters can be changed here.
DocumentStructure:
- App
- Connections
- Screens
- GlobalVariables
# Holds all objects and their corresponding propperties that are considered
# for documentation (sequence has no influence)
RelevantObjects:
button: [OnSelect, Text]
barcodeScanner: [OnScan]
form: [DataSource, Item]
gallery: [OnSelect, Items]
image: [OnSelect, Image]
#icon.ArrowsUpDown: [OnSelect, Icon]
#icon.Cancel: [OnSelect, Icon]
#icon.ChevronRight: [OnSelect, Icon]
#icon.Reload: [OnSelect, Icon]
#icon.Settings: [OnSelect, Icon]
#label: [OnSelect, Text]
screen: [OnVisible]
text: [OnSelect]
#typedDataCard: [DataField, Default, Update]
ScreenFlow:
# By default all screens from CanvasManifest.json will be used in same sequence.
# If screens shall be excluded from the graph, list them here.
ExcludeScreens: []
# Show variables created / updated within this screen
ShowVariables: true
# Mermaid prefix / suffix differes depending on platform implementation.
# Azure devops:
# :::mermaid
# <mermaid>
# :::
#
# Chrome extension for github:
# ```mermaid
# <mermaid>
# ```
# based on this, the prefix / suffix can be set here
MermaidPrefix: ":::mermaid"
MermaidSuffix: ":::"