-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest3.json
79 lines (79 loc) · 1.64 KB
/
manifest3.json
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"_version": "1.17.0",
"sap.app": {
"id": "card.explorer.format.percent",
"type": "card",
"title": "Sample for Percent Formatters",
"subTitle": "Sample for Percent Formatters",
"applicationVersion": {
"version": "1.0.0"
},
"shortTitle": "A short title for this Card",
"info": "Additional information about this Card",
"description": "A long description for this Card",
"tags": {
"keywords": [
"Percent",
"Formatter",
"Card",
"Sample"
]
}
},
"sap.card": {
"type": "List",
"header": {
"title": "Discount status",
"subTitle": "Discounts exceeding {= format.percent(0.50)} are highlighted as important",
"icon": {
"src": "sap-icon://desktop-mobile"
},
"status": {
"text": "4 of 5"
}
},
"content": {
"data": {
"json": [
{
"Name": "Keyboard and Mouse",
"image": "sap-icon://keyboard-and-mouse",
"Discount": 0.55
},
{
"Name": "ITelO Vault",
"image": "sap-icon://shield",
"Discount": 0.03
},
{
"Name": "Notebook Professional 15",
"image": "sap-icon://laptop",
"Discount": 0.001
},
{
"Name": "Ergo Screen E-I",
"image": "sap-icon://desktop-mobile",
"Discount": 0.69
},
{
"Name": "Laser Professional Eco",
"image": "sap-icon://keyboard-and-mouse",
"Discount": 0.40
}
]
},
"maxItems": 4,
"item": {
"title": "{Name}",
"description": "Discount:",
"highlight": "{= ${Discount} < 0.50 ? 'Success' : 'Error'}",
"icon": {
"src": "{image}"
},
"info": {
"value": "{= format.percent(${Discount})}"
}
}
}
}
}